File size: 53,885 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 |
{
"timestamp": "1492281900",
"score": "3 - 0",
"round": "32",
"teams": [
"Udinese",
"Napoli"
],
"lineup": {
"home": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "AkMslDtA",
"name": "Albiol R.",
"captain": "",
"detail_link": "/player/albiol-raul/AkMslDtA/",
"short_name": "Albiol",
"shirt_number": "33",
"country": "Spain",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Raul Albiol"
},
{
"hash": "hnFBS5hK",
"name": "Allan",
"captain": "",
"detail_link": "/player/allan/hnFBS5hK/",
"short_name": "Allan",
"shirt_number": "5",
"country": "Brazil",
"facts": [
{
"type": "3",
"time": "63' Allan",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "71'",
"description": "Rog M.",
"linked_player_hash": "EcdOzaBB"
}
],
"lineup": 6,
"starting": true,
"long_name": "Allan"
},
{
"hash": "GtOw2z0j",
"name": "Callejon J.",
"captain": "",
"detail_link": "/player/callejon-jose/GtOw2z0j/",
"short_name": "Callejon",
"shirt_number": "7",
"country": "Spain",
"facts": [
{
"type": "3",
"time": "72' Callejon J.",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Jose Callejon"
},
{
"hash": "AoWVYBUC",
"name": "Hamsik M.",
"captain": "(C)",
"detail_link": "/player/hamsik-marek/AoWVYBUC/",
"short_name": "Hamsik",
"shirt_number": "17",
"country": "Slovakia",
"facts": [
{
"type": "6",
"time": "79'",
"description": "Zielinski P.",
"linked_player_hash": "dlFNZSvb"
}
],
"lineup": 8,
"starting": true,
"long_name": "Marek Hamsik"
},
{
"hash": "8z6PLSII",
"name": "Hysaj E.",
"captain": "",
"detail_link": "/player/hysaj-elseid/8z6PLSII/",
"short_name": "Hysaj",
"shirt_number": "2",
"country": "Albania",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Elseid Hysaj"
},
{
"hash": "6qUE0AeN",
"name": "Insigne L.",
"captain": "",
"detail_link": "/player/insigne-lorenzo/6qUE0AeN/",
"short_name": "Insigne",
"shirt_number": "24",
"country": "Italy",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Lorenzo Insigne"
},
{
"hash": "t80QsVOt",
"name": "Jorginho",
"captain": "",
"detail_link": "/player/jorginho/t80QsVOt/",
"short_name": "Jorginho",
"shirt_number": "8",
"country": "Italy",
"facts": [
{
"type": "8",
"time": "48' Mertens D. (Jorginho)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Jorginho"
},
{
"hash": "hSKz7qT3",
"name": "Koulibaly K.",
"captain": "",
"detail_link": "/player/koulibaly-kalidou/hSKz7qT3/",
"short_name": "Koulibaly",
"shirt_number": "26",
"country": "Senegal",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Kalidou Koulibaly"
},
{
"hash": "dfIcigtg",
"name": "Mertens D.",
"captain": "",
"detail_link": "/player/mertens-dries/dfIcigtg/",
"short_name": "Mertens",
"shirt_number": "14",
"country": "Belgium",
"facts": [
{
"type": "3",
"time": "48' Mertens D. (Jorginho)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "78'",
"description": "Milik A.",
"linked_player_hash": "EskCwiLE"
}
],
"lineup": 10,
"starting": true,
"long_name": "Dries Mertens"
},
{
"hash": "KrEhnvkN",
"name": "Reina P.",
"captain": "",
"detail_link": "/player/reina-pepe/KrEhnvkN/",
"short_name": "Reina",
"shirt_number": "25",
"country": "Spain",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Pepe Reina"
},
{
"hash": "2X4zNEPc",
"name": "Strinic I.",
"captain": "",
"detail_link": "/player/strinic-ivan/2X4zNEPc/",
"short_name": "Strinic",
"shirt_number": "3",
"country": "Croatia",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Ivan Strinic"
},
{
"hash": "WEmOjj2K",
"name": "Chiriches V.",
"captain": "",
"detail_link": "/player/chiriches-vlad/WEmOjj2K/",
"short_name": "Chiriches",
"shirt_number": "21",
"country": "Romania",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Vlad Chiriches"
},
{
"hash": "2Hs3xiw6",
"name": "Diawara A.",
"captain": "",
"detail_link": "/player/diawara-amadou/2Hs3xiw6/",
"short_name": "Diawara",
"shirt_number": "42",
"country": "Guinea",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Amadou Diawara"
},
{
"hash": "x2eF9dok",
"name": "Ghoulam F.",
"captain": "",
"detail_link": "/player/ghoulam-faouzi/x2eF9dok/",
"short_name": "Ghoulam",
"shirt_number": "31",
"country": "Algeria",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Faouzi Ghoulam"
},
{
"hash": "jHmytlL2",
"name": "Giaccherini E.",
"captain": "",
"detail_link": "/player/giaccherini-emanuele/jHmytlL2/",
"short_name": "Giaccherini",
"shirt_number": "4",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Emanuele Giaccherini"
},
{
"hash": "r30L5xhf",
"name": "Maggio C.",
"captain": "",
"detail_link": "/player/maggio-cristian/r30L5xhf/",
"short_name": "Maggio",
"shirt_number": "11",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Christian Maggio"
},
{
"hash": "2q9g9abc",
"name": "Maksimovic N.",
"captain": "",
"detail_link": "/player/maksimovic-nikola/2q9g9abc/",
"short_name": "Maksimovic",
"shirt_number": "19",
"country": "Serbia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Nikola Maksimovic"
},
{
"hash": "EskCwiLE",
"name": "Milik A.",
"captain": "",
"detail_link": "/player/milik-arkadiusz/EskCwiLE/",
"short_name": "Milik",
"shirt_number": "99",
"country": "Poland",
"facts": [
{
"type": "7",
"time": "78'",
"description": "Mertens D.",
"linked_player_hash": "dfIcigtg"
}
],
"lineup": null,
"starting": false,
"long_name": "Arkadiusz Milik"
},
{
"hash": "xrQ22VYn",
"name": "Pavoletti L.",
"captain": "",
"detail_link": "/player/pavoletti-leonardo/xrQ22VYn/",
"short_name": "Pavoletti",
"shirt_number": "32",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Leonardo Pavoletti"
},
{
"hash": "KCOJxFQ2",
"name": "Rafael Cabral",
"captain": "",
"detail_link": "/player/rafael/KCOJxFQ2/",
"short_name": "Rafael Cabral",
"shirt_number": "1",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Rafael Cabral"
},
{
"hash": "EcdOzaBB",
"name": "Rog M.",
"captain": "",
"detail_link": "/player/rog-marko/EcdOzaBB/",
"short_name": "Rog",
"shirt_number": "30",
"country": "Croatia",
"facts": [
{
"type": "7",
"time": "71'",
"description": "Allan",
"linked_player_hash": "hnFBS5hK"
}
],
"lineup": null,
"starting": false,
"long_name": "Marko Rog"
},
{
"hash": "dvzcWaun",
"name": "Sepe L.",
"captain": "",
"detail_link": "/player/sepe-luigi/dvzcWaun/",
"short_name": "Sepe",
"shirt_number": "22",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Luigi Sepe"
},
{
"hash": "dlFNZSvb",
"name": "Zielinski P.",
"captain": "",
"detail_link": "/player/zielinski-piotr/dlFNZSvb/",
"short_name": "Zielinski",
"shirt_number": "20",
"country": "Poland",
"facts": [
{
"type": "7",
"time": "79'",
"description": "Hamsik M.",
"linked_player_hash": "AoWVYBUC"
}
],
"lineup": null,
"starting": false,
"long_name": "Piotr Zielinski"
}
],
"coach": [
{
"hash": "pvzTXTMR",
"name": "Sarri M.",
"captain": "",
"detail_link": "/player/sarri-maurizio/pvzTXTMR/",
"short_name": "Sarri M.",
"shirt_number": "",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Maurizio Sarri"
}
]
},
"away": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "GMGVIEbB",
"name": "Adnan A.",
"captain": "",
"detail_link": "/player/adnan-ali/GMGVIEbB/",
"short_name": "Adnan",
"shirt_number": "53",
"country": "Iraq",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Ali Adnan"
},
{
"hash": "MwDoCrIu",
"name": "Badu",
"captain": "",
"detail_link": "/player/agyemang-badu-emmanuel/MwDoCrIu/",
"short_name": "Badu",
"shirt_number": "8",
"country": "Ghana",
"facts": [
{
"type": "1",
"time": "1' Badu (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Badu"
},
{
"hash": "2aAFmtDN",
"name": "Danilo",
"captain": "(C)",
"detail_link": "/player/danilo/2aAFmtDN/",
"short_name": "Danilo",
"shirt_number": "5",
"country": "Brazil",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Danilo"
},
{
"hash": "AZ6TTjDC",
"name": "de Paul R.",
"captain": "",
"detail_link": "/player/de-paul-rodrigo/AZ6TTjDC/",
"short_name": "de Paul",
"shirt_number": "10",
"country": "Argentina",
"facts": [
{
"type": "6",
"time": "51'",
"description": "Perica S.",
"linked_player_hash": "nB68FHr5"
}
],
"lineup": 9,
"starting": true,
"long_name": "Rodrigo de Paul"
},
{
"hash": "dnGwQDBb",
"name": "Hallfredsson E.",
"captain": "",
"detail_link": "/player/hallfredsson-emil/dnGwQDBb/",
"short_name": "Hallfredsson",
"shirt_number": "23",
"country": "Iceland",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Emil Hallfredsson"
},
{
"hash": "0AcA4Esb",
"name": "Heurtaux T.",
"captain": "",
"detail_link": "/player/heurtaux-thomas/0AcA4Esb/",
"short_name": "Heurtaux",
"shirt_number": "75",
"country": "France",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Thomas Heurtaux"
},
{
"hash": "6kvbBHqr",
"name": "Jankto J.",
"captain": "",
"detail_link": "/player/jankto-jakub/6kvbBHqr/",
"short_name": "Jankto",
"shirt_number": "14",
"country": "Czech Republic",
"facts": [
{
"type": "6",
"time": "78'",
"description": "Lucas Evangelista",
"linked_player_hash": "8z6TllPE"
}
],
"lineup": 8,
"starting": true,
"long_name": "Jakub Jankto"
},
{
"hash": "KxR6qZQd",
"name": "Karnezis O.",
"captain": "",
"detail_link": "/player/karnezis-orestis/KxR6qZQd/",
"short_name": "Karnezis",
"shirt_number": "1",
"country": "Greece",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Orestis Karnezis"
},
{
"hash": "Ie7bvoaI",
"name": "Thereau C.",
"captain": "",
"detail_link": "/player/thereau-cyril/Ie7bvoaI/",
"short_name": "Thereau",
"shirt_number": "77",
"country": "France",
"facts": [
{
"type": "6",
"time": "70'",
"description": "Matos",
"linked_player_hash": "CrkNFmUL"
}
],
"lineup": 11,
"starting": true,
"long_name": "Cyril Thereau"
},
{
"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": "v7zQxVoD",
"name": "Zapata D.",
"captain": "",
"detail_link": "/player/zapata-duvan/v7zQxVoD/",
"short_name": "Zapata",
"shirt_number": "9",
"country": "Colombia",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Duvan Zapata"
},
{
"hash": "0OPG7uS0",
"name": "Balic A.",
"captain": "",
"detail_link": "/player/balic-andrija/0OPG7uS0/",
"short_name": "Balic",
"shirt_number": "99",
"country": "Croatia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Andrija Balic"
},
{
"hash": "OKq1UmQM",
"name": "Ewandro",
"captain": "",
"detail_link": "/player/ewandro/OKq1UmQM/",
"short_name": "Ewandro",
"shirt_number": "96",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ewandro"
},
{
"hash": "MHqM9F24",
"name": "Felipe",
"captain": "",
"detail_link": "/player/felipe/MHqM9F24/",
"short_name": "Felipe",
"shirt_number": "30",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Felipe"
},
{
"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": "8z6TllPE",
"name": "Lucas Evangelista",
"captain": "",
"detail_link": "/player/evangelista-lucas/8z6TllPE/",
"short_name": "Lucas Evangelista",
"shirt_number": "95",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "78'",
"description": "Jankto J.",
"linked_player_hash": "6kvbBHqr"
}
],
"lineup": null,
"starting": false,
"long_name": "Lucas Evangelista"
},
{
"hash": "CrkNFmUL",
"name": "Matos",
"captain": "",
"detail_link": "/player/matos/CrkNFmUL/",
"short_name": "Matos",
"shirt_number": "19",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "70'",
"description": "Thereau C.",
"linked_player_hash": "Ie7bvoaI"
}
],
"lineup": null,
"starting": false,
"long_name": "Matos"
},
{
"hash": "nB68FHr5",
"name": "Perica S.",
"captain": "",
"detail_link": "/player/perica-stipe/nB68FHr5/",
"short_name": "Perica",
"shirt_number": "18",
"country": "Croatia",
"facts": [
{
"type": "7",
"time": "51'",
"description": "de Paul R.",
"linked_player_hash": "AZ6TTjDC"
}
],
"lineup": null,
"starting": false,
"long_name": "Stipe Perica"
},
{
"hash": "6HUZxS6p",
"name": "Perisan S.",
"captain": "",
"detail_link": "/player/perisan-samuele/6HUZxS6p/",
"short_name": "Perisan",
"shirt_number": "25",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Samuele Perisan"
},
{
"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"
}
],
"coach": [
{
"hash": "YiUukSDd",
"name": "Delneri L.",
"captain": "",
"detail_link": "/player/delneri-luigi/YiUukSDd/",
"short_name": "Delneri L.",
"shirt_number": "",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Luigi Delneri"
}
]
}
},
"referee": [
"Massa D."
],
"venue": [
"Stadio Diego Armando Maradona (Naples)"
],
"attendance": [
"38 764"
],
"referee_matched": [
"Davide Massa"
],
"referee_found": [
"Davide Massa"
],
"coach_matched": [
"Maurizio Sarri",
"Luigi Delneri"
],
"gameHomeTeam": "Napoli",
"home": {
"name": "Napoli",
"detail_link": "/team/napoli/69Dxbc61",
"hash": "69Dxbc61",
"names": [
"Napoli",
"Napoli (Ita)",
"napoli"
]
},
"gameAwayTeam": "Udinese",
"away": {
"name": "Udinese",
"detail_link": "/team/udinese/rXw8YKDE",
"hash": "rXw8YKDE",
"names": [
"Udinese",
"udinese"
]
},
"gameDate": "15/04/2017 - 20:45",
"annotations": [
{
"important": true,
"gameTime": "2 - 47:04",
"label": "whistle",
"description": "Davide Massa is looking at his watch and immediately ends this match.",
"identified": "[REFEREE] is looking at his watch and immediately ends this match.",
"anonymized": "[REFEREE] is looking at his watch and immediately ends this match.",
"visibility": "shown",
"position": "2824000"
},
{
"important": false,
"gameTime": "2 - 46:52",
"label": "corner",
"description": "The corner kick from is headed out of the penalty area by one of the defenders.",
"identified": "The corner kick from is headed out of the penalty area by one of the defenders.",
"anonymized": "The corner kick from is headed out of the penalty area by one of the defenders.",
"visibility": "shown",
"position": "2812000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "We will have 2 min. of added time.",
"identified": "We will have 2 min. of added time.",
"anonymized": "We will have 2 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 42:48",
"label": "corner",
"description": "Jose Callejon (Napoli) takes the corner but it's cleared.",
"identified": "[PLAYER_GtOw2z0j] ([TEAM_]) takes the corner but it's cleared.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but it's cleared.",
"visibility": "shown",
"position": "2568000"
},
{
"important": false,
"gameTime": "2 - 41:06",
"label": "corner",
"description": "This corner kick is taken with a short pass by Jose Callejon (Napoli).",
"identified": "This corner kick is taken with a short pass by [PLAYER_GtOw2z0j] ([TEAM_]).",
"anonymized": "This corner kick is taken with a short pass by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2466000"
},
{
"important": false,
"gameTime": "2 - 35:58",
"label": "corner",
"description": "Jose Callejon (Napoli) steps up to take the corner, but the ball just sails in among the defenders.",
"identified": "[PLAYER_GtOw2z0j] ([TEAM_]) steps up to take the corner, but the ball just sails in among the defenders.",
"anonymized": "[PLAYER] ([TEAM]) steps up to take the corner, but the ball just sails in among the defenders.",
"visibility": "shown",
"position": "2158000"
},
{
"important": true,
"gameTime": "2 - 33:21",
"label": "substitution",
"description": "Substitution. Piotr Zielinski (Napoli) on for Marek Hamsik.",
"identified": "Substitution. [PLAYER_dlFNZSvb] ([TEAM_]) on for [PLAYER_AoWVYBUC].",
"anonymized": "Substitution. [PLAYER] ([TEAM]) on for [PLAYER].",
"visibility": "shown",
"position": "2001000"
},
{
"important": true,
"gameTime": "2 - 33:00",
"label": "substitution",
"description": "Luigi Delneri has decided to introduce fresh legs, with Lucas Evangelista (Udinese) replacing Jakub Jankto.",
"identified": "[COACH_YiUukSDd] has decided to introduce fresh legs, with [PLAYER_8z6TllPE] ([TEAM_]) replacing [PLAYER_6kvbBHqr].",
"anonymized": "[COACH] has decided to introduce fresh legs, with [PLAYER] ([TEAM]) replacing [PLAYER].",
"visibility": "shown",
"position": "1980000"
},
{
"important": true,
"gameTime": "2 - 32:35",
"label": "substitution",
"description": "Substitution. Arkadiusz Milik (Napoli) replaces Dries Mertens.",
"identified": "Substitution. [PLAYER_EskCwiLE] ([TEAM_]) replaces [PLAYER_dfIcigtg].",
"anonymized": "Substitution. [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "1955000"
},
{
"important": true,
"gameTime": "2 - 26:50",
"label": "soccer-ball",
"description": "After a goalmouth scramble the ball rebounds out to Jose Callejon (Napoli) who buries it from close range into the left side of the goal.",
"identified": "After a goalmouth scramble the ball rebounds out to [PLAYER_GtOw2z0j] ([TEAM_]) who buries it from close range into the left side of the goal.",
"anonymized": "After a goalmouth scramble the ball rebounds out to [PLAYER] ([TEAM]) who buries it from close range into the left side of the goal.",
"visibility": "shown",
"position": "1610000"
},
{
"important": false,
"gameTime": "2 - 26:49",
"label": "",
"description": "Dries Mertens (Napoli) finds himself free inside the box and pulls the trigger, but his effort is brilliantly stopped by one of the defending players.",
"identified": "[PLAYER_dfIcigtg] ([TEAM_]) finds himself free inside the box and pulls the trigger, but his effort is brilliantly stopped by one of the defending players.",
"anonymized": "[PLAYER] ([TEAM]) finds himself free inside the box and pulls the trigger, but his effort is brilliantly stopped by one of the defending players.",
"visibility": "shown",
"position": "1609000"
},
{
"important": true,
"gameTime": "2 - 25:39",
"label": "substitution",
"description": "Maurizio Sarri prepares a substitution. Allan is replaced by Marko Rog (Napoli).",
"identified": "[COACH_pvzTXTMR] prepares a substitution. [PLAYER_hnFBS5hK] is replaced by [PLAYER_EcdOzaBB] ([TEAM_]).",
"anonymized": "[COACH] prepares a substitution. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1539000"
},
{
"important": true,
"gameTime": "2 - 24:49",
"label": "substitution",
"description": "Substitution. Cyril Thereau (Udinese) did his best and is replaced by .",
"identified": "Substitution. [PLAYER_Ie7bvoaI] ([TEAM_]) did his best and is replaced by .",
"anonymized": "Substitution. [PLAYER] ([TEAM]) did his best and is replaced by .",
"visibility": "shown",
"position": "1489000"
},
{
"important": false,
"gameTime": "2 - 21:26",
"label": "",
"description": "Emil Hallfredsson (Udinese) sends an accurate pass to Stipe Perica, who controls the ball with a fine first touch.",
"identified": "[PLAYER_dnGwQDBb] ([TEAM_]) sends an accurate pass to [PLAYER_nB68FHr5], who controls the ball with a fine first touch.",
"anonymized": "[PLAYER] ([TEAM]) sends an accurate pass to [PLAYER], who controls the ball with a fine first touch.",
"visibility": "shown",
"position": "1286000"
},
{
"important": true,
"gameTime": "2 - 17:34",
"label": "soccer-ball",
"description": "GOAL! Allan (Napoli) gets to the ball on the edge of the box after a huge mistake by an opponent and slams it into the back of the net. He makes it 2:0.",
"identified": "GOAL! [PLAYER_hnFBS5hK] ([TEAM_]) gets to the ball on the edge of the box after a huge mistake by an opponent and slams it into the back of the net. He makes it 2:0.",
"anonymized": "GOAL! [PLAYER] ([TEAM]) gets to the ball on the edge of the box after a huge mistake by an opponent and slams it into the back of the net. He makes it 2:0.",
"visibility": "shown",
"position": "1054000"
},
{
"important": true,
"gameTime": "2 - 16:45",
"label": "",
"description": "Duvan Zapata (Udinese) had a good opportunity when he latched on to a cross from the wing, but his header from the six-yard box wasn't accurate enough and the ball glanced away off the left post!",
"identified": "[PLAYER_v7zQxVoD] ([TEAM_]) had a good opportunity when he latched on to a cross from the wing, but his header from the six-yard box wasn't accurate enough and the ball glanced away off the left post!",
"anonymized": "[PLAYER] ([TEAM]) had a good opportunity when he latched on to a cross from the wing, but his header from the six-yard box wasn't accurate enough and the ball glanced away off the left post!",
"visibility": "shown",
"position": "1005000"
},
{
"important": false,
"gameTime": "2 - 14:32",
"label": "",
"description": "Marek Hamsik (Napoli) latches on to an accurate pass on the edge of the box and immediately unleashes a shot which is wide of the mark.",
"identified": "[PLAYER_AoWVYBUC] ([TEAM_]) latches on to an accurate pass on the edge of the box and immediately unleashes a shot which is wide of the mark.",
"anonymized": "[PLAYER] ([TEAM]) latches on to an accurate pass on the edge of the box and immediately unleashes a shot which is wide of the mark.",
"visibility": "shown",
"position": "872000"
},
{
"important": false,
"gameTime": "2 - 14:13",
"label": "funfact",
"description": "15:2 \u2013 the corner kicks stats.",
"identified": "15:2 \u2013 the corner kicks stats.",
"anonymized": "15:2 \u2013 the corner kicks stats.",
"visibility": "shown",
"position": "853000"
},
{
"important": false,
"gameTime": "2 - 07:21",
"label": "corner",
"description": "Jose Callejon (Napoli) takes the corner with a short pass.",
"identified": "[PLAYER_GtOw2z0j] ([TEAM_]) takes the corner with a short pass.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner with a short pass.",
"visibility": "shown",
"position": "441000"
},
{
"important": false,
"gameTime": "2 - 07:06",
"label": "corner",
"description": "Jose Callejon (Napoli) 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. The ball goes out of play. Napoli are awarded a corner kick.",
"identified": "[PLAYER_GtOw2z0j] ([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. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"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. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "426000"
},
{
"important": true,
"gameTime": "2 - 05:39",
"label": "substitution",
"description": "The substitution has been made. Stipe Perica (Udinese) has replaced Rodrigo De Paul.",
"identified": "The substitution has been made. [PLAYER_nB68FHr5] ([TEAM_]) has replaced [PLAYER_AZ6TTjDC].",
"anonymized": "The substitution has been made. [PLAYER] ([TEAM]) has replaced [PLAYER].",
"visibility": "shown",
"position": "339000"
},
{
"important": true,
"gameTime": "2 - 02:31",
"label": "soccer-ball",
"description": "It's 1:0! Jorginho feeds Dries Mertens (Napoli) inside the box, who is unmarked and buries the ball in the right side of the net.",
"identified": "It's 1:0! [PLAYER_t80QsVOt] feeds [PLAYER_dfIcigtg] ([TEAM_]) inside the box, who is unmarked and buries the ball in the right side of the net.",
"anonymized": "It's 1:0! [PLAYER] feeds [PLAYER] ([TEAM]) inside the box, who is unmarked and buries the ball in the right side of the net.",
"visibility": "shown",
"position": "151000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"identified": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"anonymized": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"visibility": "shown",
"position": "1000"
},
{
"important": true,
"gameTime": "1 - 45:59",
"label": "whistle",
"description": "Davide Massa has ended the first half by blowing the whistle.",
"identified": "[REFEREE] has ended the first half by blowing the whistle.",
"anonymized": "[REFEREE] has ended the first half by blowing the whistle.",
"visibility": "shown",
"position": "2759000"
},
{
"important": false,
"gameTime": "1 - 45:14",
"label": "corner",
"description": "Jose Callejon (Napoli) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"identified": "[PLAYER_GtOw2z0j] ([TEAM_]) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"anonymized": "[PLAYER] ([TEAM]) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"visibility": "shown",
"position": "2714000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "Fourth official shows 1 min. of added time.",
"identified": "Fourth official shows 1 min. of added time.",
"anonymized": "Fourth official shows 1 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 43:43",
"label": "corner",
"description": "Jose Callejon (Napoli) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger.",
"identified": "[PLAYER_GtOw2z0j] ([TEAM_]) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger.",
"anonymized": "[PLAYER] ([TEAM]) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger.",
"visibility": "shown",
"position": "2623000"
},
{
"important": false,
"gameTime": "1 - 37:37",
"label": "",
"description": "Jose Callejon (Napoli) fails to beat the offside trap and the linesman puts his flag up.",
"identified": "[PLAYER_GtOw2z0j] ([TEAM_]) fails to beat the offside trap and the linesman puts his flag up.",
"anonymized": "[PLAYER] ([TEAM]) fails to beat the offside trap and the linesman puts his flag up.",
"visibility": "shown",
"position": "2257000"
},
{
"important": false,
"gameTime": "1 - 36:28",
"label": "corner",
"description": "Ivan Strinic (Napoli) takes the corner kick, but Orestis Karnezis reads it well and stops the effort.",
"identified": "[PLAYER_2X4zNEPc] ([TEAM_]) takes the corner kick, but [PLAYER_KxR6qZQd] reads it well and stops the effort.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner kick, but [PLAYER] reads it well and stops the effort.",
"visibility": "shown",
"position": "2188000"
},
{
"important": false,
"gameTime": "1 - 35:52",
"label": "",
"description": "Elseid Hysaj (Napoli) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball goes out of play and Napoli have been awarded a corner kick.",
"identified": "[PLAYER_8z6PLSII] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball goes out of play and [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball goes out of play and [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "2152000"
},
{
"important": false,
"gameTime": "1 - 34:37",
"label": "corner",
"description": "Ivan Strinic (Napoli) works the corner short.",
"identified": "[PLAYER_2X4zNEPc] ([TEAM_]) works the corner short.",
"anonymized": "[PLAYER] ([TEAM]) works the corner short.",
"visibility": "shown",
"position": "2077000"
},
{
"important": false,
"gameTime": "1 - 32:38",
"label": "funfact",
"description": "70:30 \u2013 the ratio of ball possession.",
"identified": "70:30 \u2013 the ratio of ball possession.",
"anonymized": "70:30 \u2013 the ratio of ball possession.",
"visibility": "shown",
"position": "1958000"
},
{
"important": false,
"gameTime": "1 - 30:16",
"label": "corner",
"description": "A horde of players are waiting inside the penalty area for a cross from the corner, but Ivan Strinic (Napoli) takes it short.",
"identified": "A horde of players are waiting inside the penalty area for a cross from the corner, but [PLAYER_2X4zNEPc] ([TEAM_]) takes it short.",
"anonymized": "A horde of players are waiting inside the penalty area for a cross from the corner, but [PLAYER] ([TEAM]) takes it short.",
"visibility": "shown",
"position": "1816000"
},
{
"important": false,
"gameTime": "1 - 30:00",
"label": "",
"description": "Dries Mertens (Napoli) sends a cross into the box, but the opposition's defence clears the ball away to eliminate the danger. The ball is out of play and the linesman points at the corner flag. Corner to Napoli.",
"identified": "[PLAYER_dfIcigtg] ([TEAM_]) sends a cross into the box, but the opposition's defence clears the ball away to eliminate the danger. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence clears the ball away to eliminate the danger. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM].",
"visibility": "shown",
"position": "1800000"
},
{
"important": false,
"gameTime": "1 - 29:36",
"label": "corner",
"description": "Ivan Strinic (Napoli) takes a short corner kick.",
"identified": "[PLAYER_2X4zNEPc] ([TEAM_]) takes a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) takes a short corner kick.",
"visibility": "shown",
"position": "1776000"
},
{
"important": false,
"gameTime": "1 - 27:59",
"label": "corner",
"description": "Ivan Strinic (Napoli) swings in the corner, but it's comfortably cleared away.",
"identified": "[PLAYER_2X4zNEPc] ([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": "1679000"
},
{
"important": false,
"gameTime": "1 - 27:39",
"label": "",
"description": "Dries Mertens (Napoli) looks to break free, but an opposing player clears the ball away. Napoli earn a corner.",
"identified": "[PLAYER_dfIcigtg] ([TEAM_]) looks to break free, but an opposing player clears the ball away. [TEAM_] earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away. [TEAM] earn a corner.",
"visibility": "shown",
"position": "1659000"
},
{
"important": false,
"gameTime": "1 - 27:00",
"label": "corner",
"description": "Ivan Strinic (Napoli) will try to find the head of one of his teammates from a corner kick.",
"identified": "[PLAYER_2X4zNEPc] ([TEAM_]) will try to find the head of one of his teammates from a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will try to find the head of one of his teammates from a corner kick.",
"visibility": "shown",
"position": "1620000"
},
{
"important": false,
"gameTime": "1 - 24:56",
"label": "corner",
"description": "Rodrigo De Paul (Udinese) launches the ball from the resulting corner, but one of the defenders is first to the ball and deals with the threat.",
"identified": "[PLAYER_AZ6TTjDC] ([TEAM_]) launches the ball from the resulting corner, but one of the defenders is first to the ball and deals with the threat.",
"anonymized": "[PLAYER] ([TEAM]) launches the ball from the resulting corner, but one of the defenders is first to the ball and deals with the threat.",
"visibility": "shown",
"position": "1496000"
},
{
"important": false,
"gameTime": "1 - 22:10",
"label": "corner",
"description": "Ivan Strinic (Napoli) takes the corner, but the opposition's defence is ready and clears the ball to safety.",
"identified": "[PLAYER_2X4zNEPc] ([TEAM_]) takes the corner, but the opposition's defence is ready and clears the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner, but the opposition's defence is ready and clears the ball to safety.",
"visibility": "shown",
"position": "1330000"
},
{
"important": false,
"gameTime": "1 - 21:07",
"label": "",
"description": "Dries Mertens (Napoli) plays a through ball which would have led to a great opportunity, if it hadn't been stopped by the defence.",
"identified": "[PLAYER_dfIcigtg] ([TEAM_]) plays a through ball which would have led to a great opportunity, if it hadn't been stopped by the defence.",
"anonymized": "[PLAYER] ([TEAM]) plays a through ball which would have led to a great opportunity, if it hadn't been stopped by the defence.",
"visibility": "shown",
"position": "1267000"
},
{
"important": false,
"gameTime": "1 - 15:33",
"label": "",
"description": "Marek Hamsik (Napoli) slides a pass forward, but one of the defenders cuts it out.",
"identified": "[PLAYER_AoWVYBUC] ([TEAM_]) slides a pass forward, but one of the defenders cuts it out.",
"anonymized": "[PLAYER] ([TEAM]) slides a pass forward, but one of the defenders cuts it out.",
"visibility": "shown",
"position": "933000"
},
{
"important": false,
"gameTime": "1 - 11:28",
"label": "corner",
"description": "The corner from Ivan Strinic (Napoli) is cleared away by the defence.",
"identified": "The corner from [PLAYER_2X4zNEPc] ([TEAM_]) is cleared away by the defence.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is cleared away by the defence.",
"visibility": "shown",
"position": "688000"
}
]
} |