File size: 88,997 Bytes
da6403b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 |
{
"timestamp": "1476531000",
"score": "3 - 0",
"round": "8",
"teams": [
"Chelsea",
"Leicester"
],
"lineup": {
"home": {
"tactic": "1-3-4-3",
"players": [
{
"hash": "MLHPrlrj",
"name": "Alonso M.",
"captain": "",
"detail_link": "/player/alonso-marcos/MLHPrlrj/",
"short_name": "Alonso",
"shirt_number": "3",
"country": "Spain",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Marcos Alonso"
},
{
"hash": "CMGUADgt",
"name": "Azpilicueta C.",
"captain": "",
"detail_link": "/player/azpilicueta-cesar/CMGUADgt/",
"short_name": "Azpilicueta",
"shirt_number": "28",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "51' Azpilicueta C. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Cesar Azpilicueta"
},
{
"hash": "pKpkgR1U",
"name": "Cahill G.",
"captain": "(C)",
"detail_link": "/player/cahill-gary/pKpkgR1U/",
"short_name": "Cahill",
"shirt_number": "24",
"country": "England",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Gary Cahill"
},
{
"hash": "vBw5nir8",
"name": "Costa D.",
"captain": "",
"detail_link": "/player/costa-diego/vBw5nir8/",
"short_name": "Costa",
"shirt_number": "19",
"country": "Spain",
"facts": [
{
"type": "3",
"time": "7' Costa D. (Matic N.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Diego Costa"
},
{
"hash": "MVExOq3n",
"name": "Courtois T.",
"captain": "",
"detail_link": "/player/courtois-thibaut/MVExOq3n/",
"short_name": "Courtois",
"shirt_number": "13",
"country": "Belgium",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Thibaut Courtois"
},
{
"hash": "G04qmSno",
"name": "David Luiz",
"captain": "",
"detail_link": "/player/luiz-david/G04qmSno/",
"short_name": "David Luiz",
"shirt_number": "30",
"country": "Brazil",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "David Luiz"
},
{
"hash": "QH2of5sJ",
"name": "Hazard E.",
"captain": "",
"detail_link": "/player/hazard-eden/QH2of5sJ/",
"short_name": "Hazard",
"shirt_number": "10",
"country": "Belgium",
"facts": [
{
"type": "3",
"time": "33' Hazard E. (Pedro)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "82'",
"description": "Loftus-Cheek R.",
"linked_player_hash": "6DpURWF8"
}
],
"lineup": 11,
"starting": true,
"long_name": "Eden Hazard"
},
{
"hash": "IkmsHsOR",
"name": "Kante N.",
"captain": "",
"detail_link": "/player/kante-n-golo/IkmsHsOR/",
"short_name": "Kante",
"shirt_number": "7",
"country": "France",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "N'Golo Kante"
},
{
"hash": "Kty10JVG",
"name": "Matic N.",
"captain": "",
"detail_link": "/player/matic-nemanja/Kty10JVG/",
"short_name": "Matic",
"shirt_number": "21",
"country": "Serbia",
"facts": [
{
"type": "8",
"time": "7' Costa D. (Matic N.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Nemanja Matic"
},
{
"hash": "W2HIQPkG",
"name": "Moses V.",
"captain": "",
"detail_link": "/player/moses-victor/W2HIQPkG/",
"short_name": "Moses",
"shirt_number": "15",
"country": "Nigeria",
"facts": [
{
"type": "3",
"time": "80' Moses V. (Chalobah N.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "82'",
"description": "Aina O.",
"linked_player_hash": "O28OebFA"
}
],
"lineup": 5,
"starting": true,
"long_name": "Victor Moses"
},
{
"hash": "0f1tMqQl",
"name": "Pedro",
"captain": "",
"detail_link": "/player/pedro/0f1tMqQl/",
"short_name": "Pedro",
"shirt_number": "11",
"country": "Spain",
"facts": [
{
"type": "8",
"time": "33' Hazard E. (Pedro)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "68'",
"description": "Chalobah N.",
"linked_player_hash": "jcJCKFEm"
}
],
"lineup": 9,
"starting": true,
"long_name": "Pedro"
},
{
"hash": "O28OebFA",
"name": "Aina O.",
"captain": "",
"detail_link": "/player/aina-ola/O28OebFA/",
"short_name": "Aina",
"shirt_number": "34",
"country": "Nigeria",
"facts": [
{
"type": "7",
"time": "82'",
"description": "Moses V.",
"linked_player_hash": "W2HIQPkG"
}
],
"lineup": null,
"starting": false,
"long_name": "Ola Aina"
},
{
"hash": "CKyKL1ff",
"name": "Batshuayi M.",
"captain": "",
"detail_link": "/player/batshuayi-michy/CKyKL1ff/",
"short_name": "Batshuayi",
"shirt_number": "23",
"country": "Belgium",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Michy Batshuayi"
},
{
"hash": "xO2Ce0IG",
"name": "Begovic A.",
"captain": "",
"detail_link": "/player/begovic-asmir/xO2Ce0IG/",
"short_name": "Begovic",
"shirt_number": "1",
"country": "Bosnia and Herzegovina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Asmir Begovic"
},
{
"hash": "jcJCKFEm",
"name": "Chalobah N.",
"captain": "",
"detail_link": "/player/chalobah-nathaniel/jcJCKFEm/",
"short_name": "Chalobah",
"shirt_number": "29",
"country": "England",
"facts": [
{
"type": "7",
"time": "68'",
"description": "Pedro",
"linked_player_hash": "0f1tMqQl"
},
{
"type": "8",
"time": "80' Moses V. (Chalobah N.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Nathaniel Chalobah"
},
{
"hash": "6DpURWF8",
"name": "Loftus-Cheek R.",
"captain": "",
"detail_link": "/player/loftus-cheek-ruben/6DpURWF8/",
"short_name": "Loftus-Cheek",
"shirt_number": "14",
"country": "England",
"facts": [
{
"type": "7",
"time": "82'",
"description": "Hazard E.",
"linked_player_hash": "QH2of5sJ"
}
],
"lineup": null,
"starting": false,
"long_name": "Ruben Loftus-Cheek"
},
{
"hash": "OrADwZse",
"name": "Solanke D.",
"captain": "",
"detail_link": "/player/solanke-dominic/OrADwZse/",
"short_name": "Solanke",
"shirt_number": "41",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Dominic Solanke"
},
{
"hash": "0AovoI68",
"name": "Terry J.",
"captain": "",
"detail_link": "/player/terry-john/0AovoI68/",
"short_name": "Terry",
"shirt_number": "26",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "John Terry"
}
],
"coach": [
{
"hash": "23vSAc12",
"name": "Conte A.",
"captain": "",
"detail_link": "/player/conte-antonio/23vSAc12/",
"short_name": "Conte A.",
"shirt_number": "",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Antonio Conte"
}
]
},
"away": {
"tactic": "1-4-4-2",
"players": [
{
"hash": "fLz0nwDI",
"name": "Albrighton M.",
"captain": "",
"detail_link": "/player/albrighton-marc/fLz0nwDI/",
"short_name": "Albrighton",
"shirt_number": "11",
"country": "England",
"facts": [
{
"type": "6",
"time": "74'",
"description": "King A.",
"linked_player_hash": "K4XlvQFq"
}
],
"lineup": 9,
"starting": true,
"long_name": "Marc Albrighton"
},
{
"hash": "pAWZAt4F",
"name": "Amartey D.",
"captain": "",
"detail_link": "/player/amartey-daniel/pAWZAt4F/",
"short_name": "Amartey",
"shirt_number": "13",
"country": "Ghana",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Daniel Amartey"
},
{
"hash": "0fL2Mgvj",
"name": "Drinkwater D.",
"captain": "",
"detail_link": "/player/drinkwater-daniel/0fL2Mgvj/",
"short_name": "Drinkwater",
"shirt_number": "4",
"country": "England",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Daniel Drinkwater"
},
{
"hash": "C6EATqht",
"name": "Fuchs Ch.",
"captain": "",
"detail_link": "/player/fuchs-christian/C6EATqht/",
"short_name": "Fuchs",
"shirt_number": "28",
"country": "Austria",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Christian Fuchs"
},
{
"hash": "6HSsexVf",
"name": "Hernandez L.",
"captain": "",
"detail_link": "/player/hernandez-luis/6HSsexVf/",
"short_name": "Hernandez",
"shirt_number": "2",
"country": "Spain",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Luis Hernandez"
},
{
"hash": "I90mNtHF",
"name": "Huth R.",
"captain": "",
"detail_link": "/player/huth-robert/I90mNtHF/",
"short_name": "Huth",
"shirt_number": "6",
"country": "Germany",
"facts": [
{
"type": "1",
"time": "27' Huth R. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Robert Huth"
},
{
"hash": "ngOpNsxb",
"name": "Morgan W.",
"captain": "(C)",
"detail_link": "/player/morgan-wes/ngOpNsxb/",
"short_name": "Morgan",
"shirt_number": "5",
"country": "Jamaica",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Wes Morgan"
},
{
"hash": "tnCLpeMQ",
"name": "Musa A.",
"captain": "",
"detail_link": "/player/musa-ahmed/tnCLpeMQ/",
"short_name": "Musa",
"shirt_number": "7",
"country": "Nigeria",
"facts": [
{
"type": "6",
"time": "67'",
"description": "Slimani I.",
"linked_player_hash": "IB6p5STt"
}
],
"lineup": 10,
"starting": true,
"long_name": "Ahmed Musa"
},
{
"hash": "QRDZkPSt",
"name": "Schlupp J.",
"captain": "",
"detail_link": "/player/schlupp-jeffery/QRDZkPSt/",
"short_name": "Schlupp",
"shirt_number": "15",
"country": "Ghana",
"facts": [
{
"type": "6",
"time": "67'",
"description": "Mahrez R.",
"linked_player_hash": "AkzHA2kB"
}
],
"lineup": 6,
"starting": true,
"long_name": "Jeffrey Schlupp"
},
{
"hash": "WM5fllIl",
"name": "Schmeichel K.",
"captain": "",
"detail_link": "/player/schmeichel-kasper/WM5fllIl/",
"short_name": "Schmeichel",
"shirt_number": "1",
"country": "Denmark",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Kasper Schmeichel"
},
{
"hash": "fP3OohgD",
"name": "Vardy J.",
"captain": "",
"detail_link": "/player/vardy-jamie/fP3OohgD/",
"short_name": "Vardy",
"shirt_number": "9",
"country": "England",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Jamie Vardy"
},
{
"hash": "AF2iqxB6",
"name": "Gray D.",
"captain": "",
"detail_link": "/player/gray-demarai/AF2iqxB6/",
"short_name": "Gray",
"shirt_number": "22",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Demarai Gray"
},
{
"hash": "K4XlvQFq",
"name": "King A.",
"captain": "",
"detail_link": "/player/king-andy/K4XlvQFq/",
"short_name": "King",
"shirt_number": "10",
"country": "Wales",
"facts": [
{
"type": "7",
"time": "74'",
"description": "Albrighton M.",
"linked_player_hash": "fLz0nwDI"
}
],
"lineup": null,
"starting": false,
"long_name": "Andy King"
},
{
"hash": "AkzHA2kB",
"name": "Mahrez R.",
"captain": "",
"detail_link": "/player/mahrez-riyad/AkzHA2kB/",
"short_name": "Mahrez",
"shirt_number": "26",
"country": "Algeria",
"facts": [
{
"type": "7",
"time": "67'",
"description": "Schlupp J.",
"linked_player_hash": "QRDZkPSt"
}
],
"lineup": null,
"starting": false,
"long_name": "Riyad Mahrez"
},
{
"hash": "IHI1bGoM",
"name": "Simpson D.",
"captain": "",
"detail_link": "/player/simpson-danny/IHI1bGoM/",
"short_name": "Simpson",
"shirt_number": "17",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Danny Simpson"
},
{
"hash": "IB6p5STt",
"name": "Slimani I.",
"captain": "",
"detail_link": "/player/slimani-islam/IB6p5STt/",
"short_name": "Slimani",
"shirt_number": "19",
"country": "Algeria",
"facts": [
{
"type": "7",
"time": "67'",
"description": "Musa A.",
"linked_player_hash": "tnCLpeMQ"
}
],
"lineup": null,
"starting": false,
"long_name": "Islam Slimani"
},
{
"hash": "KbQi9AJj",
"name": "Ulloa L.",
"captain": "",
"detail_link": "/player/ulloa-leonardo/KbQi9AJj/",
"short_name": "Ulloa",
"shirt_number": "23",
"country": "Argentina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Leonardo Ulloa"
},
{
"hash": "pGbfkpdp",
"name": "Zieler R.",
"captain": "",
"detail_link": "/player/zieler-ron-robert/pGbfkpdp/",
"short_name": "Zieler",
"shirt_number": "21",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ron-Robert Zieler"
}
],
"coach": [
{
"hash": "zFLwLRZS",
"name": "Ranieri C.",
"captain": "",
"detail_link": "/player/ranieri-claudio/zFLwLRZS/",
"short_name": "Ranieri C.",
"shirt_number": "",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Claudio Ranieri"
}
]
}
},
"referee": [
"Marriner A."
],
"venue": [
"Stamford Bridge (London)"
],
"attendance": [
"41 547"
],
"referee_matched": [
"Andre Marriner"
],
"referee_found": [
"Andre Marriner"
],
"coach_matched": [
"Claudio Ranieri",
"Antonio Conte"
],
"gameHomeTeam": "Chelsea",
"home": {
"name": "Chelsea",
"detail_link": "/team/chelsea/4fGZN2oK",
"hash": "4fGZN2oK",
"names": [
"Chelsea",
"chelsea"
]
},
"gameAwayTeam": "Leicester",
"away": {
"name": "Leicester",
"detail_link": "/team/leicester/KrrdAMyI",
"hash": "KrrdAMyI",
"names": [
"Leicester",
"leicester"
]
},
"gameDate": "15/10/2016 - 13:30",
"annotations": [
{
"important": false,
"gameTime": "2 - 48:59",
"gt_gameTime": "",
"label": "",
"description": "This hugely entertaining encounter was a wonderful experience for every football lover to behold. The players did their utmost to make the game very enjoyable. Chelsea were better today and displayed masterful control and movement. The tactic of the home side was slow build-up play and the away side was creating their opportunities using lightning-fast counter-attacks.",
"identified": "This hugely entertaining encounter was a wonderful experience for every football lover to behold. The players did their utmost to make the game very enjoyable. [TEAM_] were better today and displayed masterful control and movement. The tactic of the home side was slow build-up play and the away side was creating their opportunities using lightning-fast counter-attacks.",
"anonymized": "This hugely entertaining encounter was a wonderful experience for every football lover to behold. The players did their utmost to make the game very enjoyable. [TEAM] were better today and displayed masterful control and movement. The tactic of the home side was slow build-up play and the away side was creating their opportunities using lightning-fast counter-attacks.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "2 - 48:02",
"gt_gameTime": "",
"label": "whistle",
"description": "That's it for today, Andre Marriner has blown his whistle and the game is over.",
"identified": "That's it for today, [REFEREE] has blown his whistle and the game is over.",
"anonymized": "That's it for today, [REFEREE] has blown his whistle and the game is over.",
"visibility": "shown",
"position": "2882000"
},
{
"important": false,
"gameTime": "2 - 46:30",
"gt_gameTime": "",
"label": "",
"description": "Riyad Mahrez (Leicester) tries to take the opposition by surprise with a quick free kick into the box.",
"identified": "[PLAYER_AkzHA2kB] ([TEAM_]) tries to take the opposition by surprise with a quick free kick into the box.",
"anonymized": "[PLAYER] ([TEAM]) tries to take the opposition by surprise with a quick free kick into the box.",
"visibility": "shown",
"position": "2790000"
},
{
"important": false,
"gameTime": "2 - 46:20",
"gt_gameTime": "",
"label": "",
"description": "Marcos Alonso (Chelsea) is penalised for holding. Andre Marriner signals a set piece. Leicester have a free kick.",
"identified": "[PLAYER_MLHPrlrj] ([TEAM_]) is penalised for holding. [REFEREE] signals a set piece. [TEAM_] have a free kick.",
"anonymized": "[PLAYER] ([TEAM]) is penalised for holding. [REFEREE] signals a set piece. [TEAM] have a free kick.",
"visibility": "shown",
"position": "2780000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"gt_gameTime": "",
"label": "time",
"description": "3 min. of stoppage-time to be played.",
"identified": "3 min. of stoppage-time to be played.",
"anonymized": "3 min. of stoppage-time to be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 44:20",
"gt_gameTime": "2 - 44:10",
"label": "",
"description": "Excellent touch by Marcos Alonso (Chelsea)! He latches on to a precise pass on the edge of the box and produces a shot goalwards which goes way wide of the left post.",
"identified": "Excellent touch by [PLAYER_MLHPrlrj] ([TEAM_])! He latches on to a precise pass on the edge of the box and produces a shot goalwards which goes way wide of the left post.",
"anonymized": "Excellent touch by [PLAYER] ([TEAM])! He latches on to a precise pass on the edge of the box and produces a shot goalwards which goes way wide of the left post.",
"visibility": "shown",
"position": "2660000"
},
{
"important": false,
"gameTime": "2 - 43:37",
"gt_gameTime": "2 - 43:19",
"label": "",
"description": "Luis Hernandez (Leicester) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear.",
"identified": "[PLAYER_6HSsexVf] ([TEAM_]) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear.",
"anonymized": "[PLAYER] ([TEAM]) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear.",
"visibility": "shown",
"position": "2617000"
},
{
"important": false,
"gameTime": "2 - 42:54",
"gt_gameTime": "",
"label": "funfact",
"description": "6:0 \u2013 this is the current number of shots on target.",
"identified": "6:0 \u2013 this is the current number of shots on target.",
"anonymized": "6:0 \u2013 this is the current number of shots on target.",
"visibility": "shown",
"position": "2574000"
},
{
"important": false,
"gameTime": "2 - 40:13",
"gt_gameTime": "2 - 40:10",
"label": "",
"description": "Christian Fuchs (Leicester) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat.",
"identified": "[PLAYER_C6EATqht] ([TEAM_]) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat.",
"visibility": "shown",
"position": "2413000"
},
{
"important": false,
"gameTime": "2 - 40:01",
"gt_gameTime": "2 - 39:56",
"label": "corner",
"description": "Riyad Mahrez (Leicester) decides to speed play up with a short corner kick.",
"identified": "[PLAYER_AkzHA2kB] ([TEAM_]) decides to speed play up with a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) decides to speed play up with a short corner kick.",
"visibility": "shown",
"position": "2401000"
},
{
"important": false,
"gameTime": "2 - 39:42",
"gt_gameTime": "2 - 39:38",
"label": "corner",
"description": "Riyad Mahrez (Leicester) floats the ball in from the corner but it's intercepted. Leicester have a corner.",
"identified": "[PLAYER_AkzHA2kB] ([TEAM_]) floats the ball in from the corner but it's intercepted. [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) floats the ball in from the corner but it's intercepted. [TEAM] have a corner.",
"visibility": "shown",
"position": "2382000"
},
{
"important": false,
"gameTime": "2 - 39:24",
"gt_gameTime": "2 - 39:12",
"label": "",
"description": "Daniel Drinkwater (Leicester) finds himself in a promising position after receiving a precise pass. He pulls the trigger but only hits one of the opposition, who gets in the way of his effort. The linesman makes the right call and Leicester will have a corner.",
"identified": "[PLAYER_0fL2Mgvj] ([TEAM_]) finds himself in a promising position after receiving a precise pass. He pulls the trigger but only hits one of the opposition, who gets in the way of his effort. The linesman makes the right call and [TEAM_] will have a corner.",
"anonymized": "[PLAYER] ([TEAM]) finds himself in a promising position after receiving a precise pass. He pulls the trigger but only hits one of the opposition, who gets in the way of his effort. The linesman makes the right call and [TEAM] will have a corner.",
"visibility": "shown",
"position": "2364000"
},
{
"important": false,
"gameTime": "2 - 38:44",
"gt_gameTime": "2 - 38:31",
"label": "",
"description": "Christian Fuchs (Leicester) serves up a nice cross, but Thibaut Courtois punches the ball away.",
"identified": "[PLAYER_C6EATqht] ([TEAM_]) serves up a nice cross, but [PLAYER_MVExOq3n] punches the ball away.",
"anonymized": "[PLAYER] ([TEAM]) serves up a nice cross, but [PLAYER] punches the ball away.",
"visibility": "shown",
"position": "2324000"
},
{
"important": false,
"gameTime": "2 - 37:35",
"gt_gameTime": "2 - 37:23",
"label": "",
"description": "Andy King (Leicester) latches on to a precise pass and one-on-one with the keeper slams the ball towards the right-hand post. Thibaut Courtois is alert, though, and leaps like a salmon to deny him.",
"identified": "[PLAYER_K4XlvQFq] ([TEAM_]) latches on to a precise pass and one-on-one with the keeper slams the ball towards the right-hand post. [PLAYER_MVExOq3n] is alert, though, and leaps like a salmon to deny him.",
"anonymized": "[PLAYER] ([TEAM]) latches on to a precise pass and one-on-one with the keeper slams the ball towards the right-hand post. [PLAYER] is alert, though, and leaps like a salmon to deny him.",
"visibility": "shown",
"position": "2255000"
},
{
"important": true,
"gameTime": "2 - 36:41",
"gt_gameTime": "2 - 36:19",
"label": "substitution",
"description": "Substitution. Ola Aina (Chelsea) has come on for Victor Moses.",
"identified": "Substitution. [PLAYER_O28OebFA] ([TEAM_]) has come on for [PLAYER_W2HIQPkG].",
"anonymized": "Substitution. [PLAYER] ([TEAM]) has come on for [PLAYER].",
"visibility": "shown",
"position": "2201000"
},
{
"important": true,
"gameTime": "2 - 36:25",
"gt_gameTime": "2 - 35:53",
"label": "substitution",
"description": "Antonio Conte has decided to substitute Eden Hazard and he is replaced by Ruben Loftus-Cheek (Chelsea).",
"identified": "[COACH_23vSAc12] has decided to substitute [PLAYER_QH2of5sJ] and he is replaced by [PLAYER_6DpURWF8] ([TEAM_]).",
"anonymized": "[COACH] has decided to substitute [PLAYER] and he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2185000"
},
{
"important": true,
"gameTime": "2 - 34:49",
"gt_gameTime": "2 - 34:29",
"label": "soccer-ball",
"description": "Goal! Nathaniel Chalobah plays in Victor Moses (Chelsea), who shows great determination to get to the ball before a couple of defenders. He shoots from inside the box into the right side of the net! Great finish - 3:0.",
"identified": "Goal! [PLAYER_jcJCKFEm] plays in [PLAYER_W2HIQPkG] ([TEAM_]), who shows great determination to get to the ball before a couple of defenders. He shoots from inside the box into the right side of the net! Great finish - 3:0.",
"anonymized": "Goal! [PLAYER] plays in [PLAYER] ([TEAM]), who shows great determination to get to the ball before a couple of defenders. He shoots from inside the box into the right side of the net! Great finish - 3:0.",
"visibility": "shown",
"position": "2089000"
},
{
"important": false,
"gameTime": "2 - 33:38",
"gt_gameTime": "2 - 33:27",
"label": "corner",
"description": "Victor Moses (Chelsea) takes the corner and sends it into the penalty area, but the opposition's defence is ready and makes a good clearance.",
"identified": "[PLAYER_W2HIQPkG] ([TEAM_]) takes the corner and sends it into the penalty area, but the opposition's defence is ready and makes a good clearance.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner and sends it into the penalty area, but the opposition's defence is ready and makes a good clearance.",
"visibility": "shown",
"position": "2018000"
},
{
"important": false,
"gameTime": "2 - 33:23",
"gt_gameTime": "2 - 33:09",
"label": "corner",
"description": "Victor Moses (Chelsea) takes the corner, but one of the defenders reacts well and rises highest to head the ball away. Chelsea have been awarded a corner kick.",
"identified": "[PLAYER_W2HIQPkG] ([TEAM_]) takes the corner, but one of the defenders reacts well and rises highest to head the ball away. [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner, but one of the defenders reacts well and rises highest to head the ball away. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "2003000"
},
{
"important": true,
"gameTime": "2 - 32:46",
"gt_gameTime": "2 - 32:37",
"label": "",
"description": "Nemanja Matic (Chelsea) wasted a huge opportunity! The fans already began to celebrate as he produced a shot from the edge of the box after a brilliant solo effort. The ball went towards the right side of the goal, but Kasper Schmeichel made an astonishing save! Chelsea earn a corner.",
"identified": "[PLAYER_Kty10JVG] ([TEAM_]) wasted a huge opportunity! The fans already began to celebrate as he produced a shot from the edge of the box after a brilliant solo effort. The ball went towards the right side of the goal, but [PLAYER_WM5fllIl] made an astonishing save! [TEAM_] earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) wasted a huge opportunity! The fans already began to celebrate as he produced a shot from the edge of the box after a brilliant solo effort. The ball went towards the right side of the goal, but [PLAYER] made an astonishing save! [TEAM] earn a corner.",
"visibility": "shown",
"position": "1966000"
},
{
"important": false,
"gameTime": "2 - 31:21",
"gt_gameTime": "2 - 31:14",
"label": "",
"description": "A crossfield pass from Daniel Drinkwater (Leicester) fails to find any of his teammates.",
"identified": "A crossfield pass from [PLAYER_0fL2Mgvj] ([TEAM_]) fails to find any of his teammates.",
"anonymized": "A crossfield pass from [PLAYER] ([TEAM]) fails to find any of his teammates.",
"visibility": "shown",
"position": "1881000"
},
{
"important": true,
"gameTime": "2 - 28:44",
"gt_gameTime": "2 - 28:12",
"label": "substitution",
"description": "Substitution. Andy King (Leicester) receives a signal from the referee and is now allowed to enter the pitch as Marc Albrighton walks off.",
"identified": "Substitution. [PLAYER_K4XlvQFq] ([TEAM_]) receives a signal from the referee and is now allowed to enter the pitch as [PLAYER_fLz0nwDI] 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": "1724000"
},
{
"important": false,
"gameTime": "2 - 28:31",
"gt_gameTime": "2 - 27:57",
"label": "",
"description": "Diego Costa (Chelsea) tries his luck with a shot from long distance after receiving a good pass. His poorly placed effort flies miles wide of the right post.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) tries his luck with a shot from long distance after receiving a good pass. His poorly placed effort flies miles wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) tries his luck with a shot from long distance after receiving a good pass. His poorly placed effort flies miles wide of the right post.",
"visibility": "shown",
"position": "1711000"
},
{
"important": false,
"gameTime": "2 - 28:06",
"gt_gameTime": "2 - 27:45",
"label": "corner",
"description": "Eden Hazard (Chelsea) swings in the corner, but it's comfortably cleared away.",
"identified": "[PLAYER_QH2of5sJ] ([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": "1686000"
},
{
"important": false,
"gameTime": "2 - 27:39",
"gt_gameTime": "2 - 27:07",
"label": "",
"description": "Diego Costa (Chelsea) produces a lovely chip pass into the box, but one of the opposition players cuts it out. N'Golo Kante (Chelsea) is the first to arrive to a rebound inside the penalty area and unleashes a quick strike towards the right side of the target that beats the keeper. One of the defenders, however, makes a goal-line clearance. The referee signals a corner kick to Chelsea.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) produces a lovely chip pass into the box, but one of the opposition players cuts it out. [PLAYER_IkmsHsOR] ([TEAM_]) is the first to arrive to a rebound inside the penalty area and unleashes a quick strike towards the right side of the target that beats the keeper. One of the defenders, however, makes a goal-line clearance. The referee signals a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) produces a lovely chip pass into the box, but one of the opposition players cuts it out. [PLAYER] ([TEAM]) is the first to arrive to a rebound inside the penalty area and unleashes a quick strike towards the right side of the target that beats the keeper. One of the defenders, however, makes a goal-line clearance. The referee signals a corner kick to [TEAM].",
"visibility": "shown",
"position": "1659000"
},
{
"important": false,
"gameTime": "2 - 26:56",
"gt_gameTime": "",
"label": "funfact",
"description": "We can have a look at the statistics now, shots on target are 6:0.",
"identified": "We can have a look at the statistics now, shots on target are 6:0.",
"anonymized": "We can have a look at the statistics now, shots on target are 6:0.",
"visibility": "shown",
"position": "1616000"
},
{
"important": false,
"gameTime": "2 - 25:15",
"gt_gameTime": "2 - 25:01",
"label": "",
"description": "Eden Hazard (Chelsea) and Diego Costa try to prise open the opposition with a series of short passes, but one of the defenders steps in and puts an end to the move.",
"identified": "[PLAYER_QH2of5sJ] ([TEAM_]) and [PLAYER_vBw5nir8] try to prise open the opposition with a series of short passes, but one of the defenders steps in and puts an end to the move.",
"anonymized": "[PLAYER] ([TEAM]) and [PLAYER] try to prise open the opposition with a series of short passes, but one of the defenders steps in and puts an end to the move.",
"visibility": "shown",
"position": "1515000"
},
{
"important": false,
"gameTime": "2 - 24:52",
"gt_gameTime": "2 - 24:50",
"label": "",
"description": "The Leicester players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"identified": "The [TEAM_] players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"anonymized": "The [TEAM] players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"visibility": "shown",
"position": "1492000"
},
{
"important": true,
"gameTime": "2 - 22:55",
"gt_gameTime": "2 - 22:30",
"label": "substitution",
"description": "Substitution. Nathaniel Chalobah (Chelsea) in, Pedro out.",
"identified": "Substitution. [PLAYER_jcJCKFEm] ([TEAM_]) in, [PLAYER_0f1tMqQl] out.",
"anonymized": "Substitution. [PLAYER] ([TEAM]) in, [PLAYER] out.",
"visibility": "shown",
"position": "1375000"
},
{
"important": true,
"gameTime": "2 - 21:55",
"gt_gameTime": "2 - 21:53",
"label": "substitution",
"description": "Substitution. Riyad Mahrez (Leicester) replaces Jeffrey Schlupp.",
"identified": "Substitution. [PLAYER_AkzHA2kB] ([TEAM_]) replaces [PLAYER_QRDZkPSt].",
"anonymized": "Substitution. [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "1315000"
},
{
"important": true,
"gameTime": "2 - 21:54",
"gt_gameTime": "2 - 21:35",
"label": "substitution",
"description": "Claudio Ranieri has decided to make a change. Islam Slimani (Leicester) replaces Ahmed Musa.",
"identified": "[COACH_zFLwLRZS] has decided to make a change. [PLAYER_IB6p5STt] ([TEAM_]) replaces [PLAYER_tnCLpeMQ].",
"anonymized": "[COACH] has decided to make a change. [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "1314000"
},
{
"important": false,
"gameTime": "2 - 20:38",
"gt_gameTime": "2 - 20:28",
"label": "",
"description": "Jamie Vardy (Leicester) attempts to find one of his teammates with a sweet pass into the box, but one of the defending players reacts well and intercepts the effort.",
"identified": "[PLAYER_fP3OohgD] ([TEAM_]) attempts to find one of his teammates with a sweet pass into the box, but one of the defending players reacts well and intercepts the effort.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find one of his teammates with a sweet pass into the box, but one of the defending players reacts well and intercepts the effort.",
"visibility": "shown",
"position": "1238000"
},
{
"important": false,
"gameTime": "2 - 17:27",
"gt_gameTime": "2 - 17:18",
"label": "",
"description": "Luis Hernandez (Leicester) tries to send a pass but it's blocked.",
"identified": "[PLAYER_6HSsexVf] ([TEAM_]) tries to send a pass but it's blocked.",
"anonymized": "[PLAYER] ([TEAM]) tries to send a pass but it's blocked.",
"visibility": "shown",
"position": "1047000"
},
{
"important": false,
"gameTime": "2 - 16:20",
"gt_gameTime": "2 - 16:08",
"label": "",
"description": "Jeffrey Schlupp (Leicester) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"identified": "[PLAYER_QRDZkPSt] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"visibility": "shown",
"position": "980000"
},
{
"important": false,
"gameTime": "2 - 13:19",
"gt_gameTime": "2 - 13:10",
"label": "",
"description": "Jamie Vardy (Leicester) races towards goal but the defender gets back well to make a challenge.",
"identified": "[PLAYER_fP3OohgD] ([TEAM_]) races towards goal but the defender gets back well to make a challenge.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge.",
"visibility": "shown",
"position": "799000"
},
{
"important": true,
"gameTime": "2 - 11:47",
"gt_gameTime": "2 - 11:39",
"label": "",
"description": "Victor Moses (Chelsea) produces a ferocious strike from the edge of the box. His dangerous effort towards the left post is blocked by Kasper Schmeichel, who pulls off a superb save to keep the ball out of the net.",
"identified": "[PLAYER_W2HIQPkG] ([TEAM_]) produces a ferocious strike from the edge of the box. His dangerous effort towards the left post is blocked by [PLAYER_WM5fllIl], who pulls off a superb save to keep the ball out of the net.",
"anonymized": "[PLAYER] ([TEAM]) produces a ferocious strike from the edge of the box. His dangerous effort towards the left post is blocked by [PLAYER], who pulls off a superb save to keep the ball out of the net.",
"visibility": "shown",
"position": "707000"
},
{
"important": false,
"gameTime": "2 - 11:19",
"gt_gameTime": "2 - 11:25",
"label": "corner",
"description": "The ball is whipped in from the corner by Marc Albrighton (Leicester), but one of the defenders gets it clear.",
"identified": "The ball is whipped in from the corner by [PLAYER_fLz0nwDI] ([TEAM_]), but one of the defenders gets it clear.",
"anonymized": "The ball is whipped in from the corner by [PLAYER] ([TEAM]), but one of the defenders gets it clear.",
"visibility": "shown",
"position": "679000"
},
{
"important": false,
"gameTime": "2 - 11:09",
"gt_gameTime": "2 - 11:00",
"label": "",
"description": "Marc Albrighton (Leicester) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack. Leicester will have a chance to score from a corner kick.",
"identified": "[PLAYER_fLz0nwDI] ([TEAM_]) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack. [TEAM_] will have a chance to score from a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack. [TEAM] will have a chance to score from a corner kick.",
"visibility": "shown",
"position": "669000"
},
{
"important": false,
"gameTime": "2 - 10:11",
"gt_gameTime": "2 - 09:56",
"label": "",
"description": "A through ball from Ahmed Musa (Leicester) fails to reach Jamie Vardy as one of the defending players reacts brilliantly to intercept the effort. If the pass had been produced a little bit earlier, Jamie Vardy could have got into a promising position.",
"identified": "A through ball from [PLAYER_tnCLpeMQ] ([TEAM_]) fails to reach [PLAYER_fP3OohgD] as one of the defending players reacts brilliantly to intercept the effort. If the pass had been produced a little bit earlier, [PLAYER_fP3OohgD] could have got into a promising position.",
"anonymized": "A through ball from [PLAYER] ([TEAM]) fails to reach [PLAYER] as one of the defending players reacts brilliantly to intercept the effort. If the pass had been produced a little bit earlier, [PLAYER] could have got into a promising position.",
"visibility": "shown",
"position": "611000"
},
{
"important": false,
"gameTime": "2 - 09:25",
"gt_gameTime": "2 - 09:14",
"label": "",
"description": "Marcos Alonso (Chelsea) sends a pass into the box, but his attempt is thwarted and cleared.",
"identified": "[PLAYER_MLHPrlrj] ([TEAM_]) sends a pass into the box, but his attempt is thwarted and cleared.",
"anonymized": "[PLAYER] ([TEAM]) sends a pass into the box, but his attempt is thwarted and cleared.",
"visibility": "shown",
"position": "565000"
},
{
"important": false,
"gameTime": "2 - 07:51",
"gt_gameTime": "2 - 07:43",
"label": "",
"description": "Marc Albrighton (Leicester) latches on to a precise pass on the edge of the box, but miskicks his shot and the ball goes high over the bar. Poor effort! The ball is off of the pitch and it's a goal kick for Chelsea.",
"identified": "[PLAYER_fLz0nwDI] ([TEAM_]) latches on to a precise pass on the edge of the box, but miskicks his shot and the ball goes high over the bar. Poor effort! The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) latches on to a precise pass on the edge of the box, but miskicks his shot and the ball goes high over the bar. Poor effort! The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "471000"
},
{
"important": false,
"gameTime": "2 - 06:20",
"gt_gameTime": "2 - 06:16",
"label": "",
"description": "Daniel Drinkwater (Leicester) fails to deliver a decent cross from a long-range free kick. The opposition's defence intercepts the effort. Ahmed Musa (Leicester) holds his head in his hands after missing a big chance. He latches on to a rebound, creates some space from himself and fires the ball from the edge of the box well wide of the right post.",
"identified": "[PLAYER_0fL2Mgvj] ([TEAM_]) fails to deliver a decent cross from a long-range free kick. The opposition's defence intercepts the effort. [PLAYER_tnCLpeMQ] ([TEAM_]) holds his head in his hands after missing a big chance. He latches on to a rebound, creates some space from himself and fires the ball from the edge of the box well wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) fails to deliver a decent cross from a long-range free kick. The opposition's defence intercepts the effort. [PLAYER] ([TEAM]) holds his head in his hands after missing a big chance. He latches on to a rebound, creates some space from himself and fires the ball from the edge of the box well wide of the right post.",
"visibility": "shown",
"position": "380000"
},
{
"important": true,
"gameTime": "2 - 05:57",
"gt_gameTime": "2 - 05:36",
"label": "y-card",
"description": "Cesar Azpilicueta (Chelsea) has tested the patience of referee Andre Marriner and goes into the book for a previous late challenge.",
"identified": "[PLAYER_CMGUADgt] ([TEAM_]) has tested the patience of referee [REFEREE] and goes into the book for a previous late challenge.",
"anonymized": "[PLAYER] ([TEAM]) has tested the patience of referee [REFEREE] and goes into the book for a previous late challenge.",
"visibility": "shown",
"position": "357000"
},
{
"important": false,
"gameTime": "2 - 03:18",
"gt_gameTime": "2 - 02:54",
"label": "",
"description": "Jeffrey Schlupp (Leicester) skips past his man but can't keep the ball in play.",
"identified": "[PLAYER_QRDZkPSt] ([TEAM_]) skips past his man but can't keep the ball in play.",
"anonymized": "[PLAYER] ([TEAM]) skips past his man but can't keep the ball in play.",
"visibility": "shown",
"position": "198000"
},
{
"important": false,
"gameTime": "2 - 02:18",
"gt_gameTime": "2 - 02:12",
"label": "",
"description": "Cesar Azpilicueta (Chelsea) quickly takes the free kick with a short pass.",
"identified": "[PLAYER_CMGUADgt] ([TEAM_]) quickly takes the free kick with a short pass.",
"anonymized": "[PLAYER] ([TEAM]) quickly takes the free kick with a short pass.",
"visibility": "shown",
"position": "138000"
},
{
"important": false,
"gameTime": "2 - 01:56",
"gt_gameTime": "2 - 01:48",
"label": "",
"description": "Ahmed Musa (Leicester) gets on the ball and beats an opponent, but his run is stopped by the referee Andre Marriner who sees an offensive foul. A free kick has been awarded to Chelsea.",
"identified": "[PLAYER_tnCLpeMQ] ([TEAM_]) gets on the ball and beats an opponent, but his run is stopped by the referee [REFEREE] who sees an offensive foul. A free kick has been awarded to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) gets on the ball and beats an opponent, but his run is stopped by the referee [REFEREE] who sees an offensive foul. A free kick has been awarded to [TEAM].",
"visibility": "shown",
"position": "116000"
},
{
"important": true,
"gameTime": "2 - 00:17",
"gt_gameTime": "2 - 00:09",
"label": "",
"description": "Pedro (Chelsea) latches on to a cross on the edge of the box and fires a shot at goal, but his effort was blocked by one of the defenders.",
"identified": "[PLAYER_0f1tMqQl] ([TEAM_]) latches on to a cross on the edge of the box and fires a shot at goal, but his effort was blocked by one of the defenders.",
"anonymized": "[PLAYER] ([TEAM]) latches on to a cross on the edge of the box and fires a shot at goal, but his effort was blocked by one of the defenders.",
"visibility": "shown",
"position": "17000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"gt_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": false,
"gameTime": "1 - 46:59",
"gt_gameTime": "",
"label": "",
"description": "This is how football should be - full of action, thrilling moments and spectacular opportunities. And we have only had the first 45 minutes, so the expectations for the second half are high. The home team were mostly in control in the first half. The home side attempts to hold onto the ball for as long as possible, while the away team's main weapon is fast counter-attacks.",
"identified": "This is how football should be - full of action, thrilling moments and spectacular opportunities. And we have only had the first 45 minutes, so the expectations for the second half are high. The home team were mostly in control in the first half. The home side attempts to hold onto the ball for as long as possible, while the away team's main weapon is fast counter-attacks.",
"anonymized": "This is how football should be - full of action, thrilling moments and spectacular opportunities. And we have only had the first 45 minutes, so the expectations for the second half are high. The home team were mostly in control in the first half. The home side attempts to hold onto the ball for as long as possible, while the away team's main weapon is fast counter-attacks.",
"visibility": "shown",
"position": "2819000"
},
{
"important": true,
"gameTime": "1 - 46:15",
"gt_gameTime": "",
"label": "whistle",
"description": "Andre Marriner 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": "2775000"
},
{
"important": false,
"gameTime": "1 - 46:04",
"gt_gameTime": "",
"label": "",
"description": "The ball is cleared after Victor Moses (Chelsea) attempted to dribble past an opposing player.",
"identified": "The ball is cleared after [PLAYER_W2HIQPkG] ([TEAM_]) attempted to dribble past an opposing player.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player.",
"visibility": "shown",
"position": "2764000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"gt_gameTime": "",
"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:33",
"gt_gameTime": "1 - 43:19",
"label": "",
"description": "Ahmed Musa (Leicester) climbs high to meet a cross on the edge of the box, but it's a poor header and goes well wide of the left post.",
"identified": "[PLAYER_tnCLpeMQ] ([TEAM_]) climbs high to meet a cross on the edge of the box, but it's a poor header and goes well wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) climbs high to meet a cross on the edge of the box, but it's a poor header and goes well wide of the left post.",
"visibility": "shown",
"position": "2613000"
},
{
"important": false,
"gameTime": "1 - 42:17",
"gt_gameTime": "1 - 42:16",
"label": "",
"description": "Eden Hazard (Chelsea) wriggles into space and fires the ball from the edge of the area, but one of the defenders is there to block the effort.",
"identified": "[PLAYER_QH2of5sJ] ([TEAM_]) wriggles into space and fires the ball from the edge of the area, but one of the defenders is there to block the effort.",
"anonymized": "[PLAYER] ([TEAM]) wriggles into space and fires the ball from the edge of the area, but one of the defenders is there to block the effort.",
"visibility": "shown",
"position": "2537000"
},
{
"important": false,
"gameTime": "1 - 40:15",
"gt_gameTime": "1 - 40:07",
"label": "",
"description": "David Luiz (Chelsea) strikes the ball towards goal from the free kick, but it goes straight at the goalkeeper.",
"identified": "[PLAYER_G04qmSno] ([TEAM_]) strikes the ball towards goal from the free kick, but it goes straight at the goalkeeper.",
"anonymized": "[PLAYER] ([TEAM]) strikes the ball towards goal from the free kick, but it goes straight at the goalkeeper.",
"visibility": "shown",
"position": "2415000"
},
{
"important": false,
"gameTime": "1 - 39:44",
"gt_gameTime": "1 - 39:17",
"label": "",
"description": "Marc Albrighton (Leicester) trips an opposition player and Andre Marriner signals a foul. Chelsea have a free kick.",
"identified": "[PLAYER_fLz0nwDI] ([TEAM_]) trips an opposition player and [REFEREE] signals a foul. [TEAM_] have a free kick.",
"anonymized": "[PLAYER] ([TEAM]) trips an opposition player and [REFEREE] signals a foul. [TEAM] have a free kick.",
"visibility": "shown",
"position": "2384000"
},
{
"important": false,
"gameTime": "1 - 38:42",
"gt_gameTime": "1 - 38:52",
"label": "corner",
"description": "Marc Albrighton (Leicester) swings in a cross from the corner, but Thibaut Courtois reads it well and gathers the ball.",
"identified": "[PLAYER_fLz0nwDI] ([TEAM_]) swings in a cross from the corner, but [PLAYER_MVExOq3n] reads it well and gathers the ball.",
"anonymized": "[PLAYER] ([TEAM]) swings in a cross from the corner, but [PLAYER] reads it well and gathers the ball.",
"visibility": "shown",
"position": "2322000"
},
{
"important": false,
"gameTime": "1 - 38:18",
"gt_gameTime": "1 - 38:16",
"label": "corner",
"description": "Marc Albrighton (Leicester) takes the corner but it's cleared. Leicester have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"identified": "[PLAYER_fLz0nwDI] ([TEAM_]) takes the corner but it's cleared. [TEAM_] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but it's cleared. [TEAM] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"visibility": "shown",
"position": "2298000"
},
{
"important": false,
"gameTime": "1 - 38:00",
"gt_gameTime": "1 - 37:43",
"label": "",
"description": "Jeffrey Schlupp (Leicester) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort. The ball is out of play. Leicester win a corner kick.",
"identified": "[PLAYER_QRDZkPSt] ([TEAM_]) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort. The ball is out of play. [TEAM_] win a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort. The ball is out of play. [TEAM] win a corner kick.",
"visibility": "shown",
"position": "2280000"
},
{
"important": false,
"gameTime": "1 - 37:28",
"gt_gameTime": "1 - 37:12",
"label": "",
"description": "Jamie Vardy (Leicester) receives a sweet pass inside the box, but his effort on goal is blocked by the defender.",
"identified": "[PLAYER_fP3OohgD] ([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": "2248000"
},
{
"important": false,
"gameTime": "1 - 36:00",
"gt_gameTime": "1 - 35:22",
"label": "",
"description": "The linesman raises his flag as one of the players from Leicester was in an offside position.",
"identified": "The linesman raises his flag as one of the players from [TEAM_] was in an offside position.",
"anonymized": "The linesman raises his flag as one of the players from [TEAM] was in an offside position.",
"visibility": "shown",
"position": "2160000"
},
{
"important": false,
"gameTime": "1 - 35:39",
"gt_gameTime": "",
"label": "funfact",
"description": "We can have a look at the statistics now, particularly the total attempts \u2013 16:5.",
"identified": "We can have a look at the statistics now, particularly the total attempts \u2013 16:5.",
"anonymized": "We can have a look at the statistics now, particularly the total attempts \u2013 16:5.",
"visibility": "shown",
"position": "2139000"
},
{
"important": false,
"gameTime": "1 - 34:23",
"gt_gameTime": "1 - 34:03",
"label": "",
"description": "Marc Albrighton (Leicester) takes a short free kick.",
"identified": "[PLAYER_fLz0nwDI] ([TEAM_]) takes a short free kick.",
"anonymized": "[PLAYER] ([TEAM]) takes a short free kick.",
"visibility": "shown",
"position": "2063000"
},
{
"important": false,
"gameTime": "1 - 34:02",
"gt_gameTime": "1 - 33:46",
"label": "",
"description": "Andre Marriner has a clear sight and sees a foul from Marcos Alonso (Chelsea). Leicester win a free kick and will be able to apply some pressure on the opposition goal.",
"identified": "[REFEREE] has a clear sight and sees a foul from [PLAYER_MLHPrlrj] ([TEAM_]). [TEAM_] win a free kick and will be able to apply some pressure on the opposition goal.",
"anonymized": "[REFEREE] has a clear sight and sees a foul from [PLAYER] ([TEAM]). [TEAM] win a free kick and will be able to apply some pressure on the opposition goal.",
"visibility": "shown",
"position": "2042000"
},
{
"important": true,
"gameTime": "1 - 32:44",
"gt_gameTime": "1 - 32:17",
"label": "soccer-ball",
"description": "Eden Hazard (Chelsea) receives a killer pass, finds himself one-on-one with the goalkeeper and coolly sends the ball into the back of the net.",
"identified": "[PLAYER_QH2of5sJ] ([TEAM_]) receives a killer pass, finds himself one-on-one with the goalkeeper and coolly sends the ball into the back of the net.",
"anonymized": "[PLAYER] ([TEAM]) receives a killer pass, finds himself one-on-one with the goalkeeper and coolly sends the ball into the back of the net.",
"visibility": "shown",
"position": "1964000"
},
{
"important": false,
"gameTime": "1 - 31:51",
"gt_gameTime": "1 - 31:34",
"label": "",
"description": "Robert Huth (Leicester) changes the direction of the ball using his hand, but he is angry when the referee gives a foul against him.",
"identified": "[PLAYER_I90mNtHF] ([TEAM_]) changes the direction of the ball using his hand, but he is angry when the referee gives a foul against him.",
"anonymized": "[PLAYER] ([TEAM]) changes the direction of the ball using his hand, but he is angry when the referee gives a foul against him.",
"visibility": "shown",
"position": "1911000"
},
{
"important": false,
"gameTime": "1 - 30:45",
"gt_gameTime": "1 - 30:35",
"label": "",
"description": "The free kick into the penalty area from Marcos Alonso (Chelsea) is cleared.",
"identified": "The free kick into the penalty area from [PLAYER_MLHPrlrj] ([TEAM_]) is cleared.",
"anonymized": "The free kick into the penalty area from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "1845000"
},
{
"important": false,
"gameTime": "1 - 30:11",
"gt_gameTime": "1 - 29:53",
"label": "",
"description": "Wes Morgan (Leicester) tackles a bit over-zealously and Andre Marriner blows for a foul. Chelsea will take a free kick.",
"identified": "[PLAYER_ngOpNsxb] ([TEAM_]) tackles a bit over-zealously and [REFEREE] blows for a foul. [TEAM_] will take a free kick.",
"anonymized": "[PLAYER] ([TEAM]) tackles a bit over-zealously and [REFEREE] blows for a foul. [TEAM] will take a free kick.",
"visibility": "shown",
"position": "1811000"
},
{
"important": false,
"gameTime": "1 - 29:06",
"gt_gameTime": "1 - 28:05",
"label": "",
"description": "Corner kick falls to Gary Cahill (Chelsea), who shows his quick reaction with a snap shot. The ball, however, goes well over the bar.",
"identified": "Corner kick falls to [PLAYER_pKpkgR1U] ([TEAM_]), who shows his quick reaction with a snap shot. The ball, however, goes well over the bar.",
"anonymized": "Corner kick falls to [PLAYER] ([TEAM]), who shows his quick reaction with a snap shot. The ball, however, goes well over the bar.",
"visibility": "shown",
"position": "1746000"
},
{
"important": false,
"gameTime": "1 - 28:40",
"gt_gameTime": "1 - 28:03",
"label": "corner",
"description": "Corner kick. Pedro (Chelsea) is ready to send the ball into the box.",
"identified": "Corner kick. [PLAYER_0f1tMqQl] ([TEAM_]) is ready to send the ball into the box.",
"anonymized": "Corner kick. [PLAYER] ([TEAM]) is ready to send the ball into the box.",
"visibility": "shown",
"position": "1720000"
},
{
"important": false,
"gameTime": "1 - 28:27",
"gt_gameTime": "1 - 27:45",
"label": "corner",
"description": "Eden Hazard (Chelsea) sends in the corner, but fails to find the head of any of his teammates, allowing the defence to clear. The ball goes out of play. Chelsea are awarded a corner kick.",
"identified": "[PLAYER_QH2of5sJ] ([TEAM_]) sends in the corner, but fails to find the head of any of his teammates, allowing the defence to clear. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) sends in the corner, but fails to find the head of any of his teammates, allowing the defence to clear. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "1707000"
},
{
"important": false,
"gameTime": "1 - 28:13",
"gt_gameTime": "1 - 27:36",
"label": "",
"description": "Pedro (Chelsea) fails to find any of his teammates inside the box as his pass is blocked. The ball is out of play. A goal-scoring opportunity from a corner for Chelsea.",
"identified": "[PLAYER_0f1tMqQl] ([TEAM_]) fails to find any of his teammates inside the box as his pass is blocked. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) fails to find any of his teammates inside the box as his pass is blocked. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM].",
"visibility": "shown",
"position": "1693000"
},
{
"important": true,
"gameTime": "1 - 27:53",
"gt_gameTime": "1 - 27:13",
"label": "",
"description": "David Luiz (Chelsea) lashes in a mid-range free kick and his effort crashes against the left post. That was an excellent shot, but unfortunately for him it didn't end up in the back of the net.",
"identified": "[PLAYER_G04qmSno] ([TEAM_]) lashes in a mid-range free kick and his effort crashes against the left post. That was an excellent shot, but unfortunately for him it didn't end up in the back of the net.",
"anonymized": "[PLAYER] ([TEAM]) lashes in a mid-range free kick and his effort crashes against the left post. That was an excellent shot, but unfortunately for him it didn't end up in the back of the net.",
"visibility": "shown",
"position": "1673000"
},
{
"important": true,
"gameTime": "1 - 26:40",
"gt_gameTime": "1 - 26:13",
"label": "y-card",
"description": "This yellow card was deserved. The tackle by Robert Huth (Leicester) was quite harsh and Andre Marriner didn't hesitate to show him a yellow card.",
"identified": "This yellow card was deserved. The tackle by [PLAYER_I90mNtHF] ([TEAM_]) was quite harsh and [REFEREE] didn't hesitate to show him a yellow card.",
"anonymized": "This yellow card was deserved. The tackle by [PLAYER] ([TEAM]) was quite harsh and [REFEREE] didn't hesitate to show him a yellow card.",
"visibility": "shown",
"position": "1600000"
},
{
"important": false,
"gameTime": "1 - 25:38",
"gt_gameTime": "1 - 25:23",
"label": "",
"description": "Eden Hazard (Chelsea) gets on the end of a pass and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"identified": "[PLAYER_QH2of5sJ] ([TEAM_]) gets on the end of a pass and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"anonymized": "[PLAYER] ([TEAM]) gets on the end of a pass and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"visibility": "shown",
"position": "1538000"
},
{
"important": false,
"gameTime": "1 - 24:22",
"gt_gameTime": "1 - 24:05",
"label": "",
"description": "Gary Cahill (Chelsea) sends a long ball forward to Victor Moses, but he put too much power and the chance is gone. The ball goes out of play and Leicester will have a goal kick.",
"identified": "[PLAYER_pKpkgR1U] ([TEAM_]) sends a long ball forward to [PLAYER_W2HIQPkG], but he put too much power and the chance is gone. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) sends a long ball forward to [PLAYER], but he put too much power and the chance is gone. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "1462000"
},
{
"important": false,
"gameTime": "1 - 22:17",
"gt_gameTime": "1 - 22:01",
"label": "",
"description": "Daniel Drinkwater (Leicester) picks out Ahmed Musa with a fine lofted pass, but the latter wasn't able to create some space to get into shooting range.",
"identified": "[PLAYER_0fL2Mgvj] ([TEAM_]) picks out [PLAYER_tnCLpeMQ] with a fine lofted pass, but the latter wasn't able to create some space to get into shooting range.",
"anonymized": "[PLAYER] ([TEAM]) picks out [PLAYER] with a fine lofted pass, but the latter wasn't able to create some space to get into shooting range.",
"visibility": "shown",
"position": "1337000"
},
{
"important": false,
"gameTime": "1 - 19:17",
"gt_gameTime": "1 - 19:11",
"label": "",
"description": "Ahmed Musa (Leicester) looks to break free, but an opposing player clears the ball away.",
"identified": "[PLAYER_tnCLpeMQ] ([TEAM_]) looks to break free, but an opposing player clears the ball away.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away.",
"visibility": "shown",
"position": "1157000"
},
{
"important": false,
"gameTime": "1 - 18:29",
"gt_gameTime": "1 - 18:15",
"label": "",
"description": "CHANCE! Eden Hazard (Chelsea) connects with a cross but he cannot direct his shot on target.",
"identified": "CHANCE! [PLAYER_QH2of5sJ] ([TEAM_]) connects with a cross but he cannot direct his shot on target.",
"anonymized": "CHANCE! [PLAYER] ([TEAM]) connects with a cross but he cannot direct his shot on target.",
"visibility": "shown",
"position": "1109000"
},
{
"important": false,
"gameTime": "1 - 16:37",
"gt_gameTime": "1 - 16:24",
"label": "",
"description": "Marc Albrighton (Leicester) sends a teasing cross into the area, but Thibaut Courtois intercepts the ball.",
"identified": "[PLAYER_fLz0nwDI] ([TEAM_]) sends a teasing cross into the area, but [PLAYER_MVExOq3n] intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a teasing cross into the area, but [PLAYER] intercepts the ball.",
"visibility": "shown",
"position": "997000"
},
{
"important": false,
"gameTime": "1 - 16:00",
"gt_gameTime": "1 - 15:45",
"label": "",
"description": "Daniel Drinkwater (Leicester) decides to speed play up by quickly sending the free kick into the box.",
"identified": "[PLAYER_0fL2Mgvj] ([TEAM_]) decides to speed play up by quickly sending the free kick into the box.",
"anonymized": "[PLAYER] ([TEAM]) decides to speed play up by quickly sending the free kick into the box.",
"visibility": "shown",
"position": "960000"
},
{
"important": false,
"gameTime": "1 - 15:44",
"gt_gameTime": "1 - 15:27",
"label": "",
"description": "David Luiz (Chelsea) was too forceful with his tackle and Andre Marriner interrupted the game to signal a free kick. A free kick is awarded to Leicester.",
"identified": "[PLAYER_G04qmSno] ([TEAM_]) was too forceful with his tackle and [REFEREE] interrupted the game to signal a free kick. A free kick is awarded to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) was too forceful with his tackle and [REFEREE] interrupted the game to signal a free kick. A free kick is awarded to [TEAM].",
"visibility": "shown",
"position": "944000"
},
{
"important": false,
"gameTime": "1 - 14:18",
"gt_gameTime": "1 - 14:12",
"label": "",
"description": "Chelsea seem to be finding their feet as they enjoy some possession. They are waiting for the right moment to create new attacking opportunities.",
"identified": "[TEAM_] seem to be finding their feet as they enjoy some possession. They are waiting for the right moment to create new attacking opportunities.",
"anonymized": "[TEAM] seem to be finding their feet as they enjoy some possession. They are waiting for the right moment to create new attacking opportunities.",
"visibility": "shown",
"position": "858000"
},
{
"important": false,
"gameTime": "1 - 12:29",
"gt_gameTime": "1 - 12:30",
"label": "corner",
"description": "Pedro (Chelsea) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"identified": "[PLAYER_0f1tMqQl] ([TEAM_]) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"anonymized": "[PLAYER] ([TEAM]) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"visibility": "shown",
"position": "749000"
},
{
"important": false,
"gameTime": "1 - 12:13",
"gt_gameTime": "1 - 11:36",
"label": "",
"description": "Marcos Alonso (Chelsea) fails to send a pass into the box as his effort is cut out. The ball goes out for a corner. Chelsea can continue in their attacking effort.",
"identified": "[PLAYER_MLHPrlrj] ([TEAM_]) fails to send a pass into the box as his effort is cut out. The ball goes out for a corner. [TEAM_] can continue in their attacking effort.",
"anonymized": "[PLAYER] ([TEAM]) fails to send a pass into the box as his effort is cut out. The ball goes out for a corner. [TEAM] can continue in their attacking effort.",
"visibility": "shown",
"position": "733000"
},
{
"important": false,
"gameTime": "1 - 11:50",
"gt_gameTime": "1 - 11:28",
"label": "",
"description": "Marcos Alonso (Chelsea) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away. The ball is behind the touchline and Chelsea will take a throw-in.",
"identified": "[PLAYER_MLHPrlrj] ([TEAM_]) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away. The ball is behind the touchline and [TEAM_] will take a throw-in.",
"anonymized": "[PLAYER] ([TEAM]) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away. The ball is behind the touchline and [TEAM] will take a throw-in.",
"visibility": "shown",
"position": "710000"
}
]
} |