File size: 92,845 Bytes
23b035e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 |
{
"timestamp": "1443285000",
"score": "2 - 2",
"round": "7",
"teams": [
"Newcastle Utd",
"Chelsea"
],
"lineup": {
"home": {
"tactic": "1-4-4-2",
"players": [
{
"hash": "bZ66wenk",
"name": "Anita V.",
"captain": "",
"detail_link": "/player/anita-vurnon/bZ66wenk/",
"short_name": "Anita",
"shirt_number": "8",
"country": "Cura\u00e7ao",
"facts": [
{
"type": "8",
"time": "42' Perez A. (Anita V.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Vurnon Anita"
},
{
"hash": "Cty9ea76",
"name": "Colback J.",
"captain": "",
"detail_link": "/player/colback-jack/Cty9ea76/",
"short_name": "Colback",
"shirt_number": "4",
"country": "England",
"facts": [
{
"type": "1",
"time": "34' Colback J. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "54'",
"description": "Obertan G.",
"linked_player_hash": "p2TzSgBN"
}
],
"lineup": 7,
"starting": true,
"long_name": "Jack Colback"
},
{
"hash": "lrjrXLXB",
"name": "Coloccini F.",
"captain": "(C)",
"detail_link": "/player/coloccini-fabricio/lrjrXLXB/",
"short_name": "Coloccini",
"shirt_number": "2",
"country": "Argentina",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Fabricio Coloccini"
},
{
"hash": "Kfrvwu25",
"name": "Janmaat D.",
"captain": "",
"detail_link": "/player/janmaat-daryl/Kfrvwu25/",
"short_name": "Janmaat",
"shirt_number": "22",
"country": "Netherlands",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Daryl Janmaat"
},
{
"hash": "dAl9I3A3",
"name": "Krul T.",
"captain": "",
"detail_link": "/player/krul-tim/dAl9I3A3/",
"short_name": "Krul",
"shirt_number": "1",
"country": "Netherlands",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Tim Krul"
},
{
"hash": "jwWuH3uU",
"name": "Mbabu K.",
"captain": "",
"detail_link": "/player/mbabu-kevin/jwWuH3uU/",
"short_name": "Mbabu",
"shirt_number": "43",
"country": "Switzerland",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Kevin Mbabu"
},
{
"hash": "U5hu6oJh",
"name": "Mbemba Ch.",
"captain": "",
"detail_link": "/player/mbemba-chancel/U5hu6oJh/",
"short_name": "Mbemba",
"shirt_number": "18",
"country": "DR Congo",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Chancel Mbemba"
},
{
"hash": "OYOr8rkm",
"name": "Mitrovic A.",
"captain": "",
"detail_link": "/player/mitrovic-aleksandar/OYOr8rkm/",
"short_name": "Mitrovic",
"shirt_number": "45",
"country": "Serbia",
"facts": [
{
"type": "6",
"time": "85'",
"description": "Toney I.",
"linked_player_hash": "W6A3dA7c"
}
],
"lineup": 11,
"starting": true,
"long_name": "Aleksandar Mitrovic"
},
{
"hash": "jVHfHxGn",
"name": "Perez A.",
"captain": "",
"detail_link": "/player/perez-ayoze/jVHfHxGn/",
"short_name": "Perez",
"shirt_number": "17",
"country": "Spain",
"facts": [
{
"type": "3",
"time": "42' Perez A. (Anita V.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "8",
"time": "60' Wijnaldum G. (Perez A.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Ayoze Perez"
},
{
"hash": "4nQc78qp",
"name": "Sissoko M.",
"captain": "",
"detail_link": "/player/sissoko-moussa/4nQc78qp/",
"short_name": "Sissoko",
"shirt_number": "7",
"country": "France",
"facts": [
{
"type": "6",
"time": "90+2'",
"description": "de Jong S.",
"linked_player_hash": "6qric5Ic"
}
],
"lineup": 6,
"starting": true,
"long_name": "Moussa Sissoko"
},
{
"hash": "f9KgUUZu",
"name": "Wijnaldum G.",
"captain": "",
"detail_link": "/player/wijnaldum-georginio/f9KgUUZu/",
"short_name": "Wijnaldum",
"shirt_number": "5",
"country": "Netherlands",
"facts": [
{
"type": "3",
"time": "60' Wijnaldum G. (Perez A.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Georginio Wijnaldum"
},
{
"hash": "6qric5Ic",
"name": "de Jong S.",
"captain": "",
"detail_link": "/player/de-jong-siem/6qric5Ic/",
"short_name": "De Jong",
"shirt_number": "10",
"country": "Netherlands",
"facts": [
{
"type": "7",
"time": "90+2'",
"description": "Sissoko M.",
"linked_player_hash": "4nQc78qp"
}
],
"lineup": null,
"starting": false,
"long_name": "Siem De Jong"
},
{
"hash": "zLABXEi8",
"name": "Elliot R.",
"captain": "",
"detail_link": "/player/elliot-rob/zLABXEi8/",
"short_name": "Elliot",
"shirt_number": "21",
"country": "Ireland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Rob Elliot"
},
{
"hash": "0fPiq0ST",
"name": "Lascelles J.",
"captain": "",
"detail_link": "/player/lascelles-jamaal/0fPiq0ST/",
"short_name": "Lascelles",
"shirt_number": "15",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jamaal Lascelles"
},
{
"hash": "p2TzSgBN",
"name": "Obertan G.",
"captain": "",
"detail_link": "/player/obertan-gabriel/p2TzSgBN/",
"short_name": "Obertan",
"shirt_number": "14",
"country": "France",
"facts": [
{
"type": "7",
"time": "54'",
"description": "Colback J.",
"linked_player_hash": "Cty9ea76"
}
],
"lineup": null,
"starting": false,
"long_name": "Gabriel Obertan"
},
{
"hash": "SMbMSc26",
"name": "Thauvin F.",
"captain": "",
"detail_link": "/player/thauvin-florian/SMbMSc26/",
"short_name": "Thauvin",
"shirt_number": "20",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Florian Thauvin"
},
{
"hash": "W6A3dA7c",
"name": "Toney I.",
"captain": "",
"detail_link": "/player/toney-ivan/W6A3dA7c/",
"short_name": "Toney",
"shirt_number": "36",
"country": "England",
"facts": [
{
"type": "7",
"time": "85'",
"description": "Mitrovic A.",
"linked_player_hash": "OYOr8rkm"
}
],
"lineup": null,
"starting": false,
"long_name": "Ivan Toney"
},
{
"hash": "SIMjXslg",
"name": "Williamson M.",
"captain": "",
"detail_link": "/player/williamson-mike/SIMjXslg/",
"short_name": "Williamson",
"shirt_number": "6",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mike Williamson"
}
],
"coach": [
{
"hash": "KdMGZ4Li",
"name": "McClaren S.",
"captain": "",
"detail_link": "/player/mcclaren-steve/KdMGZ4Li/",
"short_name": "McClaren S.",
"shirt_number": "",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Steve McClaren"
}
]
},
"away": {
"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": "xO2Ce0IG",
"name": "Begovic A.",
"captain": "",
"detail_link": "/player/begovic-asmir/xO2Ce0IG/",
"short_name": "Begovic",
"shirt_number": "1",
"country": "Bosnia and Herzegovina",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Asmir Begovic"
},
{
"hash": "pKpkgR1U",
"name": "Cahill G.",
"captain": "",
"detail_link": "/player/cahill-gary/pKpkgR1U/",
"short_name": "Cahill",
"shirt_number": "24",
"country": "England",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Gary Cahill"
},
{
"hash": "YXIDwoe5",
"name": "Fabregas C.",
"captain": "",
"detail_link": "/player/fabregas-cesc/YXIDwoe5/",
"short_name": "Fabregas",
"shirt_number": "4",
"country": "Spain",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Cesc Fabregas"
},
{
"hash": "QH2of5sJ",
"name": "Hazard E.",
"captain": "",
"detail_link": "/player/hazard-eden/QH2of5sJ/",
"short_name": "Hazard",
"shirt_number": "10",
"country": "Belgium",
"facts": [
{
"type": "8",
"time": "79' Ramires (Hazard E.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"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": [
{
"type": "1",
"time": "68' Ivanovic B. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Branislav Ivanovic"
},
{
"hash": "Kty10JVG",
"name": "Matic N.",
"captain": "",
"detail_link": "/player/matic-nemanja/Kty10JVG/",
"short_name": "Matic",
"shirt_number": "21",
"country": "Serbia",
"facts": [
{
"type": "6",
"time": "61'",
"description": "Willian",
"linked_player_hash": "GSzdOhPI"
}
],
"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": "73'",
"description": "Ramires",
"linked_player_hash": "8APqwh2k"
}
],
"lineup": 9,
"starting": true,
"long_name": "Oscar"
},
{
"hash": "0f1tMqQl",
"name": "Pedro",
"captain": "",
"detail_link": "/player/pedro/0f1tMqQl/",
"short_name": "Pedro",
"shirt_number": "17",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "90+7' Pedro (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Pedro"
},
{
"hash": "hYsYT4nh",
"name": "Remy L.",
"captain": "",
"detail_link": "/player/remy-loic/hYsYT4nh/",
"short_name": "Remy",
"shirt_number": "18",
"country": "France",
"facts": [
{
"type": "6",
"time": "61'",
"description": "Falcao R.",
"linked_player_hash": "2oMimkAU"
}
],
"lineup": 11,
"starting": true,
"long_name": "Loic Remy"
},
{
"hash": "SKosf7jl",
"name": "Zouma K.",
"captain": "",
"detail_link": "/player/zouma-kurt/SKosf7jl/",
"short_name": "Zouma",
"shirt_number": "5",
"country": "France",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Kurt Zouma"
},
{
"hash": "b562tvIJ",
"name": "Blackman J.",
"captain": "",
"detail_link": "/player/blackman-jamal/b562tvIJ/",
"short_name": "Blackman",
"shirt_number": "27",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jamal Blackman"
},
{
"hash": "2oMimkAU",
"name": "Falcao R.",
"captain": "",
"detail_link": "/player/falcao/2oMimkAU/",
"short_name": "Falcao",
"shirt_number": "9",
"country": "Colombia",
"facts": [
{
"type": "7",
"time": "61'",
"description": "Remy L.",
"linked_player_hash": "hYsYT4nh"
}
],
"lineup": null,
"starting": false,
"long_name": "Radamel Falcao"
},
{
"hash": "Crwqppk9",
"name": "Kenedy",
"captain": "",
"detail_link": "/player/kenedy/Crwqppk9/",
"short_name": "Kenedy",
"shirt_number": "16",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Kenedy"
},
{
"hash": "8AkbVvN2",
"name": "Mikel J. O.",
"captain": "",
"detail_link": "/player/mikel-john-obi/8AkbVvN2/",
"short_name": "Mikel",
"shirt_number": "12",
"country": "Nigeria",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "John Obi Mikel"
},
{
"hash": "8APqwh2k",
"name": "Ramires",
"captain": "",
"detail_link": "/player/ramires/8APqwh2k/",
"short_name": "Ramires",
"shirt_number": "7",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "73'",
"description": "Oscar",
"linked_player_hash": "KfKDzbEo"
},
{
"type": "3",
"time": "79' Ramires (Hazard E.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Ramires"
},
{
"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"
},
{
"hash": "GSzdOhPI",
"name": "Willian",
"captain": "",
"detail_link": "/player/willian/GSzdOhPI/",
"short_name": "Willian",
"shirt_number": "22",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "61'",
"description": "Matic N.",
"linked_player_hash": "Kty10JVG"
},
{
"type": "3",
"time": "86' Willian",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Willian"
}
],
"coach": [
{
"hash": "AwXQwGFe",
"name": "Mourinho J.",
"captain": "",
"detail_link": "/player/mourinho-jose/AwXQwGFe/",
"short_name": "Mourinho J.",
"shirt_number": "",
"country": "Portugal",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jose Mourinho"
}
]
}
},
"referee": [
"Atkinson M."
],
"venue": [
"St. James' Park (Newcastle)"
],
"attendance": [
"48 682"
],
"referee_matched": [
"Martin Atkinson"
],
"referee_found": [
"Martin Atkinson"
],
"coach_matched": [
"Steve McClaren",
"Jose Mourinho"
],
"gameHomeTeam": "Newcastle Utd",
"home": {
"name": "Newcastle Utd",
"detail_link": "/team/newcastle-utd/p6ahwuwJ",
"hash": "p6ahwuwJ",
"names": [
"Newcastle Utd",
"Newcastle",
"newcastle utd"
]
},
"gameAwayTeam": "Chelsea",
"away": {
"name": "Chelsea",
"detail_link": "/team/chelsea/4fGZN2oK",
"hash": "4fGZN2oK",
"names": [
"Chelsea",
"chelsea"
]
},
"gameDate": "26/09/2015 - 18:30",
"annotations": [
{
"important": false,
"gameTime": "2 - 52:59",
"label": "",
"description": "There was no time for the supporters to get bored during the game as it was full of action and thrilling moments. A very even game was seen on the pitch today. Both teams attempted to play possession football.",
"identified": "There was no time for the supporters to get bored during the game as it was full of action and thrilling moments. A very even game was seen on the pitch today. Both teams attempted to play possession football.",
"anonymized": "There was no time for the supporters to get bored during the game as it was full of action and thrilling moments. A very even game was seen on the pitch today. Both teams attempted to play possession football.",
"visibility": "shown",
"position": "3179000"
},
{
"important": true,
"gameTime": "2 - 52:26",
"label": "whistle",
"description": "Nothing more will happen in this game as the referee blows for full time.",
"identified": "Nothing more will happen in this game as the referee blows for full time.",
"anonymized": "Nothing more will happen in this game as the referee blows for full time.",
"visibility": "shown",
"position": "3146000"
},
{
"important": true,
"gameTime": "2 - 51:52",
"label": "y-card",
"description": "Pedro (Chelsea) has tested the patience of referee Martin Atkinson and goes into the book for a previous late challenge.",
"identified": "[PLAYER_0f1tMqQl] ([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": "3112000"
},
{
"important": false,
"gameTime": "2 - 50:55",
"label": "",
"description": "Siem De Jong (Newcastle Utd) seems to be alright and is okay to carry on.",
"identified": "[PLAYER_6qric5Ic] ([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": "3055000"
},
{
"important": false,
"gameTime": "2 - 50:27",
"label": "corner",
"description": "Newcastle take a short corner instead of sending the ball into the penalty area.",
"identified": "[TEAM_p6ahwuwJ] take a short corner instead of sending the ball into the penalty area.",
"anonymized": "[TEAM] take a short corner instead of sending the ball into the penalty area.",
"visibility": "shown",
"position": "3027000"
},
{
"important": false,
"gameTime": "2 - 50:15",
"label": "",
"description": "Gabriel Obertan (Newcastle Utd) fails to find any of his teammates inside the box as his pass is blocked. Newcastle have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"identified": "[PLAYER_p2TzSgBN] ([TEAM_]) fails to find any of his teammates inside the box as his pass is blocked. [TEAM_p6ahwuwJ] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"anonymized": "[PLAYER] ([TEAM]) fails to find any of his teammates inside the box as his pass is blocked. [TEAM] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"visibility": "shown",
"position": "3015000"
},
{
"important": false,
"gameTime": "2 - 49:57",
"label": "corner",
"description": "Ayoze Perez (Newcastle Utd) takes the corner with a short pass.",
"identified": "[PLAYER_jVHfHxGn] ([TEAM_]) takes the corner with a short pass.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner with a short pass.",
"visibility": "shown",
"position": "2997000"
},
{
"important": false,
"gameTime": "2 - 48:18",
"label": "injury",
"description": "Siem De Jong (Newcastle Utd) is having a really tough time right now. We are about to find out how serious his injury is.",
"identified": "[PLAYER_6qric5Ic] ([TEAM_]) is having a really tough time right now. We are about to find out how serious his injury is.",
"anonymized": "[PLAYER] ([TEAM]) is having a really tough time right now. We are about to find out how serious his injury is.",
"visibility": "shown",
"position": "2898000"
},
{
"important": false,
"gameTime": "2 - 47:24",
"label": "",
"description": "Gabriel Obertan (Newcastle Utd) races towards goal but the defender gets back well to make a challenge. Newcastle get a corner.",
"identified": "[PLAYER_p2TzSgBN] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. [TEAM_p6ahwuwJ] get a corner.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. [TEAM] get a corner.",
"visibility": "shown",
"position": "2844000"
},
{
"important": true,
"gameTime": "2 - 46:32",
"label": "substitution",
"description": "Here comes a substitution. Moussa Sissoko is given a rest as he is replaced by Siem De Jong (Newcastle Utd).",
"identified": "Here comes a substitution. [PLAYER_4nQc78qp] is given a rest as he is replaced by [PLAYER_6qric5Ic] ([TEAM_]).",
"anonymized": "Here comes a substitution. [PLAYER] is given a rest as he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2792000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "4 min. of stoppage-time to be played.",
"identified": "4 min. of stoppage-time to be played.",
"anonymized": "4 min. of stoppage-time to be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 44:50",
"label": "",
"description": "The Chelsea 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": "2690000"
},
{
"important": true,
"gameTime": "2 - 43:26",
"label": "",
"description": "Ramires (Chelsea) creates himself some space inside the goalmouth and connects with the resulting free kick. His header would have probably ended up in the middle of the goal, but Tim Krul pulls off a superb reflex save to thwart him.",
"identified": "[PLAYER_8APqwh2k] ([TEAM_]) creates himself some space inside the goalmouth and connects with the resulting free kick. His header would have probably ended up in the middle of the goal, but [PLAYER_dAl9I3A3] pulls off a superb reflex save to thwart him.",
"anonymized": "[PLAYER] ([TEAM]) creates himself some space inside the goalmouth and connects with the resulting free kick. His header would have probably ended up in the middle of the goal, but [PLAYER] pulls off a superb reflex save to thwart him.",
"visibility": "shown",
"position": "2606000"
},
{
"important": false,
"gameTime": "2 - 42:37",
"label": "",
"description": "Moussa Sissoko (Newcastle Utd) trips an opposition player and Martin Atkinson signals a foul. Chelsea will take a free kick. Willian (Chelsea) will take the free kick.",
"identified": "[PLAYER_4nQc78qp] ([TEAM_]) trips an opposition player and [REFEREE] signals a foul. [TEAM_] will take a free kick. [PLAYER_GSzdOhPI] ([TEAM_]) will take the free kick.",
"anonymized": "[PLAYER] ([TEAM]) trips an opposition player and [REFEREE] signals a foul. [TEAM] will take a free kick. [PLAYER] ([TEAM]) will take the free kick.",
"visibility": "shown",
"position": "2557000"
},
{
"important": true,
"gameTime": "2 - 40:55",
"label": "soccer-ball",
"description": "Willian (Chelsea) scores a marvellous goal! He smashed a direct free kick from 25 metres into the middle of the net. The normally comfortable situation became a problem for the goalkeeper as the ball slipped behind his back.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) scores a marvellous goal! He smashed a direct free kick from 25 metres into the middle of the net. The normally comfortable situation became a problem for the goalkeeper as the ball slipped behind his back.",
"anonymized": "[PLAYER] ([TEAM]) scores a marvellous goal! He smashed a direct free kick from 25 metres into the middle of the net. The normally comfortable situation became a problem for the goalkeeper as the ball slipped behind his back.",
"visibility": "shown",
"position": "2455000"
},
{
"important": false,
"gameTime": "2 - 40:30",
"label": "",
"description": "Newcastle concede a free kick after one of their players holds onto an opposition player. A free kick has been awarded to Chelsea.",
"identified": "[TEAM_p6ahwuwJ] concede a free kick after one of their players holds onto an opposition player. A free kick has been awarded to [TEAM_].",
"anonymized": "[TEAM] concede a free kick after one of their players holds onto an opposition player. A free kick has been awarded to [TEAM].",
"visibility": "shown",
"position": "2430000"
},
{
"important": true,
"gameTime": "2 - 39:01",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Aleksandar Mitrovic departs the field of play to be replaced by Ivan Toney (Newcastle Utd).",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_OYOr8rkm] departs the field of play to be replaced by [PLAYER_W6A3dA7c] ([TEAM_]).",
"anonymized": "The referee stops play so that a substitution can be made and [PLAYER] departs the field of play to be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2341000"
},
{
"important": false,
"gameTime": "2 - 37:57",
"label": "",
"description": "Pedro (Chelsea) controls a cross inside the six-yard box, but unbelievably sends his shot over the bar. The ball is off of the pitch and it's a goal kick for Newcastle.",
"identified": "[PLAYER_0f1tMqQl] ([TEAM_]) controls a cross inside the six-yard box, but unbelievably sends his shot over the bar. The ball is off of the pitch and it's a goal kick for [TEAM_p6ahwuwJ].",
"anonymized": "[PLAYER] ([TEAM]) controls a cross inside the six-yard box, but unbelievably sends his shot over the bar. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "2277000"
},
{
"important": false,
"gameTime": "2 - 37:27",
"label": "",
"description": "Chelsea are passing the ball across the pitch and keep possession. However, an opponent intercepts a pass and the situation changes.",
"identified": "[TEAM_] are passing the ball across the pitch and keep possession. However, an opponent intercepts a pass and the situation changes.",
"anonymized": "[TEAM] are passing the ball across the pitch and keep possession. However, an opponent intercepts a pass and the situation changes.",
"visibility": "shown",
"position": "2247000"
},
{
"important": true,
"gameTime": "2 - 36:20",
"label": "",
"description": "Eden Hazard (Chelsea) goes on a weaving run through the defence and gets within shooting range but his effort is blocked.",
"identified": "[PLAYER_QH2of5sJ] ([TEAM_]) goes on a weaving run through the defence and gets within shooting range but his effort is blocked.",
"anonymized": "[PLAYER] ([TEAM]) goes on a weaving run through the defence and gets within shooting range but his effort is blocked.",
"visibility": "shown",
"position": "2180000"
},
{
"important": true,
"gameTime": "2 - 33:47",
"label": "soccer-ball",
"description": "Ramires (Chelsea) latches on to a pass and controls it with a good first touch. He unleashes a deadly strike from around 24 metres out which goes into the top left corner.",
"identified": "[PLAYER_8APqwh2k] ([TEAM_]) latches on to a pass and controls it with a good first touch. He unleashes a deadly strike from around 24 metres out which goes into the top left corner.",
"anonymized": "[PLAYER] ([TEAM]) latches on to a pass and controls it with a good first touch. He unleashes a deadly strike from around 24 metres out which goes into the top left corner.",
"visibility": "shown",
"position": "2027000"
},
{
"important": false,
"gameTime": "2 - 32:25",
"label": "attendance",
"description": "The attendance for today's match is 48682.",
"identified": "The attendance for today's match is 48682.",
"anonymized": "The attendance for today's match is 48682.",
"visibility": "shown",
"position": "1945000"
},
{
"important": false,
"gameTime": "2 - 30:13",
"label": "",
"description": "Falcao (Chelsea) finds himself in a promising position after receiving a clever chip pass, but one of the defending players comes up with a timely interception.",
"identified": "[PLAYER_2oMimkAU] ([TEAM_]) finds himself in a promising position after receiving a clever chip pass, but one of the defending players comes up with a timely interception.",
"anonymized": "[PLAYER] ([TEAM]) finds himself in a promising position after receiving a clever chip pass, but one of the defending players comes up with a timely interception.",
"visibility": "shown",
"position": "1813000"
},
{
"important": false,
"gameTime": "2 - 28:40",
"label": "",
"description": "Falcao (Chelsea) times his run too early and the linesman raises his flag for offside.",
"identified": "[PLAYER_2oMimkAU] ([TEAM_]) times his run too early and the linesman raises his flag for offside.",
"anonymized": "[PLAYER] ([TEAM]) times his run too early and the linesman raises his flag for offside.",
"visibility": "shown",
"position": "1720000"
},
{
"important": false,
"gameTime": "2 - 27:59",
"label": "corner",
"description": "Cesc Fabregas (Chelsea) takes the corner, but the goalkeeper jumps and gathers the ball.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) takes the corner, but the goalkeeper jumps and gathers the ball.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner, but the goalkeeper jumps and gathers the ball.",
"visibility": "shown",
"position": "1679000"
},
{
"important": true,
"gameTime": "2 - 27:59",
"label": "substitution",
"description": "Substitution. Oscar makes way for Ramires (Chelsea).",
"identified": "Substitution. [PLAYER_KfKDzbEo] makes way for [PLAYER_8APqwh2k] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] makes way for [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1679000"
},
{
"important": false,
"gameTime": "2 - 27:26",
"label": "",
"description": "Cesar Azpilicueta (Chelsea) finds himself in a promising position after receiving a beautiful cross from the side, but the opposition defence is ready and one of the defenders averts the threat with a quick interception. Chelsea have a corner.",
"identified": "[PLAYER_CMGUADgt] ([TEAM_]) finds himself in a promising position after receiving a beautiful cross from the side, but the opposition defence is ready and one of the defenders averts the threat with a quick interception. [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) finds himself in a promising position after receiving a beautiful cross from the side, but the opposition defence is ready and one of the defenders averts the threat with a quick interception. [TEAM] have a corner.",
"visibility": "shown",
"position": "1646000"
},
{
"important": false,
"gameTime": "2 - 25:49",
"label": "",
"description": "Eden Hazard picks out Oscar (Chelsea), who drives a shot just wide of the right post from the edge of the box. The ball is off of the pitch and it's a goal kick for Newcastle.",
"identified": "[PLAYER_QH2of5sJ] picks out [PLAYER_KfKDzbEo] ([TEAM_]), who drives a shot just wide of the right post from the edge of the box. The ball is off of the pitch and it's a goal kick for [TEAM_p6ahwuwJ].",
"anonymized": "[PLAYER] picks out [PLAYER] ([TEAM]), who drives a shot just wide of the right post from the edge of the box. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "1549000"
},
{
"important": false,
"gameTime": "2 - 23:51",
"label": "corner",
"description": "Pedro (Chelsea) takes the corner but only sends it into a huddle of the defenders and one of them makes a good clearance.",
"identified": "[PLAYER_0f1tMqQl] ([TEAM_]) takes the corner but only sends it into a huddle of the defenders and one of them makes a good clearance.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but only sends it into a huddle of the defenders and one of them makes a good clearance.",
"visibility": "shown",
"position": "1431000"
},
{
"important": false,
"gameTime": "2 - 23:35",
"label": "",
"description": "Pedro (Chelsea) crosses the ball into the box, but one of the defending players averts the threat. The referee and his assistant both point at the corner flag. Chelsea will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_0f1tMqQl] ([TEAM_]) crosses the ball into the box, but one of the defending players averts the threat. 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]) crosses the ball into the box, but one of the defending players averts the threat. 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": "1415000"
},
{
"important": true,
"gameTime": "2 - 22:58",
"label": "y-card",
"description": "This yellow card was deserved. The tackle by Branislav Ivanovic (Chelsea) was quite harsh and Martin Atkinson didn't hesitate to show him a yellow card.",
"identified": "This yellow card was deserved. The tackle by [PLAYER_Qe3xUmHo] ([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": "1378000"
},
{
"important": false,
"gameTime": "2 - 22:07",
"label": "",
"description": "Willian (Chelsea) displays his superb passing ability after picking out Pedro with a fine lofted pass to continue their attacking move. Pedro (Chelsea) sends over a cross from the side into the penalty area in order to find one of his teammates, but he fails and the opportunity goes begging.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) displays his superb passing ability after picking out [PLAYER_0f1tMqQl] with a fine lofted pass to continue their attacking move. [PLAYER_0f1tMqQl] ([TEAM_]) sends over a cross from the side into the penalty area in order to find one of his teammates, but he fails and the opportunity goes begging.",
"anonymized": "[PLAYER] ([TEAM]) displays his superb passing ability after picking out [PLAYER] with a fine lofted pass to continue their attacking move. [PLAYER] ([TEAM]) sends over a cross from the side into the penalty area in order to find one of his teammates, but he fails and the opportunity goes begging.",
"visibility": "shown",
"position": "1327000"
},
{
"important": false,
"gameTime": "2 - 20:17",
"label": "",
"description": "Rough tackle by Moussa Sissoko (Newcastle Utd). The referee blows his whistle for a foul. Chelsea get a free kick. Chelsea try to maintain the tempo of the game by taking a quick free kick.",
"identified": "Rough tackle by [PLAYER_4nQc78qp] ([TEAM_]). The referee blows his whistle for a foul. [TEAM_] get a free kick. [TEAM_] try to maintain the tempo of the game by taking a quick free kick.",
"anonymized": "Rough tackle by [PLAYER] ([TEAM]). The referee blows his whistle for a foul. [TEAM] get a free kick. [TEAM] try to maintain the tempo of the game by taking a quick free kick.",
"visibility": "shown",
"position": "1217000"
},
{
"important": false,
"gameTime": "2 - 18:29",
"label": "",
"description": "Martin Atkinson blows his whistle and it's Aleksandar Mitrovic (Newcastle Utd) who is penalised for an offensive foul. Good decision by the referee.",
"identified": "[REFEREE] blows his whistle and it's [PLAYER_OYOr8rkm] ([TEAM_]) who is penalised for an offensive foul. Good decision by the referee.",
"anonymized": "[REFEREE] blows his whistle and it's [PLAYER] ([TEAM]) who is penalised for an offensive foul. Good decision by the referee.",
"visibility": "shown",
"position": "1109000"
},
{
"important": true,
"gameTime": "2 - 15:55",
"label": "substitution",
"description": "Jose Mourinho has decided to make a change. Willian (Chelsea) replaces Nemanja Matic.",
"identified": "[COACH_AwXQwGFe] has decided to make a change. [PLAYER_GSzdOhPI] ([TEAM_]) replaces [PLAYER_Kty10JVG].",
"anonymized": "[COACH] has decided to make a change. [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "955000"
},
{
"important": true,
"gameTime": "2 - 15:50",
"label": "substitution",
"description": "The game has come to an end for Loic Remy. He has contributed as much as he could today. He will be replaced by the fresh legs of Falcao (Chelsea).",
"identified": "The game has come to an end for [PLAYER_hYsYT4nh]. He has contributed as much as he could today. He will be replaced by the fresh legs of [PLAYER_2oMimkAU] ([TEAM_]).",
"anonymized": "The game has come to an end for [PLAYER]. He has contributed as much as he could today. He will be replaced by the fresh legs of [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "950000"
},
{
"important": true,
"gameTime": "2 - 14:54",
"label": "soccer-ball",
"description": "Goal! The corner is whipped in and Georginio Wijnaldum (Newcastle Utd) is in the right place at the right time, planting his header perfectly into the left side of the goal. He makes it 1:0.",
"identified": "Goal! The corner is whipped in and [PLAYER_f9KgUUZu] ([TEAM_]) is in the right place at the right time, planting his header perfectly into the left side of the goal. He makes it 1:0.",
"anonymized": "Goal! The corner is whipped in and [PLAYER] ([TEAM]) is in the right place at the right time, planting his header perfectly into the left side of the goal. He makes it 1:0.",
"visibility": "shown",
"position": "894000"
},
{
"important": false,
"gameTime": "2 - 14:30",
"label": "corner",
"description": "Ayoze Perez (Newcastle Utd) is heading toward the corner flag to take the set piece.",
"identified": "[PLAYER_jVHfHxGn] ([TEAM_]) is heading toward the corner flag to take the set piece.",
"anonymized": "[PLAYER] ([TEAM]) is heading toward the corner flag to take the set piece.",
"visibility": "shown",
"position": "870000"
},
{
"important": false,
"gameTime": "2 - 14:06",
"label": "",
"description": "Ayoze Perez (Newcastle Utd) looks to break free, but an opposing player clears the ball away. The linesman makes the right call and Newcastle will have a corner.",
"identified": "[PLAYER_jVHfHxGn] ([TEAM_]) looks to break free, but an opposing player clears the ball away. The linesman makes the right call and [TEAM_p6ahwuwJ] will have a corner.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away. The linesman makes the right call and [TEAM] will have a corner.",
"visibility": "shown",
"position": "846000"
},
{
"important": false,
"gameTime": "2 - 13:41",
"label": "corner",
"description": "The corner from Ayoze Perez (Newcastle Utd) is intercepted by the defence.",
"identified": "The corner from [PLAYER_jVHfHxGn] ([TEAM_]) is intercepted by the defence.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is intercepted by the defence.",
"visibility": "shown",
"position": "821000"
},
{
"important": false,
"gameTime": "2 - 13:14",
"label": "",
"description": "A cross from Moussa Sissoko (Newcastle Utd) fails to reach the box as the defence clears the ball away to safety. The ball goes out of play. Newcastle are awarded a corner kick.",
"identified": "A cross from [PLAYER_4nQc78qp] ([TEAM_]) fails to reach the box as the defence clears the ball away to safety. The ball goes out of play. [TEAM_p6ahwuwJ] are awarded a corner kick.",
"anonymized": "A cross from [PLAYER] ([TEAM]) fails to reach the box as the defence clears the ball away to safety. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "794000"
},
{
"important": false,
"gameTime": "2 - 12:34",
"label": "",
"description": "Georginio Wijnaldum (Newcastle Utd) slides a pass forward, but one of the defenders cuts it out.",
"identified": "[PLAYER_f9KgUUZu] ([TEAM_]) slides a pass forward, but one of the defenders cuts it out.",
"anonymized": "[PLAYER] ([TEAM]) slides a pass forward, but one of the defenders cuts it out.",
"visibility": "shown",
"position": "754000"
},
{
"important": false,
"gameTime": "2 - 10:27",
"label": "",
"description": "Oscar (Chelsea) tries to send a pass but it's blocked.",
"identified": "[PLAYER_KfKDzbEo] ([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": "627000"
},
{
"important": false,
"gameTime": "2 - 09:19",
"label": "corner",
"description": "Cesc Fabregas (Chelsea) takes the corner which is cleared.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) takes the corner which is cleared.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner which is cleared.",
"visibility": "shown",
"position": "559000"
},
{
"important": false,
"gameTime": "2 - 09:03",
"label": "",
"description": "The ball is cleared after Cesar Azpilicueta (Chelsea) attempted to dribble past an opposing player. The referee and one of his assistants signal for a corner kick to Chelsea.",
"identified": "The ball is cleared after [PLAYER_CMGUADgt] ([TEAM_]) attempted to dribble past an opposing player. The referee and one of his assistants signal for a corner kick to [TEAM_].",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. The referee and one of his assistants signal for a corner kick to [TEAM].",
"visibility": "shown",
"position": "543000"
},
{
"important": true,
"gameTime": "2 - 08:26",
"label": "substitution",
"description": "Steve McClaren prepares a substitution. Jack Colback is replaced by Gabriel Obertan (Newcastle Utd).",
"identified": "[COACH_KdMGZ4Li] prepares a substitution. [PLAYER_Cty9ea76] is replaced by [PLAYER_p2TzSgBN] ([TEAM_]).",
"anonymized": "[COACH] prepares a substitution. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "506000"
},
{
"important": false,
"gameTime": "2 - 07:48",
"label": "",
"description": "Oscar swings the cross over. Loic Remy (Chelsea) gets his head to it but it goes just over the crossbar. The ball goes out of play and Newcastle will have a goal kick.",
"identified": "[PLAYER_KfKDzbEo] swings the cross over. [PLAYER_hYsYT4nh] ([TEAM_]) gets his head to it but it goes just over the crossbar. The ball goes out of play and [TEAM_p6ahwuwJ] will have a goal kick.",
"anonymized": "[PLAYER] swings the cross over. [PLAYER] ([TEAM]) gets his head to it but it goes just over the crossbar. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "468000"
},
{
"important": false,
"gameTime": "2 - 07:09",
"label": "",
"description": "Eden Hazard (Chelsea) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger.",
"identified": "[PLAYER_QH2of5sJ] ([TEAM_]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger.",
"anonymized": "[PLAYER] ([TEAM]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger.",
"visibility": "shown",
"position": "429000"
},
{
"important": false,
"gameTime": "2 - 06:41",
"label": "",
"description": "Cesc Fabregas (Chelsea) receives a good pass just outside the box, unleashes a strike from a promising position, but the shot is blocked by the defender.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) receives a good pass just outside the box, unleashes a strike from a promising position, but the shot is blocked by the defender.",
"anonymized": "[PLAYER] ([TEAM]) receives a good pass just outside the box, unleashes a strike from a promising position, but the shot is blocked by the defender.",
"visibility": "shown",
"position": "401000"
},
{
"important": false,
"gameTime": "2 - 05:34",
"label": "",
"description": "Nemanja Matic (Chelsea) was too fierce in his attempt to get the ball from his opponent and Martin Atkinson blows for a foul.",
"identified": "[PLAYER_Kty10JVG] ([TEAM_]) was too fierce in his attempt to get the ball from his opponent and [REFEREE] blows for a foul.",
"anonymized": "[PLAYER] ([TEAM]) was too fierce in his attempt to get the ball from his opponent and [REFEREE] blows for a foul.",
"visibility": "shown",
"position": "334000"
},
{
"important": false,
"gameTime": "2 - 04:53",
"label": "",
"description": "The linesman signals that Loic Remy (Chelsea) is offside and the referee confirms the decision.",
"identified": "The linesman signals that [PLAYER_hYsYT4nh] ([TEAM_]) is offside and the referee confirms the decision.",
"anonymized": "The linesman signals that [PLAYER] ([TEAM]) is offside and the referee confirms the decision.",
"visibility": "shown",
"position": "293000"
},
{
"important": false,
"gameTime": "2 - 03:15",
"label": "",
"description": "Branislav Ivanovic (Chelsea) clips an inviting cross into the box, but there's no one in a position to get on the end of it.",
"identified": "[PLAYER_Qe3xUmHo] ([TEAM_]) clips an inviting cross into the box, but there's no one in a position to get on the end of it.",
"anonymized": "[PLAYER] ([TEAM]) clips an inviting cross into the box, but there's no one in a position to get on the end of it.",
"visibility": "shown",
"position": "195000"
},
{
"important": false,
"gameTime": "2 - 02:26",
"label": "",
"description": "Neat passing move from Chelsea in order to create new attacking opportunities.",
"identified": "Neat passing move from [TEAM_] in order to create new attacking opportunities.",
"anonymized": "Neat passing move from [TEAM] in order to create new attacking opportunities.",
"visibility": "shown",
"position": "146000"
},
{
"important": false,
"gameTime": "2 - 01:41",
"label": "",
"description": "The defence is alert as they clear a dangerous cross from Cesar Azpilicueta (Chelsea). The ball is out of play. Chelsea will have a throw-in.",
"identified": "The defence is alert as they clear a dangerous cross from [PLAYER_CMGUADgt] ([TEAM_]). The ball is out of play. [TEAM_] will have a throw-in.",
"anonymized": "The defence is alert as they clear a dangerous cross from [PLAYER] ([TEAM]). The ball is out of play. [TEAM] will have a throw-in.",
"visibility": "shown",
"position": "101000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The game restarts for the second half.",
"identified": "The game restarts for the second half.",
"anonymized": "The game restarts for the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 47:59",
"label": "",
"description": "There was certainly plenty of action during that opening 45 minutes. The home fans will be really pleased with what they've seen from their players so far. Both teams are attempting to play possession football.",
"identified": "There was certainly plenty of action during that opening 45 minutes. The home fans will be really pleased with what they've seen from their players so far. Both teams are attempting to play possession football.",
"anonymized": "There was certainly plenty of action during that opening 45 minutes. The home fans will be really pleased with what they've seen from their players so far. Both teams are attempting to play possession football.",
"visibility": "shown",
"position": "2879000"
},
{
"important": true,
"gameTime": "1 - 47:05",
"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": "2825000"
},
{
"important": false,
"gameTime": "1 - 45:28",
"label": "",
"description": "Branislav Ivanovic (Chelsea) sends a cross into the box, but the opposition's defence clears the ball away to eliminate the danger.",
"identified": "[PLAYER_Qe3xUmHo] ([TEAM_]) sends a cross into the box, but the opposition's defence clears the ball away to eliminate the danger.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence clears the ball away to eliminate the danger.",
"visibility": "shown",
"position": "2728000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "We will have 2 min. of added time.",
"identified": "We will have 2 min. of added time.",
"anonymized": "We will have 2 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 44:20",
"label": "",
"description": "Chelsea are showcasing great team work by exchanging some short passes and one-two passes, waiting to open the opposition's defence and hit them swiftly on the break.",
"identified": "[TEAM_] are showcasing great team work by exchanging some short passes and one-two passes, waiting to open the opposition's defence and hit them swiftly on the break.",
"anonymized": "[TEAM] are showcasing great team work by exchanging some short passes and one-two passes, waiting to open the opposition's defence and hit them swiftly on the break.",
"visibility": "shown",
"position": "2660000"
},
{
"important": true,
"gameTime": "1 - 41:55",
"label": "soccer-ball",
"description": "Vurnon Anita sends an inch-perfect lofted cross into the box. Ayoze Perez (Newcastle Utd) latches on to it and finishes with a quick shot which hits the left post and bounces in off it. The goalkeeper had no chance. The score changes to 1:0.",
"identified": "[PLAYER_bZ66wenk] sends an inch-perfect lofted cross into the box. [PLAYER_jVHfHxGn] ([TEAM_]) latches on to it and finishes with a quick shot which hits the left post and bounces in off it. The goalkeeper had no chance. The score changes to 1:0.",
"anonymized": "[PLAYER] sends an inch-perfect lofted cross into the box. [PLAYER] ([TEAM]) latches on to it and finishes with a quick shot which hits the left post and bounces in off it. The goalkeeper had no chance. The score changes to 1:0.",
"visibility": "shown",
"position": "2515000"
},
{
"important": false,
"gameTime": "1 - 41:24",
"label": "",
"description": "Aleksandar Mitrovic (Newcastle Utd) collects a pass inside the box and unleashes a shot which is brilliantly blocked by a defender.",
"identified": "[PLAYER_OYOr8rkm] ([TEAM_]) collects a pass inside the box and unleashes a shot which is brilliantly blocked by a defender.",
"anonymized": "[PLAYER] ([TEAM]) collects a pass inside the box and unleashes a shot which is brilliantly blocked by a defender.",
"visibility": "shown",
"position": "2484000"
},
{
"important": false,
"gameTime": "1 - 39:55",
"label": "",
"description": "The linesman raises his flag. Pedro (Chelsea) is adjudged offside.",
"identified": "The linesman raises his flag. [PLAYER_0f1tMqQl] ([TEAM_]) is adjudged offside.",
"anonymized": "The linesman raises his flag. [PLAYER] ([TEAM]) is adjudged offside.",
"visibility": "shown",
"position": "2395000"
},
{
"important": false,
"gameTime": "1 - 39:29",
"label": "corner",
"description": "Oscar (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_KfKDzbEo] ([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": "2369000"
},
{
"important": false,
"gameTime": "1 - 39:04",
"label": "",
"description": "Oscar (Chelsea) whips a promising cross into the box, but the opposition's defence intercepts the ball. The referee points to the corner flag and Chelsea will take a corner.",
"identified": "[PLAYER_KfKDzbEo] ([TEAM_]) whips a promising cross into the box, but the opposition's defence intercepts the ball. The referee points to the corner flag and [TEAM_] will take a corner.",
"anonymized": "[PLAYER] ([TEAM]) whips a promising cross into the box, but the opposition's defence intercepts the ball. The referee points to the corner flag and [TEAM] will take a corner.",
"visibility": "shown",
"position": "2344000"
},
{
"important": false,
"gameTime": "1 - 38:20",
"label": "",
"description": "Branislav Ivanovic (Chelsea) gets his head on the corner, but he can't find the target as his header flies high over the crossbar. The ball goes out of play and Newcastle will have a goal kick.",
"identified": "[PLAYER_Qe3xUmHo] ([TEAM_]) gets his head on the corner, but he can't find the target as his header flies high over the crossbar. The ball goes out of play and [TEAM_p6ahwuwJ] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) gets his head on the corner, but he can't find the target as his header flies high over the crossbar. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "2300000"
},
{
"important": false,
"gameTime": "1 - 37:52",
"label": "corner",
"description": "Cesc Fabregas (Chelsea) will deliver the corner kick.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) will deliver the corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will deliver the corner kick.",
"visibility": "shown",
"position": "2272000"
},
{
"important": true,
"gameTime": "1 - 37:15",
"label": "",
"description": "Cesc Fabregas (Chelsea) takes the ball on and fires in a shot from 25 metres out. Tim Krul stops the effort which is headed for the top right corner. The ball is out of play and Chelsea manage to earn a corner.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) takes the ball on and fires in a shot from 25 metres out. [PLAYER_dAl9I3A3] stops the effort which is headed for the top right corner. The ball is out of play and [TEAM_] manage to earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) takes the ball on and fires in a shot from 25 metres out. [PLAYER] stops the effort which is headed for the top right corner. The ball is out of play and [TEAM] manage to earn a corner.",
"visibility": "shown",
"position": "2235000"
},
{
"important": false,
"gameTime": "1 - 36:32",
"label": "",
"description": "Nemanja Matic (Chelsea) makes a reckless foul in order to win the ball from his opponent. Martin Atkinson has a clear sight of it and blows his whistle.",
"identified": "[PLAYER_Kty10JVG] ([TEAM_]) makes a reckless foul in order to win the ball from his opponent. [REFEREE] has a clear sight of it and blows his whistle.",
"anonymized": "[PLAYER] ([TEAM]) makes a reckless foul in order to win the ball from his opponent. [REFEREE] has a clear sight of it and blows his whistle.",
"visibility": "shown",
"position": "2192000"
},
{
"important": false,
"gameTime": "1 - 35:16",
"label": "",
"description": "Daryl Janmaat (Newcastle Utd) tries his luck from the edge of the box after a brilliant solo effort, but it is well blocked by the defender.",
"identified": "[PLAYER_Kfrvwu25] ([TEAM_]) tries his luck from the edge of the box after a brilliant solo effort, but it is well blocked by the defender.",
"anonymized": "[PLAYER] ([TEAM]) tries his luck from the edge of the box after a brilliant solo effort, but it is well blocked by the defender.",
"visibility": "shown",
"position": "2116000"
},
{
"important": false,
"gameTime": "1 - 34:46",
"label": "",
"description": "Moussa Sissoko (Newcastle Utd) sends a pass into the box, but his attempt is thwarted and cleared.",
"identified": "[PLAYER_4nQc78qp] ([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": "2086000"
},
{
"important": false,
"gameTime": "1 - 33:55",
"label": "",
"description": "Pedro (Chelsea) put a cross into the box which wasn't a bad decision, but he failed to achieve what he wanted as none of his teammates managed to meet it.",
"identified": "[PLAYER_0f1tMqQl] ([TEAM_]) put a cross into the box which wasn't a bad decision, but he failed to achieve what he wanted as none of his teammates managed to meet it.",
"anonymized": "[PLAYER] ([TEAM]) put a cross into the box which wasn't a bad decision, but he failed to achieve what he wanted as none of his teammates managed to meet it.",
"visibility": "shown",
"position": "2035000"
},
{
"important": true,
"gameTime": "1 - 32:53",
"label": "y-card",
"description": "Martin Atkinson shows a yellow card to Jack Colback (Newcastle Utd) for his blatant foul.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_Cty9ea76] ([TEAM_]) for his blatant foul.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for his blatant foul.",
"visibility": "shown",
"position": "1973000"
},
{
"important": false,
"gameTime": "1 - 32:03",
"label": "",
"description": "Jack Colback (Newcastle Utd) has picked up a minor injury, but it looks like he will be able to continue.",
"identified": "[PLAYER_Cty9ea76] ([TEAM_]) has picked up a minor injury, but it looks like he will be able to continue.",
"anonymized": "[PLAYER] ([TEAM]) has picked up a minor injury, but it looks like he will be able to continue.",
"visibility": "shown",
"position": "1923000"
},
{
"important": false,
"gameTime": "1 - 31:07",
"label": "injury",
"description": "Jack Colback (Newcastle Utd) picks up an injury.",
"identified": "[PLAYER_Cty9ea76] ([TEAM_]) picks up an injury.",
"anonymized": "[PLAYER] ([TEAM]) picks up an injury.",
"visibility": "shown",
"position": "1867000"
},
{
"important": false,
"gameTime": "1 - 30:41",
"label": "corner",
"description": "Cesc Fabregas (Chelsea) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger.",
"anonymized": "[PLAYER] ([TEAM]) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger.",
"visibility": "shown",
"position": "1841000"
},
{
"important": false,
"gameTime": "1 - 30:15",
"label": "",
"description": "Loic Remy (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_hYsYT4nh] ([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": "1815000"
},
{
"important": false,
"gameTime": "1 - 29:31",
"label": "",
"description": "Moussa Sissoko (Newcastle Utd) tries to create a chance, but puts too much weight on his pass. The ball is off of the pitch and it's a goal kick for Chelsea.",
"identified": "[PLAYER_4nQc78qp] ([TEAM_]) tries to create a chance, but puts too much weight on his pass. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) tries to create a chance, but puts too much weight on his pass. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "1771000"
},
{
"important": true,
"gameTime": "1 - 27:50",
"label": "",
"description": "Asmir Begovic was forced into action to thwart Daryl Janmaat (Newcastle Utd). He found himself some space after latching on to a pass and unleashed a shot to the bottom right corner but couldn't beat the keeper.",
"identified": "[PLAYER_xO2Ce0IG] was forced into action to thwart [PLAYER_Kfrvwu25] ([TEAM_]). He found himself some space after latching on to a pass and unleashed a shot to the bottom right corner but couldn't beat the keeper.",
"anonymized": "[PLAYER] was forced into action to thwart [PLAYER] ([TEAM]). He found himself some space after latching on to a pass and unleashed a shot to the bottom right corner but couldn't beat the keeper.",
"visibility": "shown",
"position": "1670000"
},
{
"important": true,
"gameTime": "1 - 27:37",
"label": "",
"description": "Ayoze Perez (Newcastle Utd) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the middle of the target, but Asmir Begovic was alert and the score remains the same.",
"identified": "[PLAYER_jVHfHxGn] ([TEAM_]) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the middle of the target, but [PLAYER_xO2Ce0IG] was alert and the score remains the same.",
"anonymized": "[PLAYER] ([TEAM]) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the middle of the target, but [PLAYER] was alert and the score remains the same.",
"visibility": "shown",
"position": "1657000"
},
{
"important": false,
"gameTime": "1 - 26:27",
"label": "",
"description": "What a poor attempt! Ayoze Perez (Newcastle Utd) drives another shot towards goal - this time from further out, but it couldn't have been worse if he had shot blindfolded. The ball goes yards wide of the left post. The ball is off of the pitch and it's a goal kick for Chelsea.",
"identified": "What a poor attempt! [PLAYER_jVHfHxGn] ([TEAM_]) drives another shot towards goal - this time from further out, but it couldn't have been worse if he had shot blindfolded. The ball goes yards wide of the left post. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "What a poor attempt! [PLAYER] ([TEAM]) drives another shot towards goal - this time from further out, but it couldn't have been worse if he had shot blindfolded. The ball goes yards wide of the left post. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "1587000"
},
{
"important": false,
"gameTime": "1 - 23:58",
"label": "",
"description": "Pedro (Chelsea) races towards goal but the defender gets back well to make a challenge.",
"identified": "[PLAYER_0f1tMqQl] ([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": "1438000"
},
{
"important": false,
"gameTime": "1 - 23:11",
"label": "",
"description": "Kevin Mbabu (Newcastle Utd) sends a lofted cross into the penalty area. Unfortunately for him, the opponent's defence deals with his cross comfortably and intercepts it.",
"identified": "[PLAYER_jwWuH3uU] ([TEAM_]) sends a lofted cross into the penalty area. Unfortunately for him, the opponent's defence deals with his cross comfortably and intercepts it.",
"anonymized": "[PLAYER] ([TEAM]) sends a lofted cross into the penalty area. Unfortunately for him, the opponent's defence deals with his cross comfortably and intercepts it.",
"visibility": "shown",
"position": "1391000"
},
{
"important": false,
"gameTime": "1 - 22:13",
"label": "",
"description": "Branislav Ivanovic (Chelsea) fizzes over a cross which doesn't cause any problems. The ball goes out of play and Newcastle will have a goal kick.",
"identified": "[PLAYER_Qe3xUmHo] ([TEAM_]) fizzes over a cross which doesn't cause any problems. The ball goes out of play and [TEAM_p6ahwuwJ] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) fizzes over a cross which doesn't cause any problems. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "1333000"
},
{
"important": false,
"gameTime": "1 - 21:30",
"label": "",
"description": "Martin Atkinson couldn't ignore the rough tackle by Kevin Mbabu (Newcastle Utd) and blew his whistle.",
"identified": "[REFEREE] couldn't ignore the rough tackle by [PLAYER_jwWuH3uU] ([TEAM_]) and blew his whistle.",
"anonymized": "[REFEREE] couldn't ignore the rough tackle by [PLAYER] ([TEAM]) and blew his whistle.",
"visibility": "shown",
"position": "1290000"
},
{
"important": false,
"gameTime": "1 - 21:12",
"label": "",
"description": "Another attempt to send the ball beyond the defence by Oscar (Chelsea) is thwarted and cleared to safety.",
"identified": "Another attempt to send the ball beyond the defence by [PLAYER_KfKDzbEo] ([TEAM_]) is thwarted and cleared to safety.",
"anonymized": "Another attempt to send the ball beyond the defence by [PLAYER] ([TEAM]) is thwarted and cleared to safety.",
"visibility": "shown",
"position": "1272000"
},
{
"important": false,
"gameTime": "1 - 20:42",
"label": "",
"description": "Newcastle are playing excellent possession football at the moment by exchanging some long passes.",
"identified": "[TEAM_p6ahwuwJ] are playing excellent possession football at the moment by exchanging some long passes.",
"anonymized": "[TEAM] are playing excellent possession football at the moment by exchanging some long passes.",
"visibility": "shown",
"position": "1242000"
},
{
"important": false,
"gameTime": "1 - 18:52",
"label": "",
"description": "Oscar (Chelsea) nearly creates a chance, but his attempt to pick out a teammate with a through ball does not come off.",
"identified": "[PLAYER_KfKDzbEo] ([TEAM_]) nearly creates a chance, but his attempt to pick out a teammate with a through ball does not come off.",
"anonymized": "[PLAYER] ([TEAM]) nearly creates a chance, but his attempt to pick out a teammate with a through ball does not come off.",
"visibility": "shown",
"position": "1132000"
},
{
"important": false,
"gameTime": "1 - 18:14",
"label": "",
"description": "The Chelsea players are exchanging some short passes to try and open up the opposition\u2019s defence and hit them swiftly on the break.",
"identified": "The [TEAM_] players are exchanging some short passes to try and open up the opposition\u2019s defence and hit them swiftly on the break.",
"anonymized": "The [TEAM] players are exchanging some short passes to try and open up the opposition\u2019s defence and hit them swiftly on the break.",
"visibility": "shown",
"position": "1094000"
},
{
"important": false,
"gameTime": "1 - 17:13",
"label": "",
"description": "Martin Atkinson blows the whistle, Branislav Ivanovic (Chelsea) is penalised for a foul.",
"identified": "[REFEREE] blows the whistle, [PLAYER_Qe3xUmHo] ([TEAM_]) is penalised for a foul.",
"anonymized": "[REFEREE] blows the whistle, [PLAYER] ([TEAM]) is penalised for a foul.",
"visibility": "shown",
"position": "1033000"
},
{
"important": false,
"gameTime": "1 - 16:28",
"label": "",
"description": "Moussa Sissoko (Newcastle Utd) collects a pass and has an effort from 24 metres out, but it flies just wide of the left post. The ball goes out of play and Chelsea will have a goal kick.",
"identified": "[PLAYER_4nQc78qp] ([TEAM_]) collects a pass and has an effort from 24 metres out, but it flies just wide of the left post. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) collects a pass and has an effort from 24 metres out, but it flies just wide of the left post. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "988000"
},
{
"important": false,
"gameTime": "1 - 15:40",
"label": "",
"description": "Georginio Wijnaldum sends a lovely lofted pass forward that flies over the top of the defence and into the path of Aleksandar Mitrovic (Newcastle Utd), but he can't direct his header on target as it flies well wide of the right post. The ball goes out of play and Chelsea will have a goal kick.",
"identified": "[PLAYER_f9KgUUZu] sends a lovely lofted pass forward that flies over the top of the defence and into the path of [PLAYER_OYOr8rkm] ([TEAM_]), but he can't direct his header on target as it flies well wide of the right post. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] sends a lovely lofted pass forward that flies over the top of the defence and into the path of [PLAYER] ([TEAM]), but he can't direct his header on target as it flies well wide of the right post. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "940000"
},
{
"important": false,
"gameTime": "1 - 13:54",
"label": "",
"description": "Cesc Fabregas (Chelsea) plays a through ball but overhits it. The referee and the linesman both signal a throw-in for Newcastle.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) plays a through ball but overhits it. The referee and the linesman both signal a throw-in for [TEAM_p6ahwuwJ].",
"anonymized": "[PLAYER] ([TEAM]) plays a through ball but overhits it. The referee and the linesman both signal a throw-in for [TEAM].",
"visibility": "shown",
"position": "834000"
},
{
"important": false,
"gameTime": "1 - 12:34",
"label": "",
"description": "Kevin Mbabu (Newcastle Utd) picks up a pass, lines up a shot and strikes from 25 metres out, but Asmir Begovic thwarts the effort which is headed low to the middle of the goal.",
"identified": "[PLAYER_jwWuH3uU] ([TEAM_]) picks up a pass, lines up a shot and strikes from 25 metres out, but [PLAYER_xO2Ce0IG] thwarts the effort which is headed low to the middle of the goal.",
"anonymized": "[PLAYER] ([TEAM]) picks up a pass, lines up a shot and strikes from 25 metres out, but [PLAYER] thwarts the effort which is headed low to the middle of the goal.",
"visibility": "shown",
"position": "754000"
},
{
"important": false,
"gameTime": "1 - 12:17",
"label": "",
"description": "Daryl Janmaat (Newcastle Utd) swings in a cross, but the ball is cleared to safety by one of the defending players.",
"identified": "[PLAYER_Kfrvwu25] ([TEAM_]) swings in a cross, but the ball is cleared to safety by one of the defending players.",
"anonymized": "[PLAYER] ([TEAM]) swings in a cross, but the ball is cleared to safety by one of the defending players.",
"visibility": "shown",
"position": "737000"
},
{
"important": true,
"gameTime": "1 - 11:16",
"label": "",
"description": "Loic Remy (Chelsea) receives a precise pass inside the box and takes a shot that flies just wide of the right post. The ball is off of the pitch and it's a goal kick for Newcastle.",
"identified": "[PLAYER_hYsYT4nh] ([TEAM_]) receives a precise pass inside the box and takes a shot that flies just wide of the right post. The ball is off of the pitch and it's a goal kick for [TEAM_p6ahwuwJ].",
"anonymized": "[PLAYER] ([TEAM]) receives a precise pass inside the box and takes a shot that flies just wide of the right post. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "676000"
},
{
"important": false,
"gameTime": "1 - 10:25",
"label": "",
"description": "A pass into the penalty area from Georginio Wijnaldum (Newcastle Utd) is intercepted by the defence.",
"identified": "A pass into the penalty area from [PLAYER_f9KgUUZu] ([TEAM_]) is intercepted by the defence.",
"anonymized": "A pass into the penalty area from [PLAYER] ([TEAM]) is intercepted by the defence.",
"visibility": "shown",
"position": "625000"
}
]
} |