File size: 86,862 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 |
{
"timestamp": "1453651200",
"score": "0 - 1",
"round": "23",
"teams": [
"Arsenal",
"Chelsea"
],
"lineup": {
"home": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "pxq49QlK",
"name": "Bellerin H.",
"captain": "",
"detail_link": "/player/bellerin-hector/pxq49QlK/",
"short_name": "Bellerin",
"shirt_number": "24",
"country": "Spain",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Hector Bellerin"
},
{
"hash": "fLAH2TtR",
"name": "Campbell J.",
"captain": "",
"detail_link": "/player/campbell-joel/fLAH2TtR/",
"short_name": "Campbell",
"shirt_number": "28",
"country": "Costa Rica",
"facts": [
{
"type": "6",
"time": "57'",
"description": "Sanchez A.",
"linked_player_hash": "QgGt7V0d"
}
],
"lineup": 8,
"starting": true,
"long_name": "Joel Campbell"
},
{
"hash": "fTjQ34vo",
"name": "Cech P.",
"captain": "",
"detail_link": "/player/cech-petr/fTjQ34vo/",
"short_name": "Cech",
"shirt_number": "33",
"country": "Czech Republic",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Petr Cech"
},
{
"hash": "UNtWs4P4",
"name": "Flamini M.",
"captain": "",
"detail_link": "/player/flamini-mathieu/UNtWs4P4/",
"short_name": "Flamini",
"shirt_number": "20",
"country": "France",
"facts": [
{
"type": "1",
"time": "45' Flamini M. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Mathieu Flamini"
},
{
"hash": "AJPBp2as",
"name": "Giroud O.",
"captain": "",
"detail_link": "/player/giroud-olivier/AJPBp2as/",
"short_name": "Giroud",
"shirt_number": "12",
"country": "France",
"facts": [
{
"type": "6",
"time": "22'",
"description": "Gabriel Paulista",
"linked_player_hash": "tCldvc6L"
}
],
"lineup": 11,
"starting": true,
"long_name": "Olivier Giroud"
},
{
"hash": "0MoFTxk9",
"name": "Koscielny L.",
"captain": "",
"detail_link": "/player/koscielny-laurent/0MoFTxk9/",
"short_name": "Koscielny",
"shirt_number": "6",
"country": "France",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Laurent Koscielny"
},
{
"hash": "tlwkgQLn",
"name": "Mertesacker P.",
"captain": "",
"detail_link": "/player/mertesacker-per/tlwkgQLn/",
"short_name": "Mertesacker",
"shirt_number": "4",
"country": "Germany",
"facts": [
{
"type": "2",
"time": "18' Mertesacker P. (Tripping)",
"description": "Red Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Per Mertesacker"
},
{
"hash": "CdXPbmcp",
"name": "Monreal N.",
"captain": "",
"detail_link": "/player/monreal-nacho/CdXPbmcp/",
"short_name": "Monreal",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Nacho Monreal"
},
{
"hash": "U30xq9EJ",
"name": "Ozil M.",
"captain": "",
"detail_link": "/player/ozil-mesut/U30xq9EJ/",
"short_name": "Ozil",
"shirt_number": "11",
"country": "Germany",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Mesut Ozil"
},
{
"hash": "fBD08Fin",
"name": "Ramsey A.",
"captain": "",
"detail_link": "/player/ramsey-aaron/fBD08Fin/",
"short_name": "Ramsey",
"shirt_number": "16",
"country": "Wales",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Aaron Ramsey"
},
{
"hash": "2cpouZhq",
"name": "Walcott T.",
"captain": "(C)",
"detail_link": "/player/walcott-theo/2cpouZhq/",
"short_name": "Walcott",
"shirt_number": "14",
"country": "England",
"facts": [
{
"type": "6",
"time": "75'",
"description": "Oxlade-Chamberlain A.",
"linked_player_hash": "WzNLf7VR"
}
],
"lineup": 10,
"starting": true,
"long_name": "Theo Walcott"
},
{
"hash": "6u93gyCG",
"name": "Chambers C.",
"captain": "",
"detail_link": "/player/chambers-calum/6u93gyCG/",
"short_name": "Chambers",
"shirt_number": "21",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Calum Chambers"
},
{
"hash": "MwhMibOo",
"name": "Elneny M.",
"captain": "",
"detail_link": "/player/elneny-mohamed/MwhMibOo/",
"short_name": "Elneny",
"shirt_number": "35",
"country": "Egypt",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mohamed Elneny"
},
{
"hash": "tCldvc6L",
"name": "Gabriel Paulista",
"captain": "",
"detail_link": "/player/gabriel-paulista/tCldvc6L/",
"short_name": "Gabriel Paulista",
"shirt_number": "5",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "22'",
"description": "Giroud O.",
"linked_player_hash": "AJPBp2as"
}
],
"lineup": null,
"starting": false,
"long_name": "Gabriel Paulista"
},
{
"hash": "tvEj3HIu",
"name": "Gibbs K.",
"captain": "",
"detail_link": "/player/gibbs-kieran/tvEj3HIu/",
"short_name": "Gibbs",
"shirt_number": "3",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Kieran Gibbs"
},
{
"hash": "6PHywlJK",
"name": "Ospina D.",
"captain": "",
"detail_link": "/player/ospina-david/6PHywlJK/",
"short_name": "Ospina",
"shirt_number": "13",
"country": "Colombia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "David Ospina"
},
{
"hash": "WzNLf7VR",
"name": "Oxlade-Chamberlain A.",
"captain": "",
"detail_link": "/player/oxlade-chamberlain-alex/WzNLf7VR/",
"short_name": "Oxlade-Chamberlain",
"shirt_number": "15",
"country": "England",
"facts": [
{
"type": "7",
"time": "75'",
"description": "Walcott T.",
"linked_player_hash": "2cpouZhq"
}
],
"lineup": null,
"starting": false,
"long_name": "Alex Oxlade-Chamberlain"
},
{
"hash": "QgGt7V0d",
"name": "Sanchez A.",
"captain": "",
"detail_link": "/player/sanchez-alexis/QgGt7V0d/",
"short_name": "Sanchez",
"shirt_number": "17",
"country": "Chile",
"facts": [
{
"type": "7",
"time": "57'",
"description": "Campbell J.",
"linked_player_hash": "fLAH2TtR"
}
],
"lineup": null,
"starting": false,
"long_name": "Alexis Sanchez"
}
],
"coach": [
{
"hash": "8fxQ0wN8",
"name": "Wenger A.",
"captain": "",
"detail_link": "/player/wenger-arsene/8fxQ0wN8/",
"short_name": "Wenger A.",
"shirt_number": "",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Arsene Wenger"
}
]
},
"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": "vBw5nir8",
"name": "Costa D.",
"captain": "",
"detail_link": "/player/costa-diego/vBw5nir8/",
"short_name": "Costa",
"shirt_number": "19",
"country": "Spain",
"facts": [
{
"type": "3",
"time": "23' Costa D. (Ivanovic B.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "69'",
"description": "Remy L.",
"linked_player_hash": "hYsYT4nh"
}
],
"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": "YXIDwoe5",
"name": "Fabregas C.",
"captain": "",
"detail_link": "/player/fabregas-cesc/YXIDwoe5/",
"short_name": "Fabregas",
"shirt_number": "4",
"country": "Spain",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Cesc Fabregas"
},
{
"hash": "Qe3xUmHo",
"name": "Ivanovic B.",
"captain": "",
"detail_link": "/player/ivanovic-branislav/Qe3xUmHo/",
"short_name": "Ivanovic",
"shirt_number": "2",
"country": "Serbia",
"facts": [
{
"type": "8",
"time": "23' Costa D. (Ivanovic B.)",
"description": "Assistance",
"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": "1",
"time": "60' Matic N. (Impeding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Nemanja Matic"
},
{
"hash": "8AkbVvN2",
"name": "Mikel J. O.",
"captain": "",
"detail_link": "/player/mikel-john-obi/8AkbVvN2/",
"short_name": "Mikel",
"shirt_number": "12",
"country": "Nigeria",
"facts": [
{
"type": "1",
"time": "72' Mikel J. O. (Elbowing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "John Obi Mikel"
},
{
"hash": "KfKDzbEo",
"name": "Oscar",
"captain": "",
"detail_link": "/player/oscar/KfKDzbEo/",
"short_name": "Oscar",
"shirt_number": "8",
"country": "Brazil",
"facts": [
{
"type": "1",
"time": "11' Oscar (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "77'",
"description": "Hazard E.",
"linked_player_hash": "QH2of5sJ"
}
],
"lineup": 10,
"starting": true,
"long_name": "Oscar"
},
{
"hash": "0AovoI68",
"name": "Terry J.",
"captain": "(C)",
"detail_link": "/player/terry-john/0AovoI68/",
"short_name": "Terry",
"shirt_number": "26",
"country": "England",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "John Terry"
},
{
"hash": "GSzdOhPI",
"name": "Willian",
"captain": "",
"detail_link": "/player/willian/GSzdOhPI/",
"short_name": "Willian",
"shirt_number": "22",
"country": "Brazil",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Willian"
},
{
"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": "K2yVXyhU",
"name": "Baba A.",
"captain": "",
"detail_link": "/player/baba-rahman/K2yVXyhU/",
"short_name": "Baba",
"shirt_number": "6",
"country": "Ghana",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Abdul-Rahman Baba"
},
{
"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": "pKpkgR1U",
"name": "Cahill G.",
"captain": "",
"detail_link": "/player/cahill-gary/pKpkgR1U/",
"short_name": "Cahill",
"shirt_number": "24",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Gary Cahill"
},
{
"hash": "QH2of5sJ",
"name": "Hazard E.",
"captain": "",
"detail_link": "/player/hazard-eden/QH2of5sJ/",
"short_name": "Hazard",
"shirt_number": "10",
"country": "Belgium",
"facts": [
{
"type": "7",
"time": "77'",
"description": "Oscar",
"linked_player_hash": "KfKDzbEo"
}
],
"lineup": null,
"starting": false,
"long_name": "Eden Hazard"
},
{
"hash": "6DpURWF8",
"name": "Loftus-Cheek R.",
"captain": "",
"detail_link": "/player/loftus-cheek-ruben/6DpURWF8/",
"short_name": "Loftus-Cheek",
"shirt_number": "36",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ruben Loftus-Cheek"
},
{
"hash": "hYsYT4nh",
"name": "Remy L.",
"captain": "",
"detail_link": "/player/remy-loic/hYsYT4nh/",
"short_name": "Remy",
"shirt_number": "18",
"country": "France",
"facts": [
{
"type": "7",
"time": "69'",
"description": "Costa D.",
"linked_player_hash": "vBw5nir8"
}
],
"lineup": null,
"starting": false,
"long_name": "Loic Remy"
},
{
"hash": "MwckEcbf",
"name": "Traore B.",
"captain": "",
"detail_link": "/player/traore-bertrand/MwckEcbf/",
"short_name": "Traore",
"shirt_number": "14",
"country": "Burkina Faso",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Bertrand Traore"
}
],
"coach": [
{
"hash": "CGfbv5C1",
"name": "Hiddink G.",
"captain": "",
"detail_link": "/player/hiddink-guus/CGfbv5C1/",
"short_name": "Hiddink G.",
"shirt_number": "",
"country": "Netherlands",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Guus Hiddink"
}
]
}
},
"referee": [
"Clattenburg M."
],
"venue": [
"Emirates Stadium (London)"
],
"attendance": [
"60 072"
],
"referee_matched": [
"Mark Clattenburg"
],
"referee_found": [
"Mark Clattenburg"
],
"coach_matched": [
"Guus Hiddink"
],
"gameHomeTeam": "Arsenal",
"home": {
"name": "Arsenal",
"detail_link": "/team/arsenal/hA1Zm19f",
"hash": "hA1Zm19f",
"names": [
"Arsenal",
"Arsenal (Eng)",
"arsenal"
]
},
"gameAwayTeam": "Chelsea",
"away": {
"name": "Chelsea",
"detail_link": "/team/chelsea/4fGZN2oK",
"hash": "4fGZN2oK",
"names": [
"Chelsea",
"chelsea"
]
},
"gameDate": "24/01/2016 - 17:00",
"annotations": [
{
"important": false,
"gameTime": "2 - 50:59",
"label": "",
"description": "It was a good decision to watch today's encounter. There has been more to see on the pitch than in most of the other games. We saw a very balanced game over the 90 minutes. Both sides tried to combine well and to keep the ball at their feet.",
"identified": "It was a good decision to watch today's encounter. There has been more to see on the pitch than in most of the other games. We saw a very balanced game over the 90 minutes. Both sides tried to combine well and to keep the ball at their feet.",
"anonymized": "It was a good decision to watch today's encounter. There has been more to see on the pitch than in most of the other games. We saw a very balanced game over the 90 minutes. Both sides tried to combine well and to keep the ball at their feet.",
"visibility": "shown",
"position": "3059000"
},
{
"important": true,
"gameTime": "2 - 50:12",
"label": "whistle",
"description": "There will be no more action in this match as the referee signals full time.",
"identified": "There will be no more action in this match as the referee signals full time.",
"anonymized": "There will be no more action in this match as the referee signals full time.",
"visibility": "shown",
"position": "3012000"
},
{
"important": false,
"gameTime": "2 - 49:50",
"label": "",
"description": "Willian (Chelsea) plays a dangerous chip pass into the box in an attempt to set up one of his teammates, but the effort is intercepted by one of the defenders.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) plays a dangerous chip pass into the box in an attempt to set up one of his teammates, but the effort is intercepted by one of the defenders.",
"anonymized": "[PLAYER] ([TEAM]) plays a dangerous chip pass into the box in an attempt to set up one of his teammates, but the effort is intercepted by one of the defenders.",
"visibility": "shown",
"position": "2990000"
},
{
"important": false,
"gameTime": "2 - 49:28",
"label": "corner",
"description": "Mesut Ozil (Arsenal) takes the corner kick and sends the ball among a huddle of players inside the penalty area, but one of the defenders clears it to safety.",
"identified": "[PLAYER_U30xq9EJ] ([TEAM_]) takes the corner kick and sends the ball among a huddle of players inside the penalty area, but one of the defenders clears it to safety.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner kick and sends the ball among a huddle of players inside the penalty area, but one of the defenders clears it to safety.",
"visibility": "shown",
"position": "2968000"
},
{
"important": false,
"gameTime": "2 - 48:57",
"label": "",
"description": "Aaron Ramsey (Arsenal) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear. Arsenal have been awarded a corner kick.",
"identified": "[PLAYER_fBD08Fin] ([TEAM_]) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear. [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "2937000"
},
{
"important": true,
"gameTime": "2 - 48:05",
"label": "",
"description": "What a big chance! Willian (Chelsea) picks up an inch-perfect pass inside the box and fires the ball well wide of the left post.",
"identified": "What a big chance! [PLAYER_GSzdOhPI] ([TEAM_]) picks up an inch-perfect pass inside the box and fires the ball well wide of the left post.",
"anonymized": "What a big chance! [PLAYER] ([TEAM]) picks up an inch-perfect pass inside the box and fires the ball well wide of the left post.",
"visibility": "shown",
"position": "2885000"
},
{
"important": false,
"gameTime": "2 - 47:25",
"label": "",
"description": "Loic Remy receives a short pass from Eden Hazard (Chelsea), but the opposition's defence thwarts his effort.",
"identified": "[PLAYER_hYsYT4nh] receives a short pass from [PLAYER_QH2of5sJ] ([TEAM_]), but the opposition's defence thwarts his effort.",
"anonymized": "[PLAYER] receives a short pass from [PLAYER] ([TEAM]), but the opposition's defence thwarts his effort.",
"visibility": "shown",
"position": "2845000"
},
{
"important": false,
"gameTime": "2 - 45:47",
"label": "",
"description": "The ball spins up and hits the hand of Aaron Ramsey (Arsenal) after he fails to control it and the referee blows his whistle for a foul.",
"identified": "The ball spins up and hits the hand of [PLAYER_fBD08Fin] ([TEAM_]) after he fails to control it and the referee blows his whistle for a foul.",
"anonymized": "The ball spins up and hits the hand of [PLAYER] ([TEAM]) after he fails to control it and the referee blows his whistle for a foul.",
"visibility": "shown",
"position": "2747000"
},
{
"important": false,
"gameTime": "2 - 45:04",
"label": "",
"description": "Nacho Monreal (Arsenal) attempts to find one of his teammates with a sweet pass into the box, but one of the defending players reacts well and intercepts the effort.",
"identified": "[PLAYER_CdXPbmcp] ([TEAM_]) attempts to find one of his teammates with a sweet pass into the box, but one of the defending players reacts well and intercepts the effort.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find one of his teammates with a sweet pass into the box, but one of the defending players reacts well and intercepts the effort.",
"visibility": "shown",
"position": "2704000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "Fourth official shows 5 min. of added time.",
"identified": "Fourth official shows 5 min. of added time.",
"anonymized": "Fourth official shows 5 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 44:40",
"label": "",
"description": "The flag is raised and Loic Remy (Chelsea) is offside again, not for the first time today.",
"identified": "The flag is raised and [PLAYER_hYsYT4nh] ([TEAM_]) is offside again, not for the first time today.",
"anonymized": "The flag is raised and [PLAYER] ([TEAM]) is offside again, not for the first time today.",
"visibility": "shown",
"position": "2680000"
},
{
"important": false,
"gameTime": "2 - 43:00",
"label": "",
"description": "Loic Remy (Chelsea) finds himself in a promising position after receiving an excellent pass into the box, but one of the defenders produces a timely intervention to avert the threat.",
"identified": "[PLAYER_hYsYT4nh] ([TEAM_]) finds himself in a promising position after receiving an excellent pass into the box, but one of the defenders produces a timely intervention to avert the threat.",
"anonymized": "[PLAYER] ([TEAM]) finds himself in a promising position after receiving an excellent pass into the box, but one of the defenders produces a timely intervention to avert the threat.",
"visibility": "shown",
"position": "2580000"
},
{
"important": false,
"gameTime": "2 - 41:14",
"label": "",
"description": "Mathieu Flamini (Arsenal) has a great chance inside the six-yard box, shoots to the right side of the goal, but Thibaut Courtois pulls off an exquisite save to deny him.",
"identified": "[PLAYER_UNtWs4P4] ([TEAM_]) has a great chance inside the six-yard box, shoots to the right side of the goal, but [PLAYER_MVExOq3n] pulls off an exquisite save to deny him.",
"anonymized": "[PLAYER] ([TEAM]) has a great chance inside the six-yard box, shoots to the right side of the goal, but [PLAYER] pulls off an exquisite save to deny him.",
"visibility": "shown",
"position": "2474000"
},
{
"important": false,
"gameTime": "2 - 39:49",
"label": "",
"description": "Mesut Ozil (Arsenal) whips in the resulting set piece but it's cleared.",
"identified": "[PLAYER_U30xq9EJ] ([TEAM_]) whips in the resulting set piece but it's cleared.",
"anonymized": "[PLAYER] ([TEAM]) whips in the resulting set piece but it's cleared.",
"visibility": "shown",
"position": "2389000"
},
{
"important": false,
"gameTime": "2 - 39:18",
"label": "",
"description": "Eden Hazard (Chelsea) should know this behaviour is beyond the rules. He was too careless with his challenge and left Mark Clattenburg no option but to blow his whistle. A free kick to Arsenal.",
"identified": "[PLAYER_QH2of5sJ] ([TEAM_]) should know this behaviour is beyond the rules. He was too careless with his challenge and left [REFEREE] no option but to blow his whistle. A free kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) should know this behaviour is beyond the rules. He was too careless with his challenge and left [REFEREE] no option but to blow his whistle. A free kick to [TEAM].",
"visibility": "shown",
"position": "2358000"
},
{
"important": false,
"gameTime": "2 - 38:56",
"label": "corner",
"description": "The corner kick from Mesut Ozil (Arsenal) is headed out of the penalty area by one of the defenders.",
"identified": "The corner kick from [PLAYER_U30xq9EJ] ([TEAM_]) is headed out of the penalty area by one of the defenders.",
"anonymized": "The corner kick from [PLAYER] ([TEAM]) is headed out of the penalty area by one of the defenders.",
"visibility": "shown",
"position": "2336000"
},
{
"important": false,
"gameTime": "2 - 38:36",
"label": "",
"description": "Mesut Ozil (Arsenal) attempts to find one of his teammates inside the box with a chip pass, but one of the defending players reacts superbly and intercepts the ball. The linesman points to the corner flag, Arsenal are going to take it.",
"identified": "[PLAYER_U30xq9EJ] ([TEAM_]) attempts to find one of his teammates inside the box with a chip pass, but one of the defending players reacts superbly and intercepts the ball. The linesman points to the corner flag, [TEAM_] are going to take it.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find one of his teammates inside the box with a chip pass, but one of the defending players reacts superbly and intercepts the ball. The linesman points to the corner flag, [TEAM] are going to take it.",
"visibility": "shown",
"position": "2316000"
},
{
"important": false,
"gameTime": "2 - 36:10",
"label": "",
"description": "Half-chance! Eden Hazard (Chelsea) plays a pass into the box, but Petr Cech reacts well to snuff out the attack.",
"identified": "Half-chance! [PLAYER_QH2of5sJ] ([TEAM_]) plays a pass into the box, but [PLAYER_fTjQ34vo] reacts well to snuff out the attack.",
"anonymized": "Half-chance! [PLAYER] ([TEAM]) plays a pass into the box, but [PLAYER] reacts well to snuff out the attack.",
"visibility": "shown",
"position": "2170000"
},
{
"important": false,
"gameTime": "2 - 34:37",
"label": "attendance",
"description": "The attendance for today's match is 60072.",
"identified": "The attendance for today's match is 60072.",
"anonymized": "The attendance for today's match is 60072.",
"visibility": "shown",
"position": "2077000"
},
{
"important": false,
"gameTime": "2 - 33:55",
"label": "",
"description": "Alexis Sanchez (Arsenal) received a pass inside the box and sent a dangerous shot in on goal, but keep the champagne on ice as one of the defenders stepped in and blocked the effort. It's hard to say whether the keeper would have stopped it.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) received a pass inside the box and sent a dangerous shot in on goal, but keep the champagne on ice as one of the defenders stepped in and blocked the effort. It's hard to say whether the keeper would have stopped it.",
"anonymized": "[PLAYER] ([TEAM]) received a pass inside the box and sent a dangerous shot in on goal, but keep the champagne on ice as one of the defenders stepped in and blocked the effort. It's hard to say whether the keeper would have stopped it.",
"visibility": "shown",
"position": "2035000"
},
{
"important": false,
"gameTime": "2 - 33:25",
"label": "",
"description": "Loic Remy (Chelsea) is caught offside!",
"identified": "[PLAYER_hYsYT4nh] ([TEAM_]) is caught offside!",
"anonymized": "[PLAYER] ([TEAM]) is caught offside!",
"visibility": "shown",
"position": "2005000"
},
{
"important": false,
"gameTime": "2 - 32:47",
"label": "corner",
"description": "Mesut Ozil (Arsenal) decides to speed play up with a short corner kick.",
"identified": "[PLAYER_U30xq9EJ] ([TEAM_]) decides to speed play up with a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) decides to speed play up with a short corner kick.",
"visibility": "shown",
"position": "1967000"
},
{
"important": false,
"gameTime": "2 - 32:11",
"label": "",
"description": "Alex Oxlade-Chamberlain (Arsenal) receives a clever long through ball and finds himself in a promising position inside the box, but the defence is alert to the danger and clears. Arsenal will take a corner kick.",
"identified": "[PLAYER_WzNLf7VR] ([TEAM_]) receives a clever long through ball and finds himself in a promising position inside the box, but the defence is alert to the danger and clears. [TEAM_] will take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) receives a clever long through ball and finds himself in a promising position inside the box, but the defence is alert to the danger and clears. [TEAM] will take a corner kick.",
"visibility": "shown",
"position": "1931000"
},
{
"important": true,
"gameTime": "2 - 31:05",
"label": "substitution",
"description": "Guus Hiddink prepares a substitution. Oscar is replaced by Eden Hazard (Chelsea).",
"identified": "[COACH_CGfbv5C1] prepares a substitution. [PLAYER_KfKDzbEo] is replaced by [PLAYER_QH2of5sJ] ([TEAM_]).",
"anonymized": "[COACH] prepares a substitution. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1865000"
},
{
"important": false,
"gameTime": "2 - 29:56",
"label": "",
"description": "Loic Remy (Chelsea) is offside and the linesman raises his flag.",
"identified": "[PLAYER_hYsYT4nh] ([TEAM_]) is offside and the linesman raises his flag.",
"anonymized": "[PLAYER] ([TEAM]) is offside and the linesman raises his flag.",
"visibility": "shown",
"position": "1796000"
},
{
"important": true,
"gameTime": "2 - 29:03",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Theo Walcott leaves the pitch and Alex Oxlade-Chamberlain (Arsenal) comes on.",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_2cpouZhq] leaves the pitch and [PLAYER_WzNLf7VR] ([TEAM_]) comes on.",
"anonymized": "The referee stops play so that a substitution can be made and [PLAYER] leaves the pitch and [PLAYER] ([TEAM]) comes on.",
"visibility": "shown",
"position": "1743000"
},
{
"important": false,
"gameTime": "2 - 28:11",
"label": "",
"description": "Hector Bellerin (Arsenal) crosses into the box from near the side line, but he doesn't connect as he wanted and it's cleared by the well-organized defence.",
"identified": "[PLAYER_pxq49QlK] ([TEAM_]) crosses into the box from near the side line, but he doesn't connect as he wanted and it's cleared by the well-organized defence.",
"anonymized": "[PLAYER] ([TEAM]) crosses into the box from near the side line, but he doesn't connect as he wanted and it's cleared by the well-organized defence.",
"visibility": "shown",
"position": "1691000"
},
{
"important": false,
"gameTime": "2 - 27:43",
"label": "",
"description": "A pass from Cesc Fabregas (Chelsea) is intercepted by Petr Cech and the move breaks down.",
"identified": "A pass from [PLAYER_YXIDwoe5] ([TEAM_]) is intercepted by [PLAYER_fTjQ34vo] and the move breaks down.",
"anonymized": "A pass from [PLAYER] ([TEAM]) is intercepted by [PLAYER] and the move breaks down.",
"visibility": "shown",
"position": "1663000"
},
{
"important": true,
"gameTime": "2 - 26:40",
"label": "y-card",
"description": "John Obi Mikel (Chelsea) is booked after bringing down an opponent. Mark Clattenburg had an easy-decision to make.",
"identified": "[PLAYER_8AkbVvN2] ([TEAM_]) is booked after bringing down an opponent. [REFEREE] had an easy-decision to make.",
"anonymized": "[PLAYER] ([TEAM]) is booked after bringing down an opponent. [REFEREE] had an easy-decision to make.",
"visibility": "shown",
"position": "1600000"
},
{
"important": false,
"gameTime": "2 - 24:28",
"label": "",
"description": "Cesc Fabregas (Chelsea) gets on the end of a pass on the edge of the penalty area and shoots towards the middle of the goal. He didn't put enough power into the effort, though, and Petr Cech pulls off an easy save.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) gets on the end of a pass on the edge of the penalty area and shoots towards the middle of the goal. He didn't put enough power into the effort, though, and [PLAYER_fTjQ34vo] pulls off an easy save.",
"anonymized": "[PLAYER] ([TEAM]) gets on the end of a pass on the edge of the penalty area and shoots towards the middle of the goal. He didn't put enough power into the effort, though, and [PLAYER] pulls off an easy save.",
"visibility": "shown",
"position": "1468000"
},
{
"important": true,
"gameTime": "2 - 23:12",
"label": "substitution",
"description": "Problems for Guus Hiddink as Diego Costa is not able to play anymore. His injury is too serious and Loic Remy (Chelsea) replaces him.",
"identified": "Problems for [COACH_CGfbv5C1] as [PLAYER_vBw5nir8] is not able to play anymore. His injury is too serious and [PLAYER_hYsYT4nh] ([TEAM_]) replaces him.",
"anonymized": "Problems for [COACH] as [PLAYER] is not able to play anymore. His injury is too serious and [PLAYER] ([TEAM]) replaces him.",
"visibility": "shown",
"position": "1392000"
},
{
"important": false,
"gameTime": "2 - 21:48",
"label": "injury",
"description": "Diego Costa (Chelsea) picks up an injury.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) picks up an injury.",
"anonymized": "[PLAYER] ([TEAM]) picks up an injury.",
"visibility": "shown",
"position": "1308000"
},
{
"important": false,
"gameTime": "2 - 21:28",
"label": "corner",
"description": "Thibaut Courtois leaps to collect the ball from the corner which was sent over by Mesut Ozil (Arsenal).",
"identified": "[PLAYER_MVExOq3n] leaps to collect the ball from the corner which was sent over by [PLAYER_U30xq9EJ] ([TEAM_]).",
"anonymized": "[PLAYER] leaps to collect the ball from the corner which was sent over by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1288000"
},
{
"important": false,
"gameTime": "2 - 21:04",
"label": "",
"description": "The defence is alert as they clear a dangerous cross from Hector Bellerin (Arsenal). Arsenal have been awarded a corner kick.",
"identified": "The defence is alert as they clear a dangerous cross from [PLAYER_pxq49QlK] ([TEAM_]). [TEAM_] have been awarded a corner kick.",
"anonymized": "The defence is alert as they clear a dangerous cross from [PLAYER] ([TEAM]). [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "1264000"
},
{
"important": false,
"gameTime": "2 - 20:28",
"label": "",
"description": "Oscar (Chelsea) attempts to scoop the ball into the box over the defence, but one of the defending players makes a timely intervention.",
"identified": "[PLAYER_KfKDzbEo] ([TEAM_]) attempts to scoop the ball into the box over the defence, but one of the defending players makes a timely intervention.",
"anonymized": "[PLAYER] ([TEAM]) attempts to scoop the ball into the box over the defence, but one of the defending players makes a timely intervention.",
"visibility": "shown",
"position": "1228000"
},
{
"important": true,
"gameTime": "2 - 18:25",
"label": "",
"description": "Gabriel (Arsenal) receives the ball inside the box from the resulting free kick, but fails to score as his shot is blocked by one of the defenders.",
"identified": "[PLAYER_tCldvc6L] ([TEAM_]) receives the ball inside the box from the resulting free kick, but fails to score as his shot is blocked by one of the defenders.",
"anonymized": "[PLAYER] ([TEAM]) receives the ball inside the box from the resulting free kick, but fails to score as his shot is blocked by one of the defenders.",
"visibility": "shown",
"position": "1105000"
},
{
"important": false,
"gameTime": "2 - 18:11",
"label": "",
"description": "Mesut Ozil (Arsenal) will take the free kick.",
"identified": "[PLAYER_U30xq9EJ] ([TEAM_]) will take the free kick.",
"anonymized": "[PLAYER] ([TEAM]) will take the free kick.",
"visibility": "shown",
"position": "1091000"
},
{
"important": false,
"gameTime": "2 - 17:21",
"label": "",
"description": "Cesc Fabregas (Chelsea) makes a reckless foul in order to win the ball from his opponent. Mark Clattenburg has a clear sight of it and blows his whistle. Arsenal have a free kick.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) makes a reckless foul in order to win the ball from his opponent. [REFEREE] has a clear sight of it and blows his whistle. [TEAM_] have a free kick.",
"anonymized": "[PLAYER] ([TEAM]) makes a reckless foul in order to win the ball from his opponent. [REFEREE] has a clear sight of it and blows his whistle. [TEAM] have a free kick.",
"visibility": "shown",
"position": "1041000"
},
{
"important": true,
"gameTime": "2 - 14:43",
"label": "y-card",
"description": "Nemanja Matic (Chelsea) has received a yellow card for his foul.",
"identified": "[PLAYER_Kty10JVG] ([TEAM_]) has received a yellow card for his foul.",
"anonymized": "[PLAYER] ([TEAM]) has received a yellow card for his foul.",
"visibility": "shown",
"position": "883000"
},
{
"important": false,
"gameTime": "2 - 12:36",
"label": "",
"description": "Nemanja Matic (Chelsea) is penalised for a foul. Mark Clattenburg had a clear view and blows his whistle.",
"identified": "[PLAYER_Kty10JVG] ([TEAM_]) is penalised for a foul. [REFEREE] had a clear view and blows his whistle.",
"anonymized": "[PLAYER] ([TEAM]) is penalised for a foul. [REFEREE] had a clear view and blows his whistle.",
"visibility": "shown",
"position": "756000"
},
{
"important": false,
"gameTime": "2 - 11:56",
"label": "",
"description": "Diego Costa (Chelsea) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"anonymized": "[PLAYER] ([TEAM]) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"visibility": "shown",
"position": "716000"
},
{
"important": true,
"gameTime": "2 - 11:28",
"label": "substitution",
"description": "We are about to witness a subsitution. Alexis Sanchez (Arsenal) for Joel Campbell.",
"identified": "We are about to witness a subsitution. [PLAYER_QgGt7V0d] ([TEAM_]) for [PLAYER_fLAH2TtR].",
"anonymized": "We are about to witness a subsitution. [PLAYER] ([TEAM]) for [PLAYER].",
"visibility": "shown",
"position": "688000"
},
{
"important": false,
"gameTime": "2 - 10:50",
"label": "corner",
"description": "Willian (Chelsea) swings in the corner, but it's comfortably cleared away.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) swings in the corner, but it's comfortably cleared away.",
"anonymized": "[PLAYER] ([TEAM]) swings in the corner, but it's comfortably cleared away.",
"visibility": "shown",
"position": "650000"
},
{
"important": false,
"gameTime": "2 - 10:38",
"label": "",
"description": "Nemanja Matic (Chelsea) rises high to connect with a lofted pass inside the box, but one of his opponents is in the right place at the right time to thwart him. The ball is out of play. Chelsea win a corner kick.",
"identified": "[PLAYER_Kty10JVG] ([TEAM_]) rises high to connect with a lofted pass inside the box, but one of his opponents is in the right place at the right time to thwart him. The ball is out of play. [TEAM_] win a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) rises high to connect with a lofted pass inside the box, but one of his opponents is in the right place at the right time to thwart him. The ball is out of play. [TEAM] win a corner kick.",
"visibility": "shown",
"position": "638000"
},
{
"important": false,
"gameTime": "2 - 10:24",
"label": "corner",
"description": "A horde of players are waiting inside the penalty area for a cross from the corner, but Willian (Chelsea) takes it short.",
"identified": "A horde of players are waiting inside the penalty area for a cross from the corner, but [PLAYER_GSzdOhPI] ([TEAM_]) takes it short.",
"anonymized": "A horde of players are waiting inside the penalty area for a cross from the corner, but [PLAYER] ([TEAM]) takes it short.",
"visibility": "shown",
"position": "624000"
},
{
"important": false,
"gameTime": "2 - 10:20",
"label": "",
"description": "Oscar (Chelsea) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance. Chelsea force their opponents to concede a corner.",
"identified": "[PLAYER_KfKDzbEo] ([TEAM_]) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance. [TEAM_] force their opponents to concede a corner.",
"anonymized": "[PLAYER] ([TEAM]) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance. [TEAM] force their opponents to concede a corner.",
"visibility": "shown",
"position": "620000"
},
{
"important": false,
"gameTime": "2 - 10:10",
"label": "corner",
"description": "This corner kick is taken with a short pass by Willian (Chelsea).",
"identified": "This corner kick is taken with a short pass by [PLAYER_GSzdOhPI] ([TEAM_]).",
"anonymized": "This corner kick is taken with a short pass by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "610000"
},
{
"important": false,
"gameTime": "2 - 09:44",
"label": "",
"description": "Good clearance! Nemanja Matic (Chelsea) received a low pass, but he didn't have time to do anything as one of the defenders quickly stole the ball off him. The referee blows his whistle, Chelsea are awarded a corner kick.",
"identified": "Good clearance! [PLAYER_Kty10JVG] ([TEAM_]) received a low pass, but he didn't have time to do anything as one of the defenders quickly stole the ball off him. The referee blows his whistle, [TEAM_] are awarded a corner kick.",
"anonymized": "Good clearance! [PLAYER] ([TEAM]) received a low pass, but he didn't have time to do anything as one of the defenders quickly stole the ball off him. The referee blows his whistle, [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "584000"
},
{
"important": false,
"gameTime": "2 - 09:20",
"label": "corner",
"description": "Willian (Chelsea) takes the corner with a short pass.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) takes the corner with a short pass.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner with a short pass.",
"visibility": "shown",
"position": "560000"
},
{
"important": false,
"gameTime": "2 - 09:00",
"label": "",
"description": "The ball is cleared after Cesar Azpilicueta (Chelsea) attempted to dribble past an opposing player. Corner kick. Chelsea will have an opportunity.",
"identified": "The ball is cleared after [PLAYER_CMGUADgt] ([TEAM_]) attempted to dribble past an opposing player. Corner kick. [TEAM_] will have an opportunity.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. Corner kick. [TEAM] will have an opportunity.",
"visibility": "shown",
"position": "540000"
},
{
"important": false,
"gameTime": "2 - 06:24",
"label": "",
"description": "Willian (Chelsea) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"identified": "[PLAYER_GSzdOhPI] ([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": "384000"
},
{
"important": false,
"gameTime": "2 - 04:23",
"label": "",
"description": "The flag is raised by the referee's assistant. Diego Costa (Chelsea) is repeatedly being caught offside. He's always hanging on the shoulder of the last man to try and get into a scoring position.",
"identified": "The flag is raised by the referee's assistant. [PLAYER_vBw5nir8] ([TEAM_]) is repeatedly being caught offside. He's always hanging on the shoulder of the last man to try and get into a scoring position.",
"anonymized": "The flag is raised by the referee's assistant. [PLAYER] ([TEAM]) is repeatedly being caught offside. He's always hanging on the shoulder of the last man to try and get into a scoring position.",
"visibility": "shown",
"position": "263000"
},
{
"important": false,
"gameTime": "2 - 03:48",
"label": "",
"description": "Flag up against Diego Costa (Chelsea). He had space to move into behind the defence, but he went too soon.",
"identified": "Flag up against [PLAYER_vBw5nir8] ([TEAM_]). He had space to move into behind the defence, but he went too soon.",
"anonymized": "Flag up against [PLAYER] ([TEAM]). He had space to move into behind the defence, but he went too soon.",
"visibility": "shown",
"position": "228000"
},
{
"important": false,
"gameTime": "2 - 01:43",
"label": "corner",
"description": "The corner from Willian (Chelsea) is cleared away by the defence.",
"identified": "The corner from [PLAYER_GSzdOhPI] ([TEAM_]) is cleared away by the defence.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is cleared away by the defence.",
"visibility": "shown",
"position": "103000"
},
{
"important": false,
"gameTime": "2 - 01:15",
"label": "",
"description": "Oscar (Chelsea) gets to the rebound outside the box and doesn't hesitate to shoot on goal. It was a promising attempt, but one of the defending players got in the way and blocked it. The ball is out of play. Chelsea will have a chance to score from a corner.",
"identified": "[PLAYER_KfKDzbEo] ([TEAM_]) gets to the rebound outside the box and doesn't hesitate to shoot on goal. It was a promising attempt, but one of the defending players got in the way and blocked it. The ball is out of play. [TEAM_] will have a chance to score from a corner.",
"anonymized": "[PLAYER] ([TEAM]) gets to the rebound outside the box and doesn't hesitate to shoot on goal. It was a promising attempt, but one of the defending players got in the way and blocked it. The ball is out of play. [TEAM] will have a chance to score from a corner.",
"visibility": "shown",
"position": "75000"
},
{
"important": false,
"gameTime": "2 - 01:07",
"label": "",
"description": "Willian (Chelsea) puts a cross into the box from the free kick but it's cleared.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) puts a cross into the box from the free kick but it's cleared.",
"anonymized": "[PLAYER] ([TEAM]) puts a cross into the box from the free kick but it's cleared.",
"visibility": "shown",
"position": "67000"
},
{
"important": false,
"gameTime": "2 - 00:43",
"label": "",
"description": "Mathieu Flamini (Arsenal) makes an overly-aggressive challenge and Mark Clattenburg blows his whistle for a foul. It's a free kick to Chelsea in a dangerous position.",
"identified": "[PLAYER_UNtWs4P4] ([TEAM_]) makes an overly-aggressive challenge and [REFEREE] blows his whistle for a foul. It's a free kick to [TEAM_] in a dangerous position.",
"anonymized": "[PLAYER] ([TEAM]) makes an overly-aggressive challenge and [REFEREE] blows his whistle for a foul. It's a free kick to [TEAM] in a dangerous position.",
"visibility": "shown",
"position": "43000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The referee blows his whistle to signal the start of the second half.",
"identified": "The referee blows his whistle to signal the start of the second half.",
"anonymized": "The referee blows his whistle to signal the start of the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 46:59",
"label": "",
"description": "There was certainly plenty of action during that opening 45 minutes. The visitors were superior in their performance through the first half. They were more active and precise. Both teams are attempting to play possession football.",
"identified": "There was certainly plenty of action during that opening 45 minutes. The visitors were superior in their performance through the first half. They were more active and precise. Both teams are attempting to play possession football.",
"anonymized": "There was certainly plenty of action during that opening 45 minutes. The visitors were superior in their performance through the first half. They were more active and precise. Both teams are attempting to play possession football.",
"visibility": "shown",
"position": "2819000"
},
{
"important": true,
"gameTime": "1 - 46:14",
"label": "whistle",
"description": "The end of the first half.",
"identified": "The end of the first half.",
"anonymized": "The end of the first half.",
"visibility": "shown",
"position": "2774000"
},
{
"important": true,
"gameTime": "1 - 45:50",
"label": "",
"description": "Mathieu Flamini (Arsenal) blows a golden chance from inside the box, volleying the ball narrowly over the crossbar. What a miss!",
"identified": "[PLAYER_UNtWs4P4] ([TEAM_]) blows a golden chance from inside the box, volleying the ball narrowly over the crossbar. What a miss!",
"anonymized": "[PLAYER] ([TEAM]) blows a golden chance from inside the box, volleying the ball narrowly over the crossbar. What a miss!",
"visibility": "shown",
"position": "2750000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "We will have 1 min. of added time.",
"identified": "We will have 1 min. of added time.",
"anonymized": "We will have 1 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "1 - 44:17",
"label": "y-card",
"description": "Mathieu Flamini (Arsenal) is cautioned by the referee for a foul that he committed a little earlier. Chelsea have been awarded a free kick.",
"identified": "[PLAYER_UNtWs4P4] ([TEAM_]) is cautioned by the referee for a foul that he committed a little earlier. [TEAM_] have been awarded a free kick.",
"anonymized": "[PLAYER] ([TEAM]) is cautioned by the referee for a foul that he committed a little earlier. [TEAM] have been awarded a free kick.",
"visibility": "shown",
"position": "2657000"
},
{
"important": true,
"gameTime": "1 - 42:30",
"label": "",
"description": "Branislav Ivanovic (Chelsea) meets a cross and produces a header towards the right side of the goal, but one of the defending players blocks the effort.",
"identified": "[PLAYER_Qe3xUmHo] ([TEAM_]) meets a cross and produces a header towards the right side of the goal, but one of the defending players blocks the effort.",
"anonymized": "[PLAYER] ([TEAM]) meets a cross and produces a header towards the right side of the goal, but one of the defending players blocks the effort.",
"visibility": "shown",
"position": "2550000"
},
{
"important": false,
"gameTime": "1 - 42:15",
"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": "2535000"
},
{
"important": false,
"gameTime": "1 - 41:46",
"label": "",
"description": "Diego Costa (Chelsea) receives a precise pass and is given time inside the box to send a promising strike towards the right post. Petr Cech guesses his intention and denies him with a fine save. Chelsea force a corner. They send men into the box.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) receives a precise pass and is given time inside the box to send a promising strike towards the right post. [PLAYER_fTjQ34vo] guesses his intention and denies him with a fine save. [TEAM_] force a corner. They send men into the box.",
"anonymized": "[PLAYER] ([TEAM]) receives a precise pass and is given time inside the box to send a promising strike towards the right post. [PLAYER] guesses his intention and denies him with a fine save. [TEAM] force a corner. They send men into the box.",
"visibility": "shown",
"position": "2506000"
},
{
"important": false,
"gameTime": "1 - 40:58",
"label": "",
"description": "Dangerous play by Willian (Chelsea). Mark Clattenburg blows his whistle for a foul.",
"identified": "Dangerous play by [PLAYER_GSzdOhPI] ([TEAM_]). [REFEREE] blows his whistle for a foul.",
"anonymized": "Dangerous play by [PLAYER] ([TEAM]). [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "2458000"
},
{
"important": false,
"gameTime": "1 - 39:53",
"label": "",
"description": "Hector Bellerin (Arsenal) races towards goal but the defender gets back well to make a challenge.",
"identified": "[PLAYER_pxq49QlK] ([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": "2393000"
},
{
"important": false,
"gameTime": "1 - 39:00",
"label": "",
"description": "Aaron Ramsey (Arsenal) sends a superb lead pass into the penalty area and finds Theo Walcott, who fails to shoot.",
"identified": "[PLAYER_fBD08Fin] ([TEAM_]) sends a superb lead pass into the penalty area and finds [PLAYER_2cpouZhq], who fails to shoot.",
"anonymized": "[PLAYER] ([TEAM]) sends a superb lead pass into the penalty area and finds [PLAYER], who fails to shoot.",
"visibility": "shown",
"position": "2340000"
},
{
"important": false,
"gameTime": "1 - 37:30",
"label": "",
"description": "Gabriel (Arsenal) gives away a foul for a clumsy challenge. Referee Mark Clattenburg saw the whole situation.",
"identified": "[PLAYER_tCldvc6L] ([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": "2250000"
},
{
"important": false,
"gameTime": "1 - 36:03",
"label": "",
"description": "Cesc Fabregas (Chelsea) and Oscar combine well with some one-touch passing and are gradually building up to an attack.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) and [PLAYER_KfKDzbEo] combine well with some one-touch passing and are gradually building up to an attack.",
"anonymized": "[PLAYER] ([TEAM]) and [PLAYER] combine well with some one-touch passing and are gradually building up to an attack.",
"visibility": "shown",
"position": "2163000"
},
{
"important": false,
"gameTime": "1 - 35:11",
"label": "",
"description": "A precise low pass is received by Aaron Ramsey (Arsenal), who makes a yard for himself on the edge of the box, but his poorly placed shot sails well wide of the left post.",
"identified": "A precise low pass is received by [PLAYER_fBD08Fin] ([TEAM_]), who makes a yard for himself on the edge of the box, but his poorly placed shot sails well wide of the left post.",
"anonymized": "A precise low pass is received by [PLAYER] ([TEAM]), who makes a yard for himself on the edge of the box, but his poorly placed shot sails well wide of the left post.",
"visibility": "shown",
"position": "2111000"
},
{
"important": false,
"gameTime": "1 - 34:20",
"label": "",
"description": "Theo Walcott (Arsenal) is adjudged to have been offside when making his run.",
"identified": "[PLAYER_2cpouZhq] ([TEAM_]) is adjudged to have been offside when making his run.",
"anonymized": "[PLAYER] ([TEAM]) is adjudged to have been offside when making his run.",
"visibility": "shown",
"position": "2060000"
},
{
"important": false,
"gameTime": "1 - 33:55",
"label": "corner",
"description": "Mesut Ozil (Arsenal) quickly takes the corner kick with a short pass.",
"identified": "[PLAYER_U30xq9EJ] ([TEAM_]) quickly takes the corner kick with a short pass.",
"anonymized": "[PLAYER] ([TEAM]) quickly takes the corner kick with a short pass.",
"visibility": "shown",
"position": "2035000"
},
{
"important": false,
"gameTime": "1 - 33:26",
"label": "",
"description": "Nacho Monreal (Arsenal) fails to find any of his teammates inside the box as his pass is blocked. Arsenal get a corner.",
"identified": "[PLAYER_CdXPbmcp] ([TEAM_]) fails to find any of his teammates inside the box as his pass is blocked. [TEAM_] get a corner.",
"anonymized": "[PLAYER] ([TEAM]) fails to find any of his teammates inside the box as his pass is blocked. [TEAM] get a corner.",
"visibility": "shown",
"position": "2006000"
},
{
"important": false,
"gameTime": "1 - 32:53",
"label": "",
"description": "Willian (Chelsea) plays a through ball which would have led to a great opportunity, if it hadn't been stopped by the defence.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) plays a through ball which would have led to a great opportunity, if it hadn't been stopped by the defence.",
"anonymized": "[PLAYER] ([TEAM]) plays a through ball which would have led to a great opportunity, if it hadn't been stopped by the defence.",
"visibility": "shown",
"position": "1973000"
},
{
"important": false,
"gameTime": "1 - 31:39",
"label": "",
"description": "Cesc Fabregas (Chelsea) displays brilliant individual ability, gets inside the box and pulls the trigger. His promising effort is blocked by one of the defenders.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) displays brilliant individual ability, gets inside the box and pulls the trigger. His promising effort is blocked by one of the defenders.",
"anonymized": "[PLAYER] ([TEAM]) displays brilliant individual ability, gets inside the box and pulls the trigger. His promising effort is blocked by one of the defenders.",
"visibility": "shown",
"position": "1899000"
},
{
"important": false,
"gameTime": "1 - 30:00",
"label": "",
"description": "The Chelsea players are exchanging some short passes.",
"identified": "The [TEAM_] players are exchanging some short passes.",
"anonymized": "The [TEAM] players are exchanging some short passes.",
"visibility": "shown",
"position": "1800000"
},
{
"important": false,
"gameTime": "1 - 28:10",
"label": "",
"description": "Diego Costa (Chelsea) decides to try his luck with a first-time bullet of a shot. Unfortunately for him, he doesn't hit the ball perfectly and his effort ends well wide of the left post.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) decides to try his luck with a first-time bullet of a shot. Unfortunately for him, he doesn't hit the ball perfectly and his effort ends well wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) decides to try his luck with a first-time bullet of a shot. Unfortunately for him, he doesn't hit the ball perfectly and his effort ends well wide of the left post.",
"visibility": "shown",
"position": "1690000"
},
{
"important": false,
"gameTime": "1 - 26:50",
"label": "",
"description": "The referee blows his whistle after Diego Costa (Chelsea) does a good impression of a basketball player and handles the ball.",
"identified": "The referee blows his whistle after [PLAYER_vBw5nir8] ([TEAM_]) does a good impression of a basketball player and handles the ball.",
"anonymized": "The referee blows his whistle after [PLAYER] ([TEAM]) does a good impression of a basketball player and handles the ball.",
"visibility": "shown",
"position": "1610000"
},
{
"important": false,
"gameTime": "1 - 25:10",
"label": "corner",
"description": "Mesut Ozil (Arsenal) takes the corner, but one of the defenders reacts well and rises highest to head the ball away.",
"identified": "[PLAYER_U30xq9EJ] ([TEAM_]) takes the corner, but one of the defenders reacts well and rises highest to head the ball away.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner, but one of the defenders reacts well and rises highest to head the ball away.",
"visibility": "shown",
"position": "1510000"
},
{
"important": false,
"gameTime": "1 - 24:43",
"label": "",
"description": "Hector Bellerin (Arsenal) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort. The referee points to the corner flag. It's a corner to Arsenal.",
"identified": "[PLAYER_pxq49QlK] ([TEAM_]) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort. The referee points to the corner flag. It's a corner to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort. The referee points to the corner flag. It's a corner to [TEAM].",
"visibility": "shown",
"position": "1483000"
},
{
"important": true,
"gameTime": "1 - 22:49",
"label": "soccer-ball",
"description": "Branislav Ivanovic sends a precise lofted cross into the box. Diego Costa (Chelsea) latches on to it and finishes with a quick shot inside the right post. The goalkeeper had no chance. The score changes to 0:1.",
"identified": "[PLAYER_Qe3xUmHo] sends a precise lofted cross into the box. [PLAYER_vBw5nir8] ([TEAM_]) latches on to it and finishes with a quick shot inside the right post. The goalkeeper had no chance. The score changes to 0:1.",
"anonymized": "[PLAYER] sends a precise lofted cross into the box. [PLAYER] ([TEAM]) latches on to it and finishes with a quick shot inside the right post. The goalkeeper had no chance. The score changes to 0:1.",
"visibility": "shown",
"position": "1369000"
},
{
"important": true,
"gameTime": "1 - 21:04",
"label": "substitution",
"description": "The manager has decided to make a tactical substitution following the red card and Gabriel (Arsenal) enters the field of play to replace Olivier Giroud.",
"identified": "The manager has decided to make a tactical substitution following the red card and [PLAYER_tCldvc6L] ([TEAM_]) enters the field of play to replace [PLAYER_AJPBp2as].",
"anonymized": "The manager has decided to make a tactical substitution following the red card and [PLAYER] ([TEAM]) enters the field of play to replace [PLAYER].",
"visibility": "shown",
"position": "1264000"
},
{
"important": false,
"gameTime": "1 - 19:12",
"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": "1152000"
},
{
"important": false,
"gameTime": "1 - 18:40",
"label": "",
"description": "Willian (Chelsea) takes the ball and sets it for the free kick.",
"identified": "[PLAYER_GSzdOhPI] ([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": "1120000"
},
{
"important": true,
"gameTime": "1 - 17:54",
"label": "r-card",
"description": "Per Mertesacker (Arsenal) is being sent off by the referee for a foul that he committed a little earlier! Chelsea will take a free kick.",
"identified": "[PLAYER_tlwkgQLn] ([TEAM_]) is being sent off by the referee for a foul that he committed a little earlier! [TEAM_] will take a free kick.",
"anonymized": "[PLAYER] ([TEAM]) is being sent off by the referee for a foul that he committed a little earlier! [TEAM] will take a free kick.",
"visibility": "shown",
"position": "1074000"
},
{
"important": false,
"gameTime": "1 - 15:31",
"label": "",
"description": "Olivier Giroud (Arsenal) attempts to surprise the keeper with a shot from distance, but it lacks accuracy and goes high over the crossbar.",
"identified": "[PLAYER_AJPBp2as] ([TEAM_]) attempts to surprise the keeper with a shot from distance, but it lacks accuracy and goes high over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) attempts to surprise the keeper with a shot from distance, but it lacks accuracy and goes high over the crossbar.",
"visibility": "shown",
"position": "931000"
},
{
"important": false,
"gameTime": "1 - 14:44",
"label": "",
"description": "Willian (Chelsea) is first to latch onto the rebound inside the penalty area. He drills a low shot towards the middle of the goal, but it is denied by the goalkeeper who pulls off a superb save.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) is first to latch onto the rebound inside the penalty area. He drills a low shot towards the middle of the goal, but it is denied by the goalkeeper who pulls off a superb save.",
"anonymized": "[PLAYER] ([TEAM]) is first to latch onto the rebound inside the penalty area. He drills a low shot towards the middle of the goal, but it is denied by the goalkeeper who pulls off a superb save.",
"visibility": "shown",
"position": "884000"
},
{
"important": false,
"gameTime": "1 - 14:17",
"label": "",
"description": "Willian (Chelsea) strikes a promising volley towards goal, but one of the defenders is quick enough to step in and make a crucial block.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) strikes a promising volley towards goal, but one of the defenders is quick enough to step in and make a crucial block.",
"anonymized": "[PLAYER] ([TEAM]) strikes a promising volley towards goal, but one of the defenders is quick enough to step in and make a crucial block.",
"visibility": "shown",
"position": "857000"
},
{
"important": false,
"gameTime": "1 - 13:28",
"label": "",
"description": "Willian (Chelsea) fails to send a pass into the box as his effort is cut out.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) fails to send a pass into the box as his effort is cut out.",
"anonymized": "[PLAYER] ([TEAM]) fails to send a pass into the box as his effort is cut out.",
"visibility": "shown",
"position": "808000"
},
{
"important": false,
"gameTime": "1 - 11:01",
"label": "",
"description": "Mesut Ozil (Arsenal) delivers a poor cross from a free kick as one of the defenders comfortably clears it away.",
"identified": "[PLAYER_U30xq9EJ] ([TEAM_]) delivers a poor cross from a free kick as one of the defenders comfortably clears it away.",
"anonymized": "[PLAYER] ([TEAM]) delivers a poor cross from a free kick as one of the defenders comfortably clears it away.",
"visibility": "shown",
"position": "661000"
},
{
"important": true,
"gameTime": "1 - 10:19",
"label": "y-card",
"description": "This yellow card was deserved. The tackle by Oscar (Chelsea) was quite harsh and Mark Clattenburg didn't hesitate to show him a yellow card. There is a free kick near the sideline to Arsenal.",
"identified": "This yellow card was deserved. The tackle by [PLAYER_KfKDzbEo] ([TEAM_]) was quite harsh and [REFEREE] didn't hesitate to show him a yellow card. There is a free kick near the sideline to [TEAM_].",
"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. There is a free kick near the sideline to [TEAM].",
"visibility": "shown",
"position": "619000"
}
]
} |