File size: 92,529 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 |
{
"timestamp": "1429728300",
"score": "1 - 0",
"round": "Quarter-finals",
"teams": [
"Real Madrid",
"Atl. Madrid"
],
"lineup": {
"home": {
"tactic": "1-4-4-2",
"players": [
{
"hash": "rZh5FTHE",
"name": "Carvajal D.",
"captain": "",
"detail_link": "/player/carvajal-daniel/rZh5FTHE/",
"short_name": "Carvajal",
"shirt_number": "15",
"country": "Spain",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Daniel Carvajal"
},
{
"hash": "SEKEaDF5",
"name": "Casillas I.",
"captain": "",
"detail_link": "/player/casillas-iker/SEKEaDF5/",
"short_name": "Casillas",
"shirt_number": "1",
"country": "Spain",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Iker Casillas"
},
{
"hash": "O0EKKpNQ",
"name": "Chicharito",
"captain": "",
"detail_link": "/player/chicharito/O0EKKpNQ/",
"short_name": "Chicharito",
"shirt_number": "14",
"country": "Mexico",
"facts": [
{
"type": "3",
"time": "88' Chicharito (Ronaldo C.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "90+2'",
"description": "Jese",
"linked_player_hash": "6BdSXunk"
}
],
"lineup": 10,
"starting": true,
"long_name": "Chicharito"
},
{
"hash": "jT3R8E52",
"name": "Coentrao F.",
"captain": "",
"detail_link": "/player/coentrao-fabio/jT3R8E52/",
"short_name": "Coentrao",
"shirt_number": "5",
"country": "Portugal",
"facts": [
{
"type": "6",
"time": "90+1'",
"description": "Arbeloa A.",
"linked_player_hash": "CO9bjrLo"
}
],
"lineup": 5,
"starting": true,
"long_name": "Fabio Coentrao"
},
{
"hash": "ULLmpdEb",
"name": "Isco",
"captain": "",
"detail_link": "/player/isco/ULLmpdEb/",
"short_name": "Isco",
"shirt_number": "23",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "90+3'",
"description": "Illarramendi A.",
"linked_player_hash": "INTB796M"
}
],
"lineup": 9,
"starting": true,
"long_name": "Isco"
},
{
"hash": "CloE7jjr",
"name": "Kroos T.",
"captain": "",
"detail_link": "/player/kroos-toni/CloE7jjr/",
"short_name": "Kroos",
"shirt_number": "8",
"country": "Germany",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Toni Kroos"
},
{
"hash": "2y9qaipI",
"name": "Pepe",
"captain": "",
"detail_link": "/player/pepe/2y9qaipI/",
"short_name": "Pepe",
"shirt_number": "3",
"country": "Portugal",
"facts": [
{
"type": "1",
"time": "74' Pepe (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Pepe"
},
{
"hash": "db8mbBaO",
"name": "Ramos S.",
"captain": "",
"detail_link": "/player/ramos-sergio/db8mbBaO/",
"short_name": "Ramos",
"shirt_number": "4",
"country": "Spain",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Sergio Ramos"
},
{
"hash": "MPaioN57",
"name": "Rodriguez J.",
"captain": "",
"detail_link": "/player/rodriguez-james/MPaioN57/",
"short_name": "Rodriguez",
"shirt_number": "10",
"country": "Colombia",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "James Rodriguez"
},
{
"hash": "WGOY4FSt",
"name": "Ronaldo C.",
"captain": "",
"detail_link": "/player/ronaldo-cristiano/WGOY4FSt/",
"short_name": "Ronaldo",
"shirt_number": "7",
"country": "Portugal",
"facts": [
{
"type": "8",
"time": "88' Chicharito (Ronaldo C.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Cristiano Ronaldo"
},
{
"hash": "t20vQIvC",
"name": "Varane R.",
"captain": "",
"detail_link": "/player/varane-raphael/t20vQIvC/",
"short_name": "Varane",
"shirt_number": "2",
"country": "France",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Raphael Varane"
},
{
"hash": "CO9bjrLo",
"name": "Arbeloa A.",
"captain": "",
"detail_link": "/player/arbeloa-alvaro/CO9bjrLo/",
"short_name": "Arbeloa",
"shirt_number": "17",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "90+1'",
"description": "Coentrao F.",
"linked_player_hash": "jT3R8E52"
},
{
"type": "1",
"time": "90+3' Arbeloa A. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Alvaro Arbeloa"
},
{
"hash": "8Wp8ZCLG",
"name": "Fernandez N.",
"captain": "",
"detail_link": "/player/nacho/8Wp8ZCLG/",
"short_name": "Fernandez",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Nacho Fernandez"
},
{
"hash": "INTB796M",
"name": "Illarramendi A.",
"captain": "",
"detail_link": "/player/illarramendi-asier/INTB796M/",
"short_name": "Illarramendi",
"shirt_number": "24",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "90+3'",
"description": "Isco",
"linked_player_hash": "ULLmpdEb"
}
],
"lineup": null,
"starting": false,
"long_name": "Asier Illarramendi"
},
{
"hash": "6BdSXunk",
"name": "Jese",
"captain": "",
"detail_link": "/player/jese/6BdSXunk/",
"short_name": "Jese",
"shirt_number": "20",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "90+2'",
"description": "Chicharito",
"linked_player_hash": "O0EKKpNQ"
}
],
"lineup": null,
"starting": false,
"long_name": "Jese"
},
{
"hash": "0AgmLAwr",
"name": "Khedira S.",
"captain": "",
"detail_link": "/player/khedira-sami/0AgmLAwr/",
"short_name": "Khedira",
"shirt_number": "6",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Sami Khedira"
},
{
"hash": "AFrrNUgS",
"name": "Lucas Silva",
"captain": "",
"detail_link": "/player/silva-lucas/AFrrNUgS/",
"short_name": "Lucas Silva",
"shirt_number": "16",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Lucas Silva"
},
{
"hash": "dQEusiKl",
"name": "Navas K.",
"captain": "",
"detail_link": "/player/navas-keylor/dQEusiKl/",
"short_name": "Navas",
"shirt_number": "13",
"country": "Costa Rica",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Keylor Navas"
}
],
"coach": [
{
"hash": "nZQG5IgJ",
"name": "Ancelotti C.",
"captain": "",
"detail_link": "/player/ancelotti-carlo/nZQG5IgJ/",
"short_name": "Ancelotti C.",
"shirt_number": "",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Carlo Ancelotti"
}
]
},
"away": {
"tactic": "1-4-4-2",
"players": [
{
"hash": "bN8yV97o",
"name": "Gamez J.",
"captain": "",
"detail_link": "/player/gamez-jesus/bN8yV97o/",
"short_name": "Gamez",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Jesus Gamez"
},
{
"hash": "AXQzJq3b",
"name": "Godin D.",
"captain": "(C)",
"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": [
{
"type": "6",
"time": "65'",
"description": "Garcia R.",
"linked_player_hash": "hI95WTn0"
}
],
"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": [
{
"type": "1",
"time": "90+4' Koke (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Koke"
},
{
"hash": "MV22As4p",
"name": "Mandzukic M.",
"captain": "",
"detail_link": "/player/mandzukic-mario/MV22As4p/",
"short_name": "Mandzukic",
"shirt_number": "9",
"country": "Croatia",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Mario Mandzukic"
},
{
"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": "hSbvVwW7",
"name": "Niguez S.",
"captain": "",
"detail_link": "/player/niguez-saul/hSbvVwW7/",
"short_name": "Niguez",
"shirt_number": "17",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "46'",
"description": "Gabi",
"linked_player_hash": "Q3asrkFf"
}
],
"lineup": 9,
"starting": true,
"long_name": "Saul Niguez"
},
{
"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": "6",
"time": "86'",
"description": "Gimenez J. M.",
"linked_player_hash": "IgRLzKhM"
}
],
"lineup": 7,
"starting": true,
"long_name": "Tiago"
},
{
"hash": "K0HKnqmK",
"name": "Turan A.",
"captain": "",
"detail_link": "/player/turan-arda/K0HKnqmK/",
"short_name": "Turan",
"shirt_number": "10",
"country": "Turkey",
"facts": [
{
"type": "1",
"time": "31' Turan A. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Arda Turan"
},
{
"hash": "Q3asrkFf",
"name": "Gabi",
"captain": "",
"detail_link": "/player/gabi/Q3asrkFf/",
"short_name": "Gabi",
"shirt_number": "14",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "46'",
"description": "Niguez S.",
"linked_player_hash": "hSbvVwW7"
}
],
"lineup": null,
"starting": false,
"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": "7",
"time": "65'",
"description": "Griezmann A.",
"linked_player_hash": "OxCa1jdT"
},
{
"type": "1",
"time": "74' Garcia R. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Raul Garcia"
},
{
"hash": "IgRLzKhM",
"name": "Gimenez J. M.",
"captain": "",
"detail_link": "/player/gimenez-jose/IgRLzKhM/",
"short_name": "Gimenez",
"shirt_number": "24",
"country": "Uruguay",
"facts": [
{
"type": "7",
"time": "86'",
"description": "Tiago",
"linked_player_hash": "lxBoIH5p"
}
],
"lineup": null,
"starting": false,
"long_name": "Jose Maria Gimenez"
},
{
"hash": "ENwqg0Pd",
"name": "Jimenez R.",
"captain": "",
"detail_link": "/player/jimenez-raul/ENwqg0Pd/",
"short_name": "Jimenez",
"shirt_number": "11",
"country": "Mexico",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Raul Jimenez"
},
{
"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": "zVlV5pWr",
"name": "Siqueira G.",
"captain": "",
"detail_link": "/player/siqueira-guilherme/zVlV5pWr/",
"short_name": "Siqueira",
"shirt_number": "3",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Guilherme Siqueira"
},
{
"hash": "65srZ2Lb",
"name": "Torres F.",
"captain": "",
"detail_link": "/player/torres-fernando/65srZ2Lb/",
"short_name": "Torres",
"shirt_number": "19",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Fernando Torres"
}
],
"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"
}
]
}
},
"referee": [
"Brych F."
],
"venue": [
"Estadio Santiago Bernab\u00e9u (Madrid)"
],
"attendance": [
"78 300"
],
"referee_matched": [
"Felix Brych"
],
"referee_found": [
"Felix Brych"
],
"coach_matched": [
"Carlo Ancelotti",
"Diego Simeone"
],
"gameHomeTeam": "Real Madrid",
"home": {
"name": "Real Madrid",
"detail_link": "/team/real-madrid/W8mj7MDD",
"hash": "W8mj7MDD",
"names": [
"Real Madrid",
"real madrid"
]
},
"gameAwayTeam": "Atl. Madrid",
"away": {
"name": "Atl. Madrid",
"detail_link": "/team/atl-madrid/jaarqpLQ",
"hash": "jaarqpLQ",
"names": [
"Atl. Madrid",
"atl madrid"
]
},
"gameDate": "22/04/2015 - 20:45",
"annotations": [
{
"important": false,
"gameTime": "2 - 50:59",
"label": "",
"description": "The game produced by the players today wasn't one of the most inspiring. They definitely haven't shown us their best. The home side dominated today's game. The home team played possession football and the away players really focused on a well-organized defence.",
"identified": "The game produced by the players today wasn't one of the most inspiring. They definitely haven't shown us their best. The home side dominated today's game. The home team played possession football and the away players really focused on a well-organized defence.",
"anonymized": "The game produced by the players today wasn't one of the most inspiring. They definitely haven't shown us their best. The home side dominated today's game. The home team played possession football and the away players really focused on a well-organized defence.",
"visibility": "shown",
"position": "3059000"
},
{
"important": true,
"gameTime": "2 - 50:11",
"label": "whistle",
"description": "That's it for today, Felix Brych 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": "3011000"
},
{
"important": true,
"gameTime": "2 - 48:38",
"label": "y-card",
"description": "The foul by Koke (Atl. Madrid) is worthy of a card and a yellow is duly shown by Felix Brych.",
"identified": "The foul by [PLAYER_v9hLv1xJ] ([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": "2918000"
},
{
"important": true,
"gameTime": "2 - 47:59",
"label": "substitution",
"description": "Carlo Ancelotti has decided to make a change. Asier Illarramendi (Real Madrid) replaces Isco.",
"identified": "[COACH_nZQG5IgJ] has decided to make a change. [PLAYER_INTB796M] ([TEAM_]) replaces [PLAYER_ULLmpdEb].",
"anonymized": "[COACH] has decided to make a change. [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "2879000"
},
{
"important": true,
"gameTime": "2 - 47:43",
"label": "y-card",
"description": "The referee gives a yellow card to Alvaro Arbeloa (Real Madrid).",
"identified": "The referee gives a yellow card to [PLAYER_CO9bjrLo] ([TEAM_]).",
"anonymized": "The referee gives a yellow card to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2863000"
},
{
"important": false,
"gameTime": "2 - 47:42",
"label": "",
"description": "Alvaro Arbeloa (Real Madrid) attempts to delay the restart of play. The referee doesn't like it.",
"identified": "[PLAYER_CO9bjrLo] ([TEAM_]) attempts to delay the restart of play. The referee doesn't like it.",
"anonymized": "[PLAYER] ([TEAM]) attempts to delay the restart of play. The referee doesn't like it.",
"visibility": "shown",
"position": "2862000"
},
{
"important": true,
"gameTime": "2 - 46:46",
"label": "substitution",
"description": "The manager has been forced to make a substitution and the injured Chicharito leaves the pitch to be replaced by Jese (Real Madrid).",
"identified": "The manager has been forced to make a substitution and the injured [PLAYER_O0EKKpNQ] leaves the pitch to be replaced by [PLAYER_6BdSXunk] ([TEAM_]).",
"anonymized": "The manager has been forced to make a substitution and the injured [PLAYER] leaves the pitch to be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2806000"
},
{
"important": true,
"gameTime": "2 - 45:59",
"label": "substitution",
"description": "That will be all from Fabio Coentrao who is being replaced by the fresh legs of Alvaro Arbeloa (Real Madrid).",
"identified": "That will be all from [PLAYER_jT3R8E52] who is being replaced by the fresh legs of [PLAYER_CO9bjrLo] ([TEAM_]).",
"anonymized": "That will be all from [PLAYER] who is being replaced by the fresh legs of [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2759000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "5 additional min. will be played.",
"identified": "5 additional min. will be played.",
"anonymized": "5 additional min. will be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 44:25",
"label": "injury",
"description": "Chicharito (Real Madrid) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"identified": "[PLAYER_O0EKKpNQ] ([TEAM_]) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"anonymized": "[PLAYER] ([TEAM]) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"visibility": "shown",
"position": "2665000"
},
{
"important": false,
"gameTime": "2 - 44:05",
"label": "",
"description": "A rebound falls at the feet of Raul Garcia (Atl. Madrid) who unleashes a shot from long range towards the goal. However, his effort is poor and it flies high over the crossbar.",
"identified": "A rebound falls at the feet of [PLAYER_hI95WTn0] ([TEAM_]) who unleashes a shot from long range towards the goal. However, his effort is poor and it flies high over the crossbar.",
"anonymized": "A rebound falls at the feet of [PLAYER] ([TEAM]) who unleashes a shot from long range towards the goal. However, his effort is poor and it flies high over the crossbar.",
"visibility": "shown",
"position": "2645000"
},
{
"important": true,
"gameTime": "2 - 42:30",
"label": "soccer-ball",
"description": "It's in the back of the net! Cristiano Ronaldo is the provider as he slips the ball to Chicharito (Real Madrid) who simply steers it home from close range. It's 1:0.",
"identified": "It's in the back of the net! [PLAYER_WGOY4FSt] is the provider as he slips the ball to [PLAYER_O0EKKpNQ] ([TEAM_]) who simply steers it home from close range. It's 1:0.",
"anonymized": "It's in the back of the net! [PLAYER] is the provider as he slips the ball to [PLAYER] ([TEAM]) who simply steers it home from close range. It's 1:0.",
"visibility": "shown",
"position": "2550000"
},
{
"important": false,
"gameTime": "2 - 41:37",
"label": "",
"description": "Chicharito (Real Madrid) sends a cross into the box, but Jan Oblak comes off his line to gather the ball.",
"identified": "[PLAYER_O0EKKpNQ] ([TEAM_]) sends a cross into the box, but [PLAYER_SYy8ZHN9] 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": "2497000"
},
{
"important": false,
"gameTime": "2 - 40:12",
"label": "",
"description": "Mario Mandzukic (Atl. Madrid) is able to continue to play.",
"identified": "[PLAYER_MV22As4p] ([TEAM_]) is able to continue to play.",
"anonymized": "[PLAYER] ([TEAM]) is able to continue to play.",
"visibility": "shown",
"position": "2412000"
},
{
"important": true,
"gameTime": "2 - 40:01",
"label": "substitution",
"description": "Diego Simeone prepares a substitution. Tiago is replaced by Jose Maria Gimenez (Atl. Madrid).",
"identified": "[COACH_AZ18LjKN] prepares a substitution. [PLAYER_lxBoIH5p] is replaced by [PLAYER_IgRLzKhM] ([TEAM_]).",
"anonymized": "[COACH] prepares a substitution. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2401000"
},
{
"important": false,
"gameTime": "2 - 39:07",
"label": "injury",
"description": "Mario Mandzukic (Atl. Madrid) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"identified": "[PLAYER_MV22As4p] ([TEAM_]) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"anonymized": "[PLAYER] ([TEAM]) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"visibility": "shown",
"position": "2347000"
},
{
"important": false,
"gameTime": "2 - 38:35",
"label": "",
"description": "Pepe (Real Madrid) timed his run perfectly to connect with the resulting corner kick, but his finish from around the penalty spot was rather poor as it went well wide of the right post.",
"identified": "[PLAYER_2y9qaipI] ([TEAM_]) timed his run perfectly to connect with the resulting corner kick, but his finish from around the penalty spot was rather poor as it went well wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) timed his run perfectly to connect with the resulting corner kick, but his finish from around the penalty spot was rather poor as it went well wide of the right post.",
"visibility": "shown",
"position": "2315000"
},
{
"important": false,
"gameTime": "2 - 38:24",
"label": "corner",
"description": "Toni Kroos (Real Madrid) takes the corner.",
"identified": "[PLAYER_CloE7jjr] ([TEAM_]) takes the corner.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner.",
"visibility": "shown",
"position": "2304000"
},
{
"important": false,
"gameTime": "2 - 37:40",
"label": "",
"description": "Sergio Ramos (Real Madrid) serves up a nice cross, but Jan Oblak punches the ball away. The ball goes behind for a corner. Real Madrid will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_db8mbBaO] ([TEAM_]) serves up a nice cross, but [PLAYER_SYy8ZHN9] punches the ball away. The ball goes behind for a corner. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) serves up a nice cross, but [PLAYER] punches the ball away. The ball goes behind for a corner. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "2260000"
},
{
"important": false,
"gameTime": "2 - 35:36",
"label": "",
"description": "Isco (Real Madrid) smashes the ball towards goal from the edge of the penalty box, but it goes well wide of the right post.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) smashes the ball towards goal from the edge of the penalty box, but it goes well wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) smashes the ball towards goal from the edge of the penalty box, but it goes well wide of the right post.",
"visibility": "shown",
"position": "2136000"
},
{
"important": false,
"gameTime": "2 - 35:26",
"label": "corner",
"description": "James Rodriguez (Real Madrid) quickly takes the corner kick with a short pass.",
"identified": "[PLAYER_MPaioN57] ([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": "2126000"
},
{
"important": true,
"gameTime": "2 - 34:51",
"label": "",
"description": "Chicharito (Real Madrid) takes a wonderful touch after collecting a pass inside the box. He steers his low drive towards the left post, but the keeper dives low to keep the ball out. Real Madrid get a corner.",
"identified": "[PLAYER_O0EKKpNQ] ([TEAM_]) takes a wonderful touch after collecting a pass inside the box. He steers his low drive towards the left post, but the keeper dives low to keep the ball out. [TEAM_] get a corner.",
"anonymized": "[PLAYER] ([TEAM]) takes a wonderful touch after collecting a pass inside the box. He steers his low drive towards the left post, but the keeper dives low to keep the ball out. [TEAM] get a corner.",
"visibility": "shown",
"position": "2091000"
},
{
"important": false,
"gameTime": "2 - 34:14",
"label": "",
"description": "Good defending. Sergio Ramos (Real Madrid) tries to find Toni Kroos inside the box, but the pass is cut out.",
"identified": "Good defending. [PLAYER_db8mbBaO] ([TEAM_]) tries to find [PLAYER_CloE7jjr] 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": "2054000"
},
{
"important": false,
"gameTime": "2 - 32:57",
"label": "",
"description": "Sergio Ramos (Real Madrid) sends over a cross, but he can't find any teammate inside the box. Poor delivery. The ball goes out of play and Atl. Madrid will have a goal kick.",
"identified": "[PLAYER_db8mbBaO] ([TEAM_]) sends over a cross, but he can't find any teammate inside the box. Poor delivery. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) sends over a cross, but he can't find any teammate inside the box. Poor delivery. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "1977000"
},
{
"important": true,
"gameTime": "2 - 30:34",
"label": "yr-card",
"description": "RED CARD! Arda Turan (Atl. Madrid) makes a bad challenge and receives a second yellow card from Felix Brych. He can have an early bath.",
"identified": "RED CARD! [PLAYER_K0HKnqmK] ([TEAM_]) makes a bad challenge and receives a second yellow card from [REFEREE]. He can have an early bath.",
"anonymized": "RED CARD! [PLAYER] ([TEAM]) makes a bad challenge and receives a second yellow card from [REFEREE]. He can have an early bath.",
"visibility": "shown",
"position": "1834000"
},
{
"important": false,
"gameTime": "2 - 29:56",
"label": "",
"description": "Raphael Varane (Real Madrid) seems to have picked up a minor injury, but it looks like he will be able to continue playing.",
"identified": "[PLAYER_t20vQIvC] ([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": "1796000"
},
{
"important": true,
"gameTime": "2 - 28:50",
"label": "y-card",
"description": "Pepe (Real Madrid) picked up a yellow card from referee.",
"identified": "[PLAYER_2y9qaipI] ([TEAM_]) picked up a yellow card from referee.",
"anonymized": "[PLAYER] ([TEAM]) picked up a yellow card from referee.",
"visibility": "shown",
"position": "1730000"
},
{
"important": false,
"gameTime": "2 - 28:49",
"label": "",
"description": "Unsporting behaviour by Pepe (Real Madrid).",
"identified": "Unsporting behaviour by [PLAYER_2y9qaipI] ([TEAM_]).",
"anonymized": "Unsporting behaviour by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1729000"
},
{
"important": true,
"gameTime": "2 - 28:47",
"label": "y-card",
"description": "Raul Garcia (Atl. Madrid) fouls his opponent and receives a yellow card from the referee, but he is clearly not happy with the decision.",
"identified": "[PLAYER_hI95WTn0] ([TEAM_]) fouls his opponent and receives a yellow card from the referee, but he is clearly not happy with the decision.",
"anonymized": "[PLAYER] ([TEAM]) fouls his opponent and receives a yellow card from the referee, but he is clearly not happy with the decision.",
"visibility": "shown",
"position": "1727000"
},
{
"important": false,
"gameTime": "2 - 28:04",
"label": "injury",
"description": "The game is interrupted now, Raphael Varane (Real Madrid) picks up a knock and the physio has to come on.",
"identified": "The game is interrupted now, [PLAYER_t20vQIvC] ([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": "1684000"
},
{
"important": false,
"gameTime": "2 - 27:39",
"label": "",
"description": "Arda Turan (Atl. Madrid) wastes a good opportunity as his pass into the box is blocked by the defence.",
"identified": "[PLAYER_K0HKnqmK] ([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": "1659000"
},
{
"important": false,
"gameTime": "2 - 26:43",
"label": "funfact",
"description": "Total attempts \u2013 23:6.",
"identified": "Total attempts \u2013 23:6.",
"anonymized": "Total attempts \u2013 23:6.",
"visibility": "shown",
"position": "1603000"
},
{
"important": false,
"gameTime": "2 - 25:26",
"label": "",
"description": "Sergio Ramos (Real Madrid) didn't hesitate to knock his opponent down with a harsh sliding tackle. Felix Brych could probably show him a yellow, but he only goes with blowing the whistle for a foul.",
"identified": "[PLAYER_db8mbBaO] ([TEAM_]) didn't hesitate to knock his opponent down with a harsh sliding tackle. [REFEREE] could probably show him a yellow, but he only goes with blowing the whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) didn't hesitate to knock his opponent down with a harsh sliding tackle. [REFEREE] could probably show him a yellow, but he only goes with blowing the whistle for a foul.",
"visibility": "shown",
"position": "1526000"
},
{
"important": false,
"gameTime": "2 - 24:45",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) slams the ball towards the middle of the goal, but it fails to surprise Jan Oblak and he's equal to it.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) slams the ball towards the middle of the goal, but it fails to surprise [PLAYER_SYy8ZHN9] and he's equal to it.",
"anonymized": "[PLAYER] ([TEAM]) slams the ball towards the middle of the goal, but it fails to surprise [PLAYER] and he's equal to it.",
"visibility": "shown",
"position": "1485000"
},
{
"important": false,
"gameTime": "2 - 23:59",
"label": "",
"description": "Koke (Atl. Madrid) is well placed to meet a cross and sends a difficult header towards the middle of the goal, but the goalkeeper reacts well to stop the effort.",
"identified": "[PLAYER_v9hLv1xJ] ([TEAM_]) is well placed to meet a cross and sends a difficult header towards the middle of the goal, but the goalkeeper reacts well to stop the effort.",
"anonymized": "[PLAYER] ([TEAM]) is well placed to meet a cross and sends a difficult header towards the middle of the goal, but the goalkeeper reacts well to stop the effort.",
"visibility": "shown",
"position": "1439000"
},
{
"important": false,
"gameTime": "2 - 23:22",
"label": "",
"description": "A cross into the box from Raul Garcia (Atl. Madrid) is cleared.",
"identified": "A cross into the box from [PLAYER_hI95WTn0] ([TEAM_]) is cleared.",
"anonymized": "A cross into the box from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "1402000"
},
{
"important": false,
"gameTime": "2 - 22:19",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) did his best to latch on to a crossfield pass, but it was too long and it goes out of play.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) did his best to latch on to a crossfield pass, but it was too long and it goes out of play.",
"anonymized": "[PLAYER] ([TEAM]) did his best to latch on to a crossfield pass, but it was too long and it goes out of play.",
"visibility": "shown",
"position": "1339000"
},
{
"important": false,
"gameTime": "2 - 21:55",
"label": "",
"description": "The ball is cleared after Sergio Ramos (Real Madrid) attempted to dribble past an opposing player. The ball is out of play. Real Madrid will take a throw-in.",
"identified": "The ball is cleared after [PLAYER_db8mbBaO] ([TEAM_]) attempted to dribble past an opposing player. The ball is out of play. [TEAM_] will take a throw-in.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. The ball is out of play. [TEAM] will take a throw-in.",
"visibility": "shown",
"position": "1315000"
},
{
"important": true,
"gameTime": "2 - 19:27",
"label": "substitution",
"description": "Substitution. Antoine Griezmann makes way for Raul Garcia (Atl. Madrid).",
"identified": "Substitution. [PLAYER_OxCa1jdT] makes way for [PLAYER_hI95WTn0] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] makes way for [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1167000"
},
{
"important": false,
"gameTime": "2 - 18:27",
"label": "",
"description": "Gabi (Atl. Madrid) gets to the rebound outside the box and doesn't hesitate to shoot on goal. It was a promising attempt, but one of the defending players got in the way and blocked it.",
"identified": "[PLAYER_Q3asrkFf] ([TEAM_]) gets to the rebound outside the box and doesn't hesitate to shoot on goal. It was a promising attempt, but one of the defending players got in the way and blocked it.",
"anonymized": "[PLAYER] ([TEAM]) gets to the rebound outside the box and doesn't hesitate to shoot on goal. It was a promising attempt, but one of the defending players got in the way and blocked it.",
"visibility": "shown",
"position": "1107000"
},
{
"important": false,
"gameTime": "2 - 18:14",
"label": "corner",
"description": "The corner from Koke (Atl. Madrid) is cleared away by the defence.",
"identified": "The corner from [PLAYER_v9hLv1xJ] ([TEAM_]) is cleared away by the defence.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is cleared away by the defence.",
"visibility": "shown",
"position": "1094000"
},
{
"important": false,
"gameTime": "2 - 17:35",
"label": "",
"description": "Gabi (Atl. Madrid) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat. 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_Q3asrkFf] ([TEAM_]) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat. 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]) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat. 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": "1055000"
},
{
"important": false,
"gameTime": "2 - 17:06",
"label": "",
"description": "Jan Oblak makes a superb save to deny a header which was nodded by Sergio Ramos (Real Madrid) after a cross from the side.",
"identified": "[PLAYER_SYy8ZHN9] makes a superb save to deny a header which was nodded by [PLAYER_db8mbBaO] ([TEAM_]) after a cross from the side.",
"anonymized": "[PLAYER] makes a superb save to deny a header which was nodded by [PLAYER] ([TEAM]) after a cross from the side.",
"visibility": "shown",
"position": "1026000"
},
{
"important": false,
"gameTime": "2 - 16:56",
"label": "",
"description": "Tiago (Atl. Madrid) commits a foul and Felix Brych immediately signals a free kick.",
"identified": "[PLAYER_lxBoIH5p] ([TEAM_]) commits a foul and [REFEREE] immediately signals a free kick.",
"anonymized": "[PLAYER] ([TEAM]) commits a foul and [REFEREE] immediately signals a free kick.",
"visibility": "shown",
"position": "1016000"
},
{
"important": false,
"gameTime": "2 - 16:12",
"label": "corner",
"description": "Good work from Atl. Madrid as they win a corner.",
"identified": "Good work from [TEAM_] as they win a corner.",
"anonymized": "Good work from [TEAM] as they win a corner.",
"visibility": "shown",
"position": "972000"
},
{
"important": false,
"gameTime": "2 - 15:52",
"label": "",
"description": "Tiago (Atl. Madrid) gets himself onto the end of the corner, but his header is blocked.",
"identified": "[PLAYER_lxBoIH5p] ([TEAM_]) gets himself onto the end of the corner, but his header is blocked.",
"anonymized": "[PLAYER] ([TEAM]) gets himself onto the end of the corner, but his header is blocked.",
"visibility": "shown",
"position": "952000"
},
{
"important": false,
"gameTime": "2 - 15:25",
"label": "corner",
"description": "Koke (Atl. Madrid) will take the corner.",
"identified": "[PLAYER_v9hLv1xJ] ([TEAM_]) will take the corner.",
"anonymized": "[PLAYER] ([TEAM]) will take the corner.",
"visibility": "shown",
"position": "925000"
},
{
"important": false,
"gameTime": "2 - 15:23",
"label": "",
"description": "A long ball forward to Mario Mandzukic (Atl. Madrid) is intercepted. Atl. Madrid force a corner. They send men into the box.",
"identified": "A long ball forward to [PLAYER_MV22As4p] ([TEAM_]) is intercepted. [TEAM_] force a corner. They send men into the box.",
"anonymized": "A long ball forward to [PLAYER] ([TEAM]) is intercepted. [TEAM] force a corner. They send men into the box.",
"visibility": "shown",
"position": "923000"
},
{
"important": false,
"gameTime": "2 - 13:52",
"label": "",
"description": "Raphael Varane (Real Madrid) peeled away from his marker and got on the end of the resulting corner, but he sends his header straight at the goalkeeper.",
"identified": "[PLAYER_t20vQIvC] ([TEAM_]) peeled away from his marker and got on the end of the resulting corner, but he sends his header straight at the goalkeeper.",
"anonymized": "[PLAYER] ([TEAM]) peeled away from his marker and got on the end of the resulting corner, but he sends his header straight at the goalkeeper.",
"visibility": "shown",
"position": "832000"
},
{
"important": false,
"gameTime": "2 - 13:35",
"label": "corner",
"description": "Toni Kroos (Real Madrid) takes the ball to the corner flag and sends it into the box.",
"identified": "[PLAYER_CloE7jjr] ([TEAM_]) takes the ball to the corner flag and sends it into the box.",
"anonymized": "[PLAYER] ([TEAM]) takes the ball to the corner flag and sends it into the box.",
"visibility": "shown",
"position": "815000"
},
{
"important": false,
"gameTime": "2 - 13:03",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort. The referee signals a corner kick to Real Madrid.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort. The referee signals a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort. The referee signals a corner kick to [TEAM].",
"visibility": "shown",
"position": "783000"
},
{
"important": false,
"gameTime": "2 - 12:10",
"label": "",
"description": "Felix Brych blows the whistle, Cristiano Ronaldo (Real Madrid) is penalised for a foul.",
"identified": "[REFEREE] blows the whistle, [PLAYER_WGOY4FSt] ([TEAM_]) is penalised for a foul.",
"anonymized": "[REFEREE] blows the whistle, [PLAYER] ([TEAM]) is penalised for a foul.",
"visibility": "shown",
"position": "730000"
},
{
"important": false,
"gameTime": "2 - 10:59",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) tries to send a pass but it's blocked.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) tries to send a pass but it's blocked.",
"anonymized": "[PLAYER] ([TEAM]) tries to send a pass but it's blocked.",
"visibility": "shown",
"position": "659000"
},
{
"important": false,
"gameTime": "2 - 08:43",
"label": "",
"description": "Chicharito (Real Madrid) finds himself in a promising position after receiving a beautiful cross from the side, but the opposition defence is ready and one of the defenders averts the threat with a quick interception.",
"identified": "[PLAYER_O0EKKpNQ] ([TEAM_]) finds himself in a promising position after receiving a beautiful cross from the side, but the opposition defence is ready and one of the defenders averts the threat with a quick interception.",
"anonymized": "[PLAYER] ([TEAM]) finds himself in a promising position after receiving a beautiful cross from the side, but the opposition defence is ready and one of the defenders averts the threat with a quick interception.",
"visibility": "shown",
"position": "523000"
},
{
"important": false,
"gameTime": "2 - 07:33",
"label": "corner",
"description": "Real Madrid take a short corner kick.",
"identified": "[TEAM_] take a short corner kick.",
"anonymized": "[TEAM] take a short corner kick.",
"visibility": "shown",
"position": "453000"
},
{
"important": false,
"gameTime": "2 - 07:01",
"label": "",
"description": "Isco (Real Madrid) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat. The ball is out of play and Real Madrid manage to earn a corner.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat. The ball is out of play and [TEAM_] manage to earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat. The ball is out of play and [TEAM] manage to earn a corner.",
"visibility": "shown",
"position": "421000"
},
{
"important": false,
"gameTime": "2 - 06:21",
"label": "corner",
"description": "James Rodriguez (Real Madrid) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety.",
"visibility": "shown",
"position": "381000"
},
{
"important": false,
"gameTime": "2 - 06:07",
"label": "",
"description": "A lofted cross from Raphael Varane (Real Madrid) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. The ball is out of play and the linesman points at the corner flag. Corner to Real Madrid.",
"identified": "A lofted cross from [PLAYER_t20vQIvC] ([TEAM_]) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM_].",
"anonymized": "A lofted cross from [PLAYER] ([TEAM]) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM].",
"visibility": "shown",
"position": "367000"
},
{
"important": false,
"gameTime": "2 - 05:52",
"label": "",
"description": "Isco (Real Madrid) unleashed a powerful long-range strike, but the ball was blocked by a defender on its way.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) unleashed a powerful long-range strike, but the ball was blocked by a defender on its way.",
"anonymized": "[PLAYER] ([TEAM]) unleashed a powerful long-range strike, but the ball was blocked by a defender on its way.",
"visibility": "shown",
"position": "352000"
},
{
"important": false,
"gameTime": "2 - 04:46",
"label": "",
"description": "Real Madrid players are exchanging short passes with one another, waiting for the right moment to beat the opposition's defence.",
"identified": "[TEAM_] players are exchanging short passes with one another, waiting for the right moment to beat the opposition's defence.",
"anonymized": "[TEAM] players are exchanging short passes with one another, waiting for the right moment to beat the opposition's defence.",
"visibility": "shown",
"position": "286000"
},
{
"important": true,
"gameTime": "2 - 03:09",
"label": "",
"description": "Isco plays a lovely pass into Chicharito (Real Madrid), but he can't find the target. His strike from inside the box goes narrowly wide of the right post.",
"identified": "[PLAYER_ULLmpdEb] plays a lovely pass into [PLAYER_O0EKKpNQ] ([TEAM_]), but he can't find the target. His strike from inside the box goes narrowly wide of the right post.",
"anonymized": "[PLAYER] plays a lovely pass into [PLAYER] ([TEAM]), but he can't find the target. His strike from inside the box goes narrowly wide of the right post.",
"visibility": "shown",
"position": "189000"
},
{
"important": false,
"gameTime": "2 - 01:51",
"label": "",
"description": "Chicharito (Real Madrid) looks to break free, but an opposing player clears the ball away. The linesman signals a throw-in for Real Madrid.",
"identified": "[PLAYER_O0EKKpNQ] ([TEAM_]) looks to break free, but an opposing player clears the ball away. The linesman signals a throw-in for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away. The linesman signals a throw-in for [TEAM].",
"visibility": "shown",
"position": "111000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "substitution",
"description": "Diego Simeone has made a change at the break. Gabi (Atl. Madrid) has come on in place of Saul.",
"identified": "[COACH_AZ18LjKN] has made a change at the break. [PLAYER_Q3asrkFf] ([TEAM_]) has come on in place of [PLAYER_hSbvVwW7].",
"anonymized": "[COACH] has made a change at the break. [PLAYER] ([TEAM]) has come on in place of [PLAYER].",
"visibility": "shown",
"position": "1000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The game restarts for the second half.",
"identified": "The game restarts for the second half.",
"anonymized": "The game restarts for the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 45:59",
"label": "",
"description": "Most of the fans probably aren't overly pleased with the development of the game. It hasn't been very exciting show so far. The home side is dominant and dictating the tempo of the game, mainly because of their work rate and accurate passing. The tactic of the home side is slow build-up play, while the away team's main priority is a flawless defence.",
"identified": "Most of the fans probably aren't overly pleased with the development of the game. It hasn't been very exciting show so far. The home side is dominant and dictating the tempo of the game, mainly because of their work rate and accurate passing. The tactic of the home side is slow build-up play, while the away team's main priority is a flawless defence.",
"anonymized": "Most of the fans probably aren't overly pleased with the development of the game. It hasn't been very exciting show so far. The home side is dominant and dictating the tempo of the game, mainly because of their work rate and accurate passing. The tactic of the home side is slow build-up play, while the away team's main priority is a flawless defence.",
"visibility": "shown",
"position": "2759000"
},
{
"important": true,
"gameTime": "1 - 45:29",
"label": "whistle",
"description": "Felix Brych has ended the first half by blowing the whistle.",
"identified": "[REFEREE] has ended the first half by blowing the whistle.",
"anonymized": "[REFEREE] has ended the first half by blowing the whistle.",
"visibility": "shown",
"position": "2729000"
},
{
"important": false,
"gameTime": "1 - 44:47",
"label": "",
"description": "Raphael Varane (Real Madrid) gets his head on the corner, but he can't find the target as his header flies high over the crossbar.",
"identified": "[PLAYER_t20vQIvC] ([TEAM_]) gets his head on the corner, but he can't find the target as his header flies high over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) gets his head on the corner, but he can't find the target as his header flies high over the crossbar.",
"visibility": "shown",
"position": "2687000"
},
{
"important": false,
"gameTime": "1 - 43:59",
"label": "corner",
"description": "James Rodriguez (Real Madrid) is heading toward the corner flag to take the set piece.",
"identified": "[PLAYER_MPaioN57] ([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": "2639000"
},
{
"important": true,
"gameTime": "1 - 43:52",
"label": "",
"description": "Jan Oblak pulls off a great save to deny Cristiano Ronaldo (Real Madrid), who makes himself some space inside the box and unleashes a quick shot to the right side of the goal. Real Madrid earn a corner.",
"identified": "[PLAYER_SYy8ZHN9] pulls off a great save to deny [PLAYER_WGOY4FSt] ([TEAM_]), who makes himself some space inside the box and unleashes a quick shot to the right side of the goal. [TEAM_] earn a corner.",
"anonymized": "[PLAYER] pulls off a great save to deny [PLAYER] ([TEAM]), who makes himself some space inside the box and unleashes a quick shot to the right side of the goal. [TEAM] earn a corner.",
"visibility": "shown",
"position": "2632000"
},
{
"important": false,
"gameTime": "1 - 42:51",
"label": "corner",
"description": "The corner from Isco (Real Madrid) is intercepted by the defence.",
"identified": "The corner from [PLAYER_ULLmpdEb] ([TEAM_]) is intercepted by the defence.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is intercepted by the defence.",
"visibility": "shown",
"position": "2571000"
},
{
"important": false,
"gameTime": "1 - 42:30",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) crosses the ball into the box, but one of the defending players averts the threat. Corner kick. Real Madrid will have an opportunity.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) crosses the ball into the box, but one of the defending players averts the threat. Corner kick. [TEAM_] will have an opportunity.",
"anonymized": "[PLAYER] ([TEAM]) crosses the ball into the box, but one of the defending players averts the threat. Corner kick. [TEAM] will have an opportunity.",
"visibility": "shown",
"position": "2550000"
},
{
"important": false,
"gameTime": "1 - 40:30",
"label": "",
"description": "Real Madrid try to speed play up by taking a quick free kick.",
"identified": "[TEAM_] try to speed play up by taking a quick free kick.",
"anonymized": "[TEAM] try to speed play up by taking a quick free kick.",
"visibility": "shown",
"position": "2430000"
},
{
"important": false,
"gameTime": "1 - 39:59",
"label": "",
"description": "Saul (Atl. Madrid) makes a reckless foul in order to win the ball from his opponent. Felix Brych has a clear sight of it and blows his whistle.",
"identified": "[PLAYER_hSbvVwW7] ([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.",
"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.",
"visibility": "shown",
"position": "2399000"
},
{
"important": false,
"gameTime": "1 - 37:37",
"label": "",
"description": "James Rodriguez (Real Madrid) takes the resulting free kick from outside the box. He sends a nice cross into the box, but his intention is well anticipated by the goalkeeper who comes out to collect the ball.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) takes the resulting free kick from outside the box. He sends a nice cross into the box, but his intention is well anticipated by the goalkeeper who comes out to collect the ball.",
"anonymized": "[PLAYER] ([TEAM]) takes the resulting free kick from outside the box. He sends a nice cross into the box, but his intention is well anticipated by the goalkeeper who comes out to collect the ball.",
"visibility": "shown",
"position": "2257000"
},
{
"important": false,
"gameTime": "1 - 36:51",
"label": "",
"description": "Miranda (Atl. Madrid) makes a rough challenge and Felix Brych blows his whistle for a foul. A mid-range free kick is awarded to Real Madrid out wide and from this angle a cross into the box is likely.",
"identified": "[PLAYER_A9IyfaRd] ([TEAM_]) makes a rough challenge and [REFEREE] blows his whistle for a foul. A mid-range free kick is awarded to [TEAM_] out wide and from this angle a cross into the box is likely.",
"anonymized": "[PLAYER] ([TEAM]) makes a rough challenge and [REFEREE] blows his whistle for a foul. A mid-range free kick is awarded to [TEAM] out wide and from this angle a cross into the box is likely.",
"visibility": "shown",
"position": "2211000"
},
{
"important": false,
"gameTime": "1 - 35:59",
"label": "",
"description": "Jesus Gamez (Atl. Madrid) serves up a nice cross, but the defence clears the danger.",
"identified": "[PLAYER_bN8yV97o] ([TEAM_]) serves up a nice cross, but the defence clears the danger.",
"anonymized": "[PLAYER] ([TEAM]) serves up a nice cross, but the defence clears the danger.",
"visibility": "shown",
"position": "2159000"
},
{
"important": false,
"gameTime": "1 - 33:48",
"label": "corner",
"description": "James Rodriguez (Real Madrid) takes the corner and sends it into the penalty area, but the opposition's defence is ready and makes a good clearance.",
"identified": "[PLAYER_MPaioN57] ([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": "2028000"
},
{
"important": false,
"gameTime": "1 - 33:20",
"label": "",
"description": "James Rodriguez (Real Madrid) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The referee and one of his assistants signal for a corner kick to Real Madrid.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The referee and one of his assistants signal for a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The referee and one of his assistants signal for a corner kick to [TEAM].",
"visibility": "shown",
"position": "2000000"
},
{
"important": false,
"gameTime": "1 - 32:30",
"label": "corner",
"description": "James Rodriguez (Real Madrid) floats the ball in from the corner but it's intercepted.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) floats the ball in from the corner but it's intercepted.",
"anonymized": "[PLAYER] ([TEAM]) floats the ball in from the corner but it's intercepted.",
"visibility": "shown",
"position": "1950000"
},
{
"important": false,
"gameTime": "1 - 31:54",
"label": "",
"description": "Jan Oblak reacts well to deny a long-range free kick from Cristiano Ronaldo (Real Madrid) towards the bottom right corner. Real Madrid have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"identified": "[PLAYER_SYy8ZHN9] reacts well to deny a long-range free kick from [PLAYER_WGOY4FSt] ([TEAM_]) towards the bottom right corner. [TEAM_] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"anonymized": "[PLAYER] reacts well to deny a long-range free kick from [PLAYER] ([TEAM]) towards the bottom right corner. [TEAM] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"visibility": "shown",
"position": "1914000"
},
{
"important": true,
"gameTime": "1 - 30:57",
"label": "y-card",
"description": "Felix Brych shows a yellow card to Arda Turan (Atl. Madrid), who isn't surprised as the tackle was really hard and late. A free kick to Real Madrid.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_K0HKnqmK] ([TEAM_]), who isn't surprised as the tackle was really hard and late. A free kick to [TEAM_].",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]), who isn't surprised as the tackle was really hard and late. A free kick to [TEAM].",
"visibility": "shown",
"position": "1857000"
},
{
"important": false,
"gameTime": "1 - 30:30",
"label": "corner",
"description": "James Rodriguez (Real Madrid) takes the corner but it's cleared.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) takes the corner but it's cleared.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but it's cleared.",
"visibility": "shown",
"position": "1830000"
},
{
"important": true,
"gameTime": "1 - 30:13",
"label": "",
"description": "Chicharito (Real Madrid) meets a cross inside the box, but his header is blocked by an opposing player. Real Madrid force their opponents to concede a corner.",
"identified": "[PLAYER_O0EKKpNQ] ([TEAM_]) meets a cross inside the box, but his header is blocked by an opposing player. [TEAM_] force their opponents to concede a corner.",
"anonymized": "[PLAYER] ([TEAM]) meets a cross inside the box, but his header is blocked by an opposing player. [TEAM] force their opponents to concede a corner.",
"visibility": "shown",
"position": "1813000"
},
{
"important": false,
"gameTime": "1 - 29:03",
"label": "",
"description": "Jesus Gamez (Atl. Madrid) gets into a good scoring position. He creates some space for himself and tries his luck from distance. His decent effort towards the right post is, however, superbly saved by Iker Casillas!",
"identified": "[PLAYER_bN8yV97o] ([TEAM_]) gets into a good scoring position. He creates some space for himself and tries his luck from distance. His decent effort towards the right post is, however, superbly saved by [PLAYER_SEKEaDF5]!",
"anonymized": "[PLAYER] ([TEAM]) gets into a good scoring position. He creates some space for himself and tries his luck from distance. His decent effort towards the right post is, however, superbly saved by [PLAYER]!",
"visibility": "shown",
"position": "1743000"
},
{
"important": false,
"gameTime": "1 - 26:44",
"label": "",
"description": "Close! James Rodriguez (Real Madrid) takes the resultant free kick from 26 metres out and his shot goes just over the crossbar.",
"identified": "Close! [PLAYER_MPaioN57] ([TEAM_]) takes the resultant free kick from 26 metres out and his shot goes just over the crossbar.",
"anonymized": "Close! [PLAYER] ([TEAM]) takes the resultant free kick from 26 metres out and his shot goes just over the crossbar.",
"visibility": "shown",
"position": "1604000"
},
{
"important": false,
"gameTime": "1 - 25:39",
"label": "",
"description": "The referee blows his whistle as Jesus Gamez (Atl. Madrid) was too aggressive in his challenge. Real Madrid are awarded a free kick from a dangerous position.",
"identified": "The referee blows his whistle as [PLAYER_bN8yV97o] ([TEAM_]) was too aggressive in his challenge. [TEAM_] are awarded a free kick from a dangerous position.",
"anonymized": "The referee blows his whistle as [PLAYER] ([TEAM]) was too aggressive in his challenge. [TEAM] are awarded a free kick from a dangerous position.",
"visibility": "shown",
"position": "1539000"
},
{
"important": false,
"gameTime": "1 - 23:18",
"label": "",
"description": "Koke (Atl. Madrid) fails to find any of his teammates inside the box as his pass is blocked.",
"identified": "[PLAYER_v9hLv1xJ] ([TEAM_]) fails to find any of his teammates inside the box as his pass is blocked.",
"anonymized": "[PLAYER] ([TEAM]) fails to find any of his teammates inside the box as his pass is blocked.",
"visibility": "shown",
"position": "1398000"
},
{
"important": false,
"gameTime": "1 - 22:08",
"label": "funfact",
"description": "63:37 \u2013 the ratio of ball possession.",
"identified": "63:37 \u2013 the ratio of ball possession.",
"anonymized": "63:37 \u2013 the ratio of ball possession.",
"visibility": "shown",
"position": "1328000"
},
{
"important": false,
"gameTime": "1 - 21:14",
"label": "",
"description": "Felix Brych couldn't ignore the rough tackle by Cristiano Ronaldo (Real Madrid) and blew his whistle.",
"identified": "[REFEREE] couldn't ignore the rough tackle by [PLAYER_WGOY4FSt] ([TEAM_]) and blew his whistle.",
"anonymized": "[REFEREE] couldn't ignore the rough tackle by [PLAYER] ([TEAM]) and blew his whistle.",
"visibility": "shown",
"position": "1274000"
},
{
"important": false,
"gameTime": "1 - 20:38",
"label": "corner",
"description": "The resulting corner from Koke (Atl. Madrid) is cleared by the opposition's defence.",
"identified": "The resulting corner from [PLAYER_v9hLv1xJ] ([TEAM_]) is cleared by the opposition's defence.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) is cleared by the opposition's defence.",
"visibility": "shown",
"position": "1238000"
},
{
"important": false,
"gameTime": "1 - 20:04",
"label": "",
"description": "Antoine Griezmann (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. The linesman points to the corner flag, Atl. Madrid are going to take it.",
"identified": "[PLAYER_OxCa1jdT] ([TEAM_]) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack. The linesman points to the corner flag, [TEAM_] are going to take it.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack. The linesman points to the corner flag, [TEAM] are going to take it.",
"visibility": "shown",
"position": "1204000"
},
{
"important": false,
"gameTime": "1 - 19:42",
"label": "",
"description": "Jesus Gamez (Atl. Madrid) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. The ball has crossed the sideline. Atl. Madrid are taking a throw-in.",
"identified": "[PLAYER_bN8yV97o] ([TEAM_]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. The ball has crossed the sideline. [TEAM_] are taking a throw-in.",
"anonymized": "[PLAYER] ([TEAM]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger. The ball has crossed the sideline. [TEAM] are taking a throw-in.",
"visibility": "shown",
"position": "1182000"
},
{
"important": false,
"gameTime": "1 - 19:15",
"label": "",
"description": "Fabio Coentrao (Real Madrid) is moving okay again after that injury scare.",
"identified": "[PLAYER_jT3R8E52] ([TEAM_]) is moving okay again after that injury scare.",
"anonymized": "[PLAYER] ([TEAM]) is moving okay again after that injury scare.",
"visibility": "shown",
"position": "1155000"
},
{
"important": false,
"gameTime": "1 - 18:51",
"label": "injury",
"description": "Fabio Coentrao (Real Madrid) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"identified": "[PLAYER_jT3R8E52] ([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": "1131000"
},
{
"important": false,
"gameTime": "1 - 17:43",
"label": "",
"description": "Felix Brych blows his whistle and it's Sergio Ramos (Real Madrid) who is penalised for an offensive foul. Good decision by the referee.",
"identified": "[REFEREE] blows his whistle and it's [PLAYER_db8mbBaO] ([TEAM_]) who is penalised for an offensive foul. Good decision by the referee.",
"anonymized": "[REFEREE] blows his whistle and it's [PLAYER] ([TEAM]) who is penalised for an offensive foul. Good decision by the referee.",
"visibility": "shown",
"position": "1063000"
},
{
"important": false,
"gameTime": "1 - 16:03",
"label": "",
"description": "Isco (Real Madrid) sends a lofted cross into the box which is headed clear.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) sends a lofted cross into the box which is headed clear.",
"anonymized": "[PLAYER] ([TEAM]) sends a lofted cross into the box which is headed clear.",
"visibility": "shown",
"position": "963000"
},
{
"important": false,
"gameTime": "1 - 15:00",
"label": "",
"description": "Koke (Atl. Madrid) covers his face with his hands after wasting a promising chance. He takes the rebound on the edge of the box but blazes the ball high over the crossbar.",
"identified": "[PLAYER_v9hLv1xJ] ([TEAM_]) covers his face with his hands after wasting a promising chance. He takes the rebound on the edge of the box but blazes the ball high over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) covers his face with his hands after wasting a promising chance. He takes the rebound on the edge of the box but blazes the ball high over the crossbar.",
"visibility": "shown",
"position": "900000"
},
{
"important": false,
"gameTime": "1 - 14:07",
"label": "",
"description": "Atl. Madrid decide to take a short pass from the free kick and the attacking effort continues.",
"identified": "[TEAM_] decide to take a short pass from the free kick and the attacking effort continues.",
"anonymized": "[TEAM] decide to take a short pass from the free kick and the attacking effort continues.",
"visibility": "shown",
"position": "847000"
},
{
"important": false,
"gameTime": "1 - 13:44",
"label": "",
"description": "Sergio Ramos (Real Madrid) escapes without any punishment from the referee after using excessive force to foul his opponent. Atl. Madrid are awarded a free kick.",
"identified": "[PLAYER_db8mbBaO] ([TEAM_]) escapes without any punishment from the referee after using excessive force to foul his opponent. [TEAM_] are awarded a free kick.",
"anonymized": "[PLAYER] ([TEAM]) escapes without any punishment from the referee after using excessive force to foul his opponent. [TEAM] are awarded a free kick.",
"visibility": "shown",
"position": "824000"
},
{
"important": false,
"gameTime": "1 - 13:06",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) slams the ball goalwards from 18 metres out, but his decent effort flies a whisker wide of the right post.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) slams the ball goalwards from 18 metres out, but his decent effort flies a whisker wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) slams the ball goalwards from 18 metres out, but his decent effort flies a whisker wide of the right post.",
"visibility": "shown",
"position": "786000"
},
{
"important": false,
"gameTime": "1 - 11:45",
"label": "",
"description": "Chicharito (Real Madrid) receives a brilliant pass and wastes a big opportunity as his shot from inside the penalty area flies narrowly wide of the right post.",
"identified": "[PLAYER_O0EKKpNQ] ([TEAM_]) receives a brilliant pass and wastes a big opportunity as his shot from inside the penalty area flies narrowly wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) receives a brilliant pass and wastes a big opportunity as his shot from inside the penalty area flies narrowly wide of the right post.",
"visibility": "shown",
"position": "705000"
},
{
"important": false,
"gameTime": "1 - 10:31",
"label": "",
"description": "Arda Turan (Atl. Madrid) brings his opponent down with a tackle and Felix Brych blows his whistle for a foul.",
"identified": "[PLAYER_K0HKnqmK] ([TEAM_]) brings his opponent down with a tackle and [REFEREE] blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) brings his opponent down with a tackle and [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "631000"
}
]
} |