File size: 81,701 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 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 |
{
"timestamp": "1442669400",
"score": "0 - 3",
"round": "5",
"teams": [
"Bayern Munich",
"Darmstadt"
],
"lineup": {
"home": {
"tactic": "1-4-4-1-1",
"players": [
{
"hash": "lOTx2Yho",
"name": "Caldirola L.",
"captain": "",
"detail_link": "/player/caldirola-luca/lOTx2Yho/",
"short_name": "Caldirola",
"shirt_number": "33",
"country": "Italy",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Luca Caldirola"
},
{
"hash": "xYXNzYa0",
"name": "Garics G.",
"captain": "",
"detail_link": "/player/garics-gyorgy/xYXNzYa0/",
"short_name": "Garics",
"shirt_number": "13",
"country": "Austria",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Gyorgy Garics"
},
{
"hash": "Uu3z0z44",
"name": "Gondorf J.",
"captain": "",
"detail_link": "/player/gondorf-jerome/Uu3z0z44/",
"short_name": "Gondorf",
"shirt_number": "8",
"country": "Germany",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Jerome Gondorf"
},
{
"hash": "Umnu6xaq",
"name": "Heller M.",
"captain": "",
"detail_link": "/player/heller-marcel/Umnu6xaq/",
"short_name": "Heller",
"shirt_number": "20",
"country": "Germany",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Marcel Heller"
},
{
"hash": "bwQ3OOW6",
"name": "Holland F.",
"captain": "",
"detail_link": "/player/holland-fabian/bwQ3OOW6/",
"short_name": "Holland",
"shirt_number": "32",
"country": "Germany",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Fabian Holland"
},
{
"hash": "2wOM3Nuj",
"name": "Kempe T.",
"captain": "",
"detail_link": "/player/kempe-tobias/2wOM3Nuj/",
"short_name": "Kempe",
"shirt_number": "11",
"country": "Germany",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Tobias Kempe"
},
{
"hash": "QPegJQ59",
"name": "Mathenia C.",
"captain": "",
"detail_link": "/player/mathenia-christian/QPegJQ59/",
"short_name": "Mathenia",
"shirt_number": "31",
"country": "Germany",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Christian Mathenia"
},
{
"hash": "pIiJbnbP",
"name": "Niemeyer P.",
"captain": "",
"detail_link": "/player/niemeyer-peter/pIiJbnbP/",
"short_name": "Niemeyer",
"shirt_number": "18",
"country": "Germany",
"facts": [
{
"type": "6",
"time": "69'",
"description": "Rosenthal J.",
"linked_player_hash": "02RLPhga"
}
],
"lineup": 7,
"starting": true,
"long_name": "Peter Niemeyer"
},
{
"hash": "xxdbKAzH",
"name": "Rausch K.",
"captain": "",
"detail_link": "/player/rausch-konstantin/xxdbKAzH/",
"short_name": "Rausch",
"shirt_number": "34",
"country": "Russia",
"facts": [
{
"type": "6",
"time": "77'",
"description": "Vrancic M.",
"linked_player_hash": "xvX0C73c"
}
],
"lineup": 9,
"starting": true,
"long_name": "Konstantin Rausch"
},
{
"hash": "2FV05Jm7",
"name": "Stroh-Engel D.",
"captain": "",
"detail_link": "/player/stroh-engel-dominik/2FV05Jm7/",
"short_name": "Stroh-Engel",
"shirt_number": "9",
"country": "Germany",
"facts": [
{
"type": "6",
"time": "59'",
"description": "Wagner S.",
"linked_player_hash": "bs5wEhDE"
}
],
"lineup": 11,
"starting": true,
"long_name": "Dominik Stroh-Engel"
},
{
"hash": "xIUsHY82",
"name": "Sulu A.",
"captain": "(C)",
"detail_link": "/player/sulu-aytac/xIUsHY82/",
"short_name": "Sulu",
"shirt_number": "4",
"country": "Turkey",
"facts": [
{
"type": "1",
"time": "78' Sulu A. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Aytac Sulu"
},
{
"hash": "fuBbwIWa",
"name": "Diaz J.",
"captain": "",
"detail_link": "/player/diaz-junior/fuBbwIWa/",
"short_name": "Diaz",
"shirt_number": "15",
"country": "Costa Rica",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Junior Diaz"
},
{
"hash": "O6cbl4Bj",
"name": "Jungwirth F.",
"captain": "",
"detail_link": "/player/jungwirth-florian/O6cbl4Bj/",
"short_name": "Jungwirth",
"shirt_number": "23",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Florian Jungwirth"
},
{
"hash": "02RLPhga",
"name": "Rosenthal J.",
"captain": "",
"detail_link": "/player/rosenthal-jan/02RLPhga/",
"short_name": "Rosenthal",
"shirt_number": "10",
"country": "Germany",
"facts": [
{
"type": "7",
"time": "69'",
"description": "Niemeyer P.",
"linked_player_hash": "pIiJbnbP"
}
],
"lineup": null,
"starting": false,
"long_name": "Jan Rosenthal"
},
{
"hash": "GlLgq9w3",
"name": "Sailer M.",
"captain": "",
"detail_link": "/player/sailer-marco/GlLgq9w3/",
"short_name": "Sailer",
"shirt_number": "7",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marco Sailer"
},
{
"hash": "xvX0C73c",
"name": "Vrancic M.",
"captain": "",
"detail_link": "/player/vrancic-mario/xvX0C73c/",
"short_name": "Vrancic",
"shirt_number": "6",
"country": "Bosnia and Herzegovina",
"facts": [
{
"type": "7",
"time": "77'",
"description": "Rausch K.",
"linked_player_hash": "xxdbKAzH"
}
],
"lineup": null,
"starting": false,
"long_name": "Mario Vrancic"
},
{
"hash": "bs5wEhDE",
"name": "Wagner S.",
"captain": "",
"detail_link": "/player/wagner-sandro/bs5wEhDE/",
"short_name": "Wagner",
"shirt_number": "14",
"country": "Germany",
"facts": [
{
"type": "7",
"time": "59'",
"description": "Stroh-Engel D.",
"linked_player_hash": "2FV05Jm7"
},
{
"type": "1",
"time": "73' Wagner S. (Elbowing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Sandro Wagner"
},
{
"hash": "nJX6Boff",
"name": "Zaluska L.",
"captain": "",
"detail_link": "/player/zaluska-lukasz/nJX6Boff/",
"short_name": "Zaluska",
"shirt_number": "40",
"country": "Poland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Lukasz Zaluska"
}
],
"coach": [
{
"hash": "CdQjJlBR",
"name": "Schuster D.",
"captain": "",
"detail_link": "/player/schuster-dirk/CdQjJlBR/",
"short_name": "Schuster D.",
"shirt_number": "",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Dirk Schuster"
}
]
},
"away": {
"tactic": "1-4-1-4-1",
"players": [
{
"hash": "hKx3nCTp",
"name": "Alaba D.",
"captain": "",
"detail_link": "/player/alaba-david/hKx3nCTp/",
"short_name": "Alaba",
"shirt_number": "27",
"country": "Austria",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "David Alaba"
},
{
"hash": "jg1LwcpG",
"name": "Arturo Vidal",
"captain": "",
"detail_link": "/player/vidal-arturo/jg1LwcpG/",
"short_name": "Arturo Vidal",
"shirt_number": "23",
"country": "Chile",
"facts": [
{
"type": "3",
"time": "20' Arturo Vidal (Costa D.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "66'",
"description": "Martinez J.",
"linked_player_hash": "IiVRUCYs"
}
],
"lineup": 9,
"starting": true,
"long_name": "Arturo Vidal"
},
{
"hash": "Cd1ieN88",
"name": "Bernat J.",
"captain": "",
"detail_link": "/player/bernat-juan/Cd1ieN88/",
"short_name": "Bernat",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Juan Bernat"
},
{
"hash": "0bDEBms3",
"name": "Boateng J.",
"captain": "",
"detail_link": "/player/boateng-jerome/0bDEBms3/",
"short_name": "Boateng",
"shirt_number": "17",
"country": "Germany",
"facts": [
{
"type": "6",
"time": "72'",
"description": "Alonso X.",
"linked_player_hash": "hAcTWKKN"
}
],
"lineup": 3,
"starting": true,
"long_name": "Jerome Boateng"
},
{
"hash": "zHWLJOHq",
"name": "Coman K.",
"captain": "",
"detail_link": "/player/coman-kingsley/zHWLJOHq/",
"short_name": "Coman",
"shirt_number": "29",
"country": "France",
"facts": [
{
"type": "3",
"time": "62' Coman K. (Rode S.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Kingsley Coman"
},
{
"hash": "fPOJMEfo",
"name": "Costa D.",
"captain": "",
"detail_link": "/player/costa-douglas/fPOJMEfo/",
"short_name": "Costa",
"shirt_number": "11",
"country": "Brazil",
"facts": [
{
"type": "8",
"time": "20' Arturo Vidal (Costa D.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "68'",
"description": "Muller T.",
"linked_player_hash": "8KpOJV2B"
}
],
"lineup": 10,
"starting": true,
"long_name": "Douglas Costa"
},
{
"hash": "veaF8P5m",
"name": "Gotze M.",
"captain": "",
"detail_link": "/player/gotze-mario/veaF8P5m/",
"short_name": "Gotze",
"shirt_number": "19",
"country": "Germany",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Mario Gotze"
},
{
"hash": "MkMrkZLc",
"name": "Kimmich J.",
"captain": "",
"detail_link": "/player/kimmich-joshua/MkMrkZLc/",
"short_name": "Kimmich",
"shirt_number": "32",
"country": "Germany",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Joshua Kimmich"
},
{
"hash": "Sh5KwIo6",
"name": "Neuer M.",
"captain": "",
"detail_link": "/player/neuer-manuel/Sh5KwIo6/",
"short_name": "Neuer",
"shirt_number": "1",
"country": "Germany",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Manuel Neuer"
},
{
"hash": "pxvTBxot",
"name": "Rafinha",
"captain": "",
"detail_link": "/player/rafinha/pxvTBxot/",
"short_name": "Rafinha",
"shirt_number": "13",
"country": "Brazil",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Rafinha"
},
{
"hash": "2ukcBSGo",
"name": "Rode S.",
"captain": "",
"detail_link": "/player/rode-sebastian/2ukcBSGo/",
"short_name": "Rode",
"shirt_number": "20",
"country": "Germany",
"facts": [
{
"type": "8",
"time": "62' Coman K. (Rode S.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "3",
"time": "63' Rode S.",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Sebastian Rode"
},
{
"hash": "hAcTWKKN",
"name": "Alonso X.",
"captain": "",
"detail_link": "/player/alonso-xabi/hAcTWKKN/",
"short_name": "Alonso",
"shirt_number": "14",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "72'",
"description": "Boateng J.",
"linked_player_hash": "0bDEBms3"
}
],
"lineup": null,
"starting": false,
"long_name": "Xabi Alonso"
},
{
"hash": "MB26hXLr",
"name": "Lahm P.",
"captain": "",
"detail_link": "/player/lahm-philipp/MB26hXLr/",
"short_name": "Lahm",
"shirt_number": "21",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Philipp Lahm"
},
{
"hash": "IiVRUCYs",
"name": "Martinez J.",
"captain": "",
"detail_link": "/player/martinez-javi/IiVRUCYs/",
"short_name": "Martinez",
"shirt_number": "8",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "66'",
"description": "Arturo Vidal",
"linked_player_hash": "jg1LwcpG"
},
{
"type": "1",
"time": "80' Martinez J. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Javi Martinez"
},
{
"hash": "8KpOJV2B",
"name": "Muller T.",
"captain": "",
"detail_link": "/player/muller-thomas/8KpOJV2B/",
"short_name": "Muller",
"shirt_number": "25",
"country": "Germany",
"facts": [
{
"type": "7",
"time": "68'",
"description": "Costa D.",
"linked_player_hash": "fPOJMEfo"
}
],
"lineup": null,
"starting": false,
"long_name": "Thomas Muller"
},
{
"hash": "vcSKqUSq",
"name": "Thiago",
"captain": "",
"detail_link": "/player/thiago/vcSKqUSq/",
"short_name": "Thiago",
"shirt_number": "6",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Thiago"
},
{
"hash": "8CE8Sho8",
"name": "Ulreich S.",
"captain": "",
"detail_link": "/player/ulreich-sven/8CE8Sho8/",
"short_name": "Ulreich",
"shirt_number": "26",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Sven Ulreich"
}
],
"coach": [
{
"hash": "hxNijWrJ",
"name": "Guardiola P.",
"captain": "",
"detail_link": "/player/guardiola-pep/hxNijWrJ/",
"short_name": "Guardiola P.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Pep Guardiola"
}
]
}
},
"referee": [
"Zwayer F."
],
"venue": [
"Merck-Stadion am Bollenfalltor (Darmstadt)"
],
"attendance": [
"17 000"
],
"referee_matched": [
"Felix Zwayer"
],
"referee_found": [
"Felix Zwayer"
],
"coach_matched": [
"Dirk Schuster",
"Pep Guardiola"
],
"gameHomeTeam": "Darmstadt",
"home": {
"name": "Darmstadt",
"detail_link": "/team/darmstadt/S0hPB9rA",
"hash": "S0hPB9rA",
"names": [
"Darmstadt",
"darmstadt"
]
},
"gameAwayTeam": "Bayern Munich",
"away": {
"name": "Bayern Munich",
"detail_link": "/team/bayern-munich/nVp0wiqd",
"hash": "nVp0wiqd",
"names": [
"Bayern Munich",
"bayern munich"
]
},
"gameDate": "19/09/2015 - 15:30",
"annotations": [
{
"important": false,
"gameTime": "2 - 45:59",
"label": "",
"description": "The performance from both sides could be described as average. There were only a few stirring moments and the fans probably expected more from this game. Bayern Munich had more of the game and were superior. Their manager will certainly be the happier of the two managers. The home team tried to find the weakness in the opposition's defence mostly using rapid counter-attacks. On the other hand, long balls and crosses were the main weapons of the away team.",
"identified": "The performance from both sides could be described as average. There were only a few stirring moments and the fans probably expected more from this game. [TEAM_] had more of the game and were superior. Their manager will certainly be the happier of the two managers. The home team tried to find the weakness in the opposition's defence mostly using rapid counter-attacks. On the other hand, long balls and crosses were the main weapons of the away team.",
"anonymized": "The performance from both sides could be described as average. There were only a few stirring moments and the fans probably expected more from this game. [TEAM] had more of the game and were superior. Their manager will certainly be the happier of the two managers. The home team tried to find the weakness in the opposition's defence mostly using rapid counter-attacks. On the other hand, long balls and crosses were the main weapons of the away team.",
"visibility": "shown",
"position": "2759000"
},
{
"important": true,
"gameTime": "2 - 45:21",
"label": "whistle",
"description": "The referee blows his whistle for the final time to end this match.",
"identified": "The referee blows his whistle for the final time to end this match.",
"anonymized": "The referee blows his whistle for the final time to end this match.",
"visibility": "shown",
"position": "2721000"
},
{
"important": false,
"gameTime": "2 - 44:41",
"label": "",
"description": "Thomas Muller (Bayern Munich) attempts to find Kingsley Coman, but puts far too much on the pass and the chance is gone.",
"identified": "[PLAYER_8KpOJV2B] ([TEAM_]) attempts to find [PLAYER_zHWLJOHq], but puts far too much on the pass and the chance is gone.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find [PLAYER], but puts far too much on the pass and the chance is gone.",
"visibility": "shown",
"position": "2681000"
},
{
"important": false,
"gameTime": "2 - 42:48",
"label": "",
"description": "He should have done better. Joshua Kimmich (Bayern Munich) is afforded space to connect with a Kingsley Coman cross, but his header from the centre of the box flies well wide of the right post.",
"identified": "He should have done better. [PLAYER_MkMrkZLc] ([TEAM_]) is afforded space to connect with a [PLAYER_zHWLJOHq] 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": "2568000"
},
{
"important": false,
"gameTime": "2 - 41:37",
"label": "",
"description": "The game is interrupted. Jerome Gondorf (Darmstadt) has violated the rules in the battle for the ball. No protests or gestures are being made as he is quite aware of what he did.",
"identified": "The game is interrupted. [PLAYER_Uu3z0z44] ([TEAM_]) has violated the rules in the battle for the ball. No protests or gestures are being made as he is quite aware of what he did.",
"anonymized": "The game is interrupted. [PLAYER] ([TEAM]) has violated the rules in the battle for the ball. No protests or gestures are being made as he is quite aware of what he did.",
"visibility": "shown",
"position": "2497000"
},
{
"important": false,
"gameTime": "2 - 41:13",
"label": "",
"description": "Jerome Gondorf (Darmstadt) breaks past challenges inside the box, but puts too much pace on his pass to Fabian Holland.",
"identified": "[PLAYER_Uu3z0z44] ([TEAM_]) breaks past challenges inside the box, but puts too much pace on his pass to [PLAYER_bwQ3OOW6].",
"anonymized": "[PLAYER] ([TEAM]) breaks past challenges inside the box, but puts too much pace on his pass to [PLAYER].",
"visibility": "shown",
"position": "2473000"
},
{
"important": false,
"gameTime": "2 - 38:15",
"label": "",
"description": "Kingsley Coman (Bayern Munich) pulls the jersey of one of the opposition players and Felix Zwayer blows his whistle for a foul.",
"identified": "[PLAYER_zHWLJOHq] ([TEAM_]) pulls the jersey of one of the opposition players and [REFEREE] blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) pulls the jersey of one of the opposition players and [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "2295000"
},
{
"important": false,
"gameTime": "2 - 37:31",
"label": "",
"description": "Mario Gotze (Bayern Munich) found some space to play in a lofted pass, but he looks disappointed as none of his teammates managed to connect with it.",
"identified": "[PLAYER_veaF8P5m] ([TEAM_]) found some space to play in a lofted pass, but he looks disappointed as none of his teammates managed to connect with it.",
"anonymized": "[PLAYER] ([TEAM]) found some space to play in a lofted pass, but he looks disappointed as none of his teammates managed to connect with it.",
"visibility": "shown",
"position": "2251000"
},
{
"important": false,
"gameTime": "2 - 35:41",
"label": "",
"description": "Aytac Sulu (Darmstadt) fails to deliver a decent cross from a long-range free kick. The opposition's defence intercepts the effort.",
"identified": "[PLAYER_xIUsHY82] ([TEAM_]) fails to deliver a decent cross from a long-range free kick. The opposition's defence intercepts the effort.",
"anonymized": "[PLAYER] ([TEAM]) fails to deliver a decent cross from a long-range free kick. The opposition's defence intercepts the effort.",
"visibility": "shown",
"position": "2141000"
},
{
"important": true,
"gameTime": "2 - 34:59",
"label": "y-card",
"description": "This yellow card was deserved. The tackle by Javi Martinez (Bayern Munich) was quite harsh and Felix Zwayer didn't hesitate to show him a yellow card. A free kick to Darmstadt.",
"identified": "This yellow card was deserved. The tackle by [PLAYER_IiVRUCYs] ([TEAM_]) was quite harsh and [REFEREE] didn't hesitate to show him a yellow card. A free kick to [TEAM_].",
"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. A free kick to [TEAM].",
"visibility": "shown",
"position": "2099000"
},
{
"important": false,
"gameTime": "2 - 33:04",
"label": "",
"description": "Xabi Alonso (Bayern Munich) fires in an effort from the free kick from some 22 metres. His strike is very inaccurate and ends in row Z.",
"identified": "[PLAYER_hAcTWKKN] ([TEAM_]) fires in an effort from the free kick from some 22 metres. His strike is very inaccurate and ends in row Z.",
"anonymized": "[PLAYER] ([TEAM]) fires in an effort from the free kick from some 22 metres. His strike is very inaccurate and ends in row Z.",
"visibility": "shown",
"position": "1984000"
},
{
"important": true,
"gameTime": "2 - 32:18",
"label": "y-card",
"description": "Aytac Sulu (Darmstadt) is booked after bringing down an opponent. Felix Zwayer had an easy-decision to make. Bayern Munich are awarded a free kick from a dangerous position.",
"identified": "[PLAYER_xIUsHY82] ([TEAM_]) is booked after bringing down an opponent. [REFEREE] had an easy-decision to make. [TEAM_] are awarded a free kick from a dangerous position.",
"anonymized": "[PLAYER] ([TEAM]) is booked after bringing down an opponent. [REFEREE] had an easy-decision to make. [TEAM] are awarded a free kick from a dangerous position.",
"visibility": "shown",
"position": "1938000"
},
{
"important": true,
"gameTime": "2 - 31:37",
"label": "substitution",
"description": "Dirk Schuster has decided to make a change. Mario Vrancic (Darmstadt) replaces Konstantin Rausch.",
"identified": "[COACH_CdQjJlBR] has decided to make a change. [PLAYER_xvX0C73c] ([TEAM_]) replaces [PLAYER_xxdbKAzH].",
"anonymized": "[COACH] has decided to make a change. [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "1897000"
},
{
"important": false,
"gameTime": "2 - 30:50",
"label": "",
"description": "Rafinha (Bayern Munich) fizzes over a cross which doesn't cause any problems.",
"identified": "[PLAYER_pxvTBxot] ([TEAM_]) fizzes over a cross which doesn't cause any problems.",
"anonymized": "[PLAYER] ([TEAM]) fizzes over a cross which doesn't cause any problems.",
"visibility": "shown",
"position": "1850000"
},
{
"important": true,
"gameTime": "2 - 27:57",
"label": "y-card",
"description": "Sandro Wagner (Darmstadt) has tested the patience of referee Felix Zwayer and goes into the book for a previous late challenge.",
"identified": "[PLAYER_bs5wEhDE] ([TEAM_]) has tested the patience of referee [REFEREE] and goes into the book for a previous late challenge.",
"anonymized": "[PLAYER] ([TEAM]) has tested the patience of referee [REFEREE] and goes into the book for a previous late challenge.",
"visibility": "shown",
"position": "1677000"
},
{
"important": true,
"gameTime": "2 - 26:58",
"label": "substitution",
"description": "Here comes a substitution. Xabi Alonso (Bayern Munich) is brought on as a substitute for Jerome Boateng.",
"identified": "Here comes a substitution. [PLAYER_hAcTWKKN] ([TEAM_]) is brought on as a substitute for [PLAYER_0bDEBms3].",
"anonymized": "Here comes a substitution. [PLAYER] ([TEAM]) is brought on as a substitute for [PLAYER].",
"visibility": "shown",
"position": "1618000"
},
{
"important": false,
"gameTime": "2 - 26:34",
"label": "",
"description": "Kingsley Coman (Bayern Munich) clips an inviting cross into the box, but there's no one in a position to get on the end of it.",
"identified": "[PLAYER_zHWLJOHq] ([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": "1594000"
},
{
"important": false,
"gameTime": "2 - 25:09",
"label": "",
"description": "Jan Rosenthal (Darmstadt) is flagged for offside.",
"identified": "[PLAYER_02RLPhga] ([TEAM_]) is flagged for offside.",
"anonymized": "[PLAYER] ([TEAM]) is flagged for offside.",
"visibility": "shown",
"position": "1509000"
},
{
"important": false,
"gameTime": "2 - 24:42",
"label": "",
"description": "Javi Martinez (Bayern Munich) climbs high to connect with a cross near the penalty spot but plants a header well wide of the left post.",
"identified": "[PLAYER_IiVRUCYs] ([TEAM_]) climbs high to connect with a cross near the penalty spot but plants a header well wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) climbs high to connect with a cross near the penalty spot but plants a header well wide of the left post.",
"visibility": "shown",
"position": "1482000"
},
{
"important": false,
"gameTime": "2 - 24:25",
"label": "corner",
"description": "This corner kick is taken with a short pass by Mario Gotze (Bayern Munich).",
"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": "1465000"
},
{
"important": false,
"gameTime": "2 - 24:06",
"label": "",
"description": "Sebastian Rode (Bayern Munich) produces a dangerous low pass into the penalty area, but the defence manage to cut it out. The ball goes behind for a corner. Bayern Munich will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_2ukcBSGo] ([TEAM_]) produces a dangerous low pass into the penalty area, but the defence manage to cut it out. The ball goes behind for a corner. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) produces a dangerous low pass into the penalty area, but the defence manage to cut it out. The ball goes behind for a corner. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "1446000"
},
{
"important": true,
"gameTime": "2 - 23:27",
"label": "substitution",
"description": "Substitution. Jan Rosenthal (Darmstadt) replaces Peter Niemeyer.",
"identified": "Substitution. [PLAYER_02RLPhga] ([TEAM_]) replaces [PLAYER_pIiJbnbP].",
"anonymized": "Substitution. [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "1407000"
},
{
"important": true,
"gameTime": "2 - 22:55",
"label": "substitution",
"description": "Here is a change. Douglas Costa is going off and Pep Guardiola gives the last tactical orders to Thomas Muller (Bayern Munich).",
"identified": "Here is a change. [PLAYER_fPOJMEfo] is going off and [COACH_hxNijWrJ] gives the last tactical orders to [PLAYER_8KpOJV2B] ([TEAM_]).",
"anonymized": "Here is a change. [PLAYER] is going off and [COACH] gives the last tactical orders to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1375000"
},
{
"important": false,
"gameTime": "2 - 22:35",
"label": "",
"description": "A lofted cross from Rafinha (Bayern Munich) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area.",
"identified": "A lofted cross from [PLAYER_pxvTBxot] ([TEAM_]) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area.",
"anonymized": "A lofted cross from [PLAYER] ([TEAM]) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area.",
"visibility": "shown",
"position": "1355000"
},
{
"important": true,
"gameTime": "2 - 20:18",
"label": "substitution",
"description": "Here comes a substitution. Arturo Vidal is given a rest as he is replaced by Javi Martinez (Bayern Munich).",
"identified": "Here comes a substitution. [PLAYER_jg1LwcpG] is given a rest as he is replaced by [PLAYER_IiVRUCYs] ([TEAM_]).",
"anonymized": "Here comes a substitution. [PLAYER] is given a rest as he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1218000"
},
{
"important": true,
"gameTime": "2 - 17:59",
"label": "soccer-ball",
"description": "Goal! The rebound fell to Sebastian Rode (Bayern Munich) and he fired home from close range. The score is 0:3.",
"identified": "Goal! The rebound fell to [PLAYER_2ukcBSGo] ([TEAM_]) and he fired home from close range. The score is 0:3.",
"anonymized": "Goal! The rebound fell to [PLAYER] ([TEAM]) and he fired home from close range. The score is 0:3.",
"visibility": "shown",
"position": "1079000"
},
{
"important": true,
"gameTime": "2 - 17:50",
"label": "",
"description": "Sebastian Rode (Bayern Munich) squanders a great opportunity after striking the ball onto the post!",
"identified": "[PLAYER_2ukcBSGo] ([TEAM_]) squanders a great opportunity after striking the ball onto the post!",
"anonymized": "[PLAYER] ([TEAM]) squanders a great opportunity after striking the ball onto the post!",
"visibility": "shown",
"position": "1070000"
},
{
"important": true,
"gameTime": "2 - 16:56",
"label": "soccer-ball",
"description": "Goal! Sebastian Rode tees up Kingsley Coman (Bayern Munich) on the edge of the box and he fires the ball into the bottom left corner. 0:2.",
"identified": "Goal! [PLAYER_2ukcBSGo] tees up [PLAYER_zHWLJOHq] ([TEAM_]) on the edge of the box and he fires the ball into the bottom left corner. 0:2.",
"anonymized": "Goal! [PLAYER] tees up [PLAYER] ([TEAM]) on the edge of the box and he fires the ball into the bottom left corner. 0:2.",
"visibility": "shown",
"position": "1016000"
},
{
"important": false,
"gameTime": "2 - 14:55",
"label": "",
"description": "Sandro Wagner (Darmstadt) meets a cross from Marcel Heller, but he cannot keep his header on target. It goes well wide of the left post.",
"identified": "[PLAYER_bs5wEhDE] ([TEAM_]) meets a cross from [PLAYER_Umnu6xaq], but he cannot keep his header on target. It goes well wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) meets a cross from [PLAYER], but he cannot keep his header on target. It goes well wide of the left post.",
"visibility": "shown",
"position": "895000"
},
{
"important": true,
"gameTime": "2 - 13:18",
"label": "substitution",
"description": "A substitution has been made. Dominik Stroh-Engel goes off and Sandro Wagner (Darmstadt) comes on.",
"identified": "A substitution has been made. [PLAYER_2FV05Jm7] goes off and [PLAYER_bs5wEhDE] ([TEAM_]) comes on.",
"anonymized": "A substitution has been made. [PLAYER] goes off and [PLAYER] ([TEAM]) comes on.",
"visibility": "shown",
"position": "798000"
},
{
"important": false,
"gameTime": "2 - 12:35",
"label": "",
"description": "Sebastian Rode (Bayern Munich) makes a reckless foul in order to win the ball from his opponent. Felix Zwayer has a clear sight of it and blows his whistle.",
"identified": "[PLAYER_2ukcBSGo] ([TEAM_]) makes a reckless foul in order to win the ball from his opponent. [REFEREE] has a clear sight of it and blows his whistle.",
"anonymized": "[PLAYER] ([TEAM]) makes a reckless foul in order to win the ball from his opponent. [REFEREE] has a clear sight of it and blows his whistle.",
"visibility": "shown",
"position": "755000"
},
{
"important": false,
"gameTime": "2 - 11:34",
"label": "",
"description": "Close! Mario Gotze (Bayern Munich) picks up the ball in space and from inside the penalty area sends a shot inches wide of the left post.",
"identified": "Close! [PLAYER_veaF8P5m] ([TEAM_]) picks up the ball in space and from inside the penalty area sends a shot inches wide of the left post.",
"anonymized": "Close! [PLAYER] ([TEAM]) picks up the ball in space and from inside the penalty area sends a shot inches wide of the left post.",
"visibility": "shown",
"position": "694000"
},
{
"important": false,
"gameTime": "2 - 10:38",
"label": "corner",
"description": "Kingsley Coman (Bayern Munich) takes the corner kick but the ball only finds the head of an opponent.",
"identified": "[PLAYER_zHWLJOHq] ([TEAM_]) takes the corner kick but the ball only finds the head of an opponent.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner kick but the ball only finds the head of an opponent.",
"visibility": "shown",
"position": "638000"
},
{
"important": false,
"gameTime": "2 - 10:02",
"label": "",
"description": "Douglas Costa (Bayern Munich) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety. Bayern Munich force a corner. They send men into the box.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety. [TEAM_] force a corner. They send men into the box.",
"anonymized": "[PLAYER] ([TEAM]) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety. [TEAM] force a corner. They send men into the box.",
"visibility": "shown",
"position": "602000"
},
{
"important": false,
"gameTime": "2 - 09:26",
"label": "",
"description": "Kingsley Coman (Bayern Munich) jinks his way past multiple challenges and fires the ball from the edge of the box to the right side of the goal, but Christian Mathenia shows his agility and makes a save.",
"identified": "[PLAYER_zHWLJOHq] ([TEAM_]) jinks his way past multiple challenges and fires the ball from the edge of the box to the right side of the goal, but [PLAYER_QPegJQ59] shows his agility and makes a save.",
"anonymized": "[PLAYER] ([TEAM]) jinks his way past multiple challenges and fires the ball from the edge of the box to the right side of the goal, but [PLAYER] shows his agility and makes a save.",
"visibility": "shown",
"position": "566000"
},
{
"important": false,
"gameTime": "2 - 08:53",
"label": "",
"description": "Peter Niemeyer (Darmstadt) is able to continue to play.",
"identified": "[PLAYER_pIiJbnbP] ([TEAM_]) is able to continue to play.",
"anonymized": "[PLAYER] ([TEAM]) is able to continue to play.",
"visibility": "shown",
"position": "533000"
},
{
"important": false,
"gameTime": "2 - 07:58",
"label": "injury",
"description": "Peter Niemeyer (Darmstadt) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"identified": "[PLAYER_pIiJbnbP] ([TEAM_]) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"anonymized": "[PLAYER] ([TEAM]) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"visibility": "shown",
"position": "478000"
},
{
"important": false,
"gameTime": "2 - 06:02",
"label": "",
"description": "Mario Gotze (Bayern Munich) is forced to stop his attacking move after the linesman signals for offside.",
"identified": "[PLAYER_veaF8P5m] ([TEAM_]) is forced to stop his attacking move after the linesman signals for offside.",
"anonymized": "[PLAYER] ([TEAM]) is forced to stop his attacking move after the linesman signals for offside.",
"visibility": "shown",
"position": "362000"
},
{
"important": false,
"gameTime": "2 - 05:11",
"label": "",
"description": "Kingsley Coman (Bayern Munich) is disappointed with himself because he got into a good area but produced a poor cross.",
"identified": "[PLAYER_zHWLJOHq] ([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": "311000"
},
{
"important": false,
"gameTime": "2 - 03:57",
"label": "",
"description": "Flag up against Peter Niemeyer (Darmstadt). He had space to move into behind the defence, but he went too soon.",
"identified": "Flag up against [PLAYER_pIiJbnbP] ([TEAM_]). He had space to move into behind the defence, but he went too soon.",
"anonymized": "Flag up against [PLAYER] ([TEAM]). He had space to move into behind the defence, but he went too soon.",
"visibility": "shown",
"position": "237000"
},
{
"important": false,
"gameTime": "2 - 03:11",
"label": "",
"description": "Sebastian Rode (Bayern Munich) escapes without any punishment from the referee after using excessive force to foul his opponent. It's a free kick to Darmstadt in a dangerous position.",
"identified": "[PLAYER_2ukcBSGo] ([TEAM_]) escapes without any punishment from the referee after using excessive force to foul his opponent. It's a free kick to [TEAM_] in a dangerous position.",
"anonymized": "[PLAYER] ([TEAM]) escapes without any punishment from the referee after using excessive force to foul his opponent. It's a free kick to [TEAM] in a dangerous position.",
"visibility": "shown",
"position": "191000"
},
{
"important": false,
"gameTime": "2 - 01:39",
"label": "",
"description": "Douglas Costa (Bayern Munich) tries to take the opposition by surprise with a quick free kick into the box.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) tries to take the opposition by surprise with a quick free kick into the box.",
"anonymized": "[PLAYER] ([TEAM]) tries to take the opposition by surprise with a quick free kick into the box.",
"visibility": "shown",
"position": "99000"
},
{
"important": false,
"gameTime": "2 - 00:46",
"label": "",
"description": "Felix Zwayer blows his whistle after Jerome Gondorf (Darmstadt) brings one of his opponents down with a strong tackle. Bayern Munich win a free kick and will be able to apply some pressure on the opposition goal.",
"identified": "[REFEREE] blows his whistle after [PLAYER_Uu3z0z44] ([TEAM_]) brings one of his opponents down with a strong tackle. [TEAM_] win a free kick and will be able to apply some pressure on the opposition goal.",
"anonymized": "[REFEREE] blows his whistle after [PLAYER] ([TEAM]) brings one of his opponents down with a strong tackle. [TEAM] win a free kick and will be able to apply some pressure on the opposition goal.",
"visibility": "shown",
"position": "46000"
},
{
"important": false,
"gameTime": "2 - 00:21",
"label": "",
"description": "Dominik Stroh-Engel (Darmstadt) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"identified": "[PLAYER_2FV05Jm7] ([TEAM_]) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"anonymized": "[PLAYER] ([TEAM]) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"visibility": "shown",
"position": "21000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The referee blows his whistle to signal the start of the second half.",
"identified": "The referee blows his whistle to signal the start of the second half.",
"anonymized": "The referee blows his whistle to signal the start of the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 45:59",
"label": "",
"description": "Well, that wasn't the best of halves. Both sides struggled to produce anything of merit. Great display from Bayern Munich so far, looking at stats you have to say that they were the better side during that opening 45 minutes. The home side is creating their opportunities using lightning-fast counter-attacks. The tactic of the away side is slow build-up play.",
"identified": "Well, that wasn't the best of halves. Both sides struggled to produce anything of merit. Great display from [TEAM_] so far, looking at stats you have to say that they were the better side during that opening 45 minutes. The home side is creating their opportunities using lightning-fast counter-attacks. The tactic of the away side is slow build-up play.",
"anonymized": "Well, that wasn't the best of halves. Both sides struggled to produce anything of merit. Great display from [TEAM] so far, looking at stats you have to say that they were the better side during that opening 45 minutes. The home side is creating their opportunities using lightning-fast counter-attacks. The tactic of the away side is slow build-up play.",
"visibility": "shown",
"position": "2759000"
},
{
"important": true,
"gameTime": "1 - 45:22",
"label": "whistle",
"description": "There will be nothing more to see in the first half. The whistle blowing of Felix Zwayer has ended it.",
"identified": "There will be nothing more to see in the first half. The whistle blowing of [REFEREE] has ended it.",
"anonymized": "There will be nothing more to see in the first half. The whistle blowing of [REFEREE] has ended it.",
"visibility": "shown",
"position": "2722000"
},
{
"important": false,
"gameTime": "1 - 44:44",
"label": "",
"description": "Gyorgy Garics (Darmstadt) is penalised for holding. Felix Zwayer signals a set piece.",
"identified": "[PLAYER_xYXNzYa0] ([TEAM_]) is penalised for holding. [REFEREE] signals a set piece.",
"anonymized": "[PLAYER] ([TEAM]) is penalised for holding. [REFEREE] signals a set piece.",
"visibility": "shown",
"position": "2684000"
},
{
"important": false,
"gameTime": "1 - 43:56",
"label": "",
"description": "Kingsley Coman (Bayern Munich) sends a long ball across the pitch, but it misses its target. The ball is out of play. Darmstadt will have a throw-in.",
"identified": "[PLAYER_zHWLJOHq] ([TEAM_]) sends a long ball across the pitch, but it misses its target. The ball is out of play. [TEAM_] will have a throw-in.",
"anonymized": "[PLAYER] ([TEAM]) sends a long ball across the pitch, but it misses its target. The ball is out of play. [TEAM] will have a throw-in.",
"visibility": "shown",
"position": "2636000"
},
{
"important": false,
"gameTime": "1 - 42:14",
"label": "",
"description": "It looks like Arturo Vidal (Bayern Munich) saw red with that tackle. Felix Zwayer won't tolerate such behaviour on the pitch and blows for a foul.",
"identified": "It looks like [PLAYER_jg1LwcpG] ([TEAM_]) saw red with that tackle. [REFEREE] won't tolerate such behaviour on the pitch and blows for a foul.",
"anonymized": "It looks like [PLAYER] ([TEAM]) saw red with that tackle. [REFEREE] won't tolerate such behaviour on the pitch and blows for a foul.",
"visibility": "shown",
"position": "2534000"
},
{
"important": false,
"gameTime": "1 - 40:25",
"label": "",
"description": "Douglas Costa (Bayern Munich) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"visibility": "shown",
"position": "2425000"
},
{
"important": false,
"gameTime": "1 - 39:39",
"label": "",
"description": "Kingsley Coman (Bayern Munich) missed a great opportunity! He jumped for a cross and headed towards goal from the penalty spot, but the ball sailed well wide of the left post!",
"identified": "[PLAYER_zHWLJOHq] ([TEAM_]) missed a great opportunity! He jumped for a cross and headed towards goal from the penalty spot, but the ball sailed well wide of the left post!",
"anonymized": "[PLAYER] ([TEAM]) missed a great opportunity! He jumped for a cross and headed towards goal from the penalty spot, but the ball sailed well wide of the left post!",
"visibility": "shown",
"position": "2379000"
},
{
"important": false,
"gameTime": "1 - 38:12",
"label": "",
"description": "Marcel Heller (Darmstadt) swings a cross into the box, but it's far too close to Manuel Neuer, who smothers the ball.",
"identified": "[PLAYER_Umnu6xaq] ([TEAM_]) swings a cross into the box, but it's far too close to [PLAYER_Sh5KwIo6], who smothers the ball.",
"anonymized": "[PLAYER] ([TEAM]) swings a cross into the box, but it's far too close to [PLAYER], who smothers the ball.",
"visibility": "shown",
"position": "2292000"
},
{
"important": false,
"gameTime": "1 - 37:53",
"label": "",
"description": "Douglas Costa (Bayern Munich) creates a good chance for himself and goes for goal from mid-range, but he misses the left post by a whisker.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) creates a good chance for himself and goes for goal from mid-range, but he misses the left post by a whisker.",
"anonymized": "[PLAYER] ([TEAM]) creates a good chance for himself and goes for goal from mid-range, but he misses the left post by a whisker.",
"visibility": "shown",
"position": "2273000"
},
{
"important": false,
"gameTime": "1 - 36:10",
"label": "",
"description": "Arturo Vidal (Bayern Munich) outjumps the defence to meet the resulting corner and heads the ball towards the middle of the goal. The long-range header is not powerful enough, and the keeper comfortably makes a save.",
"identified": "[PLAYER_jg1LwcpG] ([TEAM_]) outjumps the defence to meet the resulting corner and heads the ball towards the middle of the goal. The long-range header is not powerful enough, and the keeper comfortably makes a save.",
"anonymized": "[PLAYER] ([TEAM]) outjumps the defence to meet the resulting corner and heads the ball towards the middle of the goal. The long-range header is not powerful enough, and the keeper comfortably makes a save.",
"visibility": "shown",
"position": "2170000"
},
{
"important": false,
"gameTime": "1 - 35:52",
"label": "corner",
"description": "Douglas Costa (Bayern Munich) steps up to send the ball in.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) steps up to send the ball in.",
"anonymized": "[PLAYER] ([TEAM]) steps up to send the ball in.",
"visibility": "shown",
"position": "2152000"
},
{
"important": false,
"gameTime": "1 - 35:35",
"label": "",
"description": "Kingsley Coman (Bayern Munich) has an effort from distance but it's blocked.",
"identified": "[PLAYER_zHWLJOHq] ([TEAM_]) has an effort from distance but it's blocked.",
"anonymized": "[PLAYER] ([TEAM]) has an effort from distance but it's blocked.",
"visibility": "shown",
"position": "2135000"
},
{
"important": false,
"gameTime": "1 - 35:00",
"label": "",
"description": "Douglas Costa (Bayern Munich) sends a cross into the box, but Christian Mathenia comes off his line to gather the ball.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) sends a cross into the box, but [PLAYER_QPegJQ59] 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": "2100000"
},
{
"important": false,
"gameTime": "1 - 33:35",
"label": "",
"description": "Manuel Neuer stretches to his right and makes a brilliant save! Konstantin Rausch (Darmstadt) met a rebound outside the box and attempted to beat the keeper into the bottom right corner.",
"identified": "[PLAYER_Sh5KwIo6] stretches to his right and makes a brilliant save! [PLAYER_xxdbKAzH] ([TEAM_]) met a rebound outside the box and attempted to beat the keeper into the bottom right corner.",
"anonymized": "[PLAYER] stretches to his right and makes a brilliant save! [PLAYER] ([TEAM]) met a rebound outside the box and attempted to beat the keeper into the bottom right corner.",
"visibility": "shown",
"position": "2015000"
},
{
"important": false,
"gameTime": "1 - 33:28",
"label": "",
"description": "Peter Niemeyer (Darmstadt) 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.",
"identified": "[PLAYER_pIiJbnbP] ([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.",
"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.",
"visibility": "shown",
"position": "2008000"
},
{
"important": true,
"gameTime": "1 - 31:29",
"label": "",
"description": "Marcel Heller (Darmstadt) latches on to a lofted pass and strikes the ball! His attempt flies narrowly wide of the right post.",
"identified": "[PLAYER_Umnu6xaq] ([TEAM_]) latches on to a lofted pass and strikes the ball! His attempt flies narrowly wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) latches on to a lofted pass and strikes the ball! His attempt flies narrowly wide of the right post.",
"visibility": "shown",
"position": "1889000"
},
{
"important": false,
"gameTime": "1 - 30:20",
"label": "",
"description": "Jerome Gondorf (Darmstadt) commits a rough challenge and Felix Zwayer blows his whistle for a foul.",
"identified": "[PLAYER_Uu3z0z44] ([TEAM_]) commits a rough challenge and [REFEREE] blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) commits a rough challenge and [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "1820000"
},
{
"important": false,
"gameTime": "1 - 29:44",
"label": "",
"description": "Juan Bernat (Bayern Munich) sends a cross into the box, but the opposition's defence clears the ball away to eliminate the danger.",
"identified": "[PLAYER_Cd1ieN88] ([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": "1784000"
},
{
"important": false,
"gameTime": "1 - 28:15",
"label": "",
"description": "Douglas Costa (Bayern Munich) 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_fPOJMEfo] ([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": "1695000"
},
{
"important": false,
"gameTime": "1 - 27:53",
"label": "",
"description": "Bayern Munich seem to be finding their feet as they enjoy some possession. They are waiting for the right moment to create new attacking opportunities.",
"identified": "[TEAM_] seem to be finding their feet as they enjoy some possession. They are waiting for the right moment to create new attacking opportunities.",
"anonymized": "[TEAM] seem to be finding their feet as they enjoy some possession. They are waiting for the right moment to create new attacking opportunities.",
"visibility": "shown",
"position": "1673000"
},
{
"important": false,
"gameTime": "1 - 25:13",
"label": "",
"description": "Douglas Costa (Bayern Munich) connects with a pass but sees his shot from the edge of the box blocked.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) connects with a pass but sees his shot from the edge of the box blocked.",
"anonymized": "[PLAYER] ([TEAM]) connects with a pass but sees his shot from the edge of the box blocked.",
"visibility": "shown",
"position": "1513000"
},
{
"important": false,
"gameTime": "1 - 24:27",
"label": "",
"description": "The linesman signals that Konstantin Rausch (Darmstadt) is offside and the referee confirms the decision.",
"identified": "The linesman signals that [PLAYER_xxdbKAzH] ([TEAM_]) is offside and the referee confirms the decision.",
"anonymized": "The linesman signals that [PLAYER] ([TEAM]) is offside and the referee confirms the decision.",
"visibility": "shown",
"position": "1467000"
},
{
"important": false,
"gameTime": "1 - 23:41",
"label": "corner",
"description": "Konstantin Rausch (Darmstadt) swings in a dangerous cross from the resulting corner kick, but none of his teammates manage to outjump the defence.",
"identified": "[PLAYER_xxdbKAzH] ([TEAM_]) swings in a dangerous cross from the resulting corner kick, but none of his teammates manage to outjump the defence.",
"anonymized": "[PLAYER] ([TEAM]) swings in a dangerous cross from the resulting corner kick, but none of his teammates manage to outjump the defence.",
"visibility": "shown",
"position": "1421000"
},
{
"important": true,
"gameTime": "1 - 23:09",
"label": "",
"description": "A cross to the edge of the box finds Dominik Stroh-Engel (Darmstadt) who takes a nice first touch and tries to beat the keeper with a quick shot towards the bottom right corner. Manuel Neuer pulls off a good save and the score remains the same. The referee points to the corner flag and Darmstadt will take a corner.",
"identified": "A cross to the edge of the box finds [PLAYER_2FV05Jm7] ([TEAM_]) who takes a nice first touch and tries to beat the keeper with a quick shot towards the bottom right corner. [PLAYER_Sh5KwIo6] pulls off a good save and the score remains the same. The referee points to the corner flag and [TEAM_] will take a corner.",
"anonymized": "A cross to the edge of the box finds [PLAYER] ([TEAM]) who takes a nice first touch and tries to beat the keeper with a quick shot towards the bottom right corner. [PLAYER] pulls off a good save and the score remains the same. The referee points to the corner flag and [TEAM] will take a corner.",
"visibility": "shown",
"position": "1389000"
},
{
"important": false,
"gameTime": "1 - 22:23",
"label": "",
"description": "Good movement by Kingsley Coman (Bayern Munich), but he can't find any of his teammates as the cross is poor. The ball is off of the pitch and it's a goal kick for Darmstadt.",
"identified": "Good movement by [PLAYER_zHWLJOHq] ([TEAM_]), but he can't find any of his teammates as the cross is poor. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "Good movement by [PLAYER] ([TEAM]), but he can't find any of his teammates as the cross is poor. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "1343000"
},
{
"important": true,
"gameTime": "1 - 19:40",
"label": "soccer-ball",
"description": "Arturo Vidal (Bayern Munich) receives a pass and doesn't hesitate to shoot from around 22 metres. And it was an excellent choice. His superb effort goes in off the right post.",
"identified": "[PLAYER_jg1LwcpG] ([TEAM_]) receives a pass and doesn't hesitate to shoot from around 22 metres. And it was an excellent choice. His superb effort goes in off the right post.",
"anonymized": "[PLAYER] ([TEAM]) receives a pass and doesn't hesitate to shoot from around 22 metres. And it was an excellent choice. His superb effort goes in off the right post.",
"visibility": "shown",
"position": "1180000"
},
{
"important": false,
"gameTime": "1 - 18:03",
"label": "",
"description": "Douglas Costa (Bayern Munich) stands over the resultant free kick from mid-range, but his shot goes just wide of the left post.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) stands over the resultant free kick from mid-range, but his shot goes just wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) stands over the resultant free kick from mid-range, but his shot goes just wide of the left post.",
"visibility": "shown",
"position": "1083000"
},
{
"important": false,
"gameTime": "1 - 17:30",
"label": "",
"description": "Peter Niemeyer (Darmstadt) jumps into a tackle and Felix Zwayer blows his whistle for a foul. A free kick has been awarded to Bayern Munich.",
"identified": "[PLAYER_pIiJbnbP] ([TEAM_]) jumps into a tackle and [REFEREE] blows his whistle for a foul. A free kick has been awarded to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) jumps into a tackle and [REFEREE] blows his whistle for a foul. A free kick has been awarded to [TEAM].",
"visibility": "shown",
"position": "1050000"
},
{
"important": false,
"gameTime": "1 - 16:11",
"label": "",
"description": "Felix Zwayer interrupts the game for a tactical foul by Mario Gotze (Bayern Munich).",
"identified": "[REFEREE] interrupts the game for a tactical foul by [PLAYER_veaF8P5m] ([TEAM_]).",
"anonymized": "[REFEREE] interrupts the game for a tactical foul by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "971000"
},
{
"important": false,
"gameTime": "1 - 14:51",
"label": "corner",
"description": "Douglas Costa (Bayern Munich) takes the corner but fails to find any of his teammates.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) takes the corner but fails to find any of his teammates.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but fails to find any of his teammates.",
"visibility": "shown",
"position": "891000"
},
{
"important": false,
"gameTime": "1 - 14:39",
"label": "",
"description": "Kingsley Coman (Bayern Munich) looks to break free, but an opposing player clears the ball away. The ball goes out of play. Bayern Munich are awarded a corner kick.",
"identified": "[PLAYER_zHWLJOHq] ([TEAM_]) looks to break free, but an opposing player clears the ball away. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "879000"
},
{
"important": false,
"gameTime": "1 - 14:22",
"label": "",
"description": "Arturo Vidal (Bayern Munich) takes the free kick and immediately restarts play with a short pass.",
"identified": "[PLAYER_jg1LwcpG] ([TEAM_]) takes the free kick and immediately restarts play with a short pass.",
"anonymized": "[PLAYER] ([TEAM]) takes the free kick and immediately restarts play with a short pass.",
"visibility": "shown",
"position": "862000"
},
{
"important": false,
"gameTime": "1 - 14:09",
"label": "",
"description": "Marcel Heller (Darmstadt) manages to dispossess his opponent of the ball, but he commits a foul in the process and the referee blows his whistle. Bayern Munich are given an advantage. They have a free kick.",
"identified": "[PLAYER_Umnu6xaq] ([TEAM_]) manages to dispossess his opponent of the ball, but he commits a foul in the process and the referee blows his whistle. [TEAM_] are given an advantage. They have a free kick.",
"anonymized": "[PLAYER] ([TEAM]) manages to dispossess his opponent of the ball, but he commits a foul in the process and the referee blows his whistle. [TEAM] are given an advantage. They have a free kick.",
"visibility": "shown",
"position": "849000"
},
{
"important": false,
"gameTime": "1 - 13:29",
"label": "",
"description": "Gyorgy Garics (Darmstadt) commits a rough foul. Felix Zwayer stops the game and makes a call.",
"identified": "[PLAYER_xYXNzYa0] ([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": "809000"
},
{
"important": false,
"gameTime": "1 - 13:10",
"label": "",
"description": "Jerome Gondorf (Darmstadt) plays a dangerous chip pass into the box in an attempt to set up one of his teammates, but the effort is intercepted by one of the defenders.",
"identified": "[PLAYER_Uu3z0z44] ([TEAM_]) plays a dangerous chip pass into the box in an attempt to set up one of his teammates, but the effort is intercepted by one of the defenders.",
"anonymized": "[PLAYER] ([TEAM]) plays a dangerous chip pass into the box in an attempt to set up one of his teammates, but the effort is intercepted by one of the defenders.",
"visibility": "shown",
"position": "790000"
},
{
"important": false,
"gameTime": "1 - 12:50",
"label": "",
"description": "Marcel Heller (Darmstadt) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort.",
"identified": "[PLAYER_Umnu6xaq] ([TEAM_]) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort.",
"anonymized": "[PLAYER] ([TEAM]) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort.",
"visibility": "shown",
"position": "770000"
},
{
"important": true,
"gameTime": "1 - 10:08",
"label": "",
"description": "Chance! Arturo Vidal (Bayern Munich) comes within inches of scoring after picking up a pass from Kingsley Coman, but his shot from inside the box flashes inches wide of the right post.",
"identified": "Chance! [PLAYER_jg1LwcpG] ([TEAM_]) comes within inches of scoring after picking up a pass from [PLAYER_zHWLJOHq], but his shot from inside the box flashes inches wide of the right post.",
"anonymized": "Chance! [PLAYER] ([TEAM]) comes within inches of scoring after picking up a pass from [PLAYER], but his shot from inside the box flashes inches wide of the right post.",
"visibility": "shown",
"position": "608000"
}
]
} |