File size: 74,014 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 |
{
"timestamp": "1475321400",
"score": "1 - 2",
"round": "7",
"teams": [
"Swansea",
"Liverpool"
],
"lineup": {
"home": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "2Jwz26pn",
"name": "Amat J.",
"captain": "",
"detail_link": "/player/amat-jordi/2Jwz26pn/",
"short_name": "Amat",
"shirt_number": "2",
"country": "Indonesia",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Jordi Amat"
},
{
"hash": "jVMqoxah",
"name": "Baston B.",
"captain": "",
"detail_link": "/player/baston-borja/jVMqoxah/",
"short_name": "Baston",
"shirt_number": "10",
"country": "Spain",
"facts": [
{
"type": "8",
"time": "8' Fer L. (Baston B.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Borja Baston"
},
{
"hash": "WUDWNs32",
"name": "Britton L.",
"captain": "(C)",
"detail_link": "/player/britton-leon/WUDWNs32/",
"short_name": "Britton",
"shirt_number": "7",
"country": "England",
"facts": [
{
"type": "1",
"time": "53' Britton L. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "63'",
"description": "Ki Sung-Yueng",
"linked_player_hash": "lvIuQ5nP"
}
],
"lineup": 7,
"starting": true,
"long_name": "Leon Britton"
},
{
"hash": "tnl7ejng",
"name": "Cork J.",
"captain": "",
"detail_link": "/player/cork-jack/tnl7ejng/",
"short_name": "Cork",
"shirt_number": "24",
"country": "England",
"facts": [
{
"type": "1",
"time": "38' Cork J. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Jack Cork"
},
{
"hash": "bRKKNZwj",
"name": "Fabianski L.",
"captain": "",
"detail_link": "/player/fabianski-lukasz/bRKKNZwj/",
"short_name": "Fabianski",
"shirt_number": "1",
"country": "Poland",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Lukasz Fabianski"
},
{
"hash": "URC6RSJb",
"name": "Fer L.",
"captain": "",
"detail_link": "/player/fer-leroy/URC6RSJb/",
"short_name": "Fer",
"shirt_number": "8",
"country": "Netherlands",
"facts": [
{
"type": "3",
"time": "8' Fer L. (Baston B.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "72'",
"description": "Fulton J.",
"linked_player_hash": "l0Uhl5TF"
}
],
"lineup": 6,
"starting": true,
"long_name": "Leroy Fer"
},
{
"hash": "UNKNumiC",
"name": "Naughton K.",
"captain": "",
"detail_link": "/player/naughton-kyle/UNKNumiC/",
"short_name": "Naughton",
"shirt_number": "26",
"country": "England",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Kyle Naughton"
},
{
"hash": "OW25Qv2E",
"name": "Rangel A.",
"captain": "",
"detail_link": "/player/rangel-angel/OW25Qv2E/",
"short_name": "Rangel",
"shirt_number": "22",
"country": "Spain",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Angel Rangel"
},
{
"hash": "WhxKEDEE",
"name": "Routledge W.",
"captain": "",
"detail_link": "/player/routledge-wayne/WhxKEDEE/",
"short_name": "Routledge",
"shirt_number": "15",
"country": "England",
"facts": [
{
"type": "6",
"time": "62'",
"description": "Barrow M.",
"linked_player_hash": "p8gXHqnA"
}
],
"lineup": 9,
"starting": true,
"long_name": "Wayne Routledge"
},
{
"hash": "C2SeP04b",
"name": "Sigurdsson G.",
"captain": "",
"detail_link": "/player/sigurdsson-gylfi/C2SeP04b/",
"short_name": "Sigurdsson",
"shirt_number": "23",
"country": "Iceland",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Gylfi Sigurdsson"
},
{
"hash": "02NrrSBg",
"name": "van der Hoorn M.",
"captain": "",
"detail_link": "/player/van-der-hoorn-mike/02NrrSBg/",
"short_name": "van der Hoorn",
"shirt_number": "5",
"country": "Netherlands",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Mike van der Hoorn"
},
{
"hash": "p8gXHqnA",
"name": "Barrow M.",
"captain": "",
"detail_link": "/player/barrow-modou/p8gXHqnA/",
"short_name": "Barrow",
"shirt_number": "17",
"country": "Gambia",
"facts": [
{
"type": "7",
"time": "62'",
"description": "Routledge W.",
"linked_player_hash": "WhxKEDEE"
}
],
"lineup": null,
"starting": false,
"long_name": "Modou Barrow"
},
{
"hash": "l0Uhl5TF",
"name": "Fulton J.",
"captain": "",
"detail_link": "/player/fulton-jay/l0Uhl5TF/",
"short_name": "Fulton",
"shirt_number": "56",
"country": "Scotland",
"facts": [
{
"type": "7",
"time": "72'",
"description": "Fer L.",
"linked_player_hash": "URC6RSJb"
}
],
"lineup": null,
"starting": false,
"long_name": "Jay Fulton"
},
{
"hash": "lvIuQ5nP",
"name": "Ki Sung-Yueng",
"captain": "",
"detail_link": "/player/ki-sung-yong/lvIuQ5nP/",
"short_name": "Ki",
"shirt_number": "4",
"country": "South Korea",
"facts": [
{
"type": "7",
"time": "63'",
"description": "Britton L.",
"linked_player_hash": "WUDWNs32"
}
],
"lineup": null,
"starting": false,
"long_name": "Sung-Yueng Ki"
},
{
"hash": "E3XUcGGG",
"name": "Mawson A.",
"captain": "",
"detail_link": "/player/mawson-alfie/E3XUcGGG/",
"short_name": "Mawson",
"shirt_number": "6",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alfie Mawson"
},
{
"hash": "rNFSg6i4",
"name": "McBurnie O.",
"captain": "",
"detail_link": "/player/mcburnie-oliver/rNFSg6i4/",
"short_name": "McBurnie",
"shirt_number": "62",
"country": "Scotland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Oliver McBurnie"
},
{
"hash": "zidYDVKR",
"name": "Nordfeldt K.",
"captain": "",
"detail_link": "/player/nordfeldt-kristoffer/zidYDVKR/",
"short_name": "Nordfeldt",
"shirt_number": "13",
"country": "Sweden",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Kristoffer Nordfeldt"
},
{
"hash": "Kl5eRahS",
"name": "Taylor N.",
"captain": "",
"detail_link": "/player/taylor-neil/Kl5eRahS/",
"short_name": "Taylor",
"shirt_number": "3",
"country": "Wales",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Neil Taylor"
}
],
"coach": [
{
"hash": "04gs1Ylg",
"name": "Guidolin F.",
"captain": "",
"detail_link": "/player/guidolin-francesco/04gs1Ylg/",
"short_name": "Guidolin F.",
"shirt_number": "",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Francesco Guidolin"
}
]
},
"away": {
"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": "QP6r8H7O",
"name": "Coutinho",
"captain": "",
"detail_link": "/player/coutinho/QP6r8H7O/",
"short_name": "Coutinho",
"shirt_number": "10",
"country": "Brazil",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Philippe Coutinho"
},
{
"hash": "CCNtplZe",
"name": "Firmino R.",
"captain": "",
"detail_link": "/player/firmino-roberto/CCNtplZe/",
"short_name": "Firmino",
"shirt_number": "11",
"country": "Brazil",
"facts": [
{
"type": "3",
"time": "54' Firmino R. (Henderson J.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "85'",
"description": "Origi D.",
"linked_player_hash": "jeRaNgKg"
}
],
"lineup": 10,
"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": [
{
"type": "1",
"time": "25' Henderson J. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "8",
"time": "54' Firmino R. (Henderson J.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Jordan Henderson"
},
{
"hash": "MgWRUFHG",
"name": "Karius L.",
"captain": "",
"detail_link": "/player/karius-loris/MgWRUFHG/",
"short_name": "Karius",
"shirt_number": "1",
"country": "Germany",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Loris Karius"
},
{
"hash": "65ZQWgft",
"name": "Lallana A.",
"captain": "",
"detail_link": "/player/lallana-adam/65ZQWgft/",
"short_name": "Lallana",
"shirt_number": "20",
"country": "England",
"facts": [
{
"type": "6",
"time": "23'",
"description": "Sturridge D.",
"linked_player_hash": "fwlDnzTg"
}
],
"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": "tpHWp8Am",
"name": "Matip J.",
"captain": "",
"detail_link": "/player/matip-joel/tpHWp8Am/",
"short_name": "Matip",
"shirt_number": "32",
"country": "Cameroon",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Joel Matip"
},
{
"hash": "QLY3kAEt",
"name": "Milner J.",
"captain": "",
"detail_link": "/player/milner-james/QLY3kAEt/",
"short_name": "Milner",
"shirt_number": "7",
"country": "England",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "James Milner"
},
{
"hash": "f9KgUUZu",
"name": "Wijnaldum G.",
"captain": "",
"detail_link": "/player/wijnaldum-georginio/f9KgUUZu/",
"short_name": "Wijnaldum",
"shirt_number": "5",
"country": "Netherlands",
"facts": [
{
"type": "6",
"time": "85'",
"description": "Can E.",
"linked_player_hash": "YJu3hSpk"
}
],
"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": "85'",
"description": "Wijnaldum G.",
"linked_player_hash": "f9KgUUZu"
}
],
"lineup": null,
"starting": false,
"long_name": "Emre Can"
},
{
"hash": "l2KDCxTO",
"name": "Klavan R.",
"captain": "",
"detail_link": "/player/klavan-ragnar/l2KDCxTO/",
"short_name": "Klavan",
"shirt_number": "17",
"country": "Estonia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ragnar Klavan"
},
{
"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": "YVcnMAp6",
"name": "Mignolet S.",
"captain": "",
"detail_link": "/player/mignolet-simon/YVcnMAp6/",
"short_name": "Mignolet",
"shirt_number": "22",
"country": "Belgium",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Simon Mignolet"
},
{
"hash": "pdBI3oS8",
"name": "Moreno A.",
"captain": "",
"detail_link": "/player/moreno-alberto/pdBI3oS8/",
"short_name": "Moreno",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alberto Moreno"
},
{
"hash": "jeRaNgKg",
"name": "Origi D.",
"captain": "",
"detail_link": "/player/origi-divock/jeRaNgKg/",
"short_name": "Origi",
"shirt_number": "27",
"country": "Belgium",
"facts": [
{
"type": "7",
"time": "85'",
"description": "Firmino R.",
"linked_player_hash": "CCNtplZe"
}
],
"lineup": null,
"starting": false,
"long_name": "Divock Origi"
},
{
"hash": "fwlDnzTg",
"name": "Sturridge D.",
"captain": "",
"detail_link": "/player/sturridge-daniel/fwlDnzTg/",
"short_name": "Sturridge",
"shirt_number": "15",
"country": "England",
"facts": [
{
"type": "7",
"time": "23'",
"description": "Lallana A.",
"linked_player_hash": "65ZQWgft"
},
{
"type": "1",
"time": "39' Sturridge D. (Diving)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Daniel Sturridge"
}
],
"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"
}
]
}
},
"referee": [
"Oliver M."
],
"venue": [
"Swansea.com Stadium (Swansea)"
],
"attendance": [
"20 862"
],
"referee_matched": [
"Michael Oliver"
],
"referee_found": [
"Michael Oliver"
],
"coach_matched": [
"Francesco Guidolin",
"Jurgen Klopp"
],
"gameHomeTeam": "Swansea",
"home": {
"name": "Swansea",
"detail_link": "/team/swansea/K6xezbY7",
"hash": "K6xezbY7",
"names": [
"Swansea",
"swansea"
]
},
"gameAwayTeam": "Liverpool",
"away": {
"name": "Liverpool",
"detail_link": "/team/liverpool/lId4TMwf",
"hash": "lId4TMwf",
"names": [
"Liverpool",
"Liverpool (Eng)",
"liverpool"
]
},
"gameDate": "01/10/2016 - 13:30",
"annotations": [
{
"important": false,
"gameTime": "2 - 49:59",
"label": "",
"description": "Most of the fans probably aren't overly pleased with the development of the game as it wasn't very exciting. The visiting team was controlling the game most of the time. In terms of strategy, the hosts were waiting for the right moment to win the ball and launch a counter-attack. The visiting side adopted a possession style of football.",
"identified": "Most of the fans probably aren't overly pleased with the development of the game as it wasn't very exciting. The visiting team was controlling the game most of the time. In terms of strategy, the hosts were waiting for the right moment to win the ball and launch a counter-attack. The visiting side adopted a possession style of football.",
"anonymized": "Most of the fans probably aren't overly pleased with the development of the game as it wasn't very exciting. The visiting team was controlling the game most of the time. In terms of strategy, the hosts were waiting for the right moment to win the ball and launch a counter-attack. The visiting side adopted a possession style of football.",
"visibility": "shown",
"position": "2999000"
},
{
"important": true,
"gameTime": "2 - 49:10",
"label": "whistle",
"description": "The referee blows for the end of today's match.",
"identified": "The referee blows for the end of today's match.",
"anonymized": "The referee blows for the end of today's match.",
"visibility": "shown",
"position": "2950000"
},
{
"important": true,
"gameTime": "2 - 48:15",
"label": "",
"description": "Mike van der Hoorn (Swansea) had a good opportunity when he latched on to a cross from the wing, but his strike from the six-yard box wasn't accurate enough and the ball went a few inches wide of the left post.",
"identified": "[PLAYER_02NrrSBg] ([TEAM_]) had a good opportunity when he latched on to a cross from the wing, but his strike from the six-yard box wasn't accurate enough and the ball went a few inches wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) had a good opportunity when he latched on to a cross from the wing, but his strike from the six-yard box wasn't accurate enough and the ball went a few inches wide of the left post.",
"visibility": "shown",
"position": "2895000"
},
{
"important": false,
"gameTime": "2 - 47:52",
"label": "",
"description": "Jay Fulton (Swansea) tries to slide the ball through to a teammate but it's well blocked by a defender.",
"identified": "[PLAYER_l0Uhl5TF] ([TEAM_]) tries to slide the ball through to a teammate but it's well blocked by a defender.",
"anonymized": "[PLAYER] ([TEAM]) tries to slide the ball through to a teammate but it's well blocked by a defender.",
"visibility": "shown",
"position": "2872000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "There will be a minimum of 4 min. of added time.",
"identified": "There will be a minimum of 4 min. of added time.",
"anonymized": "There will be a minimum of 4 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 42:39",
"label": "attendance",
"description": "The attendance is 20862.",
"identified": "The attendance is 20862.",
"anonymized": "The attendance is 20862.",
"visibility": "shown",
"position": "2559000"
},
{
"important": true,
"gameTime": "2 - 39:40",
"label": "substitution",
"description": "Jurgen Klopp has decided to introduce fresh legs, with Divock Origi (Liverpool) replacing Roberto Firmino.",
"identified": "[COACH_x6CvOHH9] has decided to introduce fresh legs, with [PLAYER_jeRaNgKg] ([TEAM_]) replacing [PLAYER_CCNtplZe].",
"anonymized": "[COACH] has decided to introduce fresh legs, with [PLAYER] ([TEAM]) replacing [PLAYER].",
"visibility": "shown",
"position": "2380000"
},
{
"important": true,
"gameTime": "2 - 39:36",
"label": "substitution",
"description": "We are about to witness a subsitution. Emre Can (Liverpool) for Georginio Wijnaldum.",
"identified": "We are about to witness a subsitution. [PLAYER_YJu3hSpk] ([TEAM_]) for [PLAYER_f9KgUUZu].",
"anonymized": "We are about to witness a subsitution. [PLAYER] ([TEAM]) for [PLAYER].",
"visibility": "shown",
"position": "2376000"
},
{
"important": true,
"gameTime": "2 - 38:50",
"label": "soccer-ball",
"description": "James Milner (Liverpool) slams the penalty home into the roof of the net.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) slams the penalty home into the roof of the net.",
"anonymized": "[PLAYER] ([TEAM]) slams the penalty home into the roof of the net.",
"visibility": "shown",
"position": "2330000"
},
{
"important": true,
"gameTime": "2 - 38:20",
"label": "",
"description": "James Milner (Liverpool) is heading towards the penalty spot to take it.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) is heading towards the penalty spot to take it.",
"anonymized": "[PLAYER] ([TEAM]) is heading towards the penalty spot to take it.",
"visibility": "shown",
"position": "2300000"
},
{
"important": true,
"gameTime": "2 - 38:15",
"label": "penalty",
"description": "Michael Oliver blows for a foul after Angel Rangel (Swansea) was too aggressive in the battle for the ball. The referee blows his whistle and awards Liverpool a penalty after chaos inside the box.",
"identified": "[REFEREE] blows for a foul after [PLAYER_OW25Qv2E] ([TEAM_]) was too aggressive in the battle for the ball. The referee blows his whistle and awards [TEAM_] a penalty after chaos inside the box.",
"anonymized": "[REFEREE] blows for a foul after [PLAYER] ([TEAM]) was too aggressive in the battle for the ball. The referee blows his whistle and awards [TEAM] a penalty after chaos inside the box.",
"visibility": "shown",
"position": "2295000"
},
{
"important": false,
"gameTime": "2 - 35:39",
"label": "corner",
"description": "Jordan Henderson (Liverpool) takes the corner kick but the ball only finds the head of an opponent.",
"identified": "[PLAYER_UFMlUD6r] ([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": "2139000"
},
{
"important": false,
"gameTime": "2 - 35:14",
"label": "corner",
"description": "A dangerous looking corner kick from Jordan Henderson (Liverpool) is cleared to safety by the defence. Liverpool force their opponents to concede a corner.",
"identified": "A dangerous looking corner kick from [PLAYER_UFMlUD6r] ([TEAM_]) is cleared to safety by the defence. [TEAM_] force their opponents to concede a corner.",
"anonymized": "A dangerous looking corner kick from [PLAYER] ([TEAM]) is cleared to safety by the defence. [TEAM] force their opponents to concede a corner.",
"visibility": "shown",
"position": "2114000"
},
{
"important": false,
"gameTime": "2 - 34:53",
"label": "",
"description": "Philippe Coutinho (Liverpool) receives a pass and fires a shot in from long range, but it's blocked. The ball is out of play and Liverpool manage to earn a corner.",
"identified": "[PLAYER_QP6r8H7O] ([TEAM_]) receives a pass and fires a shot in from long range, but it's blocked. The ball is out of play and [TEAM_] manage to earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) receives a pass and fires a shot in from long range, but it's blocked. The ball is out of play and [TEAM] manage to earn a corner.",
"visibility": "shown",
"position": "2093000"
},
{
"important": false,
"gameTime": "2 - 31:33",
"label": "corner",
"description": "Gylfi Sigurdsson (Swansea) swings the ball into the box from the corner kick but it's a bit too strong and it goes out of play.",
"identified": "[PLAYER_C2SeP04b] ([TEAM_]) swings the ball into the box from the corner kick but it's a bit too strong and it goes out of play.",
"anonymized": "[PLAYER] ([TEAM]) swings the ball into the box from the corner kick but it's a bit too strong and it goes out of play.",
"visibility": "shown",
"position": "1893000"
},
{
"important": false,
"gameTime": "2 - 31:13",
"label": "",
"description": "Gylfi Sigurdsson (Swansea) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. Now Swansea have a corner.",
"identified": "[PLAYER_C2SeP04b] ([TEAM_]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. Now [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. Now [TEAM] have a corner.",
"visibility": "shown",
"position": "1873000"
},
{
"important": false,
"gameTime": "2 - 29:42",
"label": "corner",
"description": "Gylfi Sigurdsson (Swansea) takes the corner but it's cleared.",
"identified": "[PLAYER_C2SeP04b] ([TEAM_]) takes the corner but it's cleared.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but it's cleared.",
"visibility": "shown",
"position": "1782000"
},
{
"important": false,
"gameTime": "2 - 29:29",
"label": "",
"description": "Modou Barrow (Swansea) sends a cross into the box, but the opposition's defence quickly intercepts the ball. Swansea have been awarded a corner kick.",
"identified": "[PLAYER_p8gXHqnA] ([TEAM_]) sends a cross into the box, but the opposition's defence quickly intercepts the ball. [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence quickly intercepts the ball. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "1769000"
},
{
"important": false,
"gameTime": "2 - 28:28",
"label": "corner",
"description": "The corner kick from James Milner (Liverpool) is headed out of the penalty area by one of the defenders.",
"identified": "The corner kick from [PLAYER_QLY3kAEt] ([TEAM_]) is headed out of the penalty area by one of the defenders.",
"anonymized": "The corner kick from [PLAYER] ([TEAM]) is headed out of the penalty area by one of the defenders.",
"visibility": "shown",
"position": "1708000"
},
{
"important": false,
"gameTime": "2 - 28:14",
"label": "",
"description": "Sadio Mane (Liverpool) crosses into the box from near the side line, but he doesn't connect as he wanted and it's cleared by the well-organized defence. Liverpool win a corner.",
"identified": "[PLAYER_xxskxOU0] ([TEAM_]) crosses into the box from near the side line, but he doesn't connect as he wanted and it's cleared by the well-organized defence. [TEAM_] win a corner.",
"anonymized": "[PLAYER] ([TEAM]) crosses into the box from near the side line, but he doesn't connect as he wanted and it's cleared by the well-organized defence. [TEAM] win a corner.",
"visibility": "shown",
"position": "1694000"
},
{
"important": true,
"gameTime": "2 - 26:29",
"label": "substitution",
"description": "The referee signals that it is time for a substitution and Jay Fulton (Swansea) will replace Leroy Fer.",
"identified": "The referee signals that it is time for a substitution and [PLAYER_l0Uhl5TF] ([TEAM_]) will replace [PLAYER_URC6RSJb].",
"anonymized": "The referee signals that it is time for a substitution and [PLAYER] ([TEAM]) will replace [PLAYER].",
"visibility": "shown",
"position": "1589000"
},
{
"important": false,
"gameTime": "2 - 24:08",
"label": "",
"description": "Daniel Sturridge (Liverpool) timed his run perfectly to connect with the resulting corner kick, but his finish from around the penalty spot was rather poor as it went well wide of the left post.",
"identified": "[PLAYER_fwlDnzTg] ([TEAM_]) timed his run perfectly to connect with the resulting corner kick, but his finish from around the penalty spot was rather poor as it went well wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) timed his run perfectly to connect with the resulting corner kick, but his finish from around the penalty spot was rather poor as it went well wide of the left post.",
"visibility": "shown",
"position": "1448000"
},
{
"important": false,
"gameTime": "2 - 23:39",
"label": "corner",
"description": "Corner kick. Jordan Henderson (Liverpool) is ready to send the ball into the box.",
"identified": "Corner kick. [PLAYER_UFMlUD6r] ([TEAM_]) is ready to send the ball into the box.",
"anonymized": "Corner kick. [PLAYER] ([TEAM]) is ready to send the ball into the box.",
"visibility": "shown",
"position": "1419000"
},
{
"important": false,
"gameTime": "2 - 23:24",
"label": "",
"description": "Sadio Mane (Liverpool) collects a pass inside the box and unleashes a shot which is brilliantly blocked by a defender. The linesman points to the corner flag, Liverpool are going to take it.",
"identified": "[PLAYER_xxskxOU0] ([TEAM_]) collects a pass inside the box and unleashes a shot which is brilliantly blocked by a defender. The linesman points to the corner flag, [TEAM_] are going to take it.",
"anonymized": "[PLAYER] ([TEAM]) collects a pass inside the box and unleashes a shot which is brilliantly blocked by a defender. The linesman points to the corner flag, [TEAM] are going to take it.",
"visibility": "shown",
"position": "1404000"
},
{
"important": false,
"gameTime": "2 - 22:45",
"label": "",
"description": "Nathaniel Clyne (Liverpool) picks up a pass and unleashes a low shot towards goal, but he can't generate enough power to trouble Lukasz Fabianski.",
"identified": "[PLAYER_Eo9X2cTu] ([TEAM_]) picks up a pass and unleashes a low shot towards goal, but he can't generate enough power to trouble [PLAYER_bRKKNZwj].",
"anonymized": "[PLAYER] ([TEAM]) picks up a pass and unleashes a low shot towards goal, but he can't generate enough power to trouble [PLAYER].",
"visibility": "shown",
"position": "1365000"
},
{
"important": false,
"gameTime": "2 - 20:08",
"label": "corner",
"description": "James Milner (Liverpool) takes the resulting corner which is well defended.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) takes the resulting corner which is well defended.",
"anonymized": "[PLAYER] ([TEAM]) takes the resulting corner which is well defended.",
"visibility": "shown",
"position": "1208000"
},
{
"important": false,
"gameTime": "2 - 19:42",
"label": "",
"description": "Philippe Coutinho (Liverpool) sends a pass into the box, but his attempt is thwarted and cleared. The referee points to the corner flag. It's a corner to Liverpool.",
"identified": "[PLAYER_QP6r8H7O] ([TEAM_]) sends a pass into the box, but his attempt is thwarted and cleared. The referee points to the corner flag. It's a corner to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) sends a pass into the box, but his attempt is thwarted and cleared. The referee points to the corner flag. It's a corner to [TEAM].",
"visibility": "shown",
"position": "1182000"
},
{
"important": true,
"gameTime": "2 - 17:22",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Leon Britton leaves the pitch and Sung-Yong Ki (Swansea) comes on.",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_WUDWNs32] leaves the pitch and [PLAYER_lvIuQ5nP] ([TEAM_]) comes on.",
"anonymized": "The referee stops play so that a substitution can be made and [PLAYER] leaves the pitch and [PLAYER] ([TEAM]) comes on.",
"visibility": "shown",
"position": "1042000"
},
{
"important": true,
"gameTime": "2 - 16:16",
"label": "substitution",
"description": "Here is a change. Wayne Routledge is going off and Francesco Guidolin gives the last tactical orders to Modou Barrow (Swansea).",
"identified": "Here is a change. [PLAYER_WhxKEDEE] is going off and [COACH_04gs1Ylg] gives the last tactical orders to [PLAYER_p8gXHqnA] ([TEAM_]).",
"anonymized": "Here is a change. [PLAYER] is going off and [COACH] gives the last tactical orders to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "976000"
},
{
"important": false,
"gameTime": "2 - 14:35",
"label": "corner",
"description": "James Milner (Liverpool) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger.",
"anonymized": "[PLAYER] ([TEAM]) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger.",
"visibility": "shown",
"position": "875000"
},
{
"important": false,
"gameTime": "2 - 14:09",
"label": "",
"description": "Daniel Sturridge (Liverpool) swings in a cross, but the ball is cleared to safety by one of the defending players. The ball is out of play. A goal-scoring opportunity from a corner for Liverpool.",
"identified": "[PLAYER_fwlDnzTg] ([TEAM_]) swings in a cross, but the ball is cleared to safety by one of the defending players. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) swings in a cross, but the ball is cleared to safety by one of the defending players. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM].",
"visibility": "shown",
"position": "849000"
},
{
"important": false,
"gameTime": "2 - 13:35",
"label": "",
"description": "Good team movement sets up Philippe Coutinho (Liverpool) on the edge of the box, but he slices the ball narrowly wide of the right post.",
"identified": "Good team movement sets up [PLAYER_QP6r8H7O] ([TEAM_]) on the edge of the box, but he slices the ball narrowly wide of the right post.",
"anonymized": "Good team movement sets up [PLAYER] ([TEAM]) on the edge of the box, but he slices the ball narrowly wide of the right post.",
"visibility": "shown",
"position": "815000"
},
{
"important": true,
"gameTime": "2 - 08:30",
"label": "soccer-ball",
"description": "The ball hits the back of the net! Jordan Henderson showcases his brilliant technique and produces a beautiful lofted cross into the box. Roberto Firmino (Liverpool) gets onto the scoresheets by sweetly heading it inside the left post \u2013 1:1.",
"identified": "The ball hits the back of the net! [PLAYER_UFMlUD6r] showcases his brilliant technique and produces a beautiful lofted cross into the box. [PLAYER_CCNtplZe] ([TEAM_]) gets onto the scoresheets by sweetly heading it inside the left post \u2013 1:1.",
"anonymized": "The ball hits the back of the net! [PLAYER] showcases his brilliant technique and produces a beautiful lofted cross into the box. [PLAYER] ([TEAM]) gets onto the scoresheets by sweetly heading it inside the left post \u2013 1:1.",
"visibility": "shown",
"position": "510000"
},
{
"important": false,
"gameTime": "2 - 07:50",
"label": "",
"description": "Philippe Coutinho (Liverpool) swings in a promising cross from the free kick, but one of the defenders does a perfect job to avert the danger.",
"identified": "[PLAYER_QP6r8H7O] ([TEAM_]) swings in a promising cross from the free kick, but one of the defenders does a perfect job to avert the danger.",
"anonymized": "[PLAYER] ([TEAM]) swings in a promising cross from the free kick, but one of the defenders does a perfect job to avert the danger.",
"visibility": "shown",
"position": "470000"
},
{
"important": true,
"gameTime": "2 - 07:45",
"label": "y-card",
"description": "The foul by Leon Britton (Swansea) is worthy of a card and a yellow is duly shown by Michael Oliver.",
"identified": "The foul by [PLAYER_WUDWNs32] ([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": "465000"
},
{
"important": false,
"gameTime": "2 - 07:40",
"label": "",
"description": "The ball is behind the sideline. Daniel Sturridge (Liverpool) takes a throw-in.",
"identified": "The ball is behind the sideline. [PLAYER_fwlDnzTg] ([TEAM_]) takes a throw-in.",
"anonymized": "The ball is behind the sideline. [PLAYER] ([TEAM]) takes a throw-in.",
"visibility": "shown",
"position": "460000"
},
{
"important": false,
"gameTime": "2 - 03:11",
"label": "",
"description": "Daniel Sturridge (Liverpool) receives a precise pass and is given time inside the box to send a promising strike towards the bottom right corner. Lukasz Fabianski guesses his intention and denies him with a fine save.",
"identified": "[PLAYER_fwlDnzTg] ([TEAM_]) receives a precise pass and is given time inside the box to send a promising strike towards the bottom right corner. [PLAYER_bRKKNZwj] guesses his intention and denies him with a fine save.",
"anonymized": "[PLAYER] ([TEAM]) receives a precise pass and is given time inside the box to send a promising strike towards the bottom right corner. [PLAYER] guesses his intention and denies him with a fine save.",
"visibility": "shown",
"position": "191000"
},
{
"important": false,
"gameTime": "2 - 02:30",
"label": "",
"description": "Roberto Firmino (Liverpool) has an effort from distance and sends the ball towards the bottom left corner, but the goalkeeper is equal to it.",
"identified": "[PLAYER_CCNtplZe] ([TEAM_]) has an effort from distance and sends the ball towards the bottom left corner, but the goalkeeper is equal to it.",
"anonymized": "[PLAYER] ([TEAM]) has an effort from distance and sends the ball towards the bottom left corner, but the goalkeeper is equal to it.",
"visibility": "shown",
"position": "150000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "Michael Oliver blows his whistle and the second half starts.",
"identified": "[REFEREE] blows his whistle and the second half starts.",
"anonymized": "[REFEREE] blows his whistle and the second half starts.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 47:59",
"label": "",
"description": "There has not been much to choose between the sides after an absorbing 45 minutes. Let's hope they can continue in the same vein in the second period. In terms of the overall play, the match has been fairly even so far. The home team tries to find the weakness in the opposition's defence, especially with rapid counter-attacks, while the away team play possession football.",
"identified": "There has not been much to choose between the sides after an absorbing 45 minutes. Let's hope they can continue in the same vein in the second period. In terms of the overall play, the match has been fairly even so far. The home team tries to find the weakness in the opposition's defence, especially with rapid counter-attacks, while the away team play possession football.",
"anonymized": "There has not been much to choose between the sides after an absorbing 45 minutes. Let's hope they can continue in the same vein in the second period. In terms of the overall play, the match has been fairly even so far. The home team tries to find the weakness in the opposition's defence, especially with rapid counter-attacks, while the away team play possession football.",
"visibility": "shown",
"position": "2879000"
},
{
"important": true,
"gameTime": "1 - 47:07",
"label": "whistle",
"description": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"identified": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"anonymized": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"visibility": "shown",
"position": "2827000"
},
{
"important": false,
"gameTime": "1 - 45:05",
"label": "corner",
"description": "The corner from Jordan Henderson (Liverpool) is hurriedly cleared.",
"identified": "The corner from [PLAYER_UFMlUD6r] ([TEAM_]) is hurriedly cleared.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is hurriedly cleared.",
"visibility": "shown",
"position": "2705000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "2 min. of stoppage-time to be played.",
"identified": "2 min. of stoppage-time to be played.",
"anonymized": "2 min. of stoppage-time to be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 44:50",
"label": "",
"description": "Daniel Sturridge (Liverpool) crosses the ball into the box, but one of the defending players averts the threat. The linesman makes the right call and Liverpool will have a corner.",
"identified": "[PLAYER_fwlDnzTg] ([TEAM_]) crosses the ball into the box, but one of the defending players averts the threat. The linesman makes the right call and [TEAM_] will have a corner.",
"anonymized": "[PLAYER] ([TEAM]) crosses the ball into the box, but one of the defending players averts the threat. The linesman makes the right call and [TEAM] will have a corner.",
"visibility": "shown",
"position": "2690000"
},
{
"important": false,
"gameTime": "1 - 43:56",
"label": "",
"description": "Gylfi Sigurdsson (Swansea) tries his luck from a long-range free kick and fires the ball to the roof of the net, but Loris Karius is alert and thwarts the effort.",
"identified": "[PLAYER_C2SeP04b] ([TEAM_]) tries his luck from a long-range free kick and fires the ball to the roof of the net, but [PLAYER_MgWRUFHG] is alert and thwarts the effort.",
"anonymized": "[PLAYER] ([TEAM]) tries his luck from a long-range free kick and fires the ball to the roof of the net, but [PLAYER] is alert and thwarts the effort.",
"visibility": "shown",
"position": "2636000"
},
{
"important": false,
"gameTime": "1 - 43:25",
"label": "",
"description": "Gylfi Sigurdsson (Swansea) is going to send the ball in from the free kick.",
"identified": "[PLAYER_C2SeP04b] ([TEAM_]) is going to send the ball in from the free kick.",
"anonymized": "[PLAYER] ([TEAM]) is going to send the ball in from the free kick.",
"visibility": "shown",
"position": "2605000"
},
{
"important": false,
"gameTime": "1 - 43:03",
"label": "",
"description": "Joel Matip (Liverpool) makes a rough challenge and Michael Oliver blows his whistle for a foul. A free kick has been awarded to Swansea.",
"identified": "[PLAYER_tpHWp8Am] ([TEAM_]) makes a rough challenge and [REFEREE] blows his whistle for a foul. A free kick has been awarded to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) makes a rough challenge and [REFEREE] blows his whistle for a foul. A free kick has been awarded to [TEAM].",
"visibility": "shown",
"position": "2583000"
},
{
"important": false,
"gameTime": "1 - 42:04",
"label": "",
"description": "Roberto Firmino (Liverpool) gets to the ball from the resulting corner and tries his luck with a shot, but one of the defenders steps in to block the effort.",
"identified": "[PLAYER_CCNtplZe] ([TEAM_]) gets to the ball from the resulting corner and tries his luck with a shot, but one of the defenders steps in to block the effort.",
"anonymized": "[PLAYER] ([TEAM]) gets to the ball from the resulting corner and tries his luck with a shot, but one of the defenders steps in to block the effort.",
"visibility": "shown",
"position": "2524000"
},
{
"important": false,
"gameTime": "1 - 41:40",
"label": "corner",
"description": "Jordan Henderson (Liverpool) steps up to send the ball in.",
"identified": "[PLAYER_UFMlUD6r] ([TEAM_]) steps up to send the ball in.",
"anonymized": "[PLAYER] ([TEAM]) steps up to send the ball in.",
"visibility": "shown",
"position": "2500000"
},
{
"important": false,
"gameTime": "1 - 41:22",
"label": "",
"description": "Sadio Mane (Liverpool) sends the ball into the box from the side of the pitch, but his cross is blocked. Liverpool will take a corner kick.",
"identified": "[PLAYER_xxskxOU0] ([TEAM_]) sends the ball into the box from the side of the pitch, but his cross is blocked. [TEAM_] will take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) sends the ball into the box from the side of the pitch, but his cross is blocked. [TEAM] will take a corner kick.",
"visibility": "shown",
"position": "2482000"
},
{
"important": false,
"gameTime": "1 - 40:26",
"label": "corner",
"description": "Jordan Henderson (Liverpool) steps up to take the corner, but the ball just sails in among the defenders.",
"identified": "[PLAYER_UFMlUD6r] ([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": "2426000"
},
{
"important": false,
"gameTime": "1 - 40:04",
"label": "",
"description": "Daniel Sturridge (Liverpool) races towards goal but the defender gets back well to make a challenge. The referee and one of his assistants signal for a corner kick to Liverpool.",
"identified": "[PLAYER_fwlDnzTg] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. The referee and one of his assistants signal for a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. The referee and one of his assistants signal for a corner kick to [TEAM].",
"visibility": "shown",
"position": "2404000"
},
{
"important": false,
"gameTime": "1 - 39:43",
"label": "",
"description": "Wow, what an escape. Sadio Mane (Liverpool) has an effort from inside the box but it's brilliantly blocked.",
"identified": "Wow, what an escape. [PLAYER_xxskxOU0] ([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": "2383000"
},
{
"important": true,
"gameTime": "1 - 38:36",
"label": "y-card",
"description": "The referee gives a yellow card to Daniel Sturridge (Liverpool).",
"identified": "The referee gives a yellow card to [PLAYER_fwlDnzTg] ([TEAM_]).",
"anonymized": "The referee gives a yellow card to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2316000"
},
{
"important": true,
"gameTime": "1 - 37:35",
"label": "y-card",
"description": "Jack Cork (Swansea) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. Michael Oliver didn't think twice about pulling it out of his pocket.",
"identified": "[PLAYER_tnl7ejng] ([TEAM_]) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. [REFEREE] didn't think twice about pulling it out of his pocket.",
"anonymized": "[PLAYER] ([TEAM]) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. [REFEREE] didn't think twice about pulling it out of his pocket.",
"visibility": "shown",
"position": "2255000"
},
{
"important": false,
"gameTime": "1 - 35:26",
"label": "",
"description": "Dejan Lovren (Liverpool) connects with a precise cross inside the goalmouth and shoots. One of the defending players reacts in time and clears the ball to safety.",
"identified": "[PLAYER_GAcQF9Z6] ([TEAM_]) connects with a precise cross inside the goalmouth and shoots. One of the defending players reacts in time and clears the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) connects with a precise cross inside the goalmouth and shoots. One of the defending players reacts in time and clears the ball to safety.",
"visibility": "shown",
"position": "2126000"
},
{
"important": false,
"gameTime": "1 - 35:08",
"label": "corner",
"description": "This corner kick is taken with a short pass by Jordan Henderson (Liverpool).",
"identified": "This corner kick is taken with a short pass by [PLAYER_UFMlUD6r] ([TEAM_]).",
"anonymized": "This corner kick is taken with a short pass by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2108000"
},
{
"important": false,
"gameTime": "1 - 34:51",
"label": "",
"description": "Nathaniel Clyne (Liverpool) tries to send a pass but it's blocked. Liverpool force a corner. Their opponents will face another attacking threat.",
"identified": "[PLAYER_Eo9X2cTu] ([TEAM_]) tries to send a pass but it's blocked. [TEAM_] force a corner. Their opponents will face another attacking threat.",
"anonymized": "[PLAYER] ([TEAM]) tries to send a pass but it's blocked. [TEAM] force a corner. Their opponents will face another attacking threat.",
"visibility": "shown",
"position": "2091000"
},
{
"important": false,
"gameTime": "1 - 34:01",
"label": "",
"description": "Liverpool seem to be finding their feet as they enjoy some possession. They are waiting for the right moment to create new attacking opportunities.",
"identified": "[TEAM_] seem to be finding their feet as they enjoy some possession. They are waiting for the right moment to create new attacking opportunities.",
"anonymized": "[TEAM] seem to be finding their feet as they enjoy some possession. They are waiting for the right moment to create new attacking opportunities.",
"visibility": "shown",
"position": "2041000"
},
{
"important": false,
"gameTime": "1 - 30:31",
"label": "",
"description": "Mike van der Hoorn (Swansea) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves Michael Oliver with no other option than to blow for a foul.",
"identified": "[PLAYER_02NrrSBg] ([TEAM_]) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves [REFEREE] with no other option than to blow for a foul.",
"anonymized": "[PLAYER] ([TEAM]) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves [REFEREE] with no other option than to blow for a foul.",
"visibility": "shown",
"position": "1831000"
},
{
"important": false,
"gameTime": "1 - 27:29",
"label": "",
"description": "Borja Baston (Swansea) jumps for a cross and produces a fine header from near the penalty spot, but it goes narrowly wide of the left post!",
"identified": "[PLAYER_jVMqoxah] ([TEAM_]) jumps for a cross and produces a fine header from near the penalty spot, but it goes narrowly wide of the left post!",
"anonymized": "[PLAYER] ([TEAM]) jumps for a cross and produces a fine header from near the penalty spot, but it goes narrowly wide of the left post!",
"visibility": "shown",
"position": "1649000"
},
{
"important": true,
"gameTime": "1 - 24:30",
"label": "y-card",
"description": "Jordan Henderson (Liverpool) was probably a bit loose with his words to Michael Oliver, who decides to show him a yellow.",
"identified": "[PLAYER_UFMlUD6r] ([TEAM_]) was probably a bit loose with his words to [REFEREE], who decides to show him a yellow.",
"anonymized": "[PLAYER] ([TEAM]) was probably a bit loose with his words to [REFEREE], who decides to show him a yellow.",
"visibility": "shown",
"position": "1470000"
},
{
"important": false,
"gameTime": "1 - 24:10",
"label": "",
"description": "Jordan Henderson (Liverpool) holds his opponent to prevent him from getting the ball and the referee blows for a foul after seeing the whole situation.",
"identified": "[PLAYER_UFMlUD6r] ([TEAM_]) holds his opponent to prevent him from getting the ball and the referee blows for a foul after seeing the whole situation.",
"anonymized": "[PLAYER] ([TEAM]) holds his opponent to prevent him from getting the ball and the referee blows for a foul after seeing the whole situation.",
"visibility": "shown",
"position": "1450000"
},
{
"important": false,
"gameTime": "1 - 23:33",
"label": "",
"description": "Roberto Firmino (Liverpool) is caught offside by the linesman and it looks like it is the right decision despite being a very close call.",
"identified": "[PLAYER_CCNtplZe] ([TEAM_]) is caught offside by the linesman and it looks like it is the right decision despite being a very close call.",
"anonymized": "[PLAYER] ([TEAM]) is caught offside by the linesman and it looks like it is the right decision despite being a very close call.",
"visibility": "shown",
"position": "1413000"
},
{
"important": true,
"gameTime": "1 - 22:50",
"label": "substitution",
"description": "Here comes a substitution. Adam Lallana is given a rest as he is replaced by Daniel Sturridge (Liverpool).",
"identified": "Here comes a substitution. [PLAYER_65ZQWgft] is given a rest as he is replaced by [PLAYER_fwlDnzTg] ([TEAM_]).",
"anonymized": "Here comes a substitution. [PLAYER] is given a rest as he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1370000"
},
{
"important": false,
"gameTime": "1 - 21:12",
"label": "",
"description": "Gylfi Sigurdsson (Swansea) sends a cross into the box, but Loris Karius comes off his line to gather the ball.",
"identified": "[PLAYER_C2SeP04b] ([TEAM_]) sends a cross into the box, but [PLAYER_MgWRUFHG] comes off his line to gather the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but [PLAYER] comes off his line to gather the ball.",
"visibility": "shown",
"position": "1272000"
},
{
"important": false,
"gameTime": "1 - 19:25",
"label": "",
"description": "Adam Lallana (Liverpool) is moving okay again after that injury scare.",
"identified": "[PLAYER_65ZQWgft] ([TEAM_]) is moving okay again after that injury scare.",
"anonymized": "[PLAYER] ([TEAM]) is moving okay again after that injury scare.",
"visibility": "shown",
"position": "1165000"
},
{
"important": false,
"gameTime": "1 - 18:40",
"label": "",
"description": "Flag up against Borja Baston (Swansea). He had space to move into behind the defence, but he went too soon.",
"identified": "Flag up against [PLAYER_jVMqoxah] ([TEAM_]). He had space to move into behind the defence, but he went too soon.",
"anonymized": "Flag up against [PLAYER] ([TEAM]). He had space to move into behind the defence, but he went too soon.",
"visibility": "shown",
"position": "1120000"
},
{
"important": false,
"gameTime": "1 - 18:15",
"label": "injury",
"description": "Adam Lallana (Liverpool) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"identified": "[PLAYER_65ZQWgft] ([TEAM_]) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"anonymized": "[PLAYER] ([TEAM]) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"visibility": "shown",
"position": "1095000"
},
{
"important": false,
"gameTime": "1 - 15:06",
"label": "",
"description": "Roberto Firmino (Liverpool) is adjudged offside.",
"identified": "[PLAYER_CCNtplZe] ([TEAM_]) is adjudged offside.",
"anonymized": "[PLAYER] ([TEAM]) is adjudged offside.",
"visibility": "shown",
"position": "906000"
},
{
"important": false,
"gameTime": "1 - 14:10",
"label": "",
"description": "What a poor attempt! Leroy Fer (Swansea) drives another shot towards goal - this time from further out, but it couldn't have been worse if he had shot blindfolded. The ball goes into the stands.",
"identified": "What a poor attempt! [PLAYER_URC6RSJb] ([TEAM_]) drives another shot towards goal - this time from further out, but it couldn't have been worse if he had shot blindfolded. The ball goes into the stands.",
"anonymized": "What a poor attempt! [PLAYER] ([TEAM]) drives another shot towards goal - this time from further out, but it couldn't have been worse if he had shot blindfolded. The ball goes into the stands.",
"visibility": "shown",
"position": "850000"
},
{
"important": false,
"gameTime": "1 - 12:16",
"label": "",
"description": "Referee Michael Oliver sees the trip by Gylfi Sigurdsson (Swansea) and doesn't hesitate to blow his whistle.",
"identified": "Referee [REFEREE] sees the trip by [PLAYER_C2SeP04b] ([TEAM_]) and doesn't hesitate to blow his whistle.",
"anonymized": "Referee [REFEREE] sees the trip by [PLAYER] ([TEAM]) and doesn't hesitate to blow his whistle.",
"visibility": "shown",
"position": "736000"
}
]
} |