File size: 64,472 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 |
{
"timestamp": "1482858900",
"score": "4 - 1",
"round": "18",
"teams": [
"Stoke City",
"Liverpool"
],
"lineup": {
"home": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "Eo9X2cTu",
"name": "Clyne N.",
"captain": "",
"detail_link": "/player/clyne-nathaniel/Eo9X2cTu/",
"short_name": "Clyne",
"shirt_number": "2",
"country": "England",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Nathaniel Clyne"
},
{
"hash": "CCNtplZe",
"name": "Firmino R.",
"captain": "",
"detail_link": "/player/firmino-roberto/CCNtplZe/",
"short_name": "Firmino",
"shirt_number": "11",
"country": "Brazil",
"facts": [
{
"type": "3",
"time": "44' Firmino R. (Milner J.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "79'",
"description": "Moreno A.",
"linked_player_hash": "pdBI3oS8"
}
],
"lineup": 11,
"starting": true,
"long_name": "Roberto Firmino"
},
{
"hash": "UFMlUD6r",
"name": "Henderson J.",
"captain": "(C)",
"detail_link": "/player/henderson-jordan/UFMlUD6r/",
"short_name": "Henderson",
"shirt_number": "14",
"country": "England",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Jordan Henderson"
},
{
"hash": "l2KDCxTO",
"name": "Klavan R.",
"captain": "",
"detail_link": "/player/klavan-ragnar/l2KDCxTO/",
"short_name": "Klavan",
"shirt_number": "17",
"country": "Estonia",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Ragnar Klavan"
},
{
"hash": "65ZQWgft",
"name": "Lallana A.",
"captain": "",
"detail_link": "/player/lallana-adam/65ZQWgft/",
"short_name": "Lallana",
"shirt_number": "20",
"country": "England",
"facts": [
{
"type": "3",
"time": "35' Lallana A.",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "69'",
"description": "Can E.",
"linked_player_hash": "YJu3hSpk"
}
],
"lineup": 6,
"starting": true,
"long_name": "Adam Lallana"
},
{
"hash": "GAcQF9Z6",
"name": "Lovren D.",
"captain": "",
"detail_link": "/player/lovren-dejan/GAcQF9Z6/",
"short_name": "Lovren",
"shirt_number": "6",
"country": "Croatia",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Dejan Lovren"
},
{
"hash": "xxskxOU0",
"name": "Mane S.",
"captain": "",
"detail_link": "/player/mane-sadio/xxskxOU0/",
"short_name": "Mane",
"shirt_number": "19",
"country": "Senegal",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Sadio Mane"
},
{
"hash": "YVcnMAp6",
"name": "Mignolet S.",
"captain": "",
"detail_link": "/player/mignolet-simon/YVcnMAp6/",
"short_name": "Mignolet",
"shirt_number": "22",
"country": "Belgium",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Simon Mignolet"
},
{
"hash": "QLY3kAEt",
"name": "Milner J.",
"captain": "",
"detail_link": "/player/milner-james/QLY3kAEt/",
"short_name": "Milner",
"shirt_number": "7",
"country": "England",
"facts": [
{
"type": "8",
"time": "44' Firmino R. (Milner J.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "James Milner"
},
{
"hash": "jeRaNgKg",
"name": "Origi D.",
"captain": "",
"detail_link": "/player/origi-divock/jeRaNgKg/",
"short_name": "Origi",
"shirt_number": "27",
"country": "Belgium",
"facts": [
{
"type": "6",
"time": "70'",
"description": "Sturridge D.",
"linked_player_hash": "fwlDnzTg"
}
],
"lineup": 10,
"starting": true,
"long_name": "Divock Origi"
},
{
"hash": "f9KgUUZu",
"name": "Wijnaldum G.",
"captain": "",
"detail_link": "/player/wijnaldum-georginio/f9KgUUZu/",
"short_name": "Wijnaldum",
"shirt_number": "5",
"country": "Netherlands",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Georginio Wijnaldum"
},
{
"hash": "YJu3hSpk",
"name": "Can E.",
"captain": "",
"detail_link": "/player/can-emre/YJu3hSpk/",
"short_name": "Can",
"shirt_number": "23",
"country": "Germany",
"facts": [
{
"type": "7",
"time": "69'",
"description": "Lallana A.",
"linked_player_hash": "65ZQWgft"
}
],
"lineup": null,
"starting": false,
"long_name": "Emre Can"
},
{
"hash": "EkjYoT1f",
"name": "Ejaria O.",
"captain": "",
"detail_link": "/player/ejaria-oviemuno/EkjYoT1f/",
"short_name": "Ejaria",
"shirt_number": "53",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Oviemuno Ejaria"
},
{
"hash": "MgWRUFHG",
"name": "Karius L.",
"captain": "",
"detail_link": "/player/karius-loris/MgWRUFHG/",
"short_name": "Karius",
"shirt_number": "1",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Loris Karius"
},
{
"hash": "t41Fn0KA",
"name": "Lucas Leiva",
"captain": "",
"detail_link": "/player/lucas-leiva/t41Fn0KA/",
"short_name": "Lucas Leiva",
"shirt_number": "21",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Lucas Leiva"
},
{
"hash": "pdBI3oS8",
"name": "Moreno A.",
"captain": "",
"detail_link": "/player/moreno-alberto/pdBI3oS8/",
"short_name": "Moreno",
"shirt_number": "18",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "79'",
"description": "Firmino R.",
"linked_player_hash": "CCNtplZe"
}
],
"lineup": null,
"starting": false,
"long_name": "Alberto Moreno"
},
{
"hash": "fwlDnzTg",
"name": "Sturridge D.",
"captain": "",
"detail_link": "/player/sturridge-daniel/fwlDnzTg/",
"short_name": "Sturridge",
"shirt_number": "15",
"country": "England",
"facts": [
{
"type": "7",
"time": "70'",
"description": "Origi D.",
"linked_player_hash": "jeRaNgKg"
},
{
"type": "3",
"time": "70' Sturridge D.",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Daniel Sturridge"
},
{
"hash": "GtwTJa8L",
"name": "Woodburn B.",
"captain": "",
"detail_link": "/player/woodburn-benjamin/GtwTJa8L/",
"short_name": "Woodburn",
"shirt_number": "58",
"country": "Wales",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Benjamin Woodburn"
}
],
"coach": [
{
"hash": "x6CvOHH9",
"name": "Klopp J.",
"captain": "",
"detail_link": "/player/klopp-jurgen/x6CvOHH9/",
"short_name": "Klopp J.",
"shirt_number": "",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jurgen Klopp"
}
]
},
"away": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "IeoNr67S",
"name": "Allen J.",
"captain": "",
"detail_link": "/player/allen-joe/IeoNr67S/",
"short_name": "Allen",
"shirt_number": "4",
"country": "Wales",
"facts": [
{
"type": "1",
"time": "36' Allen J. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Joe Allen"
},
{
"hash": "zZnYVvzU",
"name": "Crouch P.",
"captain": "",
"detail_link": "/player/crouch-peter/zZnYVvzU/",
"short_name": "Crouch",
"shirt_number": "25",
"country": "England",
"facts": [
{
"type": "6",
"time": "84'",
"description": "Bony W.",
"linked_player_hash": "INXcXK3r"
}
],
"lineup": 11,
"starting": true,
"long_name": "Peter Crouch"
},
{
"hash": "fJTyEOgR",
"name": "Diouf M.",
"captain": "",
"detail_link": "/player/diouf-mame/fJTyEOgR/",
"short_name": "Diouf",
"shirt_number": "18",
"country": "Senegal",
"facts": [
{
"type": "6",
"time": "75'",
"description": "Afellay I.",
"linked_player_hash": "UTRnmBtF"
}
],
"lineup": 10,
"starting": true,
"long_name": "Mame Diouf"
},
{
"hash": "E5eJOWm2",
"name": "Grant L.",
"captain": "",
"detail_link": "/player/grant-lee/E5eJOWm2/",
"short_name": "Grant",
"shirt_number": "33",
"country": "England",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Lee Grant"
},
{
"hash": "pSWFoErl",
"name": "Imbula G.",
"captain": "",
"detail_link": "/player/imbula-gianelli/pSWFoErl/",
"short_name": "Imbula",
"shirt_number": "21",
"country": "DR Congo",
"facts": [
{
"type": "4",
"time": "60' Imbula G.",
"description": "Own goal",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Giannelli Imbula"
},
{
"hash": "tlTr03sU",
"name": "Johnson G.",
"captain": "",
"detail_link": "/player/johnson-glen/tlTr03sU/",
"short_name": "Johnson",
"shirt_number": "8",
"country": "England",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Glen Johnson"
},
{
"hash": "x4YGK71J",
"name": "Martins Indi B.",
"captain": "",
"detail_link": "/player/martins-indi-bruno/x4YGK71J/",
"short_name": "Martins Indi",
"shirt_number": "15",
"country": "Netherlands",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Bruno Martins Indi"
},
{
"hash": "p21JPDFB",
"name": "Pieters E.",
"captain": "",
"detail_link": "/player/pieters-erik/p21JPDFB/",
"short_name": "Pieters",
"shirt_number": "3",
"country": "Netherlands",
"facts": [
{
"type": "8",
"time": "12' Walters J. (Pieters E.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Erik Pieters"
},
{
"hash": "IV7Rp8FD",
"name": "Shawcross R.",
"captain": "(C)",
"detail_link": "/player/shawcross-ryan/IV7Rp8FD/",
"short_name": "Shawcross",
"shirt_number": "17",
"country": "England",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Ryan Shawcross"
},
{
"hash": "Ak8rKaAI",
"name": "Walters J.",
"captain": "",
"detail_link": "/player/walters-jonathan/Ak8rKaAI/",
"short_name": "Walters",
"shirt_number": "19",
"country": "Ireland",
"facts": [
{
"type": "3",
"time": "12' Walters J. (Pieters E.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Jonathan Walters"
},
{
"hash": "xbemgYNE",
"name": "Whelan G.",
"captain": "",
"detail_link": "/player/whelan-glenn/xbemgYNE/",
"short_name": "Whelan",
"shirt_number": "6",
"country": "Ireland",
"facts": [
{
"type": "6",
"time": "66'",
"description": "Sobhi R.",
"linked_player_hash": "Awmmp4NH"
}
],
"lineup": 6,
"starting": true,
"long_name": "Glenn Whelan"
},
{
"hash": "d6KwHx8i",
"name": "Adam C.",
"captain": "",
"detail_link": "/player/adam-charles/d6KwHx8i/",
"short_name": "Adam",
"shirt_number": "16",
"country": "Scotland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Charles Graham Adam"
},
{
"hash": "UTRnmBtF",
"name": "Afellay I.",
"captain": "",
"detail_link": "/player/afellay-ibrahim/UTRnmBtF/",
"short_name": "Afellay",
"shirt_number": "14",
"country": "Netherlands",
"facts": [
{
"type": "7",
"time": "75'",
"description": "Diouf M.",
"linked_player_hash": "fJTyEOgR"
}
],
"lineup": null,
"starting": false,
"long_name": "Ibrahim Afellay"
},
{
"hash": "INXcXK3r",
"name": "Bony W.",
"captain": "",
"detail_link": "/player/bony-wilfried/INXcXK3r/",
"short_name": "Bony",
"shirt_number": "12",
"country": "Ivory Coast",
"facts": [
{
"type": "7",
"time": "84'",
"description": "Crouch P.",
"linked_player_hash": "zZnYVvzU"
}
],
"lineup": null,
"starting": false,
"long_name": "Wilfried Bony"
},
{
"hash": "UajHha08",
"name": "Given S.",
"captain": "",
"detail_link": "/player/given-shay/UajHha08/",
"short_name": "Given",
"shirt_number": "24",
"country": "Ireland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Shay Given"
},
{
"hash": "SjSWDEbq",
"name": "Krkic B.",
"captain": "",
"detail_link": "/player/krkic-bojan/SjSWDEbq/",
"short_name": "Krkic",
"shirt_number": "27",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Bojan Krkic"
},
{
"hash": "CKcCpcKN",
"name": "Shaqiri X.",
"captain": "",
"detail_link": "/player/shaqiri-xherdan/CKcCpcKN/",
"short_name": "Shaqiri",
"shirt_number": "22",
"country": "Switzerland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Xherdan Shaqiri"
},
{
"hash": "Awmmp4NH",
"name": "Sobhi R.",
"captain": "",
"detail_link": "/player/sobhi-ramadan/Awmmp4NH/",
"short_name": "Sobhi",
"shirt_number": "32",
"country": "Egypt",
"facts": [
{
"type": "7",
"time": "66'",
"description": "Whelan G.",
"linked_player_hash": "xbemgYNE"
}
],
"lineup": null,
"starting": false,
"long_name": "Ramadan Sobhi"
}
],
"coach": [
{
"hash": "hpacrV6s",
"name": "Hughes M",
"captain": "",
"detail_link": "/player/hughes-mark/hpacrV6s/",
"short_name": "Hughes M",
"shirt_number": "",
"country": "Wales",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mark Hughes"
}
]
}
},
"referee": [
"Oliver M."
],
"venue": [
"Anfield (Liverpool)"
],
"attendance": [
"53 094"
],
"referee_matched": [
"Michael Oliver"
],
"referee_found": [
"Michael Oliver"
],
"coach_matched": [
"Jurgen Klopp",
"Jurgen Norbert Klopp"
],
"gameHomeTeam": "Liverpool",
"home": {
"name": "Liverpool",
"detail_link": "/team/liverpool/lId4TMwf",
"hash": "lId4TMwf",
"names": [
"Liverpool",
"Liverpool (Eng)",
"liverpool"
]
},
"gameAwayTeam": "Stoke City",
"away": {
"name": "Stoke City",
"detail_link": "/team/stoke-city/hSUajdSS",
"hash": "hSUajdSS",
"names": [
"Stoke City",
"Stoke",
"stoke city"
]
},
"gameDate": "27/12/2016 - 18:15",
"annotations": [
{
"important": false,
"gameTime": "2 - 47:59",
"label": "",
"description": "All in all that was an entertaining 90 minutes of football thanks to some decent attacking play. The home side dominated today's game. The home team played possession football, while the away team tried to find the weakness in their defence using mainly rapid counter-attacks.",
"identified": "All in all that was an entertaining 90 minutes of football thanks to some decent attacking play. The home side dominated today's game. The home team played possession football, while the away team tried to find the weakness in their defence using mainly rapid counter-attacks.",
"anonymized": "All in all that was an entertaining 90 minutes of football thanks to some decent attacking play. The home side dominated today's game. 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": "2879000"
},
{
"important": true,
"gameTime": "2 - 47:55",
"label": "whistle",
"description": "That's it for today, Michael Oliver has blown his whistle and the game is over.",
"identified": "That's it for today, [REFEREE] has blown his whistle and the game is over.",
"anonymized": "That's it for today, [REFEREE] has blown his whistle and the game is over.",
"visibility": "shown",
"position": "2875000"
},
{
"important": false,
"gameTime": "2 - 47:06",
"label": "corner",
"description": "James Milner (Liverpool) decides to take a short corner instead of crossing into the box.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) decides to take a short corner instead of crossing into the box.",
"anonymized": "[PLAYER] ([TEAM]) decides to take a short corner instead of crossing into the box.",
"visibility": "shown",
"position": "2826000"
},
{
"important": false,
"gameTime": "2 - 46:57",
"label": "",
"description": "James Milner (Liverpool) attempts to find one of his teammates with a sweet pass into the box, but one of the defending players reacts well and intercepts the effort. Liverpool have been awarded a corner kick.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) attempts to find one of his teammates with a sweet pass into the box, but one of the defending players reacts well and intercepts the effort. [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find one of his teammates with a sweet pass into the box, but one of the defending players reacts well and intercepts the effort. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "2817000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"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 - 41:18",
"label": "",
"description": "Stoke are showcasing great team work and neat passing moves.",
"identified": "[TEAM_hSUajdSS] are showcasing great team work and neat passing moves.",
"anonymized": "[TEAM] are showcasing great team work and neat passing moves.",
"visibility": "shown",
"position": "2478000"
},
{
"important": true,
"gameTime": "2 - 38:36",
"label": "substitution",
"description": "Substitution. Wilfried Bony (Stoke City) on for Peter Crouch.",
"identified": "Substitution. [PLAYER_INXcXK3r] ([TEAM_]) on for [PLAYER_zZnYVvzU].",
"anonymized": "Substitution. [PLAYER] ([TEAM]) on for [PLAYER].",
"visibility": "shown",
"position": "2316000"
},
{
"important": false,
"gameTime": "2 - 37:48",
"label": "corner",
"description": "The corner from James Milner (Liverpool) is intercepted by the defence.",
"identified": "The corner from [PLAYER_QLY3kAEt] ([TEAM_]) is intercepted by the defence.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is intercepted by the defence.",
"visibility": "shown",
"position": "2268000"
},
{
"important": true,
"gameTime": "2 - 37:34",
"label": "",
"description": "What a goal-scoring opportunity! Alberto Moreno (Liverpool) finds some space inside the box and gets in a strike, but the shot is brilliantly blocked by one of the defending players sliding in. The referee points to the corner flag and Liverpool will take a corner.",
"identified": "What a goal-scoring opportunity! [PLAYER_pdBI3oS8] ([TEAM_]) finds some space inside the box and gets in a strike, but the shot is brilliantly blocked by one of the defending players sliding in. The referee points to the corner flag and [TEAM_] will take a corner.",
"anonymized": "What a goal-scoring opportunity! [PLAYER] ([TEAM]) finds some space inside the box and gets in a strike, but the shot is brilliantly blocked by one of the defending players sliding in. The referee points to the corner flag and [TEAM] will take a corner.",
"visibility": "shown",
"position": "2254000"
},
{
"important": false,
"gameTime": "2 - 36:44",
"label": "attendance",
"description": "The attendance is 53094.",
"identified": "The attendance is 53094.",
"anonymized": "The attendance is 53094.",
"visibility": "shown",
"position": "2204000"
},
{
"important": true,
"gameTime": "2 - 33:16",
"label": "substitution",
"description": "Here is a change. Roberto Firmino is going off and Jurgen Norbert Klopp gives the last tactical orders to Alberto Moreno (Liverpool).",
"identified": "Here is a change. [PLAYER_CCNtplZe] is going off and [COACH_x6CvOHH9] gives the last tactical orders to [PLAYER_pdBI3oS8] ([TEAM_]).",
"anonymized": "Here is a change. [PLAYER] is going off and [COACH] gives the last tactical orders to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1996000"
},
{
"important": true,
"gameTime": "2 - 32:44",
"label": "",
"description": "Ibrahim Afellay (Stoke City) collects a pass and has an effort from 25 metres out, but it flies just over the crossbar.",
"identified": "[PLAYER_UTRnmBtF] ([TEAM_]) collects a pass and has an effort from 25 metres out, but it flies just over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) collects a pass and has an effort from 25 metres out, but it flies just over the crossbar.",
"visibility": "shown",
"position": "1964000"
},
{
"important": true,
"gameTime": "2 - 29:38",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Ibrahim Afellay (Stoke City) comes onto the pitch for Mame Diouf.",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_UTRnmBtF] ([TEAM_]) comes onto the pitch for [PLAYER_fJTyEOgR].",
"anonymized": "The referee stops play so that a substitution can be made and [PLAYER] ([TEAM]) comes onto the pitch for [PLAYER].",
"visibility": "shown",
"position": "1778000"
},
{
"important": false,
"gameTime": "2 - 28:23",
"label": "corner",
"description": "James Milner (Liverpool) decides to speed play up with a short corner kick.",
"identified": "[PLAYER_QLY3kAEt] ([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": "1703000"
},
{
"important": false,
"gameTime": "2 - 28:12",
"label": "",
"description": "Daniel Sturridge (Liverpool) plays a dangerous chip pass into the box in an attempt to set up one of his teammates, but the effort is intercepted by one of the defenders. The referee points to the corner flag. It's a corner to Liverpool.",
"identified": "[PLAYER_fwlDnzTg] ([TEAM_]) plays a dangerous chip pass into the box in an attempt to set up one of his teammates, but the effort is intercepted by one of the defenders. The referee points to the corner flag. It's a corner to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) plays a dangerous chip pass into the box in an attempt to set up one of his teammates, but the effort is intercepted by one of the defenders. The referee points to the corner flag. It's a corner to [TEAM].",
"visibility": "shown",
"position": "1692000"
},
{
"important": true,
"gameTime": "2 - 24:25",
"label": "soccer-ball",
"description": "Goal! It's a catastrophic error from the opponent which has gifted a chance to Daniel Sturridge (Liverpool), who rolls the ball into the back of the net from close range. 4:1.",
"identified": "Goal! It's a catastrophic error from the opponent which has gifted a chance to [PLAYER_fwlDnzTg] ([TEAM_]), who rolls the ball into the back of the net from close range. 4:1.",
"anonymized": "Goal! It's a catastrophic error from the opponent which has gifted a chance to [PLAYER] ([TEAM]), who rolls the ball into the back of the net from close range. 4:1.",
"visibility": "shown",
"position": "1465000"
},
{
"important": true,
"gameTime": "2 - 24:24",
"label": "substitution",
"description": "Substitution. Daniel Sturridge (Liverpool) replaces Divock Origi.",
"identified": "Substitution. [PLAYER_fwlDnzTg] ([TEAM_]) replaces [PLAYER_jeRaNgKg].",
"anonymized": "Substitution. [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "1464000"
},
{
"important": true,
"gameTime": "2 - 23:49",
"label": "substitution",
"description": "Jurgen Klopp has decided to substitute Adam Lallana and he is replaced by Emre Can (Liverpool).",
"identified": "[COACH_x6CvOHH9] has decided to substitute [PLAYER_65ZQWgft] and he is replaced by [PLAYER_YJu3hSpk] ([TEAM_]).",
"anonymized": "[COACH] has decided to substitute [PLAYER] and he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1429000"
},
{
"important": true,
"gameTime": "2 - 20:17",
"label": "substitution",
"description": "We are about to witness a substitution. Ramadan Sobhi (Stoke City) is replacing Glenn Whelan.",
"identified": "We are about to witness a substitution. [PLAYER_Awmmp4NH] ([TEAM_]) is replacing [PLAYER_xbemgYNE].",
"anonymized": "We are about to witness a substitution. [PLAYER] ([TEAM]) is replacing [PLAYER].",
"visibility": "shown",
"position": "1217000"
},
{
"important": false,
"gameTime": "2 - 19:46",
"label": "",
"description": "Liverpool 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": "1186000"
},
{
"important": false,
"gameTime": "2 - 16:19",
"label": "corner",
"description": "James Milner (Liverpool) takes the corner with a short pass.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) takes the corner with a short pass.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner with a short pass.",
"visibility": "shown",
"position": "979000"
},
{
"important": false,
"gameTime": "2 - 15:28",
"label": "",
"description": "Sadio Mane (Liverpool) misses a good chance to score. An inch-perfect cross into the box finds Sadio Mane (Liverpool) who rises for a header, but sends the ball well over the bar. The ball is out of play. Liverpool win a corner kick.",
"identified": "[PLAYER_xxskxOU0] ([TEAM_]) misses a good chance to score. An inch-perfect cross into the box finds [PLAYER_xxskxOU0] ([TEAM_]) who rises for a header, but sends the ball well over the bar. The ball is out of play. [TEAM_] win a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) misses a good chance to score. An inch-perfect cross into the box finds [PLAYER] ([TEAM]) who rises for a header, but sends the ball well over the bar. The ball is out of play. [TEAM] win a corner kick.",
"visibility": "shown",
"position": "928000"
},
{
"important": true,
"gameTime": "2 - 13:47",
"label": "soccer-ball-own",
"description": "Own goal! Giannelli Imbula (Stoke City) suffers a good deal of misfortune as he accidentally puts a pass from one of the attacking players into his own net. The score is 3:1.",
"identified": "Own goal! [PLAYER_pSWFoErl] ([TEAM_]) suffers a good deal of misfortune as he accidentally puts a pass from one of the attacking players into his own net. The score is 3:1.",
"anonymized": "Own goal! [PLAYER] ([TEAM]) suffers a good deal of misfortune as he accidentally puts a pass from one of the attacking players into his own net. The score is 3:1.",
"visibility": "shown",
"position": "827000"
},
{
"important": false,
"gameTime": "2 - 11:33",
"label": "corner",
"description": "James Milner (Liverpool) takes a short corner kick.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) takes a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) takes a short corner kick.",
"visibility": "shown",
"position": "693000"
},
{
"important": false,
"gameTime": "2 - 11:19",
"label": "",
"description": "Adam Lallana (Liverpool) unleashes a bullet of a shot that is blocked by a defender. The ball goes out for a corner. Liverpool can continue in their attacking effort.",
"identified": "[PLAYER_65ZQWgft] ([TEAM_]) unleashes a bullet of a shot that is blocked by a defender. The ball goes out for a corner. [TEAM_] can continue in their attacking effort.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a bullet of a shot that is blocked by a defender. The ball goes out for a corner. [TEAM] can continue in their attacking effort.",
"visibility": "shown",
"position": "679000"
},
{
"important": false,
"gameTime": "2 - 09:03",
"label": "corner",
"description": "The corner from Joe Allen (Stoke City) is cleared away by the defence.",
"identified": "The corner from [PLAYER_IeoNr67S] ([TEAM_]) is cleared away by the defence.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is cleared away by the defence.",
"visibility": "shown",
"position": "543000"
},
{
"important": false,
"gameTime": "2 - 08:53",
"label": "",
"description": "Mame Diouf (Stoke City) sends a pass into the box, but the opposition's defence is alert to the danger and makes a clearance. Stoke force a corner. Their opponents will face another attacking threat.",
"identified": "[PLAYER_fJTyEOgR] ([TEAM_]) sends a pass into the box, but the opposition's defence is alert to the danger and makes a clearance. [TEAM_hSUajdSS] force a corner. Their opponents will face another attacking threat.",
"anonymized": "[PLAYER] ([TEAM]) sends a pass into the box, but the opposition's defence is alert to the danger and makes a clearance. [TEAM] force a corner. Their opponents will face another attacking threat.",
"visibility": "shown",
"position": "533000"
},
{
"important": false,
"gameTime": "2 - 07:01",
"label": "",
"description": "Giannelli Imbula (Stoke City) plays in a hopeful cross, but it doesn't find its way to any of the attacking players.",
"identified": "[PLAYER_pSWFoErl] ([TEAM_]) plays in a hopeful cross, but it doesn't find its way to any of the attacking players.",
"anonymized": "[PLAYER] ([TEAM]) plays in a hopeful cross, but it doesn't find its way to any of the attacking players.",
"visibility": "shown",
"position": "421000"
},
{
"important": true,
"gameTime": "2 - 04:32",
"label": "",
"description": "What a big chance! James Milner (Liverpool) picks up an inch-perfect pass inside the box and misses the net well wide of the right post.",
"identified": "What a big chance! [PLAYER_QLY3kAEt] ([TEAM_]) picks up an inch-perfect pass inside the box and misses the net well wide of the right post.",
"anonymized": "What a big chance! [PLAYER] ([TEAM]) picks up an inch-perfect pass inside the box and misses the net well wide of the right post.",
"visibility": "shown",
"position": "272000"
},
{
"important": true,
"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 - 47:59",
"label": "",
"description": "There has been no time for the supporters to get bored during an eventful opening 45 minutes. Both teams provided some breathtaking moments. The hosts dominated much of the first period. The home side have dominated the possession and midfield so far. The visitors have spent most of their time defending and waiting for the right moment to launch counter-attacks.",
"identified": "There has been no time for the supporters to get bored during an eventful opening 45 minutes. Both teams provided some breathtaking moments. The hosts dominated much of the first period. The home side have dominated the possession and midfield so far. The visitors have spent most of their time defending and waiting for the right moment to launch counter-attacks.",
"anonymized": "There has been no time for the supporters to get bored during an eventful opening 45 minutes. Both teams provided some breathtaking moments. The hosts dominated much of the first period. The home side have dominated the possession and midfield so far. The visitors have spent most of their time defending and waiting for the right moment to launch counter-attacks.",
"visibility": "shown",
"position": "2879000"
},
{
"important": true,
"gameTime": "1 - 47:55",
"label": "whistle",
"description": "The referee blows his whistle to end the first half and the players are now heading to their respective dressing rooms.",
"identified": "The referee blows his whistle to end the first half and the players are now heading to their respective dressing rooms.",
"anonymized": "The referee blows his whistle to end the first half and the players are now heading to their respective dressing rooms.",
"visibility": "shown",
"position": "2875000"
},
{
"important": true,
"gameTime": "1 - 46:40",
"label": "",
"description": "What a big chance! Sadio Mane (Liverpool) picks up an inch-perfect pass inside the box and fires the ball a whisker wide of the right post.",
"identified": "What a big chance! [PLAYER_xxskxOU0] ([TEAM_]) picks up an inch-perfect pass inside the box and fires the ball a whisker wide of the right post.",
"anonymized": "What a big chance! [PLAYER] ([TEAM]) picks up an inch-perfect pass inside the box and fires the ball a whisker wide of the right post.",
"visibility": "shown",
"position": "2800000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "3 min. of stoppage-time to be played.",
"identified": "3 min. of stoppage-time to be played.",
"anonymized": "3 min. of stoppage-time to be played.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "1 - 43:44",
"label": "soccer-ball",
"description": "James Milner passes the ball into the penalty area. Roberto Firmino (Liverpool) collects it and quickly sends it into the right side of the goal via the post! The goalkeeper was helpless. 2:1!",
"identified": "[PLAYER_QLY3kAEt] passes the ball into the penalty area. [PLAYER_CCNtplZe] ([TEAM_]) collects it and quickly sends it into the right side of the goal via the post! The goalkeeper was helpless. 2:1!",
"anonymized": "[PLAYER] passes the ball into the penalty area. [PLAYER] ([TEAM]) collects it and quickly sends it into the right side of the goal via the post! The goalkeeper was helpless. 2:1!",
"visibility": "shown",
"position": "2624000"
},
{
"important": false,
"gameTime": "1 - 42:30",
"label": "funfact",
"description": "We can have a look at the statistics now, particularly the total attempts \u2013 21:6.",
"identified": "We can have a look at the statistics now, particularly the total attempts \u2013 21:6.",
"anonymized": "We can have a look at the statistics now, particularly the total attempts \u2013 21:6.",
"visibility": "shown",
"position": "2550000"
},
{
"important": false,
"gameTime": "1 - 39:08",
"label": "",
"description": "James Milner (Liverpool) sends a teasing cross into the area, but Lee Grant intercepts the ball.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) sends a teasing cross into the area, but [PLAYER_E5eJOWm2] intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a teasing cross into the area, but [PLAYER] intercepts the ball.",
"visibility": "shown",
"position": "2348000"
},
{
"important": true,
"gameTime": "1 - 37:24",
"label": "",
"description": "Roberto Firmino (Liverpool) is afforded space inside the box after collecting a pass, but the chance is wasted as his shot goes harmlessly over the crossbar.",
"identified": "[PLAYER_CCNtplZe] ([TEAM_]) is afforded space inside the box after collecting a pass, but the chance is wasted as his shot goes harmlessly over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) is afforded space inside the box after collecting a pass, but the chance is wasted as his shot goes harmlessly over the crossbar.",
"visibility": "shown",
"position": "2244000"
},
{
"important": true,
"gameTime": "1 - 35:43",
"label": "y-card",
"description": "Michael Oliver shows a yellow card to Joe Allen (Stoke City) for a tough tackle.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_IeoNr67S] ([TEAM_]) for a tough tackle.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for a tough tackle.",
"visibility": "shown",
"position": "2143000"
},
{
"important": true,
"gameTime": "1 - 33:59",
"label": "soccer-ball",
"description": "Goal! The rebound fell to Adam Lallana (Liverpool) and he fired home from close range. The score is 1:1.",
"identified": "Goal! The rebound fell to [PLAYER_65ZQWgft] ([TEAM_]) and he fired home from close range. The score is 1:1.",
"anonymized": "Goal! The rebound fell to [PLAYER] ([TEAM]) and he fired home from close range. The score is 1:1.",
"visibility": "shown",
"position": "2039000"
},
{
"important": true,
"gameTime": "1 - 33:58",
"label": "",
"description": "Sadio Mane (Liverpool) tries to send a low pass into the box, but it's blocked and cleared.",
"identified": "[PLAYER_xxskxOU0] ([TEAM_]) tries to send a low pass into the box, but it's blocked and cleared.",
"anonymized": "[PLAYER] ([TEAM]) tries to send a low pass into the box, but it's blocked and cleared.",
"visibility": "shown",
"position": "2038000"
},
{
"important": false,
"gameTime": "1 - 32:10",
"label": "",
"description": "The ball is cleared after Sadio Mane (Liverpool) attempted to dribble past an opposing player.",
"identified": "The ball is cleared after [PLAYER_xxskxOU0] ([TEAM_]) attempted to dribble past an opposing player.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player.",
"visibility": "shown",
"position": "1930000"
},
{
"important": false,
"gameTime": "1 - 29:42",
"label": "",
"description": "Erik Pieters (Stoke City) 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_p21JPDFB] ([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": "1782000"
},
{
"important": false,
"gameTime": "1 - 26:39",
"label": "",
"description": "The linesman signals that Jonathan Walters (Stoke City) is offside and the referee confirms the decision.",
"identified": "The linesman signals that [PLAYER_Ak8rKaAI] ([TEAM_]) is offside and the referee confirms the decision.",
"anonymized": "The linesman signals that [PLAYER] ([TEAM]) is offside and the referee confirms the decision.",
"visibility": "shown",
"position": "1599000"
},
{
"important": false,
"gameTime": "1 - 26:03",
"label": "",
"description": "Mame Diouf (Stoke City) hasn't suffered any serious injury which would see him leave the pitch. He's back in the game now.",
"identified": "[PLAYER_fJTyEOgR] ([TEAM_]) hasn't suffered any serious injury which would see him leave the pitch. He's back in the game now.",
"anonymized": "[PLAYER] ([TEAM]) hasn't suffered any serious injury which would see him leave the pitch. He's back in the game now.",
"visibility": "shown",
"position": "1563000"
},
{
"important": false,
"gameTime": "1 - 24:11",
"label": "injury",
"description": "Mame Diouf (Stoke City) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"identified": "[PLAYER_fJTyEOgR] ([TEAM_]) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"anonymized": "[PLAYER] ([TEAM]) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"visibility": "shown",
"position": "1451000"
},
{
"important": false,
"gameTime": "1 - 23:42",
"label": "corner",
"description": "This corner kick is taken with a short pass by James Milner (Liverpool).",
"identified": "This corner kick is taken with a short pass by [PLAYER_QLY3kAEt] ([TEAM_]).",
"anonymized": "This corner kick is taken with a short pass by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1422000"
},
{
"important": true,
"gameTime": "1 - 23:25",
"label": "",
"description": "Roberto Firmino (Liverpool) has a shot blocked from inside the box. Liverpool will take a corner kick.",
"identified": "[PLAYER_CCNtplZe] ([TEAM_]) has a shot blocked from inside the box. [TEAM_] will take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) has a shot blocked from inside the box. [TEAM] will take a corner kick.",
"visibility": "shown",
"position": "1405000"
},
{
"important": false,
"gameTime": "1 - 22:47",
"label": "corner",
"description": "James Milner (Liverpool) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"anonymized": "[PLAYER] ([TEAM]) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"visibility": "shown",
"position": "1367000"
},
{
"important": false,
"gameTime": "1 - 22:38",
"label": "",
"description": "Adam Lallana (Liverpool) finds himself free inside the box and pulls the trigger, but his effort is brilliantly stopped by one of the defending players. The referee signals a corner kick to Liverpool.",
"identified": "[PLAYER_65ZQWgft] ([TEAM_]) finds himself free inside the box and pulls the trigger, but his effort is brilliantly stopped by one of the defending players. The referee signals a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) finds himself free inside the box and pulls the trigger, but his effort is brilliantly stopped by one of the defending players. The referee signals a corner kick to [TEAM].",
"visibility": "shown",
"position": "1358000"
},
{
"important": true,
"gameTime": "1 - 19:20",
"label": "",
"description": "Giannelli Imbula (Stoke City) is first to the rebound but his shot is blocked. Wow, what an escape there for the opposition.",
"identified": "[PLAYER_pSWFoErl] ([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": "1160000"
},
{
"important": true,
"gameTime": "1 - 18:12",
"label": "",
"description": "Joe Allen (Stoke City) takes the ball, nicely zig-zags through the defence, but his low drive to the middle of the goal is smartly dealt with by Simon Mignolet.",
"identified": "[PLAYER_IeoNr67S] ([TEAM_]) takes the ball, nicely zig-zags through the defence, but his low drive to the middle of the goal is smartly dealt with by [PLAYER_YVcnMAp6].",
"anonymized": "[PLAYER] ([TEAM]) takes the ball, nicely zig-zags through the defence, but his low drive to the middle of the goal is smartly dealt with by [PLAYER].",
"visibility": "shown",
"position": "1092000"
},
{
"important": false,
"gameTime": "1 - 16:58",
"label": "corner",
"description": "The resulting corner from Joe Allen (Stoke City) only finds one of the defenders, who heads it out of danger.",
"identified": "The resulting corner from [PLAYER_IeoNr67S] ([TEAM_]) only finds one of the defenders, who heads it out of danger.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) only finds one of the defenders, who heads it out of danger.",
"visibility": "shown",
"position": "1018000"
},
{
"important": false,
"gameTime": "1 - 16:46",
"label": "",
"description": "Giannelli Imbula (Stoke City) sends a cross into the box, but the opposition's defence quickly intercepts the ball. Stoke get a corner.",
"identified": "[PLAYER_pSWFoErl] ([TEAM_]) sends a cross into the box, but the opposition's defence quickly intercepts the ball. [TEAM_hSUajdSS] get a corner.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence quickly intercepts the ball. [TEAM] get a corner.",
"visibility": "shown",
"position": "1006000"
},
{
"important": false,
"gameTime": "1 - 16:33",
"label": "",
"description": "Ragnar Klavan (Liverpool) has picked up a minor injury, but it looks like he will be able to continue.",
"identified": "[PLAYER_l2KDCxTO] ([TEAM_]) has picked up a minor injury, but it looks like he will be able to continue.",
"anonymized": "[PLAYER] ([TEAM]) has picked up a minor injury, but it looks like he will be able to continue.",
"visibility": "shown",
"position": "993000"
},
{
"important": false,
"gameTime": "1 - 14:06",
"label": "",
"description": "James Milner (Liverpool) unleashes a shot from 23 metres out but is unable to find the target and it goes high over the crossbar.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) unleashes a shot from 23 metres out but is unable to find the target and it goes high over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a shot from 23 metres out but is unable to find the target and it goes high over the crossbar.",
"visibility": "shown",
"position": "846000"
},
{
"important": false,
"gameTime": "1 - 12:50",
"label": "injury",
"description": "Looks like Ragnar Klavan (Liverpool) is struggling after picking up a knock. Hopefully he can run it off.",
"identified": "Looks like [PLAYER_l2KDCxTO] ([TEAM_]) is struggling after picking up a knock. Hopefully he can run it off.",
"anonymized": "Looks like [PLAYER] ([TEAM]) is struggling after picking up a knock. Hopefully he can run it off.",
"visibility": "shown",
"position": "770000"
},
{
"important": true,
"gameTime": "1 - 11:55",
"label": "soccer-ball",
"description": "Erik Pieters produces a beautiful lofted cross into the box, where Jonathan Walters (Stoke City) rises high to head the ball into the left side of the goal and beyond the goalkeeper. He makes it 0:1.",
"identified": "[PLAYER_p21JPDFB] produces a beautiful lofted cross into the box, where [PLAYER_Ak8rKaAI] ([TEAM_]) rises high to head the ball into the left side of the goal and beyond the goalkeeper. He makes it 0:1.",
"anonymized": "[PLAYER] produces a beautiful lofted cross into the box, where [PLAYER] ([TEAM]) rises high to head the ball into the left side of the goal and beyond the goalkeeper. He makes it 0:1.",
"visibility": "shown",
"position": "715000"
},
{
"important": false,
"gameTime": "1 - 11:50",
"label": "",
"description": "One of the defenders is in the right place at the right time and makes a vital stop to deny a close-range header from Peter Crouch (Stoke City).",
"identified": "One of the defenders is in the right place at the right time and makes a vital stop to deny a close-range header from [PLAYER_zZnYVvzU] ([TEAM_]).",
"anonymized": "One of the defenders is in the right place at the right time and makes a vital stop to deny a close-range header from [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "710000"
}
]
} |