File size: 80,928 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 |
{
"timestamp": "1442082600",
"score": "1 - 2",
"round": "3",
"teams": [
"Barcelona",
"Atl. Madrid"
],
"lineup": {
"home": {
"tactic": "1-4-4-2",
"players": [
{
"hash": "CCTRYs3a",
"name": "Filipe Luis",
"captain": "",
"detail_link": "/player/luis-filipe/CCTRYs3a/",
"short_name": "Filipe Luis",
"shirt_number": "3",
"country": "Brazil",
"facts": [
{
"type": "1",
"time": "43' Filipe Luis (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Filipe Luis"
},
{
"hash": "Q3asrkFf",
"name": "Gabi",
"captain": "(C)",
"detail_link": "/player/gabi/Q3asrkFf/",
"short_name": "Gabi",
"shirt_number": "14",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "81'",
"description": "Vietto L.",
"linked_player_hash": "KtpJdyan"
}
],
"lineup": 7,
"starting": true,
"long_name": "Gabi"
},
{
"hash": "IgRLzKhM",
"name": "Gimenez J. M.",
"captain": "",
"detail_link": "/player/gimenez-jose/IgRLzKhM/",
"short_name": "Gimenez",
"shirt_number": "24",
"country": "Uruguay",
"facts": [
{
"type": "1",
"time": "89' Gimenez J. M. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Jose Maria Gimenez"
},
{
"hash": "AXQzJq3b",
"name": "Godin D.",
"captain": "",
"detail_link": "/player/godin-diego/AXQzJq3b/",
"short_name": "Godin",
"shirt_number": "2",
"country": "Uruguay",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Diego Godin"
},
{
"hash": "OxCa1jdT",
"name": "Griezmann A.",
"captain": "",
"detail_link": "/player/griezmann-antoine/OxCa1jdT/",
"short_name": "Griezmann",
"shirt_number": "7",
"country": "France",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Antoine Griezmann"
},
{
"hash": "jLwtE6Rq",
"name": "Juanfran",
"captain": "",
"detail_link": "/player/juanfran/jLwtE6Rq/",
"short_name": "Juanfran",
"shirt_number": "20",
"country": "Spain",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Juanfran"
},
{
"hash": "v9hLv1xJ",
"name": "Koke",
"captain": "",
"detail_link": "/player/koke/v9hLv1xJ/",
"short_name": "Koke",
"shirt_number": "6",
"country": "Spain",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Koke"
},
{
"hash": "SYy8ZHN9",
"name": "Oblak J.",
"captain": "",
"detail_link": "/player/oblak-jan/SYy8ZHN9/",
"short_name": "Oblak",
"shirt_number": "13",
"country": "Slovenia",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Jan Oblak"
},
{
"hash": "lxBoIH5p",
"name": "Tiago",
"captain": "",
"detail_link": "/player/tiago/lxBoIH5p/",
"short_name": "Tiago",
"shirt_number": "5",
"country": "Portugal",
"facts": [
{
"type": "8",
"time": "51' Torres F. (Tiago)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Tiago"
},
{
"hash": "65srZ2Lb",
"name": "Torres F.",
"captain": "",
"detail_link": "/player/torres-fernando/65srZ2Lb/",
"short_name": "Torres",
"shirt_number": "9",
"country": "Spain",
"facts": [
{
"type": "3",
"time": "51' Torres F. (Tiago)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "62'",
"description": "Martinez J.",
"linked_player_hash": "zkwG1qoB"
}
],
"lineup": 10,
"starting": true,
"long_name": "Fernando Torres"
},
{
"hash": "6cK1wOfD",
"name": "Torres O.",
"captain": "",
"detail_link": "/player/torres-oliver/6cK1wOfD/",
"short_name": "Torres",
"shirt_number": "10",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "18' Torres O. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "60'",
"description": "Carrasco Y.",
"linked_player_hash": "lzccuuAC"
}
],
"lineup": 6,
"starting": true,
"long_name": "Oliver Torres"
},
{
"hash": "lzccuuAC",
"name": "Carrasco Y.",
"captain": "",
"detail_link": "/player/carrasco-yannick/lzccuuAC/",
"short_name": "Carrasco",
"shirt_number": "21",
"country": "Belgium",
"facts": [
{
"type": "7",
"time": "60'",
"description": "Torres O.",
"linked_player_hash": "6cK1wOfD"
}
],
"lineup": null,
"starting": false,
"long_name": "Yannick Carrasco"
},
{
"hash": "bN8yV97o",
"name": "Gamez J.",
"captain": "",
"detail_link": "/player/gamez-jesus/bN8yV97o/",
"short_name": "Gamez",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jesus Gamez"
},
{
"hash": "zkwG1qoB",
"name": "Martinez J.",
"captain": "",
"detail_link": "/player/martinez-jackson/zkwG1qoB/",
"short_name": "Martinez",
"shirt_number": "11",
"country": "Colombia",
"facts": [
{
"type": "7",
"time": "62'",
"description": "Torres F.",
"linked_player_hash": "65srZ2Lb"
}
],
"lineup": null,
"starting": false,
"long_name": "Jackson Martinez"
},
{
"hash": "IJ9sTzj2",
"name": "Moya M. A.",
"captain": "",
"detail_link": "/player/moya-miguel-angel/IJ9sTzj2/",
"short_name": "Moya",
"shirt_number": "1",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Miguel Angel Moya"
},
{
"hash": "hSbvVwW7",
"name": "Niguez S.",
"captain": "",
"detail_link": "/player/niguez-saul/hSbvVwW7/",
"short_name": "Niguez",
"shirt_number": "17",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Saul Niguez"
},
{
"hash": "rXcV9ZCT",
"name": "Savic S.",
"captain": "",
"detail_link": "/player/savic-stefan/rXcV9ZCT/",
"short_name": "Savic",
"shirt_number": "15",
"country": "Montenegro",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Stefan Savic"
},
{
"hash": "KtpJdyan",
"name": "Vietto L.",
"captain": "",
"detail_link": "/player/vietto-luciano/KtpJdyan/",
"short_name": "Vietto",
"shirt_number": "23",
"country": "Argentina",
"facts": [
{
"type": "7",
"time": "81'",
"description": "Gabi",
"linked_player_hash": "Q3asrkFf"
}
],
"lineup": null,
"starting": false,
"long_name": "Luciano Vietto"
}
],
"coach": [
{
"hash": "AZ18LjKN",
"name": "Simeone D.",
"captain": "",
"detail_link": "/player/simeone-diego/AZ18LjKN/",
"short_name": "Simeone D.",
"shirt_number": "",
"country": "Argentina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Diego Simeone"
}
]
},
"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": [],
"lineup": 5,
"starting": true,
"long_name": "Jordi Alba"
},
{
"hash": "CU4pL3ue",
"name": "Busquets S.",
"captain": "",
"detail_link": "/player/busquets-sergio/CU4pL3ue/",
"short_name": "Busquets",
"shirt_number": "5",
"country": "Spain",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Sergio Busquets"
},
{
"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": "44' Iniesta A. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"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": 3,
"starting": true,
"long_name": "Javier Mascherano"
},
{
"hash": "jNOPwl3h",
"name": "Neymar",
"captain": "",
"detail_link": "/player/neymar/jNOPwl3h/",
"short_name": "Neymar",
"shirt_number": "11",
"country": "Brazil",
"facts": [
{
"type": "3",
"time": "55' Neymar",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Neymar"
},
{
"hash": "8jE1xUrf",
"name": "Rafinha",
"captain": "",
"detail_link": "/player/rafinha/8jE1xUrf/",
"short_name": "Rafinha",
"shirt_number": "12",
"country": "Brazil",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Rafinha"
},
{
"hash": "pC6dfyG5",
"name": "Rakitic I.",
"captain": "",
"detail_link": "/player/rakitic-ivan/pC6dfyG5/",
"short_name": "Rakitic",
"shirt_number": "4",
"country": "Croatia",
"facts": [
{
"type": "6",
"time": "60'",
"description": "Messi L.",
"linked_player_hash": "vgOOdZbd"
}
],
"lineup": 6,
"starting": true,
"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": 2,
"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": "8",
"time": "77' Messi L. (Suarez L.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Luis Suarez"
},
{
"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": 1,
"starting": true,
"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": [
{
"type": "6",
"time": "28'",
"description": "Mathieu J.",
"linked_player_hash": "rmIQaghb"
}
],
"lineup": 4,
"starting": true,
"long_name": "Thomas Vermaelen"
},
{
"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": [],
"lineup": null,
"starting": false,
"long_name": "Marc Bartra"
},
{
"hash": "hA4JL8bD",
"name": "Masip J.",
"captain": "",
"detail_link": "/player/masip-jordi/hA4JL8bD/",
"short_name": "Masip",
"shirt_number": "25",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jordi Masip"
},
{
"hash": "rmIQaghb",
"name": "Mathieu J.",
"captain": "",
"detail_link": "/player/mathieu-jeremy/rmIQaghb/",
"short_name": "Mathieu",
"shirt_number": "24",
"country": "France",
"facts": [
{
"type": "7",
"time": "28'",
"description": "Vermaelen T.",
"linked_player_hash": "2HErrnlb"
}
],
"lineup": null,
"starting": false,
"long_name": "Jeremy Mathieu"
},
{
"hash": "vgOOdZbd",
"name": "Messi L.",
"captain": "",
"detail_link": "/player/messi-lionel/vgOOdZbd/",
"short_name": "Messi",
"shirt_number": "10",
"country": "Argentina",
"facts": [
{
"type": "7",
"time": "60'",
"description": "Rakitic I.",
"linked_player_hash": "pC6dfyG5"
},
{
"type": "3",
"time": "77' Messi L. (Suarez L.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Lionel Messi"
},
{
"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": [],
"lineup": null,
"starting": false,
"long_name": "Munir El Haddadi"
},
{
"hash": "fapXP9VS",
"name": "Ramirez S.",
"captain": "",
"detail_link": "/player/ramirez-sandro/fapXP9VS/",
"short_name": "Ramirez",
"shirt_number": "19",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Sandro Ramirez"
}
],
"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": [
"Estadio Vicente Calder\u00f3n (Madrid)"
],
"attendance": [
"53 491"
],
"referee_matched": [
"Antonio Mateu Lahoz"
],
"referee_found": [
"Antonio Mateu Lahoz"
],
"coach_matched": [
"Luis Enrique",
"Diego Simeone"
],
"gameHomeTeam": "Atl. Madrid",
"home": {
"name": "Atl. Madrid",
"detail_link": "/team/atl-madrid/jaarqpLQ",
"hash": "jaarqpLQ",
"names": [
"Atl. Madrid",
"atl madrid"
]
},
"gameAwayTeam": "Barcelona",
"away": {
"name": "Barcelona",
"detail_link": "/team/barcelona/SKbpVP5K",
"hash": "SKbpVP5K",
"names": [
"Barcelona",
"barcelona"
]
},
"gameDate": "12/09/2015 - 20:30",
"annotations": [
{
"important": false,
"gameTime": "2 - 47:59",
"label": "",
"description": "Today's game was very poor. There weren't many thrilling moments. Barcelona had more of the game and were superior. Their manager will certainly be the happier of the two managers. The hosts tried to catch the opposition off guard and hit them on the break. The visiting side kept the ball at their feet and the main intention was to produce that final killer pass.",
"identified": "Today's game was very poor. There weren't many thrilling moments. [TEAM_] had more of the game and were superior. Their manager will certainly be the happier of the two managers. The hosts tried to catch the opposition off guard and hit them on the break. The visiting side kept the ball at their feet and the main intention was to produce that final killer pass.",
"anonymized": "Today's game was very poor. There weren't many thrilling moments. [TEAM] had more of the game and were superior. Their manager will certainly be the happier of the two managers. The hosts tried to catch the opposition off guard and hit them on the break. The visiting side kept the ball at their feet and the main intention was to produce that final killer pass.",
"visibility": "shown",
"position": "2879000"
},
{
"important": true,
"gameTime": "2 - 47:11",
"label": "whistle",
"description": "The referee checks his watch and blows his whistle to signal the end of this match.",
"identified": "The referee checks his watch and blows his whistle to signal the end of this match.",
"anonymized": "The referee checks his watch and blows his whistle to signal the end of this match.",
"visibility": "shown",
"position": "2831000"
},
{
"important": false,
"gameTime": "2 - 46:25",
"label": "",
"description": "Diego Godin (Atl. Madrid) does his best to latch onto a cross into the box, but he can't get to the ball.",
"identified": "[PLAYER_AXQzJq3b] ([TEAM_]) does his best to latch onto a cross into the box, but he can't get to the ball.",
"anonymized": "[PLAYER] ([TEAM]) does his best to latch onto a cross into the box, but he can't get to the ball.",
"visibility": "shown",
"position": "2785000"
},
{
"important": false,
"gameTime": "2 - 45:07",
"label": "",
"description": "A pass from Luis Suarez (Barcelona) is intercepted by Jan Oblak and the move breaks down.",
"identified": "A pass from [PLAYER_dUShzrBp] ([TEAM_]) is intercepted by [PLAYER_SYy8ZHN9] and the move breaks down.",
"anonymized": "A pass from [PLAYER] ([TEAM]) is intercepted by [PLAYER] and the move breaks down.",
"visibility": "shown",
"position": "2707000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "2 additional min. will be played.",
"identified": "2 additional min. will be played.",
"anonymized": "2 additional min. will be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 44:15",
"label": "",
"description": "Lionel Messi (Barcelona) lines up the resulting free kick from the edge of the box, but he produces a poor shot that goes high over the bar. The ball could have snow on it when it returns!",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) lines up the resulting free kick from the edge of the box, but he produces a poor shot that goes high over the bar. The ball could have snow on it when it returns!",
"anonymized": "[PLAYER] ([TEAM]) lines up the resulting free kick from the edge of the box, but he produces a poor shot that goes high over the bar. The ball could have snow on it when it returns!",
"visibility": "shown",
"position": "2655000"
},
{
"important": true,
"gameTime": "2 - 43:18",
"label": "y-card",
"description": "The foul by Jose Maria Gimenez (Atl. Madrid) is worthy of a card and a yellow is duly shown by Antonio Mateu Lahoz.",
"identified": "The foul by [PLAYER_IgRLzKhM] ([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": "2598000"
},
{
"important": false,
"gameTime": "2 - 41:59",
"label": "corner",
"description": "Neymar (Barcelona) takes the resulting corner which is well defended.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) takes the resulting corner which is well defended.",
"anonymized": "[PLAYER] ([TEAM]) takes the resulting corner which is well defended.",
"visibility": "shown",
"position": "2519000"
},
{
"important": false,
"gameTime": "2 - 41:40",
"label": "",
"description": "Sergi Roberto (Barcelona) serves up a nice cross, but the defence clears the danger. Barcelona have a corner.",
"identified": "[PLAYER_W2R804U4] ([TEAM_]) serves up a nice cross, but the defence clears the danger. [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) serves up a nice cross, but the defence clears the danger. [TEAM] have a corner.",
"visibility": "shown",
"position": "2500000"
},
{
"important": false,
"gameTime": "2 - 40:44",
"label": "",
"description": "Neymar races towards the box before laying off to Lionel Messi (Barcelona), who picks it up but blazes a shot well over the bar from the edge of the box.",
"identified": "[PLAYER_jNOPwl3h] races towards the box before laying off to [PLAYER_vgOOdZbd] ([TEAM_]), who picks it up but blazes a shot well over the bar from the edge of the box.",
"anonymized": "[PLAYER] races towards the box before laying off to [PLAYER] ([TEAM]), who picks it up but blazes a shot well over the bar from the edge of the box.",
"visibility": "shown",
"position": "2444000"
},
{
"important": false,
"gameTime": "2 - 39:45",
"label": "",
"description": "Yannick Carrasco (Atl. Madrid) sprays a pass out to Luciano Vietto, but he can't beat his man inside the box.",
"identified": "[PLAYER_lzccuuAC] ([TEAM_]) sprays a pass out to [PLAYER_KtpJdyan], but he can't beat his man inside the box.",
"anonymized": "[PLAYER] ([TEAM]) sprays a pass out to [PLAYER], but he can't beat his man inside the box.",
"visibility": "shown",
"position": "2385000"
},
{
"important": false,
"gameTime": "2 - 38:12",
"label": "",
"description": "A nice lofted cross finds Jackson Martinez (Atl. Madrid) unmarked. He takes an excellent touch and gets in a shot that goes towards the middle of the net. An easy save for the goalkeeper, though.",
"identified": "A nice lofted cross finds [PLAYER_zkwG1qoB] ([TEAM_]) unmarked. He takes an excellent touch and gets in a shot that goes towards the middle of the net. An easy save for the goalkeeper, though.",
"anonymized": "A nice lofted cross finds [PLAYER] ([TEAM]) unmarked. He takes an excellent touch and gets in a shot that goes towards the middle of the net. An easy save for the goalkeeper, though.",
"visibility": "shown",
"position": "2292000"
},
{
"important": false,
"gameTime": "2 - 37:06",
"label": "attendance",
"description": "The attendance for today's match is 53491.",
"identified": "The attendance for today's match is 53491.",
"anonymized": "The attendance for today's match is 53491.",
"visibility": "shown",
"position": "2226000"
},
{
"important": true,
"gameTime": "2 - 35:12",
"label": "substitution",
"description": "Substitution. Luciano Vietto (Atl. Madrid) receives a signal from the referee and is now allowed to enter the pitch as Gabi walks off.",
"identified": "Substitution. [PLAYER_KtpJdyan] ([TEAM_]) receives a signal from the referee and is now allowed to enter the pitch as [PLAYER_Q3asrkFf] walks off.",
"anonymized": "Substitution. [PLAYER] ([TEAM]) receives a signal from the referee and is now allowed to enter the pitch as [PLAYER] walks off.",
"visibility": "shown",
"position": "2112000"
},
{
"important": false,
"gameTime": "2 - 34:04",
"label": "corner",
"description": "Neymar (Barcelona) is heading toward the corner flag to take the set piece. Neymar (Barcelona) shows his incredible technical ability by sending the ball into free space and Lionel Messi latches onto his pass.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) is heading toward the corner flag to take the set piece. [PLAYER_jNOPwl3h] ([TEAM_]) shows his incredible technical ability by sending the ball into free space and [PLAYER_vgOOdZbd] latches onto his pass.",
"anonymized": "[PLAYER] ([TEAM]) is heading toward the corner flag to take the set piece. [PLAYER] ([TEAM]) shows his incredible technical ability by sending the ball into free space and [PLAYER] latches onto his pass.",
"visibility": "shown",
"position": "2044000"
},
{
"important": true,
"gameTime": "2 - 33:38",
"label": "",
"description": "Jan Oblak pulls off a great save to deny Luis Suarez (Barcelona), who makes himself some space inside the box and unleashes a quick low drive to the bottom left corner. Barcelona force a corner. They send men into the box.",
"identified": "[PLAYER_SYy8ZHN9] pulls off a great save to deny [PLAYER_dUShzrBp] ([TEAM_]), who makes himself some space inside the box and unleashes a quick low drive to the bottom left corner. [TEAM_] force a corner. They send men into the box.",
"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. [TEAM] force a corner. They send men into the box.",
"visibility": "shown",
"position": "2018000"
},
{
"important": true,
"gameTime": "2 - 31:44",
"label": "soccer-ball",
"description": "It's 1:2! Luis Suarez feeds Lionel Messi (Barcelona) inside the box, who is unmarked and buries the ball in the bottom right corner.",
"identified": "It's 1:2! [PLAYER_dUShzrBp] feeds [PLAYER_vgOOdZbd] ([TEAM_]) inside the box, who is unmarked and buries the ball in the bottom right corner.",
"anonymized": "It's 1:2! [PLAYER] feeds [PLAYER] ([TEAM]) inside the box, who is unmarked and buries the ball in the bottom right corner.",
"visibility": "shown",
"position": "1904000"
},
{
"important": false,
"gameTime": "2 - 29:11",
"label": "",
"description": "That's a well-taken pass by Tiago (Atl. Madrid). He unleashes a strike from the edge of the box, but blazes it high over the bar.",
"identified": "That's a well-taken pass by [PLAYER_lxBoIH5p] ([TEAM_]). He unleashes a strike from the edge of the box, but blazes it high over the bar.",
"anonymized": "That's a well-taken pass by [PLAYER] ([TEAM]). He unleashes a strike from the edge of the box, but blazes it high over the bar.",
"visibility": "shown",
"position": "1751000"
},
{
"important": false,
"gameTime": "2 - 28:24",
"label": "",
"description": "A promising cross into the box is nearly received by the lurking Yannick Carrasco (Atl. Madrid), but one of the defending players cuts it out to avert the threat.",
"identified": "A promising cross into the box is nearly received by the lurking [PLAYER_lzccuuAC] ([TEAM_]), but one of the defending players cuts it out to avert the threat.",
"anonymized": "A promising cross into the box is nearly received by the lurking [PLAYER] ([TEAM]), but one of the defending players cuts it out to avert the threat.",
"visibility": "shown",
"position": "1704000"
},
{
"important": false,
"gameTime": "2 - 27:35",
"label": "",
"description": "Good defending. Lionel Messi (Barcelona) tries to find Neymar inside the box, but the pass is cut out.",
"identified": "Good defending. [PLAYER_vgOOdZbd] ([TEAM_]) tries to find [PLAYER_jNOPwl3h] inside the box, but the pass is cut out.",
"anonymized": "Good defending. [PLAYER] ([TEAM]) tries to find [PLAYER] inside the box, but the pass is cut out.",
"visibility": "shown",
"position": "1655000"
},
{
"important": false,
"gameTime": "2 - 25:55",
"label": "",
"description": "Lionel Messi (Barcelona) plays a one-two with Luis Suarez, but the move breaks down.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) plays a one-two with [PLAYER_dUShzrBp], but the move breaks down.",
"anonymized": "[PLAYER] ([TEAM]) plays a one-two with [PLAYER], but the move breaks down.",
"visibility": "shown",
"position": "1555000"
},
{
"important": false,
"gameTime": "2 - 23:57",
"label": "",
"description": "Juanfran (Atl. Madrid) is forced to stop his attacking move after the linesman signals for offside.",
"identified": "[PLAYER_jLwtE6Rq] ([TEAM_]) is forced to stop his attacking move after the linesman signals for offside.",
"anonymized": "[PLAYER] ([TEAM]) is forced to stop his attacking move after the linesman signals for offside.",
"visibility": "shown",
"position": "1437000"
},
{
"important": false,
"gameTime": "2 - 23:23",
"label": "",
"description": "Marc-Andre ter Stegen makes a save to deny the long-range effort from Yannick Carrasco (Atl. Madrid) towards the middle of the goal.",
"identified": "[PLAYER_byxc46yl] makes a save to deny the long-range effort from [PLAYER_lzccuuAC] ([TEAM_]) towards the middle of the goal.",
"anonymized": "[PLAYER] makes a save to deny the long-range effort from [PLAYER] ([TEAM]) towards the middle of the goal.",
"visibility": "shown",
"position": "1403000"
},
{
"important": false,
"gameTime": "2 - 22:30",
"label": "corner",
"description": "Neymar (Barcelona) takes the corner and sends it into the penalty area, but the opposition's defence is ready and makes a good clearance.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) takes the corner and sends it into the penalty area, but the opposition's defence is ready and makes a good clearance.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner and sends it into the penalty area, but the opposition's defence is ready and makes a good clearance.",
"visibility": "shown",
"position": "1350000"
},
{
"important": true,
"gameTime": "2 - 22:00",
"label": "",
"description": "Lionel Messi (Barcelona) latches on to a pass inside the box and strikes the ball to the middle of the goal, but one of the defending players makes a goal-line clearance.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) latches on to a pass inside the box and strikes the ball to the middle of the goal, but one of the defending players makes a goal-line clearance.",
"anonymized": "[PLAYER] ([TEAM]) latches on to a pass inside the box and strikes the ball to the middle of the goal, but one of the defending players makes a goal-line clearance.",
"visibility": "shown",
"position": "1320000"
},
{
"important": false,
"gameTime": "2 - 21:47",
"label": "corner",
"description": "Lionel Messi (Barcelona) quickly takes the corner kick with a short pass.",
"identified": "[PLAYER_vgOOdZbd] ([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": "1307000"
},
{
"important": false,
"gameTime": "2 - 21:06",
"label": "",
"description": "The ball is cleared after Luis Suarez (Barcelona) attempted to dribble past an opposing player. Barcelona will have a chance to score from a corner kick.",
"identified": "The ball is cleared after [PLAYER_dUShzrBp] ([TEAM_]) attempted to dribble past an opposing player. [TEAM_] will have a chance to score from a corner kick.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. [TEAM] will have a chance to score from a corner kick.",
"visibility": "shown",
"position": "1266000"
},
{
"important": false,
"gameTime": "2 - 19:58",
"label": "",
"description": "Antonio Mateu Lahoz blows his whistle and signals a foul after Jackson Martinez (Atl. Madrid) brought his opponent down.",
"identified": "[REFEREE] blows his whistle and signals a foul after [PLAYER_zkwG1qoB] ([TEAM_]) brought his opponent down.",
"anonymized": "[REFEREE] blows his whistle and signals a foul after [PLAYER] ([TEAM]) brought his opponent down.",
"visibility": "shown",
"position": "1198000"
},
{
"important": false,
"gameTime": "2 - 19:10",
"label": "",
"description": "Jan Oblak doesn't have to worry about this one. Rafinha plays a pass into the feet of Luis Suarez (Barcelona), who is unable to find the target as his effort from inside the box goes well wide of the right post.",
"identified": "[PLAYER_SYy8ZHN9] doesn't have to worry about this one. [PLAYER_8jE1xUrf] plays a pass into the feet of [PLAYER_dUShzrBp] ([TEAM_]), who is unable to find the target as his effort from inside the box goes well wide of the right post.",
"anonymized": "[PLAYER] doesn't have to worry about this one. [PLAYER] plays a pass into the feet of [PLAYER] ([TEAM]), who is unable to find the target as his effort from inside the box goes well wide of the right post.",
"visibility": "shown",
"position": "1150000"
},
{
"important": true,
"gameTime": "2 - 16:14",
"label": "substitution",
"description": "The referee signals that it is time for a substitution and Jackson Martinez (Atl. Madrid) is coming onto the pitch as Fernando Torres cannot continue after picking up an injury.",
"identified": "The referee signals that it is time for a substitution and [PLAYER_zkwG1qoB] ([TEAM_]) is coming onto the pitch as [PLAYER_65srZ2Lb] cannot continue after picking up an injury.",
"anonymized": "The referee signals that it is time for a substitution and [PLAYER] ([TEAM]) is coming onto the pitch as [PLAYER] cannot continue after picking up an injury.",
"visibility": "shown",
"position": "974000"
},
{
"important": false,
"gameTime": "2 - 16:02",
"label": "corner",
"description": "Lionel Messi (Barcelona) decides to speed play up with a short corner kick.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) decides to speed play up with a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) decides to speed play up with a short corner kick.",
"visibility": "shown",
"position": "962000"
},
{
"important": false,
"gameTime": "2 - 15:48",
"label": "",
"description": "Sergi Roberto (Barcelona) sends a lofted cross into the box which is headed clear. The referee signals a corner kick to Barcelona.",
"identified": "[PLAYER_W2R804U4] ([TEAM_]) sends a lofted cross into the box which is headed clear. The referee signals a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) sends a lofted cross into the box which is headed clear. The referee signals a corner kick to [TEAM].",
"visibility": "shown",
"position": "948000"
},
{
"important": true,
"gameTime": "2 - 14:59",
"label": "substitution",
"description": "Diego Simeone has decided to make a change. Yannick Carrasco (Atl. Madrid) replaces Oliver Torres.",
"identified": "[COACH_AZ18LjKN] has decided to make a change. [PLAYER_lzccuuAC] ([TEAM_]) replaces [PLAYER_65srZ2Lb].",
"anonymized": "[COACH] has decided to make a change. [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "899000"
},
{
"important": true,
"gameTime": "2 - 14:37",
"label": "substitution",
"description": "The substitution is prepared. Lionel Messi (Barcelona) joins the action as a substitute, replacing Ivan Rakitic.",
"identified": "The substitution is prepared. [PLAYER_vgOOdZbd] ([TEAM_]) joins the action as a substitute, replacing [PLAYER_pC6dfyG5].",
"anonymized": "The substitution is prepared. [PLAYER] ([TEAM]) joins the action as a substitute, replacing [PLAYER].",
"visibility": "shown",
"position": "877000"
},
{
"important": false,
"gameTime": "2 - 13:40",
"label": "",
"description": "Juanfran (Atl. Madrid) is forced to stop his attacking move after the linesman signals for offside.",
"identified": "[PLAYER_jLwtE6Rq] ([TEAM_]) is forced to stop his attacking move after the linesman signals for offside.",
"anonymized": "[PLAYER] ([TEAM]) is forced to stop his attacking move after the linesman signals for offside.",
"visibility": "shown",
"position": "820000"
},
{
"important": false,
"gameTime": "2 - 13:33",
"label": "",
"description": "A long pass, executed by Tiago (Atl. Madrid), missed the precision to reach his teammates.",
"identified": "A long pass, executed by [PLAYER_lxBoIH5p] ([TEAM_]), missed the precision to reach his teammates.",
"anonymized": "A long pass, executed by [PLAYER] ([TEAM]), missed the precision to reach his teammates.",
"visibility": "shown",
"position": "813000"
},
{
"important": false,
"gameTime": "2 - 12:31",
"label": "",
"description": "Fernando Torres (Atl. Madrid) gets in a good position inside the box and is only inches away from getting on the end of a through ball from the edge of the area.",
"identified": "[PLAYER_65srZ2Lb] ([TEAM_]) gets in a good position inside the box and is only inches away from getting on the end of a through ball from the edge of the area.",
"anonymized": "[PLAYER] ([TEAM]) gets in a good position inside the box and is only inches away from getting on the end of a through ball from the edge of the area.",
"visibility": "shown",
"position": "751000"
},
{
"important": false,
"gameTime": "2 - 11:22",
"label": "",
"description": "Andres Iniesta (Barcelona) swings a cross into the box, but it's far too close to Jan Oblak, who smothers the ball.",
"identified": "[PLAYER_E7AksdFj] ([TEAM_]) swings a cross into the box, but it's far too close to [PLAYER_SYy8ZHN9], 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": "682000"
},
{
"important": true,
"gameTime": "2 - 09:46",
"label": "soccer-ball",
"description": "Neymar (Barcelona) takes a wonderful free kick and curls the ball into the top left corner with an absolutely phenomenal strike!",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) takes a wonderful free kick and curls the ball into the top left corner with an absolutely phenomenal strike!",
"anonymized": "[PLAYER] ([TEAM]) takes a wonderful free kick and curls the ball into the top left corner with an absolutely phenomenal strike!",
"visibility": "shown",
"position": "586000"
},
{
"important": false,
"gameTime": "2 - 08:41",
"label": "",
"description": "Barcelona earn a free kick. Antoine Griezmann (Atl. Madrid) commits an ugly tackle on his opponent, but there is no caution from the referee.",
"identified": "[TEAM_] earn a free kick. [PLAYER_OxCa1jdT] ([TEAM_]) commits an ugly tackle on his opponent, but there is no caution from the referee.",
"anonymized": "[TEAM] earn a free kick. [PLAYER] ([TEAM]) commits an ugly tackle on his opponent, but there is no caution from the referee.",
"visibility": "shown",
"position": "521000"
},
{
"important": true,
"gameTime": "2 - 05:59",
"label": "soccer-ball",
"description": "Tiago plays a neat ball into the path of Fernando Torres (Atl. Madrid), who makes room for a shot and sends in a low drive which bounces in off the left post! 1:0.",
"identified": "[PLAYER_lxBoIH5p] plays a neat ball into the path of [PLAYER_65srZ2Lb] ([TEAM_]), who makes room for a shot and sends in a low drive which bounces in off the left post! 1:0.",
"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 left post! 1:0.",
"visibility": "shown",
"position": "359000"
},
{
"important": false,
"gameTime": "2 - 05:50",
"label": "",
"description": "Ivan Rakitic (Barcelona) sends a chip pass into the box, but Jan Oblak is quickest to intercept the ball.",
"identified": "[PLAYER_pC6dfyG5] ([TEAM_]) sends a chip pass into the box, but [PLAYER_SYy8ZHN9] is quickest to intercept the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a chip pass into the box, but [PLAYER] is quickest to intercept the ball.",
"visibility": "shown",
"position": "350000"
},
{
"important": false,
"gameTime": "2 - 05:21",
"label": "",
"description": "The Barcelona players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"identified": "The [TEAM_] players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"anonymized": "The [TEAM] players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"visibility": "shown",
"position": "321000"
},
{
"important": false,
"gameTime": "2 - 03:42",
"label": "",
"description": "A fine lofted pass into the box, sent by Fernando Torres (Atl. Madrid), is intercepted by the opposition's defence.",
"identified": "A fine lofted pass into the box, sent by [PLAYER_65srZ2Lb] ([TEAM_]), is intercepted by the opposition's defence.",
"anonymized": "A fine lofted pass into the box, sent by [PLAYER] ([TEAM]), is intercepted by the opposition's defence.",
"visibility": "shown",
"position": "222000"
},
{
"important": false,
"gameTime": "2 - 00:28",
"label": "",
"description": "Oliver Torres (Atl. Madrid) goes close to scoring with a shot from inside the box, but he drags his effort wide of the right post.",
"identified": "[PLAYER_65srZ2Lb] ([TEAM_]) goes close to scoring with a shot from inside the box, but he drags his effort wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) goes close to scoring with a shot from inside the box, but he drags his effort wide of the right post.",
"visibility": "shown",
"position": "28000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"identified": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"anonymized": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 46:59",
"label": "",
"description": "Well, it hasn't been the most exciting game in the world but there has been some nice football on display. We hope that the second period will bring more action. Barcelona have arguably been the better of the two sides in the first half. The home team's main weapon is fast counter-attacks, while the away side attempts to hold onto the ball for as long as possible.",
"identified": "Well, it hasn't been the most exciting game in the world but there has been some nice football on display. We hope that the second period will bring more action. [TEAM_] have arguably been the better of the two sides in the first half. The home team's main weapon is fast counter-attacks, while the away side attempts to hold onto the ball for as long as possible.",
"anonymized": "Well, it hasn't been the most exciting game in the world but there has been some nice football on display. We hope that the second period will bring more action. [TEAM] have arguably been the better of the two sides in the first half. The home team's main weapon is fast counter-attacks, while the away side attempts to hold onto the ball for as long as possible.",
"visibility": "shown",
"position": "2819000"
},
{
"important": true,
"gameTime": "1 - 46:07",
"label": "whistle",
"description": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"identified": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"anonymized": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"visibility": "shown",
"position": "2767000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "There will be a minimum of 1 min. of added time.",
"identified": "There will be a minimum of 1 min. of added time.",
"anonymized": "There will be a minimum of 1 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 44:26",
"label": "",
"description": "Koke (Atl. Madrid) sends a cross into the box, but Marc-Andre ter Stegen comes off his line to gather the ball.",
"identified": "[PLAYER_v9hLv1xJ] ([TEAM_]) sends a cross into the box, but [PLAYER_byxc46yl] comes off his line to gather the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but [PLAYER] comes off his line to gather the ball.",
"visibility": "shown",
"position": "2666000"
},
{
"important": true,
"gameTime": "1 - 43:49",
"label": "y-card",
"description": "Antonio Mateu Lahoz shows a yellow card to Andres Iniesta (Barcelona) for a tough tackle.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_E7AksdFj] ([TEAM_]) for a tough tackle.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for a tough tackle.",
"visibility": "shown",
"position": "2629000"
},
{
"important": true,
"gameTime": "1 - 42:31",
"label": "y-card",
"description": "A yellow card for a tackle by Filipe Luis (Atl. Madrid). Antonio Mateu Lahoz doesn't hesitate at all to make this decision.",
"identified": "A yellow card for a tackle by [PLAYER_CCTRYs3a] ([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": "2551000"
},
{
"important": false,
"gameTime": "1 - 40:57",
"label": "",
"description": "Jordi Alba (Barcelona) clips a neat ball into the box in the direction of Neymar, but he can't get on the end of the pass.",
"identified": "[PLAYER_42SIX9sl] ([TEAM_]) clips a neat ball into the box in the direction of [PLAYER_jNOPwl3h], but he can't get on the end of the pass.",
"anonymized": "[PLAYER] ([TEAM]) clips a neat ball into the box in the direction of [PLAYER], but he can't get on the end of the pass.",
"visibility": "shown",
"position": "2457000"
},
{
"important": false,
"gameTime": "1 - 40:13",
"label": "corner",
"description": "Nothing comes of the resulting corner from Gabi (Atl. Madrid). The defence is alert and manages to cut it out.",
"identified": "Nothing comes of the resulting corner from [PLAYER_Q3asrkFf] ([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": "2413000"
},
{
"important": false,
"gameTime": "1 - 39:50",
"label": "",
"description": "Antoine Griezmann (Atl. Madrid) slaloms his way past challenges, but an opposing player does well to get the ball away. The ball is out of play. Atl. Madrid will have a chance to score from a corner.",
"identified": "[PLAYER_OxCa1jdT] ([TEAM_]) slaloms his way past challenges, but an opposing player does well to get the ball away. The ball is out of play. [TEAM_] will have a chance to score from a corner.",
"anonymized": "[PLAYER] ([TEAM]) slaloms his way past challenges, but an opposing player does well to get the ball away. The ball is out of play. [TEAM] will have a chance to score from a corner.",
"visibility": "shown",
"position": "2390000"
},
{
"important": false,
"gameTime": "1 - 38:29",
"label": "",
"description": "Neymar (Barcelona) does his best to latch onto a cross into the box, but he can't get to the ball.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) does his best to latch onto a cross into the box, but he can't get to the ball.",
"anonymized": "[PLAYER] ([TEAM]) does his best to latch onto a cross into the box, but he can't get to the ball.",
"visibility": "shown",
"position": "2309000"
},
{
"important": false,
"gameTime": "1 - 36:43",
"label": "",
"description": "Sergi Roberto (Barcelona) blows an opportunity as he sends a rebound from just outside of the box narrowly wide of the left post.",
"identified": "[PLAYER_W2R804U4] ([TEAM_]) blows an opportunity as he sends a rebound from just outside of the box narrowly wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) blows an opportunity as he sends a rebound from just outside of the box narrowly wide of the left post.",
"visibility": "shown",
"position": "2203000"
},
{
"important": false,
"gameTime": "1 - 36:33",
"label": "corner",
"description": "Ivan Rakitic (Barcelona) takes the corner kick but the ball only finds the head of an opponent.",
"identified": "[PLAYER_pC6dfyG5] ([TEAM_]) takes the corner kick but the ball only finds the head of an opponent.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner kick but the ball only finds the head of an opponent.",
"visibility": "shown",
"position": "2193000"
},
{
"important": false,
"gameTime": "1 - 35:15",
"label": "corner",
"description": "The corner from Ivan Rakitic (Barcelona) is cleared away by the defence. The referee and his assistant both point at the corner flag. Barcelona will have an opportunity to threaten the opposition's goal.",
"identified": "The corner from [PLAYER_pC6dfyG5] ([TEAM_]) is cleared away by the defence. The referee and his assistant both point at the corner flag. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is cleared away by the defence. 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": "2115000"
},
{
"important": false,
"gameTime": "1 - 34:55",
"label": "",
"description": "Luis Suarez (Barcelona) looks to break free, but an opposing player clears the ball away. The ball goes behind for a corner. Barcelona will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_dUShzrBp] ([TEAM_]) looks to break free, but an opposing player clears the ball away. The ball goes behind for a corner. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away. The ball goes behind for a corner. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "2095000"
},
{
"important": true,
"gameTime": "1 - 34:37",
"label": "",
"description": "Neymar (Barcelona) collects a brilliant pass inside the box and finds himself in a goal scoring opportunity. He takes a shot, but the effort is well blocked by one of the defending players.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) collects a brilliant pass inside the box and finds himself in a goal scoring opportunity. He takes a shot, but the effort is well blocked by one of the defending players.",
"anonymized": "[PLAYER] ([TEAM]) collects a brilliant pass inside the box and finds himself in a goal scoring opportunity. He takes a shot, but the effort is well blocked by one of the defending players.",
"visibility": "shown",
"position": "2077000"
},
{
"important": false,
"gameTime": "1 - 32:16",
"label": "",
"description": "Juanfran (Atl. Madrid) 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.",
"identified": "[PLAYER_jLwtE6Rq] ([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.",
"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.",
"visibility": "shown",
"position": "1936000"
},
{
"important": false,
"gameTime": "1 - 31:39",
"label": "",
"description": "Luis Suarez (Barcelona) fails to pick a body out in the box with an over-hit cross to the back post.",
"identified": "[PLAYER_dUShzrBp] ([TEAM_]) fails to pick a body out in the box with an over-hit cross to the back post.",
"anonymized": "[PLAYER] ([TEAM]) fails to pick a body out in the box with an over-hit cross to the back post.",
"visibility": "shown",
"position": "1899000"
},
{
"important": false,
"gameTime": "1 - 29:00",
"label": "",
"description": "Luis Suarez (Barcelona) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"identified": "[PLAYER_dUShzrBp] ([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": "1740000"
},
{
"important": true,
"gameTime": "1 - 27:28",
"label": "substitution",
"description": "Luis Enrique is forced to make a change. Thomas Vermaelen is not able to carry on due to injury. He is replaced by Jeremy Mathieu (Barcelona).",
"identified": "[COACH_8MdrBIUb] is forced to make a change. [PLAYER_2HErrnlb] is not able to carry on due to injury. He is replaced by [PLAYER_rmIQaghb] ([TEAM_]).",
"anonymized": "[COACH] is forced to make a change. [PLAYER] is not able to carry on due to injury. He is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1648000"
},
{
"important": false,
"gameTime": "1 - 27:16",
"label": "",
"description": "Filipe Luis (Atl. Madrid) latched on to a cross on the edge of the box, but his strike isn't accurate at all and the ball goes way wide of the left post.",
"identified": "[PLAYER_CCTRYs3a] ([TEAM_]) latched on to a cross on the edge of the box, but his strike isn't accurate at all and the ball goes way wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) latched on to a cross on the edge of the box, but his strike isn't accurate at all and the ball goes way wide of the left post.",
"visibility": "shown",
"position": "1636000"
},
{
"important": false,
"gameTime": "1 - 26:38",
"label": "",
"description": "Neymar (Barcelona) tries to find Luis Suarez, but he puts too much power on the pass.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) tries to find [PLAYER_dUShzrBp], but he puts too much power on the pass.",
"anonymized": "[PLAYER] ([TEAM]) tries to find [PLAYER], but he puts too much power on the pass.",
"visibility": "shown",
"position": "1598000"
},
{
"important": true,
"gameTime": "1 - 24:08",
"label": "",
"description": "OFF THE BAR! Luis Suarez (Barcelona) finds some space to meet the corner kick and unleashes a shot that only crashes against the bar!",
"identified": "OFF THE BAR! [PLAYER_dUShzrBp] ([TEAM_]) finds some space to meet the corner kick and unleashes a shot that only crashes against the bar!",
"anonymized": "OFF THE BAR! [PLAYER] ([TEAM]) finds some space to meet the corner kick and unleashes a shot that only crashes against the bar!",
"visibility": "shown",
"position": "1448000"
},
{
"important": false,
"gameTime": "1 - 23:39",
"label": "corner",
"description": "Ivan Rakitic (Barcelona) takes the corner.",
"identified": "[PLAYER_pC6dfyG5] ([TEAM_]) takes the corner.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner.",
"visibility": "shown",
"position": "1419000"
},
{
"important": false,
"gameTime": "1 - 23:23",
"label": "",
"description": "Andres Iniesta (Barcelona) fails to send a pass into the box as his effort is cut out. Barcelona have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"identified": "[PLAYER_E7AksdFj] ([TEAM_]) fails to send a pass into the box as his effort is cut out. [TEAM_] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"anonymized": "[PLAYER] ([TEAM]) fails to send a pass into the box as his effort is cut out. [TEAM] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"visibility": "shown",
"position": "1403000"
},
{
"important": false,
"gameTime": "1 - 22:43",
"label": "",
"description": "Gabi (Atl. Madrid) commits a minor foul to interrupt the attacking move of his opponent and is warned by the referee that he will get a yellow card if he does it again.",
"identified": "[PLAYER_Q3asrkFf] ([TEAM_]) commits a minor foul to interrupt the attacking move of his opponent and is warned by the referee that he will get a yellow card if he does it again.",
"anonymized": "[PLAYER] ([TEAM]) commits a minor foul to interrupt the attacking move of his opponent and is warned by the referee that he will get a yellow card if he does it again.",
"visibility": "shown",
"position": "1363000"
},
{
"important": false,
"gameTime": "1 - 21:44",
"label": "",
"description": "Luis Suarez (Barcelona) sends a teasing cross into the area, but Jan Oblak intercepts the ball.",
"identified": "[PLAYER_dUShzrBp] ([TEAM_]) sends a teasing cross into the area, but [PLAYER_SYy8ZHN9] intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a teasing cross into the area, but [PLAYER] intercepts the ball.",
"visibility": "shown",
"position": "1304000"
},
{
"important": false,
"gameTime": "1 - 20:57",
"label": "",
"description": "Juanfran (Atl. Madrid) pulls the jersey of one of the opposition players and Antonio Mateu Lahoz blows his whistle for a foul. Barcelona are awarded a free kick.",
"identified": "[PLAYER_jLwtE6Rq] ([TEAM_]) pulls the jersey of one of the opposition players and [REFEREE] blows his whistle for a foul. [TEAM_] are awarded a free kick.",
"anonymized": "[PLAYER] ([TEAM]) pulls the jersey of one of the opposition players and [REFEREE] blows his whistle for a foul. [TEAM] are awarded a free kick.",
"visibility": "shown",
"position": "1257000"
},
{
"important": false,
"gameTime": "1 - 19:33",
"label": "",
"description": "Jordi Alba (Barcelona) sends a pass into the box, but his attempt is thwarted and cleared.",
"identified": "[PLAYER_42SIX9sl] ([TEAM_]) sends a pass into the box, but his attempt is thwarted and cleared.",
"anonymized": "[PLAYER] ([TEAM]) sends a pass into the box, but his attempt is thwarted and cleared.",
"visibility": "shown",
"position": "1173000"
},
{
"important": true,
"gameTime": "1 - 17:55",
"label": "y-card",
"description": "Oliver Torres (Atl. Madrid) is booked after bringing down an opponent. Antonio Mateu Lahoz had an easy-decision to make.",
"identified": "[PLAYER_65srZ2Lb] ([TEAM_]) is booked after bringing down an opponent. [REFEREE] had an easy-decision to make.",
"anonymized": "[PLAYER] ([TEAM]) is booked after bringing down an opponent. [REFEREE] had an easy-decision to make.",
"visibility": "shown",
"position": "1075000"
},
{
"important": true,
"gameTime": "1 - 16:50",
"label": "",
"description": "Fernando Torres (Atl. Madrid) sends in a shot from a promising distance after a precise pass. His effort goes inches over the crossbar.",
"identified": "[PLAYER_65srZ2Lb] ([TEAM_]) sends in a shot from a promising distance after a precise pass. His effort goes inches over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) sends in a shot from a promising distance after a precise pass. His effort goes inches over the crossbar.",
"visibility": "shown",
"position": "1010000"
},
{
"important": false,
"gameTime": "1 - 16:20",
"label": "",
"description": "Antoine Griezmann (Atl. Madrid) finds himself in an offside position and the referee stops play after the linesman raises his flag.",
"identified": "[PLAYER_OxCa1jdT] ([TEAM_]) finds himself in an offside position and the referee stops play after the linesman raises his flag.",
"anonymized": "[PLAYER] ([TEAM]) finds himself in an offside position and the referee stops play after the linesman raises his flag.",
"visibility": "shown",
"position": "980000"
},
{
"important": false,
"gameTime": "1 - 14:40",
"label": "corner",
"description": "Ivan Rakitic (Barcelona) steps up to take the corner, but the ball just sails in among the defenders.",
"identified": "[PLAYER_pC6dfyG5] ([TEAM_]) steps up to take the corner, but the ball just sails in among the defenders.",
"anonymized": "[PLAYER] ([TEAM]) steps up to take the corner, but the ball just sails in among the defenders.",
"visibility": "shown",
"position": "880000"
},
{
"important": true,
"gameTime": "1 - 14:11",
"label": "",
"description": "Jan Oblak pulls off a great save to deny Ivan Rakitic (Barcelona) after receiving a precise defence-splitting pass. The effort is headed for the top right corner, but the goalkeeper dives superbly to stop it. Definitely the best save of this match so far! The linesman makes the right call and Barcelona will have a corner.",
"identified": "[PLAYER_SYy8ZHN9] pulls off a great save to deny [PLAYER_pC6dfyG5] ([TEAM_]) after receiving a precise defence-splitting pass. The effort is headed for the top right corner, but the goalkeeper dives superbly to stop it. Definitely the best save of this match so far! The linesman makes the right call and [TEAM_] will have a corner.",
"anonymized": "[PLAYER] pulls off a great save to deny [PLAYER] ([TEAM]) after receiving a precise defence-splitting pass. The effort is headed for the top right corner, but the goalkeeper dives superbly to stop it. Definitely the best save of this match so far! The linesman makes the right call and [TEAM] will have a corner.",
"visibility": "shown",
"position": "851000"
},
{
"important": false,
"gameTime": "1 - 13:15",
"label": "",
"description": "Gabi (Atl. Madrid) gives away a foul for a clumsy challenge. Referee Antonio Mateu Lahoz saw the whole situation. Barcelona get a free kick.",
"identified": "[PLAYER_Q3asrkFf] ([TEAM_]) gives away a foul for a clumsy challenge. Referee [REFEREE] saw the whole situation. [TEAM_] get a free kick.",
"anonymized": "[PLAYER] ([TEAM]) gives away a foul for a clumsy challenge. Referee [REFEREE] saw the whole situation. [TEAM] get a free kick.",
"visibility": "shown",
"position": "795000"
},
{
"important": false,
"gameTime": "1 - 12:43",
"label": "",
"description": "The ball is cleared after Antoine Griezmann (Atl. Madrid) attempted to dribble past an opposing player.",
"identified": "The ball is cleared after [PLAYER_OxCa1jdT] ([TEAM_]) attempted to dribble past an opposing player.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player.",
"visibility": "shown",
"position": "763000"
},
{
"important": false,
"gameTime": "1 - 11:22",
"label": "",
"description": "Jordi Alba (Barcelona) whips a promising cross into the box, but the opposition's defence intercepts the ball.",
"identified": "[PLAYER_42SIX9sl] ([TEAM_]) whips a promising cross into the box, but the opposition's defence intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) whips a promising cross into the box, but the opposition's defence intercepts the ball.",
"visibility": "shown",
"position": "682000"
}
]
} |