File size: 84,319 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 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 |
{
"timestamp": "1477421100",
"score": "3 - 0",
"round": "10",
"teams": [
"Genoa",
"AC Milan"
],
"lineup": {
"home": {
"tactic": "1-3-4-3",
"players": [
{
"hash": "WEJGhhvr",
"name": "Burdisso N.",
"captain": "(C)",
"detail_link": "/player/burdisso-nicolas/WEJGhhvr/",
"short_name": "Burdisso",
"shirt_number": "8",
"country": "Argentina",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Nicolas Burdisso"
},
{
"hash": "88LnXlGN",
"name": "Edenilson",
"captain": "",
"detail_link": "/player/edenilson/88LnXlGN/",
"short_name": "Edenilson",
"shirt_number": "2",
"country": "Brazil",
"facts": [
{
"type": "6",
"time": "78'",
"description": "Fiamozzi R.",
"linked_player_hash": "bkpO1UAs"
}
],
"lineup": 5,
"starting": true,
"long_name": "Edenilson"
},
{
"hash": "OrlLWHno",
"name": "Izzo A.",
"captain": "",
"detail_link": "/player/izzo-armando/OrlLWHno/",
"short_name": "Izzo",
"shirt_number": "5",
"country": "Italy",
"facts": [
{
"type": "1",
"time": "40' Izzo A. (Elbowing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Armando Izzo"
},
{
"hash": "nVWh7cet",
"name": "Laxalt D.",
"captain": "",
"detail_link": "/player/laxalt-diego/nVWh7cet/",
"short_name": "Laxalt",
"shirt_number": "93",
"country": "Uruguay",
"facts": [
{
"type": "8",
"time": "86' Pavoletti L. (Laxalt D.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Diego Laxalt"
},
{
"hash": "4KyA8LIf",
"name": "Munoz E.",
"captain": "",
"detail_link": "/player/munoz-ezequiel/4KyA8LIf/",
"short_name": "Munoz",
"shirt_number": "24",
"country": "Argentina",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Ezequiel Munoz"
},
{
"hash": "xn3aaWdb",
"name": "Ninkovic N.",
"captain": "",
"detail_link": "/player/ninkovic-nikola/xn3aaWdb/",
"short_name": "Ninkovic",
"shirt_number": "99",
"country": "Serbia",
"facts": [
{
"type": "3",
"time": "11' Ninkovic N. (Rincon T.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "54'",
"description": "Lazovic D.",
"linked_player_hash": "4QATUtMO"
}
],
"lineup": 11,
"starting": true,
"long_name": "Nikola Ninkovic"
},
{
"hash": "A3ZJNQg1",
"name": "Perin M.",
"captain": "",
"detail_link": "/player/perin-mattia/A3ZJNQg1/",
"short_name": "Perin",
"shirt_number": "1",
"country": "Italy",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Mattia Perin"
},
{
"hash": "0lnOPjCs",
"name": "Rigoni L.",
"captain": "",
"detail_link": "/player/rigoni-luca/0lnOPjCs/",
"short_name": "Rigoni",
"shirt_number": "30",
"country": "Italy",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Luca Rigoni"
},
{
"hash": "YDUMMZWp",
"name": "Rincon T.",
"captain": "",
"detail_link": "/player/rincon-tomas/YDUMMZWp/",
"short_name": "Rincon",
"shirt_number": "88",
"country": "Venezuela",
"facts": [
{
"type": "8",
"time": "11' Ninkovic N. (Rincon T.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Tomas Rincon"
},
{
"hash": "6m566fII",
"name": "Simeone G.",
"captain": "",
"detail_link": "/player/simeone-giovanni/6m566fII/",
"short_name": "Simeone",
"shirt_number": "9",
"country": "Argentina",
"facts": [
{
"type": "6",
"time": "67'",
"description": "Pavoletti L.",
"linked_player_hash": "xrQ22VYn"
}
],
"lineup": 10,
"starting": true,
"long_name": "Giovanni Simeone"
},
{
"hash": "UgoQDjlg",
"name": "Veloso M.",
"captain": "",
"detail_link": "/player/veloso-miguel/UgoQDjlg/",
"short_name": "Veloso",
"shirt_number": "44",
"country": "Portugal",
"facts": [
{
"type": "1",
"time": "85' Veloso M. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Miguel Veloso"
},
{
"hash": "xbr7uc5g",
"name": "Biraschi D.",
"captain": "",
"detail_link": "/player/biraschi-davide/xbr7uc5g/",
"short_name": "Biraschi",
"shirt_number": "14",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Davide Biraschi"
},
{
"hash": "tOI8lC4m",
"name": "Cofie I.",
"captain": "",
"detail_link": "/player/cofie-isaac/tOI8lC4m/",
"short_name": "Cofie",
"shirt_number": "4",
"country": "Ghana",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Isaac Cofie"
},
{
"hash": "bkpO1UAs",
"name": "Fiamozzi R.",
"captain": "",
"detail_link": "/player/fiamozzi-riccardo/bkpO1UAs/",
"short_name": "Fiamozzi",
"shirt_number": "29",
"country": "Italy",
"facts": [
{
"type": "7",
"time": "78'",
"description": "Edenilson",
"linked_player_hash": "88LnXlGN"
}
],
"lineup": null,
"starting": false,
"long_name": "Riccardo Fiamozzi"
},
{
"hash": "hz2FBkKr",
"name": "Gentiletti S.",
"captain": "",
"detail_link": "/player/gentiletti-santiago/hz2FBkKr/",
"short_name": "Gentiletti",
"shirt_number": "3",
"country": "Argentina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Santiago Gentiletti"
},
{
"hash": "23PQ0URD",
"name": "Lamanna E.",
"captain": "",
"detail_link": "/player/lamanna-eugenio/23PQ0URD/",
"short_name": "Lamanna",
"shirt_number": "23",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Eugenio Lamanna"
},
{
"hash": "4QATUtMO",
"name": "Lazovic D.",
"captain": "",
"detail_link": "/player/lazovic-darko/4QATUtMO/",
"short_name": "Lazovic",
"shirt_number": "22",
"country": "Serbia",
"facts": [
{
"type": "7",
"time": "54'",
"description": "Ninkovic N.",
"linked_player_hash": "xn3aaWdb"
},
{
"type": "8",
"time": "80' Kucka J. (Lazovic D.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Darko Lazovic"
},
{
"hash": "ELItWvlA",
"name": "Ntcham O.",
"captain": "",
"detail_link": "/player/ntcham-olivier/ELItWvlA/",
"short_name": "Ntcham",
"shirt_number": "10",
"country": "Cameroon",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Olivier Ntcham"
},
{
"hash": "2s2ATpKI",
"name": "Ocampos L.",
"captain": "",
"detail_link": "/player/ocampos-lucas/2s2ATpKI/",
"short_name": "Ocampos",
"shirt_number": "11",
"country": "Argentina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Lucas Ocampos"
},
{
"hash": "xnrNvU7J",
"name": "Orban L.",
"captain": "",
"detail_link": "/player/orban-lucas/xnrNvU7J/",
"short_name": "Orban",
"shirt_number": "21",
"country": "Argentina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Lucas Orban"
},
{
"hash": "xrTxNoe7",
"name": "Pandev G.",
"captain": "",
"detail_link": "/player/pandev-goran/xrTxNoe7/",
"short_name": "Pandev",
"shirt_number": "27",
"country": "North Macedonia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Goran Pandev"
},
{
"hash": "xrQ22VYn",
"name": "Pavoletti L.",
"captain": "",
"detail_link": "/player/pavoletti-leonardo/xrQ22VYn/",
"short_name": "Pavoletti",
"shirt_number": "19",
"country": "Italy",
"facts": [
{
"type": "7",
"time": "67'",
"description": "Simeone G.",
"linked_player_hash": "6m566fII"
},
{
"type": "1",
"time": "74' Pavoletti L. (Elbowing)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "3",
"time": "86' Pavoletti L. (Laxalt D.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Leonardo Pavoletti"
},
{
"hash": "ppGUNI2U",
"name": "Zima L.",
"captain": "",
"detail_link": "/player/zima-lukas/ppGUNI2U/",
"short_name": "Zima",
"shirt_number": "38",
"country": "Czech Republic",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Lukas Zima"
}
],
"coach": [
{
"hash": "4IdjsvY2",
"name": "Juric I.",
"captain": "",
"detail_link": "/player/juric-ivan/4IdjsvY2/",
"short_name": "Juric I.",
"shirt_number": "",
"country": "Croatia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ivan Juric"
}
]
},
"away": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "lGLvSJ65",
"name": "Bacca C.",
"captain": "",
"detail_link": "/player/bacca-carlos/lGLvSJ65/",
"short_name": "Bacca",
"shirt_number": "70",
"country": "Colombia",
"facts": [
{
"type": "6",
"time": "58'",
"description": "Gustavo Gomez",
"linked_player_hash": "fH0yeuUu"
}
],
"lineup": 10,
"starting": true,
"long_name": "Carlos Bacca"
},
{
"hash": "lxFZfQF4",
"name": "Bonaventura G.",
"captain": "",
"detail_link": "/player/bonaventura-giacomo/lxFZfQF4/",
"short_name": "Bonaventura",
"shirt_number": "5",
"country": "Italy",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Giacomo Bonaventura"
},
{
"hash": "Ua5srQK6",
"name": "De Sciglio M.",
"captain": "(C)",
"detail_link": "/player/de-sciglio-mattia/Ua5srQK6/",
"short_name": "De Sciglio",
"shirt_number": "2",
"country": "Italy",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Mattia De Sciglio"
},
{
"hash": "WScbdXmL",
"name": "Donnarumma G.",
"captain": "",
"detail_link": "/player/donnarumma-gianluigi/WScbdXmL/",
"short_name": "Donnarumma",
"shirt_number": "99",
"country": "Italy",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Gianluigi Donnarumma"
},
{
"hash": "zq4slAwi",
"name": "Honda K.",
"captain": "",
"detail_link": "/player/honda-keisuke/zq4slAwi/",
"short_name": "Honda",
"shirt_number": "10",
"country": "Japan",
"facts": [
{
"type": "6",
"time": "62'",
"description": "Luiz Adriano",
"linked_player_hash": "8hhNPfu0"
}
],
"lineup": 9,
"starting": true,
"long_name": "Keisuke Honda"
},
{
"hash": "nkYbTmQO",
"name": "Kucka J.",
"captain": "",
"detail_link": "/player/kucka-juraj/nkYbTmQO/",
"short_name": "Kucka",
"shirt_number": "33",
"country": "Slovakia",
"facts": [
{
"type": "4",
"time": "80' Kucka J.",
"description": "Own goal",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Juraj Kucka"
},
{
"hash": "6RgXRdd8",
"name": "Locatelli M.",
"captain": "",
"detail_link": "/player/locatelli-manuel/6RgXRdd8/",
"short_name": "Locatelli",
"shirt_number": "73",
"country": "Italy",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Manuel Locatelli"
},
{
"hash": "hbNBiofd",
"name": "Niang M.",
"captain": "",
"detail_link": "/player/niang-m-baye/hbNBiofd/",
"short_name": "Niang",
"shirt_number": "11",
"country": "Senegal",
"facts": [
{
"type": "6",
"time": "70'",
"description": "Suso",
"linked_player_hash": "Aexbrioc"
}
],
"lineup": 11,
"starting": true,
"long_name": "M'Baye Niang"
},
{
"hash": "0ABrmqye",
"name": "Paletta G.",
"captain": "",
"detail_link": "/player/paletta-gabriel/0ABrmqye/",
"short_name": "Paletta",
"shirt_number": "29",
"country": "Italy",
"facts": [
{
"type": "2",
"time": "56' Paletta G. (Tripping)",
"description": "Red Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Gabriel Paletta"
},
{
"hash": "06BSgd70",
"name": "Poli A.",
"captain": "",
"detail_link": "/player/poli-andrea/06BSgd70/",
"short_name": "Poli",
"shirt_number": "16",
"country": "Italy",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Andrea Poli"
},
{
"hash": "Wr49C0j4",
"name": "Romagnoli A.",
"captain": "",
"detail_link": "/player/romagnoli-alessio/Wr49C0j4/",
"short_name": "Romagnoli",
"shirt_number": "13",
"country": "Italy",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Alessio Romagnoli"
},
{
"hash": "dIvO159A",
"name": "Abate I.",
"captain": "",
"detail_link": "/player/abate-ignazio/dIvO159A/",
"short_name": "Abate",
"shirt_number": "20",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ignazio Abate"
},
{
"hash": "OW3Q3NP7",
"name": "Ely R.",
"captain": "",
"detail_link": "/player/ely-rodrigo/OW3Q3NP7/",
"short_name": "Ely",
"shirt_number": "4",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Rodrigo Ely"
},
{
"hash": "29ORgAw5",
"name": "Gabriel",
"captain": "",
"detail_link": "/player/gabriel/29ORgAw5/",
"short_name": "Gabriel",
"shirt_number": "1",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Gabriel"
},
{
"hash": "fH0yeuUu",
"name": "Gustavo Gomez",
"captain": "",
"detail_link": "/player/gomez-gustavo/fH0yeuUu/",
"short_name": "Gustavo Gomez",
"shirt_number": "15",
"country": "Paraguay",
"facts": [
{
"type": "7",
"time": "58'",
"description": "Bacca C.",
"linked_player_hash": "lGLvSJ65"
}
],
"lineup": null,
"starting": false,
"long_name": "Gustavo Gomez"
},
{
"hash": "K0nUrV5K",
"name": "Lapadula G.",
"captain": "",
"detail_link": "/player/lapadula-gianluca/K0nUrV5K/",
"short_name": "Lapadula",
"shirt_number": "9",
"country": "Peru",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Gianluca Lapadula"
},
{
"hash": "8hhNPfu0",
"name": "Luiz Adriano",
"captain": "",
"detail_link": "/player/luiz-adriano/8hhNPfu0/",
"short_name": "Luiz Adriano",
"shirt_number": "7",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "62'",
"description": "Honda K.",
"linked_player_hash": "zq4slAwi"
}
],
"lineup": null,
"starting": false,
"long_name": "Luiz Adriano"
},
{
"hash": "ld4iyqYa",
"name": "Pasalic M.",
"captain": "",
"detail_link": "/player/pasalic-mario/ld4iyqYa/",
"short_name": "Pasalic",
"shirt_number": "80",
"country": "Croatia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mario Pasalic"
},
{
"hash": "WKRxlIbD",
"name": "Plizzari A.",
"captain": "",
"detail_link": "/player/plizzari-alessandro/WKRxlIbD/",
"short_name": "Plizzari",
"shirt_number": "35",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alessandro Plizzari"
},
{
"hash": "GphWdDDR",
"name": "Sosa J.",
"captain": "",
"detail_link": "/player/sosa-jose/GphWdDDR/",
"short_name": "Sosa",
"shirt_number": "23",
"country": "Argentina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jose Sosa"
},
{
"hash": "Aexbrioc",
"name": "Suso",
"captain": "",
"detail_link": "/player/suso/Aexbrioc/",
"short_name": "Suso",
"shirt_number": "8",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "70'",
"description": "Niang M.",
"linked_player_hash": "hbNBiofd"
}
],
"lineup": null,
"starting": false,
"long_name": "Suso"
},
{
"hash": "EeWTdvZu",
"name": "Zapata C.",
"captain": "",
"detail_link": "/player/zapata-cristian/EeWTdvZu/",
"short_name": "Zapata",
"shirt_number": "17",
"country": "Colombia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Cristian Zapata"
}
],
"coach": [
{
"hash": "vcAWhGM6",
"name": "Montella V.",
"captain": "",
"detail_link": "/player/montella-vincenzo/vcAWhGM6/",
"short_name": "Montella V.",
"shirt_number": "",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Vincenzo Montella"
}
]
}
},
"referee": [
"Banti L."
],
"venue": [
"Stadio Luigi Ferraris (Genoa)"
],
"attendance": [
"21 248"
],
"referee_matched": [
"Luca Banti"
],
"referee_found": [
"Luca Banti"
],
"coach_matched": [
"Vincenzo Montella"
],
"gameHomeTeam": "Genoa",
"home": {
"name": "Genoa",
"detail_link": "/team/genoa/d0PJxeie",
"hash": "d0PJxeie",
"names": [
"Genoa",
"genoa"
]
},
"gameAwayTeam": "AC Milan",
"away": {
"name": "AC Milan",
"detail_link": "/team/ac-milan/8Sa8HInO",
"hash": "8Sa8HInO",
"names": [
"AC Milan",
"AC Milan (Ita)",
"ac milan"
]
},
"gameDate": "25/10/2016 - 20:45",
"annotations": [
{
"important": false,
"gameTime": "2 - 48:59",
"label": "",
"description": "It was a good decision to watch today's encounter. There has been more to see on the pitch than in most of the other games. The home side dominated this game. Both teams attempted to play possession football.",
"identified": "It was a good decision to watch today's encounter. There has been more to see on the pitch than in most of the other games. The home side dominated this game. Both teams attempted to play possession football.",
"anonymized": "It was a good decision to watch today's encounter. There has been more to see on the pitch than in most of the other games. The home side dominated this game. Both teams attempted to play possession football.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "2 - 48:14",
"label": "whistle",
"description": "The match has just finished.",
"identified": "The match has just finished.",
"anonymized": "The match has just finished.",
"visibility": "shown",
"position": "2894000"
},
{
"important": false,
"gameTime": "2 - 47:53",
"label": "",
"description": "Diego Laxalt (Genoa) clearly holds his opponent to prevent him from getting the ball and the referee blows his whistle for a foul.",
"identified": "[PLAYER_nVWh7cet] ([TEAM_]) clearly holds his opponent to prevent him from getting the ball and the referee blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) clearly holds his opponent to prevent him from getting the ball and the referee blows his whistle for a foul.",
"visibility": "shown",
"position": "2873000"
},
{
"important": false,
"gameTime": "2 - 47:01",
"label": "corner",
"description": "Genoa quickly take a corner kick with a short pass.",
"identified": "[TEAM_] quickly take a corner kick with a short pass.",
"anonymized": "[TEAM] quickly take a corner kick with a short pass.",
"visibility": "shown",
"position": "2821000"
},
{
"important": false,
"gameTime": "2 - 46:11",
"label": "",
"description": "Ezequiel Munoz (Genoa) sends a cross into the box, but the opposition's defence clears the ball to safety. The ball goes out for a corner. Genoa can continue in their attacking effort.",
"identified": "[PLAYER_4KyA8LIf] ([TEAM_]) sends a cross into the box, but the opposition's defence clears the ball to safety. The ball goes out for a corner. [TEAM_] can continue in their attacking effort.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence clears the ball to safety. The ball goes out for a corner. [TEAM] can continue in their attacking effort.",
"visibility": "shown",
"position": "2771000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "3 additional min. will be played.",
"identified": "3 additional min. will be played.",
"anonymized": "3 additional min. will be played.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "2 - 43:59",
"label": "",
"description": "Luca Rigoni (Genoa) has a goal ruled out for offside!",
"identified": "[PLAYER_0lnOPjCs] ([TEAM_]) has a goal ruled out for offside!",
"anonymized": "[PLAYER] ([TEAM]) has a goal ruled out for offside!",
"visibility": "shown",
"position": "2639000"
},
{
"important": false,
"gameTime": "2 - 42:51",
"label": "",
"description": "Genoa are showcasing great team work and neat passing moves.",
"identified": "[TEAM_] are showcasing great team work and neat passing moves.",
"anonymized": "[TEAM] are showcasing great team work and neat passing moves.",
"visibility": "shown",
"position": "2571000"
},
{
"important": true,
"gameTime": "2 - 40:58",
"label": "soccer-ball",
"description": "Leonardo Pavoletti (Genoa) makes a great solo run and pulls the trigger from inside the box, beating Gianluigi Donnarumma with a strike into the right side of the goal. He makes it 3:0.",
"identified": "[PLAYER_xrQ22VYn] ([TEAM_]) makes a great solo run and pulls the trigger from inside the box, beating [PLAYER_WScbdXmL] with a strike into the right side of the goal. He makes it 3:0.",
"anonymized": "[PLAYER] ([TEAM]) makes a great solo run and pulls the trigger from inside the box, beating [PLAYER] with a strike into the right side of the goal. He makes it 3:0.",
"visibility": "shown",
"position": "2458000"
},
{
"important": true,
"gameTime": "2 - 39:29",
"label": "y-card",
"description": "Miguel Veloso (Genoa) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. Luca Banti didn't think twice about pulling it out of his pocket.",
"identified": "[PLAYER_UgoQDjlg] ([TEAM_]) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. [REFEREE] didn't think twice about pulling it out of his pocket.",
"anonymized": "[PLAYER] ([TEAM]) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. [REFEREE] didn't think twice about pulling it out of his pocket.",
"visibility": "shown",
"position": "2369000"
},
{
"important": false,
"gameTime": "2 - 38:50",
"label": "",
"description": "Giacomo Bonaventura (AC Milan) unleashes a shot from 23 metres out but is unable to find the target and it goes high over the crossbar.",
"identified": "[PLAYER_lxFZfQF4] ([TEAM_]) unleashes a shot from 23 metres out but is unable to find the target and it goes high over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a shot from 23 metres out but is unable to find the target and it goes high over the crossbar.",
"visibility": "shown",
"position": "2330000"
},
{
"important": false,
"gameTime": "2 - 37:11",
"label": "funfact",
"description": "46:54 \u2013 the ratio of ball possession. The current number of shots on goal is 3:3.",
"identified": "46:54 \u2013 the ratio of ball possession. The current number of shots on goal is 3:3.",
"anonymized": "46:54 \u2013 the ratio of ball possession. The current number of shots on goal is 3:3.",
"visibility": "shown",
"position": "2231000"
},
{
"important": false,
"gameTime": "2 - 36:42",
"label": "",
"description": "Miguel Veloso (Genoa) gets on the end of a pass and takes a low shot from the edge of the box which is straight at Gianluigi Donnarumma, who makes a comfortable save.",
"identified": "[PLAYER_UgoQDjlg] ([TEAM_]) gets on the end of a pass and takes a low shot from the edge of the box which is straight at [PLAYER_WScbdXmL], who makes a comfortable save.",
"anonymized": "[PLAYER] ([TEAM]) gets on the end of a pass and takes a low shot from the edge of the box which is straight at [PLAYER], who makes a comfortable save.",
"visibility": "shown",
"position": "2202000"
},
{
"important": true,
"gameTime": "2 - 34:13",
"label": "soccer-ball-own",
"description": "This is definitely not what Juraj Kucka (AC Milan) wanted. Attempting to intercept an offensive pass, he scored an own goal and made it 2:0.",
"identified": "This is definitely not what [PLAYER_nkYbTmQO] ([TEAM_]) wanted. Attempting to intercept an offensive pass, he scored an own goal and made it 2:0.",
"anonymized": "This is definitely not what [PLAYER] ([TEAM]) wanted. Attempting to intercept an offensive pass, he scored an own goal and made it 2:0.",
"visibility": "shown",
"position": "2053000"
},
{
"important": true,
"gameTime": "2 - 32:36",
"label": "substitution",
"description": "The substitution has been made. Riccardo Fiamozzi (Genoa) has replaced Edenilson.",
"identified": "The substitution has been made. [PLAYER_bkpO1UAs] ([TEAM_]) has replaced [PLAYER_88LnXlGN].",
"anonymized": "The substitution has been made. [PLAYER] ([TEAM]) has replaced [PLAYER].",
"visibility": "shown",
"position": "1956000"
},
{
"important": false,
"gameTime": "2 - 30:52",
"label": "",
"description": "Suso (AC Milan) hammers the ball goalwards from about 23 metres. The shot is directed low to the middle of the target but is thwarted by a save from Mattia Perin.",
"identified": "[PLAYER_Aexbrioc] ([TEAM_]) hammers the ball goalwards from about 23 metres. The shot is directed low to the middle of the target but is thwarted by a save from [PLAYER_A3ZJNQg1].",
"anonymized": "[PLAYER] ([TEAM]) hammers the ball goalwards from about 23 metres. The shot is directed low to the middle of the target but is thwarted by a save from [PLAYER].",
"visibility": "shown",
"position": "1852000"
},
{
"important": false,
"gameTime": "2 - 30:26",
"label": "",
"description": "AC Milan hold the ball and are exchanging some long passes.",
"identified": "[TEAM_] hold the ball and are exchanging some long passes.",
"anonymized": "[TEAM] hold the ball and are exchanging some long passes.",
"visibility": "shown",
"position": "1826000"
},
{
"important": true,
"gameTime": "2 - 28:53",
"label": "y-card",
"description": "Luca Banti shows a yellow card to Leonardo Pavoletti (Genoa) for a tough tackle.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_xrQ22VYn] ([TEAM_]) for a tough tackle.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for a tough tackle.",
"visibility": "shown",
"position": "1733000"
},
{
"important": false,
"gameTime": "2 - 28:26",
"label": "",
"description": "Juraj Kucka (AC Milan) attempts to score from 24 metres out, but his decent effort flies towards the middle of the target and is stopped by Mattia Perin. It didn't really trouble him.",
"identified": "[PLAYER_nkYbTmQO] ([TEAM_]) attempts to score from 24 metres out, but his decent effort flies towards the middle of the target and is stopped by [PLAYER_A3ZJNQg1]. It didn't really trouble him.",
"anonymized": "[PLAYER] ([TEAM]) attempts to score from 24 metres out, but his decent effort flies towards the middle of the target and is stopped by [PLAYER]. It didn't really trouble him.",
"visibility": "shown",
"position": "1706000"
},
{
"important": false,
"gameTime": "2 - 27:23",
"label": "",
"description": "Half-chance! Suso (AC Milan) plays a pass into the box, but Mattia Perin reacts well to snuff out the attack.",
"identified": "Half-chance! [PLAYER_Aexbrioc] ([TEAM_]) plays a pass into the box, but [PLAYER_A3ZJNQg1] reacts well to snuff out the attack.",
"anonymized": "Half-chance! [PLAYER] ([TEAM]) plays a pass into the box, but [PLAYER] reacts well to snuff out the attack.",
"visibility": "shown",
"position": "1643000"
},
{
"important": false,
"gameTime": "2 - 26:25",
"label": "",
"description": "Leonardo Pavoletti (Genoa) attempts to test the goalkeeper after receiving a cross inside the penalty area. He hits the ball poorly and his shot goes well wide of the right post.",
"identified": "[PLAYER_xrQ22VYn] ([TEAM_]) attempts to test the goalkeeper after receiving a cross inside the penalty area. He hits the ball poorly and his shot goes well wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) attempts to test the goalkeeper after receiving a cross inside the penalty area. He hits the ball poorly and his shot goes well wide of the right post.",
"visibility": "shown",
"position": "1585000"
},
{
"important": false,
"gameTime": "2 - 25:54",
"label": "",
"description": "Suso (AC Milan) slides a pass forward, but one of the defenders cuts it out.",
"identified": "[PLAYER_Aexbrioc] ([TEAM_]) slides a pass forward, but one of the defenders cuts it out.",
"anonymized": "[PLAYER] ([TEAM]) slides a pass forward, but one of the defenders cuts it out.",
"visibility": "shown",
"position": "1554000"
},
{
"important": true,
"gameTime": "2 - 24:55",
"label": "substitution",
"description": "Suso (AC Milan) joins the action as a substitute, replacing M'Baye Niang.",
"identified": "[PLAYER_Aexbrioc] ([TEAM_]) joins the action as a substitute, replacing [PLAYER_hbNBiofd].",
"anonymized": "[PLAYER] ([TEAM]) joins the action as a substitute, replacing [PLAYER].",
"visibility": "shown",
"position": "1495000"
},
{
"important": false,
"gameTime": "2 - 24:27",
"label": "",
"description": "M'Baye Niang (AC Milan) found some space to play in a lofted pass, but he looks disappointed as none of his teammates managed to connect with it. It's a throw-in for Genoa.",
"identified": "[PLAYER_hbNBiofd] ([TEAM_]) found some space to play in a lofted pass, but he looks disappointed as none of his teammates managed to connect with it. It's a throw-in for [TEAM_].",
"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. It's a throw-in for [TEAM].",
"visibility": "shown",
"position": "1467000"
},
{
"important": false,
"gameTime": "2 - 23:40",
"label": "corner",
"description": "Darko Lazovic (Genoa) swings in the corner, but it's comfortably cleared away.",
"identified": "[PLAYER_4QATUtMO] ([TEAM_]) swings in the corner, but it's comfortably cleared away.",
"anonymized": "[PLAYER] ([TEAM]) swings in the corner, but it's comfortably cleared away.",
"visibility": "shown",
"position": "1420000"
},
{
"important": false,
"gameTime": "2 - 23:09",
"label": "",
"description": "Darko Lazovic (Genoa) 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. The referee and one of his assistants signal for a corner kick to Genoa.",
"identified": "[PLAYER_4QATUtMO] ([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. The referee and one of his assistants signal for a corner kick to [TEAM_].",
"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. The referee and one of his assistants signal for a corner kick to [TEAM].",
"visibility": "shown",
"position": "1389000"
},
{
"important": true,
"gameTime": "2 - 22:39",
"label": "",
"description": "Good team movement sets up Tomas Rincon (Genoa) on the edge of the box, but he slices the ball narrowly wide of the right post.",
"identified": "Good team movement sets up [PLAYER_YDUMMZWp] ([TEAM_]) on the edge of the box, but he slices the ball narrowly wide of the right post.",
"anonymized": "Good team movement sets up [PLAYER] ([TEAM]) on the edge of the box, but he slices the ball narrowly wide of the right post.",
"visibility": "shown",
"position": "1359000"
},
{
"important": true,
"gameTime": "2 - 21:43",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Leonardo Pavoletti (Genoa) comes onto the pitch for Giovanni Simeone.",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_xrQ22VYn] ([TEAM_]) comes onto the pitch for [PLAYER_6m566fII].",
"anonymized": "The referee stops play so that a substitution can be made and [PLAYER] ([TEAM]) comes onto the pitch for [PLAYER].",
"visibility": "shown",
"position": "1303000"
},
{
"important": false,
"gameTime": "2 - 20:53",
"label": "",
"description": "Juraj Kucka (AC Milan) brings his opponent down with a tackle and Luca Banti blows his whistle for a foul.",
"identified": "[PLAYER_nkYbTmQO] ([TEAM_]) brings his opponent down with a tackle and [REFEREE] blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) brings his opponent down with a tackle and [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "1253000"
},
{
"important": false,
"gameTime": "2 - 19:44",
"label": "corner",
"description": "M'Baye Niang (AC Milan) floats the ball in from the corner but it's intercepted.",
"identified": "[PLAYER_hbNBiofd] ([TEAM_]) floats the ball in from the corner but it's intercepted.",
"anonymized": "[PLAYER] ([TEAM]) floats the ball in from the corner but it's intercepted.",
"visibility": "shown",
"position": "1184000"
},
{
"important": false,
"gameTime": "2 - 19:30",
"label": "",
"description": "M'Baye Niang (AC Milan) looks to break free, but an opposing player clears the ball away. The ball is out of play and AC Milan manage to earn a corner.",
"identified": "[PLAYER_hbNBiofd] ([TEAM_]) looks to break free, but an opposing player clears the ball away. The ball is out of play and [TEAM_] manage to earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away. The ball is out of play and [TEAM] manage to earn a corner.",
"visibility": "shown",
"position": "1170000"
},
{
"important": false,
"gameTime": "2 - 18:17",
"label": "",
"description": "Some neat passing and movement from AC Milan as they ping around some short passes in order to create a new attacking opportunity.",
"identified": "Some neat passing and movement from [TEAM_] as they ping around some short passes in order to create a new attacking opportunity.",
"anonymized": "Some neat passing and movement from [TEAM] as they ping around some short passes in order to create a new attacking opportunity.",
"visibility": "shown",
"position": "1097000"
},
{
"important": true,
"gameTime": "2 - 16:38",
"label": "substitution",
"description": "Vincenzo Montella has decided to introduce fresh legs, with Luiz Adriano (AC Milan) replacing Keisuke Honda.",
"identified": "[COACH_vcAWhGM6] has decided to introduce fresh legs, with [PLAYER_8hhNPfu0] ([TEAM_]) replacing [PLAYER_zq4slAwi].",
"anonymized": "[COACH] has decided to introduce fresh legs, with [PLAYER] ([TEAM]) replacing [PLAYER].",
"visibility": "shown",
"position": "998000"
},
{
"important": false,
"gameTime": "2 - 15:32",
"label": "corner",
"description": "Darko Lazovic (Genoa) sends a wonderful cross from the corner kick. However, the defence works perfectly to clear the ball and avert the threat.",
"identified": "[PLAYER_4QATUtMO] ([TEAM_]) sends a wonderful cross from the corner kick. However, the defence works perfectly to clear the ball and avert the threat.",
"anonymized": "[PLAYER] ([TEAM]) sends a wonderful cross from the corner kick. However, the defence works perfectly to clear the ball and avert the threat.",
"visibility": "shown",
"position": "932000"
},
{
"important": false,
"gameTime": "2 - 14:53",
"label": "",
"description": "Luca Rigoni (Genoa) flights in the cross, but the defender is alert and clears to safety. The ball goes out of play and Genoa have been awarded a corner kick.",
"identified": "[PLAYER_0lnOPjCs] ([TEAM_]) flights in the cross, but the defender is alert and clears to safety. The ball goes out of play and [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) flights in the cross, but the defender is alert and clears to safety. The ball goes out of play and [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "893000"
},
{
"important": false,
"gameTime": "2 - 13:38",
"label": "",
"description": "Andrea Poli (AC Milan) sends a cross into the box, but the opposition's defence quickly intercepts the ball.",
"identified": "[PLAYER_06BSgd70] ([TEAM_]) sends a cross into the box, but the opposition's defence quickly intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence quickly intercepts the ball.",
"visibility": "shown",
"position": "818000"
},
{
"important": true,
"gameTime": "2 - 12:25",
"label": "substitution",
"description": "Substitution. Gustavo Gomez (AC Milan) in, Carlos Bacca out.",
"identified": "Substitution. [PLAYER_fH0yeuUu] ([TEAM_]) in, [PLAYER_lGLvSJ65] out.",
"anonymized": "Substitution. [PLAYER] ([TEAM]) in, [PLAYER] out.",
"visibility": "shown",
"position": "745000"
},
{
"important": true,
"gameTime": "2 - 10:59",
"label": "r-card",
"description": "Luca Banti shows a red card with no hesitation. Gabriel Paletta (AC Milan) can have an early bath and think about his challenge.",
"identified": "[REFEREE] shows a red card with no hesitation. [PLAYER_29ORgAw5] ([TEAM_]) can have an early bath and think about his challenge.",
"anonymized": "[REFEREE] shows a red card with no hesitation. [PLAYER] ([TEAM]) can have an early bath and think about his challenge.",
"visibility": "shown",
"position": "659000"
},
{
"important": false,
"gameTime": "2 - 10:09",
"label": "corner",
"description": "Darko Lazovic (Genoa) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"identified": "[PLAYER_4QATUtMO] ([TEAM_]) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"anonymized": "[PLAYER] ([TEAM]) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"visibility": "shown",
"position": "609000"
},
{
"important": false,
"gameTime": "2 - 09:50",
"label": "",
"description": "Darko Lazovic (Genoa) tries to send a pass but it's blocked. The ball is out of play. Genoa will have a chance to score from a corner.",
"identified": "[PLAYER_4QATUtMO] ([TEAM_]) tries to send a pass but it's blocked. The ball is out of play. [TEAM_] will have a chance to score from a corner.",
"anonymized": "[PLAYER] ([TEAM]) tries to send a pass but it's blocked. The ball is out of play. [TEAM] will have a chance to score from a corner.",
"visibility": "shown",
"position": "590000"
},
{
"important": true,
"gameTime": "2 - 08:47",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Nikola Ninkovic trots off the pitch and is replaced by Darko Lazovic (Genoa).",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_xn3aaWdb] trots off the pitch and is replaced by [PLAYER_4QATUtMO] ([TEAM_]).",
"anonymized": "The referee stops play so that a substitution can be made and [PLAYER] trots off the pitch and is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "527000"
},
{
"important": false,
"gameTime": "2 - 05:58",
"label": "",
"description": "Gabriel Paletta (AC Milan) blasts the ball from just outside the box, but his attempt is blocked by the defender.",
"identified": "[PLAYER_29ORgAw5] ([TEAM_]) blasts the ball from just outside the box, but his attempt is blocked by the defender.",
"anonymized": "[PLAYER] ([TEAM]) blasts the ball from just outside the box, but his attempt is blocked by the defender.",
"visibility": "shown",
"position": "358000"
},
{
"important": false,
"gameTime": "2 - 05:54",
"label": "corner",
"description": "M'Baye Niang (AC Milan) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety.",
"identified": "[PLAYER_hbNBiofd] ([TEAM_]) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety.",
"visibility": "shown",
"position": "354000"
},
{
"important": false,
"gameTime": "2 - 05:15",
"label": "",
"description": "Giacomo Bonaventura (AC Milan) takes the ball on and fires in a shot from 23 metres out. Mattia Perin stops the effort which is headed for the bottom left corner. Good work from AC Milan as they win a corner.",
"identified": "[PLAYER_lxFZfQF4] ([TEAM_]) takes the ball on and fires in a shot from 23 metres out. [PLAYER_A3ZJNQg1] stops the effort which is headed for the bottom left corner. Good work from [TEAM_] as they win a corner.",
"anonymized": "[PLAYER] ([TEAM]) takes the ball on and fires in a shot from 23 metres out. [PLAYER] stops the effort which is headed for the bottom left corner. Good work from [TEAM] as they win a corner.",
"visibility": "shown",
"position": "315000"
},
{
"important": false,
"gameTime": "2 - 03:15",
"label": "",
"description": "The linesman raises his flag for offside before Luca Rigoni (Genoa) heads on.",
"identified": "The linesman raises his flag for offside before [PLAYER_0lnOPjCs] ([TEAM_]) heads on.",
"anonymized": "The linesman raises his flag for offside before [PLAYER] ([TEAM]) heads on.",
"visibility": "shown",
"position": "195000"
},
{
"important": false,
"gameTime": "2 - 02:13",
"label": "",
"description": "Gabriel Paletta (AC Milan) is unable to feed an accurate cross into the box.",
"identified": "[PLAYER_29ORgAw5] ([TEAM_]) is unable to feed an accurate cross into the box.",
"anonymized": "[PLAYER] ([TEAM]) is unable to feed an accurate cross into the box.",
"visibility": "shown",
"position": "133000"
},
{
"important": false,
"gameTime": "2 - 01:19",
"label": "",
"description": "The effort by Giacomo Bonaventura (AC Milan) failed to give the goalkeeper anything to worry about. He unleashed a poor shot from 26 metres which flew well wide of the right post.",
"identified": "The effort by [PLAYER_lxFZfQF4] ([TEAM_]) failed to give the goalkeeper anything to worry about. He unleashed a poor shot from 26 metres which flew well wide of the right post.",
"anonymized": "The effort by [PLAYER] ([TEAM]) failed to give the goalkeeper anything to worry about. He unleashed a poor shot from 26 metres which flew well wide of the right post.",
"visibility": "shown",
"position": "79000"
},
{
"important": false,
"gameTime": "2 - 00:42",
"label": "",
"description": "Carlos Bacca (AC Milan) does his best to latch onto a cross into the box, but he can't get to the ball.",
"identified": "[PLAYER_lGLvSJ65] ([TEAM_]) does his best to latch onto a cross into the box, but he can't get to the ball.",
"anonymized": "[PLAYER] ([TEAM]) does his best to latch onto a cross into the box, but he can't get to the ball.",
"visibility": "shown",
"position": "42000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "Referee Luca Banti blows his whistle to start the second half.",
"identified": "Referee [REFEREE] blows his whistle to start the second half.",
"anonymized": "Referee [REFEREE] blows his whistle to start the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 46:59",
"label": "",
"description": "We can hope that the managers will be able to motivate the players and stir them to improve their performance for after the half-time break. We haven't seen really exciting football in the previous 45 minutes. Both teams are unsuccessfully trying to control the game and it's pretty even so far. Both sides are using the same slow build-up play tactic.",
"identified": "We can hope that the managers will be able to motivate the players and stir them to improve their performance for after the half-time break. We haven't seen really exciting football in the previous 45 minutes. Both teams are unsuccessfully trying to control the game and it's pretty even so far. Both sides are using the same slow build-up play tactic.",
"anonymized": "We can hope that the managers will be able to motivate the players and stir them to improve their performance for after the half-time break. We haven't seen really exciting football in the previous 45 minutes. Both teams are unsuccessfully trying to control the game and it's pretty even so far. Both sides are using the same slow build-up play tactic.",
"visibility": "shown",
"position": "2819000"
},
{
"important": true,
"gameTime": "1 - 46:13",
"label": "whistle",
"description": "That is it for the first half after the referee blows his whistle and the players head to their respective dressing rooms.",
"identified": "That is it for the first half after the referee blows his whistle and the players head to their respective dressing rooms.",
"anonymized": "That is it for the first half after the referee blows his whistle and the players head to their respective dressing rooms.",
"visibility": "shown",
"position": "2773000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "Fourth official shows 1 min. of added time.",
"identified": "Fourth official shows 1 min. of added time.",
"anonymized": "Fourth official shows 1 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "",
"description": "Keisuke Honda (AC Milan) floats the free kick into the box, but it's easily cleared by the first man.",
"identified": "[PLAYER_zq4slAwi] ([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": "0"
},
{
"important": false,
"gameTime": "1 - 44:34",
"label": "",
"description": "A player from Genoa pulled an opponent down, forcing the referee to blow his whistle. AC Milan are awarded the free kick.",
"identified": "A player from [TEAM_] pulled an opponent down, forcing the referee to blow his whistle. [TEAM_] are awarded the free kick.",
"anonymized": "A player from [TEAM] pulled an opponent down, forcing the referee to blow his whistle. [TEAM] are awarded the free kick.",
"visibility": "shown",
"position": "2674000"
},
{
"important": false,
"gameTime": "1 - 43:21",
"label": "corner",
"description": "Nikola Ninkovic (Genoa) fails to produce a decent cross from the corner kick. The ball goes well out of play.",
"identified": "[PLAYER_xn3aaWdb] ([TEAM_]) fails to produce a decent cross from the corner kick. The ball goes well out of play.",
"anonymized": "[PLAYER] ([TEAM]) fails to produce a decent cross from the corner kick. The ball goes well out of play.",
"visibility": "shown",
"position": "2601000"
},
{
"important": false,
"gameTime": "1 - 42:29",
"label": "",
"description": "A lofted cross from Miguel Veloso (Genoa) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. Genoa will take a corner kick.",
"identified": "A lofted cross from [PLAYER_UgoQDjlg] ([TEAM_]) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. [TEAM_] will take a corner kick.",
"anonymized": "A lofted cross from [PLAYER] ([TEAM]) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. [TEAM] will take a corner kick.",
"visibility": "shown",
"position": "2549000"
},
{
"important": false,
"gameTime": "1 - 41:15",
"label": "",
"description": "M'Baye Niang (AC Milan) got the ball on the edge of the box and fired in a first-time shot on goal, but his effort floated well over the bar. High, wide and not at all handsome.",
"identified": "[PLAYER_hbNBiofd] ([TEAM_]) got the ball on the edge of the box and fired in a first-time shot on goal, but his effort floated well over the bar. High, wide and not at all handsome.",
"anonymized": "[PLAYER] ([TEAM]) got the ball on the edge of the box and fired in a first-time shot on goal, but his effort floated well over the bar. High, wide and not at all handsome.",
"visibility": "shown",
"position": "2475000"
},
{
"important": true,
"gameTime": "1 - 39:50",
"label": "y-card",
"description": "Armando Izzo (Genoa) is awarded a yellow card for his tackle. He doesn't seem to agree with the decision, but Luca Banti ignores the protests.",
"identified": "[PLAYER_OrlLWHno] ([TEAM_]) is awarded a yellow card for his tackle. He doesn't seem to agree with the decision, but [REFEREE] ignores the protests.",
"anonymized": "[PLAYER] ([TEAM]) is awarded a yellow card for his tackle. He doesn't seem to agree with the decision, but [REFEREE] ignores the protests.",
"visibility": "shown",
"position": "2390000"
},
{
"important": false,
"gameTime": "1 - 37:59",
"label": "",
"description": "The AC Milan players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"identified": "The [TEAM_] players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"anonymized": "The [TEAM] players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"visibility": "shown",
"position": "2279000"
},
{
"important": false,
"gameTime": "1 - 34:52",
"label": "",
"description": "The AC Milan players are exchanging fine passes and are waiting for an opportunity to start an attack, but here's a mistake and a loss of possession.",
"identified": "The [TEAM_] players are exchanging fine passes and are waiting for an opportunity to start an attack, but here's a mistake and a loss of possession.",
"anonymized": "The [TEAM] players are exchanging fine passes and are waiting for an opportunity to start an attack, but here's a mistake and a loss of possession.",
"visibility": "shown",
"position": "2092000"
},
{
"important": false,
"gameTime": "1 - 32:35",
"label": "",
"description": "Andrea Poli (AC Milan) connects with a pass but sees his shot from the edge of the box blocked.",
"identified": "[PLAYER_06BSgd70] ([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": "1955000"
},
{
"important": false,
"gameTime": "1 - 30:07",
"label": "",
"description": "Edenilson (Genoa) tries to create a chance, but puts too much weight on his pass.",
"identified": "[PLAYER_88LnXlGN] ([TEAM_]) tries to create a chance, but puts too much weight on his pass.",
"anonymized": "[PLAYER] ([TEAM]) tries to create a chance, but puts too much weight on his pass.",
"visibility": "shown",
"position": "1807000"
},
{
"important": false,
"gameTime": "1 - 29:46",
"label": "",
"description": "Neat passing move from AC Milan in order to create new attacking opportunities.",
"identified": "Neat passing move from [TEAM_] in order to create new attacking opportunities.",
"anonymized": "Neat passing move from [TEAM] in order to create new attacking opportunities.",
"visibility": "shown",
"position": "1786000"
},
{
"important": false,
"gameTime": "1 - 26:41",
"label": "",
"description": "A clumsy foul by Miguel Veloso (Genoa) and Luca Banti blows his whistle.",
"identified": "A clumsy foul by [PLAYER_UgoQDjlg] ([TEAM_]) and [REFEREE] blows his whistle.",
"anonymized": "A clumsy foul by [PLAYER] ([TEAM]) and [REFEREE] blows his whistle.",
"visibility": "shown",
"position": "1601000"
},
{
"important": false,
"gameTime": "1 - 25:42",
"label": "",
"description": "Giovanni Simeone (Genoa) sends a cross into the box, but Gianluigi Donnarumma comes off his line to gather the ball.",
"identified": "[PLAYER_6m566fII] ([TEAM_]) sends a cross into the box, but [PLAYER_WScbdXmL] 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": "1542000"
},
{
"important": false,
"gameTime": "1 - 24:59",
"label": "",
"description": "Giacomo Bonaventura (AC Milan) unleashes a shot from the edge of the box, but it goes straight at Mattia Perin.",
"identified": "[PLAYER_lxFZfQF4] ([TEAM_]) unleashes a shot from the edge of the box, but it goes straight at [PLAYER_A3ZJNQg1].",
"anonymized": "[PLAYER] ([TEAM]) unleashes a shot from the edge of the box, but it goes straight at [PLAYER].",
"visibility": "shown",
"position": "1499000"
},
{
"important": false,
"gameTime": "1 - 24:29",
"label": "",
"description": "Giacomo Bonaventura (AC Milan) puts a cross into the box from the free kick but it's cleared.",
"identified": "[PLAYER_lxFZfQF4] ([TEAM_]) puts a cross into the box from the free kick but it's cleared.",
"anonymized": "[PLAYER] ([TEAM]) puts a cross into the box from the free kick but it's cleared.",
"visibility": "shown",
"position": "1469000"
},
{
"important": false,
"gameTime": "1 - 23:59",
"label": "",
"description": "Luca Rigoni (Genoa) commits a foul after making a slide tackle on his opponent. Free kick. AC Milan will probably just try to cross the ball in from here.",
"identified": "[PLAYER_0lnOPjCs] ([TEAM_]) commits a foul after making a slide tackle on his opponent. Free kick. [TEAM_] will probably just try to cross the ball in from here.",
"anonymized": "[PLAYER] ([TEAM]) commits a foul after making a slide tackle on his opponent. Free kick. [TEAM] will probably just try to cross the ball in from here.",
"visibility": "shown",
"position": "1439000"
},
{
"important": false,
"gameTime": "1 - 23:13",
"label": "",
"description": "The referee blows his whistle as Miguel Veloso (Genoa) was too aggressive in his challenge.",
"identified": "The referee blows his whistle as [PLAYER_UgoQDjlg] ([TEAM_]) was too aggressive in his challenge.",
"anonymized": "The referee blows his whistle as [PLAYER] ([TEAM]) was too aggressive in his challenge.",
"visibility": "shown",
"position": "1393000"
},
{
"important": false,
"gameTime": "1 - 22:31",
"label": "",
"description": "Luca Banti blows his whistle after Manuel Locatelli (AC Milan) brings one of his opponents down with a strong tackle.",
"identified": "[REFEREE] blows his whistle after [PLAYER_6RgXRdd8] ([TEAM_]) brings one of his opponents down with a strong tackle.",
"anonymized": "[REFEREE] blows his whistle after [PLAYER] ([TEAM]) brings one of his opponents down with a strong tackle.",
"visibility": "shown",
"position": "1351000"
},
{
"important": false,
"gameTime": "1 - 21:50",
"label": "",
"description": "Lovely skill from Alessio Romagnoli (AC Milan) as he gets away from defenders and unleashes a shot from 24 metres out, but his effort goes just wide of the left post.",
"identified": "Lovely skill from [PLAYER_Wr49C0j4] ([TEAM_]) as he gets away from defenders and unleashes a shot from 24 metres out, but his effort goes just wide of the left post.",
"anonymized": "Lovely skill from [PLAYER] ([TEAM]) as he gets away from defenders and unleashes a shot from 24 metres out, but his effort goes just wide of the left post.",
"visibility": "shown",
"position": "1310000"
},
{
"important": false,
"gameTime": "1 - 20:32",
"label": "",
"description": "M'Baye Niang (AC Milan) found some space to dink a cross from the side into the box, but it needed to be more precise to threaten the opposition.",
"identified": "[PLAYER_hbNBiofd] ([TEAM_]) found some space to dink a cross from the side into the box, but it needed to be more precise to threaten the opposition.",
"anonymized": "[PLAYER] ([TEAM]) found some space to dink a cross from the side into the box, but it needed to be more precise to threaten the opposition.",
"visibility": "shown",
"position": "1232000"
},
{
"important": false,
"gameTime": "1 - 19:49",
"label": "",
"description": "Giovanni Simeone (Genoa) is caught offside!",
"identified": "[PLAYER_6m566fII] ([TEAM_]) is caught offside!",
"anonymized": "[PLAYER] ([TEAM]) is caught offside!",
"visibility": "shown",
"position": "1189000"
},
{
"important": false,
"gameTime": "1 - 19:04",
"label": "",
"description": "Diego Laxalt (Genoa) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety.",
"identified": "[PLAYER_nVWh7cet] ([TEAM_]) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety.",
"visibility": "shown",
"position": "1144000"
},
{
"important": false,
"gameTime": "1 - 18:11",
"label": "",
"description": "Edenilson (Genoa) did his best to latch on to a crossfield pass, but it was too long and it goes out of play. The ball goes out of play and AC Milan will have a goal kick.",
"identified": "[PLAYER_88LnXlGN] ([TEAM_]) did his best to latch on to a crossfield pass, but it was too long and it goes out of play. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) did his best to latch on to a crossfield pass, but it was too long and it goes out of play. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "1091000"
},
{
"important": false,
"gameTime": "1 - 16:56",
"label": "",
"description": "A long cross from the side is directed to the well-positioned M'Baye Niang (AC Milan), but the defence gets it clear.",
"identified": "A long cross from the side is directed to the well-positioned [PLAYER_hbNBiofd] ([TEAM_]), but the defence gets it clear.",
"anonymized": "A long cross from the side is directed to the well-positioned [PLAYER] ([TEAM]), but the defence gets it clear.",
"visibility": "shown",
"position": "1016000"
},
{
"important": false,
"gameTime": "1 - 15:46",
"label": "",
"description": "Manuel Locatelli (AC Milan) trips an opposition player and Luca Banti signals a foul.",
"identified": "[PLAYER_6RgXRdd8] ([TEAM_]) trips an opposition player and [REFEREE] signals a foul.",
"anonymized": "[PLAYER] ([TEAM]) trips an opposition player and [REFEREE] signals a foul.",
"visibility": "shown",
"position": "946000"
},
{
"important": false,
"gameTime": "1 - 14:43",
"label": "corner",
"description": "Keisuke Honda (AC Milan) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger.",
"identified": "[PLAYER_zq4slAwi] ([TEAM_]) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger.",
"anonymized": "[PLAYER] ([TEAM]) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger.",
"visibility": "shown",
"position": "883000"
},
{
"important": false,
"gameTime": "1 - 14:27",
"label": "",
"description": "Keisuke Honda (AC Milan) races towards goal but the defender gets back well to make a challenge. The referee points to the corner flag. It's a corner to AC Milan.",
"identified": "[PLAYER_zq4slAwi] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. The referee points to the corner flag. It's a corner to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. The referee points to the corner flag. It's a corner to [TEAM].",
"visibility": "shown",
"position": "867000"
},
{
"important": false,
"gameTime": "1 - 13:31",
"label": "",
"description": "Genoa try to maintain the tempo of the game by taking a quick free kick.",
"identified": "[TEAM_] try to maintain the tempo of the game by taking a quick free kick.",
"anonymized": "[TEAM] try to maintain the tempo of the game by taking a quick free kick.",
"visibility": "shown",
"position": "811000"
},
{
"important": false,
"gameTime": "1 - 12:59",
"label": "",
"description": "Luca Banti blows for a foul after M'Baye Niang (AC Milan) was too aggressive in the battle for the ball. A free kick has been awarded to Genoa.",
"identified": "[REFEREE] blows for a foul after [PLAYER_hbNBiofd] ([TEAM_]) was too aggressive in the battle for the ball. A free kick has been awarded to [TEAM_].",
"anonymized": "[REFEREE] blows for a foul after [PLAYER] ([TEAM]) was too aggressive in the battle for the ball. A free kick has been awarded to [TEAM].",
"visibility": "shown",
"position": "779000"
},
{
"important": true,
"gameTime": "1 - 10:23",
"label": "soccer-ball",
"description": "It's a goal! Nikola Ninkovic (Genoa) makes it 0:0. He jumped highest to connect with a perfect cross from Tomas Rincon and planted his close-range header into the bottom left corner. Gianluigi Donnarumma was helpless.",
"identified": "It's a goal! [PLAYER_xn3aaWdb] ([TEAM_]) makes it 0:0. He jumped highest to connect with a perfect cross from [PLAYER_YDUMMZWp] and planted his close-range header into the bottom left corner. [PLAYER_WScbdXmL] was helpless.",
"anonymized": "It's a goal! [PLAYER] ([TEAM]) makes it 0:0. He jumped highest to connect with a perfect cross from [PLAYER] and planted his close-range header into the bottom left corner. [PLAYER] was helpless.",
"visibility": "shown",
"position": "623000"
}
]
} |