File size: 82,948 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 |
{
"timestamp": "1460219400",
"score": "2 - 1",
"round": "33",
"teams": [
"Manchester City",
"West Brom"
],
"lineup": {
"home": {
"tactic": "1-4-4-2",
"players": [
{
"hash": "vw8ZV7HC",
"name": "Aguero S.",
"captain": "",
"detail_link": "/player/aguero-sergio/vw8ZV7HC/",
"short_name": "Aguero",
"shirt_number": "10",
"country": "Argentina",
"facts": [
{
"type": "6",
"time": "90'",
"description": "Clichy G.",
"linked_player_hash": "xIJOMggd"
}
],
"lineup": 11,
"starting": true,
"long_name": "Sergio Aguero"
},
{
"hash": "INXcXK3r",
"name": "Bony W.",
"captain": "",
"detail_link": "/player/bony-wilfried/INXcXK3r/",
"short_name": "Bony",
"shirt_number": "14",
"country": "Ivory Coast",
"facts": [
{
"type": "6",
"time": "60'",
"description": "De Bruyne K.",
"linked_player_hash": "MsPs6OI5"
}
],
"lineup": 10,
"starting": true,
"long_name": "Wilfried Bony"
},
{
"hash": "r5irhILD",
"name": "Delph F.",
"captain": "",
"detail_link": "/player/delph-fabian/r5irhILD/",
"short_name": "Delph",
"shirt_number": "18",
"country": "England",
"facts": [
{
"type": "6",
"time": "60'",
"description": "Toure Y.",
"linked_player_hash": "v1SiJzyM"
}
],
"lineup": 8,
"starting": true,
"long_name": "Fabian Delph"
},
{
"hash": "rJlzoALP",
"name": "Fernando",
"captain": "",
"detail_link": "/player/fernando/rJlzoALP/",
"short_name": "Fernando",
"shirt_number": "6",
"country": "Brazil",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Fernando"
},
{
"hash": "KWoMfbLD",
"name": "Hart J.",
"captain": "",
"detail_link": "/player/hart-joe/KWoMfbLD/",
"short_name": "Hart",
"shirt_number": "1",
"country": "England",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Joe Hart"
},
{
"hash": "2XhnQxcG",
"name": "Kolarov A.",
"captain": "",
"detail_link": "/player/kolarov-aleksandar/2XhnQxcG/",
"short_name": "Kolarov",
"shirt_number": "11",
"country": "Serbia",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Aleksandar Kolarov"
},
{
"hash": "M78V4kxC",
"name": "Mangala E.",
"captain": "",
"detail_link": "/player/mangala-eliaquim/M78V4kxC/",
"short_name": "Mangala",
"shirt_number": "20",
"country": "France",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Eliaquim Mangala"
},
{
"hash": "jmKOmkPu",
"name": "Nasri S.",
"captain": "",
"detail_link": "/player/nasri-samir/jmKOmkPu/",
"short_name": "Nasri",
"shirt_number": "8",
"country": "France",
"facts": [
{
"type": "3",
"time": "66' Nasri S.",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Samir Nasri"
},
{
"hash": "hWt5ZIrn",
"name": "Navas J.",
"captain": "",
"detail_link": "/player/navas-jesus/hWt5ZIrn/",
"short_name": "Navas",
"shirt_number": "15",
"country": "Spain",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Jesus Navas"
},
{
"hash": "KSBVnX8R",
"name": "Otamendi N.",
"captain": "",
"detail_link": "/player/otamendi-nicolas/KSBVnX8R/",
"short_name": "Otamendi",
"shirt_number": "30",
"country": "Argentina",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Nicolas Otamendi"
},
{
"hash": "0WS52psG",
"name": "Zabaleta P.",
"captain": "",
"detail_link": "/player/zabaleta-pablo/0WS52psG/",
"short_name": "Zabaleta",
"shirt_number": "5",
"country": "Argentina",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Pablo Zabaleta"
},
{
"hash": "h2HdUznS",
"name": "Caballero W.",
"captain": "",
"detail_link": "/player/caballero-wilfredo/h2HdUznS/",
"short_name": "Caballero",
"shirt_number": "13",
"country": "Argentina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Wilfredo Caballero"
},
{
"hash": "xIJOMggd",
"name": "Clichy G.",
"captain": "",
"detail_link": "/player/clichy-gael/xIJOMggd/",
"short_name": "Clichy",
"shirt_number": "22",
"country": "France",
"facts": [
{
"type": "7",
"time": "90'",
"description": "Aguero S.",
"linked_player_hash": "vw8ZV7HC"
}
],
"lineup": null,
"starting": false,
"long_name": "Gael Clichy"
},
{
"hash": "MsPs6OI5",
"name": "De Bruyne K.",
"captain": "",
"detail_link": "/player/de-bruyne-kevin/MsPs6OI5/",
"short_name": "De Bruyne",
"shirt_number": "17",
"country": "Belgium",
"facts": [
{
"type": "7",
"time": "60'",
"description": "Bony W.",
"linked_player_hash": "INXcXK3r"
}
],
"lineup": null,
"starting": false,
"long_name": "Kevin De Bruyne"
},
{
"hash": "2Z11gzUL",
"name": "Demichelis M.",
"captain": "",
"detail_link": "/player/demichelis-martin/2Z11gzUL/",
"short_name": "Demichelis",
"shirt_number": "26",
"country": "Argentina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Martin Demichelis"
},
{
"hash": "2JwK7ZfJ",
"name": "Fernandinho",
"captain": "",
"detail_link": "/player/fernandinho/2JwK7ZfJ/",
"short_name": "Fernandinho",
"shirt_number": "25",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Fernandinho"
},
{
"hash": "dIaES012",
"name": "Iheanacho K.",
"captain": "",
"detail_link": "/player/iheanacho-kelechi/dIaES012/",
"short_name": "Iheanacho",
"shirt_number": "72",
"country": "Nigeria",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Kelechi Iheanacho"
},
{
"hash": "v1SiJzyM",
"name": "Toure Y.",
"captain": "",
"detail_link": "/player/toure-yaya/v1SiJzyM/",
"short_name": "Toure",
"shirt_number": "42",
"country": "Ivory Coast",
"facts": [
{
"type": "7",
"time": "60'",
"description": "Delph F.",
"linked_player_hash": "r5irhILD"
}
],
"lineup": null,
"starting": false,
"long_name": "Yaya Toure"
}
],
"coach": [
{
"hash": "U3wM1J72",
"name": "Pellegrini M.",
"captain": "",
"detail_link": "/player/pellegrini-manuel/U3wM1J72/",
"short_name": "Pellegrini M.",
"shirt_number": "",
"country": "Chile",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Manuel Pellegrini"
}
]
},
"away": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "YwlOPb6r",
"name": "Berahino S.",
"captain": "",
"detail_link": "/player/berahino-saido/YwlOPb6r/",
"short_name": "Berahino",
"shirt_number": "18",
"country": "Burundi",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Saido Berahino"
},
{
"hash": "buCsl3cg",
"name": "Chester J.",
"captain": "",
"detail_link": "/player/chester-james/buCsl3cg/",
"short_name": "Chester",
"shirt_number": "4",
"country": "Wales",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "James Chester"
},
{
"hash": "Who0H1fJ",
"name": "Dawson C.",
"captain": "",
"detail_link": "/player/dawson-craig/Who0H1fJ/",
"short_name": "Dawson",
"shirt_number": "25",
"country": "England",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Craig Dawson"
},
{
"hash": "vo08q1o2",
"name": "Evans J.",
"captain": "",
"detail_link": "/player/evans-jonny/vo08q1o2/",
"short_name": "Evans",
"shirt_number": "6",
"country": "Northern Ireland",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Jonny Evans"
},
{
"hash": "j3pIFABB",
"name": "Fletcher D.",
"captain": "(C)",
"detail_link": "/player/fletcher-darren/j3pIFABB/",
"short_name": "Fletcher",
"shirt_number": "24",
"country": "Scotland",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Darren Fletcher"
},
{
"hash": "hALmaisC",
"name": "Foster B.",
"captain": "",
"detail_link": "/player/foster-ben/hALmaisC/",
"short_name": "Foster",
"shirt_number": "1",
"country": "England",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Ben Foster"
},
{
"hash": "2e5jnkea",
"name": "McAuley G.",
"captain": "",
"detail_link": "/player/mcauley-gareth/2e5jnkea/",
"short_name": "McAuley",
"shirt_number": "23",
"country": "Northern Ireland",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Gareth McAuley"
},
{
"hash": "AXwRs6Lm",
"name": "McClean J.",
"captain": "",
"detail_link": "/player/mcclean-james/AXwRs6Lm/",
"short_name": "McClean",
"shirt_number": "14",
"country": "Ireland",
"facts": [
{
"type": "8",
"time": "6' Sessegnon S. (McClean J.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "James McClean"
},
{
"hash": "OOKVw2zH",
"name": "Rondon S.",
"captain": "",
"detail_link": "/player/rondon-salomon/OOKVw2zH/",
"short_name": "Rondon",
"shirt_number": "33",
"country": "Venezuela",
"facts": [
{
"type": "6",
"time": "21'",
"description": "Gardner C.",
"linked_player_hash": "pfVS8V6l"
}
],
"lineup": 11,
"starting": true,
"long_name": "Salomon Rondon"
},
{
"hash": "Oh6W3MUG",
"name": "Sandro",
"captain": "",
"detail_link": "/player/sandro/Oh6W3MUG/",
"short_name": "Sandro",
"shirt_number": "30",
"country": "Brazil",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Sandro"
},
{
"hash": "bDwcVbMt",
"name": "Sessegnon S.",
"captain": "",
"detail_link": "/player/sessegnon-stephane/bDwcVbMt/",
"short_name": "Sessegnon",
"shirt_number": "29",
"country": "Benin",
"facts": [
{
"type": "3",
"time": "6' Sessegnon S. (McClean J.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "80'",
"description": "Leko J.",
"linked_player_hash": "G8iHoZDl"
}
],
"lineup": 8,
"starting": true,
"long_name": "Stephane Sessegnon"
},
{
"hash": "EcLl5I9F",
"name": "Anichebe V.",
"captain": "",
"detail_link": "/player/anichebe-victor/EcLl5I9F/",
"short_name": "Anichebe",
"shirt_number": "10",
"country": "Nigeria",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Victor Anichebe"
},
{
"hash": "pfVS8V6l",
"name": "Gardner C.",
"captain": "",
"detail_link": "/player/gardner-craig/pfVS8V6l/",
"short_name": "Gardner",
"shirt_number": "8",
"country": "England",
"facts": [
{
"type": "7",
"time": "21'",
"description": "Rondon S.",
"linked_player_hash": "OOKVw2zH"
},
{
"type": "1",
"time": "33' Gardner C. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Craig Gardner"
},
{
"hash": "G8iHoZDl",
"name": "Leko J.",
"captain": "",
"detail_link": "/player/leko-jonathan/G8iHoZDl/",
"short_name": "Leko",
"shirt_number": "45",
"country": "England",
"facts": [
{
"type": "7",
"time": "80'",
"description": "Sessegnon S.",
"linked_player_hash": "bDwcVbMt"
}
],
"lineup": null,
"starting": false,
"long_name": "Jonathan Leko"
},
{
"hash": "vgjqR4q6",
"name": "McManaman C.",
"captain": "",
"detail_link": "/player/mcmanaman-callum/vgjqR4q6/",
"short_name": "McManaman",
"shirt_number": "19",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Callum McManaman"
},
{
"hash": "QwYyk9H4",
"name": "Myhill G. O.",
"captain": "",
"detail_link": "/player/myhill-glyn/QwYyk9H4/",
"short_name": "Myhill",
"shirt_number": "13",
"country": "Wales",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Glyn Oliver Myhill"
},
{
"hash": "Qq3XRRXE",
"name": "Olsson J.",
"captain": "",
"detail_link": "/player/olsson-jonas/Qq3XRRXE/",
"short_name": "Olsson",
"shirt_number": "3",
"country": "Sweden",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jonas Olsson"
},
{
"hash": "2m1MxhW3",
"name": "Yacob C.",
"captain": "",
"detail_link": "/player/yacob-claudio/2m1MxhW3/",
"short_name": "Yacob",
"shirt_number": "5",
"country": "Argentina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Claudio Yacob"
}
],
"coach": [
{
"hash": "KrewcqhJ",
"name": "Pulis T.",
"captain": "",
"detail_link": "/player/pulis-tony/KrewcqhJ/",
"short_name": "Pulis T.",
"shirt_number": "",
"country": "Wales",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Tony Pulis"
}
]
}
},
"referee": [
"Jones M."
],
"venue": [
"Etihad Stadium (Manchester)"
],
"attendance": [
"53 920"
],
"referee_matched": [
"Mike Jones"
],
"referee_found": [
"Mike Jones"
],
"coach_matched": [
"Tony Pulis",
"Manuel Pellegrini"
],
"gameHomeTeam": "Manchester City",
"home": {
"name": "Manchester City",
"detail_link": "/team/manchester-city/Wtn9Stg0",
"hash": "Wtn9Stg0",
"names": [
"Manchester City",
"Manchester City (Eng)",
"manchester city"
]
},
"gameAwayTeam": "West Brom",
"away": {
"name": "West Brom",
"detail_link": "/team/west-brom/CCBWpzjj",
"hash": "CCBWpzjj",
"names": [
"West Brom",
"west brom"
]
},
"gameDate": "09/04/2016 - 18:30",
"annotations": [
{
"important": false,
"gameTime": "2 - 49:59",
"label": "",
"description": "The fans must be pleased with the show they have seen on the pitch today. There was no chance to get bored as the game was very attractive. Let's hope the players won't lose their passion and determination in the future matches. The hosts were largely in control of the game today. The home team played possession football, while the away team tried to find the weakness in their defence using mainly rapid counter-attacks.",
"identified": "The fans must be pleased with the show they have seen on the pitch today. There was no chance to get bored as the game was very attractive. Let's hope the players won't lose their passion and determination in the future matches. The hosts were largely in control of the game today. The home team played possession football, while the away team tried to find the weakness in their defence using mainly rapid counter-attacks.",
"anonymized": "The fans must be pleased with the show they have seen on the pitch today. There was no chance to get bored as the game was very attractive. Let's hope the players won't lose their passion and determination in the future matches. The hosts were largely in control of the game today. The home team played possession football, while the away team tried to find the weakness in their defence using mainly rapid counter-attacks.",
"visibility": "shown",
"position": "2999000"
},
{
"important": true,
"gameTime": "2 - 49:28",
"label": "whistle",
"description": "The referee checks his watch and blows his whistle to signal the end of this match.",
"identified": "The referee checks his watch and blows his whistle to signal the end of this match.",
"anonymized": "The referee checks his watch and blows his whistle to signal the end of this match.",
"visibility": "shown",
"position": "2968000"
},
{
"important": true,
"gameTime": "2 - 48:55",
"label": "",
"description": "James McClean (West Brom) unleashes a decent effort from just outside the box which goes narrowly wide of the left post.",
"identified": "[PLAYER_AXwRs6Lm] ([TEAM_]) unleashes a decent effort from just outside the box which goes narrowly wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a decent effort from just outside the box which goes narrowly wide of the left post.",
"visibility": "shown",
"position": "2935000"
},
{
"important": false,
"gameTime": "2 - 48:53",
"label": "corner",
"description": "The corner from Craig Gardner (West Brom) is intercepted by Joe Hart.",
"identified": "The corner from [PLAYER_pfVS8V6l] ([TEAM_]) is intercepted by [PLAYER_KWoMfbLD].",
"anonymized": "The corner from [PLAYER] ([TEAM]) is intercepted by [PLAYER].",
"visibility": "shown",
"position": "2933000"
},
{
"important": false,
"gameTime": "2 - 48:38",
"label": "",
"description": "Craig Gardner (West Brom) serves up a nice cross, but the defence clears the danger. The referee points to the corner flag and West Brom will take a corner.",
"identified": "[PLAYER_pfVS8V6l] ([TEAM_]) serves up a nice cross, but the defence clears the danger. The referee points to the corner flag and [TEAM_] will take a corner.",
"anonymized": "[PLAYER] ([TEAM]) serves up a nice cross, but the defence clears the danger. The referee points to the corner flag and [TEAM] will take a corner.",
"visibility": "shown",
"position": "2918000"
},
{
"important": false,
"gameTime": "2 - 45:57",
"label": "",
"description": "Craig Gardner (West Brom) crosses the ball into the box from the free kick, but the defence clears the danger.",
"identified": "[PLAYER_pfVS8V6l] ([TEAM_]) crosses the ball into the box from the free kick, but the defence clears the danger.",
"anonymized": "[PLAYER] ([TEAM]) crosses the ball into the box from the free kick, but the defence clears the danger.",
"visibility": "shown",
"position": "2757000"
},
{
"important": false,
"gameTime": "2 - 45:24",
"label": "",
"description": "Nicolas Otamendi (Manchester City) fouls an opponent. At least that's what referee Mike Jones signals. There is a free kick near the sideline to West Brom.",
"identified": "[PLAYER_KSBVnX8R] ([TEAM_]) fouls an opponent. At least that's what referee [REFEREE] signals. There is a free kick near the sideline to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) fouls an opponent. At least that's what referee [REFEREE] signals. There is a free kick near the sideline to [TEAM].",
"visibility": "shown",
"position": "2724000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "Fourth official shows 4 min. of added time.",
"identified": "Fourth official shows 4 min. of added time.",
"anonymized": "Fourth official shows 4 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "2 - 44:22",
"label": "substitution",
"description": "Manuel Pellegrini has decided to introduce fresh legs, with Gael Clichy (Manchester City) replacing Sergio Aguero.",
"identified": "[COACH_U3wM1J72] has decided to introduce fresh legs, with [PLAYER_xIJOMggd] ([TEAM_]) replacing [PLAYER_vw8ZV7HC].",
"anonymized": "[COACH] has decided to introduce fresh legs, with [PLAYER] ([TEAM]) replacing [PLAYER].",
"visibility": "shown",
"position": "2662000"
},
{
"important": false,
"gameTime": "2 - 42:52",
"label": "",
"description": "Jonathan Leko (West Brom) sends a teasing cross into the area, but Joe Hart intercepts the ball.",
"identified": "[PLAYER_G8iHoZDl] ([TEAM_]) sends a teasing cross into the area, but [PLAYER_KWoMfbLD] intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a teasing cross into the area, but [PLAYER] intercepts the ball.",
"visibility": "shown",
"position": "2572000"
},
{
"important": false,
"gameTime": "2 - 41:50",
"label": "",
"description": "West Brom enjoy a period of possession as they are exchanging some passes and waiting for an opportunity to strike.",
"identified": "[TEAM_] enjoy a period of possession as they are exchanging some passes and waiting for an opportunity to strike.",
"anonymized": "[TEAM] enjoy a period of possession as they are exchanging some passes and waiting for an opportunity to strike.",
"visibility": "shown",
"position": "2510000"
},
{
"important": false,
"gameTime": "2 - 38:52",
"label": "corner",
"description": "Craig Gardner (West Brom) steps up to take the corner, but the ball just sails in among the defenders.",
"identified": "[PLAYER_pfVS8V6l] ([TEAM_]) steps up to take the corner, but the ball just sails in among the defenders.",
"anonymized": "[PLAYER] ([TEAM]) steps up to take the corner, but the ball just sails in among the defenders.",
"visibility": "shown",
"position": "2332000"
},
{
"important": false,
"gameTime": "2 - 38:26",
"label": "",
"description": "Joe Hart reacts well to deny a long-range free kick from Craig Gardner (West Brom) towards the roof of the net. The ball is out of play. West Brom will have a chance to score from a corner.",
"identified": "[PLAYER_KWoMfbLD] reacts well to deny a long-range free kick from [PLAYER_pfVS8V6l] ([TEAM_]) towards the roof of the net. The ball is out of play. [TEAM_] will have a chance to score from a corner.",
"anonymized": "[PLAYER] reacts well to deny a long-range free kick from [PLAYER] ([TEAM]) towards the roof of the net. The ball is out of play. [TEAM] will have a chance to score from a corner.",
"visibility": "shown",
"position": "2306000"
},
{
"important": false,
"gameTime": "2 - 37:53",
"label": "",
"description": "Mike Jones blows his whistle for a foul after Nicolas Otamendi (Manchester City) hacks down one of his opponents. That's a free kick to West Brom.",
"identified": "[REFEREE] blows his whistle for a foul after [PLAYER_KSBVnX8R] ([TEAM_]) hacks down one of his opponents. That's a free kick to [TEAM_].",
"anonymized": "[REFEREE] blows his whistle for a foul after [PLAYER] ([TEAM]) hacks down one of his opponents. That's a free kick to [TEAM].",
"visibility": "shown",
"position": "2273000"
},
{
"important": false,
"gameTime": "2 - 37:45",
"label": "attendance",
"description": "The attendance for today's match is 53920.",
"identified": "The attendance for today's match is 53920.",
"anonymized": "The attendance for today's match is 53920.",
"visibility": "shown",
"position": "2265000"
},
{
"important": true,
"gameTime": "2 - 36:54",
"label": "",
"description": "A brilliant individual effort! Samir Nasri (Manchester City) tricks his way past challenges into the box and drags his shot narrowly wide of the right post.",
"identified": "A brilliant individual effort! [PLAYER_jmKOmkPu] ([TEAM_]) tricks his way past challenges into the box and drags his shot narrowly wide of the right post.",
"anonymized": "A brilliant individual effort! [PLAYER] ([TEAM]) tricks his way past challenges into the box and drags his shot narrowly wide of the right post.",
"visibility": "shown",
"position": "2214000"
},
{
"important": true,
"gameTime": "2 - 34:59",
"label": "substitution",
"description": "Substitution. Stephane Sessegnon makes way for Jonathan Leko (West Brom).",
"identified": "Substitution. [PLAYER_bDwcVbMt] makes way for [PLAYER_G8iHoZDl] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] makes way for [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2099000"
},
{
"important": false,
"gameTime": "2 - 34:42",
"label": "",
"description": "Chance! Saido Berahino (West Brom) was in a good position inside the box, but he couldn't connect with the pass as it was overhit.",
"identified": "Chance! [PLAYER_YwlOPb6r] ([TEAM_]) was in a good position inside the box, but he couldn't connect with the pass as it was overhit.",
"anonymized": "Chance! [PLAYER] ([TEAM]) was in a good position inside the box, but he couldn't connect with the pass as it was overhit.",
"visibility": "shown",
"position": "2082000"
},
{
"important": false,
"gameTime": "2 - 32:43",
"label": "",
"description": "James McClean (West Brom) unleashed a monstrous piledriver. He controlled a pass, glanced up at goal and shot from the edge of the box. It could have been a difficult one for the keeper, but the ball fortunately hit one of the defenders and ball bounced away.",
"identified": "[PLAYER_AXwRs6Lm] ([TEAM_]) unleashed a monstrous piledriver. He controlled a pass, glanced up at goal and shot from the edge of the box. It could have been a difficult one for the keeper, but the ball fortunately hit one of the defenders and ball bounced away.",
"anonymized": "[PLAYER] ([TEAM]) unleashed a monstrous piledriver. He controlled a pass, glanced up at goal and shot from the edge of the box. It could have been a difficult one for the keeper, but the ball fortunately hit one of the defenders and ball bounced away.",
"visibility": "shown",
"position": "1963000"
},
{
"important": true,
"gameTime": "2 - 31:30",
"label": "",
"description": "Sergio Aguero (Manchester City) darts into the penalty area to latch on to a pass, and he unleashes a low drive towards the middle of the net, but Ben Foster is alert and denies him.",
"identified": "[PLAYER_vw8ZV7HC] ([TEAM_]) darts into the penalty area to latch on to a pass, and he unleashes a low drive towards the middle of the net, but [PLAYER_hALmaisC] is alert and denies him.",
"anonymized": "[PLAYER] ([TEAM]) darts into the penalty area to latch on to a pass, and he unleashes a low drive towards the middle of the net, but [PLAYER] is alert and denies him.",
"visibility": "shown",
"position": "1890000"
},
{
"important": false,
"gameTime": "2 - 29:57",
"label": "corner",
"description": "Joe Hart comes off his line to intercept the corner from Craig Gardner (West Brom).",
"identified": "[PLAYER_KWoMfbLD] comes off his line to intercept the corner from [PLAYER_pfVS8V6l] ([TEAM_]).",
"anonymized": "[PLAYER] comes off his line to intercept the corner from [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1797000"
},
{
"important": false,
"gameTime": "2 - 29:48",
"label": "",
"description": "James Chester (West Brom) looks to break free, but an opposing player clears the ball away. The ball goes out for a corner. West Brom can continue in their attacking effort.",
"identified": "[PLAYER_buCsl3cg] ([TEAM_]) looks to break free, but an opposing player clears the ball away. The ball goes out for a corner. [TEAM_] can continue in their attacking effort.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away. The ball goes out for a corner. [TEAM] can continue in their attacking effort.",
"visibility": "shown",
"position": "1788000"
},
{
"important": true,
"gameTime": "2 - 28:30",
"label": "",
"description": "Saido Berahino (West Brom) latches on to a lofted pass and strikes the ball! His attempt flies narrowly wide of the right post.",
"identified": "[PLAYER_YwlOPb6r] ([TEAM_]) latches on to a lofted pass and strikes the ball! His attempt flies narrowly wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) latches on to a lofted pass and strikes the ball! His attempt flies narrowly wide of the right post.",
"visibility": "shown",
"position": "1710000"
},
{
"important": false,
"gameTime": "2 - 26:30",
"label": "",
"description": "The West Brom players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"identified": "The [TEAM_] players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"anonymized": "The [TEAM] players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"visibility": "shown",
"position": "1590000"
},
{
"important": true,
"gameTime": "2 - 25:49",
"label": "",
"description": "Ambitious effort from Saido Berahino (West Brom). He finds himself in a great position after collecting a precise pass inside the penalty area and goes for goal, but it never troubles the goalkeeper and flies well wide of the right post.",
"identified": "Ambitious effort from [PLAYER_YwlOPb6r] ([TEAM_]). He finds himself in a great position after collecting a precise pass inside the penalty area and goes for goal, but it never troubles the goalkeeper and flies well wide of the right post.",
"anonymized": "Ambitious effort from [PLAYER] ([TEAM]). He finds himself in a great position after collecting a precise pass inside the penalty area and goes for goal, but it never troubles the goalkeeper and flies well wide of the right post.",
"visibility": "shown",
"position": "1549000"
},
{
"important": false,
"gameTime": "2 - 24:37",
"label": "",
"description": "A pass by Jesus Navas (Manchester City) ends up in no man's land, and the attacking effort comes to an end.",
"identified": "A pass by [PLAYER_hWt5ZIrn] ([TEAM_]) ends up in no man's land, and the attacking effort comes to an end.",
"anonymized": "A pass by [PLAYER] ([TEAM]) ends up in no man's land, and the attacking effort comes to an end.",
"visibility": "shown",
"position": "1477000"
},
{
"important": false,
"gameTime": "2 - 21:30",
"label": "",
"description": "Kevin De Bruyne (Manchester City) is offside and the linesman raises his flag.",
"identified": "[PLAYER_MsPs6OI5] ([TEAM_]) is offside and the linesman raises his flag.",
"anonymized": "[PLAYER] ([TEAM]) is offside and the linesman raises his flag.",
"visibility": "shown",
"position": "1290000"
},
{
"important": true,
"gameTime": "2 - 20:52",
"label": "soccer-ball",
"description": "Goal 2:1! Samir Nasri (Manchester City) taps home from close range after the rebound fell kindly into his path.",
"identified": "Goal 2:1! [PLAYER_jmKOmkPu] ([TEAM_]) taps home from close range after the rebound fell kindly into his path.",
"anonymized": "Goal 2:1! [PLAYER] ([TEAM]) taps home from close range after the rebound fell kindly into his path.",
"visibility": "shown",
"position": "1252000"
},
{
"important": true,
"gameTime": "2 - 20:50",
"label": "",
"description": "Wow, what an escape. Sergio Aguero (Manchester City) has an effort from inside the box but it's brilliantly blocked.",
"identified": "Wow, what an escape. [PLAYER_vw8ZV7HC] ([TEAM_]) has an effort from inside the box but it's brilliantly blocked.",
"anonymized": "Wow, what an escape. [PLAYER] ([TEAM]) has an effort from inside the box but it's brilliantly blocked.",
"visibility": "shown",
"position": "1250000"
},
{
"important": false,
"gameTime": "2 - 20:09",
"label": "",
"description": "The Manchester City players are exchanging short passes in an attempt to create a shooting opportunity.",
"identified": "The [TEAM_] players are exchanging short passes in an attempt to create a shooting opportunity.",
"anonymized": "The [TEAM] players are exchanging short passes in an attempt to create a shooting opportunity.",
"visibility": "shown",
"position": "1209000"
},
{
"important": false,
"gameTime": "2 - 18:13",
"label": "funfact",
"description": "62:38 \u2013 this is the current ball possession ratio.",
"identified": "62:38 \u2013 this is the current ball possession ratio.",
"anonymized": "62:38 \u2013 this is the current ball possession ratio.",
"visibility": "shown",
"position": "1093000"
},
{
"important": false,
"gameTime": "2 - 17:52",
"label": "",
"description": "Sergio Aguero (Manchester City) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"identified": "[PLAYER_vw8ZV7HC] ([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": "1072000"
},
{
"important": false,
"gameTime": "2 - 17:36",
"label": "",
"description": "Jesus Navas (Manchester City) fails to pick a body out in the box with an over-hit cross to the back post.",
"identified": "[PLAYER_hWt5ZIrn] ([TEAM_]) fails to pick a body out in the box with an over-hit cross to the back post.",
"anonymized": "[PLAYER] ([TEAM]) fails to pick a body out in the box with an over-hit cross to the back post.",
"visibility": "shown",
"position": "1056000"
},
{
"important": false,
"gameTime": "2 - 16:17",
"label": "",
"description": "Craig Dawson (West Brom) fails to beat the offside trap and the linesman puts his flag up.",
"identified": "[PLAYER_Who0H1fJ] ([TEAM_]) fails to beat the offside trap and the linesman puts his flag up.",
"anonymized": "[PLAYER] ([TEAM]) fails to beat the offside trap and the linesman puts his flag up.",
"visibility": "shown",
"position": "977000"
},
{
"important": true,
"gameTime": "2 - 14:57",
"label": "substitution",
"description": "Manuel Pellegrini has decided to make a change. Yaya Toure (Manchester City) replaces Fabian Delph.",
"identified": "[COACH_U3wM1J72] has decided to make a change. [PLAYER_v1SiJzyM] ([TEAM_]) replaces [PLAYER_r5irhILD].",
"anonymized": "[COACH] has decided to make a change. [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "897000"
},
{
"important": true,
"gameTime": "2 - 14:37",
"label": "substitution",
"description": "The substitution has been made. Kevin De Bruyne (Manchester City) has replaced Wilfried Bony.",
"identified": "The substitution has been made. [PLAYER_MsPs6OI5] ([TEAM_]) has replaced [PLAYER_INXcXK3r].",
"anonymized": "The substitution has been made. [PLAYER] ([TEAM]) has replaced [PLAYER].",
"visibility": "shown",
"position": "877000"
},
{
"important": false,
"gameTime": "2 - 13:53",
"label": "",
"description": "Craig Gardner (West Brom) unleashes a shot from 24 metres out but is unable to find the target and it goes well wide of the right post.",
"identified": "[PLAYER_pfVS8V6l] ([TEAM_]) unleashes a shot from 24 metres out but is unable to find the target and it goes well wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a shot from 24 metres out but is unable to find the target and it goes well wide of the right post.",
"visibility": "shown",
"position": "833000"
},
{
"important": false,
"gameTime": "2 - 12:59",
"label": "corner",
"description": "Craig Gardner (West Brom) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety.",
"identified": "[PLAYER_pfVS8V6l] ([TEAM_]) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety.",
"visibility": "shown",
"position": "779000"
},
{
"important": false,
"gameTime": "2 - 12:50",
"label": "",
"description": "James McClean (West Brom) sends a lofted cross into the penalty area. Unfortunately for him, the opponent's defence deals with his cross comfortably and intercepts it. West Brom force their opponents to concede a corner.",
"identified": "[PLAYER_AXwRs6Lm] ([TEAM_]) sends a lofted cross into the penalty area. Unfortunately for him, the opponent's defence deals with his cross comfortably and intercepts it. [TEAM_] force their opponents to concede a corner.",
"anonymized": "[PLAYER] ([TEAM]) sends a lofted cross into the penalty area. Unfortunately for him, the opponent's defence deals with his cross comfortably and intercepts it. [TEAM] force their opponents to concede a corner.",
"visibility": "shown",
"position": "770000"
},
{
"important": false,
"gameTime": "2 - 11:51",
"label": "",
"description": "Sandro receives a sweet cross inside the box from Stephane Sessegnon (West Brom), but one of the defenders rushes in bravely to intercept the ball.",
"identified": "[PLAYER_Oh6W3MUG] receives a sweet cross inside the box from [PLAYER_bDwcVbMt] ([TEAM_]), but one of the defenders rushes in bravely to intercept the ball.",
"anonymized": "[PLAYER] receives a sweet cross inside the box from [PLAYER] ([TEAM]), but one of the defenders rushes in bravely to intercept the ball.",
"visibility": "shown",
"position": "711000"
},
{
"important": false,
"gameTime": "2 - 09:48",
"label": "corner",
"description": "The resulting corner, taken by Aleksandar Kolarov (Manchester City), comes to nothing.",
"identified": "The resulting corner, taken by [PLAYER_2XhnQxcG] ([TEAM_]), comes to nothing.",
"anonymized": "The resulting corner, taken by [PLAYER] ([TEAM]), comes to nothing.",
"visibility": "shown",
"position": "588000"
},
{
"important": false,
"gameTime": "2 - 09:15",
"label": "",
"description": "Sergio Aguero (Manchester City) picks up a pass, lines up a shot and strikes from 25 metres out, but Ben Foster thwarts the effort which is headed to the bottom left corner. The ball is out of play. Manchester City win a corner kick.",
"identified": "[PLAYER_vw8ZV7HC] ([TEAM_]) picks up a pass, lines up a shot and strikes from 25 metres out, but [PLAYER_hALmaisC] thwarts the effort which is headed to the bottom left corner. The ball is out of play. [TEAM_] win a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) picks up a pass, lines up a shot and strikes from 25 metres out, but [PLAYER] thwarts the effort which is headed to the bottom left corner. The ball is out of play. [TEAM] win a corner kick.",
"visibility": "shown",
"position": "555000"
},
{
"important": false,
"gameTime": "2 - 07:30",
"label": "",
"description": "Wilfried Bony (Manchester City) receives a good pass just outside the box, unleashes a strike from a promising position, but the shot is blocked by the defender.",
"identified": "[PLAYER_INXcXK3r] ([TEAM_]) receives a good pass just outside the box, unleashes a strike from a promising position, but the shot is blocked by the defender.",
"anonymized": "[PLAYER] ([TEAM]) receives a good pass just outside the box, unleashes a strike from a promising position, but the shot is blocked by the defender.",
"visibility": "shown",
"position": "450000"
},
{
"important": false,
"gameTime": "2 - 06:27",
"label": "",
"description": "Manchester City are seeing far more of the ball now.",
"identified": "[TEAM_] are seeing far more of the ball now.",
"anonymized": "[TEAM] are seeing far more of the ball now.",
"visibility": "shown",
"position": "387000"
},
{
"important": false,
"gameTime": "2 - 04:51",
"label": "",
"description": "Fernando (Manchester City) manages to dispossess his opponent of the ball, but he commits a foul in the process and the referee blows his whistle.",
"identified": "[PLAYER_rJlzoALP] ([TEAM_]) manages to dispossess his opponent of the ball, but he commits a foul in the process and the referee blows his whistle.",
"anonymized": "[PLAYER] ([TEAM]) manages to dispossess his opponent of the ball, but he commits a foul in the process and the referee blows his whistle.",
"visibility": "shown",
"position": "291000"
},
{
"important": false,
"gameTime": "2 - 03:37",
"label": "",
"description": "Stephane Sessegnon (West Brom) is unable to feed an accurate cross into the box.",
"identified": "[PLAYER_bDwcVbMt] ([TEAM_]) is unable to feed an accurate cross into the box.",
"anonymized": "[PLAYER] ([TEAM]) is unable to feed an accurate cross into the box.",
"visibility": "shown",
"position": "217000"
},
{
"important": false,
"gameTime": "2 - 01:37",
"label": "",
"description": "Jonny Evans (West Brom) robs an opponent of the ball and explodes in anger when Mike Jones blows for a foul.",
"identified": "[PLAYER_vo08q1o2] ([TEAM_]) robs an opponent of the ball and explodes in anger when [REFEREE] blows for a foul.",
"anonymized": "[PLAYER] ([TEAM]) robs an opponent of the ball and explodes in anger when [REFEREE] blows for a foul.",
"visibility": "shown",
"position": "97000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The game restarts for the second half.",
"identified": "The game restarts for the second half.",
"anonymized": "The game restarts for the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 47:59",
"label": "",
"description": "It was a good decision to watch today's encounter. There has already been more to see prior to the half-time break than there is in most games during the full 90 minutes. The home team were mostly in control in the first half. The home team makes a lot of passes and attempts to maintain possession, while the visitors look to counter-attack.",
"identified": "It was a good decision to watch today's encounter. There has already been more to see prior to the half-time break than there is in most games during the full 90 minutes. The home team were mostly in control in the first half. The home team makes a lot of passes and attempts to maintain possession, while the visitors look to counter-attack.",
"anonymized": "It was a good decision to watch today's encounter. There has already been more to see prior to the half-time break than there is in most games during the full 90 minutes. The home team were mostly in control in the first half. The home team makes a lot of passes and attempts to maintain possession, while the visitors look to counter-attack.",
"visibility": "shown",
"position": "2879000"
},
{
"important": true,
"gameTime": "1 - 47:08",
"label": "whistle",
"description": "The match has reached half-time.",
"identified": "The match has reached half-time.",
"anonymized": "The match has reached half-time.",
"visibility": "shown",
"position": "2828000"
},
{
"important": false,
"gameTime": "1 - 46:44",
"label": "corner",
"description": "The ball is whipped in from the corner by Craig Gardner (West Brom), but one of the defenders gets it clear.",
"identified": "The ball is whipped in from the corner by [PLAYER_pfVS8V6l] ([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": "2804000"
},
{
"important": false,
"gameTime": "1 - 46:10",
"label": "",
"description": "Craig Dawson (West Brom) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack. West Brom force a corner. They send men into the box.",
"identified": "[PLAYER_Who0H1fJ] ([TEAM_]) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack. [TEAM_] force a corner. They send men into the box.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack. [TEAM] force a corner. They send men into the box.",
"visibility": "shown",
"position": "2770000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "2 additional min. will be played.",
"identified": "2 additional min. will be played.",
"anonymized": "2 additional min. will be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 44:35",
"label": "",
"description": "Samir Nasri sends a lovely lofted pass forward that flies over the top of the defence and into the path of Wilfried Bony (Manchester City), but he can't direct his header on target as it flies well wide of the left post.",
"identified": "[PLAYER_jmKOmkPu] sends a lovely lofted pass forward that flies over the top of the defence and into the path of [PLAYER_INXcXK3r] ([TEAM_]), but he can't direct his header on target as it flies well wide of the left post.",
"anonymized": "[PLAYER] sends a lovely lofted pass forward that flies over the top of the defence and into the path of [PLAYER] ([TEAM]), but he can't direct his header on target as it flies well wide of the left post.",
"visibility": "shown",
"position": "2675000"
},
{
"important": false,
"gameTime": "1 - 44:10",
"label": "",
"description": "Sergio Aguero (Manchester City) sends a cross into the box, but the opposition's defence clears the ball away to eliminate the danger.",
"identified": "[PLAYER_vw8ZV7HC] ([TEAM_]) sends a cross into the box, but the opposition's defence clears the ball away to eliminate the danger.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence clears the ball away to eliminate the danger.",
"visibility": "shown",
"position": "2650000"
},
{
"important": false,
"gameTime": "1 - 41:59",
"label": "corner",
"description": "Craig Gardner (West Brom) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"identified": "[PLAYER_pfVS8V6l] ([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": "2519000"
},
{
"important": false,
"gameTime": "1 - 41:51",
"label": "",
"description": "James McClean (West Brom) once again attempts to send a defence-splitting pass, but the opposition's defence is alert and intercepts the ball. The linesman makes the right call and West Brom will have a corner.",
"identified": "[PLAYER_AXwRs6Lm] ([TEAM_]) once again attempts to send a defence-splitting pass, but the opposition's defence is alert and intercepts the ball. The linesman makes the right call and [TEAM_] will have a corner.",
"anonymized": "[PLAYER] ([TEAM]) once again attempts to send a defence-splitting pass, but the opposition's defence is alert and intercepts the ball. The linesman makes the right call and [TEAM] will have a corner.",
"visibility": "shown",
"position": "2511000"
},
{
"important": false,
"gameTime": "1 - 40:00",
"label": "",
"description": "James McClean (West Brom) fails to find any of his teammates inside the box as his pass is blocked.",
"identified": "[PLAYER_AXwRs6Lm] ([TEAM_]) fails to find any of his teammates inside the box as his pass is blocked.",
"anonymized": "[PLAYER] ([TEAM]) fails to find any of his teammates inside the box as his pass is blocked.",
"visibility": "shown",
"position": "2400000"
},
{
"important": false,
"gameTime": "1 - 39:17",
"label": "corner",
"description": "Samir Nasri (Manchester City) takes the corner kick but the ball only finds the head of an opponent.",
"identified": "[PLAYER_jmKOmkPu] ([TEAM_]) takes the corner kick but the ball only finds the head of an opponent.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner kick but the ball only finds the head of an opponent.",
"visibility": "shown",
"position": "2357000"
},
{
"important": false,
"gameTime": "1 - 38:54",
"label": "",
"description": "Aleksandar Kolarov (Manchester City) swings in a cross, but the ball is cleared to safety by one of the defending players. Manchester City will take a corner kick.",
"identified": "[PLAYER_2XhnQxcG] ([TEAM_]) swings in a cross, but the ball is cleared to safety by one of the defending players. [TEAM_] will take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) swings in a cross, but the ball is cleared to safety by one of the defending players. [TEAM] will take a corner kick.",
"visibility": "shown",
"position": "2334000"
},
{
"important": false,
"gameTime": "1 - 37:50",
"label": "",
"description": "Darren Fletcher (West Brom) sprays a pass out to Stephane Sessegnon, but he can't beat his man inside the box.",
"identified": "[PLAYER_j3pIFABB] ([TEAM_]) sprays a pass out to [PLAYER_bDwcVbMt], but he can't beat his man inside the box.",
"anonymized": "[PLAYER] ([TEAM]) sprays a pass out to [PLAYER], but he can't beat his man inside the box.",
"visibility": "shown",
"position": "2270000"
},
{
"important": false,
"gameTime": "1 - 35:35",
"label": "",
"description": "A lofted cross from Sergio Aguero (Manchester City) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area.",
"identified": "A lofted cross from [PLAYER_vw8ZV7HC] ([TEAM_]) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area.",
"anonymized": "A lofted cross from [PLAYER] ([TEAM]) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area.",
"visibility": "shown",
"position": "2135000"
},
{
"important": false,
"gameTime": "1 - 34:30",
"label": "",
"description": "Long passes, short passes and one-two passes. Manchester City are showcasing great team work by keeping possession and producing pin-point passes from player to player. The opposition's players are finding it very difficult to intercept at the moment.",
"identified": "Long passes, short passes and one-two passes. [TEAM_] are showcasing great team work by keeping possession and producing pin-point passes from player to player. The opposition's players are finding it very difficult to intercept at the moment.",
"anonymized": "Long passes, short passes and one-two passes. [TEAM] are showcasing great team work by keeping possession and producing pin-point passes from player to player. The opposition's players are finding it very difficult to intercept at the moment.",
"visibility": "shown",
"position": "2070000"
},
{
"important": true,
"gameTime": "1 - 32:58",
"label": "y-card",
"description": "The foul by Craig Gardner (West Brom) is worthy of a card and a yellow is duly shown by Mike Jones.",
"identified": "The foul by [PLAYER_pfVS8V6l] ([TEAM_]) is worthy of a card and a yellow is duly shown by [REFEREE].",
"anonymized": "The foul by [PLAYER] ([TEAM]) is worthy of a card and a yellow is duly shown by [REFEREE].",
"visibility": "shown",
"position": "1978000"
},
{
"important": false,
"gameTime": "1 - 32:45",
"label": "",
"description": "Craig Gardner (West Brom) takes the resulting free kick from the edge of the box, but it's blocked by the players standing in the wall, saving the goalkeeper a lot of effort.",
"identified": "[PLAYER_pfVS8V6l] ([TEAM_]) takes the resulting free kick from the edge of the box, but it's blocked by the players standing in the wall, saving the goalkeeper a lot of effort.",
"anonymized": "[PLAYER] ([TEAM]) takes the resulting free kick from the edge of the box, but it's blocked by the players standing in the wall, saving the goalkeeper a lot of effort.",
"visibility": "shown",
"position": "1965000"
},
{
"important": false,
"gameTime": "1 - 30:56",
"label": "",
"description": "Mike Jones has a clear sight and sees a foul from Fabian Delph (Manchester City). West Brom are awarded a free kick from a dangerous position.",
"identified": "[REFEREE] has a clear sight and sees a foul from [PLAYER_r5irhILD] ([TEAM_]). [TEAM_] are awarded a free kick from a dangerous position.",
"anonymized": "[REFEREE] has a clear sight and sees a foul from [PLAYER] ([TEAM]). [TEAM] are awarded a free kick from a dangerous position.",
"visibility": "shown",
"position": "1856000"
},
{
"important": false,
"gameTime": "1 - 29:39",
"label": "",
"description": "Sergio Aguero (Manchester City) fails to pick a body out in the box with an over-hit chip pass.",
"identified": "[PLAYER_vw8ZV7HC] ([TEAM_]) fails to pick a body out in the box with an over-hit chip pass.",
"anonymized": "[PLAYER] ([TEAM]) fails to pick a body out in the box with an over-hit chip pass.",
"visibility": "shown",
"position": "1779000"
},
{
"important": false,
"gameTime": "1 - 28:18",
"label": "",
"description": "An accurate pass to the edge of the box is well taken by Craig Gardner (West Brom), whose instinctive shot towards goal flashes inches wide of the right post.",
"identified": "An accurate pass to the edge of the box is well taken by [PLAYER_pfVS8V6l] ([TEAM_]), whose instinctive shot towards goal flashes inches wide of the right post.",
"anonymized": "An accurate pass to the edge of the box is well taken by [PLAYER] ([TEAM]), whose instinctive shot towards goal flashes inches wide of the right post.",
"visibility": "shown",
"position": "1698000"
},
{
"important": false,
"gameTime": "1 - 25:59",
"label": "",
"description": "The Manchester City players are exchanging fine passes and are waiting for an opportunity to start an attack, but here's a mistake and a loss of possession.",
"identified": "The [TEAM_] players are exchanging fine passes and are waiting for an opportunity to start an attack, but here's a mistake and a loss of possession.",
"anonymized": "The [TEAM] players are exchanging fine passes and are waiting for an opportunity to start an attack, but here's a mistake and a loss of possession.",
"visibility": "shown",
"position": "1559000"
},
{
"important": false,
"gameTime": "1 - 23:59",
"label": "",
"description": "Eliaquim Mangala (Manchester City) leaps highest to meet the resulting corner and attempts to head home, but the effort goes harmlessly wide of the left post.",
"identified": "[PLAYER_M78V4kxC] ([TEAM_]) leaps highest to meet the resulting corner and attempts to head home, but the effort goes harmlessly wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) leaps highest to meet the resulting corner and attempts to head home, but the effort goes harmlessly wide of the left post.",
"visibility": "shown",
"position": "1439000"
},
{
"important": false,
"gameTime": "1 - 23:52",
"label": "corner",
"description": "Samir Nasri (Manchester City) is heading toward the corner flag to take the set piece.",
"identified": "[PLAYER_jmKOmkPu] ([TEAM_]) is heading toward the corner flag to take the set piece.",
"anonymized": "[PLAYER] ([TEAM]) is heading toward the corner flag to take the set piece.",
"visibility": "shown",
"position": "1432000"
},
{
"important": false,
"gameTime": "1 - 23:51",
"label": "",
"description": "Aleksandar Kolarov (Manchester City) blasts the ball from just outside the box, but his attempt is blocked by the defender. The referee signals a corner kick to Manchester City.",
"identified": "[PLAYER_2XhnQxcG] ([TEAM_]) blasts the ball from just outside the box, but his attempt is blocked by the defender. The referee signals a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) blasts the ball from just outside the box, but his attempt is blocked by the defender. The referee signals a corner kick to [TEAM].",
"visibility": "shown",
"position": "1431000"
},
{
"important": false,
"gameTime": "1 - 22:38",
"label": "corner",
"description": "James McClean (West Brom) swings in the corner, but it's comfortably cleared away.",
"identified": "[PLAYER_AXwRs6Lm] ([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": "1358000"
},
{
"important": false,
"gameTime": "1 - 22:15",
"label": "",
"description": "Craig Dawson (West Brom) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. West Brom have a corner.",
"identified": "[PLAYER_Who0H1fJ] ([TEAM_]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. [TEAM] have a corner.",
"visibility": "shown",
"position": "1335000"
},
{
"important": true,
"gameTime": "1 - 20:55",
"label": "substitution",
"description": "Salomon Rondon is being substituted because of an injury. Tony Pulis sends Craig Gardner (West Brom) on the pitch.",
"identified": "[PLAYER_OOKVw2zH] is being substituted because of an injury. [COACH_KrewcqhJ] sends [PLAYER_pfVS8V6l] ([TEAM_]) on the pitch.",
"anonymized": "[PLAYER] is being substituted because of an injury. [COACH] sends [PLAYER] ([TEAM]) on the pitch.",
"visibility": "shown",
"position": "1255000"
},
{
"important": false,
"gameTime": "1 - 20:28",
"label": "",
"description": "Samir Nasri (Manchester City) fires a shot at goal from a very promising position outside the penalty area, but it is blocked by a self-sacrificing defender.",
"identified": "[PLAYER_jmKOmkPu] ([TEAM_]) fires a shot at goal from a very promising position outside the penalty area, but it is blocked by a self-sacrificing defender.",
"anonymized": "[PLAYER] ([TEAM]) fires a shot at goal from a very promising position outside the penalty area, but it is blocked by a self-sacrificing defender.",
"visibility": "shown",
"position": "1228000"
},
{
"important": false,
"gameTime": "1 - 20:18",
"label": "",
"description": "Manchester City 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": "1218000"
},
{
"important": true,
"gameTime": "1 - 18:41",
"label": "soccer-ball",
"description": "Sergio Aguero (Manchester City) leaves the keeper helpless with his precise penalty shot inside the right post.",
"identified": "[PLAYER_vw8ZV7HC] ([TEAM_]) leaves the keeper helpless with his precise penalty shot inside the right post.",
"anonymized": "[PLAYER] ([TEAM]) leaves the keeper helpless with his precise penalty shot inside the right post.",
"visibility": "shown",
"position": "1121000"
},
{
"important": true,
"gameTime": "1 - 18:20",
"label": "",
"description": "Sergio Aguero (Manchester City) is going to take the penalty!",
"identified": "[PLAYER_vw8ZV7HC] ([TEAM_]) is going to take the penalty!",
"anonymized": "[PLAYER] ([TEAM]) is going to take the penalty!",
"visibility": "shown",
"position": "1100000"
},
{
"important": true,
"gameTime": "1 - 17:54",
"label": "penalty",
"description": "Stephane Sessegnon (West Brom) performs a sliding tackle but catches his opponent's legs. The referee blows his whistle for an infringement. The referee gives a penalty kick to Manchester City!!",
"identified": "[PLAYER_bDwcVbMt] ([TEAM_]) performs a sliding tackle but catches his opponent's legs. The referee blows his whistle for an infringement. The referee gives a penalty kick to [TEAM_]!!",
"anonymized": "[PLAYER] ([TEAM]) performs a sliding tackle but catches his opponent's legs. The referee blows his whistle for an infringement. The referee gives a penalty kick to [TEAM]!!",
"visibility": "shown",
"position": "1074000"
},
{
"important": false,
"gameTime": "1 - 16:18",
"label": "",
"description": "West Brom are bossing possession of the ball and make numerous short passes, but they finally lose possession after an error. The ball has crossed the sideline. Manchester City are taking a throw-in.",
"identified": "[TEAM_] are bossing possession of the ball and make numerous short passes, but they finally lose possession after an error. The ball has crossed the sideline. [TEAM_] are taking a throw-in.",
"anonymized": "[TEAM] are bossing possession of the ball and make numerous short passes, but they finally lose possession after an error. The ball has crossed the sideline. [TEAM] are taking a throw-in.",
"visibility": "shown",
"position": "978000"
},
{
"important": false,
"gameTime": "1 - 14:13",
"label": "",
"description": "A cross by James Chester (West Brom) from the side of the pitch flies into the box, but fails to find its intended target as the aim was poor.",
"identified": "A cross by [PLAYER_buCsl3cg] ([TEAM_]) from the side of the pitch flies into the box, but fails to find its intended target as the aim was poor.",
"anonymized": "A cross by [PLAYER] ([TEAM]) from the side of the pitch flies into the box, but fails to find its intended target as the aim was poor.",
"visibility": "shown",
"position": "853000"
},
{
"important": false,
"gameTime": "1 - 13:45",
"label": "",
"description": "James McClean (West Brom) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear. The linesman signals a throw-in for West Brom.",
"identified": "[PLAYER_AXwRs6Lm] ([TEAM_]) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear. The linesman signals a throw-in for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear. The linesman signals a throw-in for [TEAM].",
"visibility": "shown",
"position": "825000"
},
{
"important": false,
"gameTime": "1 - 11:57",
"label": "corner",
"description": "Aleksandar Kolarov (Manchester City) takes the resulting corner which is well defended.",
"identified": "[PLAYER_2XhnQxcG] ([TEAM_]) takes the resulting corner which is well defended.",
"anonymized": "[PLAYER] ([TEAM]) takes the resulting corner which is well defended.",
"visibility": "shown",
"position": "717000"
},
{
"important": false,
"gameTime": "1 - 11:21",
"label": "corner",
"description": "Samir Nasri (Manchester City) swings in a dangerous cross from the resulting corner kick, but none of his teammates manage to outjump the defence. Manchester City force a corner. Their opponents will face another attacking threat.",
"identified": "[PLAYER_jmKOmkPu] ([TEAM_]) swings in a dangerous cross from the resulting corner kick, but none of his teammates manage to outjump the defence. [TEAM_] force a corner. Their opponents will face another attacking threat.",
"anonymized": "[PLAYER] ([TEAM]) swings in a dangerous cross from the resulting corner kick, but none of his teammates manage to outjump the defence. [TEAM] force a corner. Their opponents will face another attacking threat.",
"visibility": "shown",
"position": "681000"
},
{
"important": false,
"gameTime": "1 - 10:58",
"label": "corner",
"description": "The corner kick from Samir Nasri (Manchester City) is headed out of the penalty area by one of the defenders. Manchester City have been awarded a corner kick.",
"identified": "The corner kick from [PLAYER_jmKOmkPu] ([TEAM_]) is headed out of the penalty area by one of the defenders. [TEAM_] have been awarded a corner kick.",
"anonymized": "The corner kick from [PLAYER] ([TEAM]) is headed out of the penalty area by one of the defenders. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "658000"
},
{
"important": false,
"gameTime": "1 - 10:21",
"label": "",
"description": "Aleksandar Kolarov (Manchester City) tries to send a pass but it's blocked. The ball goes behind for a corner. Manchester City will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_2XhnQxcG] ([TEAM_]) tries to send a pass but it's blocked. The ball goes behind for a corner. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) tries to send a pass but it's blocked. The ball goes behind for a corner. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "621000"
}
]
} |