File size: 75,618 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 |
{
"timestamp": "1477143000",
"score": "3 - 3",
"round": "8",
"teams": [
"Dortmund",
"Ingolstadt"
],
"lineup": {
"home": {
"tactic": "1-4-4-2",
"players": [
{
"hash": "nHxuEsaU",
"name": "Cohen A.",
"captain": "",
"detail_link": "/player/cohen-almog/nHxuEsaU/",
"short_name": "Cohen",
"shirt_number": "36",
"country": "Israel",
"facts": [
{
"type": "3",
"time": "6' Cohen A. (Suttner M.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Almog Cohen"
},
{
"hash": "trpxfbO3",
"name": "Gross P.",
"captain": "",
"detail_link": "/player/gross-pascal/trpxfbO3/",
"short_name": "Gross",
"shirt_number": "10",
"country": "Germany",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Pascal Gross"
},
{
"hash": "4vwiuzXQ",
"name": "Hadergjonaj F.",
"captain": "",
"detail_link": "/player/hadergjonaj-florent/4vwiuzXQ/",
"short_name": "Hadergjonaj",
"shirt_number": "33",
"country": "Kosovo",
"facts": [
{
"type": "8",
"time": "59' Lezcano D. (Hadergjonaj F.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Florent Hadergjonaj"
},
{
"hash": "2FNYfTb1",
"name": "Hartmann M.",
"captain": "",
"detail_link": "/player/hartmann-moritz/2FNYfTb1/",
"short_name": "Hartmann",
"shirt_number": "9",
"country": "Germany",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Moritz Hartmann"
},
{
"hash": "fD87UpKJ",
"name": "Hinterseer L.",
"captain": "",
"detail_link": "/player/hinterseer-lukas/fD87UpKJ/",
"short_name": "Hinterseer",
"shirt_number": "16",
"country": "Austria",
"facts": [
{
"type": "6",
"time": "89'",
"description": "Morales A.",
"linked_player_hash": "pAVyD4bJ"
}
],
"lineup": 11,
"starting": true,
"long_name": "Lukas Hinterseer"
},
{
"hash": "tCgD2xse",
"name": "Lezcano D.",
"captain": "",
"detail_link": "/player/lezcano-dario/tCgD2xse/",
"short_name": "Lezcano",
"shirt_number": "11",
"country": "Paraguay",
"facts": [
{
"type": "3",
"time": "24' Lezcano D. (Suttner M.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "3",
"time": "59' Lezcano D. (Hadergjonaj F.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "72'",
"description": "Leckie M.",
"linked_player_hash": "pxSEDSGF"
}
],
"lineup": 10,
"starting": true,
"long_name": "Dario Lezcano"
},
{
"hash": "dxwoWJ2g",
"name": "Matip M.",
"captain": "(C)",
"detail_link": "/player/matip-marvin/dxwoWJ2g/",
"short_name": "Matip",
"shirt_number": "34",
"country": "Cameroon",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Marvin Matip"
},
{
"hash": "UJ9btoDi",
"name": "Nyland O.",
"captain": "",
"detail_link": "/player/nyland-orjan/UJ9btoDi/",
"short_name": "Nyland",
"shirt_number": "1",
"country": "Norway",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Orjan Nyland"
},
{
"hash": "C2SxJvVd",
"name": "Roger",
"captain": "",
"detail_link": "/player/roger/C2SxJvVd/",
"short_name": "Roger",
"shirt_number": "8",
"country": "Brazil",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Roger"
},
{
"hash": "6wL0EhK2",
"name": "Suttner M.",
"captain": "",
"detail_link": "/player/suttner-markus/6wL0EhK2/",
"short_name": "Suttner",
"shirt_number": "29",
"country": "Austria",
"facts": [
{
"type": "8",
"time": "6' Cohen A. (Suttner M.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "8",
"time": "24' Lezcano D. (Suttner M.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Markus Suttner"
},
{
"hash": "A3rfsrdG",
"name": "Tisserand M.",
"captain": "",
"detail_link": "/player/tisserand-marcel/A3rfsrdG/",
"short_name": "Tisserand",
"shirt_number": "32",
"country": "DR Congo",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Marcel Tisserand"
},
{
"hash": "xrPtWcsn",
"name": "Bregerie R.",
"captain": "",
"detail_link": "/player/bregerie-romain/xrPtWcsn/",
"short_name": "Bregerie",
"shirt_number": "18",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Romain Bregerie"
},
{
"hash": "2qfaierQ",
"name": "Christiansen M.",
"captain": "",
"detail_link": "/player/christiansen-max/2qfaierQ/",
"short_name": "Christiansen",
"shirt_number": "19",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Max Christiansen"
},
{
"hash": "8CmNQlek",
"name": "Hansen M.",
"captain": "",
"detail_link": "/player/hansen-martin/8CmNQlek/",
"short_name": "Hansen",
"shirt_number": "35",
"country": "Denmark",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Martin Hansen"
},
{
"hash": "pxSEDSGF",
"name": "Leckie M.",
"captain": "",
"detail_link": "/player/leckie-mathew/pxSEDSGF/",
"short_name": "Leckie",
"shirt_number": "7",
"country": "Australia",
"facts": [
{
"type": "7",
"time": "72'",
"description": "Lezcano D.",
"linked_player_hash": "tCgD2xse"
}
],
"lineup": null,
"starting": false,
"long_name": "Mathew Leckie"
},
{
"hash": "tjMGarqk",
"name": "Levels T.",
"captain": "",
"detail_link": "/player/levels-tobias/tjMGarqk/",
"short_name": "Levels",
"shirt_number": "28",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Tobias Levels"
},
{
"hash": "byg47nnB",
"name": "Lex S.",
"captain": "",
"detail_link": "/player/lex-stefan/byg47nnB/",
"short_name": "Lex",
"shirt_number": "14",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Stefan Lex"
},
{
"hash": "pAVyD4bJ",
"name": "Morales A.",
"captain": "",
"detail_link": "/player/morales-alfredo/pAVyD4bJ/",
"short_name": "Morales",
"shirt_number": "6",
"country": "USA",
"facts": [
{
"type": "7",
"time": "89'",
"description": "Hinterseer L.",
"linked_player_hash": "fD87UpKJ"
}
],
"lineup": null,
"starting": false,
"long_name": "Alfredo Morales"
}
],
"coach": [
{
"hash": "OKZOjp5I",
"name": "Kauczinski M.",
"captain": "",
"detail_link": "/player/kauczinski-markus/OKZOjp5I/",
"short_name": "Kauczinski M.",
"shirt_number": "",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Markus Kauczinski"
}
]
},
"away": {
"tactic": "1-4-1-3-2",
"players": [
{
"hash": "Wl4EyKZk",
"name": "Aubameyang P.",
"captain": "(C)",
"detail_link": "/player/aubameyang-pierre-emerick/Wl4EyKZk/",
"short_name": "Aubameyang",
"shirt_number": "17",
"country": "Gabon",
"facts": [
{
"type": "3",
"time": "59' Aubameyang P. (Dembele O.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Pierre-Emerick Aubameyang"
},
{
"hash": "8K4WA9Gh",
"name": "Bartra M.",
"captain": "",
"detail_link": "/player/bartra-marc/8K4WA9Gh/",
"short_name": "Bartra",
"shirt_number": "5",
"country": "Spain",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Marc Bartra"
},
{
"hash": "tWNcwyFS",
"name": "Castro G.",
"captain": "",
"detail_link": "/player/castro-gonzalo/tWNcwyFS/",
"short_name": "Castro",
"shirt_number": "27",
"country": "Germany",
"facts": [
{
"type": "6",
"time": "59'",
"description": "Gotze M.",
"linked_player_hash": "veaF8P5m"
}
],
"lineup": 7,
"starting": true,
"long_name": "Gonzalo Castro"
},
{
"hash": "zsMC2Ec0",
"name": "Dembele O.",
"captain": "",
"detail_link": "/player/dembele-ousmane/zsMC2Ec0/",
"short_name": "Dembele",
"shirt_number": "7",
"country": "France",
"facts": [
{
"type": "8",
"time": "59' Aubameyang P. (Dembele O.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Ousmane Dembele"
},
{
"hash": "27fpNoQk",
"name": "Ginter M.",
"captain": "",
"detail_link": "/player/ginter-matthias/27fpNoQk/",
"short_name": "Ginter",
"shirt_number": "28",
"country": "Germany",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Matthias Ginter"
},
{
"hash": "zcwd2hro",
"name": "Kagawa S.",
"captain": "",
"detail_link": "/player/kagawa-shinji/zcwd2hro/",
"short_name": "Kagawa",
"shirt_number": "23",
"country": "Japan",
"facts": [
{
"type": "6",
"time": "73'",
"description": "Passlack F.",
"linked_player_hash": "rHIRgwGG"
}
],
"lineup": 8,
"starting": true,
"long_name": "Shinji Kagawa"
},
{
"hash": "QmgkhFOH",
"name": "Park Joo-Ho",
"captain": "",
"detail_link": "/player/park-joo-ho/QmgkhFOH/",
"short_name": "Park",
"shirt_number": "3",
"country": "South Korea",
"facts": [
{
"type": "6",
"time": "46'",
"description": "Pulisic C.",
"linked_player_hash": "vTuaEfRq"
}
],
"lineup": 5,
"starting": true,
"long_name": "Joo-Ho Park"
},
{
"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": "3",
"time": "69' Ramos A. (Pulisic C.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "1",
"time": "71' Ramos A. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Adrian Ramos"
},
{
"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": [],
"lineup": 6,
"starting": true,
"long_name": "Julian Weigl"
},
{
"hash": "x6gzWUIk",
"name": "Burki R.",
"captain": "",
"detail_link": "/player/burki-roman/x6gzWUIk/",
"short_name": "Burki",
"shirt_number": "38",
"country": "Switzerland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Roman Burki"
},
{
"hash": "40zt37bl",
"name": "Burnic D.",
"captain": "",
"detail_link": "/player/burnic-dzenis/40zt37bl/",
"short_name": "Burnic",
"shirt_number": "32",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Dzenis Burnic"
},
{
"hash": "veaF8P5m",
"name": "Gotze M.",
"captain": "",
"detail_link": "/player/gotze-mario/veaF8P5m/",
"short_name": "Gotze",
"shirt_number": "10",
"country": "Germany",
"facts": [
{
"type": "7",
"time": "59'",
"description": "Castro G.",
"linked_player_hash": "tWNcwyFS"
}
],
"lineup": null,
"starting": false,
"long_name": "Mario Gotze"
},
{
"hash": "QFt86bm1",
"name": "Merino M.",
"captain": "",
"detail_link": "/player/merino-mikel/QFt86bm1/",
"short_name": "Merino",
"shirt_number": "24",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mikel Merino"
},
{
"hash": "rHIRgwGG",
"name": "Passlack F.",
"captain": "",
"detail_link": "/player/passlack-felix/rHIRgwGG/",
"short_name": "Passlack",
"shirt_number": "30",
"country": "Germany",
"facts": [
{
"type": "7",
"time": "73'",
"description": "Kagawa S.",
"linked_player_hash": "zcwd2hro"
}
],
"lineup": null,
"starting": false,
"long_name": "Felix Passlack"
},
{
"hash": "vTuaEfRq",
"name": "Pulisic C.",
"captain": "",
"detail_link": "/player/pulisic-christian/vTuaEfRq/",
"short_name": "Pulisic",
"shirt_number": "22",
"country": "USA",
"facts": [
{
"type": "7",
"time": "46'",
"description": "Park Joo-Ho",
"linked_player_hash": "QmgkhFOH"
},
{
"type": "8",
"time": "69' Ramos A. (Pulisic C.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "3",
"time": "90+1' Pulisic C.",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Christian Pulisic"
},
{
"hash": "2ukcBSGo",
"name": "Rode S.",
"captain": "",
"detail_link": "/player/rode-sebastian/2ukcBSGo/",
"short_name": "Rode",
"shirt_number": "18",
"country": "Germany",
"facts": [],
"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": [
"Zwayer F."
],
"venue": [
"Audi Sportpark (Ingolstadt)"
],
"attendance": [
"15 200"
],
"referee_matched": [
"Felix Zwayer"
],
"referee_found": [
"Felix Zwayer"
],
"coach_matched": [
"The manager",
"Thomas Tuchel"
],
"gameHomeTeam": "Ingolstadt",
"home": {
"name": "Ingolstadt",
"detail_link": "/team/ingolstadt/ne5QkLtB",
"hash": "ne5QkLtB",
"names": [
"Ingolstadt",
"ingolstadt"
]
},
"gameAwayTeam": "Dortmund",
"away": {
"name": "Dortmund",
"detail_link": "/team/dortmund/nP1i5US1",
"hash": "nP1i5US1",
"names": [
"Dortmund",
"Dortmund (Ger)",
"dortmund"
]
},
"gameDate": "22/10/2016 - 15:30",
"annotations": [
{
"important": false,
"gameTime": "2 - 49:59",
"label": "",
"description": "What a thrilling encounter, there was plenty of goal mouth action. Both teams tried unsuccessfully to control the game. Their overall performances were more or less even. The home players attempted to beat the opposition's defence using mostly counter-attacks. The away team tried to prevail using combination football.",
"identified": "What a thrilling encounter, there was plenty of goal mouth action. Both teams tried unsuccessfully to control the game. Their overall performances were more or less even. The home players attempted to beat the opposition's defence using mostly counter-attacks. The away team tried to prevail using combination football.",
"anonymized": "What a thrilling encounter, there was plenty of goal mouth action. Both teams tried unsuccessfully to control the game. Their overall performances were more or less even. The home players attempted to beat the opposition's defence using mostly counter-attacks. The away team tried to prevail using combination football.",
"visibility": "shown",
"position": "2999000"
},
{
"important": true,
"gameTime": "2 - 49:03",
"label": "whistle",
"description": "That's it for today, Felix Zwayer has blown his whistle and the game is over.",
"identified": "That's it for today, [REFEREE] has blown his whistle and the game is over.",
"anonymized": "That's it for today, [REFEREE] has blown his whistle and the game is over.",
"visibility": "shown",
"position": "2943000"
},
{
"important": true,
"gameTime": "2 - 48:07",
"label": "",
"description": "Felix Passlack sends a terrific cross into the box. Pierre-Emerick Aubameyang (Dortmund) gets on the end of it but his header from the centre of the box goes just over the bar. The ball is off of the pitch and it's a goal kick for Ingolstadt.",
"identified": "[PLAYER_rHIRgwGG] sends a terrific cross into the box. [PLAYER_Wl4EyKZk] ([TEAM_]) gets on the end of it but his header from the centre of the box goes just over the bar. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] sends a terrific cross into the box. [PLAYER] ([TEAM]) gets on the end of it but his header from the centre of the box goes just over the bar. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "2887000"
},
{
"important": true,
"gameTime": "2 - 45:57",
"label": "soccer-ball",
"description": "Goal! Christian Pulisic (Dortmund) fires the rebound into the bottom right corner after the ball breaks to him in the box. The score is 2:1.",
"identified": "Goal! [PLAYER_vTuaEfRq] ([TEAM_]) fires the rebound into the bottom right corner after the ball breaks to him in the box. The score is 2:1.",
"anonymized": "Goal! [PLAYER] ([TEAM]) fires the rebound into the bottom right corner after the ball breaks to him in the box. The score is 2:1.",
"visibility": "shown",
"position": "2757000"
},
{
"important": true,
"gameTime": "2 - 45:50",
"label": "",
"description": "Lukasz Piszczek (Dortmund) rises above the defenders and places a towering header towards the bottom right corner, but Orjan Nyland is prepared and dives to thwart him.",
"identified": "[PLAYER_AZgM33p0] ([TEAM_]) rises above the defenders and places a towering header towards the bottom right corner, but [PLAYER_UJ9btoDi] is prepared and dives to thwart him.",
"anonymized": "[PLAYER] ([TEAM]) rises above the defenders and places a towering header towards the bottom right corner, but [PLAYER] is prepared and dives to thwart him.",
"visibility": "shown",
"position": "2750000"
},
{
"important": false,
"gameTime": "2 - 45:22",
"label": "corner",
"description": "The corner kick from Mario Gotze (Dortmund) is headed out of the penalty area by one of the defenders.",
"identified": "The corner kick from [PLAYER_veaF8P5m] ([TEAM_]) is headed out of the penalty area by one of the defenders.",
"anonymized": "The corner kick from [PLAYER] ([TEAM]) is headed out of the penalty area by one of the defenders.",
"visibility": "shown",
"position": "2722000"
},
{
"important": false,
"gameTime": "2 - 45:09",
"label": "",
"description": "A long ball forward to Pierre-Emerick Aubameyang (Dortmund) is intercepted. Dortmund force their opponents to concede a corner.",
"identified": "A long ball forward to [PLAYER_Wl4EyKZk] ([TEAM_]) is intercepted. [TEAM_] force their opponents to concede a corner.",
"anonymized": "A long ball forward to [PLAYER] ([TEAM]) is intercepted. [TEAM] force their opponents to concede a corner.",
"visibility": "shown",
"position": "2709000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "4 min. of stoppage-time to be played.",
"identified": "4 min. of stoppage-time to be played.",
"anonymized": "4 min. of stoppage-time to be played.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "2 - 43:54",
"label": "substitution",
"description": "The referee signals that it is time for a substitution and Alfredo Morales (Ingolstadt) comes onto the pitch so that Lukas Hinterseer can be given a rest.",
"identified": "The referee signals that it is time for a substitution and [PLAYER_pAVyD4bJ] ([TEAM_]) comes onto the pitch so that [PLAYER_fD87UpKJ] 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": "2634000"
},
{
"important": false,
"gameTime": "2 - 42:45",
"label": "corner",
"description": "Nothing comes of the resulting corner from Mario Gotze (Dortmund). The defence is alert and manages to cut it out.",
"identified": "Nothing comes of the resulting corner from [PLAYER_veaF8P5m] ([TEAM_]). The defence is alert and manages to cut it out.",
"anonymized": "Nothing comes of the resulting corner from [PLAYER] ([TEAM]). The defence is alert and manages to cut it out.",
"visibility": "shown",
"position": "2565000"
},
{
"important": false,
"gameTime": "2 - 42:30",
"label": "",
"description": "Pierre-Emerick Aubameyang (Dortmund) makes contact with a cross and strikes a shot towards the right post that lacks the powerful to find the back of the net, but the goalkeeper still has to pull off a marvellous diving save to keep his effort out. The ball goes out of play. Dortmund are awarded a corner kick.",
"identified": "[PLAYER_Wl4EyKZk] ([TEAM_]) makes contact with a cross and strikes a shot towards the right post that lacks the powerful to find the back of the net, but the goalkeeper still has to pull off a marvellous diving save to keep his effort out. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) makes contact with a cross and strikes a shot towards the right post that lacks the powerful to find the back of the net, but the goalkeeper still has to pull off a marvellous diving save to keep his effort out. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "2550000"
},
{
"important": false,
"gameTime": "2 - 41:17",
"label": "corner",
"description": "Mario Gotze (Dortmund) works the corner short instead of sending the ball into the penalty area.",
"identified": "[PLAYER_veaF8P5m] ([TEAM_]) works the corner short instead of sending the ball into the penalty area.",
"anonymized": "[PLAYER] ([TEAM]) works the corner short instead of sending the ball into the penalty area.",
"visibility": "shown",
"position": "2477000"
},
{
"important": false,
"gameTime": "2 - 40:58",
"label": "",
"description": "Mario Gotze (Dortmund) receives a precise low pass inside the box, controls the ball and drills it towards the right post. Unfortunately for him, Orjan Nyland makes a great save to stop his effort. The referee points to the corner flag and Dortmund will take a corner.",
"identified": "[PLAYER_veaF8P5m] ([TEAM_]) receives a precise low pass inside the box, controls the ball and drills it towards the right post. Unfortunately for him, [PLAYER_UJ9btoDi] makes a great save to stop his effort. The referee points to the corner flag and [TEAM_] will take a corner.",
"anonymized": "[PLAYER] ([TEAM]) receives a precise low pass inside the box, controls the ball and drills it towards the right post. Unfortunately for him, [PLAYER] makes a great save to stop his effort. The referee points to the corner flag and [TEAM] will take a corner.",
"visibility": "shown",
"position": "2458000"
},
{
"important": false,
"gameTime": "2 - 39:48",
"label": "",
"description": "Felix Passlack (Dortmund) delivers a promising cross into the box, but it's cleared.",
"identified": "[PLAYER_rHIRgwGG] ([TEAM_]) delivers a promising cross into the box, but it's cleared.",
"anonymized": "[PLAYER] ([TEAM]) delivers a promising cross into the box, but it's cleared.",
"visibility": "shown",
"position": "2388000"
},
{
"important": false,
"gameTime": "2 - 37:28",
"label": "",
"description": "He should have done better. Christian Pulisic (Dortmund) is afforded space to connect with a Felix Passlack cross, but his header from the centre of the box flies well wide of the right post.",
"identified": "He should have done better. [PLAYER_vTuaEfRq] ([TEAM_]) is afforded space to connect with a [PLAYER_rHIRgwGG] cross, but his header from the centre of the box flies well wide of the right post.",
"anonymized": "He should have done better. [PLAYER] ([TEAM]) is afforded space to connect with a [PLAYER] cross, but his header from the centre of the box flies well wide of the right post.",
"visibility": "shown",
"position": "2248000"
},
{
"important": false,
"gameTime": "2 - 34:57",
"label": "attendance",
"description": "The attendance is 15200.",
"identified": "The attendance is 15200.",
"anonymized": "The attendance is 15200.",
"visibility": "shown",
"position": "2097000"
},
{
"important": false,
"gameTime": "2 - 34:03",
"label": "",
"description": "Ousmane Dembele (Dortmund) takes a shot after receiving a good pass, but his effort from the edge of the box goes just over the crossbar. The ball is off of the pitch and it's a goal kick for Ingolstadt.",
"identified": "[PLAYER_zsMC2Ec0] ([TEAM_]) takes a shot after receiving a good pass, but his effort from the edge of the box goes just over the crossbar. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) takes a shot after receiving a good pass, but his effort from the edge of the box goes just over the crossbar. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "2043000"
},
{
"important": false,
"gameTime": "2 - 33:54",
"label": "corner",
"description": "This corner kick is taken with a short pass by Mario Gotze (Dortmund).",
"identified": "This corner kick is taken with a short pass by [PLAYER_veaF8P5m] ([TEAM_]).",
"anonymized": "This corner kick is taken with a short pass by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2034000"
},
{
"important": false,
"gameTime": "2 - 33:34",
"label": "",
"description": "Felix Passlack (Dortmund) tries his luck with a long-range effort after receiving a precise pass. It goes to the right side of the goal, but Orjan Nyland has a clear view of it and makes a comfortable save. Dortmund get a corner.",
"identified": "[PLAYER_rHIRgwGG] ([TEAM_]) tries his luck with a long-range effort after receiving a precise pass. It goes to the right side of the goal, but [PLAYER_UJ9btoDi] has a clear view of it and makes a comfortable save. [TEAM_] get a corner.",
"anonymized": "[PLAYER] ([TEAM]) tries his luck with a long-range effort after receiving a precise pass. It goes to the right side of the goal, but [PLAYER] has a clear view of it and makes a comfortable save. [TEAM] get a corner.",
"visibility": "shown",
"position": "2014000"
},
{
"important": false,
"gameTime": "2 - 33:20",
"label": "corner",
"description": "Mario Gotze (Dortmund) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"identified": "[PLAYER_veaF8P5m] ([TEAM_]) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"anonymized": "[PLAYER] ([TEAM]) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"visibility": "shown",
"position": "2000000"
},
{
"important": false,
"gameTime": "2 - 32:14",
"label": "",
"description": "Ousmane Dembele (Dortmund) passes the ball from the edge of the box in order to find his teammate, who is in a good scoring position, but the defender blocks the pass and spanks the ball to safety. Now Dortmund have a corner.",
"identified": "[PLAYER_zsMC2Ec0] ([TEAM_]) passes the ball from the edge of the box in order to find his teammate, who is in a good scoring position, but the defender blocks the pass and spanks the ball to safety. Now [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) passes the ball from the edge of the box in order to find his teammate, who is in a good scoring position, but the defender blocks the pass and spanks the ball to safety. Now [TEAM] have a corner.",
"visibility": "shown",
"position": "1934000"
},
{
"important": false,
"gameTime": "2 - 31:28",
"label": "",
"description": "Florent Hadergjonaj (Ingolstadt) clips an inviting cross into the box, but there's no one in a position to get on the end of it.",
"identified": "[PLAYER_4vwiuzXQ] ([TEAM_]) clips an inviting cross into the box, but there's no one in a position to get on the end of it.",
"anonymized": "[PLAYER] ([TEAM]) clips an inviting cross into the box, but there's no one in a position to get on the end of it.",
"visibility": "shown",
"position": "1888000"
},
{
"important": true,
"gameTime": "2 - 27:51",
"label": "substitution",
"description": "Here is a change. Shinji Kagawa is going off and Thomas Tuchel gives the last tactical orders to Felix Passlack (Dortmund).",
"identified": "Here is a change. [PLAYER_zcwd2hro] is going off and [COACH_CQTUFgPk] gives the last tactical orders to [PLAYER_rHIRgwGG] ([TEAM_]).",
"anonymized": "Here is a change. [PLAYER] is going off and [COACH] gives the last tactical orders to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1671000"
},
{
"important": false,
"gameTime": "2 - 27:20",
"label": "",
"description": "Christian Pulisic (Dortmund) shows too much aggression while trying to break free from his opponent and the referee blows his whistle for a foul.",
"identified": "[PLAYER_vTuaEfRq] ([TEAM_]) shows too much aggression while trying to break free from his opponent and the referee blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) shows too much aggression while trying to break free from his opponent and the referee blows his whistle for a foul.",
"visibility": "shown",
"position": "1640000"
},
{
"important": true,
"gameTime": "2 - 26:11",
"label": "substitution",
"description": "The manager has decided to make a substitution and Dario Lezcano walks off the pitch to be replaced by Mathew Leckie (Ingolstadt).",
"identified": "The manager has decided to make a substitution and [PLAYER_tCgD2xse] walks off the pitch to be replaced by [PLAYER_pxSEDSGF] ([TEAM_]).",
"anonymized": "The manager has decided to make a substitution and [PLAYER] walks off the pitch to be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1571000"
},
{
"important": true,
"gameTime": "2 - 25:20",
"label": "y-card",
"description": "A yellow card for a tackle by Adrian Ramos (Dortmund). Felix Zwayer doesn't hesitate at all to make this decision.",
"identified": "A yellow card for a tackle by [PLAYER_YZ3fZd1q] ([TEAM_]). [REFEREE] doesn't hesitate at all to make this decision.",
"anonymized": "A yellow card for a tackle by [PLAYER] ([TEAM]). [REFEREE] doesn't hesitate at all to make this decision.",
"visibility": "shown",
"position": "1520000"
},
{
"important": true,
"gameTime": "2 - 23:54",
"label": "soccer-ball",
"description": "Goal! Adrian Ramos (Dortmund) finds himself some space inside the box to get on the end of a pass from Christian Pulisic, then sends the ball low into the middle of the net. 2:1.",
"identified": "Goal! [PLAYER_YZ3fZd1q] ([TEAM_]) finds himself some space inside the box to get on the end of a pass from [PLAYER_vTuaEfRq], then sends the ball low into the middle of the net. 2:1.",
"anonymized": "Goal! [PLAYER] ([TEAM]) finds himself some space inside the box to get on the end of a pass from [PLAYER], then sends the ball low into the middle of the net. 2:1.",
"visibility": "shown",
"position": "1434000"
},
{
"important": false,
"gameTime": "2 - 20:41",
"label": "",
"description": "Dario Lezcano (Ingolstadt) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat.",
"identified": "[PLAYER_tCgD2xse] ([TEAM_]) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat.",
"anonymized": "[PLAYER] ([TEAM]) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat.",
"visibility": "shown",
"position": "1241000"
},
{
"important": true,
"gameTime": "2 - 15:52",
"label": "",
"description": "Moritz Hartmann (Ingolstadt) latches on to a cross on the edge of the box. He shows a good first touch and drills a low drive towards the left post, but the goalkeeper manages to punch the ball onto the post.",
"identified": "[PLAYER_2FNYfTb1] ([TEAM_]) latches on to a cross on the edge of the box. He shows a good first touch and drills a low drive towards the left post, but the goalkeeper manages to punch the ball onto the post.",
"anonymized": "[PLAYER] ([TEAM]) latches on to a cross on the edge of the box. He shows a good first touch and drills a low drive towards the left post, but the goalkeeper manages to punch the ball onto the post.",
"visibility": "shown",
"position": "952000"
},
{
"important": true,
"gameTime": "2 - 13:51",
"label": "soccer-ball",
"description": "Florent Hadergjonaj provides Dario Lezcano (Ingolstadt) with a nice pass inside the box. It allows him to finish with a low shot into the middle of the goal.",
"identified": "[PLAYER_4vwiuzXQ] provides [PLAYER_tCgD2xse] ([TEAM_]) with a nice pass inside the box. It allows him to finish with a low shot into the middle of the goal.",
"anonymized": "[PLAYER] provides [PLAYER] ([TEAM]) with a nice pass inside the box. It allows him to finish with a low shot into the middle of the goal.",
"visibility": "shown",
"position": "831000"
},
{
"important": true,
"gameTime": "2 - 13:20",
"label": "soccer-ball",
"description": "Pierre-Emerick Aubameyang (Dortmund) scores from quite a difficult position as he leaps high to connect with a cross and powers his header inside the left post. Excellent finish.",
"identified": "[PLAYER_Wl4EyKZk] ([TEAM_]) scores from quite a difficult position as he leaps high to connect with a cross and powers his header inside the left post. Excellent finish.",
"anonymized": "[PLAYER] ([TEAM]) scores from quite a difficult position as he leaps high to connect with a cross and powers his header inside the left post. Excellent finish.",
"visibility": "shown",
"position": "800000"
},
{
"important": true,
"gameTime": "2 - 13:05",
"label": "substitution",
"description": "A substitution has been made. Gonzalo Castro goes off and Mario Gotze (Dortmund) comes on.",
"identified": "A substitution has been made. [PLAYER_tWNcwyFS] goes off and [PLAYER_veaF8P5m] ([TEAM_]) comes on.",
"anonymized": "A substitution has been made. [PLAYER] goes off and [PLAYER] ([TEAM]) comes on.",
"visibility": "shown",
"position": "785000"
},
{
"important": false,
"gameTime": "2 - 12:41",
"label": "",
"description": "Gonzalo Castro (Dortmund) flights in the cross, but the defender is alert and clears to safety.",
"identified": "[PLAYER_tWNcwyFS] ([TEAM_]) flights in the cross, but the defender is alert and clears to safety.",
"anonymized": "[PLAYER] ([TEAM]) flights in the cross, but the defender is alert and clears to safety.",
"visibility": "shown",
"position": "761000"
},
{
"important": false,
"gameTime": "2 - 11:56",
"label": "",
"description": "An opponent rises to his feet after being downed by Marvin Matip (Ingolstadt). Felix Zwayer saw the sliding tackle and blows for a foul. Dortmund win a free kick and will be able to apply some pressure on the opposition goal.",
"identified": "An opponent rises to his feet after being downed by [PLAYER_dxwoWJ2g] ([TEAM_]). [REFEREE] saw the sliding tackle and blows for a foul. [TEAM_] win a free kick and will be able to apply some pressure on the opposition goal.",
"anonymized": "An opponent rises to his feet after being downed by [PLAYER] ([TEAM]). [REFEREE] saw the sliding tackle and blows for a foul. [TEAM] win a free kick and will be able to apply some pressure on the opposition goal.",
"visibility": "shown",
"position": "716000"
},
{
"important": false,
"gameTime": "2 - 10:20",
"label": "",
"description": "Marc Bartra (Dortmund) reacts well near the penalty spot to connect with the resulting corner, but fails to direct his header into the back of the net. The ball floats high over the bar.",
"identified": "[PLAYER_8K4WA9Gh] ([TEAM_]) reacts well near the penalty spot to connect with the resulting corner, but fails to direct his header into the back of the net. The ball floats high over the bar.",
"anonymized": "[PLAYER] ([TEAM]) reacts well near the penalty spot to connect with the resulting corner, but fails to direct his header into the back of the net. The ball floats high over the bar.",
"visibility": "shown",
"position": "620000"
},
{
"important": false,
"gameTime": "2 - 10:10",
"label": "corner",
"description": "Gonzalo Castro (Dortmund) goes over to take a corner kick after one of the defenders makes a good clearance.",
"identified": "[PLAYER_tWNcwyFS] ([TEAM_]) goes over to take a corner kick after one of the defenders makes a good clearance.",
"anonymized": "[PLAYER] ([TEAM]) goes over to take a corner kick after one of the defenders makes a good clearance.",
"visibility": "shown",
"position": "610000"
},
{
"important": false,
"gameTime": "2 - 09:49",
"label": "",
"description": "Shinji Kagawa (Dortmund) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat. The referee signals a corner kick to Dortmund.",
"identified": "[PLAYER_zcwd2hro] ([TEAM_]) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat. The referee signals a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat. The referee signals a corner kick to [TEAM].",
"visibility": "shown",
"position": "589000"
},
{
"important": false,
"gameTime": "2 - 08:26",
"label": "",
"description": "Christian Pulisic (Dortmund) wastes a good opportunity as his pass into the box is blocked by the defence.",
"identified": "[PLAYER_vTuaEfRq] ([TEAM_]) wastes a good opportunity as his pass into the box is blocked by the defence.",
"anonymized": "[PLAYER] ([TEAM]) wastes a good opportunity as his pass into the box is blocked by the defence.",
"visibility": "shown",
"position": "506000"
},
{
"important": false,
"gameTime": "2 - 04:53",
"label": "",
"description": "Gonzalo Castro (Dortmund) shoots after receiving a good pass. His effort from the edge of the box goes just wide of the left post.",
"identified": "[PLAYER_tWNcwyFS] ([TEAM_]) shoots after receiving a good pass. His effort from the edge of the box goes just wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) shoots after receiving a good pass. His effort from the edge of the box goes just wide of the left post.",
"visibility": "shown",
"position": "293000"
},
{
"important": false,
"gameTime": "2 - 01:02",
"label": "",
"description": "Ousmane Dembele (Dortmund) sends over a cross, but he can't find any teammate inside the box. Poor delivery.",
"identified": "[PLAYER_zsMC2Ec0] ([TEAM_]) sends over a cross, but he can't find any teammate inside the box. Poor delivery.",
"anonymized": "[PLAYER] ([TEAM]) sends over a cross, but he can't find any teammate inside the box. Poor delivery.",
"visibility": "shown",
"position": "62000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "substitution",
"description": "Thomas Tuchel has decided to make a substitution during the half-time break. Christian Pulisic (Dortmund) comes on the pitch for Joo-Ho Park.",
"identified": "[COACH_CQTUFgPk] has decided to make a substitution during the half-time break. [PLAYER_vTuaEfRq] ([TEAM_]) comes on the pitch for [PLAYER_QmgkhFOH].",
"anonymized": "[COACH] has decided to make a substitution during the half-time break. [PLAYER] ([TEAM]) comes on the pitch for [PLAYER].",
"visibility": "shown",
"position": "1000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The second half has just started.",
"identified": "The second half has just started.",
"anonymized": "The second half has just started.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 46:59",
"label": "",
"description": "The fans in the stadium won't regret buying tickets for today's game as they have witnessed a great game so far, and nothing suggests it's going to change in the second half. It has been a tight contest so far. The home side relies mostly on counter-attacks for their chances, while the away team adopts the opposite approach of possession football.",
"identified": "The fans in the stadium won't regret buying tickets for today's game as they have witnessed a great game so far, and nothing suggests it's going to change in the second half. It has been a tight contest so far. The home side relies mostly on counter-attacks for their chances, while the away team adopts the opposite approach of possession football.",
"anonymized": "The fans in the stadium won't regret buying tickets for today's game as they have witnessed a great game so far, and nothing suggests it's going to change in the second half. It has been a tight contest so far. The home side relies mostly on counter-attacks for their chances, while the away team adopts the opposite approach of possession football.",
"visibility": "shown",
"position": "2819000"
},
{
"important": true,
"gameTime": "1 - 46:02",
"label": "whistle",
"description": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"identified": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"anonymized": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"visibility": "shown",
"position": "2762000"
},
{
"important": false,
"gameTime": "1 - 45:49",
"label": "",
"description": "Roman Weidenfeller makes a sensational save to thwart a great chance. A rebound falls to Almog Cohen (Ingolstadt) on the edge of the box and he drills goalwards, but the ball ends up in the keeper's gloves instead of the middle of the goal.",
"identified": "[PLAYER_SWPWwvA4] makes a sensational save to thwart a great chance. A rebound falls to [PLAYER_nHxuEsaU] ([TEAM_]) on the edge of the box and he drills goalwards, but the ball ends up in the keeper's gloves instead of the middle of the goal.",
"anonymized": "[PLAYER] makes a sensational save to thwart a great chance. A rebound falls to [PLAYER] ([TEAM]) on the edge of the box and he drills goalwards, but the ball ends up in the keeper's gloves instead of the middle of the goal.",
"visibility": "shown",
"position": "2749000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "We will have 1 min. of added time.",
"identified": "We will have 1 min. of added time.",
"anonymized": "We will have 1 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 44:10",
"label": "corner",
"description": "Markus Suttner (Ingolstadt) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"identified": "[PLAYER_6wL0EhK2] ([TEAM_]) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"anonymized": "[PLAYER] ([TEAM]) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"visibility": "shown",
"position": "2650000"
},
{
"important": true,
"gameTime": "1 - 43:10",
"label": "",
"description": "Roman Weidenfeller was forced into action to thwart Dario Lezcano (Ingolstadt). He found himself some space after latching on to a pass and unleashed a shot to the bottom right corner but couldn't beat the keeper. Good work from Ingolstadt as they win a corner.",
"identified": "[PLAYER_SWPWwvA4] was forced into action to thwart [PLAYER_tCgD2xse] ([TEAM_]). He found himself some space after latching on to a pass and unleashed a shot to the bottom right corner but couldn't beat the keeper. Good work from [TEAM_] as they win a corner.",
"anonymized": "[PLAYER] was forced into action to thwart [PLAYER] ([TEAM]). He found himself some space after latching on to a pass and unleashed a shot to the bottom right corner but couldn't beat the keeper. Good work from [TEAM] as they win a corner.",
"visibility": "shown",
"position": "2590000"
},
{
"important": false,
"gameTime": "1 - 40:36",
"label": "",
"description": "Wow, what an escape. Ousmane Dembele (Dortmund) has an effort from inside the box but it's brilliantly blocked.",
"identified": "Wow, what an escape. [PLAYER_zsMC2Ec0] ([TEAM_]) has an effort from inside the box but it's brilliantly blocked.",
"anonymized": "Wow, what an escape. [PLAYER] ([TEAM]) has an effort from inside the box but it's brilliantly blocked.",
"visibility": "shown",
"position": "2436000"
},
{
"important": false,
"gameTime": "1 - 39:26",
"label": "",
"description": "Moritz Hartmann (Ingolstadt) commits a rough foul. Felix Zwayer stops the game and makes a call.",
"identified": "[PLAYER_2FNYfTb1] ([TEAM_]) commits a rough foul. [REFEREE] stops the game and makes a call.",
"anonymized": "[PLAYER] ([TEAM]) commits a rough foul. [REFEREE] stops the game and makes a call.",
"visibility": "shown",
"position": "2366000"
},
{
"important": false,
"gameTime": "1 - 38:51",
"label": "",
"description": "The free kick from long distance is taken by Pierre-Emerick Aubameyang (Dortmund), who fires in a direct effort inches over the crossbar. What a chance!",
"identified": "The free kick from long distance is taken by [PLAYER_Wl4EyKZk] ([TEAM_]), who fires in a direct effort inches over the crossbar. What a chance!",
"anonymized": "The free kick from long distance is taken by [PLAYER] ([TEAM]), who fires in a direct effort inches over the crossbar. What a chance!",
"visibility": "shown",
"position": "2331000"
},
{
"important": false,
"gameTime": "1 - 35:01",
"label": "",
"description": "Matthias Ginter (Dortmund) fouls an opponent. At least that's what referee Felix Zwayer signals.",
"identified": "[PLAYER_27fpNoQk] ([TEAM_]) fouls an opponent. At least that's what referee [REFEREE] signals.",
"anonymized": "[PLAYER] ([TEAM]) fouls an opponent. At least that's what referee [REFEREE] signals.",
"visibility": "shown",
"position": "2101000"
},
{
"important": false,
"gameTime": "1 - 32:56",
"label": "",
"description": "This shall not pass! Gonzalo Castro (Dortmund) lines up a shot from the edge of the box and goes for goal, but the effort is well blocked by a defender.",
"identified": "This shall not pass! [PLAYER_tWNcwyFS] ([TEAM_]) lines up a shot from the edge of the box and goes for goal, but the effort is well blocked by a defender.",
"anonymized": "This shall not pass! [PLAYER] ([TEAM]) lines up a shot from the edge of the box and goes for goal, but the effort is well blocked by a defender.",
"visibility": "shown",
"position": "1976000"
},
{
"important": false,
"gameTime": "1 - 28:25",
"label": "",
"description": "Lukasz Piszczek (Dortmund) timed his run perfectly to connect with the resulting corner kick, but his finish from around the penalty spot was rather poor as it went way over the bar. The ball goes out of play and Ingolstadt will have a goal kick.",
"identified": "[PLAYER_AZgM33p0] ([TEAM_]) timed his run perfectly to connect with the resulting corner kick, but his finish from around the penalty spot was rather poor as it went way over the bar. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) timed his run perfectly to connect with the resulting corner kick, but his finish from around the penalty spot was rather poor as it went way over the bar. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "1705000"
},
{
"important": false,
"gameTime": "1 - 28:11",
"label": "corner",
"description": "The referee awards a corner and Gonzalo Castro (Dortmund) goes over to take it.",
"identified": "The referee awards a corner and [PLAYER_tWNcwyFS] ([TEAM_]) goes over to take it.",
"anonymized": "The referee awards a corner and [PLAYER] ([TEAM]) goes over to take it.",
"visibility": "shown",
"position": "1691000"
},
{
"important": false,
"gameTime": "1 - 28:04",
"label": "",
"description": "Gonzalo Castro (Dortmund) fashions a shot from the edge of the box after receiving an accurate pass. Orjan Nyland makes a stunning save to stop the effort from flying into the right side of the goal. The referee blows his whistle, Dortmund are awarded a corner kick.",
"identified": "[PLAYER_tWNcwyFS] ([TEAM_]) fashions a shot from the edge of the box after receiving an accurate pass. [PLAYER_UJ9btoDi] makes a stunning save to stop the effort from flying into the right side of the goal. The referee blows his whistle, [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) fashions a shot from the edge of the box after receiving an accurate pass. [PLAYER] makes a stunning save to stop the effort from flying into the right side of the goal. The referee blows his whistle, [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "1684000"
},
{
"important": false,
"gameTime": "1 - 25:06",
"label": "",
"description": "Gonzalo Castro (Dortmund) floats the free kick into the box, but it's easily cleared by the first man.",
"identified": "[PLAYER_tWNcwyFS] ([TEAM_]) floats the free kick into the box, but it's easily cleared by the first man.",
"anonymized": "[PLAYER] ([TEAM]) floats the free kick into the box, but it's easily cleared by the first man.",
"visibility": "shown",
"position": "1506000"
},
{
"important": false,
"gameTime": "1 - 24:35",
"label": "",
"description": "Dario Lezcano (Ingolstadt) was too forceful with his tackle and Felix Zwayer interrupted the game to signal a free kick. Dortmund earn a free kick.",
"identified": "[PLAYER_tCgD2xse] ([TEAM_]) was too forceful with his tackle and [REFEREE] interrupted the game to signal a free kick. [TEAM_] earn a free kick.",
"anonymized": "[PLAYER] ([TEAM]) was too forceful with his tackle and [REFEREE] interrupted the game to signal a free kick. [TEAM] earn a free kick.",
"visibility": "shown",
"position": "1475000"
},
{
"important": true,
"gameTime": "1 - 23:50",
"label": "soccer-ball",
"description": "The ball from the free kick finds its way to Dario Lezcano (Ingolstadt) who rises and scores with a thunderous header inside the left post. An incredible long-range header!",
"identified": "The ball from the free kick finds its way to [PLAYER_tCgD2xse] ([TEAM_]) who rises and scores with a thunderous header inside the left post. An incredible long-range header!",
"anonymized": "The ball from the free kick finds its way to [PLAYER] ([TEAM]) who rises and scores with a thunderous header inside the left post. An incredible long-range header!",
"visibility": "shown",
"position": "1430000"
},
{
"important": false,
"gameTime": "1 - 20:51",
"label": "",
"description": "Matthias Ginter (Dortmund) fires a shot at goal from a very promising position outside the penalty area, but it is blocked by a self-sacrificing defender.",
"identified": "[PLAYER_27fpNoQk] ([TEAM_]) fires a shot at goal from a very promising position outside the penalty area, but it is blocked by a self-sacrificing defender.",
"anonymized": "[PLAYER] ([TEAM]) fires a shot at goal from a very promising position outside the penalty area, but it is blocked by a self-sacrificing defender.",
"visibility": "shown",
"position": "1251000"
},
{
"important": false,
"gameTime": "1 - 17:29",
"label": "",
"description": "Ousmane Dembele (Dortmund) manages to beat his opponent to the ball, but he commits a foul in the process.",
"identified": "[PLAYER_zsMC2Ec0] ([TEAM_]) manages to beat his opponent to the ball, but he commits a foul in the process.",
"anonymized": "[PLAYER] ([TEAM]) manages to beat his opponent to the ball, but he commits a foul in the process.",
"visibility": "shown",
"position": "1049000"
},
{
"important": false,
"gameTime": "1 - 16:52",
"label": "",
"description": "Gonzalo Castro (Dortmund) clips a neat ball into the box in the direction of Lukasz Piszczek, but he can't get on the end of the pass. The ball goes out of play and Ingolstadt will have a goal kick.",
"identified": "[PLAYER_tWNcwyFS] ([TEAM_]) clips a neat ball into the box in the direction of [PLAYER_AZgM33p0], but he can't get on the end of the pass. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) clips a neat ball into the box in the direction of [PLAYER], but he can't get on the end of the pass. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "1012000"
},
{
"important": false,
"gameTime": "1 - 16:02",
"label": "",
"description": "Orjan Nyland makes a superb save to deny a header which was nodded by Adrian Ramos (Dortmund) after a cross from the side.",
"identified": "[PLAYER_UJ9btoDi] makes a superb save to deny a header which was nodded by [PLAYER_YZ3fZd1q] ([TEAM_]) after a cross from the side.",
"anonymized": "[PLAYER] makes a superb save to deny a header which was nodded by [PLAYER] ([TEAM]) after a cross from the side.",
"visibility": "shown",
"position": "962000"
},
{
"important": false,
"gameTime": "1 - 15:14",
"label": "",
"description": "Ousmane Dembele (Dortmund) dribbled past his opponents before finding himself in a great position to strike. His attempt from just outside of the box went towards the roof of the net, but it wasn't dangerous and Orjan Nyland gathered easily.",
"identified": "[PLAYER_zsMC2Ec0] ([TEAM_]) dribbled past his opponents before finding himself in a great position to strike. His attempt from just outside of the box went towards the roof of the net, but it wasn't dangerous and [PLAYER_UJ9btoDi] gathered easily.",
"anonymized": "[PLAYER] ([TEAM]) dribbled past his opponents before finding himself in a great position to strike. His attempt from just outside of the box went towards the roof of the net, but it wasn't dangerous and [PLAYER] gathered easily.",
"visibility": "shown",
"position": "914000"
},
{
"important": true,
"gameTime": "1 - 12:43",
"label": "",
"description": "Lukas Hinterseer (Ingolstadt) came close to scoring. He connected with a pass inside the box and perhaps should have done better than direct his shot straight at Roman Weidenfeller.",
"identified": "[PLAYER_fD87UpKJ] ([TEAM_]) came close to scoring. He connected with a pass inside the box and perhaps should have done better than direct his shot straight at [PLAYER_SWPWwvA4].",
"anonymized": "[PLAYER] ([TEAM]) came close to scoring. He connected with a pass inside the box and perhaps should have done better than direct his shot straight at [PLAYER].",
"visibility": "shown",
"position": "763000"
},
{
"important": false,
"gameTime": "1 - 12:35",
"label": "corner",
"description": "Pascal Gross (Ingolstadt) will take a corner kick.",
"identified": "[PLAYER_trpxfbO3] ([TEAM_]) will take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will take a corner kick.",
"visibility": "shown",
"position": "755000"
},
{
"important": false,
"gameTime": "1 - 11:59",
"label": "",
"description": "Marcel Tisserand (Ingolstadt) finds himself in a promising position after receiving a beautiful cross from the side, but the opposition defence is ready and one of the defenders averts the threat with a quick interception. The ball is out of play. Ingolstadt will have a chance to score from a corner.",
"identified": "[PLAYER_A3rfsrdG] ([TEAM_]) finds himself in a promising position after receiving a beautiful cross from the side, but the opposition defence is ready and one of the defenders averts the threat with a quick interception. The ball is out of play. [TEAM_] will have a chance to score from a corner.",
"anonymized": "[PLAYER] ([TEAM]) finds himself in a promising position after receiving a beautiful cross from the side, but the opposition defence is ready and one of the defenders averts the threat with a quick interception. The ball is out of play. [TEAM] will have a chance to score from a corner.",
"visibility": "shown",
"position": "719000"
}
]
} |