File size: 92,135 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 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 |
{
"timestamp": "1430582400",
"score": "0 - 0",
"round": "35",
"teams": [
"Atl. Madrid",
"Ath Bilbao"
],
"lineup": {
"home": {
"tactic": "1-4-4-2",
"players": [
{
"hash": "Q3asrkFf",
"name": "Gabi",
"captain": "(C)",
"detail_link": "/player/gabi/Q3asrkFf/",
"short_name": "Gabi",
"shirt_number": "14",
"country": "Spain",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Gabi"
},
{
"hash": "hI95WTn0",
"name": "Garcia R.",
"captain": "",
"detail_link": "/player/garcia-raul/hI95WTn0/",
"short_name": "Garcia",
"shirt_number": "8",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "56'",
"description": "Mandzukic M.",
"linked_player_hash": "MV22As4p"
}
],
"lineup": 6,
"starting": true,
"long_name": "Raul Garcia"
},
{
"hash": "AXQzJq3b",
"name": "Godin D.",
"captain": "",
"detail_link": "/player/godin-diego/AXQzJq3b/",
"short_name": "Godin",
"shirt_number": "2",
"country": "Uruguay",
"facts": [
{
"type": "1",
"time": "86' Godin D. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"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": "A9IyfaRd",
"name": "Miranda",
"captain": "",
"detail_link": "/player/miranda/A9IyfaRd/",
"short_name": "Miranda",
"shirt_number": "23",
"country": "Brazil",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Miranda"
},
{
"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": "zVlV5pWr",
"name": "Siqueira G.",
"captain": "",
"detail_link": "/player/siqueira-guilherme/zVlV5pWr/",
"short_name": "Siqueira",
"shirt_number": "3",
"country": "Brazil",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Guilherme Siqueira"
},
{
"hash": "lxBoIH5p",
"name": "Tiago",
"captain": "",
"detail_link": "/player/tiago/lxBoIH5p/",
"short_name": "Tiago",
"shirt_number": "5",
"country": "Portugal",
"facts": [
{
"type": "6",
"time": "87'",
"description": "Niguez S.",
"linked_player_hash": "hSbvVwW7"
}
],
"lineup": 8,
"starting": true,
"long_name": "Tiago"
},
{
"hash": "65srZ2Lb",
"name": "Torres F.",
"captain": "",
"detail_link": "/player/torres-fernando/65srZ2Lb/",
"short_name": "Torres",
"shirt_number": "19",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "41' Torres F. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "56'",
"description": "Turan A.",
"linked_player_hash": "K0HKnqmK"
}
],
"lineup": 10,
"starting": true,
"long_name": "Fernando Torres"
},
{
"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": "IgRLzKhM",
"name": "Gimenez J. M.",
"captain": "",
"detail_link": "/player/gimenez-jose/IgRLzKhM/",
"short_name": "Gimenez",
"shirt_number": "24",
"country": "Uruguay",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jose Maria Gimenez"
},
{
"hash": "MV22As4p",
"name": "Mandzukic M.",
"captain": "",
"detail_link": "/player/mandzukic-mario/MV22As4p/",
"short_name": "Mandzukic",
"shirt_number": "9",
"country": "Croatia",
"facts": [
{
"type": "7",
"time": "56'",
"description": "Garcia R.",
"linked_player_hash": "hI95WTn0"
}
],
"lineup": null,
"starting": false,
"long_name": "Mario Mandzukic"
},
{
"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": [
{
"type": "7",
"time": "87'",
"description": "Tiago",
"linked_player_hash": "lxBoIH5p"
}
],
"lineup": null,
"starting": false,
"long_name": "Saul Niguez"
},
{
"hash": "bN8I3Zo0",
"name": "Suarez M.",
"captain": "",
"detail_link": "/player/suarez-mario/bN8I3Zo0/",
"short_name": "Suarez",
"shirt_number": "4",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mario Suarez"
},
{
"hash": "K0HKnqmK",
"name": "Turan A.",
"captain": "",
"detail_link": "/player/turan-arda/K0HKnqmK/",
"short_name": "Turan",
"shirt_number": "10",
"country": "Turkey",
"facts": [
{
"type": "7",
"time": "56'",
"description": "Torres F.",
"linked_player_hash": "65srZ2Lb"
}
],
"lineup": null,
"starting": false,
"long_name": "Arda Turan"
}
],
"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-2-3-1",
"players": [
{
"hash": "O0o3t73q",
"name": "Bustinza U.",
"captain": "",
"detail_link": "/player/bustinza-unai/O0o3t73q/",
"short_name": "Bustinza",
"shirt_number": "12",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "76' Bustinza U. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Unai Bustinza"
},
{
"hash": "ljCE2GoH",
"name": "de Marcos O.",
"captain": "",
"detail_link": "/player/de-marcos-oscar/ljCE2GoH/",
"short_name": "de Marcos",
"shirt_number": "10",
"country": "Spain",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Oscar de Marcos"
},
{
"hash": "WtMNdSJC",
"name": "Etxeita X.",
"captain": "",
"detail_link": "/player/etxeita-xabier/WtMNdSJC/",
"short_name": "Etxeita",
"shirt_number": "16",
"country": "Spain",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Xabier Etxeita"
},
{
"hash": "n7Ok9YlC",
"name": "Herrerin I.",
"captain": "",
"detail_link": "/player/herrerin-iago/n7Ok9YlC/",
"short_name": "Herrerin",
"shirt_number": "13",
"country": "Spain",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Iago Herrerin"
},
{
"hash": "xpALVpwq",
"name": "Iraola A.",
"captain": "(C)",
"detail_link": "/player/iraola-andoni/xpALVpwq/",
"short_name": "Iraola",
"shirt_number": "15",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "58'",
"description": "Lopez U.",
"linked_player_hash": "dYFtDut6"
}
],
"lineup": 8,
"starting": true,
"long_name": "Andoni Iraola"
},
{
"hash": "CYQZhh9a",
"name": "Iturraspe A.",
"captain": "",
"detail_link": "/player/iturraspe-ander/CYQZhh9a/",
"short_name": "Iturraspe",
"shirt_number": "8",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "84'",
"description": "Gurpegi C.",
"linked_player_hash": "SY2YSrN1"
}
],
"lineup": 7,
"starting": true,
"long_name": "Ander Iturraspe"
},
{
"hash": "SYnaB65s",
"name": "Laporte A.",
"captain": "",
"detail_link": "/player/laporte-aymeric/SYnaB65s/",
"short_name": "Laporte",
"shirt_number": "4",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "81' Laporte A. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Aymeric Laporte"
},
{
"hash": "Ys1orKzo",
"name": "Rico M.",
"captain": "",
"detail_link": "/player/rico-mikel/Ys1orKzo/",
"short_name": "Rico",
"shirt_number": "17",
"country": "Spain",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Mikel Rico"
},
{
"hash": "lSNZNmdr",
"name": "San Jose M.",
"captain": "",
"detail_link": "/player/san-jose-mikel/lSNZNmdr/",
"short_name": "San Jose",
"shirt_number": "6",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "71' San Jose M. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Mikel San Jose"
},
{
"hash": "voCJHwIf",
"name": "Sola",
"captain": "",
"detail_link": "/player/sola-kike/voCJHwIf/",
"short_name": "Sola",
"shirt_number": "9",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "67'",
"description": "Guillermo",
"linked_player_hash": "QXBBUtBt"
}
],
"lineup": 11,
"starting": true,
"long_name": "Sola"
},
{
"hash": "W4HzaGVn",
"name": "Williams I.",
"captain": "",
"detail_link": "/player/williams-inaki/W4HzaGVn/",
"short_name": "Williams",
"shirt_number": "30",
"country": "Ghana",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Inaki Williams"
},
{
"hash": "2uX9qPUH",
"name": "Aurtenetxe J.",
"captain": "",
"detail_link": "/player/aurtenetxe-jon/2uX9qPUH/",
"short_name": "Aurtenetxe",
"shirt_number": "3",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jon Aurtenetxe"
},
{
"hash": "QXBBUtBt",
"name": "Guillermo",
"captain": "",
"detail_link": "/player/guillermo/QXBBUtBt/",
"short_name": "Guillermo",
"shirt_number": "22",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "67'",
"description": "Sola",
"linked_player_hash": "voCJHwIf"
}
],
"lineup": null,
"starting": false,
"long_name": "Guillermo"
},
{
"hash": "SY2YSrN1",
"name": "Gurpegi C.",
"captain": "",
"detail_link": "/player/gurpegi-carlos/SY2YSrN1/",
"short_name": "Gurpegi",
"shirt_number": "18",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "84'",
"description": "Iturraspe A.",
"linked_player_hash": "CYQZhh9a"
}
],
"lineup": null,
"starting": false,
"long_name": "Carlos Gurpegi"
},
{
"hash": "0rBOpIZL",
"name": "Iraizoz G.",
"captain": "",
"detail_link": "/player/iraizoz-gorka/0rBOpIZL/",
"short_name": "Iraizoz",
"shirt_number": "1",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Gorka Iraizoz"
},
{
"hash": "dYFtDut6",
"name": "Lopez U.",
"captain": "",
"detail_link": "/player/lopez-unai/dYFtDut6/",
"short_name": "Lopez",
"shirt_number": "29",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "58'",
"description": "Iraola A.",
"linked_player_hash": "xpALVpwq"
}
],
"lineup": null,
"starting": false,
"long_name": "Unai Lopez"
},
{
"hash": "h4lwTcb0",
"name": "Toquero G.",
"captain": "",
"detail_link": "/player/toquero-gaizka/h4lwTcb0/",
"short_name": "Toquero Pinedo",
"shirt_number": "2",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Gaizka Toquero Pinedo"
},
{
"hash": "CpmeH2Nu",
"name": "Viguera B.",
"captain": "",
"detail_link": "/player/viguera-borja/CpmeH2Nu/",
"short_name": "Viguera",
"shirt_number": "21",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Borja Viguera"
}
],
"coach": [
{
"hash": "EJmuzs93",
"name": "Valverde E.",
"captain": "",
"detail_link": "/player/valverde-tejedor-ernesto/EJmuzs93/",
"short_name": "Valverde E.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ernesto Valverde Tejedor"
}
]
}
},
"referee": [
"Latre S."
],
"venue": [
"Estadio Vicente Calder\u00f3n (Madrid)"
],
"attendance": [
"48 452"
],
"referee_matched": [
"Santiago Jaime Latre"
],
"referee_found": [
"Santiago Jaime Latre"
],
"coach_matched": [
"Ernesto Valverde Tejedor",
"Diego Simeone"
],
"gameHomeTeam": "Atl. Madrid",
"home": {
"name": "Atl. Madrid",
"detail_link": "/team/atl-madrid/jaarqpLQ",
"hash": "jaarqpLQ",
"names": [
"Atl. Madrid",
"atl madrid"
]
},
"gameAwayTeam": "Ath Bilbao",
"away": {
"name": "Ath Bilbao",
"detail_link": "/team/ath-bilbao/IP5zl0cJ",
"hash": "IP5zl0cJ",
"names": [
"Ath Bilbao",
"Ath Bilbao (Esp)",
"ath bilbao"
]
},
"gameDate": "02/05/2015 - 18:00",
"annotations": [
{
"important": false,
"gameTime": "2 - 48:59",
"label": "",
"description": "There was no time for the supporters to get bored during the game as it was full of action and thrilling moments. The game was quite balanced and neither team had any obvious advantage. Both sides attempted to create scoring opportunities mostly with long balls.",
"identified": "There was no time for the supporters to get bored during the game as it was full of action and thrilling moments. The game was quite balanced and neither team had any obvious advantage. Both sides attempted to create scoring opportunities mostly with long balls.",
"anonymized": "There was no time for the supporters to get bored during the game as it was full of action and thrilling moments. The game was quite balanced and neither team had any obvious advantage. Both sides attempted to create scoring opportunities mostly with long balls.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "2 - 48:10",
"label": "whistle",
"description": "That's it for today, Santiago Jaime Latre has blown his whistle and the game is over.",
"identified": "That's it for today, [REFEREE] has blown his whistle and the game is over.",
"anonymized": "That's it for today, [REFEREE] has blown his whistle and the game is over.",
"visibility": "shown",
"position": "2890000"
},
{
"important": false,
"gameTime": "2 - 47:55",
"label": "",
"description": "Diego Godin (Atl. Madrid) is adjudged to have been offside when making his run.",
"identified": "[PLAYER_AXQzJq3b] ([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": "2875000"
},
{
"important": true,
"gameTime": "2 - 47:16",
"label": "yr-card",
"description": "An infringement by Unai Bustinza (Ath Bilbao) results in a yellow card and as it's the second time today, he also sees a red and is dismissed by Santiago Jaime Latre.",
"identified": "An infringement by [PLAYER_O0o3t73q] ([TEAM_]) results in a yellow card and as it's the second time today, he also sees a red and is dismissed by [REFEREE].",
"anonymized": "An infringement by [PLAYER] ([TEAM]) results in a yellow card and as it's the second time today, he also sees a red and is dismissed by [REFEREE].",
"visibility": "shown",
"position": "2836000"
},
{
"important": false,
"gameTime": "2 - 46:13",
"label": "",
"description": "Miranda (Atl. Madrid) finds some space inside the box and produces a first-time shot that goes high over the bar. High, wide and not at all pretty.",
"identified": "[PLAYER_A9IyfaRd] ([TEAM_]) finds some space inside the box and produces a first-time shot that goes high over the bar. High, wide and not at all pretty.",
"anonymized": "[PLAYER] ([TEAM]) finds some space inside the box and produces a first-time shot that goes high over the bar. High, wide and not at all pretty.",
"visibility": "shown",
"position": "2773000"
},
{
"important": false,
"gameTime": "2 - 45:51",
"label": "",
"description": "The flag is raised and Inaki Williams (Ath Bilbao) is offside again, not for the first time today.",
"identified": "The flag is raised and [PLAYER_W4HzaGVn] ([TEAM_]) is offside again, not for the first time today.",
"anonymized": "The flag is raised and [PLAYER] ([TEAM]) is offside again, not for the first time today.",
"visibility": "shown",
"position": "2751000"
},
{
"important": false,
"gameTime": "2 - 45:26",
"label": "",
"description": "Inaki Williams (Ath Bilbao) is flagged for offside.",
"identified": "[PLAYER_W4HzaGVn] ([TEAM_]) is flagged for offside.",
"anonymized": "[PLAYER] ([TEAM]) is flagged for offside.",
"visibility": "shown",
"position": "2726000"
},
{
"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 - 44:44",
"label": "",
"description": "A crossfield pass from Unai Bustinza (Ath Bilbao) fails to find any of his teammates.",
"identified": "A crossfield pass from [PLAYER_O0o3t73q] ([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": "2684000"
},
{
"important": false,
"gameTime": "2 - 44:01",
"label": "",
"description": "Santiago Jaime Latre has a clear sight and sees a foul from Miranda (Atl. Madrid).",
"identified": "[REFEREE] has a clear sight and sees a foul from [PLAYER_A9IyfaRd] ([TEAM_]).",
"anonymized": "[REFEREE] has a clear sight and sees a foul from [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2641000"
},
{
"important": false,
"gameTime": "2 - 43:16",
"label": "",
"description": "Diego Godin (Atl. Madrid) climbs high to connect with a cross near the penalty spot but plants a header high over the bar.",
"identified": "[PLAYER_AXQzJq3b] ([TEAM_]) climbs high to connect with a cross near the penalty spot but plants a header high over the bar.",
"anonymized": "[PLAYER] ([TEAM]) climbs high to connect with a cross near the penalty spot but plants a header high over the bar.",
"visibility": "shown",
"position": "2596000"
},
{
"important": false,
"gameTime": "2 - 42:39",
"label": "",
"description": "The free kick is delivered by Koke (Atl. Madrid) but it's not one of his best and is easily cleared.",
"identified": "The free kick is delivered by [PLAYER_v9hLv1xJ] ([TEAM_]) but it's not one of his best and is easily cleared.",
"anonymized": "The free kick is delivered by [PLAYER] ([TEAM]) but it's not one of his best and is easily cleared.",
"visibility": "shown",
"position": "2559000"
},
{
"important": false,
"gameTime": "2 - 42:16",
"label": "",
"description": "Unai Bustinza (Ath Bilbao) deprives his opponent of the ball, but the referee blows his whistle for a foul. He's not happy with the decision! Atl. Madrid get a free kick.",
"identified": "[PLAYER_O0o3t73q] ([TEAM_]) deprives his opponent of the ball, but the referee blows his whistle for a foul. He's not happy with the decision! [TEAM_] get a free kick.",
"anonymized": "[PLAYER] ([TEAM]) deprives his opponent of the ball, but the referee blows his whistle for a foul. He's not happy with the decision! [TEAM] get a free kick.",
"visibility": "shown",
"position": "2536000"
},
{
"important": true,
"gameTime": "2 - 42:01",
"label": "substitution",
"description": "Here's the change. Tiago leaves the pitch and Saul (Atl. Madrid) comes on as a substitute.",
"identified": "Here's the change. [PLAYER_lxBoIH5p] leaves the pitch and [PLAYER_hSbvVwW7] ([TEAM_]) comes on as a substitute.",
"anonymized": "Here's the change. [PLAYER] leaves the pitch and [PLAYER] ([TEAM]) comes on as a substitute.",
"visibility": "shown",
"position": "2521000"
},
{
"important": true,
"gameTime": "2 - 40:58",
"label": "y-card",
"description": "Diego Godin (Atl. Madrid) is booked for saying more than Santiago Jaime Latre was willing to tolerate.",
"identified": "[PLAYER_AXQzJq3b] ([TEAM_]) is booked for saying more than [REFEREE] was willing to tolerate.",
"anonymized": "[PLAYER] ([TEAM]) is booked for saying more than [REFEREE] was willing to tolerate.",
"visibility": "shown",
"position": "2458000"
},
{
"important": false,
"gameTime": "2 - 40:16",
"label": "",
"description": "Mario Mandzukic (Atl. Madrid) tries to pass the ball into the penalty area but it's blocked.",
"identified": "[PLAYER_MV22As4p] ([TEAM_]) tries to pass the ball into the penalty area but it's blocked.",
"anonymized": "[PLAYER] ([TEAM]) tries to pass the ball into the penalty area but it's blocked.",
"visibility": "shown",
"position": "2416000"
},
{
"important": false,
"gameTime": "2 - 39:06",
"label": "",
"description": "Arda Turan (Atl. Madrid) delivers a promising cross into the box, but it's cleared.",
"identified": "[PLAYER_K0HKnqmK] ([TEAM_]) delivers a promising cross into the box, but it's cleared.",
"anonymized": "[PLAYER] ([TEAM]) delivers a promising cross into the box, but it's cleared.",
"visibility": "shown",
"position": "2346000"
},
{
"important": true,
"gameTime": "2 - 38:28",
"label": "substitution",
"description": "The substitution is prepared. Carlos Gurpegi (Ath Bilbao) joins the action as a substitute, replacing Ander Iturraspe.",
"identified": "The substitution is prepared. [PLAYER_SY2YSrN1] ([TEAM_]) joins the action as a substitute, replacing [PLAYER_CYQZhh9a].",
"anonymized": "The substitution is prepared. [PLAYER] ([TEAM]) joins the action as a substitute, replacing [PLAYER].",
"visibility": "shown",
"position": "2308000"
},
{
"important": false,
"gameTime": "2 - 37:01",
"label": "",
"description": "Another attempt to send the ball beyond the defence by Inaki Williams (Ath Bilbao) is thwarted and cleared to safety.",
"identified": "Another attempt to send the ball beyond the defence by [PLAYER_W4HzaGVn] ([TEAM_]) is thwarted and cleared to safety.",
"anonymized": "Another attempt to send the ball beyond the defence by [PLAYER] ([TEAM]) is thwarted and cleared to safety.",
"visibility": "shown",
"position": "2221000"
},
{
"important": false,
"gameTime": "2 - 36:30",
"label": "",
"description": "Koke (Atl. Madrid) sends the ball into the penalty area from a free kick a few yards outside the box. The cross is good, but the goalkeeper shows himself in a good light as he leaps high to intercept the ball.",
"identified": "[PLAYER_v9hLv1xJ] ([TEAM_]) sends the ball into the penalty area from a free kick a few yards outside the box. The cross is good, but the goalkeeper shows himself in a good light as he leaps high to intercept the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends the ball into the penalty area from a free kick a few yards outside the box. The cross is good, but the goalkeeper shows himself in a good light as he leaps high to intercept the ball.",
"visibility": "shown",
"position": "2190000"
},
{
"important": true,
"gameTime": "2 - 35:54",
"label": "y-card",
"description": "Aymeric Laporte (Ath Bilbao) receives a yellow card from the referee for a foul that he committed a little earlier. It's a free kick to Atl. Madrid in a dangerous position.",
"identified": "[PLAYER_SYnaB65s] ([TEAM_]) receives a yellow card from the referee for a foul that he committed a little earlier. It's a free kick to [TEAM_] in a dangerous position.",
"anonymized": "[PLAYER] ([TEAM]) receives a yellow card from the referee for a foul that he committed a little earlier. It's a free kick to [TEAM] in a dangerous position.",
"visibility": "shown",
"position": "2154000"
},
{
"important": false,
"gameTime": "2 - 35:08",
"label": "",
"description": "A pass by Unai Lopez (Ath Bilbao) ends up in no man's land, and the attacking effort comes to an end.",
"identified": "A pass by [PLAYER_dYFtDut6] ([TEAM_]) ends up in no man's land, and the attacking effort comes to an end.",
"anonymized": "A pass by [PLAYER] ([TEAM]) ends up in no man's land, and the attacking effort comes to an end.",
"visibility": "shown",
"position": "2108000"
},
{
"important": false,
"gameTime": "2 - 33:40",
"label": "",
"description": "Antoine Griezmann (Atl. Madrid) sends a promising through ball, but the defence is alert and cuts out the pass.",
"identified": "[PLAYER_OxCa1jdT] ([TEAM_]) sends a promising through ball, but the defence is alert and cuts out the pass.",
"anonymized": "[PLAYER] ([TEAM]) sends a promising through ball, but the defence is alert and cuts out the pass.",
"visibility": "shown",
"position": "2020000"
},
{
"important": false,
"gameTime": "2 - 32:49",
"label": "",
"description": "Diego Godin (Atl. Madrid) seems to have picked up a minor injury, but it looks like he will be able to continue playing.",
"identified": "[PLAYER_AXQzJq3b] ([TEAM_]) seems to have picked up a minor injury, but it looks like he will be able to continue playing.",
"anonymized": "[PLAYER] ([TEAM]) seems to have picked up a minor injury, but it looks like he will be able to continue playing.",
"visibility": "shown",
"position": "1969000"
},
{
"important": false,
"gameTime": "2 - 32:31",
"label": "injury",
"description": "Diego Godin (Atl. Madrid) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"identified": "[PLAYER_AXQzJq3b] ([TEAM_]) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"anonymized": "[PLAYER] ([TEAM]) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"visibility": "shown",
"position": "1951000"
},
{
"important": true,
"gameTime": "2 - 30:55",
"label": "y-card",
"description": "Unai Bustinza (Ath Bilbao) has to be very careful for the rest of the match after receiving a yellow card from the referee for a bad tackle on an opponent.",
"identified": "[PLAYER_O0o3t73q] ([TEAM_]) has to be very careful for the rest of the match after receiving a yellow card from the referee for a bad tackle on an opponent.",
"anonymized": "[PLAYER] ([TEAM]) has to be very careful for the rest of the match after receiving a yellow card from the referee for a bad tackle on an opponent.",
"visibility": "shown",
"position": "1855000"
},
{
"important": false,
"gameTime": "2 - 30:00",
"label": "",
"description": "Ath Bilbao seem to be finding their feet as they enjoy some possession. They are waiting for the right moment to create new attacking opportunities.",
"identified": "[TEAM_] seem to be finding their feet as they enjoy some possession. They are waiting for the right moment to create new attacking opportunities.",
"anonymized": "[TEAM] seem to be finding their feet as they enjoy some possession. They are waiting for the right moment to create new attacking opportunities.",
"visibility": "shown",
"position": "1800000"
},
{
"important": false,
"gameTime": "2 - 28:02",
"label": "corner",
"description": "Gabi (Atl. Madrid) takes the corner which is cleared by the opposition's defence.",
"identified": "[PLAYER_Q3asrkFf] ([TEAM_]) takes the corner which is cleared by the opposition's defence.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner which is cleared by the opposition's defence.",
"visibility": "shown",
"position": "1682000"
},
{
"important": true,
"gameTime": "2 - 27:34",
"label": "",
"description": "Antoine Griezmann (Atl. Madrid) came close to scoring but should have done much better. His poor attempt from close range ended up in the gloves of Iago Herrerin. The ball goes out of play and Atl. Madrid have been awarded a corner kick.",
"identified": "[PLAYER_OxCa1jdT] ([TEAM_]) came close to scoring but should have done much better. His poor attempt from close range ended up in the gloves of [PLAYER_n7Ok9YlC]. The ball goes out of play and [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) came close to scoring but should have done much better. His poor attempt from close range ended up in the gloves of [PLAYER]. The ball goes out of play and [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "1654000"
},
{
"important": false,
"gameTime": "2 - 26:32",
"label": "",
"description": "Gabi (Atl. Madrid) fails to deliver a decent cross from a long-range free kick. The opposition's defence intercepts the effort.",
"identified": "[PLAYER_Q3asrkFf] ([TEAM_]) fails to deliver a decent cross from a long-range free kick. The opposition's defence intercepts the effort.",
"anonymized": "[PLAYER] ([TEAM]) fails to deliver a decent cross from a long-range free kick. The opposition's defence intercepts the effort.",
"visibility": "shown",
"position": "1592000"
},
{
"important": true,
"gameTime": "2 - 26:00",
"label": "y-card",
"description": "A yellow card for a tackle by Mikel San Jose (Ath Bilbao). Santiago Jaime Latre doesn't hesitate at all to make this decision.",
"identified": "A yellow card for a tackle by [PLAYER_lSNZNmdr] ([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": "1560000"
},
{
"important": true,
"gameTime": "2 - 25:16",
"label": "",
"description": "Tiago (Atl. Madrid) has a goal ruled out for offside!",
"identified": "[PLAYER_lxBoIH5p] ([TEAM_]) has a goal ruled out for offside!",
"anonymized": "[PLAYER] ([TEAM]) has a goal ruled out for offside!",
"visibility": "shown",
"position": "1516000"
},
{
"important": false,
"gameTime": "2 - 24:25",
"label": "corner",
"description": "Gabi (Atl. Madrid) takes the corner but fails to find any of his teammates.",
"identified": "[PLAYER_Q3asrkFf] ([TEAM_]) takes the corner but fails to find any of his teammates.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but fails to find any of his teammates.",
"visibility": "shown",
"position": "1465000"
},
{
"important": false,
"gameTime": "2 - 24:18",
"label": "",
"description": "Antoine Griezmann (Atl. Madrid) decides to strike the ball towards goal, but his effort fails to threaten the goalkeeper after being blocked by one of the defenders. The referee signals a corner kick to Atl. Madrid.",
"identified": "[PLAYER_OxCa1jdT] ([TEAM_]) decides to strike the ball towards goal, but his effort fails to threaten the goalkeeper after being blocked by one of the defenders. The referee signals a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) decides to strike the ball towards goal, but his effort fails to threaten the goalkeeper after being blocked by one of the defenders. The referee signals a corner kick to [TEAM].",
"visibility": "shown",
"position": "1458000"
},
{
"important": false,
"gameTime": "2 - 23:58",
"label": "",
"description": "Koke (Atl. Madrid) puts a cross into the box from the free kick, but the defender gets there first.",
"identified": "[PLAYER_v9hLv1xJ] ([TEAM_]) puts a cross into the box from the free kick, but the defender gets there first.",
"anonymized": "[PLAYER] ([TEAM]) puts a cross into the box from the free kick, but the defender gets there first.",
"visibility": "shown",
"position": "1438000"
},
{
"important": false,
"gameTime": "2 - 23:33",
"label": "",
"description": "Unai Bustinza (Ath Bilbao) makes a rough challenge and the referee blows for a foul. A free kick is awarded to Atl. Madrid.",
"identified": "[PLAYER_O0o3t73q] ([TEAM_]) makes a rough challenge and the referee blows for a foul. A free kick is awarded to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) makes a rough challenge and the referee blows for a foul. A free kick is awarded to [TEAM].",
"visibility": "shown",
"position": "1413000"
},
{
"important": false,
"gameTime": "2 - 22:35",
"label": "",
"description": "Iago Herrerin displays his ability to read the game and clears the danger after Antoine Griezmann (Atl. Madrid) threatened to latch onto a through ball from just outside the box.",
"identified": "[PLAYER_n7Ok9YlC] displays his ability to read the game and clears the danger after [PLAYER_OxCa1jdT] ([TEAM_]) threatened to latch onto a through ball from just outside the box.",
"anonymized": "[PLAYER] displays his ability to read the game and clears the danger after [PLAYER] ([TEAM]) threatened to latch onto a through ball from just outside the box.",
"visibility": "shown",
"position": "1355000"
},
{
"important": true,
"gameTime": "2 - 21:32",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Sola departs the field of play to be replaced by Guillermo (Ath Bilbao).",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_voCJHwIf] departs the field of play to be replaced by [PLAYER_QXBBUtBt] ([TEAM_]).",
"anonymized": "The referee stops play so that a substitution can be made and [PLAYER] departs the field of play to be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1292000"
},
{
"important": false,
"gameTime": "2 - 20:04",
"label": "",
"description": "Guilherme Siqueira (Atl. Madrid) was all set to receive a beautiful pass into a promising position. However, one of the defenders makes a timely clearance.",
"identified": "[PLAYER_zVlV5pWr] ([TEAM_]) was all set to receive a beautiful pass into a promising position. However, one of the defenders makes a timely clearance.",
"anonymized": "[PLAYER] ([TEAM]) was all set to receive a beautiful pass into a promising position. However, one of the defenders makes a timely clearance.",
"visibility": "shown",
"position": "1204000"
},
{
"important": false,
"gameTime": "2 - 18:45",
"label": "corner",
"description": "Gabi (Atl. Madrid) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"identified": "[PLAYER_Q3asrkFf] ([TEAM_]) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"anonymized": "[PLAYER] ([TEAM]) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"visibility": "shown",
"position": "1125000"
},
{
"important": false,
"gameTime": "2 - 18:20",
"label": "",
"description": "Juanfran (Atl. Madrid) sends a cross into the box, but the opposition's defence clears the ball away to eliminate the danger. Atl. Madrid have been awarded a corner kick.",
"identified": "[PLAYER_jLwtE6Rq] ([TEAM_]) sends a cross into the box, but the opposition's defence clears the ball away to eliminate the danger. [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence clears the ball away to eliminate the danger. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "1100000"
},
{
"important": false,
"gameTime": "2 - 18:02",
"label": "corner",
"description": "Koke (Atl. Madrid) takes the resulting corner which is well defended.",
"identified": "[PLAYER_v9hLv1xJ] ([TEAM_]) takes the resulting corner which is well defended.",
"anonymized": "[PLAYER] ([TEAM]) takes the resulting corner which is well defended.",
"visibility": "shown",
"position": "1082000"
},
{
"important": false,
"gameTime": "2 - 17:23",
"label": "",
"description": "Mario Mandzukic (Atl. Madrid) sprays a pass out to Arda Turan, but he can't beat his man to get to the ball. The referee and his assistant both point at the corner flag. Atl. Madrid will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_MV22As4p] ([TEAM_]) sprays a pass out to [PLAYER_K0HKnqmK], but he can't beat his man to get to the ball. The referee and his assistant both point at the corner flag. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) sprays a pass out to [PLAYER], but he can't beat his man to get to the ball. 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": "1043000"
},
{
"important": false,
"gameTime": "2 - 17:03",
"label": "",
"description": "The referee and the linesman both signal a throw-in for Ath Bilbao.",
"identified": "The referee and the linesman both signal a throw-in for [TEAM_].",
"anonymized": "The referee and the linesman both signal a throw-in for [TEAM].",
"visibility": "shown",
"position": "1023000"
},
{
"important": false,
"gameTime": "2 - 15:52",
"label": "",
"description": "Guilherme Siqueira (Atl. Madrid) sends a teasing cross into the area, but Iago Herrerin intercepts the ball.",
"identified": "[PLAYER_zVlV5pWr] ([TEAM_]) sends a teasing cross into the area, but [PLAYER_n7Ok9YlC] intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a teasing cross into the area, but [PLAYER] intercepts the ball.",
"visibility": "shown",
"position": "952000"
},
{
"important": false,
"gameTime": "2 - 15:02",
"label": "",
"description": "Santiago Jaime Latre blows his whistle. Sola (Ath Bilbao) commits a foul after dangerous play.",
"identified": "[REFEREE] blows his whistle. [PLAYER_voCJHwIf] ([TEAM_]) commits a foul after dangerous play.",
"anonymized": "[REFEREE] blows his whistle. [PLAYER] ([TEAM]) commits a foul after dangerous play.",
"visibility": "shown",
"position": "902000"
},
{
"important": false,
"gameTime": "2 - 13:52",
"label": "",
"description": "Xabier Etxeita (Ath Bilbao) gets to the ball from the resulting corner but blazes it well over the bar.",
"identified": "[PLAYER_WtMNdSJC] ([TEAM_]) gets to the ball from the resulting corner but blazes it well over the bar.",
"anonymized": "[PLAYER] ([TEAM]) gets to the ball from the resulting corner but blazes it well over the bar.",
"visibility": "shown",
"position": "832000"
},
{
"important": false,
"gameTime": "2 - 13:34",
"label": "corner",
"description": "Unai Lopez (Ath Bilbao) takes the corner.",
"identified": "[PLAYER_dYFtDut6] ([TEAM_]) takes the corner.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner.",
"visibility": "shown",
"position": "814000"
},
{
"important": false,
"gameTime": "2 - 12:59",
"label": "",
"description": "Sola (Ath Bilbao) tries to slide the ball through to a teammate but it's well blocked by a defender. It will be a corner kick for Ath Bilbao.",
"identified": "[PLAYER_voCJHwIf] ([TEAM_]) tries to slide the ball through to a teammate but it's well blocked by a defender. It will be a corner kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) tries to slide the ball through to a teammate but it's well blocked by a defender. It will be a corner kick for [TEAM].",
"visibility": "shown",
"position": "779000"
},
{
"important": true,
"gameTime": "2 - 12:32",
"label": "substitution",
"description": "Andoni Iraola is substituted due to injury. Ernesto Valverde Tejedor gives a chance to Unai Lopez (Ath Bilbao).",
"identified": "[PLAYER_xpALVpwq] is substituted due to injury. [COACH_EJmuzs93] gives a chance to [PLAYER_dYFtDut6] ([TEAM_]).",
"anonymized": "[PLAYER] is substituted due to injury. [COACH] gives a chance to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "752000"
},
{
"important": false,
"gameTime": "2 - 11:28",
"label": "injury",
"description": "Andoni Iraola (Ath Bilbao) is having a really tough time right now. We are about to find out how serious his injury is.",
"identified": "[PLAYER_xpALVpwq] ([TEAM_]) is having a really tough time right now. We are about to find out how serious his injury is.",
"anonymized": "[PLAYER] ([TEAM]) is having a really tough time right now. We are about to find out how serious his injury is.",
"visibility": "shown",
"position": "688000"
},
{
"important": true,
"gameTime": "2 - 10:59",
"label": "substitution",
"description": "Here is a change. Raul Garcia is going off and Diego Simeone gives the last tactical orders to Mario Mandzukic (Atl. Madrid).",
"identified": "Here is a change. [PLAYER_hI95WTn0] is going off and [COACH_AZ18LjKN] gives the last tactical orders to [PLAYER_MV22As4p] ([TEAM_]).",
"anonymized": "Here is a change. [PLAYER] is going off and [COACH] gives the last tactical orders to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "659000"
},
{
"important": true,
"gameTime": "2 - 10:53",
"label": "substitution",
"description": "Substitution. Arda Turan (Atl. Madrid) has come on for Fernando Torres.",
"identified": "Substitution. [PLAYER_K0HKnqmK] ([TEAM_]) has come on for [PLAYER_65srZ2Lb].",
"anonymized": "Substitution. [PLAYER] ([TEAM]) has come on for [PLAYER].",
"visibility": "shown",
"position": "653000"
},
{
"important": true,
"gameTime": "2 - 09:30",
"label": "",
"description": "CHANCE! Sola (Ath Bilbao) fires just wide of the right post from inside the box after running onto a splendid pass from Mikel San Jose.",
"identified": "CHANCE! [PLAYER_voCJHwIf] ([TEAM_]) fires just wide of the right post from inside the box after running onto a splendid pass from [PLAYER_lSNZNmdr].",
"anonymized": "CHANCE! [PLAYER] ([TEAM]) fires just wide of the right post from inside the box after running onto a splendid pass from [PLAYER].",
"visibility": "shown",
"position": "570000"
},
{
"important": false,
"gameTime": "2 - 08:59",
"label": "",
"description": "Unai Bustinza (Ath Bilbao) sends a cross into the box, but the opposition's defence quickly intercepts the ball.",
"identified": "[PLAYER_O0o3t73q] ([TEAM_]) sends a cross into the box, but the opposition's defence quickly intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence quickly intercepts the ball.",
"visibility": "shown",
"position": "539000"
},
{
"important": false,
"gameTime": "2 - 08:08",
"label": "attendance",
"description": "The attendance is 48452.",
"identified": "The attendance is 48452.",
"anonymized": "The attendance is 48452.",
"visibility": "shown",
"position": "488000"
},
{
"important": false,
"gameTime": "2 - 07:44",
"label": "",
"description": "Raul Garcia (Atl. Madrid) gives away a foul for a clumsy challenge. Referee Santiago Jaime Latre saw the whole situation.",
"identified": "[PLAYER_hI95WTn0] ([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": "464000"
},
{
"important": false,
"gameTime": "2 - 06:44",
"label": "",
"description": "Antoine Griezmann (Atl. Madrid) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"identified": "[PLAYER_OxCa1jdT] ([TEAM_]) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"anonymized": "[PLAYER] ([TEAM]) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"visibility": "shown",
"position": "404000"
},
{
"important": false,
"gameTime": "2 - 05:53",
"label": "corner",
"description": "Koke (Atl. Madrid) puts a cross into the box from the corner but there is no panic from the opposition and they easily clear.",
"identified": "[PLAYER_v9hLv1xJ] ([TEAM_]) puts a cross into the box from the corner but there is no panic from the opposition and they easily clear.",
"anonymized": "[PLAYER] ([TEAM]) puts a cross into the box from the corner but there is no panic from the opposition and they easily clear.",
"visibility": "shown",
"position": "353000"
},
{
"important": false,
"gameTime": "2 - 05:31",
"label": "",
"description": "Raul Garcia (Atl. Madrid) whips a promising cross into the box, but the opposition's defence intercepts the ball. Atl. Madrid force their opponents to concede a corner.",
"identified": "[PLAYER_hI95WTn0] ([TEAM_]) whips a promising cross into the box, but the opposition's defence intercepts the ball. [TEAM_] force their opponents to concede a corner.",
"anonymized": "[PLAYER] ([TEAM]) whips a promising cross into the box, but the opposition's defence intercepts the ball. [TEAM] force their opponents to concede a corner.",
"visibility": "shown",
"position": "331000"
},
{
"important": false,
"gameTime": "2 - 05:21",
"label": "",
"description": "Guilherme Siqueira (Atl. Madrid) put a cross into the box which wasn't a bad decision, but he failed to achieve what he wanted as none of his teammates managed to meet it.",
"identified": "[PLAYER_zVlV5pWr] ([TEAM_]) put a cross into the box which wasn't a bad decision, but he failed to achieve what he wanted as none of his teammates managed to meet it.",
"anonymized": "[PLAYER] ([TEAM]) put a cross into the box which wasn't a bad decision, but he failed to achieve what he wanted as none of his teammates managed to meet it.",
"visibility": "shown",
"position": "321000"
},
{
"important": false,
"gameTime": "2 - 04:19",
"label": "",
"description": "Raul Garcia (Atl. Madrid) wastes a good opportunity as his pass into the box is blocked by the defence.",
"identified": "[PLAYER_hI95WTn0] ([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": "259000"
},
{
"important": false,
"gameTime": "2 - 03:04",
"label": "",
"description": "Koke (Atl. Madrid) attempts to find one of his teammates with a cross from the resultant free kick, but he fails to hit the ball properly and sends it off the pitch.",
"identified": "[PLAYER_v9hLv1xJ] ([TEAM_]) attempts to find one of his teammates with a cross from the resultant free kick, but he fails to hit the ball properly and sends it off the pitch.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find one of his teammates with a cross from the resultant free kick, but he fails to hit the ball properly and sends it off the pitch.",
"visibility": "shown",
"position": "184000"
},
{
"important": false,
"gameTime": "2 - 02:55",
"label": "",
"description": "Aymeric Laporte (Ath Bilbao) makes a reckless foul in order to win the ball from his opponent. Santiago Jaime Latre has a clear sight of it and blows his whistle. Atl. Madrid are awarded the free kick.",
"identified": "[PLAYER_SYnaB65s] ([TEAM_]) makes a reckless foul in order to win the ball from his opponent. [REFEREE] has a clear sight of it and blows his whistle. [TEAM_] are awarded the free kick.",
"anonymized": "[PLAYER] ([TEAM]) makes a reckless foul in order to win the ball from his opponent. [REFEREE] has a clear sight of it and blows his whistle. [TEAM] are awarded the free kick.",
"visibility": "shown",
"position": "175000"
},
{
"important": false,
"gameTime": "2 - 01:39",
"label": "",
"description": "Mikel Rico (Ath Bilbao) makes a bad challenge and the referee blows his whistle for a foul.",
"identified": "[PLAYER_Ys1orKzo] ([TEAM_]) makes a bad challenge and the referee blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) makes a bad challenge and the referee blows his whistle for a foul.",
"visibility": "shown",
"position": "99000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The second half gets underway.",
"identified": "The second half gets underway.",
"anonymized": "The second half gets underway.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 46:59",
"label": "",
"description": "Not a lot happening in the first half, it hasn't been the best game so far in terms of quality. Both teams are unsuccessfully trying to control the game and it's pretty even so far. Both sides have adopted a tactic known as kick and rush football.",
"identified": "Not a lot happening in the first half, it hasn't been the best game so far in terms of quality. Both teams are unsuccessfully trying to control the game and it's pretty even so far. Both sides have adopted a tactic known as kick and rush football.",
"anonymized": "Not a lot happening in the first half, it hasn't been the best game so far in terms of quality. Both teams are unsuccessfully trying to control the game and it's pretty even so far. Both sides have adopted a tactic known as kick and rush football.",
"visibility": "shown",
"position": "2819000"
},
{
"important": true,
"gameTime": "1 - 46:14",
"label": "whistle",
"description": "There will be nothing more to see in the first half. The whistle blowing of Santiago Jaime Latre has ended it.",
"identified": "There will be nothing more to see in the first half. The whistle blowing of [REFEREE] has ended it.",
"anonymized": "There will be nothing more to see in the first half. The whistle blowing of [REFEREE] has ended it.",
"visibility": "shown",
"position": "2774000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "1 min. of stoppage-time to be played.",
"identified": "1 min. of stoppage-time to be played.",
"anonymized": "1 min. of stoppage-time to be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "",
"description": "Xabier Etxeita (Ath Bilbao) makes a slide tackle, but referee Santiago Jaime Latre blows for a foul.",
"identified": "[PLAYER_WtMNdSJC] ([TEAM_]) makes a slide tackle, but referee [REFEREE] blows for a foul.",
"anonymized": "[PLAYER] ([TEAM]) makes a slide tackle, but referee [REFEREE] blows for a foul.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "1 - 42:27",
"label": "",
"description": "Gooal! No wait, it's been ruled out for offside. Antoine Griezmann (Atl. Madrid) disagrees, but the linesman is sure about his call.",
"identified": "Gooal! No wait, it's been ruled out for offside. [PLAYER_OxCa1jdT] ([TEAM_]) disagrees, but the linesman is sure about his call.",
"anonymized": "Gooal! No wait, it's been ruled out for offside. [PLAYER] ([TEAM]) disagrees, but the linesman is sure about his call.",
"visibility": "shown",
"position": "2547000"
},
{
"important": false,
"gameTime": "1 - 41:37",
"label": "corner",
"description": "Koke (Atl. Madrid) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger.",
"identified": "[PLAYER_v9hLv1xJ] ([TEAM_]) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger.",
"anonymized": "[PLAYER] ([TEAM]) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger.",
"visibility": "shown",
"position": "2497000"
},
{
"important": true,
"gameTime": "1 - 40:32",
"label": "y-card",
"description": "The main referee, Santiago Jaime Latre, is apparently not going to tolerate any discussions. Fernando Torres (Atl. Madrid) is given a yellow card for dissent.",
"identified": "The main referee, [REFEREE], is apparently not going to tolerate any discussions. [PLAYER_65srZ2Lb] ([TEAM_]) is given a yellow card for dissent.",
"anonymized": "The main referee, [REFEREE], is apparently not going to tolerate any discussions. [PLAYER] ([TEAM]) is given a yellow card for dissent.",
"visibility": "shown",
"position": "2432000"
},
{
"important": false,
"gameTime": "1 - 40:30",
"label": "",
"description": "Fernando Torres (Atl. Madrid) received a clever through ball which could have put him in a promising position, but the defence was alert to the danger. Now Atl. Madrid have a corner.",
"identified": "[PLAYER_65srZ2Lb] ([TEAM_]) received a clever through ball which could have put him in a promising position, but the defence was alert to the danger. Now [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) received a clever through ball which could have put him in a promising position, but the defence was alert to the danger. Now [TEAM] have a corner.",
"visibility": "shown",
"position": "2430000"
},
{
"important": true,
"gameTime": "1 - 40:05",
"label": "",
"description": "Raul Garcia (Atl. Madrid) rises highest from the corner to head at goal, but his low effort towards the middle of the goal is comfortably saved by the goalkeeper.",
"identified": "[PLAYER_hI95WTn0] ([TEAM_]) rises highest from the corner to head at goal, but his low effort towards the middle of the goal is comfortably saved by the goalkeeper.",
"anonymized": "[PLAYER] ([TEAM]) rises highest from the corner to head at goal, but his low effort towards the middle of the goal is comfortably saved by the goalkeeper.",
"visibility": "shown",
"position": "2405000"
},
{
"important": false,
"gameTime": "1 - 40:03",
"label": "corner",
"description": "Koke (Atl. Madrid) is heading toward the corner flag to take the set piece.",
"identified": "[PLAYER_v9hLv1xJ] ([TEAM_]) is heading toward the corner flag to take the set piece.",
"anonymized": "[PLAYER] ([TEAM]) is heading toward the corner flag to take the set piece.",
"visibility": "shown",
"position": "2403000"
},
{
"important": false,
"gameTime": "1 - 39:30",
"label": "",
"description": "Raul Garcia (Atl. Madrid) fails to find any of his teammates inside the box as his pass is blocked. The ball is out of play. Atl. Madrid win a corner kick.",
"identified": "[PLAYER_hI95WTn0] ([TEAM_]) fails to find any of his teammates inside the box as his pass is blocked. The ball is out of play. [TEAM_] win a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) fails to find any of his teammates inside the box as his pass is blocked. The ball is out of play. [TEAM] win a corner kick.",
"visibility": "shown",
"position": "2370000"
},
{
"important": false,
"gameTime": "1 - 38:56",
"label": "corner",
"description": "The corner from Koke (Atl. Madrid) is intercepted by the defence.",
"identified": "The corner from [PLAYER_v9hLv1xJ] ([TEAM_]) is intercepted by the defence.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is intercepted by the defence.",
"visibility": "shown",
"position": "2336000"
},
{
"important": false,
"gameTime": "1 - 38:50",
"label": "",
"description": "Good clearance! Juanfran (Atl. Madrid) received a low pass, but he didn't have time to do anything as one of the defenders quickly stole the ball off him. The referee blows his whistle, Atl. Madrid are awarded a corner kick.",
"identified": "Good clearance! [PLAYER_jLwtE6Rq] ([TEAM_]) received a low pass, but he didn't have time to do anything as one of the defenders quickly stole the ball off him. The referee blows his whistle, [TEAM_] are awarded a corner kick.",
"anonymized": "Good clearance! [PLAYER] ([TEAM]) received a low pass, but he didn't have time to do anything as one of the defenders quickly stole the ball off him. The referee blows his whistle, [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "2330000"
},
{
"important": false,
"gameTime": "1 - 37:46",
"label": "",
"description": "Dangerous play by Inaki Williams (Ath Bilbao). Santiago Jaime Latre blows his whistle for a foul.",
"identified": "Dangerous play by [PLAYER_W4HzaGVn] ([TEAM_]). [REFEREE] blows his whistle for a foul.",
"anonymized": "Dangerous play by [PLAYER] ([TEAM]). [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "2266000"
},
{
"important": false,
"gameTime": "1 - 35:34",
"label": "",
"description": "The keeper doesn't have to worry about this one. Ander Iturraspe (Ath Bilbao) sacrificed accuracy for power, and thus his attempt went well wide of the right post.",
"identified": "The keeper doesn't have to worry about this one. [PLAYER_CYQZhh9a] ([TEAM_]) sacrificed accuracy for power, and thus his attempt went well wide of the right post.",
"anonymized": "The keeper doesn't have to worry about this one. [PLAYER] ([TEAM]) sacrificed accuracy for power, and thus his attempt went well wide of the right post.",
"visibility": "shown",
"position": "2134000"
},
{
"important": false,
"gameTime": "1 - 34:40",
"label": "",
"description": "Raul Garcia (Atl. Madrid) commits a foul after unfairly battling his opponent for the ball.",
"identified": "[PLAYER_hI95WTn0] ([TEAM_]) commits a foul after unfairly battling his opponent for the ball.",
"anonymized": "[PLAYER] ([TEAM]) commits a foul after unfairly battling his opponent for the ball.",
"visibility": "shown",
"position": "2080000"
},
{
"important": false,
"gameTime": "1 - 33:55",
"label": "",
"description": "Sola (Ath Bilbao) has picked up a minor injury, but it looks like he will be able to continue.",
"identified": "[PLAYER_voCJHwIf] ([TEAM_]) has picked up a minor injury, but it looks like he will be able to continue.",
"anonymized": "[PLAYER] ([TEAM]) has picked up a minor injury, but it looks like he will be able to continue.",
"visibility": "shown",
"position": "2035000"
},
{
"important": false,
"gameTime": "1 - 33:20",
"label": "injury",
"description": "The game is interrupted now, Sola (Ath Bilbao) picks up a knock and the physio has to come on.",
"identified": "The game is interrupted now, [PLAYER_voCJHwIf] ([TEAM_]) picks up a knock and the physio has to come on.",
"anonymized": "The game is interrupted now, [PLAYER] ([TEAM]) picks up a knock and the physio has to come on.",
"visibility": "shown",
"position": "2000000"
},
{
"important": false,
"gameTime": "1 - 32:07",
"label": "",
"description": "Antoine Griezmann (Atl. Madrid) is offside and the linesman raises his flag.",
"identified": "[PLAYER_OxCa1jdT] ([TEAM_]) is offside and the linesman raises his flag.",
"anonymized": "[PLAYER] ([TEAM]) is offside and the linesman raises his flag.",
"visibility": "shown",
"position": "1927000"
},
{
"important": false,
"gameTime": "1 - 31:24",
"label": "",
"description": "The linesman raises his flag. Juanfran (Atl. Madrid) is adjudged offside.",
"identified": "The linesman raises his flag. [PLAYER_jLwtE6Rq] ([TEAM_]) is adjudged offside.",
"anonymized": "The linesman raises his flag. [PLAYER] ([TEAM]) is adjudged offside.",
"visibility": "shown",
"position": "1884000"
},
{
"important": false,
"gameTime": "1 - 29:43",
"label": "",
"description": "Oscar de Marcos (Ath Bilbao) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"identified": "[PLAYER_ljCE2GoH] ([TEAM_]) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"anonymized": "[PLAYER] ([TEAM]) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"visibility": "shown",
"position": "1783000"
},
{
"important": false,
"gameTime": "1 - 27:55",
"label": "",
"description": "Juanfran (Atl. Madrid) was too fierce in his attempt to get the ball from his opponent and Santiago Jaime Latre blows for a foul.",
"identified": "[PLAYER_jLwtE6Rq] ([TEAM_]) was too fierce in his attempt to get the ball from his opponent and [REFEREE] blows for a foul.",
"anonymized": "[PLAYER] ([TEAM]) was too fierce in his attempt to get the ball from his opponent and [REFEREE] blows for a foul.",
"visibility": "shown",
"position": "1675000"
},
{
"important": false,
"gameTime": "1 - 27:25",
"label": "",
"description": "Raul Garcia (Atl. Madrid) produces a long-range strike, but he only hits one of his own teammates standing in its way.",
"identified": "[PLAYER_hI95WTn0] ([TEAM_]) produces a long-range strike, but he only hits one of his own teammates standing in its way.",
"anonymized": "[PLAYER] ([TEAM]) produces a long-range strike, but he only hits one of his own teammates standing in its way.",
"visibility": "shown",
"position": "1645000"
},
{
"important": false,
"gameTime": "1 - 26:11",
"label": "",
"description": "Andoni Iraola (Ath Bilbao) manages to dispossess his opponent of the ball, but he commits a foul in the process and the referee blows his whistle.",
"identified": "[PLAYER_xpALVpwq] ([TEAM_]) manages to dispossess his opponent of the ball, but he commits a foul in the process and the referee blows his whistle.",
"anonymized": "[PLAYER] ([TEAM]) manages to dispossess his opponent of the ball, but he commits a foul in the process and the referee blows his whistle.",
"visibility": "shown",
"position": "1571000"
},
{
"important": false,
"gameTime": "1 - 25:04",
"label": "",
"description": "The ball is cleared after Oscar de Marcos (Ath Bilbao) attempted to dribble past an opposing player.",
"identified": "The ball is cleared after [PLAYER_ljCE2GoH] ([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": "1504000"
},
{
"important": false,
"gameTime": "1 - 22:54",
"label": "",
"description": "Inaki Williams (Ath Bilbao) once again attempts to send a defence-splitting pass, but the opposition's defence is alert and intercepts the ball.",
"identified": "[PLAYER_W4HzaGVn] ([TEAM_]) once again attempts to send a defence-splitting pass, but the opposition's defence is alert and intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) once again attempts to send a defence-splitting pass, but the opposition's defence is alert and intercepts the ball.",
"visibility": "shown",
"position": "1374000"
},
{
"important": false,
"gameTime": "1 - 22:17",
"label": "",
"description": "Ander Iturraspe (Ath Bilbao) makes a rough challenge and Santiago Jaime Latre blows his whistle for a foul.",
"identified": "[PLAYER_CYQZhh9a] ([TEAM_]) makes a rough challenge and [REFEREE] blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) makes a rough challenge and [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "1337000"
},
{
"important": false,
"gameTime": "1 - 21:27",
"label": "",
"description": "The ball is behind the touchline and Atl. Madrid will take a throw-in.",
"identified": "The ball is behind the touchline and [TEAM_] will take a throw-in.",
"anonymized": "The ball is behind the touchline and [TEAM] will take a throw-in.",
"visibility": "shown",
"position": "1287000"
},
{
"important": true,
"gameTime": "1 - 19:43",
"label": "",
"description": "Raul Garcia (Atl. Madrid) finds himself unmarked on the edge of the box, but he drags his shot just wide of the right post.",
"identified": "[PLAYER_hI95WTn0] ([TEAM_]) finds himself unmarked on the edge of the box, but he drags his shot just wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) finds himself unmarked on the edge of the box, but he drags his shot just wide of the right post.",
"visibility": "shown",
"position": "1183000"
},
{
"important": false,
"gameTime": "1 - 18:37",
"label": "",
"description": "Raul Garcia (Atl. Madrid) swings in a cross, but the ball is cleared to safety by one of the defending players.",
"identified": "[PLAYER_hI95WTn0] ([TEAM_]) swings in a cross, but the ball is cleared to safety by one of the defending players.",
"anonymized": "[PLAYER] ([TEAM]) swings in a cross, but the ball is cleared to safety by one of the defending players.",
"visibility": "shown",
"position": "1117000"
},
{
"important": false,
"gameTime": "1 - 18:02",
"label": "",
"description": "Unai Bustinza (Ath Bilbao) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance.",
"identified": "[PLAYER_O0o3t73q] ([TEAM_]) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance.",
"anonymized": "[PLAYER] ([TEAM]) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance.",
"visibility": "shown",
"position": "1082000"
},
{
"important": false,
"gameTime": "1 - 16:54",
"label": "",
"description": "What a poor attempt! Sola (Ath Bilbao) drives another shot towards goal - this time from further out, but it couldn't have been worse if he had shot blindfolded. The ball goes into the stands.",
"identified": "What a poor attempt! [PLAYER_voCJHwIf] ([TEAM_]) drives another shot towards goal - this time from further out, but it couldn't have been worse if he had shot blindfolded. The ball goes into the stands.",
"anonymized": "What a poor attempt! [PLAYER] ([TEAM]) drives another shot towards goal - this time from further out, but it couldn't have been worse if he had shot blindfolded. The ball goes into the stands.",
"visibility": "shown",
"position": "1014000"
},
{
"important": false,
"gameTime": "1 - 15:13",
"label": "",
"description": "The linesman raises his flag for offside before Antoine Griezmann (Atl. Madrid) heads on.",
"identified": "The linesman raises his flag for offside before [PLAYER_OxCa1jdT] ([TEAM_]) heads on.",
"anonymized": "The linesman raises his flag for offside before [PLAYER] ([TEAM]) heads on.",
"visibility": "shown",
"position": "913000"
},
{
"important": false,
"gameTime": "1 - 14:55",
"label": "",
"description": "Antoine Griezmann (Atl. Madrid) attempts to scoop the ball into the box over the defence, but one of the defending players makes a timely intervention.",
"identified": "[PLAYER_OxCa1jdT] ([TEAM_]) attempts to scoop the ball into the box over the defence, but one of the defending players makes a timely intervention.",
"anonymized": "[PLAYER] ([TEAM]) attempts to scoop the ball into the box over the defence, but one of the defending players makes a timely intervention.",
"visibility": "shown",
"position": "895000"
},
{
"important": false,
"gameTime": "1 - 14:43",
"label": "corner",
"description": "The goalkeeper punched the ball away after Koke (Atl. Madrid) took the corner.",
"identified": "The goalkeeper punched the ball away after [PLAYER_v9hLv1xJ] ([TEAM_]) took the corner.",
"anonymized": "The goalkeeper punched the ball away after [PLAYER] ([TEAM]) took the corner.",
"visibility": "shown",
"position": "883000"
},
{
"important": false,
"gameTime": "1 - 13:56",
"label": "",
"description": "The defence is alert as they clear a dangerous cross from Juanfran (Atl. Madrid). The linesman makes the right call and Atl. Madrid will have a corner.",
"identified": "The defence is alert as they clear a dangerous cross from [PLAYER_jLwtE6Rq] ([TEAM_]). The linesman makes the right call and [TEAM_] will have a corner.",
"anonymized": "The defence is alert as they clear a dangerous cross from [PLAYER] ([TEAM]). The linesman makes the right call and [TEAM] will have a corner.",
"visibility": "shown",
"position": "836000"
},
{
"important": false,
"gameTime": "1 - 12:44",
"label": "",
"description": "Sola (Ath Bilbao) makes a strong challenge and Santiago Jaime Latre blows for a foul.",
"identified": "[PLAYER_voCJHwIf] ([TEAM_]) makes a strong challenge and [REFEREE] blows for a foul.",
"anonymized": "[PLAYER] ([TEAM]) makes a strong challenge and [REFEREE] blows for a foul.",
"visibility": "shown",
"position": "764000"
},
{
"important": false,
"gameTime": "1 - 12:05",
"label": "",
"description": "Guilherme Siqueira (Atl. Madrid) plays in a hopeful cross, but it doesn't find its way to any of the attacking players.",
"identified": "[PLAYER_zVlV5pWr] ([TEAM_]) plays in a hopeful cross, but it doesn't find its way to any of the attacking players.",
"anonymized": "[PLAYER] ([TEAM]) plays in a hopeful cross, but it doesn't find its way to any of the attacking players.",
"visibility": "shown",
"position": "725000"
},
{
"important": false,
"gameTime": "1 - 11:35",
"label": "",
"description": "Guilherme Siqueira (Atl. Madrid) crosses the ball forward but it is intercepted.",
"identified": "[PLAYER_zVlV5pWr] ([TEAM_]) crosses the ball forward but it is intercepted.",
"anonymized": "[PLAYER] ([TEAM]) crosses the ball forward but it is intercepted.",
"visibility": "shown",
"position": "695000"
},
{
"important": false,
"gameTime": "1 - 10:40",
"label": "",
"description": "It's a throw-in for Atl. Madrid.",
"identified": "It's a throw-in for [TEAM_].",
"anonymized": "It's a throw-in for [TEAM].",
"visibility": "shown",
"position": "640000"
}
]
} |