File size: 78,916 Bytes
da6403b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 |
{
"timestamp": "1454528700",
"score": "0 - 0",
"round": "24",
"teams": [
"Watford",
"Chelsea"
],
"lineup": {
"home": {
"tactic": "1-4-3-1-2",
"players": [
{
"hash": "OWx1zqfJ",
"name": "Behrami V.",
"captain": "",
"detail_link": "/player/behrami-valon/OWx1zqfJ/",
"short_name": "Behrami",
"shirt_number": "8",
"country": "Switzerland",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Valon Behrami"
},
{
"hash": "YHvWrWrd",
"name": "Capoue E.",
"captain": "",
"detail_link": "/player/capoue-etienne/YHvWrWrd/",
"short_name": "Capoue",
"shirt_number": "29",
"country": "France",
"facts": [
{
"type": "6",
"time": "87'",
"description": "Suarez M.",
"linked_player_hash": "bN8I3Zo0"
}
],
"lineup": 6,
"starting": true,
"long_name": "Etienne Capoue"
},
{
"hash": "vJyzIdcf",
"name": "Cathcart C.",
"captain": "",
"detail_link": "/player/cathcart-craig/vJyzIdcf/",
"short_name": "Cathcart",
"shirt_number": "15",
"country": "Northern Ireland",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Craig Cathcart"
},
{
"hash": "lKqMZFOm",
"name": "Deeney T.",
"captain": "(C)",
"detail_link": "/player/deeney-troy/lKqMZFOm/",
"short_name": "Deeney",
"shirt_number": "9",
"country": "England",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Troy Deeney"
},
{
"hash": "vJVqAitk",
"name": "Gomes H.",
"captain": "",
"detail_link": "/player/gomes-heurelho/vJVqAitk/",
"short_name": "Gomes",
"shirt_number": "1",
"country": "Brazil",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Heurelho Gomes"
},
{
"hash": "ITSUiJE0",
"name": "Holebas J.",
"captain": "",
"detail_link": "/player/holebas-jose/ITSUiJE0/",
"short_name": "Holebas",
"shirt_number": "25",
"country": "Greece",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Jose Holebas"
},
{
"hash": "ITCY8iWq",
"name": "Ighalo O.",
"captain": "",
"detail_link": "/player/ighalo-odion/ITCY8iWq/",
"short_name": "Ighalo",
"shirt_number": "24",
"country": "Nigeria",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Odion Ighalo"
},
{
"hash": "Wdb4m9nm",
"name": "Jurado J. M.",
"captain": "",
"detail_link": "/player/jurado-jose-manuel/Wdb4m9nm/",
"short_name": "Jurado",
"shirt_number": "7",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "64'",
"description": "Abdi A.",
"linked_player_hash": "zVIXcII7"
}
],
"lineup": 9,
"starting": true,
"long_name": "Jose Manuel Jurado"
},
{
"hash": "jNsUOkpA",
"name": "Paredes J.",
"captain": "",
"detail_link": "/player/paredes-juan/jNsUOkpA/",
"short_name": "Paredes",
"shirt_number": "14",
"country": "Ecuador",
"facts": [
{
"type": "1",
"time": "45+2' Paredes J. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "68'",
"description": "Nyom A.",
"linked_player_hash": "2Hcye1sn"
}
],
"lineup": 2,
"starting": true,
"long_name": "Juan Carlos Paredes"
},
{
"hash": "27wfPXuP",
"name": "Prodl S.",
"captain": "",
"detail_link": "/player/prodl-sebastian/27wfPXuP/",
"short_name": "Prodl",
"shirt_number": "5",
"country": "Austria",
"facts": [
{
"type": "1",
"time": "19' Prodl S. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Sebastian Prodl"
},
{
"hash": "KnWP1Ntm",
"name": "Watson B.",
"captain": "",
"detail_link": "/player/watson-ben/KnWP1Ntm/",
"short_name": "Watson",
"shirt_number": "23",
"country": "England",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Ben Watson"
},
{
"hash": "zVIXcII7",
"name": "Abdi A.",
"captain": "",
"detail_link": "/player/abdi-almen/zVIXcII7/",
"short_name": "Abdi",
"shirt_number": "22",
"country": "Switzerland",
"facts": [
{
"type": "7",
"time": "64'",
"description": "Jurado J. M.",
"linked_player_hash": "Wdb4m9nm"
}
],
"lineup": null,
"starting": false,
"long_name": "Almen Abdi"
},
{
"hash": "2wCEQg05",
"name": "Amrabat N.",
"captain": "",
"detail_link": "/player/amrabat-nordin/2wCEQg05/",
"short_name": "Amrabat",
"shirt_number": "11",
"country": "Morocco",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Nordin Amrabat"
},
{
"hash": "KpB5grsj",
"name": "Anya I.",
"captain": "",
"detail_link": "/player/anya-ikechi/KpB5grsj/",
"short_name": "Anya",
"shirt_number": "21",
"country": "Scotland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ikechi Anya"
},
{
"hash": "KzODHkeA",
"name": "Guedioura A.",
"captain": "",
"detail_link": "/player/guedioura-adlene/KzODHkeA/",
"short_name": "Guedioura",
"shirt_number": "17",
"country": "Algeria",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Adlene Guedioura"
},
{
"hash": "2Hcye1sn",
"name": "Nyom A.",
"captain": "",
"detail_link": "/player/nyom-allan/2Hcye1sn/",
"short_name": "Nyom",
"shirt_number": "2",
"country": "Cameroon",
"facts": [
{
"type": "7",
"time": "68'",
"description": "Paredes J.",
"linked_player_hash": "jNsUOkpA"
}
],
"lineup": null,
"starting": false,
"long_name": "Allan Nyom"
},
{
"hash": "xAk7pvWT",
"name": "Pantilimon C.",
"captain": "",
"detail_link": "/player/pantilimon-costel/xAk7pvWT/",
"short_name": "Pantilimon",
"shirt_number": "18",
"country": "Romania",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Costel Pantilimon"
},
{
"hash": "bN8I3Zo0",
"name": "Suarez M.",
"captain": "",
"detail_link": "/player/suarez-mario/bN8I3Zo0/",
"short_name": "Suarez",
"shirt_number": "4",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "87'",
"description": "Capoue E.",
"linked_player_hash": "YHvWrWrd"
}
],
"lineup": null,
"starting": false,
"long_name": "Mario Suarez"
}
],
"coach": [
{
"hash": "AD5WKzFn",
"name": "Flores Q.",
"captain": "",
"detail_link": "/player/flores-quique/AD5WKzFn/",
"short_name": "Flores Q.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Quique Flores"
}
]
},
"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": "1",
"time": "45+2' Costa D. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Diego Costa"
},
{
"hash": "MVExOq3n",
"name": "Courtois T.",
"captain": "",
"detail_link": "/player/courtois-thibaut/MVExOq3n/",
"short_name": "Courtois",
"shirt_number": "13",
"country": "Belgium",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Thibaut Courtois"
},
{
"hash": "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": [],
"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": "73'",
"description": "Hazard E.",
"linked_player_hash": "QH2of5sJ"
}
],
"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": [],
"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": [],
"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": "73'",
"description": "Matic N.",
"linked_player_hash": "Kty10JVG"
}
],
"lineup": null,
"starting": false,
"long_name": "Eden Hazard"
},
{
"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": "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": "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": [
"Dean M."
],
"venue": [
"Vicarage Road (Watford)"
],
"attendance": [
"20 910"
],
"referee_matched": [
"Michael Dean"
],
"referee_found": [
"Michael Dean"
],
"coach_matched": [
"Quique Flores"
],
"gameHomeTeam": "Watford",
"home": {
"name": "Watford",
"detail_link": "/team/watford/UmMRoGzp",
"hash": "UmMRoGzp",
"names": [
"Watford",
"watford"
]
},
"gameAwayTeam": "Chelsea",
"away": {
"name": "Chelsea",
"detail_link": "/team/chelsea/4fGZN2oK",
"hash": "4fGZN2oK",
"names": [
"Chelsea",
"chelsea"
]
},
"gameDate": "03/02/2016 - 20:45",
"annotations": [
{
"important": false,
"gameTime": "2 - 48:59",
"gt_gameTime": "",
"label": "",
"description": "Today's game was very poor. There weren't many thrilling moments. There wasn't any evident superiority by either side today. The home side played long passes and crosses into the box. The tactic of the away side, on the other hand, was slow build-up play.",
"identified": "Today's game was very poor. There weren't many thrilling moments. There wasn't any evident superiority by either side today. The home side played long passes and crosses into the box. The tactic of the away side, on the other hand, was slow build-up play.",
"anonymized": "Today's game was very poor. There weren't many thrilling moments. There wasn't any evident superiority by either side today. The home side played long passes and crosses into the box. The tactic of the away side, on the other hand, was slow build-up play.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "2 - 48:09",
"gt_gameTime": "",
"label": "whistle",
"description": "Michael Dean is looking at his watch and immediately ends this match.",
"identified": "[REFEREE] is looking at his watch and immediately ends this match.",
"anonymized": "[REFEREE] is looking at his watch and immediately ends this match.",
"visibility": "shown",
"position": "2889000"
},
{
"important": false,
"gameTime": "2 - 47:58",
"gt_gameTime": "",
"label": "",
"description": "John Terry (Chelsea) sends a long ball in, but Heurelho Gomes comfortably gathers the ball.",
"identified": "[PLAYER_0AovoI68] ([TEAM_]) sends a long ball in, but [PLAYER_vJVqAitk] comfortably gathers the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a long ball in, but [PLAYER] comfortably gathers the ball.",
"visibility": "shown",
"position": "2878000"
},
{
"important": false,
"gameTime": "2 - 46:27",
"gt_gameTime": "",
"label": "",
"description": "Troy Deeney (Watford) is penalised for a foul. Michael Dean had a clear view and blows his whistle.",
"identified": "[PLAYER_lKqMZFOm] ([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": "2787000"
},
{
"important": false,
"gameTime": "2 - 45:24",
"gt_gameTime": "",
"label": "corner",
"description": "Jose Holebas (Watford) decides to speed play up with a short corner kick.",
"identified": "[PLAYER_ITSUiJE0] ([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": "2724000"
},
{
"important": false,
"gameTime": "2 - 45:08",
"gt_gameTime": "",
"label": "",
"description": "Odion Ighalo (Watford) slaloms his way past challenges, but an opposing player does well to get the ball away. Watford have a corner.",
"identified": "[PLAYER_ITCY8iWq] ([TEAM_]) slaloms his way past challenges, but an opposing player does well to get the ball away. [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) slaloms his way past challenges, but an opposing player does well to get the ball away. [TEAM] have a corner.",
"visibility": "shown",
"position": "2708000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"gt_gameTime": "",
"label": "time",
"description": "3 additional min. will be played.",
"identified": "3 additional min. will be played.",
"anonymized": "3 additional min. will be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 44:51",
"gt_gameTime": "2 - 43:03",
"label": "corner",
"description": "Oscar (Chelsea) works the corner short.",
"identified": "[PLAYER_KfKDzbEo] ([TEAM_]) works the corner short.",
"anonymized": "[PLAYER] ([TEAM]) works the corner short.",
"visibility": "shown",
"position": "2691000"
},
{
"important": true,
"gameTime": "2 - 43:21",
"gt_gameTime": "2 - 42:33",
"label": "",
"description": "Heurelho Gomes makes a superb save to deny a header which was nodded towards the left-hand post by Diego Costa (Chelsea) after a cross from the side.",
"identified": "[PLAYER_vJVqAitk] makes a superb save to deny a header which was nodded towards the left-hand post by [PLAYER_vBw5nir8] ([TEAM_]) after a cross from the side.",
"anonymized": "[PLAYER] makes a superb save to deny a header which was nodded towards the left-hand post by [PLAYER] ([TEAM]) after a cross from the side.",
"visibility": "shown",
"position": "2601000"
},
{
"important": false,
"gameTime": "2 - 42:28",
"gt_gameTime": "2 - 42:20",
"label": "corner",
"description": "Willian (Chelsea) takes a short corner kick.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) takes a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) takes a short corner kick.",
"visibility": "shown",
"position": "2548000"
},
{
"important": false,
"gameTime": "2 - 42:15",
"gt_gameTime": "2 - 42:11",
"label": "",
"description": "Willian (Chelsea) sends a cross into the box, but the opposition's defence clears the ball to safety. Chelsea force a corner. Their opponents will face another attacking threat.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) sends a cross into the box, but the opposition's defence clears the ball to safety. [TEAM_] force a corner. Their opponents will face another attacking threat.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence clears the ball to safety. [TEAM] force a corner. Their opponents will face another attacking threat.",
"visibility": "shown",
"position": "2535000"
},
{
"important": true,
"gameTime": "2 - 41:17",
"gt_gameTime": "2 - 40:56",
"label": "substitution",
"description": "Here comes a substitution. Etienne Capoue is given a rest as he is replaced by Mario Suarez (Watford).",
"identified": "Here comes a substitution. [PLAYER_YHvWrWrd] is given a rest as he is replaced by [PLAYER_bN8I3Zo0] ([TEAM_]).",
"anonymized": "Here comes a substitution. [PLAYER] is given a rest as he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2477000"
},
{
"important": false,
"gameTime": "2 - 40:55",
"gt_gameTime": "2 - 40:34",
"label": "corner",
"description": "Willian (Chelsea) sends over a poor, overhit cross from the corner kick and the ball goes out of play.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) sends over a poor, overhit cross from the corner kick and the ball goes out of play.",
"anonymized": "[PLAYER] ([TEAM]) sends over a poor, overhit cross from the corner kick and the ball goes out of play.",
"visibility": "shown",
"position": "2455000"
},
{
"important": false,
"gameTime": "2 - 40:20",
"gt_gameTime": "2 - 40:14",
"label": "",
"description": "Diego Costa (Chelsea) races towards goal but the defender gets back well to make a challenge. The ball is out of play. Chelsea will have a chance to score from a corner.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. The ball is out of play. [TEAM_] will have a chance to score from a corner.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. The ball is out of play. [TEAM] will have a chance to score from a corner.",
"visibility": "shown",
"position": "2420000"
},
{
"important": true,
"gameTime": "2 - 39:06",
"gt_gameTime": "2 - 38:43",
"label": "",
"description": "Chance! Diego Costa (Chelsea) comes within inches of scoring after picking up a pass from Eden Hazard, but his shot from inside the box flashes inches wide of the right post.",
"identified": "Chance! [PLAYER_vBw5nir8] ([TEAM_]) comes within inches of scoring after picking up a pass from [PLAYER_QH2of5sJ], but his shot from inside the box flashes inches wide of the right post.",
"anonymized": "Chance! [PLAYER] ([TEAM]) comes within inches of scoring after picking up a pass from [PLAYER], but his shot from inside the box flashes inches wide of the right post.",
"visibility": "shown",
"position": "2346000"
},
{
"important": false,
"gameTime": "2 - 36:18",
"gt_gameTime": "2 - 36:12",
"label": "",
"description": "Neat link-up play between Willian (Chelsea) and Eden Hazard, but Heurelho Gomes reads the game well and the move breaks down.",
"identified": "Neat link-up play between [PLAYER_GSzdOhPI] ([TEAM_]) and [PLAYER_QH2of5sJ], but [PLAYER_vJVqAitk] reads the game well and the move breaks down.",
"anonymized": "Neat link-up play between [PLAYER] ([TEAM]) and [PLAYER], but [PLAYER] reads the game well and the move breaks down.",
"visibility": "shown",
"position": "2178000"
},
{
"important": false,
"gameTime": "2 - 35:05",
"gt_gameTime": "2 - 34:57",
"label": "",
"description": "Oscar (Chelsea) commits a foul and Michael Dean immediately signals a free kick.",
"identified": "[PLAYER_KfKDzbEo] ([TEAM_]) commits a foul and [REFEREE] immediately signals a free kick.",
"anonymized": "[PLAYER] ([TEAM]) commits a foul and [REFEREE] immediately signals a free kick.",
"visibility": "shown",
"position": "2105000"
},
{
"important": false,
"gameTime": "2 - 33:16",
"gt_gameTime": "2 - 32:41",
"label": "corner",
"description": "Willian (Chelsea) takes the corner, but the goalkeeper jumps and gathers the ball.",
"identified": "[PLAYER_GSzdOhPI] ([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": "1996000"
},
{
"important": true,
"gameTime": "2 - 32:36",
"gt_gameTime": "2 - 32:09",
"label": "",
"description": "Branislav Ivanovic (Chelsea) must feel embarrassed now. He received a killer pass, but his shot from the six-yard box was a disaster. He miskicked and made it very easy for Heurelho Gomes to get hold of the ball. The ball goes out of play and Chelsea have been awarded a corner kick.",
"identified": "[PLAYER_Qe3xUmHo] ([TEAM_]) must feel embarrassed now. He received a killer pass, but his shot from the six-yard box was a disaster. He miskicked and made it very easy for [PLAYER_vJVqAitk] to get hold of the ball. The ball goes out of play and [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) must feel embarrassed now. He received a killer pass, but his shot from the six-yard box was a disaster. He miskicked and made it very easy for [PLAYER] to get hold of the ball. The ball goes out of play and [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "1956000"
},
{
"important": false,
"gameTime": "2 - 31:29",
"gt_gameTime": "2 - 31:24",
"label": "corner",
"description": "The ball is whipped in from the corner by Ben Watson (Watford), but one of the defenders gets it clear.",
"identified": "The ball is whipped in from the corner by [PLAYER_KnWP1Ntm] ([TEAM_]), but one of the defenders gets it clear.",
"anonymized": "The ball is whipped in from the corner by [PLAYER] ([TEAM]), but one of the defenders gets it clear.",
"visibility": "shown",
"position": "1889000"
},
{
"important": false,
"gameTime": "2 - 31:09",
"gt_gameTime": "2 - 31:03",
"label": "corner",
"description": "The resulting corner from Ben Watson (Watford) is cleared by the defence. The referee blows his whistle, Watford are awarded a corner kick.",
"identified": "The resulting corner from [PLAYER_KnWP1Ntm] ([TEAM_]) is cleared by the defence. The referee blows his whistle, [TEAM_] are awarded a corner kick.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) is cleared by the defence. The referee blows his whistle, [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "1869000"
},
{
"important": false,
"gameTime": "2 - 30:42",
"gt_gameTime": "2 - 30:36",
"label": "",
"description": "Etienne Capoue (Watford) sends a cross into the box, but the opposition's defence quickly intercepts the ball. The ball goes behind for a corner. Watford will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_YHvWrWrd] ([TEAM_]) sends a cross into the box, but the opposition's defence quickly intercepts the ball. The ball goes behind for a corner. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence quickly intercepts the ball. The ball goes behind for a corner. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "1842000"
},
{
"important": false,
"gameTime": "2 - 30:05",
"gt_gameTime": "2 - 29:38",
"label": "",
"description": "Kurt Zouma (Chelsea) pulls the shirt of his opponent and only escapes without punishment due to the benevolence of the referee.",
"identified": "[PLAYER_SKosf7jl] ([TEAM_]) pulls the shirt of his opponent and only escapes without punishment due to the benevolence of the referee.",
"anonymized": "[PLAYER] ([TEAM]) pulls the shirt of his opponent and only escapes without punishment due to the benevolence of the referee.",
"visibility": "shown",
"position": "1805000"
},
{
"important": false,
"gameTime": "2 - 29:19",
"gt_gameTime": "2 - 29:09",
"label": "",
"description": "Oscar (Chelsea) passes the ball from the edge of the box in order to find his teammate, who is in a good scoring position, but the defender blocks the pass and spanks the ball to safety.",
"identified": "[PLAYER_KfKDzbEo] ([TEAM_]) passes the ball from the edge of the box in order to find his teammate, who is in a good scoring position, but the defender blocks the pass and spanks the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) passes the ball from the edge of the box in order to find his teammate, who is in a good scoring position, but the defender blocks the pass and spanks the ball to safety.",
"visibility": "shown",
"position": "1759000"
},
{
"important": false,
"gameTime": "2 - 28:23",
"gt_gameTime": "2 - 28:16",
"label": "",
"description": "Cesc Fabregas (Chelsea) produces an inaccurate low pass into the box that is blocked by the one of the defenders. If this pass had slipped through, the ball would have probably ended up in the back of the net.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) produces an inaccurate low pass into the box that is blocked by the one of the defenders. If this pass had slipped through, the ball would have probably ended up in the back of the net.",
"anonymized": "[PLAYER] ([TEAM]) produces an inaccurate low pass into the box that is blocked by the one of the defenders. If this pass had slipped through, the ball would have probably ended up in the back of the net.",
"visibility": "shown",
"position": "1703000"
},
{
"important": true,
"gameTime": "2 - 27:14",
"gt_gameTime": "2 - 27:58",
"label": "substitution",
"description": "Eden Hazard (Chelsea) joins the action as a substitute, replacing Nemanja Matic.",
"identified": "[PLAYER_QH2of5sJ] ([TEAM_]) joins the action as a substitute, replacing [PLAYER_Kty10JVG].",
"anonymized": "[PLAYER] ([TEAM]) joins the action as a substitute, replacing [PLAYER].",
"visibility": "shown",
"position": "1634000"
},
{
"important": false,
"gameTime": "2 - 24:50",
"gt_gameTime": "2 - 24:42",
"label": "corner",
"description": "Willian (Chelsea) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"anonymized": "[PLAYER] ([TEAM]) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"visibility": "shown",
"position": "1490000"
},
{
"important": true,
"gameTime": "2 - 24:19",
"gt_gameTime": "2 - 24:14",
"label": "",
"description": "Oscar (Chelsea) shoots from the edge of the penalty area. The ball travels towards the left side of the target, but Heurelho Gomes easily deals with the threat. Chelsea have been awarded a corner kick.",
"identified": "[PLAYER_KfKDzbEo] ([TEAM_]) shoots from the edge of the penalty area. The ball travels towards the left side of the target, but [PLAYER_vJVqAitk] easily deals with the threat. [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) shoots from the edge of the penalty area. The ball travels towards the left side of the target, but [PLAYER] easily deals with the threat. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "1459000"
},
{
"important": true,
"gameTime": "2 - 22:11",
"gt_gameTime": "2 - 21:58",
"label": "substitution",
"description": "The referee signals that it is time for a substitution and Allan Nyom (Watford) is coming onto the pitch as Juan Carlos Paredes cannot continue after picking up an injury.",
"identified": "The referee signals that it is time for a substitution and [PLAYER_2Hcye1sn] ([TEAM_]) is coming onto the pitch as [PLAYER_jNsUOkpA] cannot continue after picking up an injury.",
"anonymized": "The referee signals that it is time for a substitution and [PLAYER] ([TEAM]) is coming onto the pitch as [PLAYER] cannot continue after picking up an injury.",
"visibility": "shown",
"position": "1331000"
},
{
"important": false,
"gameTime": "2 - 21:24",
"gt_gameTime": "2 - 21:37",
"label": "corner",
"description": "Ben Watson (Watford) takes the corner, but one of the defenders reacts well and rises highest to head the ball away.",
"identified": "[PLAYER_KnWP1Ntm] ([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": "1284000"
},
{
"important": false,
"gameTime": "2 - 21:10",
"gt_gameTime": "2 - 21:05",
"label": "",
"description": "Troy Deeney (Watford) fails to send a pass into the box as his effort is cut out. The referee points to the corner flag and Watford will take a corner.",
"identified": "[PLAYER_lKqMZFOm] ([TEAM_]) fails to send a pass into the box as his effort is cut out. The referee points to the corner flag and [TEAM_] will take a corner.",
"anonymized": "[PLAYER] ([TEAM]) fails to send a pass into the box as his effort is cut out. The referee points to the corner flag and [TEAM] will take a corner.",
"visibility": "shown",
"position": "1270000"
},
{
"important": false,
"gameTime": "2 - 20:19",
"gt_gameTime": "2 - 19:50",
"label": "",
"description": "A pass from Cesc Fabregas (Chelsea) is intercepted by Heurelho Gomes and the move breaks down.",
"identified": "A pass from [PLAYER_YXIDwoe5] ([TEAM_]) is intercepted by [PLAYER_vJVqAitk] and the move breaks down.",
"anonymized": "A pass from [PLAYER] ([TEAM]) is intercepted by [PLAYER] and the move breaks down.",
"visibility": "shown",
"position": "1219000"
},
{
"important": true,
"gameTime": "2 - 18:03",
"gt_gameTime": "2 - 17:45",
"label": "substitution",
"description": "Quique Flores decides to make a substitution. Jose Manuel Jurado will be replaced by Almen Abdi (Watford).",
"identified": "[COACH_AD5WKzFn] decides to make a substitution. [PLAYER_Wdb4m9nm] will be replaced by [PLAYER_zVIXcII7] ([TEAM_]).",
"anonymized": "[COACH] decides to make a substitution. [PLAYER] will be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1083000"
},
{
"important": false,
"gameTime": "2 - 16:59",
"gt_gameTime": "2 - 16:35",
"label": "",
"description": "A cross from the free kick is whipped in by Ben Watson (Watford), but one of the defenders steps in and averts the threat.",
"identified": "A cross from the free kick is whipped in by [PLAYER_KnWP1Ntm] ([TEAM_]), but one of the defenders steps in and averts the threat.",
"anonymized": "A cross from the free kick is whipped in by [PLAYER] ([TEAM]), but one of the defenders steps in and averts the threat.",
"visibility": "shown",
"position": "1019000"
},
{
"important": false,
"gameTime": "2 - 16:36",
"gt_gameTime": "2 - 15:52",
"label": "",
"description": "Michael Dean blows his whistle and signals a foul after Oscar (Chelsea) brought his opponent down. It's a free kick to Watford, but they probably won't attempt a direct shot on goal from here.",
"identified": "[REFEREE] blows his whistle and signals a foul after [PLAYER_KfKDzbEo] ([TEAM_]) brought his opponent down. It's a free kick to [TEAM_], but they probably won't attempt a direct shot on goal from here.",
"anonymized": "[REFEREE] blows his whistle and signals a foul after [PLAYER] ([TEAM]) brought his opponent down. It's a free kick to [TEAM], but they probably won't attempt a direct shot on goal from here.",
"visibility": "shown",
"position": "996000"
},
{
"important": false,
"gameTime": "2 - 14:59",
"gt_gameTime": "2 - 14:54",
"label": "",
"description": "Nemanja Matic (Chelsea) wastes an opportunity! He unleashed a strong shot from distance after the rebound fell at his feet. It went in the direction of the middle of the target and the goalkeeper pulled off a save to deny him.",
"identified": "[PLAYER_Kty10JVG] ([TEAM_]) wastes an opportunity! He unleashed a strong shot from distance after the rebound fell at his feet. It went in the direction of the middle of the target and the goalkeeper pulled off a save to deny him.",
"anonymized": "[PLAYER] ([TEAM]) wastes an opportunity! He unleashed a strong shot from distance after the rebound fell at his feet. It went in the direction of the middle of the target and the goalkeeper pulled off a save to deny him.",
"visibility": "shown",
"position": "899000"
},
{
"important": false,
"gameTime": "2 - 12:10",
"gt_gameTime": "2 - 12:01",
"label": "",
"description": "Jose Holebas (Watford) looks to break free, but an opposing player clears the ball away.",
"identified": "[PLAYER_ITSUiJE0] ([TEAM_]) looks to break free, but an opposing player clears the ball away.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away.",
"visibility": "shown",
"position": "730000"
},
{
"important": true,
"gameTime": "2 - 09:30",
"gt_gameTime": "2 - 09:25",
"label": "",
"description": "CHANCE! Oscar (Chelsea) fires just wide of the left post from inside the box after running onto a splendid pass from Diego Costa.",
"identified": "CHANCE! [PLAYER_KfKDzbEo] ([TEAM_]) fires just wide of the left post from inside the box after running onto a splendid pass from [PLAYER_vBw5nir8].",
"anonymized": "CHANCE! [PLAYER] ([TEAM]) fires just wide of the left post from inside the box after running onto a splendid pass from [PLAYER].",
"visibility": "shown",
"position": "570000"
},
{
"important": false,
"gameTime": "2 - 08:51",
"gt_gameTime": "2 - 08:42",
"label": "",
"description": "Juan Carlos Paredes (Watford) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"identified": "[PLAYER_jNsUOkpA] ([TEAM_]) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"anonymized": "[PLAYER] ([TEAM]) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"visibility": "shown",
"position": "531000"
},
{
"important": true,
"gameTime": "2 - 06:10",
"gt_gameTime": "2 - 06:05",
"label": "",
"description": "Golden chance! Jose Holebas (Watford) meets a cross in the box and finds some space for a shot. He produces an inaccurate effort that goes wide of the left post.",
"identified": "Golden chance! [PLAYER_ITSUiJE0] ([TEAM_]) meets a cross in the box and finds some space for a shot. He produces an inaccurate effort that goes wide of the left post.",
"anonymized": "Golden chance! [PLAYER] ([TEAM]) meets a cross in the box and finds some space for a shot. He produces an inaccurate effort that goes wide of the left post.",
"visibility": "shown",
"position": "370000"
},
{
"important": false,
"gameTime": "2 - 04:34",
"gt_gameTime": "2 - 04:28",
"label": "",
"description": "Diego Costa (Chelsea) looks to break free, but his touch lets him down and he loses the ball.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) looks to break free, but his touch lets him down and he loses the ball.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but his touch lets him down and he loses the ball.",
"visibility": "shown",
"position": "274000"
},
{
"important": false,
"gameTime": "2 - 03:49",
"gt_gameTime": "2 - 03:18",
"label": "",
"description": "Troy Deeney (Watford) creates a yard of space for himself and tries an effort from the edge of the box, but it goes just wide of the left post.",
"identified": "[PLAYER_lKqMZFOm] ([TEAM_]) creates a yard of space for himself and tries an effort from the edge of the box, but it goes just wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) creates a yard of space for himself and tries an effort from the edge of the box, but it goes just wide of the left post.",
"visibility": "shown",
"position": "229000"
},
{
"important": false,
"gameTime": "2 - 02:22",
"gt_gameTime": "2 - 01:54",
"label": "corner",
"description": "The corner kick from Willian (Chelsea) is headed out of the penalty area by one of the defenders.",
"identified": "The corner kick from [PLAYER_GSzdOhPI] ([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": "142000"
},
{
"important": false,
"gameTime": "2 - 02:11",
"gt_gameTime": "2 - 01:28",
"label": "",
"description": "John Obi Mikel (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. A goal-scoring opportunity from a corner for Chelsea.",
"identified": "[PLAYER_8AkbVvN2] ([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. A goal-scoring opportunity from a corner for [TEAM_].",
"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. A goal-scoring opportunity from a corner for [TEAM].",
"visibility": "shown",
"position": "131000"
},
{
"important": false,
"gameTime": "2 - 01:27",
"gt_gameTime": "2 - 01:22",
"label": "",
"description": "What a goal-scoring opportunity! Oscar (Chelsea) makes a good run into the box to meet a cross and fires the ball in on goal, but the shot is amazingly blocked by a defender.",
"identified": "What a goal-scoring opportunity! [PLAYER_KfKDzbEo] ([TEAM_]) makes a good run into the box to meet a cross and fires the ball in on goal, but the shot is amazingly blocked by a defender.",
"anonymized": "What a goal-scoring opportunity! [PLAYER] ([TEAM]) makes a good run into the box to meet a cross and fires the ball in on goal, but the shot is amazingly blocked by a defender.",
"visibility": "shown",
"position": "87000"
},
{
"important": false,
"gameTime": "2 - 01:03",
"gt_gameTime": "2 - 00:51",
"label": "",
"description": "Cesar Azpilicueta (Chelsea) sends a teasing cross into the area, but Heurelho Gomes intercepts the ball.",
"identified": "[PLAYER_CMGUADgt] ([TEAM_]) sends a teasing cross into the area, but [PLAYER_vJVqAitk] intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a teasing cross into the area, but [PLAYER] intercepts the ball.",
"visibility": "shown",
"position": "63000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"gt_gameTime": "2 - 00:01",
"label": "whistle",
"description": "The second half gets underway.",
"identified": "The second half gets underway.",
"anonymized": "The second half gets underway.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 48:59",
"gt_gameTime": "",
"label": "",
"description": "The game can't be described as attractive. We are hoping against hope that the second half will bring more exciting moments and goal opportunities. No side has really dominated in this first half. The home side are playing 'kick and rush' football, which is the exact opposite of the away team who are making a lot of passes and attempting to maintain possession.",
"identified": "The game can't be described as attractive. We are hoping against hope that the second half will bring more exciting moments and goal opportunities. No side has really dominated in this first half. The home side are playing 'kick and rush' football, which is the exact opposite of the away team who are making a lot of passes and attempting to maintain possession.",
"anonymized": "The game can't be described as attractive. We are hoping against hope that the second half will bring more exciting moments and goal opportunities. No side has really dominated in this first half. The home side are playing 'kick and rush' football, which is the exact opposite of the away team who are making a lot of passes and attempting to maintain possession.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "1 - 48:55",
"gt_gameTime": "",
"label": "whistle",
"description": "That is it for the first half after the referee blows his whistle and the players head to their respective dressing rooms.",
"identified": "That is it for the first half after the referee blows his whistle and the players head to their respective dressing rooms.",
"anonymized": "That is it for the first half after the referee blows his whistle and the players head to their respective dressing rooms.",
"visibility": "shown",
"position": "2935000"
},
{
"important": false,
"gameTime": "1 - 48:36",
"gt_gameTime": "",
"label": "",
"description": "Branislav Ivanovic (Chelsea) tries to find the head of a teammate in the box but overhits the cross.",
"identified": "[PLAYER_Qe3xUmHo] ([TEAM_]) tries to find the head of a teammate in the box but overhits the cross.",
"anonymized": "[PLAYER] ([TEAM]) tries to find the head of a teammate in the box but overhits the cross.",
"visibility": "shown",
"position": "2916000"
},
{
"important": true,
"gameTime": "1 - 46:51",
"gt_gameTime": "1 - 47:09",
"label": "y-card",
"description": "Juan Carlos Paredes (Watford) is booked.",
"identified": "[PLAYER_jNsUOkpA] ([TEAM_]) is booked.",
"anonymized": "[PLAYER] ([TEAM]) is booked.",
"visibility": "shown",
"position": "2811000"
},
{
"important": true,
"gameTime": "1 - 46:02",
"gt_gameTime": "1 - 46:36",
"label": "y-card",
"description": "Michael Dean has issued a yellow card to Diego Costa (Chelsea).",
"identified": "[REFEREE] has issued a yellow card to [PLAYER_vBw5nir8] ([TEAM_]).",
"anonymized": "[REFEREE] has issued a yellow card to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2762000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"gt_gameTime": "",
"label": "time",
"description": "Fourth official shows 1 min. of added time.",
"identified": "Fourth official shows 1 min. of added time.",
"anonymized": "Fourth official shows 1 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 41:57",
"gt_gameTime": "1 - 41:53",
"label": "",
"description": "Cesar Azpilicueta (Chelsea) wastes a big opportunity! He controls the ball after a nice low pass and shoots from a promising distance. His poor effort goes miles wide of the right post.",
"identified": "[PLAYER_CMGUADgt] ([TEAM_]) wastes a big opportunity! He controls the ball after a nice low pass and shoots from a promising distance. His poor effort goes miles wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) wastes a big opportunity! He controls the ball after a nice low pass and shoots from a promising distance. His poor effort goes miles wide of the right post.",
"visibility": "shown",
"position": "2517000"
},
{
"important": false,
"gameTime": "1 - 39:18",
"gt_gameTime": "1 - 39:14",
"label": "",
"description": "Willian (Chelsea) sends a cross into the box, but Heurelho Gomes comes off his line to gather the ball.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) sends a cross into the box, but [PLAYER_vJVqAitk] comes off his line to gather the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but [PLAYER] comes off his line to gather the ball.",
"visibility": "shown",
"position": "2358000"
},
{
"important": false,
"gameTime": "1 - 37:24",
"gt_gameTime": "1 - 37:03",
"label": "",
"description": "Chelsea are showing great team chemistry. They are passing the ball around seamlessly.",
"identified": "[TEAM_] are showing great team chemistry. They are passing the ball around seamlessly.",
"anonymized": "[TEAM] are showing great team chemistry. They are passing the ball around seamlessly.",
"visibility": "shown",
"position": "2244000"
},
{
"important": false,
"gameTime": "1 - 35:08",
"gt_gameTime": "1 - 34:26",
"label": "",
"description": "A cross from Diego Costa (Chelsea) fails to reach the box as the defence clears the ball away to safety.",
"identified": "A cross from [PLAYER_vBw5nir8] ([TEAM_]) fails to reach the box as the defence clears the ball away to safety.",
"anonymized": "A cross from [PLAYER] ([TEAM]) fails to reach the box as the defence clears the ball away to safety.",
"visibility": "shown",
"position": "2108000"
},
{
"important": false,
"gameTime": "1 - 33:23",
"gt_gameTime": "1 - 33:19",
"label": "",
"description": "Oscar (Chelsea) is first to the rebound but his shot is blocked. Wow, what an escape there for the opposition.",
"identified": "[PLAYER_KfKDzbEo] ([TEAM_]) is first to the rebound but his shot is blocked. Wow, what an escape there for the opposition.",
"anonymized": "[PLAYER] ([TEAM]) is first to the rebound but his shot is blocked. Wow, what an escape there for the opposition.",
"visibility": "shown",
"position": "2003000"
},
{
"important": false,
"gameTime": "1 - 32:53",
"gt_gameTime": "1 - 32:44",
"label": "corner",
"description": "Willian (Chelsea) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"anonymized": "[PLAYER] ([TEAM]) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"visibility": "shown",
"position": "1973000"
},
{
"important": true,
"gameTime": "1 - 32:32",
"gt_gameTime": "1 - 31:57",
"label": "",
"description": "Diego Costa (Chelsea) fires the ball at goal from inside the area, but it's well blocked. The referee and one of his assistants signal for a corner kick to Chelsea.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) fires the ball at goal from inside the area, but it's well blocked. The referee and one of his assistants signal for a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) fires the ball at goal from inside the area, but it's well blocked. The referee and one of his assistants signal for a corner kick to [TEAM].",
"visibility": "shown",
"position": "1952000"
},
{
"important": false,
"gameTime": "1 - 30:21",
"gt_gameTime": "1 - 30:15",
"label": "",
"description": "Jose Holebas (Watford) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear.",
"identified": "[PLAYER_ITSUiJE0] ([TEAM_]) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear.",
"anonymized": "[PLAYER] ([TEAM]) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear.",
"visibility": "shown",
"position": "1821000"
},
{
"important": false,
"gameTime": "1 - 29:53",
"gt_gameTime": "1 - 29:32",
"label": "",
"description": "Kurt Zouma (Chelsea) pulls the jersey of one of the opposition players and Michael Dean blows his whistle for a foul.",
"identified": "[PLAYER_SKosf7jl] ([TEAM_]) pulls the jersey of one of the opposition players and [REFEREE] blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) pulls the jersey of one of the opposition players and [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "1793000"
},
{
"important": true,
"gameTime": "1 - 27:55",
"gt_gameTime": "1 - 27:48",
"label": "",
"description": "Etienne Capoue (Watford) picks up a precise pass deep inside the box, but his strike is saved by the keeper.",
"identified": "[PLAYER_YHvWrWrd] ([TEAM_]) picks up a precise pass deep inside the box, but his strike is saved by the keeper.",
"anonymized": "[PLAYER] ([TEAM]) picks up a precise pass deep inside the box, but his strike is saved by the keeper.",
"visibility": "shown",
"position": "1675000"
},
{
"important": false,
"gameTime": "1 - 27:31",
"gt_gameTime": "1 - 27:24",
"label": "",
"description": "Odion Ighalo (Watford) meets 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 Thibaut Courtois pulls off an easy save.",
"identified": "[PLAYER_ITCY8iWq] ([TEAM_]) meets 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_MVExOq3n] pulls off an easy save.",
"anonymized": "[PLAYER] ([TEAM]) meets 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": "1651000"
},
{
"important": true,
"gameTime": "1 - 26:44",
"gt_gameTime": "1 - 26:29",
"label": "",
"description": "Sebastian Prodl (Watford) peeled away from his marker and got on the end of the resulting corner, but he sends his header straight at the goalkeeper.",
"identified": "[PLAYER_27wfPXuP] ([TEAM_]) peeled away from his marker and got on the end of the resulting corner, but he sends his header straight at the goalkeeper.",
"anonymized": "[PLAYER] ([TEAM]) peeled away from his marker and got on the end of the resulting corner, but he sends his header straight at the goalkeeper.",
"visibility": "shown",
"position": "1604000"
},
{
"important": false,
"gameTime": "1 - 26:31",
"gt_gameTime": "1 - 26:25",
"label": "corner",
"description": "Ben Watson (Watford) takes the ball to the corner flag and sends it into the box.",
"identified": "[PLAYER_KnWP1Ntm] ([TEAM_]) takes the ball to the corner flag and sends it into the box.",
"anonymized": "[PLAYER] ([TEAM]) takes the ball to the corner flag and sends it into the box.",
"visibility": "shown",
"position": "1591000"
},
{
"important": false,
"gameTime": "1 - 26:03",
"gt_gameTime": "1 - 25:58",
"label": "",
"description": "The ball is cleared after Jose Manuel Jurado (Watford) attempted to dribble past an opposing player. Watford will have a chance to score from a corner kick.",
"identified": "The ball is cleared after [PLAYER_Wdb4m9nm] ([TEAM_]) attempted to dribble past an opposing player. [TEAM_] will have a chance to score from a corner kick.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. [TEAM] will have a chance to score from a corner kick.",
"visibility": "shown",
"position": "1563000"
},
{
"important": false,
"gameTime": "1 - 24:44",
"gt_gameTime": "1 - 24:40",
"label": "",
"description": "Jose Manuel Jurado (Watford) clips a neat ball into the box in the direction of Odion Ighalo, but he can't get on the end of the pass.",
"identified": "[PLAYER_Wdb4m9nm] ([TEAM_]) clips a neat ball into the box in the direction of [PLAYER_ITCY8iWq], but he can't get on the end of the pass.",
"anonymized": "[PLAYER] ([TEAM]) clips a neat ball into the box in the direction of [PLAYER], but he can't get on the end of the pass.",
"visibility": "shown",
"position": "1484000"
},
{
"important": false,
"gameTime": "1 - 23:38",
"gt_gameTime": "1 - 23:35",
"label": "",
"description": "Odion Ighalo (Watford) unleashes a bullet of a shot that is blocked by a defender.",
"identified": "[PLAYER_ITCY8iWq] ([TEAM_]) unleashes a bullet of a shot that is blocked by a defender.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a bullet of a shot that is blocked by a defender.",
"visibility": "shown",
"position": "1418000"
},
{
"important": false,
"gameTime": "1 - 21:21",
"gt_gameTime": "1 - 21:15",
"label": "",
"description": "The game is interrupted as Oscar (Chelsea) is flagged offside.",
"identified": "The game is interrupted as [PLAYER_KfKDzbEo] ([TEAM_]) is flagged offside.",
"anonymized": "The game is interrupted as [PLAYER] ([TEAM]) is flagged offside.",
"visibility": "shown",
"position": "1281000"
},
{
"important": false,
"gameTime": "1 - 20:26",
"gt_gameTime": "1 - 20:17",
"label": "",
"description": "Jose Holebas (Watford) slams the ball from a long-range free kick. He should have curled it higher to avoid hitting the wall.",
"identified": "[PLAYER_ITSUiJE0] ([TEAM_]) slams the ball from a long-range free kick. He should have curled it higher to avoid hitting the wall.",
"anonymized": "[PLAYER] ([TEAM]) slams the ball from a long-range free kick. He should have curled it higher to avoid hitting the wall.",
"visibility": "shown",
"position": "1226000"
},
{
"important": false,
"gameTime": "1 - 19:56",
"gt_gameTime": "1 - 19:22",
"label": "",
"description": "John Terry (Chelsea) gives away a foul for a fierce tackle on an opponent. It's a free kick to Watford in a dangerous position.",
"identified": "[PLAYER_0AovoI68] ([TEAM_]) gives away a foul for a fierce tackle on an opponent. It's a free kick to [TEAM_] in a dangerous position.",
"anonymized": "[PLAYER] ([TEAM]) gives away a foul for a fierce tackle on an opponent. It's a free kick to [TEAM] in a dangerous position.",
"visibility": "shown",
"position": "1196000"
},
{
"important": true,
"gameTime": "1 - 18:23",
"gt_gameTime": "1 - 18:11",
"label": "y-card",
"description": "Michael Dean shows a yellow card to Sebastian Prodl (Watford) for a tough tackle.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_27wfPXuP] ([TEAM_]) for a tough tackle.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for a tough tackle.",
"visibility": "shown",
"position": "1103000"
},
{
"important": false,
"gameTime": "1 - 17:52",
"gt_gameTime": "1 - 17:28",
"label": "",
"description": "Odion Ighalo (Watford) gets himself onto the end of the corner, but his header is blocked.",
"identified": "[PLAYER_ITCY8iWq] ([TEAM_]) gets himself onto the end of the corner, but his header is blocked.",
"anonymized": "[PLAYER] ([TEAM]) gets himself onto the end of the corner, but his header is blocked.",
"visibility": "shown",
"position": "1072000"
},
{
"important": false,
"gameTime": "1 - 17:48",
"gt_gameTime": "1 - 17:23",
"label": "corner",
"description": "Ben Watson (Watford) steps up to send the ball in.",
"identified": "[PLAYER_KnWP1Ntm] ([TEAM_]) steps up to send the ball in.",
"anonymized": "[PLAYER] ([TEAM]) steps up to send the ball in.",
"visibility": "shown",
"position": "1068000"
},
{
"important": false,
"gameTime": "1 - 16:49",
"gt_gameTime": "1 - 16:46",
"label": "",
"description": "Etienne Capoue (Watford) tries to send a pass but it's blocked. It will be a corner kick for Watford.",
"identified": "[PLAYER_YHvWrWrd] ([TEAM_]) tries to send a pass but it's blocked. It will be a corner kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) tries to send a pass but it's blocked. It will be a corner kick for [TEAM].",
"visibility": "shown",
"position": "1009000"
},
{
"important": false,
"gameTime": "1 - 14:46",
"gt_gameTime": "1 - 14:44",
"label": "",
"description": "Diego Costa (Chelsea) breaks into the penalty area but his shot is blocked.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) breaks into the penalty area but his shot is blocked.",
"anonymized": "[PLAYER] ([TEAM]) breaks into the penalty area but his shot is blocked.",
"visibility": "shown",
"position": "886000"
},
{
"important": false,
"gameTime": "1 - 12:31",
"gt_gameTime": "1 - 11:24",
"label": "",
"description": "Diego Costa (Chelsea) commits a rough foul. Michael Dean stops the game and makes a call.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) commits a rough foul. [REFEREE] stops the game and makes a call.",
"anonymized": "[PLAYER] ([TEAM]) commits a rough foul. [REFEREE] stops the game and makes a call.",
"visibility": "shown",
"position": "751000"
},
{
"important": false,
"gameTime": "1 - 10:58",
"gt_gameTime": "1 - 10:40",
"label": "",
"description": "Half-chance! Willian (Chelsea) plays a pass into the box, but Heurelho Gomes reacts well to snuff out the attack.",
"identified": "Half-chance! [PLAYER_GSzdOhPI] ([TEAM_]) plays a pass into the box, but [PLAYER_vJVqAitk] 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": "658000"
},
{
"important": false,
"gameTime": "1 - 10:05",
"gt_gameTime": "1 - 09:30",
"label": "",
"description": "Jose Manuel Jurado (Watford) sends a sweet pass into the penalty area, but one of the defenders averts the danger.",
"identified": "[PLAYER_Wdb4m9nm] ([TEAM_]) sends a sweet pass into the penalty area, but one of the defenders averts the danger.",
"anonymized": "[PLAYER] ([TEAM]) sends a sweet pass into the penalty area, but one of the defenders averts the danger.",
"visibility": "shown",
"position": "605000"
}
]
} |