File size: 76,367 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 |
{
"timestamp": "1448221500",
"score": "4 - 0",
"round": "13",
"teams": [
"Frosinone",
"Inter"
],
"lineup": {
"home": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "M1Xsnvs6",
"name": "Biabiany J.",
"captain": "",
"detail_link": "/player/biabiany-jonathan/M1Xsnvs6/",
"short_name": "Biabiany",
"shirt_number": "11",
"country": "France",
"facts": [
{
"type": "3",
"time": "29' Biabiany J.",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "86'",
"description": "Perisic I.",
"linked_player_hash": "4AbKyVr9"
}
],
"lineup": 8,
"starting": true,
"long_name": "Jonathan Biabiany"
},
{
"hash": "niXg5uRn",
"name": "Felipe Melo",
"captain": "",
"detail_link": "/player/melo-felipe/niXg5uRn/",
"short_name": "Felipe Melo",
"shirt_number": "83",
"country": "Brazil",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Felipe Melo"
},
{
"hash": "Y9j38DnN",
"name": "Handanovic S.",
"captain": "",
"detail_link": "/player/handanovic-samir/Y9j38DnN/",
"short_name": "Handanovic",
"shirt_number": "1",
"country": "Slovenia",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Samir Handanovic"
},
{
"hash": "xKyjFkf6",
"name": "Icardi M.",
"captain": "(C)",
"detail_link": "/player/icardi-mauro/xKyjFkf6/",
"short_name": "Icardi",
"shirt_number": "9",
"country": "Argentina",
"facts": [
{
"type": "3",
"time": "53' Icardi M. (Ljajic A.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "88'",
"description": "Brozovic M.",
"linked_player_hash": "I52LaWD8"
}
],
"lineup": 11,
"starting": true,
"long_name": "Mauro Icardi"
},
{
"hash": "Eq6mfXAQ",
"name": "Jovetic S.",
"captain": "",
"detail_link": "/player/jovetic-stevan/Eq6mfXAQ/",
"short_name": "Jovetic",
"shirt_number": "10",
"country": "Montenegro",
"facts": [
{
"type": "8",
"time": "87' Murillo J. (Jovetic S.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Stevan Jovetic"
},
{
"hash": "nZs03zT2",
"name": "Kondogbia G.",
"captain": "",
"detail_link": "/player/kondogbia-geoffrey/nZs03zT2/",
"short_name": "Kondogbia",
"shirt_number": "7",
"country": "Central African Republic",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Geoffrey Kondogbia"
},
{
"hash": "hWtRCbq7",
"name": "Ljajic A.",
"captain": "",
"detail_link": "/player/ljajic-adem/hWtRCbq7/",
"short_name": "Ljajic",
"shirt_number": "22",
"country": "Serbia",
"facts": [
{
"type": "8",
"time": "53' Icardi M. (Ljajic A.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "8",
"time": "90+2' Brozovic M. (Ljajic A.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Adem Ljajic"
},
{
"hash": "A9IyfaRd",
"name": "Miranda",
"captain": "",
"detail_link": "/player/miranda/A9IyfaRd/",
"short_name": "Miranda",
"shirt_number": "25",
"country": "Brazil",
"facts": [
{
"type": "1",
"time": "26' Miranda (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Miranda"
},
{
"hash": "Mmb5mLMi",
"name": "Murillo J.",
"captain": "",
"detail_link": "/player/murillo-jeison/Mmb5mLMi/",
"short_name": "Murillo",
"shirt_number": "24",
"country": "Colombia",
"facts": [
{
"type": "3",
"time": "87' Murillo J. (Jovetic S.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Jeison Murillo"
},
{
"hash": "hprzBx6h",
"name": "Nagatomo Y.",
"captain": "",
"detail_link": "/player/nagatomo-yuto/hprzBx6h/",
"short_name": "Nagatomo",
"shirt_number": "55",
"country": "Japan",
"facts": [
{
"type": "6",
"time": "60'",
"description": "Ranocchia A.",
"linked_player_hash": "S8endwQ4"
}
],
"lineup": 2,
"starting": true,
"long_name": "Yuto Nagatomo"
},
{
"hash": "G0TATC32",
"name": "Telles A.",
"captain": "",
"detail_link": "/player/telles-alex-nicolao/G0TATC32/",
"short_name": "Telles",
"shirt_number": "12",
"country": "Brazil",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Alex Telles"
},
{
"hash": "CnIiPTer",
"name": "Berni T.",
"captain": "",
"detail_link": "/player/berni-tommaso/CnIiPTer/",
"short_name": "Berni",
"shirt_number": "46",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Tommaso Berni"
},
{
"hash": "I52LaWD8",
"name": "Brozovic M.",
"captain": "",
"detail_link": "/player/brozovic-marcelo/I52LaWD8/",
"short_name": "Brozovic",
"shirt_number": "77",
"country": "Croatia",
"facts": [
{
"type": "7",
"time": "88'",
"description": "Icardi M.",
"linked_player_hash": "xKyjFkf6"
},
{
"type": "3",
"time": "90+2' Brozovic M. (Ljajic A.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Marcelo Brozovic"
},
{
"hash": "6y2LJY0g",
"name": "Carrizo J.",
"captain": "",
"detail_link": "/player/carrizo-juan/6y2LJY0g/",
"short_name": "Carrizo",
"shirt_number": "30",
"country": "Argentina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Juan Carrizo"
},
{
"hash": "ShD3fHfH",
"name": "D'Ambrosio D.",
"captain": "",
"detail_link": "/player/d-ambrosio-danilo/ShD3fHfH/",
"short_name": "D'Ambrosio",
"shirt_number": "33",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Danilo D'Ambrosio"
},
{
"hash": "fevLlfbr",
"name": "Gnoukouri A.",
"captain": "",
"detail_link": "/player/gnoukouri-assane/fevLlfbr/",
"short_name": "Gnoukouri",
"shirt_number": "27",
"country": "Ivory Coast",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Assane Gnoukouri"
},
{
"hash": "tSuI4NqP",
"name": "Guarin F.",
"captain": "",
"detail_link": "/player/guarin-fredy/tSuI4NqP/",
"short_name": "Guarin",
"shirt_number": "13",
"country": "Colombia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Fredy Guarin"
},
{
"hash": "StHeGfTT",
"name": "Juan Jesus",
"captain": "",
"detail_link": "/player/juan-jesus/StHeGfTT/",
"short_name": "Juan Jesus",
"shirt_number": "5",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Juan Jesus"
},
{
"hash": "8hd7Wfo2",
"name": "Medel G.",
"captain": "",
"detail_link": "/player/medel-gary/8hd7Wfo2/",
"short_name": "Medel",
"shirt_number": "17",
"country": "Chile",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Gary Medel"
},
{
"hash": "OWGK5qA0",
"name": "Montoya M.",
"captain": "",
"detail_link": "/player/montoya-martin/OWGK5qA0/",
"short_name": "Montoya",
"shirt_number": "14",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Martin Montoya"
},
{
"hash": "AgQ2rkz7",
"name": "Palacio R.",
"captain": "",
"detail_link": "/player/palacio-rodrigo/AgQ2rkz7/",
"short_name": "Palacio",
"shirt_number": "8",
"country": "Argentina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Rodrigo Palacio"
},
{
"hash": "4AbKyVr9",
"name": "Perisic I.",
"captain": "",
"detail_link": "/player/perisic-ivan/4AbKyVr9/",
"short_name": "Perisic",
"shirt_number": "44",
"country": "Croatia",
"facts": [
{
"type": "7",
"time": "86'",
"description": "Biabiany J.",
"linked_player_hash": "M1Xsnvs6"
}
],
"lineup": null,
"starting": false,
"long_name": "Ivan Perisic"
},
{
"hash": "S8endwQ4",
"name": "Ranocchia A.",
"captain": "",
"detail_link": "/player/ranocchia-andrea/S8endwQ4/",
"short_name": "Ranocchia",
"shirt_number": "23",
"country": "Italy",
"facts": [
{
"type": "7",
"time": "60'",
"description": "Nagatomo Y.",
"linked_player_hash": "hprzBx6h"
}
],
"lineup": null,
"starting": false,
"long_name": "Andrea Ranocchia"
}
],
"coach": [
{
"hash": "phNfFF8I",
"name": "Mancini R.",
"captain": "",
"detail_link": "/player/mancini-roberto/phNfFF8I/",
"short_name": "Mancini R.",
"shirt_number": "",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Roberto Mancini"
}
]
},
"away": {
"tactic": "1-4-4-2",
"players": [
{
"hash": "IsmsH5dm",
"name": "Blanchard L.",
"captain": "",
"detail_link": "/player/blanchard-leonardo/IsmsH5dm/",
"short_name": "Blanchard",
"shirt_number": "6",
"country": "Italy",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Leonardo Blanchard"
},
{
"hash": "6ZHcIISJ",
"name": "Castillo N.",
"captain": "",
"detail_link": "/player/castillo-nicolas/6ZHcIISJ/",
"short_name": "Castillo",
"shirt_number": "30",
"country": "Chile",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Nicolas Castillo"
},
{
"hash": "lE6KSRGJ",
"name": "Ciofani D.",
"captain": "(C)",
"detail_link": "/player/ciofani-daniel/lE6KSRGJ/",
"short_name": "Ciofani",
"shirt_number": "9",
"country": "Italy",
"facts": [
{
"type": "6",
"time": "76'",
"description": "Longo S.",
"linked_player_hash": "dGx3xSuN"
}
],
"lineup": 10,
"starting": true,
"long_name": "Daniel Ciofani"
},
{
"hash": "jaisAubs",
"name": "Crivello R.",
"captain": "",
"detail_link": "/player/crivello-roberto/jaisAubs/",
"short_name": "Crivello",
"shirt_number": "3",
"country": "Italy",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Roberto Crivello"
},
{
"hash": "U7p4OmBl",
"name": "Diakite M.",
"captain": "",
"detail_link": "/player/diakite-modibo/U7p4OmBl/",
"short_name": "Diakite",
"shirt_number": "24",
"country": "France",
"facts": [
{
"type": "1",
"time": "10' Diakite M. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Modibo Diakite"
},
{
"hash": "bFNbSfme",
"name": "Gori M.",
"captain": "",
"detail_link": "/player/gori-mirko/bFNbSfme/",
"short_name": "Gori",
"shirt_number": "5",
"country": "Italy",
"facts": [
{
"type": "6",
"time": "77'",
"description": "Gucher R.",
"linked_player_hash": "xbgqgSer"
}
],
"lineup": 7,
"starting": true,
"long_name": "Mirko Gori"
},
{
"hash": "MHD6IelJ",
"name": "Leali N.",
"captain": "",
"detail_link": "/player/leali-nicola/MHD6IelJ/",
"short_name": "Leali",
"shirt_number": "33",
"country": "Italy",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Nicola Leali"
},
{
"hash": "YsayVOQn",
"name": "Paganini L.",
"captain": "",
"detail_link": "/player/paganini-luca/YsayVOQn/",
"short_name": "Paganini",
"shirt_number": "17",
"country": "Italy",
"facts": [
{
"type": "1",
"time": "62' Paganini L. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "83'",
"description": "Carlini M.",
"linked_player_hash": "I7pSWyAI"
}
],
"lineup": 6,
"starting": true,
"long_name": "Luca Paganini"
},
{
"hash": "YFgi07pq",
"name": "Rosi A.",
"captain": "",
"detail_link": "/player/rosi-aleandro/YFgi07pq/",
"short_name": "Rosi",
"shirt_number": "28",
"country": "Italy",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Aleandro Rosi"
},
{
"hash": "4hoV7Fy0",
"name": "Sammarco P.",
"captain": "",
"detail_link": "/player/sammarco-paolo/4hoV7Fy0/",
"short_name": "Sammarco",
"shirt_number": "21",
"country": "Italy",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Paolo Sammarco"
},
{
"hash": "KU8xBpJ1",
"name": "Soddimo D.",
"captain": "",
"detail_link": "/player/soddimo-danilo/KU8xBpJ1/",
"short_name": "Soddimo",
"shirt_number": "10",
"country": "Italy",
"facts": [
{
"type": "1",
"time": "40' Soddimo D. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Danilo Soddimo"
},
{
"hash": "zgYlAbns",
"name": "Bertoncini D.",
"captain": "",
"detail_link": "/player/bertoncini-davide/zgYlAbns/",
"short_name": "Bertoncini",
"shirt_number": "69",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Davide Bertoncini"
},
{
"hash": "I7pSWyAI",
"name": "Carlini M.",
"captain": "",
"detail_link": "/player/carlini-massimiliano/I7pSWyAI/",
"short_name": "Carlini",
"shirt_number": "29",
"country": "Italy",
"facts": [
{
"type": "7",
"time": "83'",
"description": "Paganini L.",
"linked_player_hash": "YsayVOQn"
}
],
"lineup": null,
"starting": false,
"long_name": "Massimiliano Carlini"
},
{
"hash": "r3q21asN",
"name": "Ciofani M.",
"captain": "",
"detail_link": "/player/ciofani-matteo/r3q21asN/",
"short_name": "Ciofani",
"shirt_number": "13",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Matteo Ciofani"
},
{
"hash": "dj0iKLNP",
"name": "Frara A.",
"captain": "",
"detail_link": "/player/frara-alessandro/dj0iKLNP/",
"short_name": "Frara",
"shirt_number": "7",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alessandro Frara"
},
{
"hash": "zLLhxHYH",
"name": "Gomis L.",
"captain": "",
"detail_link": "/player/gomis-lys/zLLhxHYH/",
"short_name": "Gomis",
"shirt_number": "23",
"country": "Senegal",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Lys Gomis"
},
{
"hash": "xbgqgSer",
"name": "Gucher R.",
"captain": "",
"detail_link": "/player/gucher-robert/xbgqgSer/",
"short_name": "Gucher",
"shirt_number": "8",
"country": "Austria",
"facts": [
{
"type": "7",
"time": "77'",
"description": "Gori M.",
"linked_player_hash": "bFNbSfme"
}
],
"lineup": null,
"starting": false,
"long_name": "Robert Gucher"
},
{
"hash": "dGx3xSuN",
"name": "Longo S.",
"captain": "",
"detail_link": "/player/longo-samuele/dGx3xSuN/",
"short_name": "Longo",
"shirt_number": "12",
"country": "Italy",
"facts": [
{
"type": "7",
"time": "76'",
"description": "Ciofani D.",
"linked_player_hash": "lE6KSRGJ"
}
],
"lineup": null,
"starting": false,
"long_name": "Samuele Longo"
},
{
"hash": "UkKychK3",
"name": "Verde D.",
"captain": "",
"detail_link": "/player/verde-daniele/UkKychK3/",
"short_name": "Verde",
"shirt_number": "11",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Daniele Verde"
},
{
"hash": "6uhxbfN0",
"name": "Zappino M.",
"captain": "",
"detail_link": "/player/zappino-massimo/6uhxbfN0/",
"short_name": "Zappino",
"shirt_number": "1",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Massimo Zappino"
}
],
"coach": [
{
"hash": "dUMlwcJB",
"name": "Stellone R.",
"captain": "",
"detail_link": "/player/stellone-roberto/dUMlwcJB/",
"short_name": "Stellone R.",
"shirt_number": "",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Roberto Stellone"
}
]
}
},
"referee": [
"Guida M."
],
"venue": [
"Stadio Giuseppe Meazza (San Siro) (Milan)"
],
"attendance": [
"37 469"
],
"referee_matched": [
"Marco Guida"
],
"referee_found": [
"Marco Guida"
],
"coach_matched": [
"Roberto Stellone",
"Roberto Mancini"
],
"gameHomeTeam": "Inter",
"home": {
"name": "Inter",
"detail_link": "/team/inter/Iw7eKK25",
"hash": "Iw7eKK25",
"names": [
"Inter",
"Inter (Ita)",
"inter"
]
},
"gameAwayTeam": "Frosinone",
"away": {
"name": "Frosinone",
"detail_link": "/team/frosinone/pfo9H1Wp",
"hash": "pfo9H1Wp",
"names": [
"Frosinone",
"frosinone"
]
},
"gameDate": "22/11/2015 - 20:45",
"annotations": [
{
"important": false,
"gameTime": "2 - 47: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. Inter were dominant and more threatening of the two sides. It was a fairly one-sided match. It was obvious that the hosts tried to outplay their opponents with some passing football, while the visitors focused on counter-attacking play.",
"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. [TEAM_] were dominant and more threatening of the two sides. It was a fairly one-sided match. It was obvious that the hosts tried to outplay their opponents with some passing football, while the visitors focused on counter-attacking play.",
"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. [TEAM] were dominant and more threatening of the two sides. It was a fairly one-sided match. It was obvious that the hosts tried to outplay their opponents with some passing football, while the visitors focused on counter-attacking play.",
"visibility": "shown",
"position": "2879000"
},
{
"important": true,
"gameTime": "2 - 47:53",
"label": "whistle",
"description": "The referee blows his whistle for the final time to end this match.",
"identified": "The referee blows his whistle for the final time to end this match.",
"anonymized": "The referee blows his whistle for the final time to end this match.",
"visibility": "shown",
"position": "2873000"
},
{
"important": true,
"gameTime": "2 - 46:06",
"label": "soccer-ball",
"description": "Goal Marcelo Brozovic (Inter)! Marcelo Brozovic (Inter) was put through by Adem Ljajic and he showed brilliant composure inside the box to fire into the left side of the net. 4:0.",
"identified": "Goal [PLAYER_I52LaWD8] ([TEAM_])! [PLAYER_I52LaWD8] ([TEAM_]) was put through by [PLAYER_hWtRCbq7] and he showed brilliant composure inside the box to fire into the left side of the net. 4:0.",
"anonymized": "Goal [PLAYER] ([TEAM])! [PLAYER] ([TEAM]) was put through by [PLAYER] and he showed brilliant composure inside the box to fire into the left side of the net. 4:0.",
"visibility": "shown",
"position": "2766000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "We will have 3 min. of added time.",
"identified": "We will have 3 min. of added time.",
"anonymized": "We will have 3 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "2 - 42:16",
"label": "substitution",
"description": "It is time for a substitution. Marcelo Brozovic (Inter) is on for Mauro Icardi.",
"identified": "It is time for a substitution. [PLAYER_I52LaWD8] ([TEAM_]) is on for [PLAYER_xKyjFkf6].",
"anonymized": "It is time for a substitution. [PLAYER] ([TEAM]) is on for [PLAYER].",
"visibility": "shown",
"position": "2536000"
},
{
"important": true,
"gameTime": "2 - 41:46",
"label": "soccer-ball",
"description": "It's a goal! Stevan Jovetic plays a lovely pass into the box and finds Jeison Murillo (Inter). He tries his luck from close range and coolly strikes the ball into the back of the net. 3:0.",
"identified": "It's a goal! [PLAYER_Eq6mfXAQ] plays a lovely pass into the box and finds [PLAYER_Mmb5mLMi] ([TEAM_]). He tries his luck from close range and coolly strikes the ball into the back of the net. 3:0.",
"anonymized": "It's a goal! [PLAYER] plays a lovely pass into the box and finds [PLAYER] ([TEAM]). He tries his luck from close range and coolly strikes the ball into the back of the net. 3:0.",
"visibility": "shown",
"position": "2506000"
},
{
"important": true,
"gameTime": "2 - 40:39",
"label": "substitution",
"description": "Roberto Mancini has decided to substitute Jonathan Biabiany and he is replaced by Ivan Perisic (Inter).",
"identified": "[COACH_phNfFF8I] has decided to substitute [PLAYER_M1Xsnvs6] and he is replaced by [PLAYER_4AbKyVr9] ([TEAM_]).",
"anonymized": "[COACH] has decided to substitute [PLAYER] and he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2439000"
},
{
"important": true,
"gameTime": "2 - 39:57",
"label": "",
"description": "Stevan Jovetic (Inter) latches on to a precise pass and one-on-one with the keeper slams the ball towards the middle of the goal. Nicola Leali is alert, though, and makes an easy save to deny him.",
"identified": "[PLAYER_Eq6mfXAQ] ([TEAM_]) latches on to a precise pass and one-on-one with the keeper slams the ball towards the middle of the goal. [PLAYER_MHD6IelJ] is alert, though, and makes an easy save to deny him.",
"anonymized": "[PLAYER] ([TEAM]) latches on to a precise pass and one-on-one with the keeper slams the ball towards the middle of the goal. [PLAYER] is alert, though, and makes an easy save to deny him.",
"visibility": "shown",
"position": "2397000"
},
{
"important": true,
"gameTime": "2 - 37:56",
"label": "substitution",
"description": "Substitution. Massimiliano Carlini (Frosinone) receives a signal from the referee and is now allowed to enter the pitch as Luca Paganini walks off.",
"identified": "Substitution. [PLAYER_I7pSWyAI] ([TEAM_]) receives a signal from the referee and is now allowed to enter the pitch as [PLAYER_YsayVOQn] walks off.",
"anonymized": "Substitution. [PLAYER] ([TEAM]) receives a signal from the referee and is now allowed to enter the pitch as [PLAYER] walks off.",
"visibility": "shown",
"position": "2276000"
},
{
"important": false,
"gameTime": "2 - 37:03",
"label": "funfact",
"description": "We can have a look at the statistics now, particularly the total attempts \u2013 22:12.",
"identified": "We can have a look at the statistics now, particularly the total attempts \u2013 22:12.",
"anonymized": "We can have a look at the statistics now, particularly the total attempts \u2013 22:12.",
"visibility": "shown",
"position": "2223000"
},
{
"important": false,
"gameTime": "2 - 33:48",
"label": "corner",
"description": "Adem Ljajic (Inter) looks like he will be the one to take the corner kick.",
"identified": "[PLAYER_hWtRCbq7] ([TEAM_]) looks like he will be the one to take the corner kick.",
"anonymized": "[PLAYER] ([TEAM]) looks like he will be the one to take the corner kick.",
"visibility": "shown",
"position": "2028000"
},
{
"important": false,
"gameTime": "2 - 33:28",
"label": "",
"description": "Adem Ljajic (Inter) looks to break free, but an opposing player clears the ball away. The referee blows his whistle, Inter are awarded a corner kick.",
"identified": "[PLAYER_hWtRCbq7] ([TEAM_]) looks to break free, but an opposing player clears the ball away. The referee blows his whistle, [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away. The referee blows his whistle, [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "2008000"
},
{
"important": true,
"gameTime": "2 - 31:53",
"label": "substitution",
"description": "Roberto Stellone has decided to make a change. Robert Gucher (Frosinone) replaces Mirko Gori.",
"identified": "[COACH_dUMlwcJB] has decided to make a change. [PLAYER_xbgqgSer] ([TEAM_]) replaces [PLAYER_bFNbSfme].",
"anonymized": "[COACH] has decided to make a change. [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "1913000"
},
{
"important": true,
"gameTime": "2 - 30:59",
"label": "substitution",
"description": "The referee signals that it is time for a substitution and Samuele Longo (Frosinone) is coming onto the pitch as Daniel Ciofani cannot continue after picking up an injury.",
"identified": "The referee signals that it is time for a substitution and [PLAYER_dGx3xSuN] ([TEAM_]) is coming onto the pitch as [PLAYER_r3q21asN] cannot continue after picking up an injury.",
"anonymized": "The referee signals that it is time for a substitution and [PLAYER] ([TEAM]) is coming onto the pitch as [PLAYER] cannot continue after picking up an injury.",
"visibility": "shown",
"position": "1859000"
},
{
"important": false,
"gameTime": "2 - 29:53",
"label": "",
"description": "Mauro Icardi (Inter) gets on the end of a pass on the edge of the penalty area and shoots towards the middle of the goal. He didn't put enough power into the effort, though, and Nicola Leali pulls off an easy save.",
"identified": "[PLAYER_xKyjFkf6] ([TEAM_]) gets on the end of a pass on the edge of the penalty area and shoots towards the middle of the goal. He didn't put enough power into the effort, though, and [PLAYER_MHD6IelJ] pulls off an easy save.",
"anonymized": "[PLAYER] ([TEAM]) gets on the end of a pass on the edge of the penalty area and shoots towards the middle of the goal. He didn't put enough power into the effort, though, and [PLAYER] pulls off an easy save.",
"visibility": "shown",
"position": "1793000"
},
{
"important": false,
"gameTime": "2 - 27:50",
"label": "",
"description": "Adem Ljajic (Inter) tries his luck and takes a shot from inside the box. His effort on goal is blocked by a defender.",
"identified": "[PLAYER_hWtRCbq7] ([TEAM_]) tries his luck and takes a shot from inside the box. His effort on goal is blocked by a defender.",
"anonymized": "[PLAYER] ([TEAM]) tries his luck and takes a shot from inside the box. His effort on goal is blocked by a defender.",
"visibility": "shown",
"position": "1670000"
},
{
"important": false,
"gameTime": "2 - 26:31",
"label": "",
"description": "Poor challenge! Nicolas Castillo (Frosinone) is penalised for tripping and Marco Guida blows his whistle.",
"identified": "Poor challenge! [PLAYER_6ZHcIISJ] ([TEAM_]) is penalised for tripping and [REFEREE] blows his whistle.",
"anonymized": "Poor challenge! [PLAYER] ([TEAM]) is penalised for tripping and [REFEREE] blows his whistle.",
"visibility": "shown",
"position": "1591000"
},
{
"important": false,
"gameTime": "2 - 24:49",
"label": "corner",
"description": "Adem Ljajic (Inter) takes the corner, but he overhits it and none of his teammates are able to reach the ball.",
"identified": "[PLAYER_hWtRCbq7] ([TEAM_]) takes the corner, but he overhits it and none of his teammates are able to reach the ball.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner, but he overhits it and none of his teammates are able to reach the ball.",
"visibility": "shown",
"position": "1489000"
},
{
"important": false,
"gameTime": "2 - 24:31",
"label": "",
"description": "Alex Nicolao Telles (Inter) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The referee points to the corner flag and Inter will take a corner.",
"identified": "[PLAYER_G0TATC32] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The referee points to the corner flag and [TEAM_] will take a corner.",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The referee points to the corner flag and [TEAM] will take a corner.",
"visibility": "shown",
"position": "1471000"
},
{
"important": true,
"gameTime": "2 - 23:37",
"label": "",
"description": "Jonathan Biabiany (Inter) received a pass inside the box and sent a dangerous shot in on goal, but keep the champagne on ice as one of the defenders stepped in and blocked the effort. It's hard to say whether the keeper would have stopped it.",
"identified": "[PLAYER_M1Xsnvs6] ([TEAM_]) received a pass inside the box and sent a dangerous shot in on goal, but keep the champagne on ice as one of the defenders stepped in and blocked the effort. It's hard to say whether the keeper would have stopped it.",
"anonymized": "[PLAYER] ([TEAM]) received a pass inside the box and sent a dangerous shot in on goal, but keep the champagne on ice as one of the defenders stepped in and blocked the effort. It's hard to say whether the keeper would have stopped it.",
"visibility": "shown",
"position": "1417000"
},
{
"important": false,
"gameTime": "2 - 20:30",
"label": "",
"description": "Mauro Icardi (Inter) produces a dangerous lofted cross into the box which is intercepted.",
"identified": "[PLAYER_xKyjFkf6] ([TEAM_]) produces a dangerous lofted cross into the box which is intercepted.",
"anonymized": "[PLAYER] ([TEAM]) produces a dangerous lofted cross into the box which is intercepted.",
"visibility": "shown",
"position": "1230000"
},
{
"important": false,
"gameTime": "2 - 17:53",
"label": "",
"description": "Marco Guida blows his whistle and it's Mauro Icardi (Inter) who is penalised for an offensive foul. Good decision by the referee.",
"identified": "[REFEREE] blows his whistle and it's [PLAYER_xKyjFkf6] ([TEAM_]) who is penalised for an offensive foul. Good decision by the referee.",
"anonymized": "[REFEREE] blows his whistle and it's [PLAYER] ([TEAM]) who is penalised for an offensive foul. Good decision by the referee.",
"visibility": "shown",
"position": "1073000"
},
{
"important": false,
"gameTime": "2 - 17:30",
"label": "corner",
"description": "Adem Ljajic (Inter) is about to take a corner kick.",
"identified": "[PLAYER_hWtRCbq7] ([TEAM_]) is about to take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) is about to take a corner kick.",
"visibility": "shown",
"position": "1050000"
},
{
"important": false,
"gameTime": "2 - 17:10",
"label": "",
"description": "Jonathan Biabiany (Inter) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player. Inter will have a chance to score from a corner kick.",
"identified": "[PLAYER_M1Xsnvs6] ([TEAM_]) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player. [TEAM_] will have a chance to score from a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player. [TEAM] will have a chance to score from a corner kick.",
"visibility": "shown",
"position": "1030000"
},
{
"important": true,
"gameTime": "2 - 16:31",
"label": "y-card",
"description": "Marco Guida shows a yellow card to Luca Paganini (Frosinone), who isn't surprised as the tackle was really hard and late.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_YsayVOQn] ([TEAM_]), who isn't surprised as the tackle was really hard and late.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]), who isn't surprised as the tackle was really hard and late.",
"visibility": "shown",
"position": "991000"
},
{
"important": true,
"gameTime": "2 - 14:50",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Andrea Ranocchia (Inter) comes onto the pitch for Yuto Nagatomo.",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_S8endwQ4] ([TEAM_]) comes onto the pitch for [PLAYER_hprzBx6h].",
"anonymized": "The referee stops play so that a substitution can be made and [PLAYER] ([TEAM]) comes onto the pitch for [PLAYER].",
"visibility": "shown",
"position": "890000"
},
{
"important": false,
"gameTime": "2 - 14:17",
"label": "corner",
"description": "The resulting corner, taken by Danilo Soddimo (Frosinone), comes to nothing.",
"identified": "The resulting corner, taken by [PLAYER_KU8xBpJ1] ([TEAM_]), comes to nothing.",
"anonymized": "The resulting corner, taken by [PLAYER] ([TEAM]), comes to nothing.",
"visibility": "shown",
"position": "857000"
},
{
"important": true,
"gameTime": "2 - 14:16",
"label": "",
"description": "Nicolas Castillo (Frosinone) fires the ball at goal from inside the area, but it's well blocked. The ball goes out of play. Frosinone are awarded a corner kick.",
"identified": "[PLAYER_6ZHcIISJ] ([TEAM_]) fires the ball at goal from inside the area, but it's well blocked. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) fires the ball at goal from inside the area, but it's well blocked. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "856000"
},
{
"important": false,
"gameTime": "2 - 13:45",
"label": "corner",
"description": "Danilo Soddimo (Frosinone) launches a powerful cross from the corner into the box, but the ball is intercepted by the defender.",
"identified": "[PLAYER_KU8xBpJ1] ([TEAM_]) launches a powerful cross from the corner into the box, but the ball is intercepted by the defender.",
"anonymized": "[PLAYER] ([TEAM]) launches a powerful cross from the corner into the box, but the ball is intercepted by the defender.",
"visibility": "shown",
"position": "825000"
},
{
"important": false,
"gameTime": "2 - 13:33",
"label": "",
"description": "Danilo Soddimo (Frosinone) sends a cross into the box, but the opposition's defence clears the ball to safety. Frosinone get a corner.",
"identified": "[PLAYER_KU8xBpJ1] ([TEAM_]) sends a cross into the box, but the opposition's defence clears the ball to safety. [TEAM_] get a corner.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence clears the ball to safety. [TEAM] get a corner.",
"visibility": "shown",
"position": "813000"
},
{
"important": false,
"gameTime": "2 - 12:23",
"label": "",
"description": "Stevan Jovetic (Inter) produces a poor pass. He attempts to get the ball into the box but it's hacked away.",
"identified": "[PLAYER_Eq6mfXAQ] ([TEAM_]) produces a poor pass. He attempts to get the ball into the box but it's hacked away.",
"anonymized": "[PLAYER] ([TEAM]) produces a poor pass. He attempts to get the ball into the box but it's hacked away.",
"visibility": "shown",
"position": "743000"
},
{
"important": false,
"gameTime": "2 - 10:25",
"label": "",
"description": "Stevan Jovetic passes to Adem Ljajic (Inter), but he produces a wild shot from the edge of the box which goes well wide of the right post.",
"identified": "[PLAYER_Eq6mfXAQ] passes to [PLAYER_hWtRCbq7] ([TEAM_]), but he produces a wild shot from the edge of the box which goes well wide of the right post.",
"anonymized": "[PLAYER] passes to [PLAYER] ([TEAM]), but he produces a wild shot from the edge of the box which goes well wide of the right post.",
"visibility": "shown",
"position": "625000"
},
{
"important": true,
"gameTime": "2 - 08:00",
"label": "soccer-ball",
"description": "Goal! Mauro Icardi (Inter) scores after an assist by Adem Ljajic that allowed him to tap in the ball into an empty net. The score is 2:0.",
"identified": "Goal! [PLAYER_xKyjFkf6] ([TEAM_]) scores after an assist by [PLAYER_hWtRCbq7] that allowed him to tap in the ball into an empty net. The score is 2:0.",
"anonymized": "Goal! [PLAYER] ([TEAM]) scores after an assist by [PLAYER] that allowed him to tap in the ball into an empty net. The score is 2:0.",
"visibility": "shown",
"position": "480000"
},
{
"important": false,
"gameTime": "2 - 06:06",
"label": "",
"description": "The free kick is taken by Danilo Soddimo (Frosinone), but ball is cleared.",
"identified": "The free kick is taken by [PLAYER_KU8xBpJ1] ([TEAM_]), but ball is cleared.",
"anonymized": "The free kick is taken by [PLAYER] ([TEAM]), but ball is cleared.",
"visibility": "shown",
"position": "366000"
},
{
"important": false,
"gameTime": "2 - 05:36",
"label": "",
"description": "Alex Telles (Inter) makes a reckless foul in order to win the ball from his opponent. Marco Guida has a clear sight of it and blows his whistle. Frosinone are awarded a free kick.",
"identified": "[PLAYER_G0TATC32] ([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.",
"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.",
"visibility": "shown",
"position": "336000"
},
{
"important": false,
"gameTime": "2 - 04:11",
"label": "corner",
"description": "Danilo Soddimo (Frosinone) swings in the corner, but it's comfortably cleared away.",
"identified": "[PLAYER_KU8xBpJ1] ([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": "251000"
},
{
"important": false,
"gameTime": "2 - 03:13",
"label": "corner",
"description": "Danilo Soddimo (Frosinone) 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. Frosinone force a corner. Their opponents will face another attacking threat.",
"identified": "[PLAYER_KU8xBpJ1] ([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. [TEAM_] force a corner. Their opponents will face another attacking threat.",
"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. [TEAM] force a corner. Their opponents will face another attacking threat.",
"visibility": "shown",
"position": "193000"
},
{
"important": false,
"gameTime": "2 - 02:59",
"label": "",
"description": "Roberto Crivello (Frosinone) races towards goal but the defender gets back well to make a challenge. The ball goes out for a corner. Frosinone can continue in their attacking effort.",
"identified": "[PLAYER_jaisAubs] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. The ball goes out for a corner. [TEAM_] can continue in their attacking effort.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. The ball goes out for a corner. [TEAM] can continue in their attacking effort.",
"visibility": "shown",
"position": "179000"
},
{
"important": true,
"gameTime": "2 - 00:57",
"label": "",
"description": "Mauro Icardi plays a lovely pass into Jonathan Biabiany (Inter), but he can't find the target. His strike from inside the box goes narrowly over the crossbar.",
"identified": "[PLAYER_xKyjFkf6] plays a lovely pass into [PLAYER_M1Xsnvs6] ([TEAM_]), but he can't find the target. His strike from inside the box goes narrowly over the crossbar.",
"anonymized": "[PLAYER] plays a lovely pass into [PLAYER] ([TEAM]), but he can't find the target. His strike from inside the box goes narrowly over the crossbar.",
"visibility": "shown",
"position": "57000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "Referee Marco Guida 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": "2 - 00:00",
"label": "",
"description": "Up to now the game has been rather average in terms of entertainment, with little in the way of thrilling moments. The hosts were superior in their performance in the first half. They were more active and precise. The home team tries to prevail using combination football, while the away team adopt a defensive style of play.",
"identified": "Up to now the game has been rather average in terms of entertainment, with little in the way of thrilling moments. The hosts were superior in their performance in the first half. They were more active and precise. The home team tries to prevail using combination football, while the away team adopt a defensive style of play.",
"anonymized": "Up to now the game has been rather average in terms of entertainment, with little in the way of thrilling moments. The hosts were superior in their performance in the first half. They were more active and precise. The home team tries to prevail using combination football, while the away team adopt a defensive style of play.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "1 - 44:59",
"label": "whistle",
"description": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"identified": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"anonymized": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"visibility": "shown",
"position": "2699000"
},
{
"important": true,
"gameTime": "1 - 43:18",
"label": "",
"description": "Adem Ljajic (Inter) collects a wonderful lead pass and as he has a lot of space, smashes a terrific shot from long range. His shot goes painfully close to the crossbar!",
"identified": "[PLAYER_hWtRCbq7] ([TEAM_]) collects a wonderful lead pass and as he has a lot of space, smashes a terrific shot from long range. His shot goes painfully close to the crossbar!",
"anonymized": "[PLAYER] ([TEAM]) collects a wonderful lead pass and as he has a lot of space, smashes a terrific shot from long range. His shot goes painfully close to the crossbar!",
"visibility": "shown",
"position": "2598000"
},
{
"important": false,
"gameTime": "1 - 42:09",
"label": "funfact",
"description": "The ball possession is 64:36.",
"identified": "The ball possession is 64:36.",
"anonymized": "The ball possession is 64:36.",
"visibility": "shown",
"position": "2529000"
},
{
"important": true,
"gameTime": "1 - 39:43",
"label": "y-card",
"description": "Marco Guida shows a yellow card to Danilo Soddimo (Frosinone) for a tough tackle.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_KU8xBpJ1] ([TEAM_]) for a tough tackle.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for a tough tackle.",
"visibility": "shown",
"position": "2383000"
},
{
"important": false,
"gameTime": "1 - 38:00",
"label": "",
"description": "Felipe Melo (Inter) takes a shot from the edge of the area, but it goes harmlessly wide of the right post.",
"identified": "[PLAYER_niXg5uRn] ([TEAM_]) takes a shot from the edge of the area, but it goes harmlessly wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) takes a shot from the edge of the area, but it goes harmlessly wide of the right post.",
"visibility": "shown",
"position": "2280000"
},
{
"important": false,
"gameTime": "1 - 34:03",
"label": "corner",
"description": "Nothing comes of the resulting corner from Alex Nicolao Telles (Inter). The defence is alert and manages to cut it out.",
"identified": "Nothing comes of the resulting corner from [PLAYER_G0TATC32] ([TEAM_]). The defence is alert and manages to cut it out.",
"anonymized": "Nothing comes of the resulting corner from [PLAYER] ([TEAM]). The defence is alert and manages to cut it out.",
"visibility": "shown",
"position": "2043000"
},
{
"important": false,
"gameTime": "1 - 33:50",
"label": "",
"description": "Jonathan Biabiany (Inter) attempts to find one of his teammates inside the box with a chip pass, but one of the defending players reacts superbly and intercepts the ball. Inter have a corner.",
"identified": "[PLAYER_M1Xsnvs6] ([TEAM_]) attempts to find one of his teammates inside the box with a chip pass, but one of the defending players reacts superbly and intercepts the ball. [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find one of his teammates inside the box with a chip pass, but one of the defending players reacts superbly and intercepts the ball. [TEAM] have a corner.",
"visibility": "shown",
"position": "2030000"
},
{
"important": false,
"gameTime": "1 - 32:51",
"label": "",
"description": "Paolo Sammarco (Frosinone) 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.",
"identified": "[PLAYER_4hoV7Fy0] ([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.",
"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.",
"visibility": "shown",
"position": "1971000"
},
{
"important": false,
"gameTime": "1 - 32:36",
"label": "corner",
"description": "Danilo Soddimo (Frosinone) takes a short corner kick.",
"identified": "[PLAYER_KU8xBpJ1] ([TEAM_]) takes a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) takes a short corner kick.",
"visibility": "shown",
"position": "1956000"
},
{
"important": false,
"gameTime": "1 - 32:21",
"label": "",
"description": "Danilo Soddimo (Frosinone) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat. The linesman points to the corner flag, Frosinone are going to take it.",
"identified": "[PLAYER_KU8xBpJ1] ([TEAM_]) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat. The linesman points to the corner flag, [TEAM_] are going to take it.",
"anonymized": "[PLAYER] ([TEAM]) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat. The linesman points to the corner flag, [TEAM] are going to take it.",
"visibility": "shown",
"position": "1941000"
},
{
"important": false,
"gameTime": "1 - 30:28",
"label": "corner",
"description": "Danilo Soddimo (Frosinone) launches an inaccurate corner kick into the penalty area.",
"identified": "[PLAYER_KU8xBpJ1] ([TEAM_]) launches an inaccurate corner kick into the penalty area.",
"anonymized": "[PLAYER] ([TEAM]) launches an inaccurate corner kick into the penalty area.",
"visibility": "shown",
"position": "1828000"
},
{
"important": false,
"gameTime": "1 - 30:16",
"label": "",
"description": "Leonardo Blanchard (Frosinone) sends a lofted cross into the box which is headed clear. The referee signals a corner kick to Frosinone.",
"identified": "[PLAYER_IsmsH5dm] ([TEAM_]) sends a lofted cross into the box which is headed clear. The referee signals a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) sends a lofted cross into the box which is headed clear. The referee signals a corner kick to [TEAM].",
"visibility": "shown",
"position": "1816000"
},
{
"important": true,
"gameTime": "1 - 29:00",
"label": "soccer-ball",
"description": "Goal! Jonathan Biabiany (Inter) was in the right place at the right time to pounce on the rebound inside the box and gleefully rifles the ball home. It's 1:0.",
"identified": "Goal! [PLAYER_M1Xsnvs6] ([TEAM_]) was in the right place at the right time to pounce on the rebound inside the box and gleefully rifles the ball home. It's 1:0.",
"anonymized": "Goal! [PLAYER] ([TEAM]) was in the right place at the right time to pounce on the rebound inside the box and gleefully rifles the ball home. It's 1:0.",
"visibility": "shown",
"position": "1740000"
},
{
"important": true,
"gameTime": "1 - 28:58",
"label": "",
"description": "Alex Nicolao Telles (Inter) shoots from the edge of the penalty area. The ball travels towards the right side of the target, but Nicola Leali easily deals with the threat.",
"identified": "[PLAYER_G0TATC32] ([TEAM_]) shoots from the edge of the penalty area. The ball travels towards the right side of the target, but [PLAYER_MHD6IelJ] easily deals with the threat.",
"anonymized": "[PLAYER] ([TEAM]) shoots from the edge of the penalty area. The ball travels towards the right side of the target, but [PLAYER] easily deals with the threat.",
"visibility": "shown",
"position": "1738000"
},
{
"important": false,
"gameTime": "1 - 28:10",
"label": "corner",
"description": "Adem Ljajic (Inter) takes the corner kick and sends the ball among a huddle of players inside the penalty area, but one of the defenders clears it to safety.",
"identified": "[PLAYER_hWtRCbq7] ([TEAM_]) takes the corner kick and sends the ball among a huddle of players inside the penalty area, but one of the defenders clears it to safety.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner kick and sends the ball among a huddle of players inside the penalty area, but one of the defenders clears it to safety.",
"visibility": "shown",
"position": "1690000"
},
{
"important": false,
"gameTime": "1 - 27:10",
"label": "",
"description": "Jonathan Biabiany (Inter) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. The ball goes behind for a corner. Inter will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_M1Xsnvs6] ([TEAM_]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. The ball goes behind for a corner. [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 ball goes behind for a corner. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "1630000"
},
{
"important": true,
"gameTime": "1 - 25:59",
"label": "y-card",
"description": "A yellow card for a tackle by Miranda (Inter). Marco Guida doesn't hesitate at all to make this decision.",
"identified": "A yellow card for a tackle by [PLAYER_A9IyfaRd] ([TEAM_]). [REFEREE] doesn't hesitate at all to make this decision.",
"anonymized": "A yellow card for a tackle by [PLAYER] ([TEAM]). [REFEREE] doesn't hesitate at all to make this decision.",
"visibility": "shown",
"position": "1559000"
},
{
"important": false,
"gameTime": "1 - 25:29",
"label": "",
"description": "Daniel Ciofani (Frosinone) finds himself beyond the last defender but the linesman raises his flag for offside.",
"identified": "[PLAYER_r3q21asN] ([TEAM_]) finds himself beyond the last defender but the linesman raises his flag for offside.",
"anonymized": "[PLAYER] ([TEAM]) finds himself beyond the last defender but the linesman raises his flag for offside.",
"visibility": "shown",
"position": "1529000"
},
{
"important": false,
"gameTime": "1 - 23:06",
"label": "",
"description": "Stevan Jovetic (Inter) tries to find the head of a teammate in the box but overhits the cross.",
"identified": "[PLAYER_Eq6mfXAQ] ([TEAM_]) tries to find the head of a teammate in the box but overhits the cross.",
"anonymized": "[PLAYER] ([TEAM]) tries to find the head of a teammate in the box but overhits the cross.",
"visibility": "shown",
"position": "1386000"
},
{
"important": false,
"gameTime": "1 - 20:41",
"label": "",
"description": "Danilo Soddimo (Frosinone) takes the resultant free kick from the edge of the box and tries to find one of his teammates with a cross, but the keeper climbs high and gets to it first, collecting the ball with ease.",
"identified": "[PLAYER_KU8xBpJ1] ([TEAM_]) takes the resultant free kick from the edge of the box and tries to find one of his teammates with a cross, but the keeper climbs high and gets to it first, collecting the ball with ease.",
"anonymized": "[PLAYER] ([TEAM]) takes the resultant free kick from the edge of the box and tries to find one of his teammates with a cross, but the keeper climbs high and gets to it first, collecting the ball with ease.",
"visibility": "shown",
"position": "1241000"
},
{
"important": false,
"gameTime": "1 - 20:26",
"label": "",
"description": "Geoffrey Kondogbia (Inter) commits a rough foul. Marco Guida stops the game and makes a call. A free kick is awarded to Frosinone.",
"identified": "[PLAYER_nZs03zT2] ([TEAM_]) commits a rough foul. [REFEREE] stops the game and makes a call. A free kick is awarded to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) commits a rough foul. [REFEREE] stops the game and makes a call. A free kick is awarded to [TEAM].",
"visibility": "shown",
"position": "1226000"
},
{
"important": false,
"gameTime": "1 - 19:15",
"label": "",
"description": "Yuto Nagatomo (Inter) receives a sweet pass inside the box, but his effort on goal is blocked by the defender.",
"identified": "[PLAYER_hprzBx6h] ([TEAM_]) receives a sweet pass inside the box, but his effort on goal is blocked by the defender.",
"anonymized": "[PLAYER] ([TEAM]) receives a sweet pass inside the box, but his effort on goal is blocked by the defender.",
"visibility": "shown",
"position": "1155000"
},
{
"important": false,
"gameTime": "1 - 18:25",
"label": "",
"description": "A lofted cross from Jonathan Biabiany (Inter) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area.",
"identified": "A lofted cross from [PLAYER_M1Xsnvs6] ([TEAM_]) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area.",
"anonymized": "A lofted cross from [PLAYER] ([TEAM]) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area.",
"visibility": "shown",
"position": "1105000"
},
{
"important": false,
"gameTime": "1 - 15:06",
"label": "",
"description": "Nicola Leali makes a brilliant save! Stevan Jovetic (Inter) easily weaves through the defence and unleashes a shot from just outside of the box. His effort goes towards the middle of the goal but is saved by the keeper!",
"identified": "[PLAYER_MHD6IelJ] makes a brilliant save! [PLAYER_Eq6mfXAQ] ([TEAM_]) easily weaves through the defence and unleashes a shot from just outside of the box. His effort goes towards the middle of the goal but is saved by the keeper!",
"anonymized": "[PLAYER] makes a brilliant save! [PLAYER] ([TEAM]) easily weaves through the defence and unleashes a shot from just outside of the box. His effort goes towards the middle of the goal but is saved by the keeper!",
"visibility": "shown",
"position": "906000"
},
{
"important": false,
"gameTime": "1 - 12:31",
"label": "",
"description": "Adem Ljajic passes to Geoffrey Kondogbia (Inter), but he produces a wild shot from the edge of the box which goes well wide of the left post.",
"identified": "[PLAYER_hWtRCbq7] passes to [PLAYER_nZs03zT2] ([TEAM_]), but he produces a wild shot from the edge of the box which goes well wide of the left post.",
"anonymized": "[PLAYER] passes to [PLAYER] ([TEAM]), but he produces a wild shot from the edge of the box which goes well wide of the left post.",
"visibility": "shown",
"position": "751000"
}
]
} |