File size: 82,903 Bytes
23b035e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 |
{
"timestamp": "1484496000",
"score": "1 - 1",
"round": "21",
"teams": [
"Manchester United",
"Liverpool"
],
"lineup": {
"home": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "phM8NElP",
"name": "Carrick M.",
"captain": "(C)",
"detail_link": "/player/carrick-michael/phM8NElP/",
"short_name": "Carrick",
"shirt_number": "16",
"country": "England",
"facts": [
{
"type": "6",
"time": "46'",
"description": "Rooney W.",
"linked_player_hash": "WfXv1DCa"
}
],
"lineup": 7,
"starting": true,
"long_name": "Michael Carrick"
},
{
"hash": "WbNknKk3",
"name": "Darmian M.",
"captain": "",
"detail_link": "/player/darmian-matteo/WbNknKk3/",
"short_name": "Darmian",
"shirt_number": "36",
"country": "Italy",
"facts": [
{
"type": "6",
"time": "76'",
"description": "Fellaini M.",
"linked_player_hash": "nJoIy5ih"
}
],
"lineup": 5,
"starting": true,
"long_name": "Matteo Darmian"
},
{
"hash": "d6AEQ6OD",
"name": "de Gea D.",
"captain": "",
"detail_link": "/player/de-gea-david/d6AEQ6OD/",
"short_name": "de Gea",
"shirt_number": "1",
"country": "Spain",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "David de Gea"
},
{
"hash": "jyzWX8yk",
"name": "Herrera A.",
"captain": "",
"detail_link": "/player/herrera-ander/jyzWX8yk/",
"short_name": "Herrera",
"shirt_number": "21",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "90+1' Herrera A. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Ander Herrera"
},
{
"hash": "AiH2zDve",
"name": "Ibrahimovic Z.",
"captain": "",
"detail_link": "/player/ibrahimovic-zlatan/AiH2zDve/",
"short_name": "Ibrahimovic",
"shirt_number": "9",
"country": "Sweden",
"facts": [
{
"type": "3",
"time": "84' Ibrahimovic Z. (Valencia A.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Zlatan Ibrahimovic"
},
{
"hash": "tOqz9FFa",
"name": "Jones P.",
"captain": "",
"detail_link": "/player/jones-phil/tOqz9FFa/",
"short_name": "Jones",
"shirt_number": "4",
"country": "England",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Phil Jones"
},
{
"hash": "GrS6Vr75",
"name": "Martial A.",
"captain": "",
"detail_link": "/player/martial-anthony/GrS6Vr75/",
"short_name": "Martial",
"shirt_number": "11",
"country": "France",
"facts": [
{
"type": "6",
"time": "65'",
"description": "Mata J.",
"linked_player_hash": "nHlv2UfS"
}
],
"lineup": 11,
"starting": true,
"long_name": "Anthony Martial"
},
{
"hash": "KKi1DwHC",
"name": "Mkhitaryan H.",
"captain": "",
"detail_link": "/player/mkhitaryan-henrikh/KKi1DwHC/",
"short_name": "Mkhitaryan",
"shirt_number": "22",
"country": "Armenia",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Henrikh Mkhitaryan"
},
{
"hash": "MTNGv0hT",
"name": "Pogba P.",
"captain": "",
"detail_link": "/player/pogba-paul/MTNGv0hT/",
"short_name": "Pogba",
"shirt_number": "6",
"country": "France",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Paul Pogba"
},
{
"hash": "UZCWoIyB",
"name": "Rojo M.",
"captain": "",
"detail_link": "/player/rojo-marcos/UZCWoIyB/",
"short_name": "Rojo",
"shirt_number": "5",
"country": "Argentina",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Marcos Rojo"
},
{
"hash": "Ecu9nqDs",
"name": "Valencia A.",
"captain": "",
"detail_link": "/player/valencia-antonio/Ecu9nqDs/",
"short_name": "Valencia",
"shirt_number": "25",
"country": "Ecuador",
"facts": [
{
"type": "8",
"time": "84' Ibrahimovic Z. (Valencia A.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Antonio Valencia"
},
{
"hash": "U5mPqlh6",
"name": "Blind D.",
"captain": "",
"detail_link": "/player/blind-daley/U5mPqlh6/",
"short_name": "Blind",
"shirt_number": "17",
"country": "Netherlands",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Daley Blind"
},
{
"hash": "nJoIy5ih",
"name": "Fellaini M.",
"captain": "",
"detail_link": "/player/fellaini-marouane/nJoIy5ih/",
"short_name": "Fellaini",
"shirt_number": "27",
"country": "Belgium",
"facts": [
{
"type": "7",
"time": "76'",
"description": "Darmian M.",
"linked_player_hash": "WbNknKk3"
}
],
"lineup": null,
"starting": false,
"long_name": "Marouane Fellaini"
},
{
"hash": "nHlv2UfS",
"name": "Mata J.",
"captain": "",
"detail_link": "/player/mata-juan/nHlv2UfS/",
"short_name": "Mata",
"shirt_number": "8",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "65'",
"description": "Martial A.",
"linked_player_hash": "GrS6Vr75"
}
],
"lineup": null,
"starting": false,
"long_name": "Juan Manuel Mata"
},
{
"hash": "COnT2Lh0",
"name": "Rashford M.",
"captain": "",
"detail_link": "/player/rashford-marcus/COnT2Lh0/",
"short_name": "Rashford",
"shirt_number": "19",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marcus Rashford"
},
{
"hash": "6TXnXzjd",
"name": "Romero S.",
"captain": "",
"detail_link": "/player/romero-sergio/6TXnXzjd/",
"short_name": "Romero",
"shirt_number": "20",
"country": "Argentina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Sergio Romero"
},
{
"hash": "WfXv1DCa",
"name": "Rooney W.",
"captain": "",
"detail_link": "/player/rooney-wayne/WfXv1DCa/",
"short_name": "Rooney",
"shirt_number": "10",
"country": "England",
"facts": [
{
"type": "7",
"time": "46'",
"description": "Carrick M.",
"linked_player_hash": "phM8NElP"
}
],
"lineup": null,
"starting": false,
"long_name": "Wayne Rooney"
},
{
"hash": "QHtOVJzh",
"name": "Smalling C.",
"captain": "",
"detail_link": "/player/smalling-chris/QHtOVJzh/",
"short_name": "Smalling",
"shirt_number": "12",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Chris Smalling"
}
],
"coach": [
{
"hash": "AwXQwGFe",
"name": "Mourinho J.",
"captain": "",
"detail_link": "/player/mourinho-jose/AwXQwGFe/",
"short_name": "Mourinho J.",
"shirt_number": "",
"country": "Portugal",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jose Mourinho"
}
]
},
"away": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "CEVJy6Bc",
"name": "Alexander-Arnold T.",
"captain": "",
"detail_link": "/player/alexander-arnold-trent/CEVJy6Bc/",
"short_name": "Alexander-Arnold",
"shirt_number": "66",
"country": "England",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Trent Alexander-Arnold"
},
{
"hash": "YJu3hSpk",
"name": "Can E.",
"captain": "",
"detail_link": "/player/can-emre/YJu3hSpk/",
"short_name": "Can",
"shirt_number": "23",
"country": "Germany",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Emre Can"
},
{
"hash": "CCNtplZe",
"name": "Firmino R.",
"captain": "",
"detail_link": "/player/firmino-roberto/CCNtplZe/",
"short_name": "Firmino",
"shirt_number": "11",
"country": "Brazil",
"facts": [
{
"type": "1",
"time": "90+1' Firmino R. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 9,
"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": 4,
"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": [],
"lineup": 11,
"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": [
{
"type": "1",
"time": "31' Lovren D. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Dejan Lovren"
},
{
"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": [],
"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": "61'",
"description": "Coutinho",
"linked_player_hash": "QP6r8H7O"
}
],
"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": [
{
"type": "1",
"time": "61' Wijnaldum G. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Georginio Wijnaldum"
},
{
"hash": "QP6r8H7O",
"name": "Coutinho",
"captain": "",
"detail_link": "/player/coutinho/QP6r8H7O/",
"short_name": "Coutinho",
"shirt_number": "10",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "61'",
"description": "Origi D.",
"linked_player_hash": "jeRaNgKg"
}
],
"lineup": null,
"starting": false,
"long_name": "Philippe Coutinho"
},
{
"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": "SKt9dxk8",
"name": "Gomez J.",
"captain": "",
"detail_link": "/player/gomez-joe/SKt9dxk8/",
"short_name": "Gomez",
"shirt_number": "12",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Joe Gomez"
},
{
"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": "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": "2BS7SqE2",
"name": "Stewart K.",
"captain": "",
"detail_link": "/player/stewart-kevin/2BS7SqE2/",
"short_name": "Stewart",
"shirt_number": "35",
"country": "Jamaica",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Kevin Stewart"
},
{
"hash": "fwlDnzTg",
"name": "Sturridge D.",
"captain": "",
"detail_link": "/player/sturridge-daniel/fwlDnzTg/",
"short_name": "Sturridge",
"shirt_number": "15",
"country": "England",
"facts": [],
"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": [
"Old Trafford (Manchester)"
],
"attendance": [
"75 276"
],
"referee_matched": [
"Michael Oliver"
],
"referee_found": [
"Michael Oliver"
],
"coach_matched": [
"Jose Mourinho"
],
"gameHomeTeam": "Manchester United",
"home": {
"name": "Manchester United",
"detail_link": "/team/manchester-united/ppjDR086",
"hash": "ppjDR086",
"names": [
"Manchester United",
"Manchester Utd",
"Manchester Utd (Eng)",
"manchester united"
]
},
"gameAwayTeam": "Liverpool",
"away": {
"name": "Liverpool",
"detail_link": "/team/liverpool/lId4TMwf",
"hash": "lId4TMwf",
"names": [
"Liverpool",
"Liverpool (Eng)",
"liverpool"
]
},
"gameDate": "15/01/2017 - 17:00",
"annotations": [
{
"important": false,
"gameTime": "2 - 49:59",
"label": "",
"description": "All in all that was an entertaining 90 minutes of football thanks to some decent attacking play. There wasn't any significant dominance by either side in this game. The home team made a lot of passes and attempted to maintain possession. The away side's tactic was counter-attacking.",
"identified": "All in all that was an entertaining 90 minutes of football thanks to some decent attacking play. There wasn't any significant dominance by either side in this game. The home team made a lot of passes and attempted to maintain possession. The away side's tactic was counter-attacking.",
"anonymized": "All in all that was an entertaining 90 minutes of football thanks to some decent attacking play. There wasn't any significant dominance by either side in this game. The home team made a lot of passes and attempted to maintain possession. The away side's tactic was counter-attacking.",
"visibility": "shown",
"position": "2999000"
},
{
"important": true,
"gameTime": "2 - 49:16",
"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": "2956000"
},
{
"important": false,
"gameTime": "2 - 48:42",
"label": "",
"description": "Wayne Rooney (Manchester United) tries his luck from the edge of the box after a brilliant solo effort, but it is well blocked by the defender.",
"identified": "[PLAYER_WfXv1DCa] ([TEAM_]) tries his luck from the edge of the box after a brilliant solo effort, but it is well blocked by the defender.",
"anonymized": "[PLAYER] ([TEAM]) tries his luck from the edge of the box after a brilliant solo effort, but it is well blocked by the defender.",
"visibility": "shown",
"position": "2922000"
},
{
"important": false,
"gameTime": "2 - 47:47",
"label": "",
"description": "Ragnar Klavan (Liverpool) is penalised after knocking an opponent down. Manchester Utd will take a free kick near the side line.",
"identified": "[PLAYER_l2KDCxTO] ([TEAM_]) is penalised after knocking an opponent down. [TEAM_ppjDR086] will take a free kick near the side line.",
"anonymized": "[PLAYER] ([TEAM]) is penalised after knocking an opponent down. [TEAM] will take a free kick near the side line.",
"visibility": "shown",
"position": "2867000"
},
{
"important": true,
"gameTime": "2 - 47:18",
"label": "",
"description": "Georginio Wijnaldum (Liverpool) darts into the penalty area to latch on to a pass, and he unleashes a low drive towards the middle of the net, but David de Gea is alert and denies him.",
"identified": "[PLAYER_f9KgUUZu] ([TEAM_]) darts into the penalty area to latch on to a pass, and he unleashes a low drive towards the middle of the net, but [PLAYER_d6AEQ6OD] is alert and denies him.",
"anonymized": "[PLAYER] ([TEAM]) darts into the penalty area to latch on to a pass, and he unleashes a low drive towards the middle of the net, but [PLAYER] is alert and denies him.",
"visibility": "shown",
"position": "2838000"
},
{
"important": true,
"gameTime": "2 - 45:25",
"label": "y-card",
"description": "Roberto Firmino (Liverpool) picks up a yellow card for an infringement.",
"identified": "[PLAYER_CCNtplZe] ([TEAM_]) picks up a yellow card for an infringement.",
"anonymized": "[PLAYER] ([TEAM]) picks up a yellow card for an infringement.",
"visibility": "shown",
"position": "2725000"
},
{
"important": true,
"gameTime": "2 - 45:19",
"label": "y-card",
"description": "The foul by Ander Herrera (Manchester United) is worthy of a card and a yellow is duly shown by Michael Oliver.",
"identified": "The foul by [PLAYER_jyzWX8yk] ([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": "2719000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "4 additional min. will be played.",
"identified": "4 additional min. will be played.",
"anonymized": "4 additional min. will be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 43:22",
"label": "",
"description": "Flag up against Zlatan Ibrahimovic (Manchester United). He had space to move into behind the defence, but he went too soon.",
"identified": "Flag up against [PLAYER_AiH2zDve] ([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": "2602000"
},
{
"important": false,
"gameTime": "2 - 42:10",
"label": "",
"description": "Wayne Rooney (Manchester United) plays a dangerous chip pass into the box in an attempt to set up one of his teammates, but the effort is intercepted by one of the defenders.",
"identified": "[PLAYER_WfXv1DCa] ([TEAM_]) plays a dangerous chip pass into the box in an attempt to set up one of his teammates, but the effort is intercepted by one of the defenders.",
"anonymized": "[PLAYER] ([TEAM]) plays a dangerous chip pass into the box in an attempt to set up one of his teammates, but the effort is intercepted by one of the defenders.",
"visibility": "shown",
"position": "2530000"
},
{
"important": false,
"gameTime": "2 - 41:13",
"label": "corner",
"description": "The resulting corner from James Milner (Liverpool) is cleared by the opposition's defence.",
"identified": "The resulting corner from [PLAYER_QLY3kAEt] ([TEAM_]) is cleared by the opposition's defence.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) is cleared by the opposition's defence.",
"visibility": "shown",
"position": "2473000"
},
{
"important": false,
"gameTime": "2 - 40:55",
"label": "",
"description": "Georginio Wijnaldum (Liverpool) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal. Liverpool force their opponents to concede a corner.",
"identified": "[PLAYER_f9KgUUZu] ([TEAM_]) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal. [TEAM_] force their opponents to concede a corner.",
"anonymized": "[PLAYER] ([TEAM]) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal. [TEAM] force their opponents to concede a corner.",
"visibility": "shown",
"position": "2455000"
},
{
"important": false,
"gameTime": "2 - 40:10",
"label": "",
"description": "A lofted cross from Antonio Valencia (Manchester United) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. It's a throw-in for Manchester Utd.",
"identified": "A lofted cross from [PLAYER_Ecu9nqDs] ([TEAM_]) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. It's a throw-in for [TEAM_ppjDR086].",
"anonymized": "A lofted cross from [PLAYER] ([TEAM]) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. It's a throw-in for [TEAM].",
"visibility": "shown",
"position": "2410000"
},
{
"important": true,
"gameTime": "2 - 38:01",
"label": "soccer-ball",
"description": "Antonio Valencia displays his great technique and produces a beautiful lofted cross deep into the box. Zlatan Ibrahimovic (Manchester United) gets onto the scoresheet by superbly heading it in off the crossbar \u2013 1:1.",
"identified": "[PLAYER_Ecu9nqDs] displays his great technique and produces a beautiful lofted cross deep into the box. [PLAYER_AiH2zDve] ([TEAM_]) gets onto the scoresheet by superbly heading it in off the crossbar \u2013 1:1.",
"anonymized": "[PLAYER] displays his great technique and produces a beautiful lofted cross deep into the box. [PLAYER] ([TEAM]) gets onto the scoresheet by superbly heading it in off the crossbar \u2013 1:1.",
"visibility": "shown",
"position": "2281000"
},
{
"important": true,
"gameTime": "2 - 37:50",
"label": "",
"description": "Marouane Fellaini (Manchester United) connects with a cross from out wide in the six-yard box, but only plants his header onto the right post.",
"identified": "[PLAYER_nJoIy5ih] ([TEAM_]) connects with a cross from out wide in the six-yard box, but only plants his header onto the right post.",
"anonymized": "[PLAYER] ([TEAM]) connects with a cross from out wide in the six-yard box, but only plants his header onto the right post.",
"visibility": "shown",
"position": "2270000"
},
{
"important": false,
"gameTime": "2 - 37:14",
"label": "",
"description": "Marouane Fellaini (Manchester United) passes the ball onto Wayne Rooney, but one of the defenders dispossesses him.",
"identified": "[PLAYER_nJoIy5ih] ([TEAM_]) passes the ball onto [PLAYER_WfXv1DCa], but one of the defenders dispossesses him.",
"anonymized": "[PLAYER] ([TEAM]) passes the ball onto [PLAYER], but one of the defenders dispossesses him.",
"visibility": "shown",
"position": "2234000"
},
{
"important": false,
"gameTime": "2 - 36:31",
"label": "",
"description": "Wayne Rooney (Manchester United) is offside and the linesman raises his flag.",
"identified": "[PLAYER_WfXv1DCa] ([TEAM_]) is offside and the linesman raises his flag.",
"anonymized": "[PLAYER] ([TEAM]) is offside and the linesman raises his flag.",
"visibility": "shown",
"position": "2191000"
},
{
"important": false,
"gameTime": "2 - 34:31",
"label": "",
"description": "A clumsy foul by Ander Herrera (Manchester United) and Michael Oliver blows his whistle.",
"identified": "A clumsy foul by [PLAYER_jyzWX8yk] ([TEAM_]) and [REFEREE] blows his whistle.",
"anonymized": "A clumsy foul by [PLAYER] ([TEAM]) and [REFEREE] blows his whistle.",
"visibility": "shown",
"position": "2071000"
},
{
"important": false,
"gameTime": "2 - 32:56",
"label": "",
"description": "The game is interrupted as Zlatan Ibrahimovic (Manchester United) is flagged offside.",
"identified": "The game is interrupted as [PLAYER_AiH2zDve] ([TEAM_]) is flagged offside.",
"anonymized": "The game is interrupted as [PLAYER] ([TEAM]) is flagged offside.",
"visibility": "shown",
"position": "1976000"
},
{
"important": false,
"gameTime": "2 - 31:33",
"label": "",
"description": "Ander Herrera (Manchester United) found some space to play in a lofted pass, but he looks disappointed as none of his teammates managed to connect with it. The ball is off of the pitch and it's a goal kick for Liverpool.",
"identified": "[PLAYER_jyzWX8yk] ([TEAM_]) found some space to play in a lofted pass, but he looks disappointed as none of his teammates managed to connect with it. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) found some space to play in a lofted pass, but he looks disappointed as none of his teammates managed to connect with it. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "1893000"
},
{
"important": true,
"gameTime": "2 - 30:12",
"label": "substitution",
"description": "Jose Mourinho has decided to introduce fresh legs, with Marouane Fellaini (Manchester United) replacing Matteo Darmian.",
"identified": "[COACH_AwXQwGFe] has decided to introduce fresh legs, with [PLAYER_nJoIy5ih] ([TEAM_]) replacing [PLAYER_WbNknKk3].",
"anonymized": "[COACH] has decided to introduce fresh legs, with [PLAYER] ([TEAM]) replacing [PLAYER].",
"visibility": "shown",
"position": "1812000"
},
{
"important": true,
"gameTime": "2 - 29:34",
"label": "",
"description": "Georginio Wijnaldum (Liverpool) climbs high to connect with a cross near the penalty spot but plants a header high over the bar.",
"identified": "[PLAYER_f9KgUUZu] ([TEAM_]) climbs high to connect with a cross near the penalty spot but plants a header high over the bar.",
"anonymized": "[PLAYER] ([TEAM]) climbs high to connect with a cross near the penalty spot but plants a header high over the bar.",
"visibility": "shown",
"position": "1774000"
},
{
"important": false,
"gameTime": "2 - 28:20",
"label": "",
"description": "Roberto Firmino (Liverpool) fails to beat the offside trap. The flag goes up and the referee blows his whistle.",
"identified": "[PLAYER_CCNtplZe] ([TEAM_]) fails to beat the offside trap. The flag goes up and the referee blows his whistle.",
"anonymized": "[PLAYER] ([TEAM]) fails to beat the offside trap. The flag goes up and the referee blows his whistle.",
"visibility": "shown",
"position": "1700000"
},
{
"important": false,
"gameTime": "2 - 26:55",
"label": "",
"description": "James Milner (Liverpool) has picked up a minor injury, but it looks like he will be able to continue.",
"identified": "[PLAYER_QLY3kAEt] ([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": "1615000"
},
{
"important": false,
"gameTime": "2 - 25:00",
"label": "injury",
"description": "James Milner (Liverpool) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"identified": "[PLAYER_QLY3kAEt] ([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": "1500000"
},
{
"important": false,
"gameTime": "2 - 24:44",
"label": "",
"description": "Wayne Rooney (Manchester United) fouls an opponent. At least that's what referee Michael Oliver signals.",
"identified": "[PLAYER_WfXv1DCa] ([TEAM_]) fouls an opponent. At least that's what referee [REFEREE] signals.",
"anonymized": "[PLAYER] ([TEAM]) fouls an opponent. At least that's what referee [REFEREE] signals.",
"visibility": "shown",
"position": "1484000"
},
{
"important": false,
"gameTime": "2 - 23:54",
"label": "",
"description": "Juan Manuel Mata (Manchester United) sends a teasing cross into the area, but Simon Mignolet intercepts the ball.",
"identified": "[PLAYER_nHlv2UfS] ([TEAM_]) sends a teasing cross into the area, but [PLAYER_YVcnMAp6] intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a teasing cross into the area, but [PLAYER] intercepts the ball.",
"visibility": "shown",
"position": "1434000"
},
{
"important": false,
"gameTime": "2 - 22:12",
"label": "",
"description": "Henrikh Mkhitaryan (Manchester United) slides a pass forward, but one of the defenders cuts it out. The ball has crossed the sideline. Manchester Utd are taking a throw-in.",
"identified": "[PLAYER_KKi1DwHC] ([TEAM_]) slides a pass forward, but one of the defenders cuts it out. The ball has crossed the sideline. [TEAM_ppjDR086] are taking a throw-in.",
"anonymized": "[PLAYER] ([TEAM]) slides a pass forward, but one of the defenders cuts it out. The ball has crossed the sideline. [TEAM] are taking a throw-in.",
"visibility": "shown",
"position": "1332000"
},
{
"important": false,
"gameTime": "2 - 21:09",
"label": "",
"description": "Adam Lallana (Liverpool) receives a low pass just outside the box and unleashes a fine strike to the bottom left corner. David de Gea pulls off a reflexive save to block his effort. Nice goalkeeping skill.",
"identified": "[PLAYER_65ZQWgft] ([TEAM_]) receives a low pass just outside the box and unleashes a fine strike to the bottom left corner. [PLAYER_d6AEQ6OD] pulls off a reflexive save to block his effort. Nice goalkeeping skill.",
"anonymized": "[PLAYER] ([TEAM]) receives a low pass just outside the box and unleashes a fine strike to the bottom left corner. [PLAYER] pulls off a reflexive save to block his effort. Nice goalkeeping skill.",
"visibility": "shown",
"position": "1269000"
},
{
"important": true,
"gameTime": "2 - 19:29",
"label": "substitution",
"description": "Anthony Martial goes off the pitch and Juan Manuel Mata (Manchester United) comes on.",
"identified": "[PLAYER_GrS6Vr75] goes off the pitch and [PLAYER_nHlv2UfS] ([TEAM_]) comes on.",
"anonymized": "[PLAYER] goes off the pitch and [PLAYER] ([TEAM]) comes on.",
"visibility": "shown",
"position": "1169000"
},
{
"important": false,
"gameTime": "2 - 19:01",
"label": "",
"description": "Wayne Rooney (Manchester United) wastes a big opportunity! He controls the ball after a nice low pass and shoots from a promising distance. His poor effort goes miles wide of the left post. The ball goes out of play and Liverpool will have a goal kick.",
"identified": "[PLAYER_WfXv1DCa] ([TEAM_]) wastes a big opportunity! He controls the ball after a nice low pass and shoots from a promising distance. His poor effort goes miles wide of the left post. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) wastes a big opportunity! He controls the ball after a nice low pass and shoots from a promising distance. His poor effort goes miles wide of the left post. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "1141000"
},
{
"important": false,
"gameTime": "2 - 18:26",
"label": "",
"description": "Matteo Darmian (Manchester United) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"identified": "[PLAYER_WbNknKk3] ([TEAM_]) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"anonymized": "[PLAYER] ([TEAM]) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"visibility": "shown",
"position": "1106000"
},
{
"important": false,
"gameTime": "2 - 17:05",
"label": "",
"description": "Philippe Coutinho (Liverpool) wriggles into space and fires the ball from the edge of the area, but one of the defenders is there to block the effort.",
"identified": "[PLAYER_QP6r8H7O] ([TEAM_]) wriggles into space and fires the ball from the edge of the area, but one of the defenders is there to block the effort.",
"anonymized": "[PLAYER] ([TEAM]) wriggles into space and fires the ball from the edge of the area, but one of the defenders is there to block the effort.",
"visibility": "shown",
"position": "1025000"
},
{
"important": true,
"gameTime": "2 - 16:00",
"label": "y-card",
"description": "Yellow card! It's like Georginio Wijnaldum (Liverpool) was asking for a caution with his behaviour. Michael Oliver agrees and books him.",
"identified": "Yellow card! It's like [PLAYER_f9KgUUZu] ([TEAM_]) was asking for a caution with his behaviour. [REFEREE] agrees and books him.",
"anonymized": "Yellow card! It's like [PLAYER] ([TEAM]) was asking for a caution with his behaviour. [REFEREE] agrees and books him.",
"visibility": "shown",
"position": "960000"
},
{
"important": true,
"gameTime": "2 - 15:40",
"label": "",
"description": "Roberto Firmino (Liverpool) receives a precise pass and is given time inside the box to send a promising strike towards the middle of the goal. David de Gea guesses his intention and denies him with a fine save.",
"identified": "[PLAYER_CCNtplZe] ([TEAM_]) receives a precise pass and is given time inside the box to send a promising strike towards the middle of the goal. [PLAYER_d6AEQ6OD] 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 middle of the goal. [PLAYER] guesses his intention and denies him with a fine save.",
"visibility": "shown",
"position": "940000"
},
{
"important": true,
"gameTime": "2 - 15:10",
"label": "substitution",
"description": "Substitution. Philippe Coutinho (Liverpool) on for Divock Origi.",
"identified": "Substitution. [PLAYER_QP6r8H7O] ([TEAM_]) on for [PLAYER_jeRaNgKg].",
"anonymized": "Substitution. [PLAYER] ([TEAM]) on for [PLAYER].",
"visibility": "shown",
"position": "910000"
},
{
"important": false,
"gameTime": "2 - 14:56",
"label": "",
"description": "Paul Pogba (Manchester United) attempts to put the ball in from a rebound with his long-range shot, but it isn't accurate enough and the ball goes wide of the left post.",
"identified": "[PLAYER_MTNGv0hT] ([TEAM_]) attempts to put the ball in from a rebound with his long-range shot, but it isn't accurate enough and the ball goes wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) attempts to put the ball in from a rebound with his long-range shot, but it isn't accurate enough and the ball goes wide of the left post.",
"visibility": "shown",
"position": "896000"
},
{
"important": false,
"gameTime": "2 - 13:29",
"label": "",
"description": "Ander Herrera (Manchester United) attempts to find one of his teammates inside the box with a chip pass, but one of the defending players reacts superbly and intercepts the ball.",
"identified": "[PLAYER_jyzWX8yk] ([TEAM_]) attempts to find one of his teammates inside the box with a chip pass, but one of the defending players reacts superbly and intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find one of his teammates inside the box with a chip pass, but one of the defending players reacts superbly and intercepts the ball.",
"visibility": "shown",
"position": "809000"
},
{
"important": false,
"gameTime": "2 - 11:36",
"label": "",
"description": "Another attempt to send the ball beyond the defence by Ander Herrera (Manchester United) is thwarted and cleared to safety.",
"identified": "Another attempt to send the ball beyond the defence by [PLAYER_jyzWX8yk] ([TEAM_]) is thwarted and cleared to safety.",
"anonymized": "Another attempt to send the ball beyond the defence by [PLAYER] ([TEAM]) is thwarted and cleared to safety.",
"visibility": "shown",
"position": "696000"
},
{
"important": false,
"gameTime": "2 - 10:03",
"label": "corner",
"description": "Henrikh Mkhitaryan (Manchester United) sends the corner into the box, but Simon Mignolet intercepts it and averts the threat.",
"identified": "[PLAYER_KKi1DwHC] ([TEAM_]) sends the corner into the box, but [PLAYER_YVcnMAp6] intercepts it and averts the threat.",
"anonymized": "[PLAYER] ([TEAM]) sends the corner into the box, but [PLAYER] intercepts it and averts the threat.",
"visibility": "shown",
"position": "603000"
},
{
"important": false,
"gameTime": "2 - 09:33",
"label": "",
"description": "Henrikh Mkhitaryan (Manchester United) breaks past challenges inside the box, but puts too much pace on his pass to Anthony Martial. Now Manchester Utd have a corner.",
"identified": "[PLAYER_KKi1DwHC] ([TEAM_]) breaks past challenges inside the box, but puts too much pace on his pass to [PLAYER_GrS6Vr75]. Now [TEAM_ppjDR086] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) breaks past challenges inside the box, but puts too much pace on his pass to [PLAYER]. Now [TEAM] have a corner.",
"visibility": "shown",
"position": "573000"
},
{
"important": false,
"gameTime": "2 - 08:11",
"label": "",
"description": "Wayne Rooney (Manchester United) commits a foul and Michael Oliver immediately signals a free kick.",
"identified": "[PLAYER_WfXv1DCa] ([TEAM_]) commits a foul and [REFEREE] immediately signals a free kick.",
"anonymized": "[PLAYER] ([TEAM]) commits a foul and [REFEREE] immediately signals a free kick.",
"visibility": "shown",
"position": "491000"
},
{
"important": false,
"gameTime": "2 - 05:21",
"label": "",
"description": "Divock Origi (Liverpool) pulls the jersey of one of the opposition players and Michael Oliver blows his whistle for a foul. Manchester Utd are given an advantage. They have a free kick.",
"identified": "[PLAYER_jeRaNgKg] ([TEAM_]) pulls the jersey of one of the opposition players and [REFEREE] blows his whistle for a foul. [TEAM_ppjDR086] are given an advantage. They have a free kick.",
"anonymized": "[PLAYER] ([TEAM]) pulls the jersey of one of the opposition players and [REFEREE] blows his whistle for a foul. [TEAM] are given an advantage. They have a free kick.",
"visibility": "shown",
"position": "321000"
},
{
"important": false,
"gameTime": "2 - 04:39",
"label": "corner",
"description": "Wayne Rooney (Manchester United) takes the corner but only sends it into a huddle of the defenders and one of them makes a good clearance.",
"identified": "[PLAYER_WfXv1DCa] ([TEAM_]) takes the corner but only sends it into a huddle of the defenders and one of them makes a good clearance.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but only sends it into a huddle of the defenders and one of them makes a good clearance.",
"visibility": "shown",
"position": "279000"
},
{
"important": false,
"gameTime": "2 - 04:28",
"label": "",
"description": "The ball is cleared after Wayne Rooney (Manchester United) attempted to dribble past an opposing player. The linesman points to the corner flag, Manchester Utd are going to take it.",
"identified": "The ball is cleared after [PLAYER_WfXv1DCa] ([TEAM_]) attempted to dribble past an opposing player. The linesman points to the corner flag, [TEAM_ppjDR086] are going to take it.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. The linesman points to the corner flag, [TEAM] are going to take it.",
"visibility": "shown",
"position": "268000"
},
{
"important": false,
"gameTime": "2 - 03:36",
"label": "corner",
"description": "James Milner (Liverpool) swings in the corner, but it's comfortably cleared away.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) swings in the corner, but it's comfortably cleared away.",
"anonymized": "[PLAYER] ([TEAM]) swings in the corner, but it's comfortably cleared away.",
"visibility": "shown",
"position": "216000"
},
{
"important": true,
"gameTime": "2 - 03:03",
"label": "",
"description": "The defence had a hard time blocking out the strike from Divock Origi (Liverpool). He didn't hesitate and finished from outside the box right after he had received a pass from his teammate. Liverpool earn a corner.",
"identified": "The defence had a hard time blocking out the strike from [PLAYER_jeRaNgKg] ([TEAM_]). He didn't hesitate and finished from outside the box right after he had received a pass from his teammate. [TEAM_] earn a corner.",
"anonymized": "The defence had a hard time blocking out the strike from [PLAYER] ([TEAM]). He didn't hesitate and finished from outside the box right after he had received a pass from his teammate. [TEAM] earn a corner.",
"visibility": "shown",
"position": "183000"
},
{
"important": false,
"gameTime": "2 - 02:48",
"label": "",
"description": "Ander Herrera (Manchester United) attempts to find one of his teammates with a fine lofted pass, but the defence reacts well to intercept the effort.",
"identified": "[PLAYER_jyzWX8yk] ([TEAM_]) attempts to find one of his teammates with a fine lofted pass, but the defence reacts well to intercept the effort.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find one of his teammates with a fine lofted pass, but the defence reacts well to intercept the effort.",
"visibility": "shown",
"position": "168000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "substitution",
"description": "The teams are back out for the second half and here is a change on the pitch. Jose Mourinho gives a chance to Wayne Rooney (Manchester United) and Michael Carrick is off.",
"identified": "The teams are back out for the second half and here is a change on the pitch. [COACH_AwXQwGFe] gives a chance to [PLAYER_WfXv1DCa] ([TEAM_]) and [PLAYER_phM8NElP] is off.",
"anonymized": "The teams are back out for the second half and here is a change on the pitch. [COACH] gives a chance to [PLAYER] ([TEAM]) and [PLAYER] is off.",
"visibility": "shown",
"position": "1000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The half-time break is over and the second half is about to start.",
"identified": "The half-time break is over and the second half is about to start.",
"anonymized": "The half-time break is over and the second half is about to start.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 46:59",
"label": "",
"description": "Not a lot happening in the first half, it hasn't been the best game so far in terms of quality. We are witnessing quite a balanced game with both teams struggling to prevail. Both teams are attempting to play possession football.",
"identified": "Not a lot happening in the first half, it hasn't been the best game so far in terms of quality. We are witnessing quite a balanced game with both teams struggling to prevail. Both teams are attempting to play possession football.",
"anonymized": "Not a lot happening in the first half, it hasn't been the best game so far in terms of quality. We are witnessing quite a balanced game with both teams struggling to prevail. Both teams are attempting to play possession football.",
"visibility": "shown",
"position": "2819000"
},
{
"important": true,
"gameTime": "1 - 46:10",
"label": "whistle",
"description": "There will be nothing more to see in the first half. The whistle blowing of Michael Oliver has ended it.",
"identified": "There will be nothing more to see in the first half. The whistle blowing of [REFEREE] has ended it.",
"anonymized": "There will be nothing more to see in the first half. The whistle blowing of [REFEREE] has ended it.",
"visibility": "shown",
"position": "2770000"
},
{
"important": false,
"gameTime": "1 - 45:43",
"label": "",
"description": "It could have been a good chance to score! Anthony Martial (Manchester United) fails to release Paul Pogba with a through ball as the defence is alert and clears.",
"identified": "It could have been a good chance to score! [PLAYER_GrS6Vr75] ([TEAM_]) fails to release [PLAYER_MTNGv0hT] with a through ball as the defence is alert and clears.",
"anonymized": "It could have been a good chance to score! [PLAYER] ([TEAM]) fails to release [PLAYER] with a through ball as the defence is alert and clears.",
"visibility": "shown",
"position": "2743000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "1 min. of stoppage-time to be played.",
"identified": "1 min. of stoppage-time to be played.",
"anonymized": "1 min. of stoppage-time to be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 43:03",
"label": "",
"description": "The foul by Emre Can (Liverpool) was seen by Michael Oliver who didn't hesitate to blow the whistle.",
"identified": "The foul by [PLAYER_YJu3hSpk] ([TEAM_]) was seen by [REFEREE] who didn't hesitate to blow the whistle.",
"anonymized": "The foul by [PLAYER] ([TEAM]) was seen by [REFEREE] who didn't hesitate to blow the whistle.",
"visibility": "shown",
"position": "2583000"
},
{
"important": false,
"gameTime": "1 - 42:33",
"label": "corner",
"description": "James Milner (Liverpool) takes the corner.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) takes the corner.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner.",
"visibility": "shown",
"position": "2553000"
},
{
"important": false,
"gameTime": "1 - 42:10",
"label": "",
"description": "The resulting set piece, sent into the penalty area by James Milner (Liverpool), was easily dealt with by one of the defenders. The referee blows his whistle, Liverpool are awarded a corner kick.",
"identified": "The resulting set piece, sent into the penalty area by [PLAYER_QLY3kAEt] ([TEAM_]), was easily dealt with by one of the defenders. The referee blows his whistle, [TEAM_] are awarded a corner kick.",
"anonymized": "The resulting set piece, sent into the penalty area by [PLAYER] ([TEAM]), was easily dealt with by one of the defenders. The referee blows his whistle, [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "2530000"
},
{
"important": false,
"gameTime": "1 - 41:43",
"label": "",
"description": "Antonio Valencia (Manchester United) was trying to get to the ball but clattered into the legs of the opponent as well. Michael Oliver blows his whistle for an infringement. Liverpool win a free kick.",
"identified": "[PLAYER_Ecu9nqDs] ([TEAM_]) was trying to get to the ball but clattered into the legs of the opponent as well. [REFEREE] blows his whistle for an infringement. [TEAM_] win a free kick.",
"anonymized": "[PLAYER] ([TEAM]) was trying to get to the ball but clattered into the legs of the opponent as well. [REFEREE] blows his whistle for an infringement. [TEAM] win a free kick.",
"visibility": "shown",
"position": "2503000"
},
{
"important": true,
"gameTime": "1 - 40:15",
"label": "",
"description": "Simon Mignolet pulls off a great save to deny Henrikh Mkhitaryan (Manchester United), who makes himself some space inside the box and unleashes a quick shot towards the middle of the goal.",
"identified": "[PLAYER_YVcnMAp6] pulls off a great save to deny [PLAYER_KKi1DwHC] ([TEAM_]), who makes himself some space inside the box and unleashes a quick shot towards the middle of the goal.",
"anonymized": "[PLAYER] pulls off a great save to deny [PLAYER] ([TEAM]), who makes himself some space inside the box and unleashes a quick shot towards the middle of the goal.",
"visibility": "shown",
"position": "2415000"
},
{
"important": false,
"gameTime": "1 - 38:25",
"label": "",
"description": "Adam Lallana (Liverpool) gets on the end of a pass on the edge of the box but his shot is blocked.",
"identified": "[PLAYER_65ZQWgft] ([TEAM_]) gets on the end of a pass on the edge of the box but his shot is blocked.",
"anonymized": "[PLAYER] ([TEAM]) gets on the end of a pass on the edge of the box but his shot is blocked.",
"visibility": "shown",
"position": "2305000"
},
{
"important": false,
"gameTime": "1 - 35:52",
"label": "corner",
"description": "Henrikh Mkhitaryan (Manchester United) floats the ball in from the corner but it's intercepted.",
"identified": "[PLAYER_KKi1DwHC] ([TEAM_]) floats the ball in from the corner but it's intercepted.",
"anonymized": "[PLAYER] ([TEAM]) floats the ball in from the corner but it's intercepted.",
"visibility": "shown",
"position": "2152000"
},
{
"important": false,
"gameTime": "1 - 35:38",
"label": "",
"description": "An attempted cross from Antonio Valencia (Manchester United) is cleared. Manchester Utd have been awarded a corner kick.",
"identified": "An attempted cross from [PLAYER_Ecu9nqDs] ([TEAM_]) is cleared. [TEAM_ppjDR086] have been awarded a corner kick.",
"anonymized": "An attempted cross from [PLAYER] ([TEAM]) is cleared. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "2138000"
},
{
"important": false,
"gameTime": "1 - 34:24",
"label": "corner",
"description": "The corner from James Milner (Liverpool) is intercepted by David de Gea.",
"identified": "The corner from [PLAYER_QLY3kAEt] ([TEAM_]) is intercepted by [PLAYER_d6AEQ6OD].",
"anonymized": "The corner from [PLAYER] ([TEAM]) is intercepted by [PLAYER].",
"visibility": "shown",
"position": "2064000"
},
{
"important": false,
"gameTime": "1 - 34:15",
"label": "",
"description": "Divock Origi (Liverpool) slaloms his way past challenges, but an opposing player does well to get the ball away. The ball is out of play. Liverpool will have a chance to score from a corner.",
"identified": "[PLAYER_jeRaNgKg] ([TEAM_]) slaloms his way past challenges, but an opposing player does well to get the ball away. The ball is out of play. [TEAM_] will have a chance to score from a corner.",
"anonymized": "[PLAYER] ([TEAM]) slaloms his way past challenges, but an opposing player does well to get the ball away. The ball is out of play. [TEAM] will have a chance to score from a corner.",
"visibility": "shown",
"position": "2055000"
},
{
"important": false,
"gameTime": "1 - 32:57",
"label": "corner",
"description": "Henrikh Mkhitaryan (Manchester United) steps up to take the corner, but the ball just sails in among the defenders.",
"identified": "[PLAYER_KKi1DwHC] ([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": "1977000"
},
{
"important": true,
"gameTime": "1 - 32:30",
"label": "",
"description": "Simon Mignolet pulls off a stunning save to block the free kick from Zlatan Ibrahimovic (Manchester United). The ball was heading towards the bottom left corner. Manchester Utd force a corner. Their opponents will face another attacking threat.",
"identified": "[PLAYER_YVcnMAp6] pulls off a stunning save to block the free kick from [PLAYER_AiH2zDve] ([TEAM_]). The ball was heading towards the bottom left corner. [TEAM_ppjDR086] force a corner. Their opponents will face another attacking threat.",
"anonymized": "[PLAYER] pulls off a stunning save to block the free kick from [PLAYER] ([TEAM]). The ball was heading towards the bottom left corner. [TEAM] force a corner. Their opponents will face another attacking threat.",
"visibility": "shown",
"position": "1950000"
},
{
"important": false,
"gameTime": "1 - 31:34",
"label": "",
"description": "Michael Oliver blows the whistle, Divock Origi (Liverpool) is penalised for a foul. Manchester Utd are awarded a free kick from a dangerous position.",
"identified": "[REFEREE] blows the whistle, [PLAYER_jeRaNgKg] ([TEAM_]) is penalised for a foul. [TEAM_ppjDR086] are awarded a free kick from a dangerous position.",
"anonymized": "[REFEREE] blows the whistle, [PLAYER] ([TEAM]) is penalised for a foul. [TEAM] are awarded a free kick from a dangerous position.",
"visibility": "shown",
"position": "1894000"
},
{
"important": false,
"gameTime": "1 - 31:16",
"label": "corner",
"description": "Corner kick. Henrikh Mkhitaryan (Manchester United) is ready to send the ball into the box.",
"identified": "Corner kick. [PLAYER_KKi1DwHC] ([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": "1876000"
},
{
"important": false,
"gameTime": "1 - 31:04",
"label": "",
"description": "The free kick is delivered by Henrikh Mkhitaryan (Manchester United) but it's not one of his best and is easily cleared. The referee signals a corner kick to Manchester Utd.",
"identified": "The free kick is delivered by [PLAYER_KKi1DwHC] ([TEAM_]) but it's not one of his best and is easily cleared. The referee signals a corner kick to [TEAM_ppjDR086].",
"anonymized": "The free kick is delivered by [PLAYER] ([TEAM]) but it's not one of his best and is easily cleared. The referee signals a corner kick to [TEAM].",
"visibility": "shown",
"position": "1864000"
},
{
"important": true,
"gameTime": "1 - 30:44",
"label": "y-card",
"description": "Michael Oliver shows a yellow card to Dejan Lovren (Liverpool) for a tough tackle.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_GAcQF9Z6] ([TEAM_]) for a tough tackle.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for a tough tackle.",
"visibility": "shown",
"position": "1844000"
},
{
"important": false,
"gameTime": "1 - 28:59",
"label": "",
"description": "Anthony Martial (Manchester United) serves up a nice cross, but the defence clears the danger.",
"identified": "[PLAYER_GrS6Vr75] ([TEAM_]) serves up a nice cross, but the defence clears the danger.",
"anonymized": "[PLAYER] ([TEAM]) serves up a nice cross, but the defence clears the danger.",
"visibility": "shown",
"position": "1739000"
},
{
"important": true,
"gameTime": "1 - 26:51",
"label": "soccer-ball",
"description": "James Milner (Liverpool) smoothly converts the penalty with a stunning effort which ends up inside the right post.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) smoothly converts the penalty with a stunning effort which ends up inside the right post.",
"anonymized": "[PLAYER] ([TEAM]) smoothly converts the penalty with a stunning effort which ends up inside the right post.",
"visibility": "shown",
"position": "1611000"
},
{
"important": true,
"gameTime": "1 - 26:20",
"label": "",
"description": "James Milner (Liverpool) is going to take the penalty!",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) is going to take the penalty!",
"anonymized": "[PLAYER] ([TEAM]) is going to take the penalty!",
"visibility": "shown",
"position": "1580000"
},
{
"important": true,
"gameTime": "1 - 26:01",
"label": "penalty",
"description": "Paul Pogba (Manchester United) probably handled the ball inside the penalty area. Liverpool are given a huge opportunity to score - it's a penalty kick!",
"identified": "[PLAYER_MTNGv0hT] ([TEAM_]) probably handled the ball inside the penalty area. [TEAM_] are given a huge opportunity to score - it's a penalty kick!",
"anonymized": "[PLAYER] ([TEAM]) probably handled the ball inside the penalty area. [TEAM] are given a huge opportunity to score - it's a penalty kick!",
"visibility": "shown",
"position": "1561000"
},
{
"important": false,
"gameTime": "1 - 25:44",
"label": "corner",
"description": "James Milner (Liverpool) is about to take a corner kick.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) is about to take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) is about to take a corner kick.",
"visibility": "shown",
"position": "1544000"
},
{
"important": false,
"gameTime": "1 - 25:23",
"label": "",
"description": "Roberto Firmino (Liverpool) races towards goal but the defender gets back well to make a challenge. The ball goes out of play. Liverpool are awarded a corner kick.",
"identified": "[PLAYER_CCNtplZe] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "1523000"
},
{
"important": false,
"gameTime": "1 - 24:04",
"label": "",
"description": "Trent Alexander-Arnold (Liverpool) meets a cross just outside the area and gets in a strike from a promising position, but the shot is blocked by the defender.",
"identified": "[PLAYER_CEVJy6Bc] ([TEAM_]) meets a cross just outside the area and gets in a strike from a promising position, but the shot is blocked by the defender.",
"anonymized": "[PLAYER] ([TEAM]) meets a cross just outside the area and gets in a strike from a promising position, but the shot is blocked by the defender.",
"visibility": "shown",
"position": "1444000"
},
{
"important": false,
"gameTime": "1 - 22:58",
"label": "",
"description": "Divock Origi (Liverpool) blew a promising chance when he got to a rebound just outside the penalty area. He struck it low towards the middle of the target, but David de Gea pulled off a nice save and to stop the attempt.",
"identified": "[PLAYER_jeRaNgKg] ([TEAM_]) blew a promising chance when he got to a rebound just outside the penalty area. He struck it low towards the middle of the target, but [PLAYER_d6AEQ6OD] pulled off a nice save and to stop the attempt.",
"anonymized": "[PLAYER] ([TEAM]) blew a promising chance when he got to a rebound just outside the penalty area. He struck it low towards the middle of the target, but [PLAYER] pulled off a nice save and to stop the attempt.",
"visibility": "shown",
"position": "1378000"
},
{
"important": false,
"gameTime": "1 - 22:25",
"label": "",
"description": "James Milner (Liverpool) puts a cross into the box from the free kick, but the defender gets there first.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) puts a cross into the box from the free kick, but the defender gets there first.",
"anonymized": "[PLAYER] ([TEAM]) puts a cross into the box from the free kick, but the defender gets there first.",
"visibility": "shown",
"position": "1345000"
},
{
"important": false,
"gameTime": "1 - 21:51",
"label": "",
"description": "Paul Pogba (Manchester United) pulls the shirt of his opponent and the referee stops play for a foul. Free kick. Liverpool will probably just try to cross the ball in from here.",
"identified": "[PLAYER_MTNGv0hT] ([TEAM_]) pulls the shirt of his opponent and the referee stops play for a foul. Free kick. [TEAM_] will probably just try to cross the ball in from here.",
"anonymized": "[PLAYER] ([TEAM]) pulls the shirt of his opponent and the referee stops play for a foul. Free kick. [TEAM] will probably just try to cross the ball in from here.",
"visibility": "shown",
"position": "1311000"
},
{
"important": false,
"gameTime": "1 - 20:12",
"label": "",
"description": "Henrikh Mkhitaryan (Manchester United) swings a cross into the box, but it's far too close to Simon Mignolet, who smothers the ball.",
"identified": "[PLAYER_KKi1DwHC] ([TEAM_]) swings a cross into the box, but it's far too close to [PLAYER_YVcnMAp6], who smothers the ball.",
"anonymized": "[PLAYER] ([TEAM]) swings a cross into the box, but it's far too close to [PLAYER], who smothers the ball.",
"visibility": "shown",
"position": "1212000"
},
{
"important": true,
"gameTime": "1 - 18:46",
"label": "",
"description": "Henrikh Mkhitaryan plays a lovely pass into Paul Pogba (Manchester United), but he can't find the target. His strike from inside the box goes narrowly wide of the right post. The ball goes out of play and Liverpool will have a goal kick.",
"identified": "[PLAYER_KKi1DwHC] plays a lovely pass into [PLAYER_MTNGv0hT] ([TEAM_]), but he can't find the target. His strike from inside the box goes narrowly wide of the right post. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] plays a lovely pass into [PLAYER] ([TEAM]), but he can't find the target. His strike from inside the box goes narrowly wide of the right post. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "1126000"
},
{
"important": false,
"gameTime": "1 - 17:02",
"label": "",
"description": "Roberto Firmino (Liverpool) attempts to find some of his teammates with a dangerous pass from the edge of the box. The opponent's defence, however, intercepts the effort and clears the ball to safety.",
"identified": "[PLAYER_CCNtplZe] ([TEAM_]) attempts to find some of his teammates with a dangerous pass from the edge of the box. The opponent's defence, however, intercepts the effort and clears the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find some of his teammates with a dangerous pass from the edge of the box. The opponent's defence, however, intercepts the effort and clears the ball to safety.",
"visibility": "shown",
"position": "1022000"
},
{
"important": false,
"gameTime": "1 - 15:29",
"label": "",
"description": "The linesman signals that Zlatan Ibrahimovic (Manchester United) is offside and the referee confirms the decision.",
"identified": "The linesman signals that [PLAYER_AiH2zDve] ([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": "929000"
},
{
"important": false,
"gameTime": "1 - 13:07",
"label": "",
"description": "Zlatan Ibrahimovic (Manchester United) comes close to scoring. He peels away from his marker and gets on the end of a cross from Anthony Martial, but he hits a shot just wide of the right post. The ball is off of the pitch and it's a goal kick for Liverpool.",
"identified": "[PLAYER_AiH2zDve] ([TEAM_]) comes close to scoring. He peels away from his marker and gets on the end of a cross from [PLAYER_GrS6Vr75], but he hits a shot just wide of the right post. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) comes close to scoring. He peels away from his marker and gets on the end of a cross from [PLAYER], but he hits a shot just wide of the right post. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "787000"
},
{
"important": false,
"gameTime": "1 - 11:53",
"label": "",
"description": "Anthony Martial (Manchester United) looks to break free, but an opposing player clears the ball away.",
"identified": "[PLAYER_GrS6Vr75] ([TEAM_]) looks to break free, but an opposing player clears the ball away.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away.",
"visibility": "shown",
"position": "713000"
}
]
} |