File size: 81,087 Bytes
23b035e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 |
{
"timestamp": "1429970400",
"score": "0 - 2",
"round": "33",
"teams": [
"Espanyol",
"Barcelona"
],
"lineup": {
"home": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "YFbzmReg",
"name": "Abraham",
"captain": "",
"detail_link": "/player/gonzalez-abraham/YFbzmReg/",
"short_name": "Abraham",
"shirt_number": "10",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "61'",
"description": "Sevilla S.",
"linked_player_hash": "rFMIs7n0"
}
],
"lineup": 6,
"starting": true,
"long_name": "Abraham"
},
{
"hash": "dpRLkUnA",
"name": "Alvarez V.",
"captain": "",
"detail_link": "/player/alvarez-victor/dpRLkUnA/",
"short_name": "Alvarez",
"shirt_number": "5",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "74'",
"description": "Montanes P.",
"linked_player_hash": "WAorJn39"
}
],
"lineup": 10,
"starting": true,
"long_name": "Victor Alvarez"
},
{
"hash": "I5wpPbNu",
"name": "Arbilla A.",
"captain": "",
"detail_link": "/player/arbilla-anaitz/I5wpPbNu/",
"short_name": "Arbilla",
"shirt_number": "23",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "62' Arbilla A. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Anaitz Arbilla"
},
{
"hash": "Eoeam8Xf",
"name": "Caicedo F.",
"captain": "",
"detail_link": "/player/caicedo-felipe/Eoeam8Xf/",
"short_name": "Caicedo",
"shirt_number": "20",
"country": "Ecuador",
"facts": [
{
"type": "6",
"time": "70'",
"description": "Stuani C.",
"linked_player_hash": "U5yv9YBB"
}
],
"lineup": 11,
"starting": true,
"long_name": "Felipe Caicedo"
},
{
"hash": "MPJuofoj",
"name": "Canas J.",
"captain": "",
"detail_link": "/player/canas-jose/MPJuofoj/",
"short_name": "Canas",
"shirt_number": "14",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "80' Canas J. (Elbowing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Jose Canas"
},
{
"hash": "l43b8dXD",
"name": "Casilla K.",
"captain": "",
"detail_link": "/player/casilla-francisco/l43b8dXD/",
"short_name": "Casilla",
"shirt_number": "13",
"country": "Spain",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Kiko Casilla"
},
{
"hash": "r5rLTJOE",
"name": "Duarte R.",
"captain": "",
"detail_link": "/player/duarte-ruben/r5rLTJOE/",
"short_name": "Duarte",
"shirt_number": "27",
"country": "Spain",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Ruben Duarte"
},
{
"hash": "6gT7jXMK",
"name": "Garcia S.",
"captain": "(C)",
"detail_link": "/player/garcia-sergio/6gT7jXMK/",
"short_name": "Garcia",
"shirt_number": "9",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "22' Garcia S. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Sergio Garcia"
},
{
"hash": "4ScdNNhe",
"name": "Gonzalez A.",
"captain": "",
"detail_link": "/player/alvaro/4ScdNNhe/",
"short_name": "Gonzalez",
"shirt_number": "22",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "58' Gonzalez A. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Alvaro Gonzalez"
},
{
"hash": "pEjBDsSH",
"name": "Lucas",
"captain": "",
"detail_link": "/player/lucas/pEjBDsSH/",
"short_name": "Vazquez",
"shirt_number": "17",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "72' Lucas (Diving)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Lucas Vazquez"
},
{
"hash": "Q5Mj5mwa",
"name": "Moreno H.",
"captain": "",
"detail_link": "/player/moreno-hector/Q5Mj5mwa/",
"short_name": "Moreno",
"shirt_number": "15",
"country": "Mexico",
"facts": [
{
"type": "1",
"time": "90+1' Moreno H. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Hector Moreno"
},
{
"hash": "KWqQZrM4",
"name": "Colotto D.",
"captain": "",
"detail_link": "/player/colotto-diego/KWqQZrM4/",
"short_name": "Colotto",
"shirt_number": "19",
"country": "Argentina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Diego Colotto"
},
{
"hash": "fHHxCGrE",
"name": "Fuentes J. R.",
"captain": "",
"detail_link": "/player/fuentes-juan-rafael/fHHxCGrE/",
"short_name": "Fuentes",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Juan Rafael Fuentes"
},
{
"hash": "4rpQeIAP",
"name": "Lopez J.",
"captain": "",
"detail_link": "/player/lopez-javi/4rpQeIAP/",
"short_name": "Lopez",
"shirt_number": "16",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Javi Lopez"
},
{
"hash": "rZes9CKA",
"name": "Lopez P.",
"captain": "",
"detail_link": "/player/lopez-pau/rZes9CKA/",
"short_name": "Lopez",
"shirt_number": "25",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Pau Lopez"
},
{
"hash": "WAorJn39",
"name": "Montanes P.",
"captain": "",
"detail_link": "/player/montanes-paco/WAorJn39/",
"short_name": "Montanes",
"shirt_number": "24",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "74'",
"description": "Alvarez V.",
"linked_player_hash": "dpRLkUnA"
}
],
"lineup": null,
"starting": false,
"long_name": "Paco Montanes"
},
{
"hash": "rFMIs7n0",
"name": "Sevilla S.",
"captain": "",
"detail_link": "/player/sevilla-salva/rFMIs7n0/",
"short_name": "Sevilla",
"shirt_number": "6",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "61'",
"description": "Abraham",
"linked_player_hash": "YFbzmReg"
}
],
"lineup": null,
"starting": false,
"long_name": "Salva Sevilla"
},
{
"hash": "U5yv9YBB",
"name": "Stuani C.",
"captain": "",
"detail_link": "/player/stuani-christian/U5yv9YBB/",
"short_name": "Stuani",
"shirt_number": "8",
"country": "Uruguay",
"facts": [
{
"type": "7",
"time": "70'",
"description": "Caicedo F.",
"linked_player_hash": "Eoeam8Xf"
}
],
"lineup": null,
"starting": false,
"long_name": "Cristhian Stuani"
}
],
"coach": [
{
"hash": "O0reUJHU",
"name": "Sergio",
"captain": "",
"detail_link": "/player/gonzalez-sergio/O0reUJHU/",
"short_name": "Sergio",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Sergio"
}
]
},
"away": {
"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": [
{
"type": "8",
"time": "17' Neymar (Alba J.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "1",
"time": "54' Alba J. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "2",
"time": "55' Alba J. (Unsportsmanlike conduct)",
"description": "Red Card",
"linked_player_hash": ""
}
],
"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": "1",
"time": "83' Busquets S. (Holding)",
"description": "Yellow Card",
"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": "22",
"country": "Brazil",
"facts": [
{
"type": "1",
"time": "58' Dani Alves (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"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": "6",
"time": "88'",
"description": "Xavi",
"linked_player_hash": "bs5KnIiT"
}
],
"lineup": 8,
"starting": true,
"long_name": "Andres Iniesta"
},
{
"hash": "ns2Bmt54",
"name": "Mascherano J.",
"captain": "",
"detail_link": "/player/mascherano-javier/ns2Bmt54/",
"short_name": "Mascherano",
"shirt_number": "14",
"country": "Argentina",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Javier Mascherano"
},
{
"hash": "vgOOdZbd",
"name": "Messi L.",
"captain": "",
"detail_link": "/player/messi-lionel/vgOOdZbd/",
"short_name": "Messi",
"shirt_number": "10",
"country": "Argentina",
"facts": [
{
"type": "3",
"time": "25' Messi L. (Suarez L.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Lionel Messi"
},
{
"hash": "jNOPwl3h",
"name": "Neymar",
"captain": "",
"detail_link": "/player/neymar/jNOPwl3h/",
"short_name": "Neymar",
"shirt_number": "11",
"country": "Brazil",
"facts": [
{
"type": "3",
"time": "17' Neymar (Alba J.)",
"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": [],
"lineup": 3,
"starting": true,
"long_name": "Gerard Pique"
},
{
"hash": "8jE1xUrf",
"name": "Rafinha",
"captain": "",
"detail_link": "/player/rafinha/8jE1xUrf/",
"short_name": "Rafinha",
"shirt_number": "12",
"country": "Brazil",
"facts": [
{
"type": "6",
"time": "65'",
"description": "Mathieu J.",
"linked_player_hash": "rmIQaghb"
}
],
"lineup": 6,
"starting": true,
"long_name": "Rafinha"
},
{
"hash": "dUShzrBp",
"name": "Suarez L.",
"captain": "",
"detail_link": "/player/suarez-luis/dUShzrBp/",
"short_name": "Suarez",
"shirt_number": "9",
"country": "Uruguay",
"facts": [
{
"type": "8",
"time": "25' Messi L. (Suarez L.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "80'",
"description": "Rakitic I.",
"linked_player_hash": "pC6dfyG5"
}
],
"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": "rmIQaghb",
"name": "Mathieu J.",
"captain": "",
"detail_link": "/player/mathieu-jeremy/rmIQaghb/",
"short_name": "Mathieu",
"shirt_number": "24",
"country": "France",
"facts": [
{
"type": "7",
"time": "65'",
"description": "Rafinha",
"linked_player_hash": "8jE1xUrf"
}
],
"lineup": null,
"starting": false,
"long_name": "Jeremy Mathieu"
},
{
"hash": "0f1tMqQl",
"name": "Pedro",
"captain": "",
"detail_link": "/player/pedro/0f1tMqQl/",
"short_name": "Pedro",
"shirt_number": "7",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Pedro"
},
{
"hash": "pC6dfyG5",
"name": "Rakitic I.",
"captain": "",
"detail_link": "/player/rakitic-ivan/pC6dfyG5/",
"short_name": "Rakitic",
"shirt_number": "4",
"country": "Croatia",
"facts": [
{
"type": "7",
"time": "80'",
"description": "Suarez L.",
"linked_player_hash": "dUShzrBp"
}
],
"lineup": null,
"starting": false,
"long_name": "Ivan Rakitic"
},
{
"hash": "W2R804U4",
"name": "Roberto S.",
"captain": "",
"detail_link": "/player/roberto-sergi/W2R804U4/",
"short_name": "Roberto",
"shirt_number": "20",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Sergi Roberto"
},
{
"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": "bs5KnIiT",
"name": "Xavi",
"captain": "",
"detail_link": "/player/xavi/bs5KnIiT/",
"short_name": "Xavi",
"shirt_number": "6",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "88'",
"description": "Iniesta A.",
"linked_player_hash": "E7AksdFj"
}
],
"lineup": null,
"starting": false,
"long_name": "Xavi"
}
],
"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"
}
]
}
},
"referee": [
"Lahoz A."
],
"venue": [
"RCDE Stadium (Cornella de Llobregat)"
],
"attendance": [
"30 253"
],
"referee_matched": [
"Antonio Mateu Lahoz"
],
"referee_found": [
"Antonio Mateu Lahoz"
],
"coach_matched": [
"Sergio"
],
"gameHomeTeam": "Espanyol",
"home": {
"name": "Espanyol",
"detail_link": "/team/espanyol/QFfPdh1J",
"hash": "QFfPdh1J",
"names": [
"Espanyol",
"Espanyol (Esp)",
"espanyol"
]
},
"gameAwayTeam": "Barcelona",
"away": {
"name": "Barcelona",
"detail_link": "/team/barcelona/SKbpVP5K",
"hash": "SKbpVP5K",
"names": [
"Barcelona",
"barcelona"
]
},
"gameDate": "25/04/2015 - 16:00",
"annotations": [
{
"important": false,
"gameTime": "2 - 50:59",
"label": "",
"description": "The game produced by the players today wasn't one of the most inspiring. They definitely haven't shown us their best. You have to say that the visitors have been the better side. The home team tried to find the weakness in the opposition's defence mostly using rapid counter-attacks. On the other hand, long balls and crosses were the main weapons of the away team.",
"identified": "The game produced by the players today wasn't one of the most inspiring. They definitely haven't shown us their best. You have to say that the visitors have been the better side. The home team tried to find the weakness in the opposition's defence mostly using rapid counter-attacks. On the other hand, long balls and crosses were the main weapons of the away team.",
"anonymized": "The game produced by the players today wasn't one of the most inspiring. They definitely haven't shown us their best. You have to say that the visitors have been the better side. The home team tried to find the weakness in the opposition's defence mostly using rapid counter-attacks. On the other hand, long balls and crosses were the main weapons of the away team.",
"visibility": "shown",
"position": "3059000"
},
{
"important": true,
"gameTime": "2 - 49:02",
"label": "whistle",
"description": "That's all for today as the game is over.",
"identified": "That's all for today as the game is over.",
"anonymized": "That's all for today as the game is over.",
"visibility": "shown",
"position": "2942000"
},
{
"important": false,
"gameTime": "2 - 47:51",
"label": "",
"description": "Dani Alves (Barcelona) makes a rough challenge and the referee blows for a foul.",
"identified": "[PLAYER_6m8LRsMC] ([TEAM_]) makes a rough challenge and the referee blows for a foul.",
"anonymized": "[PLAYER] ([TEAM]) makes a rough challenge and the referee blows for a foul.",
"visibility": "shown",
"position": "2871000"
},
{
"important": true,
"gameTime": "2 - 45:52",
"label": "yr-card",
"description": "Was it necessary? Hector Moreno (Espanyol) is shown a second yellow card for dissent and has to leave the pitch. Antonio Mateu Lahoz had no hesitation in issuing a red card!",
"identified": "Was it necessary? [PLAYER_Q5Mj5mwa] ([TEAM_]) is shown a second yellow card for dissent and has to leave the pitch. [REFEREE] had no hesitation in issuing a red card!",
"anonymized": "Was it necessary? [PLAYER] ([TEAM]) is shown a second yellow card for dissent and has to leave the pitch. [REFEREE] had no hesitation in issuing a red card!",
"visibility": "shown",
"position": "2752000"
},
{
"important": true,
"gameTime": "2 - 45:51",
"label": "y-card",
"description": "Hector Moreno (Espanyol) was probably a bit loose with his words to Antonio Mateu Lahoz, who decides to show him a yellow.",
"identified": "[PLAYER_Q5Mj5mwa] ([TEAM_]) was probably a bit loose with his words to [REFEREE], who decides to show him a yellow.",
"anonymized": "[PLAYER] ([TEAM]) was probably a bit loose with his words to [REFEREE], who decides to show him a yellow.",
"visibility": "shown",
"position": "2751000"
},
{
"important": false,
"gameTime": "2 - 45:48",
"label": "",
"description": "Jose Canas (Espanyol) races towards goal but the defender gets back well to make a challenge. The ball is off of the pitch and it's a goal kick for Barcelona.",
"identified": "[PLAYER_MPJuofoj] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "2748000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "We will have 3 min. of added time.",
"identified": "We will have 3 min. of added time.",
"anonymized": "We will have 3 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 43:11",
"label": "",
"description": "Antonio Mateu Lahoz blows his whistle for a foul after Gerard Pique (Barcelona) hacks down one of his opponents.",
"identified": "[REFEREE] blows his whistle for a foul after [PLAYER_fRBrHCRh] ([TEAM_]) hacks down one of his opponents.",
"anonymized": "[REFEREE] blows his whistle for a foul after [PLAYER] ([TEAM]) hacks down one of his opponents.",
"visibility": "shown",
"position": "2591000"
},
{
"important": true,
"gameTime": "2 - 42:58",
"label": "substitution",
"description": "The referee signals that it is time for a substitution and Xavi (Barcelona) comes onto the pitch so that Andres Iniesta can be given a rest.",
"identified": "The referee signals that it is time for a substitution and [PLAYER_bs5KnIiT] ([TEAM_]) comes onto the pitch so that [PLAYER_E7AksdFj] can be given a rest.",
"anonymized": "The referee signals that it is time for a substitution and [PLAYER] ([TEAM]) comes onto the pitch so that [PLAYER] can be given a rest.",
"visibility": "shown",
"position": "2578000"
},
{
"important": true,
"gameTime": "2 - 40:52",
"label": "",
"description": "Christian Stuani (Espanyol) is the one to unleash a good effort towards the bottom right corner. His shot, however, is saved by the goalkeeper. What a save!",
"identified": "[PLAYER_U5yv9YBB] ([TEAM_]) is the one to unleash a good effort towards the bottom right corner. His shot, however, is saved by the goalkeeper. What a save!",
"anonymized": "[PLAYER] ([TEAM]) is the one to unleash a good effort towards the bottom right corner. His shot, however, is saved by the goalkeeper. What a save!",
"visibility": "shown",
"position": "2452000"
},
{
"important": false,
"gameTime": "2 - 38:10",
"label": "attendance",
"description": "The attendance is 30253.",
"identified": "The attendance is 30253.",
"anonymized": "The attendance is 30253.",
"visibility": "shown",
"position": "2290000"
},
{
"important": true,
"gameTime": "2 - 37:50",
"label": "y-card",
"description": "The foul by Sergio Busquets (Barcelona) is worthy of a card and a yellow is duly shown by Antonio Mateu Lahoz.",
"identified": "The foul by [PLAYER_CU4pL3ue] ([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": "2270000"
},
{
"important": false,
"gameTime": "2 - 35:20",
"label": "",
"description": "Antonio Mateu Lahoz blows for a foul after Javier Mascherano (Barcelona) was too aggressive in the battle for the ball.",
"identified": "[REFEREE] blows for a foul after [PLAYER_ns2Bmt54] ([TEAM_]) was too aggressive in the battle for the ball.",
"anonymized": "[REFEREE] blows for a foul after [PLAYER] ([TEAM]) was too aggressive in the battle for the ball.",
"visibility": "shown",
"position": "2120000"
},
{
"important": true,
"gameTime": "2 - 34:46",
"label": "y-card",
"description": "Jose Canas (Espanyol) commits a foul and is shown a yellow card.",
"identified": "[PLAYER_MPJuofoj] ([TEAM_]) commits a foul and is shown a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) commits a foul and is shown a yellow card.",
"visibility": "shown",
"position": "2086000"
},
{
"important": true,
"gameTime": "2 - 34:08",
"label": "substitution",
"description": "It's time for a substitution. Ivan Rakitic (Barcelona) comes on in place of Luis Suarez.",
"identified": "It's time for a substitution. [PLAYER_pC6dfyG5] ([TEAM_]) comes on in place of [PLAYER_dUShzrBp].",
"anonymized": "It's time for a substitution. [PLAYER] ([TEAM]) comes on in place of [PLAYER].",
"visibility": "shown",
"position": "2048000"
},
{
"important": false,
"gameTime": "2 - 33:03",
"label": "corner",
"description": "Salva Sevilla (Espanyol) decides to take a short corner instead of crossing into the box.",
"identified": "[PLAYER_rFMIs7n0] ([TEAM_]) decides to take a short corner instead of crossing into the box.",
"anonymized": "[PLAYER] ([TEAM]) decides to take a short corner instead of crossing into the box.",
"visibility": "shown",
"position": "1983000"
},
{
"important": false,
"gameTime": "2 - 32:52",
"label": "",
"description": "Lucas (Espanyol) came close to scoring. He connected with a pass inside the box and perhaps should have done better than direct his shot straight at Claudio Bravo. It will be a corner kick for Espanyol.",
"identified": "[PLAYER_pEjBDsSH] ([TEAM_]) came close to scoring. He connected with a pass inside the box and perhaps should have done better than direct his shot straight at [PLAYER_8nVXP7xE]. It will be a corner kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) came close to scoring. He connected with a pass inside the box and perhaps should have done better than direct his shot straight at [PLAYER]. It will be a corner kick for [TEAM].",
"visibility": "shown",
"position": "1972000"
},
{
"important": false,
"gameTime": "2 - 32:27",
"label": "",
"description": "Neymar (Barcelona) strikes the rebound, but it goes well over the bar.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) strikes the rebound, but it goes well over the bar.",
"anonymized": "[PLAYER] ([TEAM]) strikes the rebound, but it goes well over the bar.",
"visibility": "shown",
"position": "1947000"
},
{
"important": false,
"gameTime": "2 - 31:53",
"label": "",
"description": "Lionel Messi (Barcelona) picks up a precise pass deep inside the box, but his strike is saved by the keeper.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) picks up a precise pass deep inside the box, but his strike is saved by the keeper.",
"anonymized": "[PLAYER] ([TEAM]) picks up a precise pass deep inside the box, but his strike is saved by the keeper.",
"visibility": "shown",
"position": "1913000"
},
{
"important": false,
"gameTime": "2 - 31:00",
"label": "",
"description": "Hector Moreno (Espanyol) fouls an opponent. At least that's what referee Antonio Mateu Lahoz signals.",
"identified": "[PLAYER_Q5Mj5mwa] ([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": "1860000"
},
{
"important": true,
"gameTime": "2 - 29:38",
"label": "",
"description": "Lucas Vazquez sprays a pass out to Christian Stuani (Espanyol), but he produces a poor effort from inside the box which goes high over the bar. The ball goes out of play and Barcelona will have a goal kick.",
"identified": "[PLAYER_pEjBDsSH] sprays a pass out to [PLAYER_U5yv9YBB] ([TEAM_]), but he produces a poor effort from inside the box which goes high over the bar. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] sprays a pass out to [PLAYER] ([TEAM]), but he produces a poor effort from inside the box which goes high over the bar. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "1778000"
},
{
"important": true,
"gameTime": "2 - 28:54",
"label": "substitution",
"description": "Here is a change. Victor Alvarez is going off and Sergio gives the last tactical orders to Paco Montanes (Espanyol).",
"identified": "Here is a change. [PLAYER_dpRLkUnA] is going off and [COACH_O0reUJHU] gives the last tactical orders to [PLAYER_WAorJn39] ([TEAM_]).",
"anonymized": "Here is a change. [PLAYER] is going off and [COACH] gives the last tactical orders to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1734000"
},
{
"important": true,
"gameTime": "2 - 26:01",
"label": "y-card",
"description": "Lucas (Espanyol) sees a yellow card. He should be more careful because one more challenge like that could result in a red card.",
"identified": "[PLAYER_pEjBDsSH] ([TEAM_]) sees a yellow card. He should be more careful because one more challenge like that could result in a red card.",
"anonymized": "[PLAYER] ([TEAM]) sees a yellow card. He should be more careful because one more challenge like that could result in a red card.",
"visibility": "shown",
"position": "1561000"
},
{
"important": false,
"gameTime": "2 - 25:11",
"label": "",
"description": "Luis Suarez (Barcelona) finds himself free inside the box and pulls the trigger, but his effort is brilliantly stopped by one of the defending players.",
"identified": "[PLAYER_dUShzrBp] ([TEAM_]) finds himself free inside the box and pulls the trigger, but his effort is brilliantly stopped by one of the defending players.",
"anonymized": "[PLAYER] ([TEAM]) finds himself free inside the box and pulls the trigger, but his effort is brilliantly stopped by one of the defending players.",
"visibility": "shown",
"position": "1511000"
},
{
"important": true,
"gameTime": "2 - 24:43",
"label": "substitution",
"description": "Substitution. Felipe Caicedo makes his way off the pitch and Christian Stuani (Espanyol) comes on as his replacement.",
"identified": "Substitution. [PLAYER_Eoeam8Xf] makes his way off the pitch and [PLAYER_U5yv9YBB] ([TEAM_]) comes on as his replacement.",
"anonymized": "Substitution. [PLAYER] makes his way off the pitch and [PLAYER] ([TEAM]) comes on as his replacement.",
"visibility": "shown",
"position": "1483000"
},
{
"important": false,
"gameTime": "2 - 23:57",
"label": "",
"description": "Sergio Garcia (Espanyol) darts into the penalty area to latch on to a pass, and he unleashes a low drive towards the middle of the net, but Claudio Bravo is alert and denies him.",
"identified": "[PLAYER_6gT7jXMK] ([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_8nVXP7xE] 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": "1437000"
},
{
"important": false,
"gameTime": "2 - 21:50",
"label": "",
"description": "Lionel Messi (Barcelona) unleashes a powerful shot towards goal from a mid-range free kick, but the ball is blocked by the defensive wall.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) unleashes a powerful shot towards goal from a mid-range free kick, but the ball is blocked by the defensive wall.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a powerful shot towards goal from a mid-range free kick, but the ball is blocked by the defensive wall.",
"visibility": "shown",
"position": "1310000"
},
{
"important": false,
"gameTime": "2 - 21:10",
"label": "",
"description": "Ruben Duarte (Espanyol) makes a strong challenge and Antonio Mateu Lahoz blows for a foul. Barcelona have a free kick from a promising distance.",
"identified": "[PLAYER_r5rLTJOE] ([TEAM_]) makes a strong challenge and [REFEREE] blows for a foul. [TEAM_] have a free kick from a promising distance.",
"anonymized": "[PLAYER] ([TEAM]) makes a strong challenge and [REFEREE] blows for a foul. [TEAM] have a free kick from a promising distance.",
"visibility": "shown",
"position": "1270000"
},
{
"important": false,
"gameTime": "2 - 20:29",
"label": "",
"description": "Lucas (Espanyol) swings a cross into the box, but it's far too close to Claudio Bravo, who smothers the ball.",
"identified": "[PLAYER_pEjBDsSH] ([TEAM_]) swings a cross into the box, but it's far too close to [PLAYER_8nVXP7xE], 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": "1229000"
},
{
"important": false,
"gameTime": "2 - 20:00",
"label": "corner",
"description": "The corner from Salva Sevilla (Espanyol) is cleared away by the defence.",
"identified": "The corner from [PLAYER_rFMIs7n0] ([TEAM_]) is cleared away by the defence.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is cleared away by the defence.",
"visibility": "shown",
"position": "1200000"
},
{
"important": false,
"gameTime": "2 - 19:45",
"label": "",
"description": "Felipe Caicedo (Espanyol) strikes the ball towards goal, but it fails to reach the target after being well blocked by one of the defenders. Espanyol have been awarded a corner kick.",
"identified": "[PLAYER_Eoeam8Xf] ([TEAM_]) strikes the ball towards goal, but it fails to reach the target after being well blocked by one of the defenders. [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) strikes the ball towards goal, but it fails to reach the target after being well blocked by one of the defenders. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "1185000"
},
{
"important": true,
"gameTime": "2 - 19:22",
"label": "substitution",
"description": "A substitution has been made. Rafinha is replaced by Jeremy Mathieu (Barcelona).",
"identified": "A substitution has been made. [PLAYER_8jE1xUrf] is replaced by [PLAYER_rmIQaghb] ([TEAM_]).",
"anonymized": "A substitution has been made. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1162000"
},
{
"important": false,
"gameTime": "2 - 18:41",
"label": "corner",
"description": "Nothing comes of the resulting corner from Victor Alvarez (Espanyol). The defence is alert and manages to cut it out.",
"identified": "Nothing comes of the resulting corner from [PLAYER_dpRLkUnA] ([TEAM_]). The defence is alert and manages to cut it out.",
"anonymized": "Nothing comes of the resulting corner from [PLAYER] ([TEAM]). The defence is alert and manages to cut it out.",
"visibility": "shown",
"position": "1121000"
},
{
"important": false,
"gameTime": "2 - 18:34",
"label": "",
"description": "Victor Alvarez (Espanyol) slaloms his way past challenges, but an opposing player does well to get the ball away. Espanyol force a corner. They send men into the box.",
"identified": "[PLAYER_dpRLkUnA] ([TEAM_]) slaloms his way past challenges, but an opposing player does well to get the ball away. [TEAM_] force a corner. They send men into the box.",
"anonymized": "[PLAYER] ([TEAM]) slaloms his way past challenges, but an opposing player does well to get the ball away. [TEAM] force a corner. They send men into the box.",
"visibility": "shown",
"position": "1114000"
},
{
"important": false,
"gameTime": "2 - 17:23",
"label": "",
"description": "Luis Suarez slides a brilliant pass into Neymar (Barcelona), but his shot from inside the box goes a whisker over the crossbar.",
"identified": "[PLAYER_dUShzrBp] slides a brilliant pass into [PLAYER_jNOPwl3h] ([TEAM_]), but his shot from inside the box goes a whisker over the crossbar.",
"anonymized": "[PLAYER] slides a brilliant pass into [PLAYER] ([TEAM]), but his shot from inside the box goes a whisker over the crossbar.",
"visibility": "shown",
"position": "1043000"
},
{
"important": true,
"gameTime": "2 - 16:55",
"label": "y-card",
"description": "A yellow card for a tackle by Anaitz Arbilla (Espanyol). Antonio Mateu Lahoz doesn't hesitate at all to make this decision.",
"identified": "A yellow card for a tackle by [PLAYER_I5wpPbNu] ([TEAM_]). [REFEREE] doesn't hesitate at all to make this decision.",
"anonymized": "A yellow card for a tackle by [PLAYER] ([TEAM]). [REFEREE] doesn't hesitate at all to make this decision.",
"visibility": "shown",
"position": "1015000"
},
{
"important": false,
"gameTime": "2 - 16:30",
"label": "",
"description": "Sergio Garcia (Espanyol) looks to break free, but an opposing player clears the ball away.",
"identified": "[PLAYER_6gT7jXMK] ([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": "990000"
},
{
"important": true,
"gameTime": "2 - 15:21",
"label": "substitution",
"description": "It is time for a substitution. Salva Sevilla (Espanyol) is on for Abraham.",
"identified": "It is time for a substitution. [PLAYER_rFMIs7n0] ([TEAM_]) is on for [PLAYER_YFbzmReg].",
"anonymized": "It is time for a substitution. [PLAYER] ([TEAM]) is on for [PLAYER].",
"visibility": "shown",
"position": "921000"
},
{
"important": false,
"gameTime": "2 - 14:47",
"label": "",
"description": "Lucas (Espanyol) commits a rough foul. Antonio Mateu Lahoz stops the game and makes a call.",
"identified": "[PLAYER_pEjBDsSH] ([TEAM_]) commits a rough foul. [REFEREE] stops the game and makes a call.",
"anonymized": "[PLAYER] ([TEAM]) commits a rough foul. [REFEREE] stops the game and makes a call.",
"visibility": "shown",
"position": "887000"
},
{
"important": true,
"gameTime": "2 - 12:57",
"label": "y-card",
"description": "Dani Alves (Barcelona) sees a yellow! His tackle wasn't that harsh, but he probably talked himself into Antonio Mateu Lahoz's book.",
"identified": "[PLAYER_6m8LRsMC] ([TEAM_]) sees a yellow! His tackle wasn't that harsh, but he probably talked himself into [REFEREE]'s book.",
"anonymized": "[PLAYER] ([TEAM]) sees a yellow! His tackle wasn't that harsh, but he probably talked himself into [REFEREE]'s book.",
"visibility": "shown",
"position": "777000"
},
{
"important": true,
"gameTime": "2 - 12:40",
"label": "y-card",
"description": "Antonio Mateu Lahoz shows the yellow card to Alvaro (Espanyol) for a heavy challenge.",
"identified": "[REFEREE] shows the yellow card to [PLAYER_4ScdNNhe] ([TEAM_]) for a heavy challenge.",
"anonymized": "[REFEREE] shows the yellow card to [PLAYER] ([TEAM]) for a heavy challenge.",
"visibility": "shown",
"position": "760000"
},
{
"important": false,
"gameTime": "2 - 12:38",
"label": "corner",
"description": "Neymar (Barcelona) quickly takes the corner kick with a short pass.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) quickly takes the corner kick with a short pass.",
"anonymized": "[PLAYER] ([TEAM]) quickly takes the corner kick with a short pass.",
"visibility": "shown",
"position": "758000"
},
{
"important": true,
"gameTime": "2 - 12:17",
"label": "",
"description": "Lionel Messi (Barcelona) accepts a pass deep inside the box and after a nice touch sends the ball towards the bottom left corner. It is a pretty sweet shot, but one of the defenders changes the trajectory of the ball and deflects it onto the post. What an unlucky moment for Lionel Messi (Barcelona). He must have smashed a mirror recently. The ball goes out for a corner. Barcelona can continue in their attacking effort.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) accepts a pass deep inside the box and after a nice touch sends the ball towards the bottom left corner. It is a pretty sweet shot, but one of the defenders changes the trajectory of the ball and deflects it onto the post. What an unlucky moment for [PLAYER_vgOOdZbd] ([TEAM_]). He must have smashed a mirror recently. The ball goes out for a corner. [TEAM_] can continue in their attacking effort.",
"anonymized": "[PLAYER] ([TEAM]) accepts a pass deep inside the box and after a nice touch sends the ball towards the bottom left corner. It is a pretty sweet shot, but one of the defenders changes the trajectory of the ball and deflects it onto the post. What an unlucky moment for [PLAYER] ([TEAM]). He must have smashed a mirror recently. The ball goes out for a corner. [TEAM] can continue in their attacking effort.",
"visibility": "shown",
"position": "737000"
},
{
"important": false,
"gameTime": "2 - 10:39",
"label": "",
"description": "Luis Suarez (Barcelona) is caught offside yet again.",
"identified": "[PLAYER_dUShzrBp] ([TEAM_]) is caught offside yet again.",
"anonymized": "[PLAYER] ([TEAM]) is caught offside yet again.",
"visibility": "shown",
"position": "639000"
},
{
"important": true,
"gameTime": "2 - 09:24",
"label": "r-card",
"description": "Antonio Mateu Lahoz interrupts the game and punishes the behaviour of Jordi Alba (Barcelona) with a red card.",
"identified": "[REFEREE] interrupts the game and punishes the behaviour of [PLAYER_42SIX9sl] ([TEAM_]) with a red card.",
"anonymized": "[REFEREE] interrupts the game and punishes the behaviour of [PLAYER] ([TEAM]) with a red card.",
"visibility": "shown",
"position": "564000"
},
{
"important": true,
"gameTime": "2 - 08:27",
"label": "y-card",
"description": "Jordi Alba (Barcelona) says something out of turn to the referee and is shown a yellow card.",
"identified": "[PLAYER_42SIX9sl] ([TEAM_]) says something out of turn to the referee and is shown a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) says something out of turn to the referee and is shown a yellow card.",
"visibility": "shown",
"position": "507000"
},
{
"important": false,
"gameTime": "2 - 07:12",
"label": "",
"description": "Ruben Duarte (Espanyol) is penalised after knocking an opponent down.",
"identified": "[PLAYER_r5rLTJOE] ([TEAM_]) is penalised after knocking an opponent down.",
"anonymized": "[PLAYER] ([TEAM]) is penalised after knocking an opponent down.",
"visibility": "shown",
"position": "432000"
},
{
"important": false,
"gameTime": "2 - 06:10",
"label": "",
"description": "Hector Moreno (Espanyol) should know this behaviour is beyond the rules. He was too careless with his challenge and left Antonio Mateu Lahoz no option but to blow his whistle.",
"identified": "[PLAYER_Q5Mj5mwa] ([TEAM_]) should know this behaviour is beyond the rules. He was too careless with his challenge and left [REFEREE] no option but to blow his whistle.",
"anonymized": "[PLAYER] ([TEAM]) should know this behaviour is beyond the rules. He was too careless with his challenge and left [REFEREE] no option but to blow his whistle.",
"visibility": "shown",
"position": "370000"
},
{
"important": false,
"gameTime": "2 - 05:08",
"label": "",
"description": "Neymar (Barcelona) came close to scoring. He connected with a pass inside the box and perhaps should have done better than direct his shot straight at Francisco Casilla.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) came close to scoring. He connected with a pass inside the box and perhaps should have done better than direct his shot straight at [PLAYER_l43b8dXD].",
"anonymized": "[PLAYER] ([TEAM]) came close to scoring. He connected with a pass inside the box and perhaps should have done better than direct his shot straight at [PLAYER].",
"visibility": "shown",
"position": "308000"
},
{
"important": false,
"gameTime": "2 - 04:30",
"label": "",
"description": "Felipe Caicedo (Espanyol) is adjudged to have been offside when making his run.",
"identified": "[PLAYER_Eoeam8Xf] ([TEAM_]) is adjudged to have been offside when making his run.",
"anonymized": "[PLAYER] ([TEAM]) is adjudged to have been offside when making his run.",
"visibility": "shown",
"position": "270000"
},
{
"important": false,
"gameTime": "2 - 03:35",
"label": "",
"description": "The linesman raises his flag. Felipe Caicedo (Espanyol) is adjudged offside.",
"identified": "The linesman raises his flag. [PLAYER_Eoeam8Xf] ([TEAM_]) is adjudged offside.",
"anonymized": "The linesman raises his flag. [PLAYER] ([TEAM]) is adjudged offside.",
"visibility": "shown",
"position": "215000"
},
{
"important": false,
"gameTime": "2 - 02:45",
"label": "corner",
"description": "Victor Alvarez (Espanyol) works the corner short.",
"identified": "[PLAYER_dpRLkUnA] ([TEAM_]) works the corner short.",
"anonymized": "[PLAYER] ([TEAM]) works the corner short.",
"visibility": "shown",
"position": "165000"
},
{
"important": false,
"gameTime": "2 - 02:12",
"label": "corner",
"description": "Victor Alvarez (Espanyol) takes the corner, but the opposition's defence is ready and clears the ball to safety. Espanyol will have a chance to score from a corner kick.",
"identified": "[PLAYER_dpRLkUnA] ([TEAM_]) takes the corner, but the opposition's defence is ready and clears the ball to safety. [TEAM_] will have a chance to score from a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner, but the opposition's defence is ready and clears the ball to safety. [TEAM] will have a chance to score from a corner kick.",
"visibility": "shown",
"position": "132000"
},
{
"important": false,
"gameTime": "2 - 01:57",
"label": "",
"description": "Felipe Caicedo (Espanyol) tries to slide the ball through to a teammate but it's well blocked by a defender. The referee blows his whistle, Espanyol are awarded a corner kick.",
"identified": "[PLAYER_Eoeam8Xf] ([TEAM_]) tries to slide the ball through to a teammate but it's well blocked by a defender. The referee blows his whistle, [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) tries to slide the ball through to a teammate but it's well blocked by a defender. The referee blows his whistle, [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "117000"
},
{
"important": false,
"gameTime": "2 - 01:17",
"label": "",
"description": "Lucas (Espanyol) pulls the shirt of his opponent and the referee stops play for a foul.",
"identified": "[PLAYER_pEjBDsSH] ([TEAM_]) pulls the shirt of his opponent and the referee stops play for a foul.",
"anonymized": "[PLAYER] ([TEAM]) pulls the shirt of his opponent and the referee stops play for a foul.",
"visibility": "shown",
"position": "77000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "Antonio Mateu Lahoz blows his whistle and the second half starts.",
"identified": "[REFEREE] blows his whistle and the second half starts.",
"anonymized": "[REFEREE] blows his whistle and the second half starts.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 45:59",
"label": "",
"description": "Up to now the game has been rather average in terms of entertainment, with little in the way of thrilling moments. The visiting side is dictating the tempo in this game. The home team tries to find the weakness in the opposition's defence, especially with rapid counter-attacks, while the away team play possession football.",
"identified": "Up to now the game has been rather average in terms of entertainment, with little in the way of thrilling moments. The visiting side is dictating the tempo in this game. The home team tries to find the weakness in the opposition's defence, especially with rapid counter-attacks, while the away team play possession football.",
"anonymized": "Up to now the game has been rather average in terms of entertainment, with little in the way of thrilling moments. The visiting side is dictating the tempo in this game. The home team tries to find the weakness in the opposition's defence, especially with rapid counter-attacks, while the away team play possession football.",
"visibility": "shown",
"position": "2759000"
},
{
"important": true,
"gameTime": "1 - 45:11",
"label": "whistle",
"description": "The match has reached half-time.",
"identified": "The match has reached half-time.",
"anonymized": "The match has reached half-time.",
"visibility": "shown",
"position": "2711000"
},
{
"important": false,
"gameTime": "1 - 44:20",
"label": "",
"description": "That was close by Luis Suarez (Barcelona)! He receives a pass on the edge of the box and shoots, but the ball goes inches wide of the right post.",
"identified": "That was close by [PLAYER_dUShzrBp] ([TEAM_])! He receives a pass on the edge of the box and shoots, but the ball goes inches wide of the right post.",
"anonymized": "That was close by [PLAYER] ([TEAM])! He receives a pass on the edge of the box and shoots, but the ball goes inches wide of the right post.",
"visibility": "shown",
"position": "2660000"
},
{
"important": false,
"gameTime": "1 - 43:27",
"label": "",
"description": "Luis Suarez (Barcelona) releases Lionel Messi with a precise pass and he attempts to finish, but is immediately surrounded by the defenders and loses the ball.",
"identified": "[PLAYER_dUShzrBp] ([TEAM_]) releases [PLAYER_vgOOdZbd] with a precise pass and he attempts to finish, but is immediately surrounded by the defenders and loses the ball.",
"anonymized": "[PLAYER] ([TEAM]) releases [PLAYER] with a precise pass and he attempts to finish, but is immediately surrounded by the defenders and loses the ball.",
"visibility": "shown",
"position": "2607000"
},
{
"important": false,
"gameTime": "1 - 40:30",
"label": "corner",
"description": "Neymar (Barcelona) swings in a dangerous cross from the resulting corner kick, but none of his teammates manage to outjump the defence.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) swings in a dangerous cross from the resulting corner kick, but none of his teammates manage to outjump the defence.",
"anonymized": "[PLAYER] ([TEAM]) swings in a dangerous cross from the resulting corner kick, but none of his teammates manage to outjump the defence.",
"visibility": "shown",
"position": "2430000"
},
{
"important": false,
"gameTime": "1 - 40:00",
"label": "",
"description": "Francisco Casilla pulls off a great save to deny Neymar (Barcelona), who makes himself some space inside the box and unleashes a quick low drive to the bottom right corner. The referee and his assistant both point at the corner flag. Barcelona will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_l43b8dXD] pulls off a great save to deny [PLAYER_jNOPwl3h] ([TEAM_]), who makes himself some space inside the box and unleashes a quick low drive to the bottom right corner. The referee and his assistant both point at the corner flag. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"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 right corner. 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": "2400000"
},
{
"important": false,
"gameTime": "1 - 38:42",
"label": "",
"description": "A crossfield pass from Sergio Busquets (Barcelona) fails to find any of his teammates.",
"identified": "A crossfield pass from [PLAYER_CU4pL3ue] ([TEAM_]) fails to find any of his teammates.",
"anonymized": "A crossfield pass from [PLAYER] ([TEAM]) fails to find any of his teammates.",
"visibility": "shown",
"position": "2322000"
},
{
"important": false,
"gameTime": "1 - 35:54",
"label": "",
"description": "Victor Alvarez (Espanyol) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"identified": "[PLAYER_dpRLkUnA] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"visibility": "shown",
"position": "2154000"
},
{
"important": false,
"gameTime": "1 - 34:23",
"label": "",
"description": "Sergio Garcia (Espanyol) wastes a good opportunity as his pass into the box is blocked by the defence.",
"identified": "[PLAYER_6gT7jXMK] ([TEAM_]) wastes a good opportunity as his pass into the box is blocked by the defence.",
"anonymized": "[PLAYER] ([TEAM]) wastes a good opportunity as his pass into the box is blocked by the defence.",
"visibility": "shown",
"position": "2063000"
},
{
"important": false,
"gameTime": "1 - 32:13",
"label": "",
"description": "Andres Iniesta (Barcelona) commits a rough challenge and Antonio Mateu Lahoz blows his whistle for an infringement.",
"identified": "[PLAYER_E7AksdFj] ([TEAM_]) commits a rough challenge and [REFEREE] blows his whistle for an infringement.",
"anonymized": "[PLAYER] ([TEAM]) commits a rough challenge and [REFEREE] blows his whistle for an infringement.",
"visibility": "shown",
"position": "1933000"
},
{
"important": false,
"gameTime": "1 - 30:58",
"label": "",
"description": "Flag up against Luis Suarez (Barcelona). He had space to move into behind the defence, but he went too soon.",
"identified": "Flag up against [PLAYER_dUShzrBp] ([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": "1858000"
},
{
"important": false,
"gameTime": "1 - 29:57",
"label": "",
"description": "Some great controlled play and passing in the middle of the pitch from Barcelona.",
"identified": "Some great controlled play and passing in the middle of the pitch from [TEAM_].",
"anonymized": "Some great controlled play and passing in the middle of the pitch from [TEAM].",
"visibility": "shown",
"position": "1797000"
},
{
"important": false,
"gameTime": "1 - 29:09",
"label": "",
"description": "Javier Mascherano (Barcelona) gives away a foul for a clumsy challenge. Referee Antonio Mateu Lahoz saw the whole situation.",
"identified": "[PLAYER_ns2Bmt54] ([TEAM_]) gives away a foul for a clumsy challenge. Referee [REFEREE] saw the whole situation.",
"anonymized": "[PLAYER] ([TEAM]) gives away a foul for a clumsy challenge. Referee [REFEREE] saw the whole situation.",
"visibility": "shown",
"position": "1749000"
},
{
"important": false,
"gameTime": "1 - 27:39",
"label": "",
"description": "Felipe Caicedo (Espanyol) receives a well-played pass inside the penalty area and shoots. He sends the ball into orbit.",
"identified": "[PLAYER_Eoeam8Xf] ([TEAM_]) receives a well-played pass inside the penalty area and shoots. He sends the ball into orbit.",
"anonymized": "[PLAYER] ([TEAM]) receives a well-played pass inside the penalty area and shoots. He sends the ball into orbit.",
"visibility": "shown",
"position": "1659000"
},
{
"important": true,
"gameTime": "1 - 24:21",
"label": "soccer-ball",
"description": "Luis Suarez plays a neat ball into the path of Lionel Messi (Barcelona), who makes room for a shot and sends in a low drive which bounces in off the right post! 0:2.",
"identified": "[PLAYER_dUShzrBp] plays a neat ball into the path of [PLAYER_vgOOdZbd] ([TEAM_]), who makes room for a shot and sends in a low drive which bounces in off the right post! 0:2.",
"anonymized": "[PLAYER] plays a neat ball into the path of [PLAYER] ([TEAM]), who makes room for a shot and sends in a low drive which bounces in off the right post! 0:2.",
"visibility": "shown",
"position": "1461000"
},
{
"important": false,
"gameTime": "1 - 24:02",
"label": "",
"description": "Victor Alvarez (Espanyol) slides a pass forward, but one of the defenders cuts it out.",
"identified": "[PLAYER_dpRLkUnA] ([TEAM_]) slides a pass forward, but one of the defenders cuts it out.",
"anonymized": "[PLAYER] ([TEAM]) slides a pass forward, but one of the defenders cuts it out.",
"visibility": "shown",
"position": "1442000"
},
{
"important": true,
"gameTime": "1 - 21:41",
"label": "y-card",
"description": "This yellow card was deserved. The tackle by Sergio Garcia (Espanyol) was quite harsh and Antonio Mateu Lahoz didn't hesitate to show him a yellow card.",
"identified": "This yellow card was deserved. The tackle by [PLAYER_6gT7jXMK] ([TEAM_]) was quite harsh and [REFEREE] didn't hesitate to show him a yellow card.",
"anonymized": "This yellow card was deserved. The tackle by [PLAYER] ([TEAM]) was quite harsh and [REFEREE] didn't hesitate to show him a yellow card.",
"visibility": "shown",
"position": "1301000"
},
{
"important": false,
"gameTime": "1 - 21:21",
"label": "",
"description": "Barcelona are showcasing great team work by exchanging some short passes and one-two passes, waiting to open the opposition's defence and hit them swiftly on the break.",
"identified": "[TEAM_] are showcasing great team work by exchanging some short passes and one-two passes, waiting to open the opposition's defence and hit them swiftly on the break.",
"anonymized": "[TEAM] are showcasing great team work by exchanging some short passes and one-two passes, waiting to open the opposition's defence and hit them swiftly on the break.",
"visibility": "shown",
"position": "1281000"
},
{
"important": false,
"gameTime": "1 - 20:07",
"label": "",
"description": "Antonio Mateu Lahoz blows his whistle. Hector Moreno (Espanyol) commits a foul after dangerous play.",
"identified": "[REFEREE] blows his whistle. [PLAYER_Q5Mj5mwa] ([TEAM_]) commits a foul after dangerous play.",
"anonymized": "[REFEREE] blows his whistle. [PLAYER] ([TEAM]) commits a foul after dangerous play.",
"visibility": "shown",
"position": "1207000"
},
{
"important": false,
"gameTime": "1 - 19:40",
"label": "",
"description": "Lionel Messi (Barcelona) fails to find a teammate across the pitch with a long ball. The ball is off of the pitch and it's a goal kick for Espanyol.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) fails to find a teammate across the pitch with a long ball. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) fails to find a teammate across the pitch with a long ball. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "1180000"
},
{
"important": true,
"gameTime": "1 - 16:54",
"label": "soccer-ball",
"description": "Goal! Jordi Alba displays great vision and sends a pass to Neymar (Barcelona), who shows brilliant composure inside the box to bury the ball from close range in the back of the net. The score is 0:1.",
"identified": "Goal! [PLAYER_42SIX9sl] displays great vision and sends a pass to [PLAYER_jNOPwl3h] ([TEAM_]), who shows brilliant composure inside the box to bury the ball from close range in the back of the net. The score is 0:1.",
"anonymized": "Goal! [PLAYER] displays great vision and sends a pass to [PLAYER] ([TEAM]), who shows brilliant composure inside the box to bury the ball from close range in the back of the net. The score is 0:1.",
"visibility": "shown",
"position": "1014000"
},
{
"important": false,
"gameTime": "1 - 16:50",
"label": "",
"description": "Lionel Messi (Barcelona) shows his brilliant passing ability after picking out Jordi Alba with a fine lofted pass.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) shows his brilliant passing ability after picking out [PLAYER_42SIX9sl] with a fine lofted pass.",
"anonymized": "[PLAYER] ([TEAM]) shows his brilliant passing ability after picking out [PLAYER] with a fine lofted pass.",
"visibility": "shown",
"position": "1010000"
},
{
"important": false,
"gameTime": "1 - 13:37",
"label": "",
"description": "Gerard Pique (Barcelona) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves Antonio Mateu Lahoz with no other option than to blow for a foul.",
"identified": "[PLAYER_fRBrHCRh] ([TEAM_]) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves [REFEREE] with no other option than to blow for a foul.",
"anonymized": "[PLAYER] ([TEAM]) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves [REFEREE] with no other option than to blow for a foul.",
"visibility": "shown",
"position": "817000"
},
{
"important": false,
"gameTime": "1 - 12:37",
"label": "",
"description": "Luis Suarez (Barcelona) finds himself behind the opposition's defence, but the game is stopped for offside.",
"identified": "[PLAYER_dUShzrBp] ([TEAM_]) finds himself behind the opposition's defence, but the game is stopped for offside.",
"anonymized": "[PLAYER] ([TEAM]) finds himself behind the opposition's defence, but the game is stopped for offside.",
"visibility": "shown",
"position": "757000"
},
{
"important": false,
"gameTime": "1 - 11:55",
"label": "",
"description": "Andres Iniesta (Barcelona) attempts a long crossfield pass, but the defence does well to intercept the ball.",
"identified": "[PLAYER_E7AksdFj] ([TEAM_]) attempts a long crossfield pass, but the defence does well to intercept the ball.",
"anonymized": "[PLAYER] ([TEAM]) attempts a long crossfield pass, but the defence does well to intercept the ball.",
"visibility": "shown",
"position": "715000"
},
{
"important": false,
"gameTime": "1 - 10:47",
"label": "",
"description": "Neymar (Barcelona) is adjudged offside.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) is adjudged offside.",
"anonymized": "[PLAYER] ([TEAM]) is adjudged offside.",
"visibility": "shown",
"position": "647000"
}
]
} |