File size: 70,619 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 |
{
"timestamp": "1446994800",
"score": "3 - 0",
"round": "11",
"teams": [
"Barcelona",
"Villarreal"
],
"lineup": {
"home": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "42SIX9sl",
"name": "Alba J.",
"captain": "",
"detail_link": "/player/alba-jordi/42SIX9sl/",
"short_name": "Alba",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Jordi Alba"
},
{
"hash": "8nVXP7xE",
"name": "Bravo C.",
"captain": "",
"detail_link": "/player/bravo-claudio/8nVXP7xE/",
"short_name": "Bravo",
"shirt_number": "13",
"country": "Chile",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Claudio Bravo"
},
{
"hash": "CU4pL3ue",
"name": "Busquets S.",
"captain": "",
"detail_link": "/player/busquets-sergio/CU4pL3ue/",
"short_name": "Busquets",
"shirt_number": "5",
"country": "Spain",
"facts": [
{
"type": "8",
"time": "60' Neymar (Busquets S.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Sergio Busquets"
},
{
"hash": "6m8LRsMC",
"name": "Dani Alves",
"captain": "",
"detail_link": "/player/alves-dani/6m8LRsMC/",
"short_name": "Dani Alves",
"shirt_number": "6",
"country": "Brazil",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Dani Alves"
},
{
"hash": "E7AksdFj",
"name": "Iniesta A.",
"captain": "(C)",
"detail_link": "/player/iniesta-andres/E7AksdFj/",
"short_name": "Iniesta",
"shirt_number": "8",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "37' Iniesta A. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Andres Iniesta"
},
{
"hash": "rmIQaghb",
"name": "Mathieu J.",
"captain": "",
"detail_link": "/player/mathieu-jeremy/rmIQaghb/",
"short_name": "Mathieu",
"shirt_number": "24",
"country": "France",
"facts": [
{
"type": "1",
"time": "27' Mathieu J. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Jeremy Mathieu"
},
{
"hash": "CKYnnUEo",
"name": "Munir El Haddadi",
"captain": "",
"detail_link": "/player/munir-el-haddadi/CKYnnUEo/",
"short_name": "Munir El Haddadi",
"shirt_number": "17",
"country": "Morocco",
"facts": [
{
"type": "6",
"time": "79'",
"description": "Ramirez S.",
"linked_player_hash": "fapXP9VS"
}
],
"lineup": 9,
"starting": true,
"long_name": "Munir El Haddadi"
},
{
"hash": "jNOPwl3h",
"name": "Neymar",
"captain": "",
"detail_link": "/player/neymar/jNOPwl3h/",
"short_name": "Neymar",
"shirt_number": "11",
"country": "Brazil",
"facts": [
{
"type": "1",
"time": "47' Neymar (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "3",
"time": "60' Neymar (Busquets S.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "3",
"time": "85' Neymar (Suarez L.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Neymar"
},
{
"hash": "fRBrHCRh",
"name": "Pique G.",
"captain": "",
"detail_link": "/player/pique-gerard/fRBrHCRh/",
"short_name": "Pique",
"shirt_number": "3",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "64' Pique G. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "82'",
"description": "Bartra M.",
"linked_player_hash": "8K4WA9Gh"
}
],
"lineup": 3,
"starting": true,
"long_name": "Gerard Pique"
},
{
"hash": "W2R804U4",
"name": "Roberto S.",
"captain": "",
"detail_link": "/player/roberto-sergi/W2R804U4/",
"short_name": "Roberto",
"shirt_number": "20",
"country": "Spain",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Sergi Roberto"
},
{
"hash": "dUShzrBp",
"name": "Suarez L.",
"captain": "",
"detail_link": "/player/suarez-luis/dUShzrBp/",
"short_name": "Suarez",
"shirt_number": "9",
"country": "Uruguay",
"facts": [
{
"type": "1",
"time": "47' Suarez L. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "8",
"time": "85' Neymar (Suarez L.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Luis Suarez"
},
{
"hash": "Eur1zaTu",
"name": "Adriano",
"captain": "",
"detail_link": "/player/adriano/Eur1zaTu/",
"short_name": "Adriano",
"shirt_number": "21",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Adriano"
},
{
"hash": "8K4WA9Gh",
"name": "Bartra M.",
"captain": "",
"detail_link": "/player/bartra-marc/8K4WA9Gh/",
"short_name": "Bartra",
"shirt_number": "15",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "82'",
"description": "Pique G.",
"linked_player_hash": "fRBrHCRh"
}
],
"lineup": null,
"starting": false,
"long_name": "Marc Bartra"
},
{
"hash": "raqVZ405",
"name": "Gumbau G.",
"captain": "",
"detail_link": "/player/gumbau-gerard/raqVZ405/",
"short_name": "Gumbau",
"shirt_number": "28",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Gerard Gumbau"
},
{
"hash": "fapXP9VS",
"name": "Ramirez S.",
"captain": "",
"detail_link": "/player/ramirez-sandro/fapXP9VS/",
"short_name": "Ramirez",
"shirt_number": "19",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "79'",
"description": "Munir El Haddadi",
"linked_player_hash": "CKYnnUEo"
}
],
"lineup": null,
"starting": false,
"long_name": "Sandro Ramirez"
},
{
"hash": "M1U7TiW3",
"name": "Samper S.",
"captain": "",
"detail_link": "/player/samper-sergi/M1U7TiW3/",
"short_name": "Samper",
"shirt_number": "26",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Sergi Samper"
},
{
"hash": "byxc46yl",
"name": "ter Stegen M.",
"captain": "",
"detail_link": "/player/ter-stegen-marc-andre/byxc46yl/",
"short_name": "ter Stegen",
"shirt_number": "1",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marc-Andre ter Stegen"
},
{
"hash": "2HErrnlb",
"name": "Vermaelen T.",
"captain": "",
"detail_link": "/player/vermaelen-thomas/2HErrnlb/",
"short_name": "Vermaelen",
"shirt_number": "23",
"country": "Belgium",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Thomas Vermaelen"
}
],
"coach": [
{
"hash": "8MdrBIUb",
"name": "Enrique L.",
"captain": "",
"detail_link": "/player/enrique-luis/8MdrBIUb/",
"short_name": "Enrique L.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Luis Enrique"
}
]
},
"away": {
"tactic": "1-4-4-1-1",
"players": [
{
"hash": "phOf2OAa",
"name": "Areola A.",
"captain": "",
"detail_link": "/player/areola-alphonse/phOf2OAa/",
"short_name": "Areola",
"shirt_number": "13",
"country": "France",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Alphonse Areola"
},
{
"hash": "Gt8A7cHr",
"name": "Bonera D.",
"captain": "",
"detail_link": "/player/bonera-daniele/Gt8A7cHr/",
"short_name": "Bonera",
"shirt_number": "23",
"country": "Italy",
"facts": [
{
"type": "1",
"time": "72' Bonera D. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Daniele Bonera"
},
{
"hash": "bcy6CWV1",
"name": "Bruno",
"captain": "(C)",
"detail_link": "/player/bruno/bcy6CWV1/",
"short_name": "Bruno",
"shirt_number": "21",
"country": "Spain",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Bruno"
},
{
"hash": "O6bdhMA2",
"name": "Castillejo S.",
"captain": "",
"detail_link": "/player/castillejo-samu/O6bdhMA2/",
"short_name": "Castillejo",
"shirt_number": "19",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "79'",
"description": "Samuel",
"linked_player_hash": "zi3Gh8e3"
}
],
"lineup": 6,
"starting": true,
"long_name": "Samu Castillejo"
},
{
"hash": "nsEvRNJH",
"name": "Costa J.",
"captain": "",
"detail_link": "/player/costa-jaume/nsEvRNJH/",
"short_name": "Costa",
"shirt_number": "11",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "69' Costa J. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Jaume Costa"
},
{
"hash": "2oQBM6hE",
"name": "dos Santos J.",
"captain": "",
"detail_link": "/player/dos-santos-jonathan/2oQBM6hE/",
"short_name": "dos Santos",
"shirt_number": "8",
"country": "Mexico",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Jonathan dos Santos"
},
{
"hash": "bqApK6mO",
"name": "Mario Gaspar",
"captain": "",
"detail_link": "/player/mario-gaspar/bqApK6mO/",
"short_name": "Mario Gaspar",
"shirt_number": "2",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "39' Mario Gaspar (Elbowing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Mario Gaspar"
},
{
"hash": "faDnJNSq",
"name": "Pina T.",
"captain": "",
"detail_link": "/player/pina-tomas/faDnJNSq/",
"short_name": "Pina",
"shirt_number": "4",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "66'",
"description": "Bakambu C.",
"linked_player_hash": "vZ3QJXBc"
}
],
"lineup": 7,
"starting": true,
"long_name": "Tomas Pina"
},
{
"hash": "ILWWRPIU",
"name": "Ruiz V.",
"captain": "",
"detail_link": "/player/ruiz-victor/ILWWRPIU/",
"short_name": "Ruiz",
"shirt_number": "6",
"country": "Spain",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Victor Ruiz"
},
{
"hash": "ttgS4CUb",
"name": "Soldado R.",
"captain": "",
"detail_link": "/player/soldado-roberto/ttgS4CUb/",
"short_name": "Soldado",
"shirt_number": "9",
"country": "Spain",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Roberto Soldado"
},
{
"hash": "xWwucZ71",
"name": "Suarez D.",
"captain": "",
"detail_link": "/player/suarez-denis/xWwucZ71/",
"short_name": "Suarez",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Denis Suarez"
},
{
"hash": "vZ3QJXBc",
"name": "Bakambu C.",
"captain": "",
"detail_link": "/player/bakambu-cedric/vZ3QJXBc/",
"short_name": "Bakambu",
"shirt_number": "17",
"country": "DR Congo",
"facts": [
{
"type": "7",
"time": "66'",
"description": "Pina T.",
"linked_player_hash": "faDnJNSq"
}
],
"lineup": null,
"starting": false,
"long_name": "Cedric Bakambu"
},
{
"hash": "vm3VU57s",
"name": "Barbosa M.",
"captain": "",
"detail_link": "/player/barbosa-mariano/vm3VU57s/",
"short_name": "Barbosa",
"shirt_number": "25",
"country": "Argentina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mariano Barbosa"
},
{
"hash": "4QCw9mkq",
"name": "Jokic B.",
"captain": "",
"detail_link": "/player/jokic-bojan/4QCw9mkq/",
"short_name": "Jokic",
"shirt_number": "3",
"country": "Slovenia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Bojan Jokic"
},
{
"hash": "r5rW42rc",
"name": "Leiva N.",
"captain": "",
"detail_link": "/player/leiva-nahuel/r5rW42rc/",
"short_name": "Leiva",
"shirt_number": "26",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Nahuel Leiva"
},
{
"hash": "pxxbty9G",
"name": "Rukavina A.",
"captain": "",
"detail_link": "/player/rukavina-antonio/pxxbty9G/",
"short_name": "Rukavina",
"shirt_number": "22",
"country": "Serbia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Antonio Rukavina"
},
{
"hash": "zi3Gh8e3",
"name": "Samuel",
"captain": "",
"detail_link": "/player/samuel/zi3Gh8e3/",
"short_name": "Samuel",
"shirt_number": "7",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "79'",
"description": "Castillejo S.",
"linked_player_hash": "O6bdhMA2"
}
],
"lineup": null,
"starting": false,
"long_name": "Samuel"
},
{
"hash": "E77oeEa6",
"name": "Trigueros M.",
"captain": "",
"detail_link": "/player/trigueros-manuel/E77oeEa6/",
"short_name": "Trigueros",
"shirt_number": "14",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Manu Trigueros"
}
],
"coach": [
{
"hash": "KdlyyNgc",
"name": "Marcelino G.",
"captain": "",
"detail_link": "/player/marcelino/KdlyyNgc/",
"short_name": "Marcelino G.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marcelino"
}
]
}
},
"referee": [
"Gomez C."
],
"venue": [
"Camp Nou (Barcelona)"
],
"attendance": [
"74 109"
],
"referee_matched": [
"Carlos Clos Gomez"
],
"referee_found": [
"Carlos Clos Gomez"
],
"coach_matched": [
"Marcelino Garcia Toral",
"Luis Enrique"
],
"gameHomeTeam": "Barcelona",
"home": {
"name": "Barcelona",
"detail_link": "/team/barcelona/SKbpVP5K",
"hash": "SKbpVP5K",
"names": [
"Barcelona",
"barcelona"
]
},
"gameAwayTeam": "Villarreal",
"away": {
"name": "Villarreal",
"detail_link": "/team/villarreal/lUatW5jE",
"hash": "lUatW5jE",
"names": [
"Villarreal",
"Villarreal (Esp)",
"villarreal"
]
},
"gameDate": "08/11/2015 - 16:00",
"annotations": [
{
"important": false,
"gameTime": "2 - 47:59",
"label": "",
"description": "The fans must be pleased with the show they have seen on the pitch today. There was no chance to get bored as the game was very attractive. Let's hope the players won't lose their passion and determination in the future matches. The home side dominated the game. The tactic of the home side was to keep the ball at their feet as much as possible, while the away team tried to attack as quickly and accurately as possible.",
"identified": "The fans must be pleased with the show they have seen on the pitch today. There was no chance to get bored as the game was very attractive. Let's hope the players won't lose their passion and determination in the future matches. The home side dominated the game. The tactic of the home side was to keep the ball at their feet as much as possible, while the away team tried to attack as quickly and accurately as possible.",
"anonymized": "The fans must be pleased with the show they have seen on the pitch today. There was no chance to get bored as the game was very attractive. Let's hope the players won't lose their passion and determination in the future matches. The home side dominated the game. The tactic of the home side was to keep the ball at their feet as much as possible, while the away team tried to attack as quickly and accurately as possible.",
"visibility": "shown",
"position": "2879000"
},
{
"important": true,
"gameTime": "2 - 47:09",
"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": "2829000"
},
{
"important": true,
"gameTime": "2 - 45:25",
"label": "",
"description": "Luis Suarez (Barcelona) spurns a great opportunity from inside the 6-yard box. The ball flies narrowly wide of the left post.",
"identified": "[PLAYER_xWwucZ71] ([TEAM_]) spurns a great opportunity from inside the 6-yard box. The ball flies narrowly wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) spurns a great opportunity from inside the 6-yard box. The ball flies narrowly wide of the left post.",
"visibility": "shown",
"position": "2725000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "There will be a minimum of 2 min. of added time.",
"identified": "There will be a minimum of 2 min. of added time.",
"anonymized": "There will be a minimum of 2 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "2 - 39:41",
"label": "soccer-ball",
"description": "Goal - 3:0! Luis Suarez tees up Neymar (Barcelona) inside the box and he rolls the ball into the bottom right corner and past Alphonse Areola.",
"identified": "Goal - 3:0! [PLAYER_xWwucZ71] tees up [PLAYER_jNOPwl3h] ([TEAM_]) inside the box and he rolls the ball into the bottom right corner and past [PLAYER_phOf2OAa].",
"anonymized": "Goal - 3:0! [PLAYER] tees up [PLAYER] ([TEAM]) inside the box and he rolls the ball into the bottom right corner and past [PLAYER].",
"visibility": "shown",
"position": "2381000"
},
{
"important": true,
"gameTime": "2 - 36:14",
"label": "substitution",
"description": "The manager makes a subsitution with Marc Bartra (Barcelona) coming on for Gerard Pique.",
"identified": "The manager makes a subsitution with [PLAYER_8K4WA9Gh] ([TEAM_]) coming on for [PLAYER_fRBrHCRh].",
"anonymized": "The manager makes a subsitution with [PLAYER] ([TEAM]) coming on for [PLAYER].",
"visibility": "shown",
"position": "2174000"
},
{
"important": false,
"gameTime": "2 - 35:32",
"label": "",
"description": "Sergi Roberto (Barcelona) got the ball on the edge of the box and fired in a first-time shot on goal, but his effort floated well over the bar. High, wide and not at all handsome. The ball goes out of play and Villarreal will have a goal kick.",
"identified": "[PLAYER_W2R804U4] ([TEAM_]) got the ball on the edge of the box and fired in a first-time shot on goal, but his effort floated well over the bar. High, wide and not at all handsome. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) got the ball on the edge of the box and fired in a first-time shot on goal, but his effort floated well over the bar. High, wide and not at all handsome. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "2132000"
},
{
"important": false,
"gameTime": "2 - 34:13",
"label": "",
"description": "Sergi Roberto (Barcelona) has a go from a long way out but it sails way over.",
"identified": "[PLAYER_W2R804U4] ([TEAM_]) has a go from a long way out but it sails way over.",
"anonymized": "[PLAYER] ([TEAM]) has a go from a long way out but it sails way over.",
"visibility": "shown",
"position": "2053000"
},
{
"important": true,
"gameTime": "2 - 33:40",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Samuel (Villarreal) comes onto the pitch for Samu Castillejo.",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_zi3Gh8e3] ([TEAM_]) comes onto the pitch for [PLAYER_O6bdhMA2].",
"anonymized": "The referee stops play so that a substitution can be made and [PLAYER] ([TEAM]) comes onto the pitch for [PLAYER].",
"visibility": "shown",
"position": "2020000"
},
{
"important": true,
"gameTime": "2 - 33:35",
"label": "substitution",
"description": "Here is a change. Munir El Haddadi is going off and Luis Enrique gives the last tactical orders to Sandro Ramirez (Barcelona).",
"identified": "Here is a change. [PLAYER_CKYnnUEo] is going off and [COACH_8MdrBIUb] gives the last tactical orders to [PLAYER_fapXP9VS] ([TEAM_]).",
"anonymized": "Here is a change. [PLAYER] is going off and [COACH] gives the last tactical orders to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2015000"
},
{
"important": true,
"gameTime": "2 - 32:24",
"label": "",
"description": "Luis Suarez (Barcelona) darts into the penalty area to latch on to a pass, and he unleashes a low shot in the direction of the left post. Alphonse Areola is alert and denies him with a nice save.",
"identified": "[PLAYER_xWwucZ71] ([TEAM_]) darts into the penalty area to latch on to a pass, and he unleashes a low shot in the direction of the left post. [PLAYER_phOf2OAa] is alert and denies him with a nice save.",
"anonymized": "[PLAYER] ([TEAM]) darts into the penalty area to latch on to a pass, and he unleashes a low shot in the direction of the left post. [PLAYER] is alert and denies him with a nice save.",
"visibility": "shown",
"position": "1944000"
},
{
"important": false,
"gameTime": "2 - 30:59",
"label": "corner",
"description": "Neymar (Barcelona) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"anonymized": "[PLAYER] ([TEAM]) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"visibility": "shown",
"position": "1859000"
},
{
"important": false,
"gameTime": "2 - 30:47",
"label": "",
"description": "Neymar (Barcelona) fails to send a pass into the box as his effort is cut out. The referee and his assistant both point at the corner flag. Barcelona will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) fails to send a pass into the box as his effort is cut out. The referee and his assistant both point at the corner flag. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) fails to send a pass into the box as his effort is cut out. The referee and his assistant both point at the corner flag. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "1847000"
},
{
"important": false,
"gameTime": "2 - 29:47",
"label": "",
"description": "Luis Suarez (Barcelona) swings a cross into the box, but it's far too close to Alphonse Areola, who smothers the ball.",
"identified": "[PLAYER_xWwucZ71] ([TEAM_]) swings a cross into the box, but it's far too close to [PLAYER_phOf2OAa], 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": "1787000"
},
{
"important": true,
"gameTime": "2 - 26:53",
"label": "y-card",
"description": "Carlos Clos Gomez shows a yellow card to Daniele Bonera (Villarreal), who isn't surprised as the tackle was really hard and late.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_Gt8A7cHr] ([TEAM_]), who isn't surprised as the tackle was really hard and late.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]), who isn't surprised as the tackle was really hard and late.",
"visibility": "shown",
"position": "1613000"
},
{
"important": true,
"gameTime": "2 - 24:50",
"label": "soccer-ball",
"description": "Luis Suarez (Barcelona) smoothly converts the penalty with a beautiful low drive into the left side of the net.",
"identified": "[PLAYER_xWwucZ71] ([TEAM_]) smoothly converts the penalty with a beautiful low drive into the left side of the net.",
"anonymized": "[PLAYER] ([TEAM]) smoothly converts the penalty with a beautiful low drive into the left side of the net.",
"visibility": "shown",
"position": "1490000"
},
{
"important": true,
"gameTime": "2 - 24:38",
"label": "",
"description": "Luis Suarez (Barcelona) will take the responsibility and he is already preparing the ball.",
"identified": "[PLAYER_xWwucZ71] ([TEAM_]) will take the responsibility and he is already preparing the ball.",
"anonymized": "[PLAYER] ([TEAM]) will take the responsibility and he is already preparing the ball.",
"visibility": "shown",
"position": "1478000"
},
{
"important": true,
"gameTime": "2 - 23:55",
"label": "y-card",
"description": "The whistle is blown for an infringement and receives a yellow card!",
"identified": "The whistle is blown for an infringement and receives a yellow card!",
"anonymized": "The whistle is blown for an infringement and receives a yellow card!",
"visibility": "shown",
"position": "1435000"
},
{
"important": true,
"gameTime": "2 - 23:50",
"label": "penalty",
"description": "Carlos Clos Gomez blows his whistle after Alphonse Areola (Villarreal) kicks an opponent's legs instead of the ball. Barcelona are awarded a penalty kick!",
"identified": "[REFEREE] blows his whistle after [PLAYER_phOf2OAa] ([TEAM_]) kicks an opponent's legs instead of the ball. [TEAM_] are awarded a penalty kick!",
"anonymized": "[REFEREE] blows his whistle after [PLAYER] ([TEAM]) kicks an opponent's legs instead of the ball. [TEAM] are awarded a penalty kick!",
"visibility": "shown",
"position": "1430000"
},
{
"important": false,
"gameTime": "2 - 23:30",
"label": "",
"description": "Barcelona players are playing combination football and attempting to create a goal-scoring opportunity, but they will have to wait for that as they have just lost possession due to a poor pass.",
"identified": "[TEAM_] players are playing combination football and attempting to create a goal-scoring opportunity, but they will have to wait for that as they have just lost possession due to a poor pass.",
"anonymized": "[TEAM] players are playing combination football and attempting to create a goal-scoring opportunity, but they will have to wait for that as they have just lost possession due to a poor pass.",
"visibility": "shown",
"position": "1410000"
},
{
"important": false,
"gameTime": "2 - 22:49",
"label": "funfact",
"description": "9:2 \u2013 this is the current number of shots on target.",
"identified": "9:2 \u2013 this is the current number of shots on target.",
"anonymized": "9:2 \u2013 this is the current number of shots on target.",
"visibility": "shown",
"position": "1369000"
},
{
"important": true,
"gameTime": "2 - 20:14",
"label": "substitution",
"description": "Marcelino Garcia Toral prepares a substitution. Tomas Pina is replaced by Cedric Bakambu (Villarreal).",
"identified": "[COACH_KdlyyNgc] prepares a substitution. [PLAYER_faDnJNSq] is replaced by [PLAYER_vZ3QJXBc] ([TEAM_]).",
"anonymized": "[COACH] prepares a substitution. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1214000"
},
{
"important": false,
"gameTime": "2 - 19:22",
"label": "",
"description": "The goalkeeper is not tested by the free kick from 23 metres out by Bruno (Villarreal) as his effort only hit the wall.",
"identified": "The goalkeeper is not tested by the free kick from 23 metres out by [PLAYER_bcy6CWV1] ([TEAM_]) as his effort only hit the wall.",
"anonymized": "The goalkeeper is not tested by the free kick from 23 metres out by [PLAYER] ([TEAM]) as his effort only hit the wall.",
"visibility": "shown",
"position": "1162000"
},
{
"important": true,
"gameTime": "2 - 18:51",
"label": "y-card",
"description": "Gerard Pique (Barcelona) picks up a yellow card for a foul.",
"identified": "[PLAYER_fRBrHCRh] ([TEAM_]) picks up a yellow card for a foul.",
"anonymized": "[PLAYER] ([TEAM]) picks up a yellow card for a foul.",
"visibility": "shown",
"position": "1131000"
},
{
"important": false,
"gameTime": "2 - 18:34",
"label": "",
"description": "Gerard Pique (Barcelona) fouls an opponent. At least that's what referee Carlos Clos Gomez signals. Villarreal earn a free kick which could lead to a goal-scoring opportunity.",
"identified": "[PLAYER_fRBrHCRh] ([TEAM_]) fouls an opponent. At least that's what referee [REFEREE] signals. [TEAM_] earn a free kick which could lead to a goal-scoring opportunity.",
"anonymized": "[PLAYER] ([TEAM]) fouls an opponent. At least that's what referee [REFEREE] signals. [TEAM] earn a free kick which could lead to a goal-scoring opportunity.",
"visibility": "shown",
"position": "1114000"
},
{
"important": true,
"gameTime": "2 - 18:02",
"label": "",
"description": "Andres Iniesta (Barcelona) receives a precise pass and is given time inside the box to send a promising strike towards the middle of the goal. Alphonse Areola guesses his intention and denies him with a fine save.",
"identified": "[PLAYER_E7AksdFj] ([TEAM_]) receives a precise pass and is given time inside the box to send a promising strike towards the middle of the goal. [PLAYER_phOf2OAa] 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": "1082000"
},
{
"important": true,
"gameTime": "2 - 14:56",
"label": "soccer-ball",
"description": "It's 1:0! Sergio Busquets feeds Neymar (Barcelona) inside the box, who is unmarked and buries the ball in the left side of the net.",
"identified": "It's 1:0! [PLAYER_CU4pL3ue] feeds [PLAYER_jNOPwl3h] ([TEAM_]) inside the box, who is unmarked and buries the ball in the left side of the net.",
"anonymized": "It's 1:0! [PLAYER] feeds [PLAYER] ([TEAM]) inside the box, who is unmarked and buries the ball in the left side of the net.",
"visibility": "shown",
"position": "896000"
},
{
"important": false,
"gameTime": "2 - 12:33",
"label": "corner",
"description": "Neymar (Barcelona) sends in a poor cross from the corner and Alphonse Areola has no trouble gathering it.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) sends in a poor cross from the corner and [PLAYER_phOf2OAa] has no trouble gathering it.",
"anonymized": "[PLAYER] ([TEAM]) sends in a poor cross from the corner and [PLAYER] has no trouble gathering it.",
"visibility": "shown",
"position": "753000"
},
{
"important": false,
"gameTime": "2 - 12:01",
"label": "",
"description": "Luis Suarez (Barcelona) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack. The ball goes out of play. Barcelona are awarded a corner kick.",
"identified": "[PLAYER_xWwucZ71] ([TEAM_]) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "721000"
},
{
"important": false,
"gameTime": "2 - 08:37",
"label": "",
"description": "Luis Suarez (Barcelona) creates himself some space around the penalty spot and connects with the free kick. His header is badly mistimed and sails high over the bar.",
"identified": "[PLAYER_xWwucZ71] ([TEAM_]) creates himself some space around the penalty spot and connects with the free kick. His header is badly mistimed and sails high over the bar.",
"anonymized": "[PLAYER] ([TEAM]) creates himself some space around the penalty spot and connects with the free kick. His header is badly mistimed and sails high over the bar.",
"visibility": "shown",
"position": "517000"
},
{
"important": false,
"gameTime": "2 - 08:29",
"label": "",
"description": "Neymar (Barcelona) will take the free kick.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) will take the free kick.",
"anonymized": "[PLAYER] ([TEAM]) will take the free kick.",
"visibility": "shown",
"position": "509000"
},
{
"important": false,
"gameTime": "2 - 07:19",
"label": "",
"description": "A clumsy foul by Jonathan dos Santos (Villarreal) and Carlos Clos Gomez blows his whistle. A free kick to Barcelona.",
"identified": "A clumsy foul by [PLAYER_2oQBM6hE] ([TEAM_]) and [REFEREE] blows his whistle. A free kick to [TEAM_].",
"anonymized": "A clumsy foul by [PLAYER] ([TEAM]) and [REFEREE] blows his whistle. A free kick to [TEAM].",
"visibility": "shown",
"position": "439000"
},
{
"important": false,
"gameTime": "2 - 04:46",
"label": "attendance",
"description": "The attendance for today's match is 74109.",
"identified": "The attendance for today's match is 74109.",
"anonymized": "The attendance for today's match is 74109.",
"visibility": "shown",
"position": "286000"
},
{
"important": false,
"gameTime": "2 - 03:19",
"label": "corner",
"description": "Neymar (Barcelona) attempts to find a teammate with the corner, but the effort is snuffed out by the goalkeeper.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) attempts to find a teammate with the corner, but the effort is snuffed out by the goalkeeper.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find a teammate with the corner, but the effort is snuffed out by the goalkeeper.",
"visibility": "shown",
"position": "199000"
},
{
"important": true,
"gameTime": "2 - 02:52",
"label": "",
"description": "Dani Alves (Barcelona) meets a cross inside the penalty area and unloads a good attempt towards the right side of the goal. Alphonse Areola is prepared, though, and denies him with a fantastic save. Barcelona force a corner. They send men into the box.",
"identified": "[PLAYER_6m8LRsMC] ([TEAM_]) meets a cross inside the penalty area and unloads a good attempt towards the right side of the goal. [PLAYER_phOf2OAa] is prepared, though, and denies him with a fantastic save. [TEAM_] force a corner. They send men into the box.",
"anonymized": "[PLAYER] ([TEAM]) meets a cross inside the penalty area and unloads a good attempt towards the right side of the goal. [PLAYER] is prepared, though, and denies him with a fantastic save. [TEAM] force a corner. They send men into the box.",
"visibility": "shown",
"position": "172000"
},
{
"important": true,
"gameTime": "2 - 01:29",
"label": "y-card",
"description": "The main referee, Carlos Clos Gomez, is apparently not going to tolerate any discussions. Neymar (Barcelona) is given a yellow card for dissent.",
"identified": "The main referee, [REFEREE], is apparently not going to tolerate any discussions. [PLAYER_jNOPwl3h] ([TEAM_]) is given a yellow card for dissent.",
"anonymized": "The main referee, [REFEREE], is apparently not going to tolerate any discussions. [PLAYER] ([TEAM]) is given a yellow card for dissent.",
"visibility": "shown",
"position": "89000"
},
{
"important": true,
"gameTime": "2 - 01:16",
"label": "y-card",
"description": "Luis Suarez (Barcelona) attempts to discuss the decision with Carlos Clos Gomez, but he soon realises that it's not the right thing to do as he sees the yellow.",
"identified": "[PLAYER_xWwucZ71] ([TEAM_]) attempts to discuss the decision with [REFEREE], but he soon realises that it's not the right thing to do as he sees the yellow.",
"anonymized": "[PLAYER] ([TEAM]) attempts to discuss the decision with [REFEREE], but he soon realises that it's not the right thing to do as he sees the yellow.",
"visibility": "shown",
"position": "76000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The whistle blows and Carlos Clos Gomez starts the second half.",
"identified": "The whistle blows and [REFEREE] starts the second half.",
"anonymized": "The whistle blows and [REFEREE] starts the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 45:59",
"label": "",
"description": "We have been witnesses to an ordinary game without many breathtaking situations, but there is still time for improvement in the second half. The home team were mostly in control in the first half. The home players have grown in confidence and started to string some passes together. The visiting side have relied on their defence and counter-attacks.",
"identified": "We have been witnesses to an ordinary game without many breathtaking situations, but there is still time for improvement in the second half. The home team were mostly in control in the first half. The home players have grown in confidence and started to string some passes together. The visiting side have relied on their defence and counter-attacks.",
"anonymized": "We have been witnesses to an ordinary game without many breathtaking situations, but there is still time for improvement in the second half. The home team were mostly in control in the first half. The home players have grown in confidence and started to string some passes together. The visiting side have relied on their defence and counter-attacks.",
"visibility": "shown",
"position": "2759000"
},
{
"important": true,
"gameTime": "1 - 45:04",
"label": "whistle",
"description": "The end of the first half.",
"identified": "The end of the first half.",
"anonymized": "The end of the first half.",
"visibility": "shown",
"position": "2704000"
},
{
"important": true,
"gameTime": "1 - 44:32",
"label": "",
"description": "Samu Castillejo (Villarreal) came close to scoring but should have done much better. His poor attempt from close range ended up in the gloves of Claudio Bravo.",
"identified": "[PLAYER_O6bdhMA2] ([TEAM_]) came close to scoring but should have done much better. His poor attempt from close range ended up in the gloves of [PLAYER_8nVXP7xE].",
"anonymized": "[PLAYER] ([TEAM]) came close to scoring but should have done much better. His poor attempt from close range ended up in the gloves of [PLAYER].",
"visibility": "shown",
"position": "2672000"
},
{
"important": false,
"gameTime": "1 - 43:33",
"label": "",
"description": "Barcelona control the tempo of the game by exchanging some accurate short passes.",
"identified": "[TEAM_] control the tempo of the game by exchanging some accurate short passes.",
"anonymized": "[TEAM] control the tempo of the game by exchanging some accurate short passes.",
"visibility": "shown",
"position": "2613000"
},
{
"important": true,
"gameTime": "1 - 38:49",
"label": "y-card",
"description": "Carlos Clos Gomez shows a yellow card to Mario Gaspar (Villarreal) for a tough tackle.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_bqApK6mO] ([TEAM_]) for a tough tackle.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for a tough tackle.",
"visibility": "shown",
"position": "2329000"
},
{
"important": true,
"gameTime": "1 - 36:58",
"label": "y-card",
"description": "Andres Iniesta (Barcelona) receives a yellow card for chasing the referee and shouting at him.",
"identified": "[PLAYER_E7AksdFj] ([TEAM_]) receives a yellow card for chasing the referee and shouting at him.",
"anonymized": "[PLAYER] ([TEAM]) receives a yellow card for chasing the referee and shouting at him.",
"visibility": "shown",
"position": "2218000"
},
{
"important": false,
"gameTime": "1 - 36:18",
"label": "",
"description": "Roberto Soldado (Villarreal) makes a yard for himself on the edge of the box and produces a poor effort that sails miles wide of the left post.",
"identified": "[PLAYER_W2R804U4] ([TEAM_]) makes a yard for himself on the edge of the box and produces a poor effort that sails miles wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) makes a yard for himself on the edge of the box and produces a poor effort that sails miles wide of the left post.",
"visibility": "shown",
"position": "2178000"
},
{
"important": false,
"gameTime": "1 - 29:40",
"label": "funfact",
"description": "20:5 \u2013 the total goal attempt statistics.",
"identified": "20:5 \u2013 the total goal attempt statistics.",
"anonymized": "20:5 \u2013 the total goal attempt statistics.",
"visibility": "shown",
"position": "1780000"
},
{
"important": false,
"gameTime": "1 - 27:55",
"label": "",
"description": "Denis Suarez (Villarreal) misses a promising opportunity! He rises for a cross and unleashes a poor header from near the penalty spot. The ball floats high over the crossbar!",
"identified": "[PLAYER_xWwucZ71] ([TEAM_]) misses a promising opportunity! He rises for a cross and unleashes a poor header from near the penalty spot. The ball floats high over the crossbar!",
"anonymized": "[PLAYER] ([TEAM]) misses a promising opportunity! He rises for a cross and unleashes a poor header from near the penalty spot. The ball floats high over the crossbar!",
"visibility": "shown",
"position": "1675000"
},
{
"important": true,
"gameTime": "1 - 26:57",
"label": "y-card",
"description": "The foul by Jeremy Mathieu (Barcelona) is worthy of a card and a yellow is duly shown by Carlos Clos Gomez.",
"identified": "The foul by [PLAYER_rmIQaghb] ([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": "1617000"
},
{
"important": true,
"gameTime": "1 - 26:09",
"label": "",
"description": "Alphonse Areola pulls off a great save to deny Jeremy Mathieu (Barcelona), who makes himself some space inside the box and unleashes a quick low drive to the bottom left corner.",
"identified": "[PLAYER_phOf2OAa] pulls off a great save to deny [PLAYER_rmIQaghb] ([TEAM_]), who makes himself some space inside the box and unleashes a quick low drive to the bottom left corner.",
"anonymized": "[PLAYER] pulls off a great save to deny [PLAYER] ([TEAM]), who makes himself some space inside the box and unleashes a quick low drive to the bottom left corner.",
"visibility": "shown",
"position": "1569000"
},
{
"important": false,
"gameTime": "1 - 25:58",
"label": "corner",
"description": "The corner from Jonathan dos Santos (Villarreal) is cleared away by the defence.",
"identified": "The corner from [PLAYER_2oQBM6hE] ([TEAM_]) is cleared away by the defence.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is cleared away by the defence.",
"visibility": "shown",
"position": "1558000"
},
{
"important": false,
"gameTime": "1 - 25:49",
"label": "",
"description": "once again attempts to send a defence-splitting pass, but the opposition's defence is alert and intercepts the ball. Villarreal will have a chance to score from a corner kick.",
"identified": "once again attempts to send a defence-splitting pass, but the opposition's defence is alert and intercepts the ball. [TEAM_] will have a chance to score from a corner kick.",
"anonymized": "once again attempts to send a defence-splitting pass, but the opposition's defence is alert and intercepts the ball. [TEAM] will have a chance to score from a corner kick.",
"visibility": "shown",
"position": "1549000"
},
{
"important": false,
"gameTime": "1 - 24:43",
"label": "corner",
"description": "This corner kick is taken with a short pass by Andres Iniesta (Barcelona).",
"identified": "This corner kick is taken with a short pass by [PLAYER_E7AksdFj] ([TEAM_]).",
"anonymized": "This corner kick is taken with a short pass by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1483000"
},
{
"important": false,
"gameTime": "1 - 24:00",
"label": "",
"description": "Andres Iniesta (Barcelona) came close to scoring but should have done much better. His poor attempt from close range ended up in the gloves of Alphonse Areola. The referee signals a corner kick to Barcelona.",
"identified": "[PLAYER_E7AksdFj] ([TEAM_]) came close to scoring but should have done much better. His poor attempt from close range ended up in the gloves of [PLAYER_phOf2OAa]. The referee signals a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) came close to scoring but should have done much better. His poor attempt from close range ended up in the gloves of [PLAYER]. The referee signals a corner kick to [TEAM].",
"visibility": "shown",
"position": "1440000"
},
{
"important": false,
"gameTime": "1 - 23:27",
"label": "",
"description": "Roberto Soldado (Villarreal) fails to beat the offside trap. The flag goes up and the referee blows his whistle.",
"identified": "[PLAYER_W2R804U4] ([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": "1407000"
},
{
"important": false,
"gameTime": "1 - 21:47",
"label": "corner",
"description": "Neymar (Barcelona) puts a cross into the box from the corner but there is no panic from the opposition and they easily clear.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) puts a cross into the box from the corner but there is no panic from the opposition and they easily clear.",
"anonymized": "[PLAYER] ([TEAM]) puts a cross into the box from the corner but there is no panic from the opposition and they easily clear.",
"visibility": "shown",
"position": "1307000"
},
{
"important": false,
"gameTime": "1 - 21:11",
"label": "",
"description": "Munir El Haddadi (Barcelona) looks to break free, but an opposing player clears the ball away. Barcelona have a corner.",
"identified": "[PLAYER_CKYnnUEo] ([TEAM_]) looks to break free, but an opposing player clears the ball away. [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away. [TEAM] have a corner.",
"visibility": "shown",
"position": "1271000"
},
{
"important": false,
"gameTime": "1 - 20:16",
"label": "corner",
"description": "Neymar (Barcelona) sends in the corner, but fails to find the head of any of his teammates, allowing the defence to clear.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) sends in the corner, but fails to find the head of any of his teammates, allowing the defence to clear.",
"anonymized": "[PLAYER] ([TEAM]) sends in the corner, but fails to find the head of any of his teammates, allowing the defence to clear.",
"visibility": "shown",
"position": "1216000"
},
{
"important": false,
"gameTime": "1 - 20:03",
"label": "",
"description": "Dani Alves (Barcelona) 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. Barcelona have been awarded a corner kick.",
"identified": "[PLAYER_6m8LRsMC] ([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. [TEAM_] have been awarded a corner kick.",
"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. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "1203000"
},
{
"important": false,
"gameTime": "1 - 18:43",
"label": "corner",
"description": "Neymar (Barcelona) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"anonymized": "[PLAYER] ([TEAM]) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"visibility": "shown",
"position": "1123000"
},
{
"important": false,
"gameTime": "1 - 18:31",
"label": "",
"description": "Dani Alves (Barcelona) 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. The linesman makes the right call and Barcelona will have a corner.",
"identified": "[PLAYER_6m8LRsMC] ([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. The linesman makes the right call and [TEAM_] will have 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. The linesman makes the right call and [TEAM] will have a corner.",
"visibility": "shown",
"position": "1111000"
},
{
"important": false,
"gameTime": "1 - 16:05",
"label": "corner",
"description": "Jonathan dos Santos (Villarreal) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"identified": "[PLAYER_2oQBM6hE] ([TEAM_]) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"anonymized": "[PLAYER] ([TEAM]) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"visibility": "shown",
"position": "965000"
},
{
"important": false,
"gameTime": "1 - 15:30",
"label": "",
"description": "Denis Suarez (Villarreal) tries to slide the ball through to a teammate but it's well blocked by a defender. The ball is out of play and the linesman points at the corner flag. Corner to Villarreal.",
"identified": "[PLAYER_xWwucZ71] ([TEAM_]) tries to slide the ball through to a teammate but it's well blocked by a defender. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) tries to slide the ball through to a teammate but it's well blocked by a defender. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM].",
"visibility": "shown",
"position": "930000"
},
{
"important": false,
"gameTime": "1 - 14:59",
"label": "",
"description": "Dani Alves (Barcelona) put a cross into the box which wasn't a bad decision, but he failed to achieve what he wanted as none of his teammates managed to meet it. The ball is off of the pitch and it's a goal kick for Villarreal.",
"identified": "[PLAYER_6m8LRsMC] ([TEAM_]) put a cross into the box which wasn't a bad decision, but he failed to achieve what he wanted as none of his teammates managed to meet it. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) put a cross into the box which wasn't a bad decision, but he failed to achieve what he wanted as none of his teammates managed to meet it. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "899000"
},
{
"important": false,
"gameTime": "1 - 13:11",
"label": "",
"description": "The linesman raises his flag for offside before Munir El Haddadi (Barcelona) heads on.",
"identified": "The linesman raises his flag for offside before [PLAYER_CKYnnUEo] ([TEAM_]) heads on.",
"anonymized": "The linesman raises his flag for offside before [PLAYER] ([TEAM]) heads on.",
"visibility": "shown",
"position": "791000"
},
{
"important": false,
"gameTime": "1 - 11:17",
"label": "",
"description": "Jonathan dos Santos (Villarreal) sends a quick through ball into space for his teammate who is lurking close to the offside line, but one of the defenders intercepts and clears the danger.",
"identified": "[PLAYER_2oQBM6hE] ([TEAM_]) sends a quick through ball into space for his teammate who is lurking close to the offside line, but one of the defenders intercepts and clears the danger.",
"anonymized": "[PLAYER] ([TEAM]) sends a quick through ball into space for his teammate who is lurking close to the offside line, but one of the defenders intercepts and clears the danger.",
"visibility": "shown",
"position": "677000"
}
]
} |