File size: 89,347 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 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 |
{
"timestamp": "1429977600",
"score": "2 - 1",
"round": "32",
"teams": [
"Udinese",
"AC Milan"
],
"lineup": {
"home": {
"tactic": "1-4-3-1-2",
"players": [
{
"hash": "hnFBS5hK",
"name": "Allan",
"captain": "",
"detail_link": "/player/allan/hnFBS5hK/",
"short_name": "Allan",
"shirt_number": "6",
"country": "Brazil",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Allan"
},
{
"hash": "MwDoCrIu",
"name": "Badu",
"captain": "",
"detail_link": "/player/agyemang-badu-emmanuel/MwDoCrIu/",
"short_name": "Badu",
"shirt_number": "7",
"country": "Ghana",
"facts": [
{
"type": "3",
"time": "74' Badu (Guilherme)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Badu"
},
{
"hash": "2aAFmtDN",
"name": "Danilo",
"captain": "",
"detail_link": "/player/danilo/2aAFmtDN/",
"short_name": "Danilo",
"shirt_number": "5",
"country": "Brazil",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Danilo"
},
{
"hash": "K0gRifIN",
"name": "Di Natale A.",
"captain": "(C)",
"detail_link": "/player/di-natale-antonio/K0gRifIN/",
"short_name": "Di Natale",
"shirt_number": "10",
"country": "Italy",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Antonio Di Natale"
},
{
"hash": "48afumin",
"name": "Domizzi M.",
"captain": "",
"detail_link": "/player/domizzi-maurizio/48afumin/",
"short_name": "Domizzi",
"shirt_number": "11",
"country": "Italy",
"facts": [
{
"type": "1",
"time": "29' Domizzi M. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Maurizio Domizzi"
},
{
"hash": "xtQTl1b3",
"name": "Geijo A.",
"captain": "",
"detail_link": "/player/geijo-alexandre/xtQTl1b3/",
"short_name": "Geijo",
"shirt_number": "82",
"country": "Switzerland",
"facts": [
{
"type": "6",
"time": "54'",
"description": "Thereau C.",
"linked_player_hash": "Ie7bvoaI"
}
],
"lineup": 11,
"starting": true,
"long_name": "Alexandre Geijo"
},
{
"hash": "AXH1pYQt",
"name": "Guilherme",
"captain": "",
"detail_link": "/player/guilherme/AXH1pYQt/",
"short_name": "Guilherme",
"shirt_number": "19",
"country": "Brazil",
"facts": [
{
"type": "8",
"time": "74' Badu (Guilherme)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "84'",
"description": "Kone P.",
"linked_player_hash": "jiUnteZi"
}
],
"lineup": 9,
"starting": true,
"long_name": "Guilherme"
},
{
"hash": "KxR6qZQd",
"name": "Karnezis O.",
"captain": "",
"detail_link": "/player/karnezis-orestis/KxR6qZQd/",
"short_name": "Karnezis",
"shirt_number": "31",
"country": "Greece",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Orestis Karnezis"
},
{
"hash": "ENhVjEXT",
"name": "Pinzi G.",
"captain": "",
"detail_link": "/player/pinzi-giampiero/ENhVjEXT/",
"short_name": "Pinzi",
"shirt_number": "66",
"country": "Italy",
"facts": [
{
"type": "1",
"time": "38' Pinzi G. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "3",
"time": "58' Pinzi G.",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Giampiero Pinzi"
},
{
"hash": "xMcpCT7t",
"name": "Piris I.",
"captain": "",
"detail_link": "/player/piris-ivan/xMcpCT7t/",
"short_name": "Piris",
"shirt_number": "89",
"country": "Paraguay",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Ivan Rodrigo Piris"
},
{
"hash": "rZFtbGem",
"name": "Widmer S.",
"captain": "",
"detail_link": "/player/widmer-silvan/rZFtbGem/",
"short_name": "Widmer",
"shirt_number": "27",
"country": "Switzerland",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Silvan Widmer"
},
{
"hash": "fFu5N8yS",
"name": "Aguirre R.",
"captain": "",
"detail_link": "/player/aguirre-rodrigo/fFu5N8yS/",
"short_name": "Aguirre",
"shirt_number": "94",
"country": "Uruguay",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Rodrigo Aguirre"
},
{
"hash": "lCWW5nlQ",
"name": "Bubnjic I.",
"captain": "",
"detail_link": "/player/bubnjic-igor/lCWW5nlQ/",
"short_name": "Bubnjic",
"shirt_number": "18",
"country": "Croatia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Igor Bubnjic"
},
{
"hash": "SpgW99hb",
"name": "Gabriel S.",
"captain": "",
"detail_link": "/player/gabriel-silva/SpgW99hb/",
"short_name": "Gabriel",
"shirt_number": "34",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Silva Gabriel"
},
{
"hash": "xtX1eEu6",
"name": "Hallberg M.",
"captain": "",
"detail_link": "/player/hallberg-melker/xtX1eEu6/",
"short_name": "Hallberg",
"shirt_number": "21",
"country": "Sweden",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Melker Hallberg"
},
{
"hash": "jiUnteZi",
"name": "Kone P.",
"captain": "",
"detail_link": "/player/kone-panagiotis/jiUnteZi/",
"short_name": "Kone",
"shirt_number": "33",
"country": "Greece",
"facts": [
{
"type": "7",
"time": "84'",
"description": "Guilherme",
"linked_player_hash": "AXH1pYQt"
}
],
"lineup": null,
"starting": false,
"long_name": "Panagiotis Kone"
},
{
"hash": "EBsz2tTd",
"name": "Meret A.",
"captain": "",
"detail_link": "/player/meret-alex/EBsz2tTd/",
"short_name": "Meret",
"shirt_number": "97",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alex Meret"
},
{
"hash": "OADdklZN",
"name": "Pasquale G.",
"captain": "",
"detail_link": "/player/pasquale-giovanni/OADdklZN/",
"short_name": "Pasquale",
"shirt_number": "26",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Giovanni Pasquale"
},
{
"hash": "nB68FHr5",
"name": "Perica S.",
"captain": "",
"detail_link": "/player/perica-stipe/nB68FHr5/",
"short_name": "Perica",
"shirt_number": "9",
"country": "Croatia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Stipe Perica"
},
{
"hash": "0nQhrI82",
"name": "Scuffet S.",
"captain": "",
"detail_link": "/player/scuffet-simone/0nQhrI82/",
"short_name": "Scuffet",
"shirt_number": "22",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Simone Scuffet"
},
{
"hash": "Ie7bvoaI",
"name": "Thereau C.",
"captain": "",
"detail_link": "/player/thereau-cyril/Ie7bvoaI/",
"short_name": "Thereau",
"shirt_number": "77",
"country": "France",
"facts": [
{
"type": "7",
"time": "54'",
"description": "Geijo A.",
"linked_player_hash": "xtQTl1b3"
}
],
"lineup": null,
"starting": false,
"long_name": "Cyril Thereau"
},
{
"hash": "p8VZW4fL",
"name": "Zapata A.",
"captain": "",
"detail_link": "/player/zapata-alexis/p8VZW4fL/",
"short_name": "Zapata",
"shirt_number": "13",
"country": "Colombia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alexis Zapata"
}
],
"coach": [
{
"hash": "EF75MZIJ",
"name": "Stramaccioni A.",
"captain": "",
"detail_link": "/player/stramaccioni-andrea/EF75MZIJ/",
"short_name": "Stramaccioni A.",
"shirt_number": "",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Andrea Stramaccioni"
}
]
},
"away": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "dIvO159A",
"name": "Abate I.",
"captain": "(C)",
"detail_link": "/player/abate-ignazio/dIvO159A/",
"short_name": "Abate",
"shirt_number": "20",
"country": "Italy",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Ignazio Abate"
},
{
"hash": "fiik3Ge2",
"name": "Antonelli L.",
"captain": "",
"detail_link": "/player/antonelli-luca/fiik3Ge2/",
"short_name": "Antonelli",
"shirt_number": "31",
"country": "Italy",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Luca Antonelli"
},
{
"hash": "lxFZfQF4",
"name": "Bonaventura G.",
"captain": "",
"detail_link": "/player/bonaventura-giacomo/lxFZfQF4/",
"short_name": "Bonaventura",
"shirt_number": "28",
"country": "Italy",
"facts": [
{
"type": "6",
"time": "74'",
"description": "Destro M.",
"linked_player_hash": "rZGeA4Rc"
}
],
"lineup": 8,
"starting": true,
"long_name": "Giacomo Bonaventura"
},
{
"hash": "ppMXeAcc",
"name": "de Jong N.",
"captain": "",
"detail_link": "/player/de-jong-nigel/ppMXeAcc/",
"short_name": "De Jong",
"shirt_number": "34",
"country": "Netherlands",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Nigel De Jong"
},
{
"hash": "IXppY2Xc",
"name": "Lopez D.",
"captain": "",
"detail_link": "/player/lopez-diego/IXppY2Xc/",
"short_name": "Lopez",
"shirt_number": "23",
"country": "Spain",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Diego Lopez"
},
{
"hash": "A10nmDRJ",
"name": "Menez J.",
"captain": "",
"detail_link": "/player/menez-jeremy/A10nmDRJ/",
"short_name": "Menez",
"shirt_number": "7",
"country": "France",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Jeremy Menez"
},
{
"hash": "t267rpH2",
"name": "Mexes P.",
"captain": "",
"detail_link": "/player/mexes-philippe/t267rpH2/",
"short_name": "Mexes",
"shirt_number": "5",
"country": "France",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Philippe Mexes"
},
{
"hash": "0ABrmqye",
"name": "Paletta G.",
"captain": "",
"detail_link": "/player/paletta-gabriel/0ABrmqye/",
"short_name": "Paletta",
"shirt_number": "29",
"country": "Italy",
"facts": [
{
"type": "6",
"time": "46'",
"description": "Rami A.",
"linked_player_hash": "A3B4vScD"
}
],
"lineup": 3,
"starting": true,
"long_name": "Gabriel Paletta"
},
{
"hash": "Gzc3T7KI",
"name": "Pazzini G.",
"captain": "",
"detail_link": "/player/pazzini-giampaolo/Gzc3T7KI/",
"short_name": "Pazzini",
"shirt_number": "11",
"country": "Italy",
"facts": [
{
"type": "1",
"time": "41' Pazzini G. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "3",
"time": "88' Pazzini G. (Cerci A.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Giampaolo Pazzini"
},
{
"hash": "Aexbrioc",
"name": "Suso",
"captain": "",
"detail_link": "/player/suso/Aexbrioc/",
"short_name": "Suso",
"shirt_number": "8",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "64'",
"description": "Cerci A.",
"linked_player_hash": "UHLriSDA"
}
],
"lineup": 9,
"starting": true,
"long_name": "Suso"
},
{
"hash": "jsXWRzFB",
"name": "van Ginkel M.",
"captain": "",
"detail_link": "/player/van-ginkel-marco/jsXWRzFB/",
"short_name": "van Ginkel",
"shirt_number": "21",
"country": "Netherlands",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Marco van Ginkel"
},
{
"hash": "zRCYhVOP",
"name": "Abbiati C.",
"captain": "",
"detail_link": "/player/abbiati-christian/zRCYhVOP/",
"short_name": "Abbiati",
"shirt_number": "32",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Christian Abbiati"
},
{
"hash": "tfOUalsK",
"name": "Bocchetti S.",
"captain": "",
"detail_link": "/player/bocchetti-salvatore/tfOUalsK/",
"short_name": "Bocchetti",
"shirt_number": "19",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Salvatore Bocchetti"
},
{
"hash": "Gt8A7cHr",
"name": "Bonera D.",
"captain": "",
"detail_link": "/player/bonera-daniele/Gt8A7cHr/",
"short_name": "Bonera",
"shirt_number": "25",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Daniele Bonera"
},
{
"hash": "UHLriSDA",
"name": "Cerci A.",
"captain": "",
"detail_link": "/player/cerci-alessio/UHLriSDA/",
"short_name": "Cerci",
"shirt_number": "22",
"country": "Italy",
"facts": [
{
"type": "7",
"time": "64'",
"description": "Suso",
"linked_player_hash": "Aexbrioc"
},
{
"type": "8",
"time": "88' Pazzini G. (Cerci A.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Alessio Cerci"
},
{
"hash": "Ua5srQK6",
"name": "De Sciglio M.",
"captain": "",
"detail_link": "/player/de-sciglio-mattia/Ua5srQK6/",
"short_name": "De Sciglio",
"shirt_number": "2",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mattia De Sciglio"
},
{
"hash": "rZGeA4Rc",
"name": "Destro M.",
"captain": "",
"detail_link": "/player/destro-mattia/rZGeA4Rc/",
"short_name": "Destro",
"shirt_number": "9",
"country": "Italy",
"facts": [
{
"type": "7",
"time": "74'",
"description": "Bonaventura G.",
"linked_player_hash": "lxFZfQF4"
}
],
"lineup": null,
"starting": false,
"long_name": "Mattia Destro"
},
{
"hash": "WScbdXmL",
"name": "Donnarumma G.",
"captain": "",
"detail_link": "/player/donnarumma-gianluigi/WScbdXmL/",
"short_name": "Donnarumma",
"shirt_number": "99",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"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": [],
"lineup": null,
"starting": false,
"long_name": "Keisuke Honda"
},
{
"hash": "06BSgd70",
"name": "Poli A.",
"captain": "",
"detail_link": "/player/poli-andrea/06BSgd70/",
"short_name": "Poli",
"shirt_number": "16",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Andrea Poli"
},
{
"hash": "A3B4vScD",
"name": "Rami A.",
"captain": "",
"detail_link": "/player/rami-adil/A3B4vScD/",
"short_name": "Rami",
"shirt_number": "13",
"country": "France",
"facts": [
{
"type": "7",
"time": "46'",
"description": "Paletta G.",
"linked_player_hash": "0ABrmqye"
}
],
"lineup": null,
"starting": false,
"long_name": "Adil Rami"
},
{
"hash": "dQGLspjb",
"name": "Zaccardo C.",
"captain": "",
"detail_link": "/player/zaccardo-cristian/dQGLspjb/",
"short_name": "Zaccardo",
"shirt_number": "81",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Cristian Zaccardo"
},
{
"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": "GfucctAF",
"name": "Inzaghi F.",
"captain": "",
"detail_link": "/player/inzaghi-filippo/GfucctAF/",
"short_name": "Inzaghi F.",
"shirt_number": "",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Filippo Inzaghi"
}
]
}
},
"referee": [
"Damato A."
],
"venue": [
"Dacia Arena (Udine)"
],
"attendance": [],
"referee_matched": [
"Antonio Damato"
],
"referee_found": [
"Antonio Damato"
],
"coach_matched": [
"Andrea Stramaccioni",
"Filippo Inzaghi",
"The manager"
],
"gameHomeTeam": "Udinese",
"home": {
"name": "Udinese",
"detail_link": "/team/udinese/rXw8YKDE",
"hash": "rXw8YKDE",
"names": [
"Udinese",
"udinese"
]
},
"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/04/2015 - 18:00",
"annotations": [
{
"important": false,
"gameTime": "2 - 48: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. The game was quite balanced and neither team had any obvious advantage. The home side relied on counter-attacks for most of their chances, while the away side's tactic was kick and rush football.",
"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. The game was quite balanced and neither team had any obvious advantage. The home side relied on counter-attacks for most of their chances, while the away side's tactic was kick and rush football.",
"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. The game was quite balanced and neither team had any obvious advantage. The home side relied on counter-attacks for most of their chances, while the away side's tactic was kick and rush football.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "2 - 48:29",
"label": "whistle",
"description": "That's it for today, Antonio Damato has blown his whistle and the game is over.",
"identified": "That's it for today, [REFEREE] has blown his whistle and the game is over.",
"anonymized": "That's it for today, [REFEREE] has blown his whistle and the game is over.",
"visibility": "shown",
"position": "2909000"
},
{
"important": false,
"gameTime": "2 - 47:32",
"label": "",
"description": "Ivan Rodrigo Piris (Udinese) manages to dispossess his opponent of the ball, but he commits a foul in the process and the referee blows his whistle. A free kick is awarded to AC Milan.",
"identified": "[PLAYER_xMcpCT7t] ([TEAM_]) manages to dispossess his opponent of the ball, but he commits a foul in the process and the referee blows his whistle. A free kick is awarded to [TEAM_].",
"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. A free kick is awarded to [TEAM].",
"visibility": "shown",
"position": "2852000"
},
{
"important": false,
"gameTime": "2 - 46:26",
"label": "",
"description": "Panagiotis Kone (Udinese) skips past his man but can't keep the ball in play.",
"identified": "[PLAYER_jiUnteZi] ([TEAM_]) skips past his man but can't keep the ball in play.",
"anonymized": "[PLAYER] ([TEAM]) skips past his man but can't keep the ball in play.",
"visibility": "shown",
"position": "2786000"
},
{
"important": false,
"gameTime": "2 - 45:09",
"label": "",
"description": "Mattia Destro (AC Milan) trips an opposition player and Antonio Damato signals a foul.",
"identified": "[PLAYER_rZGeA4Rc] ([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": "2709000"
},
{
"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 - 42:11",
"label": "soccer-ball",
"description": "Alessio Cerci produces a beautiful lofted cross into the box, where Giampaolo Pazzini (AC Milan) rises high to head the ball into the left side of the goal and beyond the goalkeeper. He makes it 2:1.",
"identified": "[PLAYER_UHLriSDA] produces a beautiful lofted cross into the box, where [PLAYER_Gzc3T7KI] ([TEAM_]) rises high to head the ball into the left side of the goal and beyond the goalkeeper. He makes it 2:1.",
"anonymized": "[PLAYER] produces a beautiful lofted cross into the box, where [PLAYER] ([TEAM]) rises high to head the ball into the left side of the goal and beyond the goalkeeper. He makes it 2:1.",
"visibility": "shown",
"position": "2531000"
},
{
"important": false,
"gameTime": "2 - 42:00",
"label": "corner",
"description": "Jeremy Menez (AC Milan) takes the corner, but one of the defenders reacts well and rises highest to head the ball away.",
"identified": "[PLAYER_A10nmDRJ] ([TEAM_]) takes the corner, but one of the defenders reacts well and rises highest to head the ball away.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner, but one of the defenders reacts well and rises highest to head the ball away.",
"visibility": "shown",
"position": "2520000"
},
{
"important": false,
"gameTime": "2 - 41:53",
"label": "",
"description": "A beautiful low pass from the side is received by Giampaolo Pazzini (AC Milan), who was waiting for his chance. However, the defence is alert and spanks the ball away. AC Milan force a corner. Their opponents will face another attacking threat.",
"identified": "A beautiful low pass from the side is received by [PLAYER_Gzc3T7KI] ([TEAM_]), who was waiting for his chance. However, the defence is alert and spanks the ball away. [TEAM_] force a corner. Their opponents will face another attacking threat.",
"anonymized": "A beautiful low pass from the side is received by [PLAYER] ([TEAM]), who was waiting for his chance. However, the defence is alert and spanks the ball away. [TEAM] force a corner. Their opponents will face another attacking threat.",
"visibility": "shown",
"position": "2513000"
},
{
"important": false,
"gameTime": "2 - 40:15",
"label": "",
"description": "Alessio Cerci (AC Milan) is penalised for a foul. Antonio Damato had a clear view and blows his whistle.",
"identified": "[PLAYER_UHLriSDA] ([TEAM_]) is penalised for a foul. [REFEREE] had a clear view and blows his whistle.",
"anonymized": "[PLAYER] ([TEAM]) is penalised for a foul. [REFEREE] had a clear view and blows his whistle.",
"visibility": "shown",
"position": "2415000"
},
{
"important": true,
"gameTime": "2 - 38:42",
"label": "substitution",
"description": "Here is a change. Guilherme is going off and Andrea Stramaccioni gives the last tactical orders to Panagiotis Kone (Udinese).",
"identified": "Here is a change. [PLAYER_AXH1pYQt] is going off and [COACH_EF75MZIJ] gives the last tactical orders to [PLAYER_jiUnteZi] ([TEAM_]).",
"anonymized": "Here is a change. [PLAYER] is going off and [COACH] gives the last tactical orders to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2322000"
},
{
"important": false,
"gameTime": "2 - 38:28",
"label": "",
"description": "Mattia Destro (AC Milan) is flagged for offside.",
"identified": "[PLAYER_rZGeA4Rc] ([TEAM_]) is flagged for offside.",
"anonymized": "[PLAYER] ([TEAM]) is flagged for offside.",
"visibility": "shown",
"position": "2308000"
},
{
"important": false,
"gameTime": "2 - 37:09",
"label": "",
"description": "Jeremy Menez (AC Milan) takes a first-time shot from the edge of the box, but his effort is well blocked by the defender.",
"identified": "[PLAYER_A10nmDRJ] ([TEAM_]) takes a first-time shot from the edge of the box, but his effort is well blocked by the defender.",
"anonymized": "[PLAYER] ([TEAM]) takes a first-time shot from the edge of the box, but his effort is well blocked by the defender.",
"visibility": "shown",
"position": "2229000"
},
{
"important": false,
"gameTime": "2 - 35:44",
"label": "",
"description": "Ignazio Abate (AC Milan) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away.",
"identified": "[PLAYER_dIvO159A] ([TEAM_]) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away.",
"anonymized": "[PLAYER] ([TEAM]) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away.",
"visibility": "shown",
"position": "2144000"
},
{
"important": false,
"gameTime": "2 - 35:08",
"label": "funfact",
"description": "5:1 \u2013 this is the current number of shots on target.",
"identified": "5:1 \u2013 this is the current number of shots on target.",
"anonymized": "5:1 \u2013 this is the current number of shots on target.",
"visibility": "shown",
"position": "2108000"
},
{
"important": false,
"gameTime": "2 - 34:44",
"label": "funfact",
"description": "The actual number of corner kicks in this match \u2013 9:1.",
"identified": "The actual number of corner kicks in this match \u2013 9:1.",
"anonymized": "The actual number of corner kicks in this match \u2013 9:1.",
"visibility": "shown",
"position": "2084000"
},
{
"important": false,
"gameTime": "2 - 33:46",
"label": "",
"description": "Guilherme (Udinese) tackles a bit over-zealously and Antonio Damato blows for a foul.",
"identified": "[PLAYER_AXH1pYQt] ([TEAM_]) tackles a bit over-zealously and [REFEREE] blows for a foul.",
"anonymized": "[PLAYER] ([TEAM]) tackles a bit over-zealously and [REFEREE] blows for a foul.",
"visibility": "shown",
"position": "2026000"
},
{
"important": false,
"gameTime": "2 - 33:24",
"label": "",
"description": "Udinese are happy showing off their ball keeping skills and that is only interrupted when the defender steps in.",
"identified": "[TEAM_] are happy showing off their ball keeping skills and that is only interrupted when the defender steps in.",
"anonymized": "[TEAM] are happy showing off their ball keeping skills and that is only interrupted when the defender steps in.",
"visibility": "shown",
"position": "2004000"
},
{
"important": false,
"gameTime": "2 - 31:10",
"label": "",
"description": "The Udinese 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": "1870000"
},
{
"important": true,
"gameTime": "2 - 28:59",
"label": "soccer-ball",
"description": "Goal - 2:0! Guilherme laid the ball off to Badu (Udinese), who slots it into the back of the net from close range, leaving the goalkeeper helpless.",
"identified": "Goal - 2:0! [PLAYER_AXH1pYQt] laid the ball off to [PLAYER_MwDoCrIu] ([TEAM_]), who slots it into the back of the net from close range, leaving the goalkeeper helpless.",
"anonymized": "Goal - 2:0! [PLAYER] laid the ball off to [PLAYER] ([TEAM]), who slots it into the back of the net from close range, leaving the goalkeeper helpless.",
"visibility": "shown",
"position": "1739000"
},
{
"important": true,
"gameTime": "2 - 28:58",
"label": "",
"description": "That was a nice football moment. Antonio Di Natale (Udinese) receives an amazing defence-splitting low pass on the edge of the box and blasts the ball towards the right post. Diego Lopez guesses his intention and dives superbly to deny him with a remarkable save!",
"identified": "That was a nice football moment. [PLAYER_K0gRifIN] ([TEAM_]) receives an amazing defence-splitting low pass on the edge of the box and blasts the ball towards the right post. [PLAYER_IXppY2Xc] guesses his intention and dives superbly to deny him with a remarkable save!",
"anonymized": "That was a nice football moment. [PLAYER] ([TEAM]) receives an amazing defence-splitting low pass on the edge of the box and blasts the ball towards the right post. [PLAYER] guesses his intention and dives superbly to deny him with a remarkable save!",
"visibility": "shown",
"position": "1738000"
},
{
"important": true,
"gameTime": "2 - 28:57",
"label": "substitution",
"description": "Substitution. Giacomo Bonaventura walks off the pitch and Mattia Destro (AC Milan) comes on as a substitute.",
"identified": "Substitution. [PLAYER_lxFZfQF4] walks off the pitch and [PLAYER_rZGeA4Rc] ([TEAM_]) comes on as a substitute.",
"anonymized": "Substitution. [PLAYER] walks off the pitch and [PLAYER] ([TEAM]) comes on as a substitute.",
"visibility": "shown",
"position": "1737000"
},
{
"important": false,
"gameTime": "2 - 27:05",
"label": "corner",
"description": "Antonio Di Natale (Udinese) swings the ball into the box from the corner kick but it's a bit too strong and it goes out of play.",
"identified": "[PLAYER_K0gRifIN] ([TEAM_]) swings the ball into the box from the corner kick but it's a bit too strong and it goes out of play.",
"anonymized": "[PLAYER] ([TEAM]) swings the ball into the box from the corner kick but it's a bit too strong and it goes out of play.",
"visibility": "shown",
"position": "1625000"
},
{
"important": false,
"gameTime": "2 - 26:26",
"label": "",
"description": "Antonio Di Natale (Udinese) takes the free kick but it is cleared by the first defender. The referee points to the corner flag and Udinese will take a corner.",
"identified": "[PLAYER_K0gRifIN] ([TEAM_]) takes the free kick but it is cleared by the first defender. The referee points to the corner flag and [TEAM_] will take a corner.",
"anonymized": "[PLAYER] ([TEAM]) takes the free kick but it is cleared by the first defender. The referee points to the corner flag and [TEAM] will take a corner.",
"visibility": "shown",
"position": "1586000"
},
{
"important": false,
"gameTime": "2 - 25:13",
"label": "",
"description": "Giampaolo Pazzini (AC Milan) commits a foul and Antonio Damato immediately signals a free kick.",
"identified": "[PLAYER_Gzc3T7KI] ([TEAM_]) commits a foul and [REFEREE] immediately signals a free kick.",
"anonymized": "[PLAYER] ([TEAM]) commits a foul and [REFEREE] immediately signals a free kick.",
"visibility": "shown",
"position": "1513000"
},
{
"important": false,
"gameTime": "2 - 24:37",
"label": "",
"description": "Ivan Rodrigo Piris (Udinese) commits a foul after making a slide tackle on his opponent.",
"identified": "[PLAYER_xMcpCT7t] ([TEAM_]) commits a foul after making a slide tackle on his opponent.",
"anonymized": "[PLAYER] ([TEAM]) commits a foul after making a slide tackle on his opponent.",
"visibility": "shown",
"position": "1477000"
},
{
"important": false,
"gameTime": "2 - 23:15",
"label": "",
"description": "Cyril Thereau (Udinese) times his run too early and the linesman raises his flag for offside.",
"identified": "[PLAYER_Ie7bvoaI] ([TEAM_]) times his run too early and the linesman raises his flag for offside.",
"anonymized": "[PLAYER] ([TEAM]) times his run too early and the linesman raises his flag for offside.",
"visibility": "shown",
"position": "1395000"
},
{
"important": false,
"gameTime": "2 - 22:29",
"label": "",
"description": "Poor challenge! Luca Antonelli (AC Milan) is penalised for tripping and Antonio Damato blows his whistle. Udinese have a free kick.",
"identified": "Poor challenge! [PLAYER_fiik3Ge2] ([TEAM_]) is penalised for tripping and [REFEREE] blows his whistle. [TEAM_] have a free kick.",
"anonymized": "Poor challenge! [PLAYER] ([TEAM]) is penalised for tripping and [REFEREE] blows his whistle. [TEAM] have a free kick.",
"visibility": "shown",
"position": "1349000"
},
{
"important": false,
"gameTime": "2 - 20:12",
"label": "",
"description": "Half-chance! Ignazio Abate (AC Milan) plays a pass into the box, but Orestis Karnezis reacts well to snuff out the attack.",
"identified": "Half-chance! [PLAYER_dIvO159A] ([TEAM_]) plays a pass into the box, but [PLAYER_KxR6qZQd] 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": "1212000"
},
{
"important": false,
"gameTime": "2 - 19:57",
"label": "funfact",
"description": "Corner kicks \u2013 9:1.",
"identified": "Corner kicks \u2013 9:1.",
"anonymized": "Corner kicks \u2013 9:1.",
"visibility": "shown",
"position": "1197000"
},
{
"important": true,
"gameTime": "2 - 18:56",
"label": "substitution",
"description": "Filippo Inzaghi has decided to introduce fresh legs, with Alessio Cerci (AC Milan) replacing Suso.",
"identified": "[COACH_GfucctAF] has decided to introduce fresh legs, with [PLAYER_UHLriSDA] ([TEAM_]) replacing [PLAYER_Aexbrioc].",
"anonymized": "[COACH] has decided to introduce fresh legs, with [PLAYER] ([TEAM]) replacing [PLAYER].",
"visibility": "shown",
"position": "1136000"
},
{
"important": false,
"gameTime": "2 - 18:31",
"label": "",
"description": "The foul by Jeremy Menez (AC Milan) was seen by Antonio Damato who didn't hesitate to blow the whistle.",
"identified": "The foul by [PLAYER_A10nmDRJ] ([TEAM_]) was seen by [REFEREE] who didn't hesitate to blow the whistle.",
"anonymized": "The foul by [PLAYER] ([TEAM]) was seen by [REFEREE] who didn't hesitate to blow the whistle.",
"visibility": "shown",
"position": "1111000"
},
{
"important": false,
"gameTime": "2 - 18:20",
"label": "",
"description": "Jeremy Menez (AC Milan) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"identified": "[PLAYER_A10nmDRJ] ([TEAM_]) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"anonymized": "[PLAYER] ([TEAM]) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"visibility": "shown",
"position": "1100000"
},
{
"important": false,
"gameTime": "2 - 16:53",
"label": "",
"description": "Ignazio Abate (AC Milan) sends a teasing cross into the area, but Orestis Karnezis intercepts the ball.",
"identified": "[PLAYER_dIvO159A] ([TEAM_]) sends a teasing cross into the area, but [PLAYER_KxR6qZQd] intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a teasing cross into the area, but [PLAYER] intercepts the ball.",
"visibility": "shown",
"position": "1013000"
},
{
"important": false,
"gameTime": "2 - 16:11",
"label": "",
"description": "Suso (AC Milan) gets on the end of a pass and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"identified": "[PLAYER_Aexbrioc] ([TEAM_]) gets on the end of a pass and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"anonymized": "[PLAYER] ([TEAM]) gets on the end of a pass and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"visibility": "shown",
"position": "971000"
},
{
"important": false,
"gameTime": "2 - 14:47",
"label": "",
"description": "AC Milan 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": "887000"
},
{
"important": true,
"gameTime": "2 - 12:44",
"label": "soccer-ball",
"description": "Giampiero Pinzi (Udinese) gets on the end of the corner kick deep inside the box and beats the keeper with a precise strike into the bottom left corner.",
"identified": "[PLAYER_ENhVjEXT] ([TEAM_]) gets on the end of the corner kick deep inside the box and beats the keeper with a precise strike into the bottom left corner.",
"anonymized": "[PLAYER] ([TEAM]) gets on the end of the corner kick deep inside the box and beats the keeper with a precise strike into the bottom left corner.",
"visibility": "shown",
"position": "764000"
},
{
"important": false,
"gameTime": "2 - 12:40",
"label": "corner",
"description": "Antonio Di Natale (Udinese) looks like he will be the one to try and deliver a quality ball into the penalty box from the corner kick.",
"identified": "[PLAYER_K0gRifIN] ([TEAM_]) looks like he will be the one to try and deliver a quality ball into the penalty box from the corner kick.",
"anonymized": "[PLAYER] ([TEAM]) looks like he will be the one to try and deliver a quality ball into the penalty box from the corner kick.",
"visibility": "shown",
"position": "760000"
},
{
"important": false,
"gameTime": "2 - 12:36",
"label": "",
"description": "A lofted cross from Allan (Udinese) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. Udinese have been awarded a corner kick.",
"identified": "A lofted cross from [PLAYER_hnFBS5hK] ([TEAM_]) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. [TEAM_] have been awarded 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] have been awarded a corner kick.",
"visibility": "shown",
"position": "756000"
},
{
"important": false,
"gameTime": "2 - 11:37",
"label": "",
"description": "Giampiero Pinzi (Udinese) commits a minor foul to interrupt the attacking move of his opponent and is warned by the referee that he will get a yellow card if he does it again.",
"identified": "[PLAYER_ENhVjEXT] ([TEAM_]) commits a minor foul to interrupt the attacking move of his opponent and is warned by the referee that he will get a yellow card if he does it again.",
"anonymized": "[PLAYER] ([TEAM]) commits a minor foul to interrupt the attacking move of his opponent and is warned by the referee that he will get a yellow card if he does it again.",
"visibility": "shown",
"position": "697000"
},
{
"important": false,
"gameTime": "2 - 10:11",
"label": "",
"description": "Silvan Widmer (Udinese) is penalised for holding. Antonio Damato signals a set piece.",
"identified": "[PLAYER_rZFtbGem] ([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": "611000"
},
{
"important": true,
"gameTime": "2 - 08:45",
"label": "substitution",
"description": "The manager has decided to make a substitution and Alexandre Geijo walks off the pitch to be replaced by Cyril Thereau (Udinese).",
"identified": "The manager has decided to make a substitution and [PLAYER_xtQTl1b3] walks off the pitch to be replaced by [PLAYER_Ie7bvoaI] ([TEAM_]).",
"anonymized": "The manager has decided to make a substitution and [PLAYER] walks off the pitch to be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "525000"
},
{
"important": false,
"gameTime": "2 - 08:01",
"label": "",
"description": "Silvan Widmer (Udinese) attempts to create a scoring opportunity with a wonderful long ball, but his pass is blocked.",
"identified": "[PLAYER_rZFtbGem] ([TEAM_]) attempts to create a scoring opportunity with a wonderful long ball, but his pass is blocked.",
"anonymized": "[PLAYER] ([TEAM]) attempts to create a scoring opportunity with a wonderful long ball, but his pass is blocked.",
"visibility": "shown",
"position": "481000"
},
{
"important": false,
"gameTime": "2 - 06:34",
"label": "",
"description": "An accurate pass to the edge of the box is well taken by Antonio Di Natale (Udinese), whose instinctive shot towards goal flashes inches over the top. The ball is off of the pitch and it's a goal kick for AC Milan.",
"identified": "An accurate pass to the edge of the box is well taken by [PLAYER_K0gRifIN] ([TEAM_]), whose instinctive shot towards goal flashes inches over the top. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "An accurate pass to the edge of the box is well taken by [PLAYER] ([TEAM]), whose instinctive shot towards goal flashes inches over the top. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "394000"
},
{
"important": false,
"gameTime": "2 - 04:55",
"label": "",
"description": "Marco van Ginkel (AC Milan) controls a nice low pass and shoots from just outside the box, but it's a poor effort that flies into the stands. Wasted opportunity!",
"identified": "[PLAYER_jsXWRzFB] ([TEAM_]) controls a nice low pass and shoots from just outside the box, but it's a poor effort that flies into the stands. Wasted opportunity!",
"anonymized": "[PLAYER] ([TEAM]) controls a nice low pass and shoots from just outside the box, but it's a poor effort that flies into the stands. Wasted opportunity!",
"visibility": "shown",
"position": "295000"
},
{
"important": false,
"gameTime": "2 - 03:17",
"label": "",
"description": "Silvan Widmer (Udinese) flights in the cross, but the defender is alert and clears to safety.",
"identified": "[PLAYER_rZFtbGem] ([TEAM_]) flights in the cross, but the defender is alert and clears to safety.",
"anonymized": "[PLAYER] ([TEAM]) flights in the cross, but the defender is alert and clears to safety.",
"visibility": "shown",
"position": "197000"
},
{
"important": false,
"gameTime": "2 - 02:42",
"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": "162000"
},
{
"important": false,
"gameTime": "2 - 01:23",
"label": "",
"description": "Antonio Damato blows his whistle for a foul after Silvan Widmer (Udinese) hacks down one of his opponents.",
"identified": "[REFEREE] blows his whistle for a foul after [PLAYER_rZFtbGem] ([TEAM_]) hacks down one of his opponents.",
"anonymized": "[REFEREE] blows his whistle for a foul after [PLAYER] ([TEAM]) hacks down one of his opponents.",
"visibility": "shown",
"position": "83000"
},
{
"important": true,
"gameTime": "2 - 00:02",
"label": "substitution",
"description": "Here is a change after the half-time break. Gabriel Paletta is replaced by Adil Rami (AC Milan).",
"identified": "Here is a change after the half-time break. [PLAYER_0ABrmqye] is replaced by [PLAYER_A3B4vScD] ([TEAM_]).",
"anonymized": "Here is a change after the half-time break. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The game restarts for the second half.",
"identified": "The game restarts for the second half.",
"anonymized": "The game restarts for the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 46:59",
"label": "",
"description": "The game can't be described as attractive. We are hoping against hope that the second half will bring more exciting moments and goal opportunities. It's difficult to say if one side enjoyed any superiority over the other in the first half. The home team's main weapon is fast counter-attacks, while the away side attempts to hold onto the ball for as long as possible.",
"identified": "The game can't be described as attractive. We are hoping against hope that the second half will bring more exciting moments and goal opportunities. It's difficult to say if one side enjoyed any superiority over the other in the first half. The home team's main weapon is fast counter-attacks, while the away side attempts to hold onto the ball for as long as possible.",
"anonymized": "The game can't be described as attractive. We are hoping against hope that the second half will bring more exciting moments and goal opportunities. It's difficult to say if one side enjoyed any superiority over the other in the first half. The home team's main weapon is fast counter-attacks, while the away side attempts to hold onto the ball for as long as possible.",
"visibility": "shown",
"position": "2819000"
},
{
"important": true,
"gameTime": "1 - 46:24",
"label": "whistle",
"description": "The match has reached half-time.",
"identified": "The match has reached half-time.",
"anonymized": "The match has reached half-time.",
"visibility": "shown",
"position": "2784000"
},
{
"important": true,
"gameTime": "1 - 45:30",
"label": "",
"description": "Goal disallowed! Luca Antonelli (AC Milan) scores but Antonio Damato blows his whistle for a foul.",
"identified": "Goal disallowed! [PLAYER_fiik3Ge2] ([TEAM_]) scores but [REFEREE] blows his whistle for a foul.",
"anonymized": "Goal disallowed! [PLAYER] ([TEAM]) scores but [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "2730000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "1 min. of stoppage-time to be played.",
"identified": "1 min. of stoppage-time to be played.",
"anonymized": "1 min. of stoppage-time to be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 44:30",
"label": "",
"description": "Guilherme (Udinese) unleashes a superb first-time shot from the edge of the box, but it flies narrowly wide of the left post.",
"identified": "[PLAYER_AXH1pYQt] ([TEAM_]) unleashes a superb first-time shot from the edge of the box, but it flies narrowly wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a superb first-time shot from the edge of the box, but it flies narrowly wide of the left post.",
"visibility": "shown",
"position": "2670000"
},
{
"important": false,
"gameTime": "1 - 44:07",
"label": "corner",
"description": "The ball is whipped in from the corner by Antonio Di Natale (Udinese), but one of the defenders gets it clear.",
"identified": "The ball is whipped in from the corner by [PLAYER_K0gRifIN] ([TEAM_]), but one of the defenders gets it clear.",
"anonymized": "The ball is whipped in from the corner by [PLAYER] ([TEAM]), but one of the defenders gets it clear.",
"visibility": "shown",
"position": "2647000"
},
{
"important": false,
"gameTime": "1 - 43:43",
"label": "",
"description": "Guilherme (Udinese) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. The referee and his assistant both point at the corner flag. Udinese will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_AXH1pYQt] ([TEAM_]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. The referee and his assistant both point at the corner flag. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. The referee and his assistant both point at the corner flag. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "2623000"
},
{
"important": true,
"gameTime": "1 - 43:01",
"label": "",
"description": "Guilherme (Udinese) leaps highest to meet the resulting corner and attempts to head home, but the effort goes harmlessly wide of the left post. The ball is off of the pitch and it's a goal kick for AC Milan.",
"identified": "[PLAYER_AXH1pYQt] ([TEAM_]) leaps highest to meet the resulting corner and attempts to head home, but the effort goes harmlessly wide of the left post. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) leaps highest to meet the resulting corner and attempts to head home, but the effort goes harmlessly wide of the left post. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "2581000"
},
{
"important": false,
"gameTime": "1 - 42:46",
"label": "corner",
"description": "Antonio Di Natale (Udinese) will deliver the corner kick.",
"identified": "[PLAYER_K0gRifIN] ([TEAM_]) will deliver the corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will deliver the corner kick.",
"visibility": "shown",
"position": "2566000"
},
{
"important": false,
"gameTime": "1 - 42:17",
"label": "",
"description": "Silvan Widmer (Udinese) produces a poor pass. He attempts to get the ball into the box but it's hacked away. Udinese get a corner.",
"identified": "[PLAYER_rZFtbGem] ([TEAM_]) produces a poor pass. He attempts to get the ball into the box but it's hacked away. [TEAM_] get a corner.",
"anonymized": "[PLAYER] ([TEAM]) produces a poor pass. He attempts to get the ball into the box but it's hacked away. [TEAM] get a corner.",
"visibility": "shown",
"position": "2537000"
},
{
"important": true,
"gameTime": "1 - 40:10",
"label": "y-card",
"description": "Giampaolo Pazzini (AC Milan) gets a yellow card.",
"identified": "[PLAYER_Gzc3T7KI] ([TEAM_]) gets a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) gets a yellow card.",
"visibility": "shown",
"position": "2410000"
},
{
"important": false,
"gameTime": "1 - 40:09",
"label": "",
"description": "Jeremy Menez (AC Milan) quickly takes the free kick with a short pass.",
"identified": "[PLAYER_A10nmDRJ] ([TEAM_]) quickly takes the free kick with a short pass.",
"anonymized": "[PLAYER] ([TEAM]) quickly takes the free kick with a short pass.",
"visibility": "shown",
"position": "2409000"
},
{
"important": false,
"gameTime": "1 - 39:13",
"label": "",
"description": "Dangerous play by Jeremy Menez (AC Milan). Antonio Damato blows his whistle for a foul.",
"identified": "Dangerous play by [PLAYER_A10nmDRJ] ([TEAM_]). [REFEREE] blows his whistle for a foul.",
"anonymized": "Dangerous play by [PLAYER] ([TEAM]). [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "2353000"
},
{
"important": true,
"gameTime": "1 - 37:50",
"label": "y-card",
"description": "Giampiero Pinzi (Udinese) lunges into his opponent and is relieved when the referee only shows him a yellow card.",
"identified": "[PLAYER_ENhVjEXT] ([TEAM_]) lunges into his opponent and is relieved when the referee only shows him a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) lunges into his opponent and is relieved when the referee only shows him a yellow card.",
"visibility": "shown",
"position": "2270000"
},
{
"important": false,
"gameTime": "1 - 37:20",
"label": "",
"description": "Gabriel Paletta (AC Milan) hasn't suffered any serious injury which would see him leave the pitch. He's back in the game now.",
"identified": "[PLAYER_0ABrmqye] ([TEAM_]) hasn't suffered any serious injury which would see him leave the pitch. He's back in the game now.",
"anonymized": "[PLAYER] ([TEAM]) hasn't suffered any serious injury which would see him leave the pitch. He's back in the game now.",
"visibility": "shown",
"position": "2240000"
},
{
"important": false,
"gameTime": "1 - 36:31",
"label": "injury",
"description": "Gabriel Paletta (AC Milan) is down injured and the referee stops play so that he can receive medical treatment.",
"identified": "[PLAYER_0ABrmqye] ([TEAM_]) is down injured and the referee stops play so that he can receive medical treatment.",
"anonymized": "[PLAYER] ([TEAM]) is down injured and the referee stops play so that he can receive medical treatment.",
"visibility": "shown",
"position": "2191000"
},
{
"important": false,
"gameTime": "1 - 36:00",
"label": "",
"description": "Antonio Di Natale (Udinese) wastes a big opportunity! He controls the ball after a nice low pass and shoots from a promising distance. His poor effort goes miles wide of the right post.",
"identified": "[PLAYER_K0gRifIN] ([TEAM_]) wastes a big opportunity! He controls the ball after a nice low pass and shoots from a promising distance. His poor effort goes miles wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) wastes a big opportunity! He controls the ball after a nice low pass and shoots from a promising distance. His poor effort goes miles wide of the right post.",
"visibility": "shown",
"position": "2160000"
},
{
"important": false,
"gameTime": "1 - 35:33",
"label": "",
"description": "A precise low pass is received by Marco van Ginkel (AC Milan), who makes a yard for himself on the edge of the box, but his poorly placed shot sails well over the bar. The ball goes out of play and Udinese will have a goal kick.",
"identified": "A precise low pass is received by [PLAYER_jsXWRzFB] ([TEAM_]), who makes a yard for himself on the edge of the box, but his poorly placed shot sails well over the bar. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "A precise low pass is received by [PLAYER] ([TEAM]), who makes a yard for himself on the edge of the box, but his poorly placed shot sails well over the bar. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "2133000"
},
{
"important": false,
"gameTime": "1 - 33:26",
"label": "",
"description": "Badu (Udinese) reacts well near the penalty spot to connect with the resulting corner, but fails to direct his header into the back of the net. The ball goes well wide of the right post.",
"identified": "[PLAYER_MwDoCrIu] ([TEAM_]) reacts well near the penalty spot to connect with the resulting corner, but fails to direct his header into the back of the net. The ball goes well wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) reacts well near the penalty spot to connect with the resulting corner, but fails to direct his header into the back of the net. The ball goes well wide of the right post.",
"visibility": "shown",
"position": "2006000"
},
{
"important": false,
"gameTime": "1 - 33:08",
"label": "corner",
"description": "Antonio Di Natale (Udinese) will take a corner kick.",
"identified": "[PLAYER_K0gRifIN] ([TEAM_]) will take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will take a corner kick.",
"visibility": "shown",
"position": "1988000"
},
{
"important": false,
"gameTime": "1 - 32:38",
"label": "",
"description": "Silvan Widmer (Udinese) delivers a promising cross into the box, but it's cleared. The ball goes behind for a corner. Udinese will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_rZFtbGem] ([TEAM_]) delivers a promising cross into the box, but it's cleared. The ball goes behind for a corner. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) delivers a promising cross into the box, but it's cleared. The ball goes behind for a corner. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "1958000"
},
{
"important": false,
"gameTime": "1 - 32:01",
"label": "",
"description": "Some great controlled play and passing in the middle of the pitch from AC Milan.",
"identified": "Some great controlled play and passing in the middle of the pitch from [TEAM_].",
"anonymized": "Some great controlled play and passing in the middle of the pitch from [TEAM].",
"visibility": "shown",
"position": "1921000"
},
{
"important": false,
"gameTime": "1 - 30:08",
"label": "",
"description": "Allan (Udinese) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves Antonio Damato with no other option than to blow for a foul.",
"identified": "[PLAYER_hnFBS5hK] ([TEAM_]) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves [REFEREE] with no other option than to blow for a foul.",
"anonymized": "[PLAYER] ([TEAM]) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves [REFEREE] with no other option than to blow for a foul.",
"visibility": "shown",
"position": "1808000"
},
{
"important": true,
"gameTime": "1 - 28:59",
"label": "y-card",
"description": "Maurizio Domizzi (Udinese) is shown a yellow card by the referee for making a challenge on his opponent, but he looks angry with the decision.",
"identified": "[PLAYER_48afumin] ([TEAM_]) is shown a yellow card by the referee for making a challenge on his opponent, but he looks angry with the decision.",
"anonymized": "[PLAYER] ([TEAM]) is shown a yellow card by the referee for making a challenge on his opponent, but he looks angry with the decision.",
"visibility": "shown",
"position": "1739000"
},
{
"important": false,
"gameTime": "1 - 28:16",
"label": "corner",
"description": "Antonio Di Natale (Udinese) floats the ball in from the corner but it's intercepted.",
"identified": "[PLAYER_K0gRifIN] ([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": "1696000"
},
{
"important": false,
"gameTime": "1 - 27:59",
"label": "",
"description": "Antonio Di Natale (Udinese) collects a brilliant pass inside the box and finds himself in a goal scoring opportunity. He takes a shot, but the effort is well blocked by one of the defending players. The linesman makes the right call and Udinese will have a corner.",
"identified": "[PLAYER_K0gRifIN] ([TEAM_]) collects a brilliant pass inside the box and finds himself in a goal scoring opportunity. He takes a shot, but the effort is well blocked by one of the defending players. The linesman makes the right call and [TEAM_] will have a corner.",
"anonymized": "[PLAYER] ([TEAM]) collects a brilliant pass inside the box and finds himself in a goal scoring opportunity. He takes a shot, but the effort is well blocked by one of the defending players. The linesman makes the right call and [TEAM] will have a corner.",
"visibility": "shown",
"position": "1679000"
},
{
"important": false,
"gameTime": "1 - 25:21",
"label": "",
"description": "Jeremy Menez (AC Milan) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"identified": "[PLAYER_A10nmDRJ] ([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": "1521000"
},
{
"important": false,
"gameTime": "1 - 23:32",
"label": "corner",
"description": "The resulting corner from Antonio Di Natale (Udinese) is cleared.",
"identified": "The resulting corner from [PLAYER_K0gRifIN] ([TEAM_]) is cleared.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "1412000"
},
{
"important": false,
"gameTime": "1 - 21:55",
"label": "",
"description": "Guilherme (Udinese) makes a reckless foul in order to win the ball from his opponent. Antonio Damato has a clear sight of it and blows his whistle. AC Milan are awarded a free kick from a dangerous position.",
"identified": "[PLAYER_AXH1pYQt] ([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. [TEAM_] are awarded a free kick from a dangerous position.",
"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. [TEAM] are awarded a free kick from a dangerous position.",
"visibility": "shown",
"position": "1315000"
},
{
"important": false,
"gameTime": "1 - 20:48",
"label": "",
"description": "Ignazio Abate (AC Milan) swings a cross into the box, but it's far too close to Orestis Karnezis, who smothers the ball.",
"identified": "[PLAYER_dIvO159A] ([TEAM_]) swings a cross into the box, but it's far too close to [PLAYER_KxR6qZQd], 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": "1248000"
},
{
"important": false,
"gameTime": "1 - 20:11",
"label": "",
"description": "Luca Antonelli (AC Milan) attempted to create a dangerous situation in front of goal by sending a cross into the box, but the defence easily dealt with the threat. The ball goes out of play and Udinese will have a goal kick.",
"identified": "[PLAYER_fiik3Ge2] ([TEAM_]) attempted to create a dangerous situation in front of goal by sending a cross into the box, but the defence easily dealt with the threat. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) attempted to create a dangerous situation in front of goal by sending a cross into the box, but the defence easily dealt with the threat. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "1211000"
},
{
"important": false,
"gameTime": "1 - 18:25",
"label": "",
"description": "The flag is raised and Antonio Di Natale (Udinese) is offside again, not for the first time today.",
"identified": "The flag is raised and [PLAYER_K0gRifIN] ([TEAM_]) is offside again, not for the first time today.",
"anonymized": "The flag is raised and [PLAYER] ([TEAM]) is offside again, not for the first time today.",
"visibility": "shown",
"position": "1105000"
},
{
"important": false,
"gameTime": "1 - 17:04",
"label": "",
"description": "Guilherme (Udinese) tries to pass the ball into the penalty area but it's blocked.",
"identified": "[PLAYER_AXH1pYQt] ([TEAM_]) tries to pass the ball into the penalty area but it's blocked.",
"anonymized": "[PLAYER] ([TEAM]) tries to pass the ball into the penalty area but it's blocked.",
"visibility": "shown",
"position": "1024000"
},
{
"important": false,
"gameTime": "1 - 16:38",
"label": "",
"description": "The Udinese players are exchanging some short passes.",
"identified": "The [TEAM_] players are exchanging some short passes.",
"anonymized": "The [TEAM] players are exchanging some short passes.",
"visibility": "shown",
"position": "998000"
},
{
"important": false,
"gameTime": "1 - 15:37",
"label": "",
"description": "Suso (AC Milan) races towards goal but the defender gets back well to make a challenge.",
"identified": "[PLAYER_Aexbrioc] ([TEAM_]) races towards goal but the defender gets back well to make a challenge.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge.",
"visibility": "shown",
"position": "937000"
},
{
"important": false,
"gameTime": "1 - 14:58",
"label": "",
"description": "A cross is clipped into the penalty area by Luca Antonelli (AC Milan) but poses no threat.",
"identified": "A cross is clipped into the penalty area by [PLAYER_fiik3Ge2] ([TEAM_]) but poses no threat.",
"anonymized": "A cross is clipped into the penalty area by [PLAYER] ([TEAM]) but poses no threat.",
"visibility": "shown",
"position": "898000"
},
{
"important": false,
"gameTime": "1 - 13:50",
"label": "",
"description": "Antonio Di Natale (Udinese) is offside and the linesman raises his flag.",
"identified": "[PLAYER_K0gRifIN] ([TEAM_]) is offside and the linesman raises his flag.",
"anonymized": "[PLAYER] ([TEAM]) is offside and the linesman raises his flag.",
"visibility": "shown",
"position": "830000"
},
{
"important": false,
"gameTime": "1 - 12:50",
"label": "",
"description": "Giampaolo Pazzini (AC Milan) gets on the ball and beats an opponent, but his run is stopped by the referee Antonio Damato who sees an offensive foul.",
"identified": "[PLAYER_Gzc3T7KI] ([TEAM_]) gets on the ball and beats an opponent, but his run is stopped by the referee [REFEREE] who sees an offensive foul.",
"anonymized": "[PLAYER] ([TEAM]) gets on the ball and beats an opponent, but his run is stopped by the referee [REFEREE] who sees an offensive foul.",
"visibility": "shown",
"position": "770000"
},
{
"important": false,
"gameTime": "1 - 12:39",
"label": "",
"description": "The cross into the penalty area from Nigel De Jong (AC Milan) needed to be more accurate in order to create a goal-scoring opportunity for his team.",
"identified": "The cross into the penalty area from [PLAYER_ppMXeAcc] ([TEAM_]) needed to be more accurate in order to create a goal-scoring opportunity for his team.",
"anonymized": "The cross into the penalty area from [PLAYER] ([TEAM]) needed to be more accurate in order to create a goal-scoring opportunity for his team.",
"visibility": "shown",
"position": "759000"
},
{
"important": false,
"gameTime": "1 - 11:40",
"label": "",
"description": "Ignazio Abate (AC Milan) tries to send the ball in front of the goal, but the opposition's defence averts the threat.",
"identified": "[PLAYER_dIvO159A] ([TEAM_]) tries to send the ball in front of the goal, but the opposition's defence averts the threat.",
"anonymized": "[PLAYER] ([TEAM]) tries to send the ball in front of the goal, but the opposition's defence averts the threat.",
"visibility": "shown",
"position": "700000"
},
{
"important": false,
"gameTime": "1 - 11:03",
"label": "",
"description": "Jeremy Menez (AC Milan) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"identified": "[PLAYER_A10nmDRJ] ([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": "663000"
}
]
} |