File size: 74,485 Bytes
23b035e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 |
{
"timestamp": "1480170600",
"score": "2 - 1",
"round": "12",
"teams": [
"Eintracht Frankfurt",
"Dortmund"
],
"lineup": {
"home": {
"tactic": "1-5-4-1",
"players": [
{
"hash": "Cl1g9vCl",
"name": "Abraham D.",
"captain": "",
"detail_link": "/player/abraham-david/Cl1g9vCl/",
"short_name": "Abraham",
"shirt_number": "19",
"country": "Argentina",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "David Abraham"
},
{
"hash": "KdoHDRzE",
"name": "Chandler T.",
"captain": "",
"detail_link": "/player/chandler-timothy/KdoHDRzE/",
"short_name": "Chandler",
"shirt_number": "22",
"country": "USA",
"facts": [
{
"type": "8",
"time": "46' Huszti S. (Chandler T.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Timothy Chandler"
},
{
"hash": "0zYqWxIq",
"name": "Fabian M.",
"captain": "",
"detail_link": "/player/fabian-marco/0zYqWxIq/",
"short_name": "Fabian",
"shirt_number": "10",
"country": "Mexico",
"facts": [
{
"type": "1",
"time": "45+4' Fabian M. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "90+4'",
"description": "Hrgota B.",
"linked_player_hash": "Kr5mFJ31"
}
],
"lineup": 7,
"starting": true,
"long_name": "Marco Fabian"
},
{
"hash": "nBEIWHXE",
"name": "Gacinovic M.",
"captain": "",
"detail_link": "/player/gacinovic-mijat/nBEIWHXE/",
"short_name": "Gacinovic",
"shirt_number": "11",
"country": "Serbia",
"facts": [
{
"type": "1",
"time": "90' Gacinovic M. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Mijat Gacinovic"
},
{
"hash": "v9huBzd3",
"name": "Hasebe M.",
"captain": "",
"detail_link": "/player/hasebe-makoto/v9huBzd3/",
"short_name": "Hasebe",
"shirt_number": "20",
"country": "Japan",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Makoto Hasebe"
},
{
"hash": "I5d54NWB",
"name": "Hector M.",
"captain": "",
"detail_link": "/player/hector-michael/I5d54NWB/",
"short_name": "Hector",
"shirt_number": "15",
"country": "Jamaica",
"facts": [
{
"type": "1",
"time": "34' Hector M. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Michael Hector"
},
{
"hash": "nRZtaBXj",
"name": "Hradecky L.",
"captain": "",
"detail_link": "/player/hradecky-lukas/nRZtaBXj/",
"short_name": "Hradecky",
"shirt_number": "1",
"country": "Finland",
"facts": [
{
"type": "1",
"time": "90+1' Hradecky L. (Delay of game)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 1,
"starting": true,
"long_name": "Lukas Hradecky"
},
{
"hash": "t6O4TcHJ",
"name": "Huszti S.",
"captain": "",
"detail_link": "/player/huszti-szabolcs/t6O4TcHJ/",
"short_name": "Huszti",
"shirt_number": "8",
"country": "Hungary",
"facts": [
{
"type": "3",
"time": "46' Huszti S. (Chandler T.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "8",
"time": "79' Seferovic H. (Huszti S.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "82'",
"description": "Barkok A.",
"linked_player_hash": "tdKD2AnM"
}
],
"lineup": 9,
"starting": true,
"long_name": "Szabolcs Huszti"
},
{
"hash": "G8p95GTe",
"name": "Meier A.",
"captain": "(C)",
"detail_link": "/player/meier-alexander/G8p95GTe/",
"short_name": "Meier",
"shirt_number": "14",
"country": "Germany",
"facts": [
{
"type": "6",
"time": "71'",
"description": "Seferovic H.",
"linked_player_hash": "0v5eFtQs"
}
],
"lineup": 11,
"starting": true,
"long_name": "Alexander Meier"
},
{
"hash": "S0VmcHI9",
"name": "Oczipka B.",
"captain": "",
"detail_link": "/player/oczipka-bastian/S0VmcHI9/",
"short_name": "Oczipka",
"shirt_number": "6",
"country": "Germany",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Bastian Oczipka"
},
{
"hash": "WSRdoQ7I",
"name": "Vallejo J.",
"captain": "",
"detail_link": "/player/vallejo-jesus/WSRdoQ7I/",
"short_name": "Vallejo",
"shirt_number": "5",
"country": "Spain",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Jesus Vallejo"
},
{
"hash": "tdKD2AnM",
"name": "Barkok A.",
"captain": "",
"detail_link": "/player/barkok-aymen/tdKD2AnM/",
"short_name": "Barkok",
"shirt_number": "28",
"country": "Morocco",
"facts": [
{
"type": "7",
"time": "82'",
"description": "Huszti S.",
"linked_player_hash": "t6O4TcHJ"
}
],
"lineup": null,
"starting": false,
"long_name": "Aymen Barkok"
},
{
"hash": "KltmIcJB",
"name": "Bunjaki E.",
"captain": "",
"detail_link": "/player/bunjaki-enis/KltmIcJB/",
"short_name": "Bunjaki",
"shirt_number": "38",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Enis Bunjaki"
},
{
"hash": "Kr5mFJ31",
"name": "Hrgota B.",
"captain": "",
"detail_link": "/player/hrgota-branimir/Kr5mFJ31/",
"short_name": "Hrgota",
"shirt_number": "31",
"country": "Sweden",
"facts": [
{
"type": "7",
"time": "90+4'",
"description": "Fabian M.",
"linked_player_hash": "0zYqWxIq"
}
],
"lineup": null,
"starting": false,
"long_name": "Branimir Hrgota"
},
{
"hash": "buAt0Fzc",
"name": "Lindner H.",
"captain": "",
"detail_link": "/player/lindner-heinz/buAt0Fzc/",
"short_name": "Lindner",
"shirt_number": "13",
"country": "Austria",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Heinz Lindner"
},
{
"hash": "GWSMlnRk",
"name": "Rebic A.",
"captain": "",
"detail_link": "/player/rebic-ante/GWSMlnRk/",
"short_name": "Rebic",
"shirt_number": "17",
"country": "Croatia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ante Rebic"
},
{
"hash": "0v5eFtQs",
"name": "Seferovic H.",
"captain": "",
"detail_link": "/player/seferovic-haris/0v5eFtQs/",
"short_name": "Seferovic",
"shirt_number": "9",
"country": "Switzerland",
"facts": [
{
"type": "7",
"time": "71'",
"description": "Meier A.",
"linked_player_hash": "G8p95GTe"
},
{
"type": "3",
"time": "79' Seferovic H. (Huszti S.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Haris Seferovic"
},
{
"hash": "E9U1qoPt",
"name": "Zorba F.",
"captain": "",
"detail_link": "/player/zorba-furkan/E9U1qoPt/",
"short_name": "Zorba",
"shirt_number": "36",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Furkan Zorba"
}
],
"coach": [
{
"hash": "C4T3u731",
"name": "Kovac N.",
"captain": "",
"detail_link": "/player/kovac-niko/C4T3u731/",
"short_name": "Kovac N.",
"shirt_number": "",
"country": "Croatia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Niko Kovac"
}
]
},
"away": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "Wl4EyKZk",
"name": "Aubameyang P.",
"captain": "",
"detail_link": "/player/aubameyang-pierre-emerick/Wl4EyKZk/",
"short_name": "Aubameyang",
"shirt_number": "17",
"country": "Gabon",
"facts": [
{
"type": "3",
"time": "77' Aubameyang P. (Dembele O.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Pierre-Emerick Aubameyang"
},
{
"hash": "tWNcwyFS",
"name": "Castro G.",
"captain": "",
"detail_link": "/player/castro-gonzalo/tWNcwyFS/",
"short_name": "Castro",
"shirt_number": "27",
"country": "Germany",
"facts": [
{
"type": "1",
"time": "74' Castro G. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Gonzalo Castro"
},
{
"hash": "27fpNoQk",
"name": "Ginter M.",
"captain": "",
"detail_link": "/player/ginter-matthias/27fpNoQk/",
"short_name": "Ginter",
"shirt_number": "28",
"country": "Germany",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Matthias Ginter"
},
{
"hash": "veaF8P5m",
"name": "Gotze M.",
"captain": "",
"detail_link": "/player/gotze-mario/veaF8P5m/",
"short_name": "Gotze",
"shirt_number": "10",
"country": "Germany",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Mario Gotze"
},
{
"hash": "AZgM33p0",
"name": "Piszczek L.",
"captain": "",
"detail_link": "/player/piszczek-lukasz/AZgM33p0/",
"short_name": "Piszczek",
"shirt_number": "26",
"country": "Poland",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Lukasz Piszczek"
},
{
"hash": "YZ3fZd1q",
"name": "Ramos A.",
"captain": "",
"detail_link": "/player/ramos-adrian/YZ3fZd1q/",
"short_name": "Ramos",
"shirt_number": "20",
"country": "Colombia",
"facts": [
{
"type": "6",
"time": "58'",
"description": "Reus M.",
"linked_player_hash": "fonESekN"
}
],
"lineup": 9,
"starting": true,
"long_name": "Adrian Ramos"
},
{
"hash": "n3VwNCjb",
"name": "Schmelzer M.",
"captain": "(C)",
"detail_link": "/player/schmelzer-marcel/n3VwNCjb/",
"short_name": "Schmelzer",
"shirt_number": "29",
"country": "Germany",
"facts": [
{
"type": "1",
"time": "90+5' Schmelzer M. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Marcel Schmelzer"
},
{
"hash": "SUtZhkKF",
"name": "Schurrle A.",
"captain": "",
"detail_link": "/player/schurrle-andre/SUtZhkKF/",
"short_name": "Schurrle",
"shirt_number": "21",
"country": "Germany",
"facts": [
{
"type": "6",
"time": "58'",
"description": "Dembele O.",
"linked_player_hash": "zsMC2Ec0"
}
],
"lineup": 11,
"starting": true,
"long_name": "Andre Schurrle"
},
{
"hash": "SQr6hJJR",
"name": "Sokratis",
"captain": "",
"detail_link": "/player/papastathopoulos-sokratis/SQr6hJJR/",
"short_name": "Papastathopoulos",
"shirt_number": "25",
"country": "Greece",
"facts": [
{
"type": "1",
"time": "65' Sokratis (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Sokratis Papastathopoulos"
},
{
"hash": "SWPWwvA4",
"name": "Weidenfeller R.",
"captain": "",
"detail_link": "/player/weidenfeller-roman/SWPWwvA4/",
"short_name": "Weidenfeller",
"shirt_number": "1",
"country": "Germany",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Roman Weidenfeller"
},
{
"hash": "2wwMMwAa",
"name": "Weigl J.",
"captain": "",
"detail_link": "/player/weigl-julian/2wwMMwAa/",
"short_name": "Weigl",
"shirt_number": "33",
"country": "Germany",
"facts": [
{
"type": "6",
"time": "58'",
"description": "Rode S.",
"linked_player_hash": "2ukcBSGo"
}
],
"lineup": 7,
"starting": true,
"long_name": "Julian Weigl"
},
{
"hash": "8K4WA9Gh",
"name": "Bartra M.",
"captain": "",
"detail_link": "/player/bartra-marc/8K4WA9Gh/",
"short_name": "Bartra",
"shirt_number": "5",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marc Bartra"
},
{
"hash": "KxMKnLtF",
"name": "Bonmann H.",
"captain": "",
"detail_link": "/player/bonmann-hendrik/KxMKnLtF/",
"short_name": "Bonmann",
"shirt_number": "39",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Hendrik Bonmann"
},
{
"hash": "zsMC2Ec0",
"name": "Dembele O.",
"captain": "",
"detail_link": "/player/dembele-ousmane/zsMC2Ec0/",
"short_name": "Dembele",
"shirt_number": "7",
"country": "France",
"facts": [
{
"type": "7",
"time": "58'",
"description": "Schurrle A.",
"linked_player_hash": "SUtZhkKF"
},
{
"type": "8",
"time": "77' Aubameyang P. (Dembele O.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Ousmane Dembele"
},
{
"hash": "SCOMojXE",
"name": "Durm E.",
"captain": "",
"detail_link": "/player/durm-erik/SCOMojXE/",
"short_name": "Durm",
"shirt_number": "37",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Erik Durm"
},
{
"hash": "vTuaEfRq",
"name": "Pulisic C.",
"captain": "",
"detail_link": "/player/pulisic-christian/vTuaEfRq/",
"short_name": "Pulisic",
"shirt_number": "22",
"country": "USA",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Christian Pulisic"
},
{
"hash": "fonESekN",
"name": "Reus M.",
"captain": "",
"detail_link": "/player/reus-marco/fonESekN/",
"short_name": "Reus",
"shirt_number": "11",
"country": "Germany",
"facts": [
{
"type": "7",
"time": "58'",
"description": "Ramos A.",
"linked_player_hash": "YZ3fZd1q"
}
],
"lineup": null,
"starting": false,
"long_name": "Marco Reus"
},
{
"hash": "2ukcBSGo",
"name": "Rode S.",
"captain": "",
"detail_link": "/player/rode-sebastian/2ukcBSGo/",
"short_name": "Rode",
"shirt_number": "18",
"country": "Germany",
"facts": [
{
"type": "7",
"time": "58'",
"description": "Weigl J.",
"linked_player_hash": "2wwMMwAa"
}
],
"lineup": null,
"starting": false,
"long_name": "Sebastian Rode"
}
],
"coach": [
{
"hash": "CQTUFgPk",
"name": "Tuchel T.",
"captain": "",
"detail_link": "/player/tuchel-thomas/CQTUFgPk/",
"short_name": "Tuchel T.",
"shirt_number": "",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Thomas Tuchel"
}
]
}
},
"referee": [
"Stark W."
],
"venue": [
"Deutsche Bank Park (Frankfurt)"
],
"attendance": [
"51 500"
],
"referee_matched": [
"Wolfgang Stark"
],
"referee_found": [
"Wolfgang Stark"
],
"coach_matched": [
"Thomas Tuchel"
],
"gameHomeTeam": "Eintracht Frankfurt",
"home": {
"name": "Eintracht Frankfurt",
"detail_link": "/team/eintracht-frankfurt/8vndvXTk",
"hash": "8vndvXTk",
"names": [
"Eintracht Frankfurt",
"Eintracht Frankfurt (Ger)",
"eintracht frankfurt"
]
},
"gameAwayTeam": "Dortmund",
"away": {
"name": "Dortmund",
"detail_link": "/team/dortmund/nP1i5US1",
"hash": "nP1i5US1",
"names": [
"Dortmund",
"Dortmund (Ger)",
"dortmund"
]
},
"gameDate": "26/11/2016 - 15:30",
"annotations": [
{
"important": false,
"gameTime": "2 - 50:59",
"label": "",
"description": "There wasn't a lot of action on the pitch. We could describe the game as average. The away team was superior on the pitch today. The home team attempted to leave the opposition defence outnumbered and hit them on the break. The visitors tried to keep the ball on the ground and play a passing game.",
"identified": "There wasn't a lot of action on the pitch. We could describe the game as average. The away team was superior on the pitch today. The home team attempted to leave the opposition defence outnumbered and hit them on the break. The visitors tried to keep the ball on the ground and play a passing game.",
"anonymized": "There wasn't a lot of action on the pitch. We could describe the game as average. The away team was superior on the pitch today. The home team attempted to leave the opposition defence outnumbered and hit them on the break. The visitors tried to keep the ball on the ground and play a passing game.",
"visibility": "shown",
"position": "3059000"
},
{
"important": true,
"gameTime": "2 - 50:28",
"label": "whistle",
"description": "Nothing more will happen in this game as the referee blows for full time.",
"identified": "Nothing more will happen in this game as the referee blows for full time.",
"anonymized": "Nothing more will happen in this game as the referee blows for full time.",
"visibility": "shown",
"position": "3028000"
},
{
"important": true,
"gameTime": "2 - 49:54",
"label": "y-card",
"description": "Marcel Schmelzer (Dortmund) receives a yellow card.",
"identified": "[PLAYER_n3VwNCjb] ([TEAM_]) receives a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) receives a yellow card.",
"visibility": "shown",
"position": "2994000"
},
{
"important": true,
"gameTime": "2 - 48:31",
"label": "substitution",
"description": "Substitution. Marco Fabian makes way for Branimir Hrgota (Eintracht Frankfurt).",
"identified": "Substitution. [PLAYER_0zYqWxIq] makes way for [PLAYER_Kr5mFJ31] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] makes way for [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2911000"
},
{
"important": true,
"gameTime": "2 - 47:24",
"label": "",
"description": "Ousmane Dembele (Dortmund) creates a good chance for himself and goes for goal from mid-range, but he fails to change the score as his effort deflects away off the bar.",
"identified": "[PLAYER_zsMC2Ec0] ([TEAM_]) creates a good chance for himself and goes for goal from mid-range, but he fails to change the score as his effort deflects away off the bar.",
"anonymized": "[PLAYER] ([TEAM]) creates a good chance for himself and goes for goal from mid-range, but he fails to change the score as his effort deflects away off the bar.",
"visibility": "shown",
"position": "2844000"
},
{
"important": true,
"gameTime": "2 - 45:44",
"label": "y-card",
"description": "It's a yellow card for Lukas Hradecky (Eintracht Frankfurt).",
"identified": "It's a yellow card for [PLAYER_nRZtaBXj] ([TEAM_]).",
"anonymized": "It's a yellow card for [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2744000"
},
{
"important": false,
"gameTime": "2 - 45:17",
"label": "",
"description": "Marco Reus (Dortmund) delivers a poor cross from a free kick as one of the defenders comfortably clears it away.",
"identified": "[PLAYER_fonESekN] ([TEAM_]) delivers a poor cross from a free kick as one of the defenders comfortably clears it away.",
"anonymized": "[PLAYER] ([TEAM]) delivers a poor cross from a free kick as one of the defenders comfortably clears it away.",
"visibility": "shown",
"position": "2717000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "3 min. of stoppage-time to be played.",
"identified": "3 min. of stoppage-time to be played.",
"anonymized": "3 min. of stoppage-time to be played.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "2 - 44:44",
"label": "y-card",
"description": "Mijat Gacinovic (Eintracht Frankfurt) is booked after bringing down an opponent. Wolfgang Stark had an easy-decision to make.",
"identified": "[PLAYER_nBEIWHXE] ([TEAM_]) is booked after bringing down an opponent. [REFEREE] had an easy-decision to make.",
"anonymized": "[PLAYER] ([TEAM]) is booked after bringing down an opponent. [REFEREE] had an easy-decision to make.",
"visibility": "shown",
"position": "2684000"
},
{
"important": false,
"gameTime": "2 - 44:30",
"label": "",
"description": "Mijat Gacinovic (Eintracht Frankfurt) commits a foul after bringing down his opponent with a slide tackle. Dortmund have a free kick.",
"identified": "[PLAYER_nBEIWHXE] ([TEAM_]) commits a foul after bringing down his opponent with a slide tackle. [TEAM_] have a free kick.",
"anonymized": "[PLAYER] ([TEAM]) commits a foul after bringing down his opponent with a slide tackle. [TEAM] have a free kick.",
"visibility": "shown",
"position": "2670000"
},
{
"important": false,
"gameTime": "2 - 43:21",
"label": "",
"description": "Ousmane Dembele (Dortmund) plays in a hopeful cross, but it doesn't find its way to any of the attacking players.",
"identified": "[PLAYER_zsMC2Ec0] ([TEAM_]) plays in a hopeful cross, but it doesn't find its way to any of the attacking players.",
"anonymized": "[PLAYER] ([TEAM]) plays in a hopeful cross, but it doesn't find its way to any of the attacking players.",
"visibility": "shown",
"position": "2601000"
},
{
"important": false,
"gameTime": "2 - 40:09",
"label": "attendance",
"description": "The attendance is 51500.",
"identified": "The attendance is 51500.",
"anonymized": "The attendance is 51500.",
"visibility": "shown",
"position": "2409000"
},
{
"important": false,
"gameTime": "2 - 39:37",
"label": "corner",
"description": "Marco Fabian (Eintracht Frankfurt) swings in the corner kick, but one of the defenders leaps highest to head the ball away.",
"identified": "[PLAYER_0zYqWxIq] ([TEAM_]) swings in the corner kick, but one of the defenders leaps highest to head the ball away.",
"anonymized": "[PLAYER] ([TEAM]) swings in the corner kick, but one of the defenders leaps highest to head the ball away.",
"visibility": "shown",
"position": "2377000"
},
{
"important": false,
"gameTime": "2 - 39:05",
"label": "",
"description": "Haris Seferovic (Eintracht Frankfurt) tries to slide the ball through to a teammate but it's well blocked by a defender. Good work from Eintracht Frankfurt as they win a corner.",
"identified": "[PLAYER_0v5eFtQs] ([TEAM_]) tries to slide the ball through to a teammate but it's well blocked by a defender. Good work from [TEAM_] as they win a corner.",
"anonymized": "[PLAYER] ([TEAM]) tries to slide the ball through to a teammate but it's well blocked by a defender. Good work from [TEAM] as they win a corner.",
"visibility": "shown",
"position": "2345000"
},
{
"important": false,
"gameTime": "2 - 38:14",
"label": "",
"description": "Ousmane Dembele (Dortmund) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger.",
"identified": "[PLAYER_zsMC2Ec0] ([TEAM_]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger.",
"anonymized": "[PLAYER] ([TEAM]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger.",
"visibility": "shown",
"position": "2294000"
},
{
"important": true,
"gameTime": "2 - 36:57",
"label": "substitution",
"description": "Substitution. Szabolcs Huszti will be replaced by Aymen Barkok (Eintracht Frankfurt).",
"identified": "Substitution. [PLAYER_t6O4TcHJ] will be replaced by [PLAYER_tdKD2AnM] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] will be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2217000"
},
{
"important": false,
"gameTime": "2 - 36:15",
"label": "corner",
"description": "Marco Reus (Dortmund) fails to produce a decent cross from the corner kick. The ball goes well out of play.",
"identified": "[PLAYER_fonESekN] ([TEAM_]) fails to produce a decent cross from the corner kick. The ball goes well out of play.",
"anonymized": "[PLAYER] ([TEAM]) fails to produce a decent cross from the corner kick. The ball goes well out of play.",
"visibility": "shown",
"position": "2175000"
},
{
"important": false,
"gameTime": "2 - 35:52",
"label": "",
"description": "Marcel Schmelzer (Dortmund) crosses the ball into the box, but one of the defending players averts the threat. The ball goes behind for a corner. Dortmund will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_n3VwNCjb] ([TEAM_]) crosses the ball into the box, but one of the defending players averts the threat. The ball goes behind for a corner. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) crosses the ball into the box, but one of the defending players averts the threat. The ball goes behind for a corner. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "2152000"
},
{
"important": true,
"gameTime": "2 - 33:29",
"label": "soccer-ball",
"description": "Brilliant finish! Haris Seferovic (Eintracht Frankfurt) perfectly collected a pass on the edge of the penalty area from Szabolcs Huszti, then produced a nice strike into the bottom left corner. The score is 2:1.",
"identified": "Brilliant finish! [PLAYER_0v5eFtQs] ([TEAM_]) perfectly collected a pass on the edge of the penalty area from [PLAYER_t6O4TcHJ], then produced a nice strike into the bottom left corner. The score is 2:1.",
"anonymized": "Brilliant finish! [PLAYER] ([TEAM]) perfectly collected a pass on the edge of the penalty area from [PLAYER], then produced a nice strike into the bottom left corner. The score is 2:1.",
"visibility": "shown",
"position": "2009000"
},
{
"important": true,
"gameTime": "2 - 31:58",
"label": "soccer-ball",
"description": "It's a goal! Pierre-Emerick Aubameyang (Dortmund) makes it 1:1. He jumped highest to connect with a perfect cross from Ousmane Dembele and planted his close-range header into the bottom right corner. Lukas Hradecky was helpless.",
"identified": "It's a goal! [PLAYER_Wl4EyKZk] ([TEAM_]) makes it 1:1. He jumped highest to connect with a perfect cross from [PLAYER_zsMC2Ec0] and planted his close-range header into the bottom right corner. [PLAYER_nRZtaBXj] was helpless.",
"anonymized": "It's a goal! [PLAYER] ([TEAM]) makes it 1:1. He jumped highest to connect with a perfect cross from [PLAYER] and planted his close-range header into the bottom right corner. [PLAYER] was helpless.",
"visibility": "shown",
"position": "1918000"
},
{
"important": true,
"gameTime": "2 - 28:50",
"label": "y-card",
"description": "Gonzalo Castro (Dortmund) is the one who receives a yellow card.",
"identified": "[PLAYER_tWNcwyFS] ([TEAM_]) is the one who receives a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) is the one who receives a yellow card.",
"visibility": "shown",
"position": "1730000"
},
{
"important": false,
"gameTime": "2 - 26:23",
"label": "",
"description": "Ousmane Dembele (Dortmund) looks to break free, but his touch lets him down and he loses the ball.",
"identified": "[PLAYER_zsMC2Ec0] ([TEAM_]) looks to break free, but his touch lets him down and he loses the ball.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but his touch lets him down and he loses the ball.",
"visibility": "shown",
"position": "1583000"
},
{
"important": false,
"gameTime": "2 - 26:00",
"label": "",
"description": "Lukasz Piszczek (Dortmund) gets in a good position inside the box and is only inches away from getting on the end of a through ball from the edge of the area.",
"identified": "[PLAYER_AZgM33p0] ([TEAM_]) gets in a good position inside the box and is only inches away from getting on the end of a through ball from the edge of the area.",
"anonymized": "[PLAYER] ([TEAM]) gets in a good position inside the box and is only inches away from getting on the end of a through ball from the edge of the area.",
"visibility": "shown",
"position": "1560000"
},
{
"important": true,
"gameTime": "2 - 25:18",
"label": "substitution",
"description": "It's time for a substitution. That's the last involvement from Alexander Meier as he is replaced by Haris Seferovic (Eintracht Frankfurt).",
"identified": "It's time for a substitution. That's the last involvement from [PLAYER_G8p95GTe] as he is replaced by [PLAYER_0v5eFtQs] ([TEAM_]).",
"anonymized": "It's time for a substitution. That's the last involvement from [PLAYER] as he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1518000"
},
{
"important": true,
"gameTime": "2 - 19:54",
"label": "y-card",
"description": "Wolfgang Stark shows a yellow card to Sokratis (Dortmund) for his blatant foul.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_SQr6hJJR] ([TEAM_]) for his blatant foul.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for his blatant foul.",
"visibility": "shown",
"position": "1194000"
},
{
"important": false,
"gameTime": "2 - 17:04",
"label": "corner",
"description": "Eintracht Frankfurt take a short corner kick.",
"identified": "[TEAM_] take a short corner kick.",
"anonymized": "[TEAM] take a short corner kick.",
"visibility": "shown",
"position": "1024000"
},
{
"important": false,
"gameTime": "2 - 16:48",
"label": "",
"description": "Alexander Meier (Eintracht Frankfurt) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal. Eintracht Frankfurt force a corner. They send men into the box.",
"identified": "[PLAYER_G8p95GTe] ([TEAM_]) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal. [TEAM_] force a corner. They send men into the box.",
"anonymized": "[PLAYER] ([TEAM]) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal. [TEAM] force a corner. They send men into the box.",
"visibility": "shown",
"position": "1008000"
},
{
"important": false,
"gameTime": "2 - 16:32",
"label": "",
"description": "Timothy Chandler (Eintracht Frankfurt) crosses into the box from near the side line, but he doesn't connect as he wanted and it's cleared by the well-organized defence.",
"identified": "[PLAYER_KdoHDRzE] ([TEAM_]) crosses into the box from near the side line, but he doesn't connect as he wanted and it's cleared by the well-organized defence.",
"anonymized": "[PLAYER] ([TEAM]) crosses into the box from near the side line, but he doesn't connect as he wanted and it's cleared by the well-organized defence.",
"visibility": "shown",
"position": "992000"
},
{
"important": false,
"gameTime": "2 - 14:20",
"label": "corner",
"description": "Ousmane Dembele (Dortmund) takes a short corner kick.",
"identified": "[PLAYER_zsMC2Ec0] ([TEAM_]) takes a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) takes a short corner kick.",
"visibility": "shown",
"position": "860000"
},
{
"important": false,
"gameTime": "2 - 14:15",
"label": "",
"description": "Lukasz Piszczek (Dortmund) tries to send a pass but it's blocked. Dortmund have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"identified": "[PLAYER_AZgM33p0] ([TEAM_]) tries to send a pass but it's blocked. [TEAM_] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"anonymized": "[PLAYER] ([TEAM]) tries to send a pass but it's blocked. [TEAM] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"visibility": "shown",
"position": "855000"
},
{
"important": true,
"gameTime": "2 - 12:59",
"label": "substitution",
"description": "The referee signals that it is time for a substitution and Ousmane Dembele (Dortmund) comes onto the pitch so that Andre Schurrle can be given a rest.",
"identified": "The referee signals that it is time for a substitution and [PLAYER_zsMC2Ec0] ([TEAM_]) comes onto the pitch so that [PLAYER_SUtZhkKF] can be given a rest.",
"anonymized": "The referee signals that it is time for a substitution and [PLAYER] ([TEAM]) comes onto the pitch so that [PLAYER] can be given a rest.",
"visibility": "shown",
"position": "779000"
},
{
"important": true,
"gameTime": "2 - 12:45",
"label": "substitution",
"description": "Thomas Tuchel prepares a substitution. Adrian Ramos is replaced by Marco Reus (Dortmund).",
"identified": "[COACH_CQTUFgPk] prepares a substitution. [PLAYER_YZ3fZd1q] is replaced by [PLAYER_fonESekN] ([TEAM_]).",
"anonymized": "[COACH] prepares a substitution. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "765000"
},
{
"important": true,
"gameTime": "2 - 12:15",
"label": "substitution",
"description": "Here comes a substitution. Julian Weigl is given a rest as he is replaced by Sebastian Rode (Dortmund).",
"identified": "Here comes a substitution. [PLAYER_2wwMMwAa] is given a rest as he is replaced by [PLAYER_2ukcBSGo] ([TEAM_]).",
"anonymized": "Here comes a substitution. [PLAYER] is given a rest as he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "735000"
},
{
"important": false,
"gameTime": "2 - 11:22",
"label": "",
"description": "Mijat Gacinovic (Eintracht Frankfurt) feels very aggrieved after the referee stops play for a foul that he commits while in possession of the ball.",
"identified": "[PLAYER_nBEIWHXE] ([TEAM_]) feels very aggrieved after the referee stops play for a foul that he commits while in possession of the ball.",
"anonymized": "[PLAYER] ([TEAM]) feels very aggrieved after the referee stops play for a foul that he commits while in possession of the ball.",
"visibility": "shown",
"position": "682000"
},
{
"important": false,
"gameTime": "2 - 06:21",
"label": "",
"description": "Marcel Schmelzer (Dortmund) tries to find Gonzalo Castro, but he puts too much power on the pass.",
"identified": "[PLAYER_n3VwNCjb] ([TEAM_]) tries to find [PLAYER_tWNcwyFS], but he puts too much power on the pass.",
"anonymized": "[PLAYER] ([TEAM]) tries to find [PLAYER], but he puts too much power on the pass.",
"visibility": "shown",
"position": "381000"
},
{
"important": false,
"gameTime": "2 - 03:35",
"label": "",
"description": "Some great controlled play and passing in the middle of the pitch from Dortmund.",
"identified": "Some great controlled play and passing in the middle of the pitch from [TEAM_].",
"anonymized": "Some great controlled play and passing in the middle of the pitch from [TEAM].",
"visibility": "shown",
"position": "215000"
},
{
"important": true,
"gameTime": "2 - 00:59",
"label": "soccer-ball",
"description": "Goal! Timothy Chandler displays great vision and sends a pass to Szabolcs Huszti (Eintracht Frankfurt), who shows brilliant composure inside the box to bury the ball into the top of the net. The score is 1:0.",
"identified": "Goal! [PLAYER_KdoHDRzE] displays great vision and sends a pass to [PLAYER_t6O4TcHJ] ([TEAM_]), who shows brilliant composure inside the box to bury the ball into the top of the net. The score is 1:0.",
"anonymized": "Goal! [PLAYER] displays great vision and sends a pass to [PLAYER] ([TEAM]), who shows brilliant composure inside the box to bury the ball into the top of the net. The score is 1:0.",
"visibility": "shown",
"position": "59000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The second half gets underway.",
"identified": "The second half gets underway.",
"anonymized": "The second half gets underway.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 48:59",
"label": "",
"description": "There has not been much to choose between the sides after an absorbing 45 minutes. Let's hope they can continue in the same vein in the second period. The visitors dominated that half and looked more dangerous in attack. The home players attempt to beat the opposition's defence using mostly counter-attacks. The away team tries to prevail using combination football.",
"identified": "There has not been much to choose between the sides after an absorbing 45 minutes. Let's hope they can continue in the same vein in the second period. The visitors dominated that half and looked more dangerous in attack. The home players attempt to beat the opposition's defence using mostly counter-attacks. The away team tries to prevail using combination football.",
"anonymized": "There has not been much to choose between the sides after an absorbing 45 minutes. Let's hope they can continue in the same vein in the second period. The visitors dominated that half and looked more dangerous in attack. The home players attempt to beat the opposition's defence using mostly counter-attacks. The away team tries to prevail using combination football.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "1 - 48:25",
"label": "y-card",
"description": "Marco Fabian (Eintracht Frankfurt) makes a bad challenge and receives a yellow card. The referee had no doubt.",
"identified": "[PLAYER_0zYqWxIq] ([TEAM_]) makes a bad challenge and receives a yellow card. The referee had no doubt.",
"anonymized": "[PLAYER] ([TEAM]) makes a bad challenge and receives a yellow card. The referee had no doubt.",
"visibility": "shown",
"position": "2905000"
},
{
"important": true,
"gameTime": "1 - 48:10",
"label": "whistle",
"description": "That is it for the first half after the referee blows his whistle and the players head to their respective dressing rooms.",
"identified": "That is it for the first half after the referee blows his whistle and the players head to their respective dressing rooms.",
"anonymized": "That is it for the first half after the referee blows his whistle and the players head to their respective dressing rooms.",
"visibility": "shown",
"position": "2890000"
},
{
"important": false,
"gameTime": "1 - 46:37",
"label": "",
"description": "Marcel Schmelzer (Dortmund) is disappointed with himself because he got into a good area but produced a poor cross.",
"identified": "[PLAYER_n3VwNCjb] ([TEAM_]) is disappointed with himself because he got into a good area but produced a poor cross.",
"anonymized": "[PLAYER] ([TEAM]) is disappointed with himself because he got into a good area but produced a poor cross.",
"visibility": "shown",
"position": "2797000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "There will be a minimum of 3 min. of added time.",
"identified": "There will be a minimum of 3 min. of added time.",
"anonymized": "There will be a minimum of 3 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 44:12",
"label": "",
"description": "Jesus Vallejo (Eintracht Frankfurt) commits a foul and Wolfgang Stark immediately signals a free kick.",
"identified": "[PLAYER_WSRdoQ7I] ([TEAM_]) commits a foul and [REFEREE] immediately signals a free kick.",
"anonymized": "[PLAYER] ([TEAM]) commits a foul and [REFEREE] immediately signals a free kick.",
"visibility": "shown",
"position": "2652000"
},
{
"important": false,
"gameTime": "1 - 41:18",
"label": "corner",
"description": "Andre Schurrle (Dortmund) takes the corner kick and sends the ball among a huddle of players inside the penalty area, but one of the defenders clears it to safety.",
"identified": "[PLAYER_SUtZhkKF] ([TEAM_]) takes the corner kick and sends the ball among a huddle of players inside the penalty area, but one of the defenders clears it to safety.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner kick and sends the ball among a huddle of players inside the penalty area, but one of the defenders clears it to safety.",
"visibility": "shown",
"position": "2478000"
},
{
"important": false,
"gameTime": "1 - 41:03",
"label": "",
"description": "Lukasz Piszczek (Dortmund) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety. The ball goes out of play. Dortmund are awarded a corner kick.",
"identified": "[PLAYER_AZgM33p0] ([TEAM_]) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "2463000"
},
{
"important": false,
"gameTime": "1 - 39:36",
"label": "corner",
"description": "The resulting corner from Szabolcs Huszti (Eintracht Frankfurt) is cleared by the opposition's defence.",
"identified": "The resulting corner from [PLAYER_t6O4TcHJ] ([TEAM_]) is cleared by the opposition's defence.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) is cleared by the opposition's defence.",
"visibility": "shown",
"position": "2376000"
},
{
"important": false,
"gameTime": "1 - 38:38",
"label": "",
"description": "Mijat Gacinovic (Eintracht Frankfurt) fails to find any of his teammates inside the box as his pass is blocked. The linesman points to the corner flag, Eintracht Frankfurt are going to take it.",
"identified": "[PLAYER_nBEIWHXE] ([TEAM_]) fails to find any of his teammates inside the box as his pass is blocked. The linesman points to the corner flag, [TEAM_] are going to take it.",
"anonymized": "[PLAYER] ([TEAM]) fails to find any of his teammates inside the box as his pass is blocked. The linesman points to the corner flag, [TEAM] are going to take it.",
"visibility": "shown",
"position": "2318000"
},
{
"important": false,
"gameTime": "1 - 38:01",
"label": "",
"description": "A promising cross into the box is nearly received by the lurking Pierre-Emerick Aubameyang (Dortmund), but one of the defending players cuts it out to avert the threat.",
"identified": "A promising cross into the box is nearly received by the lurking [PLAYER_Wl4EyKZk] ([TEAM_]), but one of the defending players cuts it out to avert the threat.",
"anonymized": "A promising cross into the box is nearly received by the lurking [PLAYER] ([TEAM]), but one of the defending players cuts it out to avert the threat.",
"visibility": "shown",
"position": "2281000"
},
{
"important": false,
"gameTime": "1 - 36:16",
"label": "",
"description": "Szabolcs Huszti (Eintracht Frankfurt) picks up a pass and hits the ball towards the top of the net, but he can't generate enough power to trouble Roman Weidenfeller.",
"identified": "[PLAYER_t6O4TcHJ] ([TEAM_]) picks up a pass and hits the ball towards the top of the net, but he can't generate enough power to trouble [PLAYER_SWPWwvA4].",
"anonymized": "[PLAYER] ([TEAM]) picks up a pass and hits the ball towards the top of the net, but he can't generate enough power to trouble [PLAYER].",
"visibility": "shown",
"position": "2176000"
},
{
"important": true,
"gameTime": "1 - 33:55",
"label": "y-card",
"description": "This yellow card was deserved. The tackle by Michael Hector (Eintracht Frankfurt) was quite harsh and Wolfgang Stark didn't hesitate to show him a yellow card.",
"identified": "This yellow card was deserved. The tackle by [PLAYER_I5d54NWB] ([TEAM_]) was quite harsh and [REFEREE] didn't hesitate to show him a yellow card.",
"anonymized": "This yellow card was deserved. The tackle by [PLAYER] ([TEAM]) was quite harsh and [REFEREE] didn't hesitate to show him a yellow card.",
"visibility": "shown",
"position": "2035000"
},
{
"important": false,
"gameTime": "1 - 33:29",
"label": "",
"description": "Adrian Ramos (Dortmund) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack.",
"identified": "[PLAYER_YZ3fZd1q] ([TEAM_]) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack.",
"visibility": "shown",
"position": "2009000"
},
{
"important": true,
"gameTime": "1 - 28:46",
"label": "",
"description": "Pierre-Emerick Aubameyang (Dortmund) and his stunning dribble! He zig-zags through the defence and gets in front of the keeper. He faints to shoot and then suddenly strikes goalwards, but his effort misses the target by a whisker. Very unlucky for Pierre-Emerick Aubameyang (Dortmund). This could have been a legendary goal.",
"identified": "[PLAYER_Wl4EyKZk] ([TEAM_]) and his stunning dribble! He zig-zags through the defence and gets in front of the keeper. He faints to shoot and then suddenly strikes goalwards, but his effort misses the target by a whisker. Very unlucky for [PLAYER_Wl4EyKZk] ([TEAM_]). This could have been a legendary goal.",
"anonymized": "[PLAYER] ([TEAM]) and his stunning dribble! He zig-zags through the defence and gets in front of the keeper. He faints to shoot and then suddenly strikes goalwards, but his effort misses the target by a whisker. Very unlucky for [PLAYER] ([TEAM]). This could have been a legendary goal.",
"visibility": "shown",
"position": "1726000"
},
{
"important": false,
"gameTime": "1 - 26:43",
"label": "",
"description": "Andre Schurrle (Dortmund) is caught offside, but it was a really close call.",
"identified": "[PLAYER_SUtZhkKF] ([TEAM_]) is caught offside, but it was a really close call.",
"anonymized": "[PLAYER] ([TEAM]) is caught offside, but it was a really close call.",
"visibility": "shown",
"position": "1603000"
},
{
"important": false,
"gameTime": "1 - 25:58",
"label": "",
"description": "Andre Schurrle swings the cross over. Adrian Ramos (Dortmund) gets his head to it but it goes just wide of the left post.",
"identified": "[PLAYER_SUtZhkKF] swings the cross over. [PLAYER_YZ3fZd1q] ([TEAM_]) gets his head to it but it goes just wide of the left post.",
"anonymized": "[PLAYER] swings the cross over. [PLAYER] ([TEAM]) gets his head to it but it goes just wide of the left post.",
"visibility": "shown",
"position": "1558000"
},
{
"important": false,
"gameTime": "1 - 24:57",
"label": "",
"description": "Timothy Chandler (Eintracht Frankfurt) sends a cross into the box, but Roman Weidenfeller comes off his line to gather the ball.",
"identified": "[PLAYER_KdoHDRzE] ([TEAM_]) sends a cross into the box, but [PLAYER_SWPWwvA4] comes off his line to gather the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but [PLAYER] comes off his line to gather the ball.",
"visibility": "shown",
"position": "1497000"
},
{
"important": false,
"gameTime": "1 - 24:08",
"label": "",
"description": "Eintracht Frankfurt produce a short pass from the free kick.",
"identified": "[TEAM_] produce a short pass from the free kick.",
"anonymized": "[TEAM] produce a short pass from the free kick.",
"visibility": "shown",
"position": "1448000"
},
{
"important": false,
"gameTime": "1 - 23:56",
"label": "",
"description": "Adrian Ramos (Dortmund) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves Wolfgang Stark with no other option than to blow for a foul.",
"identified": "[PLAYER_YZ3fZd1q] ([TEAM_]) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves [REFEREE] with no other option than to blow for a foul.",
"anonymized": "[PLAYER] ([TEAM]) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves [REFEREE] with no other option than to blow for a foul.",
"visibility": "shown",
"position": "1436000"
},
{
"important": false,
"gameTime": "1 - 23:16",
"label": "",
"description": "Gonzalo Castro (Dortmund) releases a low pass from just outside the box in an attempt to find his teammate, but one of the defenders calmly averts the threat.",
"identified": "[PLAYER_tWNcwyFS] ([TEAM_]) releases a low pass from just outside the box in an attempt to find his teammate, but one of the defenders calmly averts the threat.",
"anonymized": "[PLAYER] ([TEAM]) releases a low pass from just outside the box in an attempt to find his teammate, but one of the defenders calmly averts the threat.",
"visibility": "shown",
"position": "1396000"
},
{
"important": false,
"gameTime": "1 - 19:57",
"label": "",
"description": "Pierre-Emerick Aubameyang (Dortmund) almost finds himself in a very promising position, but he is flagged offside by the linesman.",
"identified": "[PLAYER_Wl4EyKZk] ([TEAM_]) almost finds himself in a very promising position, but he is flagged offside by the linesman.",
"anonymized": "[PLAYER] ([TEAM]) almost finds himself in a very promising position, but he is flagged offside by the linesman.",
"visibility": "shown",
"position": "1197000"
},
{
"important": false,
"gameTime": "1 - 18:37",
"label": "",
"description": "Makoto Hasebe (Eintracht Frankfurt) seems to be alright and is okay to carry on.",
"identified": "[PLAYER_v9huBzd3] ([TEAM_]) seems to be alright and is okay to carry on.",
"anonymized": "[PLAYER] ([TEAM]) seems to be alright and is okay to carry on.",
"visibility": "shown",
"position": "1117000"
},
{
"important": false,
"gameTime": "1 - 18:11",
"label": "",
"description": "Pierre-Emerick Aubameyang (Dortmund) stands over the free kick and opts to take it himself, but it is straight at Lukas Hradecky.",
"identified": "[PLAYER_Wl4EyKZk] ([TEAM_]) stands over the free kick and opts to take it himself, but it is straight at [PLAYER_nRZtaBXj].",
"anonymized": "[PLAYER] ([TEAM]) stands over the free kick and opts to take it himself, but it is straight at [PLAYER].",
"visibility": "shown",
"position": "1091000"
},
{
"important": false,
"gameTime": "1 - 17:06",
"label": "injury",
"description": "Makoto Hasebe (Eintracht Frankfurt) is being forced to leave the pitch in order to receive medical treatment and his team will play with a man short for a few minutes.",
"identified": "[PLAYER_v9huBzd3] ([TEAM_]) is being forced to leave the pitch in order to receive medical treatment and his team will play with a man short for a few minutes.",
"anonymized": "[PLAYER] ([TEAM]) is being forced to leave the pitch in order to receive medical treatment and his team will play with a man short for a few minutes.",
"visibility": "shown",
"position": "1026000"
},
{
"important": false,
"gameTime": "1 - 16:56",
"label": "",
"description": "Makoto Hasebe (Eintracht Frankfurt) commits an ugly tackle on his opponent, but there is no caution from the referee. A free kick has been awarded to Dortmund.",
"identified": "[PLAYER_v9huBzd3] ([TEAM_]) commits an ugly tackle on his opponent, but there is no caution from the referee. A free kick has been awarded to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) commits an ugly tackle on his opponent, but there is no caution from the referee. A free kick has been awarded to [TEAM].",
"visibility": "shown",
"position": "1016000"
},
{
"important": true,
"gameTime": "1 - 16:21",
"label": "",
"description": "Lukas Hradecky pulls off a great save to deny Andre Schurrle (Dortmund), who makes himself some space inside the box and unleashes a quick shot to the right side of the goal.",
"identified": "[PLAYER_nRZtaBXj] pulls off a great save to deny [PLAYER_SUtZhkKF] ([TEAM_]), who makes himself some space inside the box and unleashes a quick shot to the right side of the goal.",
"anonymized": "[PLAYER] pulls off a great save to deny [PLAYER] ([TEAM]), who makes himself some space inside the box and unleashes a quick shot to the right side of the goal.",
"visibility": "shown",
"position": "981000"
},
{
"important": false,
"gameTime": "1 - 13:57",
"label": "",
"description": "Lukas Hradecky gets a well deserved ovation! Andre Schurrle (Dortmund) produces a decent first-time strike towards the left post, but the goalkeeper is positioned well to block it. Nice goalkeeping skills.",
"identified": "[PLAYER_nRZtaBXj] gets a well deserved ovation! [PLAYER_SUtZhkKF] ([TEAM_]) produces a decent first-time strike towards the left post, but the goalkeeper is positioned well to block it. Nice goalkeeping skills.",
"anonymized": "[PLAYER] gets a well deserved ovation! [PLAYER] ([TEAM]) produces a decent first-time strike towards the left post, but the goalkeeper is positioned well to block it. Nice goalkeeping skills.",
"visibility": "shown",
"position": "837000"
},
{
"important": false,
"gameTime": "1 - 12:23",
"label": "",
"description": "Andre Schurrle (Dortmund) attempts to release Marcel Schmelzer with a through ball, but his effort is thwarted by one of the defending players.",
"identified": "[PLAYER_SUtZhkKF] ([TEAM_]) attempts to release [PLAYER_n3VwNCjb] with a through ball, but his effort is thwarted by one of the defending players.",
"anonymized": "[PLAYER] ([TEAM]) attempts to release [PLAYER] with a through ball, but his effort is thwarted by one of the defending players.",
"visibility": "shown",
"position": "743000"
},
{
"important": false,
"gameTime": "1 - 11:25",
"label": "corner",
"description": "Mario Gotze (Dortmund) takes the corner with a short pass.",
"identified": "[PLAYER_veaF8P5m] ([TEAM_]) takes the corner with a short pass.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner with a short pass.",
"visibility": "shown",
"position": "685000"
},
{
"important": false,
"gameTime": "1 - 11:15",
"label": "",
"description": "Adrian Ramos (Dortmund) looks to break free, but an opposing player clears the ball away. The ball is out of play and the linesman points at the corner flag. Corner to Dortmund.",
"identified": "[PLAYER_YZ3fZd1q] ([TEAM_]) looks to break free, but an opposing player clears the ball away. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM].",
"visibility": "shown",
"position": "675000"
},
{
"important": false,
"gameTime": "1 - 10:29",
"label": "",
"description": "Bastian Oczipka (Eintracht Frankfurt) sends a cross into the box, but the opposition's defence clears the ball away to eliminate the danger.",
"identified": "[PLAYER_S0VmcHI9] ([TEAM_]) sends a cross into the box, but the opposition's defence clears the ball away to eliminate the danger.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence clears the ball away to eliminate the danger.",
"visibility": "shown",
"position": "629000"
}
]
} |