File size: 87,238 Bytes
23b035e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 |
{
"timestamp": "1474052400",
"score": "1 - 2",
"round": "5",
"teams": [
"Chelsea",
"Liverpool"
],
"lineup": {
"home": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "CMGUADgt",
"name": "Azpilicueta C.",
"captain": "",
"detail_link": "/player/azpilicueta-cesar/CMGUADgt/",
"short_name": "Azpilicueta",
"shirt_number": "28",
"country": "Spain",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Cesar Azpilicueta"
},
{
"hash": "pKpkgR1U",
"name": "Cahill G.",
"captain": "",
"detail_link": "/player/cahill-gary/pKpkgR1U/",
"short_name": "Cahill",
"shirt_number": "24",
"country": "England",
"facts": [],
"lineup": 3,
"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": "61' Costa D. (Matic N.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 11,
"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": 4,
"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": [],
"lineup": 10,
"starting": true,
"long_name": "Eden Hazard"
},
{
"hash": "Qe3xUmHo",
"name": "Ivanovic B.",
"captain": "(C)",
"detail_link": "/player/ivanovic-branislav/Qe3xUmHo/",
"short_name": "Ivanovic",
"shirt_number": "2",
"country": "Serbia",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Branislav Ivanovic"
},
{
"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": "61' Costa D. (Matic N.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "84'",
"description": "Fabregas C.",
"linked_player_hash": "YXIDwoe5"
}
],
"lineup": 7,
"starting": true,
"long_name": "Nemanja Matic"
},
{
"hash": "KfKDzbEo",
"name": "Oscar",
"captain": "",
"detail_link": "/player/oscar/KfKDzbEo/",
"short_name": "Oscar",
"shirt_number": "8",
"country": "Brazil",
"facts": [
{
"type": "6",
"time": "84'",
"description": "Pedro",
"linked_player_hash": "0f1tMqQl"
}
],
"lineup": 9,
"starting": true,
"long_name": "Oscar"
},
{
"hash": "GSzdOhPI",
"name": "Willian",
"captain": "",
"detail_link": "/player/willian/GSzdOhPI/",
"short_name": "Willian",
"shirt_number": "22",
"country": "Brazil",
"facts": [
{
"type": "1",
"time": "45+1' Willian (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "84'",
"description": "Moses V.",
"linked_player_hash": "W2HIQPkG"
}
],
"lineup": 8,
"starting": true,
"long_name": "Willian"
},
{
"hash": "O28OebFA",
"name": "Aina O.",
"captain": "",
"detail_link": "/player/aina-ola/O28OebFA/",
"short_name": "Aina",
"shirt_number": "34",
"country": "Nigeria",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ola Aina"
},
{
"hash": "MLHPrlrj",
"name": "Alonso M.",
"captain": "",
"detail_link": "/player/alonso-marcos/MLHPrlrj/",
"short_name": "Alonso",
"shirt_number": "3",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marcos Alonso"
},
{
"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": "YXIDwoe5",
"name": "Fabregas C.",
"captain": "",
"detail_link": "/player/fabregas-cesc/YXIDwoe5/",
"short_name": "Fabregas",
"shirt_number": "4",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "84'",
"description": "Matic N.",
"linked_player_hash": "Kty10JVG"
}
],
"lineup": null,
"starting": false,
"long_name": "Cesc Fabregas"
},
{
"hash": "W2HIQPkG",
"name": "Moses V.",
"captain": "",
"detail_link": "/player/moses-victor/W2HIQPkG/",
"short_name": "Moses",
"shirt_number": "15",
"country": "Nigeria",
"facts": [
{
"type": "7",
"time": "84'",
"description": "Willian",
"linked_player_hash": "GSzdOhPI"
}
],
"lineup": null,
"starting": false,
"long_name": "Victor Moses"
},
{
"hash": "0f1tMqQl",
"name": "Pedro",
"captain": "",
"detail_link": "/player/pedro/0f1tMqQl/",
"short_name": "Pedro",
"shirt_number": "11",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "84'",
"description": "Oscar",
"linked_player_hash": "KfKDzbEo"
}
],
"lineup": null,
"starting": false,
"long_name": "Pedro"
}
],
"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-3-3",
"players": [
{
"hash": "Eo9X2cTu",
"name": "Clyne N.",
"captain": "",
"detail_link": "/player/clyne-nathaniel/Eo9X2cTu/",
"short_name": "Clyne",
"shirt_number": "2",
"country": "England",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Nathaniel Clyne"
},
{
"hash": "QP6r8H7O",
"name": "Coutinho",
"captain": "",
"detail_link": "/player/coutinho/QP6r8H7O/",
"short_name": "Coutinho",
"shirt_number": "10",
"country": "Brazil",
"facts": [
{
"type": "8",
"time": "17' Lovren D. (Coutinho)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "82'",
"description": "Lucas Leiva",
"linked_player_hash": "t41Fn0KA"
}
],
"lineup": 11,
"starting": true,
"long_name": "Philippe Coutinho"
},
{
"hash": "UFMlUD6r",
"name": "Henderson J.",
"captain": "(C)",
"detail_link": "/player/henderson-jordan/UFMlUD6r/",
"short_name": "Henderson",
"shirt_number": "14",
"country": "England",
"facts": [
{
"type": "3",
"time": "36' Henderson J.",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Jordan Henderson"
},
{
"hash": "65ZQWgft",
"name": "Lallana A.",
"captain": "",
"detail_link": "/player/lallana-adam/65ZQWgft/",
"short_name": "Lallana",
"shirt_number": "20",
"country": "England",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Adam Lallana"
},
{
"hash": "GAcQF9Z6",
"name": "Lovren D.",
"captain": "",
"detail_link": "/player/lovren-dejan/GAcQF9Z6/",
"short_name": "Lovren",
"shirt_number": "6",
"country": "Croatia",
"facts": [
{
"type": "3",
"time": "17' Lovren D. (Coutinho)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Dejan Lovren"
},
{
"hash": "xxskxOU0",
"name": "Mane S.",
"captain": "",
"detail_link": "/player/mane-sadio/xxskxOU0/",
"short_name": "Mane",
"shirt_number": "19",
"country": "Senegal",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Sadio Mane"
},
{
"hash": "tpHWp8Am",
"name": "Matip J.",
"captain": "",
"detail_link": "/player/matip-joel/tpHWp8Am/",
"short_name": "Matip",
"shirt_number": "32",
"country": "Cameroon",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Joel Matip"
},
{
"hash": "YVcnMAp6",
"name": "Mignolet S.",
"captain": "",
"detail_link": "/player/mignolet-simon/YVcnMAp6/",
"short_name": "Mignolet",
"shirt_number": "22",
"country": "Belgium",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Simon Mignolet"
},
{
"hash": "QLY3kAEt",
"name": "Milner J.",
"captain": "",
"detail_link": "/player/milner-james/QLY3kAEt/",
"short_name": "Milner",
"shirt_number": "7",
"country": "England",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "James Milner"
},
{
"hash": "fwlDnzTg",
"name": "Sturridge D.",
"captain": "",
"detail_link": "/player/sturridge-daniel/fwlDnzTg/",
"short_name": "Sturridge",
"shirt_number": "15",
"country": "England",
"facts": [
{
"type": "6",
"time": "57'",
"description": "Origi D.",
"linked_player_hash": "jeRaNgKg"
}
],
"lineup": 10,
"starting": true,
"long_name": "Daniel Sturridge"
},
{
"hash": "f9KgUUZu",
"name": "Wijnaldum G.",
"captain": "",
"detail_link": "/player/wijnaldum-georginio/f9KgUUZu/",
"short_name": "Wijnaldum",
"shirt_number": "5",
"country": "Netherlands",
"facts": [
{
"type": "6",
"time": "90'",
"description": "Stewart K.",
"linked_player_hash": "2BS7SqE2"
}
],
"lineup": 8,
"starting": true,
"long_name": "Georginio Wijnaldum"
},
{
"hash": "EkjYoT1f",
"name": "Ejaria O.",
"captain": "",
"detail_link": "/player/ejaria-oviemuno/EkjYoT1f/",
"short_name": "Ejaria",
"shirt_number": "53",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Oviemuno Ejaria"
},
{
"hash": "GOLg3K3h",
"name": "Grujic M.",
"captain": "",
"detail_link": "/player/grujic-marko/GOLg3K3h/",
"short_name": "Grujic",
"shirt_number": "16",
"country": "Serbia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marko Grujic"
},
{
"hash": "MgWRUFHG",
"name": "Karius L.",
"captain": "",
"detail_link": "/player/karius-loris/MgWRUFHG/",
"short_name": "Karius",
"shirt_number": "1",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Loris Karius"
},
{
"hash": "t41Fn0KA",
"name": "Lucas Leiva",
"captain": "",
"detail_link": "/player/lucas-leiva/t41Fn0KA/",
"short_name": "Lucas Leiva",
"shirt_number": "21",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "82'",
"description": "Coutinho",
"linked_player_hash": "QP6r8H7O"
},
{
"type": "1",
"time": "88' Lucas Leiva (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Lucas Leiva"
},
{
"hash": "pdBI3oS8",
"name": "Moreno A.",
"captain": "",
"detail_link": "/player/moreno-alberto/pdBI3oS8/",
"short_name": "Moreno",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alberto Moreno"
},
{
"hash": "jeRaNgKg",
"name": "Origi D.",
"captain": "",
"detail_link": "/player/origi-divock/jeRaNgKg/",
"short_name": "Origi",
"shirt_number": "27",
"country": "Belgium",
"facts": [
{
"type": "7",
"time": "57'",
"description": "Sturridge D.",
"linked_player_hash": "fwlDnzTg"
}
],
"lineup": null,
"starting": false,
"long_name": "Divock Origi"
},
{
"hash": "2BS7SqE2",
"name": "Stewart K.",
"captain": "",
"detail_link": "/player/stewart-kevin/2BS7SqE2/",
"short_name": "Stewart",
"shirt_number": "35",
"country": "Jamaica",
"facts": [
{
"type": "7",
"time": "90'",
"description": "Wijnaldum G.",
"linked_player_hash": "f9KgUUZu"
}
],
"lineup": null,
"starting": false,
"long_name": "Kevin Stewart"
}
],
"coach": [
{
"hash": "x6CvOHH9",
"name": "Klopp J.",
"captain": "",
"detail_link": "/player/klopp-jurgen/x6CvOHH9/",
"short_name": "Klopp J.",
"shirt_number": "",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jurgen Klopp"
}
]
}
},
"referee": [
"Atkinson M."
],
"venue": [
"Stamford Bridge (London)"
],
"attendance": [
"41 514"
],
"referee_matched": [
"Martin Atkinson"
],
"referee_found": [
"Martin Atkinson"
],
"coach_matched": [
"Antonio Conte"
],
"gameHomeTeam": "Chelsea",
"home": {
"name": "Chelsea",
"detail_link": "/team/chelsea/4fGZN2oK",
"hash": "4fGZN2oK",
"names": [
"Chelsea",
"chelsea"
]
},
"gameAwayTeam": "Liverpool",
"away": {
"name": "Liverpool",
"detail_link": "/team/liverpool/lId4TMwf",
"hash": "lId4TMwf",
"names": [
"Liverpool",
"Liverpool (Eng)",
"liverpool"
]
},
"gameDate": "16/09/2016 - 21:00",
"annotations": [
{
"important": false,
"gameTime": "2 - 48:59",
"label": "",
"description": "It was a very watchable match. Great goals and there was plenty of action at both ends of the pitch. No regrets about following this game. Neither of the teams had any obvious superiority in this game. Both sides tried to prevail using combination football.",
"identified": "It was a very watchable match. Great goals and there was plenty of action at both ends of the pitch. No regrets about following this game. Neither of the teams had any obvious superiority in this game. Both sides tried to prevail using combination football.",
"anonymized": "It was a very watchable match. Great goals and there was plenty of action at both ends of the pitch. No regrets about following this game. Neither of the teams had any obvious superiority in this game. Both sides tried to prevail using combination football.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "2 - 48:19",
"label": "whistle",
"description": "That's it for today, Martin Atkinson 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": "2899000"
},
{
"important": false,
"gameTime": "2 - 47:46",
"label": "",
"description": "Flag goes up against Diego Costa (Chelsea) and the referee blows his whistle for offside.",
"identified": "Flag goes up against [PLAYER_vBw5nir8] ([TEAM_]) and the referee blows his whistle for offside.",
"anonymized": "Flag goes up against [PLAYER] ([TEAM]) and the referee blows his whistle for offside.",
"visibility": "shown",
"position": "2866000"
},
{
"important": false,
"gameTime": "2 - 47:00",
"label": "corner",
"description": "The resulting corner comes to nothing as Cesc Fabregas (Chelsea) sends it out of play.",
"identified": "The resulting corner comes to nothing as [PLAYER_YXIDwoe5] ([TEAM_]) sends it out of play.",
"anonymized": "The resulting corner comes to nothing as [PLAYER] ([TEAM]) sends it out of play.",
"visibility": "shown",
"position": "2820000"
},
{
"important": false,
"gameTime": "2 - 46:50",
"label": "",
"description": "Victor Moses (Chelsea) wastes a good opportunity as his pass into the box is blocked by the defence. Chelsea win a corner.",
"identified": "[PLAYER_W2HIQPkG] ([TEAM_]) wastes a good opportunity as his pass into the box is blocked by the defence. [TEAM_] win a corner.",
"anonymized": "[PLAYER] ([TEAM]) wastes a good opportunity as his pass into the box is blocked by the defence. [TEAM] win a corner.",
"visibility": "shown",
"position": "2810000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "Fourth official shows 3 min. of added time.",
"identified": "Fourth official shows 3 min. of added time.",
"anonymized": "Fourth official shows 3 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "2 - 44:25",
"label": "substitution",
"description": "Today's match ends for Georginio Wijnaldum who will be replaced by Kevin Stewart (Liverpool).",
"identified": "Today's match ends for [PLAYER_f9KgUUZu] who will be replaced by [PLAYER_2BS7SqE2] ([TEAM_]).",
"anonymized": "Today's match ends for [PLAYER] who will be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2665000"
},
{
"important": false,
"gameTime": "2 - 44:20",
"label": "",
"description": "Diego Costa (Chelsea) is flagged for offside.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) is flagged for offside.",
"anonymized": "[PLAYER] ([TEAM]) is flagged for offside.",
"visibility": "shown",
"position": "2660000"
},
{
"important": false,
"gameTime": "2 - 44:15",
"label": "",
"description": "Cesc Fabregas (Chelsea) unleashes a shot from a mid-range free kick that crashes into the defensive wall. The opposition's goalkeeper set it up perfectly.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) unleashes a shot from a mid-range free kick that crashes into the defensive wall. The opposition's goalkeeper set it up perfectly.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a shot from a mid-range free kick that crashes into the defensive wall. The opposition's goalkeeper set it up perfectly.",
"visibility": "shown",
"position": "2655000"
},
{
"important": false,
"gameTime": "2 - 44:07",
"label": "",
"description": "Cesc Fabregas (Chelsea) will take a free kick. Is he going to strike the ball directly at the goal? Let's find out!",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) will take a free kick. Is he going to strike the ball directly at the goal? Let's find out!",
"anonymized": "[PLAYER] ([TEAM]) will take a free kick. Is he going to strike the ball directly at the goal? Let's find out!",
"visibility": "shown",
"position": "2647000"
},
{
"important": true,
"gameTime": "2 - 42:57",
"label": "y-card",
"description": "Lucas Leiva (Liverpool) shouldn't be surprised it's a yellow from the ref, who cooled the situation down well.",
"identified": "[PLAYER_t41Fn0KA] ([TEAM_]) shouldn't be surprised it's a yellow from the ref, who cooled the situation down well.",
"anonymized": "[PLAYER] ([TEAM]) shouldn't be surprised it's a yellow from the ref, who cooled the situation down well.",
"visibility": "shown",
"position": "2577000"
},
{
"important": false,
"gameTime": "2 - 42:56",
"label": "",
"description": "Lucas Leiva (Liverpool) brings his opponent down with a tackle and Martin Atkinson blows his whistle for a foul. Chelsea have a free kick from a promising distance.",
"identified": "[PLAYER_t41Fn0KA] ([TEAM_]) brings his opponent down with a tackle and [REFEREE] blows his whistle for a foul. [TEAM_] have a free kick from a promising distance.",
"anonymized": "[PLAYER] ([TEAM]) brings his opponent down with a tackle and [REFEREE] blows his whistle for a foul. [TEAM] have a free kick from a promising distance.",
"visibility": "shown",
"position": "2576000"
},
{
"important": false,
"gameTime": "2 - 42:00",
"label": "",
"description": "Chelsea players are exchanging short passes with one another, waiting for the right moment to beat the opposition's defence.",
"identified": "[TEAM_] players are exchanging short passes with one another, waiting for the right moment to beat the opposition's defence.",
"anonymized": "[TEAM] players are exchanging short passes with one another, waiting for the right moment to beat the opposition's defence.",
"visibility": "shown",
"position": "2520000"
},
{
"important": false,
"gameTime": "2 - 41:50",
"label": "",
"description": "Victor Moses (Chelsea) 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.",
"identified": "[PLAYER_W2HIQPkG] ([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.",
"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.",
"visibility": "shown",
"position": "2510000"
},
{
"important": false,
"gameTime": "2 - 39:12",
"label": "",
"description": "One of the players from Liverpool times his run too early and the referee blows his whistle for offside.",
"identified": "One of the players from [TEAM_] times his run too early and the referee blows his whistle for offside.",
"anonymized": "One of the players from [TEAM] times his run too early and the referee blows his whistle for offside.",
"visibility": "shown",
"position": "2352000"
},
{
"important": true,
"gameTime": "2 - 38:50",
"label": "substitution",
"description": "Substitution. Oscar leaves the pitch and is replaced by Pedro (Chelsea).",
"identified": "Substitution. [PLAYER_KfKDzbEo] leaves the pitch and is replaced by [PLAYER_0f1tMqQl] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] leaves the pitch and is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2330000"
},
{
"important": true,
"gameTime": "2 - 38:48",
"label": "substitution",
"description": "The substitution is prepared. Cesc Fabregas (Chelsea) joins the action as a substitute, replacing Nemanja Matic.",
"identified": "The substitution is prepared. [PLAYER_YXIDwoe5] ([TEAM_]) joins the action as a substitute, replacing [PLAYER_Kty10JVG].",
"anonymized": "The substitution is prepared. [PLAYER] ([TEAM]) joins the action as a substitute, replacing [PLAYER].",
"visibility": "shown",
"position": "2328000"
},
{
"important": true,
"gameTime": "2 - 38:19",
"label": "substitution",
"description": "Antonio Conte has decided to substitute Willian and he is replaced by Victor Moses (Chelsea).",
"identified": "[COACH_23vSAc12] has decided to substitute [PLAYER_GSzdOhPI] and he is replaced by [PLAYER_W2HIQPkG] ([TEAM_]).",
"anonymized": "[COACH] has decided to substitute [PLAYER] and he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2299000"
},
{
"important": false,
"gameTime": "2 - 37:15",
"label": "corner",
"description": "Jordan Henderson (Liverpool) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"identified": "[PLAYER_UFMlUD6r] ([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": "2235000"
},
{
"important": true,
"gameTime": "2 - 36:57",
"label": "substitution",
"description": "We are about to witness a substitution. Lucas Leiva (Liverpool) is replacing Philippe Coutinho.",
"identified": "We are about to witness a substitution. [PLAYER_t41Fn0KA] ([TEAM_]) is replacing [PLAYER_QP6r8H7O].",
"anonymized": "We are about to witness a substitution. [PLAYER] ([TEAM]) is replacing [PLAYER].",
"visibility": "shown",
"position": "2217000"
},
{
"important": false,
"gameTime": "2 - 36:32",
"label": "",
"description": "Adam Lallana (Liverpool) gets to the rebound just outside the box, but his attempt is blocked by one of the defending players. The referee and his assistant both point at the corner flag. Liverpool will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_65ZQWgft] ([TEAM_]) gets to the rebound just outside the box, but his attempt is blocked by one of the defending players. The referee and his assistant both point at the corner flag. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) gets to the rebound just outside the box, but his attempt is blocked by one of the defending players. The referee and his assistant both point at the corner flag. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "2192000"
},
{
"important": true,
"gameTime": "2 - 35:57",
"label": "",
"description": "Thibaut Courtois makes a superb save to deny a header which was nodded towards the bottom right corner by Divock Origi (Liverpool) after a cross from the side.",
"identified": "[PLAYER_MVExOq3n] makes a superb save to deny a header which was nodded towards the bottom right corner by [PLAYER_jeRaNgKg] ([TEAM_]) after a cross from the side.",
"anonymized": "[PLAYER] makes a superb save to deny a header which was nodded towards the bottom right corner by [PLAYER] ([TEAM]) after a cross from the side.",
"visibility": "shown",
"position": "2157000"
},
{
"important": false,
"gameTime": "2 - 35:07",
"label": "",
"description": "Nemanja Matic (Chelsea) clips a neat ball into the box in the direction of N'Golo Kante, but he can't get on the end of the pass.",
"identified": "[PLAYER_Kty10JVG] ([TEAM_]) clips a neat ball into the box in the direction of [PLAYER_IkmsHsOR], but he can't get on the end of the pass.",
"anonymized": "[PLAYER] ([TEAM]) clips a neat ball into the box in the direction of [PLAYER], but he can't get on the end of the pass.",
"visibility": "shown",
"position": "2107000"
},
{
"important": false,
"gameTime": "2 - 34:15",
"label": "attendance",
"description": "The attendance for today's match is 41514.",
"identified": "The attendance for today's match is 41514.",
"anonymized": "The attendance for today's match is 41514.",
"visibility": "shown",
"position": "2055000"
},
{
"important": false,
"gameTime": "2 - 33:12",
"label": "",
"description": "Philippe Coutinho (Liverpool) picks up a pass inside the box and finds some space for a shot before unleashing a low drive goalwards, but one of the defending players blocks his effort.",
"identified": "[PLAYER_QP6r8H7O] ([TEAM_]) picks up a pass inside the box and finds some space for a shot before unleashing a low drive goalwards, but one of the defending players blocks his effort.",
"anonymized": "[PLAYER] ([TEAM]) picks up a pass inside the box and finds some space for a shot before unleashing a low drive goalwards, but one of the defending players blocks his effort.",
"visibility": "shown",
"position": "1992000"
},
{
"important": false,
"gameTime": "2 - 30:52",
"label": "",
"description": "A pass from Willian (Chelsea) is intercepted by Simon Mignolet and the move breaks down.",
"identified": "A pass from [PLAYER_GSzdOhPI] ([TEAM_]) is intercepted by [PLAYER_YVcnMAp6] and the move breaks down.",
"anonymized": "A pass from [PLAYER] ([TEAM]) is intercepted by [PLAYER] and the move breaks down.",
"visibility": "shown",
"position": "1852000"
},
{
"important": false,
"gameTime": "2 - 28:24",
"label": "",
"description": "Martin Atkinson blows for a foul after Branislav Ivanovic (Chelsea) was too aggressive in the battle for the ball.",
"identified": "[REFEREE] blows for a foul after [PLAYER_Qe3xUmHo] ([TEAM_]) was too aggressive in the battle for the ball.",
"anonymized": "[REFEREE] blows for a foul after [PLAYER] ([TEAM]) was too aggressive in the battle for the ball.",
"visibility": "shown",
"position": "1704000"
},
{
"important": false,
"gameTime": "2 - 28:09",
"label": "",
"description": "Sadio Mane (Liverpool) gives away a foul for a clumsy challenge. Referee Martin Atkinson saw the whole situation.",
"identified": "[PLAYER_xxskxOU0] ([TEAM_]) gives away a foul for a clumsy challenge. Referee [REFEREE] saw the whole situation.",
"anonymized": "[PLAYER] ([TEAM]) gives away a foul for a clumsy challenge. Referee [REFEREE] saw the whole situation.",
"visibility": "shown",
"position": "1689000"
},
{
"important": false,
"gameTime": "2 - 27:11",
"label": "",
"description": "James Milner (Liverpool) is penalised for holding. Martin Atkinson signals a set piece.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) is penalised for holding. [REFEREE] signals a set piece.",
"anonymized": "[PLAYER] ([TEAM]) is penalised for holding. [REFEREE] signals a set piece.",
"visibility": "shown",
"position": "1631000"
},
{
"important": false,
"gameTime": "2 - 26:22",
"label": "",
"description": "Sadio Mane (Liverpool) is clearly in an offside position after the ball is played through to him and the linesman raises his flag.",
"identified": "[PLAYER_xxskxOU0] ([TEAM_]) is clearly in an offside position after the ball is played through to him and the linesman raises his flag.",
"anonymized": "[PLAYER] ([TEAM]) is clearly in an offside position after the ball is played through to him and the linesman raises his flag.",
"visibility": "shown",
"position": "1582000"
},
{
"important": false,
"gameTime": "2 - 24:25",
"label": "corner",
"description": "Thibaut Courtois comes off his line to intercept the corner from James Milner (Liverpool).",
"identified": "[PLAYER_MVExOq3n] comes off his line to intercept the corner from [PLAYER_QLY3kAEt] ([TEAM_]).",
"anonymized": "[PLAYER] comes off his line to intercept the corner from [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1465000"
},
{
"important": false,
"gameTime": "2 - 24:01",
"label": "",
"description": "The resulting set piece, sent into the penalty area by James Milner (Liverpool), was easily dealt with by one of the defenders. Liverpool have a corner.",
"identified": "The resulting set piece, sent into the penalty area by [PLAYER_QLY3kAEt] ([TEAM_]), was easily dealt with by one of the defenders. [TEAM_] have a corner.",
"anonymized": "The resulting set piece, sent into the penalty area by [PLAYER] ([TEAM]), was easily dealt with by one of the defenders. [TEAM] have a corner.",
"visibility": "shown",
"position": "1441000"
},
{
"important": false,
"gameTime": "2 - 23:16",
"label": "",
"description": "Martin Atkinson blows his whistle after Oscar (Chelsea) kicks an opponent's legs instead of the ball. A free kick has been awarded to Liverpool.",
"identified": "[REFEREE] blows his whistle after [PLAYER_KfKDzbEo] ([TEAM_]) kicks an opponent's legs instead of the ball. A free kick has been awarded to [TEAM_].",
"anonymized": "[REFEREE] blows his whistle after [PLAYER] ([TEAM]) kicks an opponent's legs instead of the ball. A free kick has been awarded to [TEAM].",
"visibility": "shown",
"position": "1396000"
},
{
"important": false,
"gameTime": "2 - 20:36",
"label": "",
"description": "Martin Atkinson blows his whistle for a foul after Philippe Coutinho (Liverpool) hacks down one of his opponents.",
"identified": "[REFEREE] blows his whistle for a foul after [PLAYER_QP6r8H7O] ([TEAM_]) hacks down one of his opponents.",
"anonymized": "[REFEREE] blows his whistle for a foul after [PLAYER] ([TEAM]) hacks down one of his opponents.",
"visibility": "shown",
"position": "1236000"
},
{
"important": true,
"gameTime": "2 - 19:48",
"label": "",
"description": "This was a piece of cake for Simon Mignolet. Diego Costa (Chelsea) found himself some space after latching on to a pass, but his strike only went low to the middle of the goal and into the gloves of the prepared keeper.",
"identified": "This was a piece of cake for [PLAYER_YVcnMAp6]. [PLAYER_vBw5nir8] ([TEAM_]) found himself some space after latching on to a pass, but his strike only went low to the middle of the goal and into the gloves of the prepared keeper.",
"anonymized": "This was a piece of cake for [PLAYER]. [PLAYER] ([TEAM]) found himself some space after latching on to a pass, but his strike only went low to the middle of the goal and into the gloves of the prepared keeper.",
"visibility": "shown",
"position": "1188000"
},
{
"important": false,
"gameTime": "2 - 17:51",
"label": "",
"description": "Willian (Chelsea) sends the ball into the penalty area from a free kick a few yards outside the box. The cross is good, but the goalkeeper shows himself in a good light as he leaps high to intercept the ball.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) sends the ball into the penalty area from a free kick a few yards outside the box. The cross is good, but the goalkeeper shows himself in a good light as he leaps high to intercept the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends the ball into the penalty area from a free kick a few yards outside the box. The cross is good, but the goalkeeper shows himself in a good light as he leaps high to intercept the ball.",
"visibility": "shown",
"position": "1071000"
},
{
"important": false,
"gameTime": "2 - 17:38",
"label": "",
"description": "A player from Liverpool pulled an opponent down, forcing the referee to blow his whistle. Chelsea are awarded a free kick.",
"identified": "A player from [TEAM_] pulled an opponent down, forcing the referee to blow his whistle. [TEAM_] are awarded a free kick.",
"anonymized": "A player from [TEAM] pulled an opponent down, forcing the referee to blow his whistle. [TEAM] are awarded a free kick.",
"visibility": "shown",
"position": "1058000"
},
{
"important": true,
"gameTime": "2 - 15:25",
"label": "soccer-ball",
"description": "Nemanja Matic provides Diego Costa (Chelsea) with a nice pass inside the box. It allows him to finish with a low shot into the middle of the goal.",
"identified": "[PLAYER_Kty10JVG] provides [PLAYER_vBw5nir8] ([TEAM_]) with a nice pass inside the box. It allows him to finish with a low shot into the middle of the goal.",
"anonymized": "[PLAYER] provides [PLAYER] ([TEAM]) with a nice pass inside the box. It allows him to finish with a low shot into the middle of the goal.",
"visibility": "shown",
"position": "925000"
},
{
"important": false,
"gameTime": "2 - 13:34",
"label": "",
"description": "Oscar (Chelsea) 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.",
"identified": "[PLAYER_KfKDzbEo] ([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.",
"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.",
"visibility": "shown",
"position": "814000"
},
{
"important": true,
"gameTime": "2 - 11:58",
"label": "substitution",
"description": "Substitution. Daniel Sturridge will be replaced by Divock Origi (Liverpool).",
"identified": "Substitution. [PLAYER_fwlDnzTg] will be replaced by [PLAYER_jeRaNgKg] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] will be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "718000"
},
{
"important": false,
"gameTime": "2 - 11:42",
"label": "",
"description": "The ball is cleared after Branislav Ivanovic (Chelsea) attempted to dribble past an opposing player. The ball is off of the pitch and it's a goal kick for Liverpool.",
"identified": "The ball is cleared after [PLAYER_Qe3xUmHo] ([TEAM_]) attempted to dribble past an opposing player. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "702000"
},
{
"important": false,
"gameTime": "2 - 10:07",
"label": "",
"description": "Willian (Chelsea) produces a poor pass. He attempts to get the ball into the box but it's hacked away.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) produces a poor pass. He attempts to get the ball into the box but it's hacked away.",
"anonymized": "[PLAYER] ([TEAM]) produces a poor pass. He attempts to get the ball into the box but it's hacked away.",
"visibility": "shown",
"position": "607000"
},
{
"important": false,
"gameTime": "2 - 07:47",
"label": "",
"description": "N'Golo Kante (Chelsea) fails to score from close range. He picks up a rebound, but sends it wide of the target!",
"identified": "[PLAYER_IkmsHsOR] ([TEAM_]) fails to score from close range. He picks up a rebound, but sends it wide of the target!",
"anonymized": "[PLAYER] ([TEAM]) fails to score from close range. He picks up a rebound, but sends it wide of the target!",
"visibility": "shown",
"position": "467000"
},
{
"important": false,
"gameTime": "2 - 06:50",
"label": "",
"description": "Willian (Chelsea) serves up a nice cross, but Simon Mignolet punches the ball away.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) serves up a nice cross, but [PLAYER_YVcnMAp6] punches the ball away.",
"anonymized": "[PLAYER] ([TEAM]) serves up a nice cross, but [PLAYER] punches the ball away.",
"visibility": "shown",
"position": "410000"
},
{
"important": false,
"gameTime": "2 - 06:34",
"label": "",
"description": "Chelsea enjoy a period of possession as they are exchanging some passes and waiting for an opportunity to strike.",
"identified": "[TEAM_] enjoy a period of possession as they are exchanging some passes and waiting for an opportunity to strike.",
"anonymized": "[TEAM] enjoy a period of possession as they are exchanging some passes and waiting for an opportunity to strike.",
"visibility": "shown",
"position": "394000"
},
{
"important": false,
"gameTime": "2 - 04:33",
"label": "",
"description": "Philippe Coutinho (Liverpool) connects with a pass but sees his shot from the edge of the box blocked.",
"identified": "[PLAYER_QP6r8H7O] ([TEAM_]) connects with a pass but sees his shot from the edge of the box blocked.",
"anonymized": "[PLAYER] ([TEAM]) connects with a pass but sees his shot from the edge of the box blocked.",
"visibility": "shown",
"position": "273000"
},
{
"important": false,
"gameTime": "2 - 03:17",
"label": "",
"description": "Jordan Henderson (Liverpool) carelessly slides into the feet of his opponent and he'll be lucky to avoid punishment. Martin Atkinson blows for the foul but keeps his cards in his pocket on this occasion.",
"identified": "[PLAYER_UFMlUD6r] ([TEAM_]) carelessly slides into the feet of his opponent and he'll be lucky to avoid punishment. [REFEREE] blows for the foul but keeps his cards in his pocket on this occasion.",
"anonymized": "[PLAYER] ([TEAM]) carelessly slides into the feet of his opponent and he'll be lucky to avoid punishment. [REFEREE] blows for the foul but keeps his cards in his pocket on this occasion.",
"visibility": "shown",
"position": "197000"
},
{
"important": false,
"gameTime": "2 - 02:31",
"label": "",
"description": "Branislav Ivanovic (Chelsea) pulls the shirt of his opponent and only escapes without punishment due to the benevolence of the referee.",
"identified": "[PLAYER_Qe3xUmHo] ([TEAM_]) pulls the shirt of his opponent and only escapes without punishment due to the benevolence of the referee.",
"anonymized": "[PLAYER] ([TEAM]) pulls the shirt of his opponent and only escapes without punishment due to the benevolence of the referee.",
"visibility": "shown",
"position": "151000"
},
{
"important": false,
"gameTime": "2 - 01:38",
"label": "",
"description": "One of the defenders reacts at the last minute to brilliantly block a pass from Willian (Chelsea). The ball goes out of play and Liverpool will have a goal kick.",
"identified": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER_GSzdOhPI] ([TEAM_]). The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER] ([TEAM]). The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "98000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The half-time break is over and the second half is about to start.",
"identified": "The half-time break is over and the second half is about to start.",
"anonymized": "The half-time break is over and the second half is about to start.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 45:59",
"label": "",
"description": "The fans must be pleased so far with the entertainment on the pitch. Let's hope the players don't lose their passion and determination during the half-time break. The away side are dominant and dictating the tempo of the game, mainly because of their higher activity and more accurate passing. The home team makes a lot of passes and attempts to maintain possession. The same goes for the away side.",
"identified": "The fans must be pleased so far with the entertainment on the pitch. Let's hope the players don't lose their passion and determination during the half-time break. The away side are dominant and dictating the tempo of the game, mainly because of their higher activity and more accurate passing. The home team makes a lot of passes and attempts to maintain possession. The same goes for the away side.",
"anonymized": "The fans must be pleased so far with the entertainment on the pitch. Let's hope the players don't lose their passion and determination during the half-time break. The away side are dominant and dictating the tempo of the game, mainly because of their higher activity and more accurate passing. The home team makes a lot of passes and attempts to maintain possession. The same goes for the away side.",
"visibility": "shown",
"position": "2759000"
},
{
"important": true,
"gameTime": "1 - 45:58",
"label": "whistle",
"description": "The match has reached half-time.",
"identified": "The match has reached half-time.",
"anonymized": "The match has reached half-time.",
"visibility": "shown",
"position": "2758000"
},
{
"important": true,
"gameTime": "1 - 45:24",
"label": "y-card",
"description": "The referee gives a yellow card to Willian (Chelsea) for talking back. He must be careful for the remainder of the match.",
"identified": "The referee gives a yellow card to [PLAYER_GSzdOhPI] ([TEAM_]) for talking back. He must be careful for the remainder of the match.",
"anonymized": "The referee gives a yellow card to [PLAYER] ([TEAM]) for talking back. He must be careful for the remainder of the match.",
"visibility": "shown",
"position": "2724000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "1 min. of stoppage-time to be played.",
"identified": "1 min. of stoppage-time to be played.",
"anonymized": "1 min. of stoppage-time to be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 44:48",
"label": "",
"description": "Jordan Henderson (Liverpool) takes a short free kick.",
"identified": "[PLAYER_UFMlUD6r] ([TEAM_]) takes a short free kick.",
"anonymized": "[PLAYER] ([TEAM]) takes a short free kick.",
"visibility": "shown",
"position": "2688000"
},
{
"important": false,
"gameTime": "1 - 44:06",
"label": "",
"description": "N'Golo Kante (Chelsea) tackles a bit over-zealously and Martin Atkinson blows for a foul. Liverpool are awarded a free kick. Let's see what they create from this.",
"identified": "[PLAYER_IkmsHsOR] ([TEAM_]) tackles a bit over-zealously and [REFEREE] blows for a foul. [TEAM_] are awarded a free kick. Let's see what they create from this.",
"anonymized": "[PLAYER] ([TEAM]) tackles a bit over-zealously and [REFEREE] blows for a foul. [TEAM] are awarded a free kick. Let's see what they create from this.",
"visibility": "shown",
"position": "2646000"
},
{
"important": false,
"gameTime": "1 - 43:42",
"label": "",
"description": "Branislav Ivanovic (Chelsea) peeled away from his marker and got on the end of the resulting corner, but he sends his header straight at the goalkeeper.",
"identified": "[PLAYER_Qe3xUmHo] ([TEAM_]) peeled away from his marker and got on the end of the resulting corner, but he sends his header straight at the goalkeeper.",
"anonymized": "[PLAYER] ([TEAM]) peeled away from his marker and got on the end of the resulting corner, but he sends his header straight at the goalkeeper.",
"visibility": "shown",
"position": "2622000"
},
{
"important": false,
"gameTime": "1 - 43:19",
"label": "corner",
"description": "Willian (Chelsea) steps up to send the ball in.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) steps up to send the ball in.",
"anonymized": "[PLAYER] ([TEAM]) steps up to send the ball in.",
"visibility": "shown",
"position": "2599000"
},
{
"important": false,
"gameTime": "1 - 43:05",
"label": "",
"description": "Diego Costa (Chelsea) races towards goal but the defender gets back well to make a challenge. Chelsea earn a corner.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. [TEAM_] earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. [TEAM] earn a corner.",
"visibility": "shown",
"position": "2585000"
},
{
"important": false,
"gameTime": "1 - 42:41",
"label": "",
"description": "Nathaniel Clyne (Liverpool) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"identified": "[PLAYER_Eo9X2cTu] ([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": "2561000"
},
{
"important": false,
"gameTime": "1 - 40:59",
"label": "",
"description": "Joel Matip (Liverpool) brings his opponent down. Martin Atkinson has a clear sight of it and blows his whistle for a foul.",
"identified": "[PLAYER_tpHWp8Am] ([TEAM_]) brings his opponent down. [REFEREE] has a clear sight of it and blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) brings his opponent down. [REFEREE] has a clear sight of it and blows his whistle for a foul.",
"visibility": "shown",
"position": "2459000"
},
{
"important": false,
"gameTime": "1 - 39:17",
"label": "",
"description": "Willian (Chelsea) rises above the defence to meet a cross from the corner. His timing is good, but he directs his header just a few inches wide of the left post.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) rises above the defence to meet a cross from the corner. His timing is good, but he directs his header just a few inches wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) rises above the defence to meet a cross from the corner. His timing is good, but he directs his header just a few inches wide of the left post.",
"visibility": "shown",
"position": "2357000"
},
{
"important": false,
"gameTime": "1 - 39:01",
"label": "corner",
"description": "Willian (Chelsea) prepares to take a corner kick.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) prepares to take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) prepares to take a corner kick.",
"visibility": "shown",
"position": "2341000"
},
{
"important": false,
"gameTime": "1 - 38:40",
"label": "",
"description": "Chelsea keep the ball well and push forward with purpose, but here comes an interception from the opposition. The ball goes behind for a corner. Chelsea will have an opportunity to threaten the opposition's goal.",
"identified": "[TEAM_] keep the ball well and push forward with purpose, but here comes an interception from the opposition. The ball goes behind for a corner. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[TEAM] keep the ball well and push forward with purpose, but here comes an interception from the opposition. The ball goes behind for a corner. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "2320000"
},
{
"important": false,
"gameTime": "1 - 38:20",
"label": "corner",
"description": "Willian (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_GSzdOhPI] ([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": "2300000"
},
{
"important": false,
"gameTime": "1 - 38:05",
"label": "corner",
"description": "Willian (Chelsea) 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. Chelsea will have a chance to score from a corner kick.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety. [TEAM_] will have a chance to score from 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. [TEAM] will have a chance to score from a corner kick.",
"visibility": "shown",
"position": "2285000"
},
{
"important": false,
"gameTime": "1 - 37:46",
"label": "",
"description": "Eden Hazard (Chelsea) looks to break free, but an opposing player clears the ball away. Chelsea force their opponents to concede a corner.",
"identified": "[PLAYER_QH2of5sJ] ([TEAM_]) looks to break free, but an opposing player clears the ball away. [TEAM_] force their opponents to concede a corner.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away. [TEAM] force their opponents to concede a corner.",
"visibility": "shown",
"position": "2266000"
},
{
"important": false,
"gameTime": "1 - 37:32",
"label": "",
"description": "Willian (Chelsea) takes the free kick but it is cleared by the first defender.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) takes the free kick but it is cleared by the first defender.",
"anonymized": "[PLAYER] ([TEAM]) takes the free kick but it is cleared by the first defender.",
"visibility": "shown",
"position": "2252000"
},
{
"important": false,
"gameTime": "1 - 37:14",
"label": "",
"description": "One of the Liverpool players unfairly tackled his opponent and conceded a foul. Chelsea win a free kick.",
"identified": "One of the [TEAM_] players unfairly tackled his opponent and conceded a foul. [TEAM_] win a free kick.",
"anonymized": "One of the [TEAM] players unfairly tackled his opponent and conceded a foul. [TEAM] win a free kick.",
"visibility": "shown",
"position": "2234000"
},
{
"important": true,
"gameTime": "1 - 35:12",
"label": "soccer-ball",
"description": "Jordan Henderson (Liverpool) quickly gets to a rebound. He is not worried how far out he is and slams the ball towards the goal. To the amazement of all, it goes all the way into the top right corner. He makes it 0:1 with this magnificent strike.",
"identified": "[PLAYER_UFMlUD6r] ([TEAM_]) quickly gets to a rebound. He is not worried how far out he is and slams the ball towards the goal. To the amazement of all, it goes all the way into the top right corner. He makes it 0:1 with this magnificent strike.",
"anonymized": "[PLAYER] ([TEAM]) quickly gets to a rebound. He is not worried how far out he is and slams the ball towards the goal. To the amazement of all, it goes all the way into the top right corner. He makes it 0:1 with this magnificent strike.",
"visibility": "shown",
"position": "2112000"
},
{
"important": false,
"gameTime": "1 - 33:59",
"label": "",
"description": "David Luiz (Chelsea) creates himself some space around the penalty spot and connects with the free kick. His accurate header would have probably ended up inside the right post, but Simon Mignolet pulls off a decent save to thwart him.",
"identified": "[PLAYER_G04qmSno] ([TEAM_]) creates himself some space around the penalty spot and connects with the free kick. His accurate header would have probably ended up inside the right post, but [PLAYER_YVcnMAp6] pulls off a decent save to thwart him.",
"anonymized": "[PLAYER] ([TEAM]) creates himself some space around the penalty spot and connects with the free kick. His accurate header would have probably ended up inside the right post, but [PLAYER] pulls off a decent save to thwart him.",
"visibility": "shown",
"position": "2039000"
},
{
"important": false,
"gameTime": "1 - 33:32",
"label": "",
"description": "Willian (Chelsea) takes a direct free kick.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) takes a direct free kick.",
"anonymized": "[PLAYER] ([TEAM]) takes a direct free kick.",
"visibility": "shown",
"position": "2012000"
},
{
"important": false,
"gameTime": "1 - 32:46",
"label": "",
"description": "Nathaniel Clyne (Liverpool) fouls an opponent. At least that's what referee Martin Atkinson signals. A free kick to Chelsea.",
"identified": "[PLAYER_Eo9X2cTu] ([TEAM_]) fouls an opponent. At least that's what referee [REFEREE] signals. A free kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) fouls an opponent. At least that's what referee [REFEREE] signals. A free kick to [TEAM].",
"visibility": "shown",
"position": "1966000"
},
{
"important": false,
"gameTime": "1 - 31:28",
"label": "",
"description": "Chelsea are ruled offside.",
"identified": "[TEAM_] are ruled offside.",
"anonymized": "[TEAM] are ruled offside.",
"visibility": "shown",
"position": "1888000"
},
{
"important": false,
"gameTime": "1 - 30:56",
"label": "corner",
"description": "Willian (Chelsea) takes the corner.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) takes the corner.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner.",
"visibility": "shown",
"position": "1856000"
},
{
"important": false,
"gameTime": "1 - 30:23",
"label": "",
"description": "Willian (Chelsea) fails to send a pass into the box as his effort is cut out. The referee blows his whistle, Chelsea are awarded a corner kick.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) fails to send a pass into the box as his effort is cut out. The referee blows his whistle, [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) fails to send a pass into the box as his effort is cut out. The referee blows his whistle, [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "1823000"
},
{
"important": false,
"gameTime": "1 - 28:28",
"label": "",
"description": "Nathaniel Clyne (Liverpool) was too forceful with his tackle and Martin Atkinson interrupted the game to signal a free kick.",
"identified": "[PLAYER_Eo9X2cTu] ([TEAM_]) was too forceful with his tackle and [REFEREE] interrupted the game to signal a free kick.",
"anonymized": "[PLAYER] ([TEAM]) was too forceful with his tackle and [REFEREE] interrupted the game to signal a free kick.",
"visibility": "shown",
"position": "1708000"
},
{
"important": false,
"gameTime": "1 - 28:05",
"label": "",
"description": "N'Golo Kante (Chelsea) receives a pass and decides to smash the ball from long range, but his poor effort sails high over the bar.",
"identified": "[PLAYER_IkmsHsOR] ([TEAM_]) receives a pass and decides to smash the ball from long range, but his poor effort sails high over the bar.",
"anonymized": "[PLAYER] ([TEAM]) receives a pass and decides to smash the ball from long range, but his poor effort sails high over the bar.",
"visibility": "shown",
"position": "1685000"
},
{
"important": false,
"gameTime": "1 - 26:08",
"label": "",
"description": "David Luiz (Chelsea) collects an inch-perfect pass and strikes the ball from far out, but his shot is blocked.",
"identified": "[PLAYER_G04qmSno] ([TEAM_]) collects an inch-perfect pass and strikes the ball from far out, but his shot is blocked.",
"anonymized": "[PLAYER] ([TEAM]) collects an inch-perfect pass and strikes the ball from far out, but his shot is blocked.",
"visibility": "shown",
"position": "1568000"
},
{
"important": false,
"gameTime": "1 - 25:51",
"label": "",
"description": "Nemanja Matic (Chelsea) weaves his way through opponents and strikes the ball from the edge of the area, but it's blocked by a defender.",
"identified": "[PLAYER_Kty10JVG] ([TEAM_]) weaves his way through opponents and strikes the ball from the edge of the area, but it's blocked by a defender.",
"anonymized": "[PLAYER] ([TEAM]) weaves his way through opponents and strikes the ball from the edge of the area, but it's blocked by a defender.",
"visibility": "shown",
"position": "1551000"
},
{
"important": false,
"gameTime": "1 - 25:19",
"label": "",
"description": "A brilliant individual effort! Daniel Sturridge (Liverpool) tricks his way past challenges into the box and drags his shot narrowly wide of the right post.",
"identified": "A brilliant individual effort! [PLAYER_fwlDnzTg] ([TEAM_]) tricks his way past challenges into the box and drags his shot narrowly wide of the right post.",
"anonymized": "A brilliant individual effort! [PLAYER] ([TEAM]) tricks his way past challenges into the box and drags his shot narrowly wide of the right post.",
"visibility": "shown",
"position": "1519000"
},
{
"important": false,
"gameTime": "1 - 24:12",
"label": "corner",
"description": "Jordan Henderson (Liverpool) fails to produce a decent cross from the corner kick. The ball goes well out of play.",
"identified": "[PLAYER_UFMlUD6r] ([TEAM_]) fails to produce a decent cross from the corner kick. The ball goes well out of play.",
"anonymized": "[PLAYER] ([TEAM]) fails to produce a decent cross from the corner kick. The ball goes well out of play.",
"visibility": "shown",
"position": "1452000"
},
{
"important": false,
"gameTime": "1 - 23:55",
"label": "",
"description": "Joel Matip (Liverpool) tries to slide the ball through to a teammate but it's well blocked by a defender. The referee points to the corner flag. It's a corner to Liverpool.",
"identified": "[PLAYER_tpHWp8Am] ([TEAM_]) tries to slide the ball through to a teammate but it's well blocked by a defender. The referee points to the corner flag. It's a corner to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) tries to slide the ball through to a teammate but it's well blocked by a defender. The referee points to the corner flag. It's a corner to [TEAM].",
"visibility": "shown",
"position": "1435000"
},
{
"important": false,
"gameTime": "1 - 23:11",
"label": "",
"description": "David Luiz (Chelsea) seems to be alright and is okay to carry on.",
"identified": "[PLAYER_G04qmSno] ([TEAM_]) seems to be alright and is okay to carry on.",
"anonymized": "[PLAYER] ([TEAM]) seems to be alright and is okay to carry on.",
"visibility": "shown",
"position": "1391000"
},
{
"important": false,
"gameTime": "1 - 22:00",
"label": "injury",
"description": "David Luiz (Chelsea) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"identified": "[PLAYER_G04qmSno] ([TEAM_]) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"anonymized": "[PLAYER] ([TEAM]) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"visibility": "shown",
"position": "1320000"
},
{
"important": false,
"gameTime": "1 - 21:31",
"label": "",
"description": "Daniel Sturridge (Liverpool) is having a lively performance. He is causing problems and wanting the ball at every opportunity.",
"identified": "[PLAYER_fwlDnzTg] ([TEAM_]) is having a lively performance. He is causing problems and wanting the ball at every opportunity.",
"anonymized": "[PLAYER] ([TEAM]) is having a lively performance. He is causing problems and wanting the ball at every opportunity.",
"visibility": "shown",
"position": "1291000"
},
{
"important": false,
"gameTime": "1 - 20:09",
"label": "",
"description": "The linesman raises his flag. Diego Costa (Chelsea) is adjudged offside.",
"identified": "The linesman raises his flag. [PLAYER_vBw5nir8] ([TEAM_]) is adjudged offside.",
"anonymized": "The linesman raises his flag. [PLAYER] ([TEAM]) is adjudged offside.",
"visibility": "shown",
"position": "1209000"
},
{
"important": true,
"gameTime": "1 - 16:55",
"label": "soccer-ball",
"description": "What a hit! Dejan Lovren (Liverpool) shows good composure inside the box to fire a first-time shot inside the left post. 0:1.",
"identified": "What a hit! [PLAYER_GAcQF9Z6] ([TEAM_]) shows good composure inside the box to fire a first-time shot inside the left post. 0:1.",
"anonymized": "What a hit! [PLAYER] ([TEAM]) shows good composure inside the box to fire a first-time shot inside the left post. 0:1.",
"visibility": "shown",
"position": "1015000"
},
{
"important": false,
"gameTime": "1 - 16:50",
"label": "",
"description": "Philippe Coutinho (Liverpool) takes the ball and sets it for the free kick.",
"identified": "[PLAYER_QP6r8H7O] ([TEAM_]) takes the ball and sets it for the free kick.",
"anonymized": "[PLAYER] ([TEAM]) takes the ball and sets it for the free kick.",
"visibility": "shown",
"position": "1010000"
},
{
"important": false,
"gameTime": "1 - 16:08",
"label": "",
"description": "Branislav Ivanovic (Chelsea) makes a strong challenge and Martin Atkinson blows for a foul. Liverpool have a free kick.",
"identified": "[PLAYER_Qe3xUmHo] ([TEAM_]) makes a strong challenge and [REFEREE] blows for a foul. [TEAM_] have a free kick.",
"anonymized": "[PLAYER] ([TEAM]) makes a strong challenge and [REFEREE] blows for a foul. [TEAM] have a free kick.",
"visibility": "shown",
"position": "968000"
},
{
"important": false,
"gameTime": "1 - 14:44",
"label": "",
"description": "Eden Hazard (Chelsea) is offside and the linesman raises his flag.",
"identified": "[PLAYER_QH2of5sJ] ([TEAM_]) is offside and the linesman raises his flag.",
"anonymized": "[PLAYER] ([TEAM]) is offside and the linesman raises his flag.",
"visibility": "shown",
"position": "884000"
},
{
"important": false,
"gameTime": "1 - 13:51",
"label": "",
"description": "What a miskick by Jordan Henderson (Liverpool). He smashes a volley from long distance that goes into the stands.",
"identified": "What a miskick by [PLAYER_UFMlUD6r] ([TEAM_]). He smashes a volley from long distance that goes into the stands.",
"anonymized": "What a miskick by [PLAYER] ([TEAM]). He smashes a volley from long distance that goes into the stands.",
"visibility": "shown",
"position": "831000"
},
{
"important": false,
"gameTime": "1 - 13:34",
"label": "",
"description": "Daniel Sturridge (Liverpool) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal.",
"identified": "[PLAYER_fwlDnzTg] ([TEAM_]) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal.",
"anonymized": "[PLAYER] ([TEAM]) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal.",
"visibility": "shown",
"position": "814000"
},
{
"important": false,
"gameTime": "1 - 13:07",
"label": "corner",
"description": "The resulting corner from Jordan Henderson (Liverpool) is cleared.",
"identified": "The resulting corner from [PLAYER_UFMlUD6r] ([TEAM_]) is cleared.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "787000"
},
{
"important": false,
"gameTime": "1 - 12:37",
"label": "",
"description": "Nathaniel Clyne (Liverpool) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat. The referee and one of his assistants signal for a corner kick to Liverpool.",
"identified": "[PLAYER_Eo9X2cTu] ([TEAM_]) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat. The referee and one of his assistants signal for a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat. The referee and one of his assistants signal for a corner kick to [TEAM].",
"visibility": "shown",
"position": "757000"
}
]
} |