File size: 89,023 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 |
{
"timestamp": "1442342700",
"score": "4 - 0",
"round": "1",
"teams": [
"Shakhtar",
"Real Madrid"
],
"lineup": {
"home": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "4SPjLLiR",
"name": "Bale G.",
"captain": "",
"detail_link": "/player/bale-gareth/4SPjLLiR/",
"short_name": "Bale",
"shirt_number": "11",
"country": "Wales",
"facts": [
{
"type": "6",
"time": "31'",
"description": "Kovacic M.",
"linked_player_hash": "4f084TL7"
}
],
"lineup": 9,
"starting": true,
"long_name": "Gareth Bale"
},
{
"hash": "tpV0VX0S",
"name": "Benzema K.",
"captain": "",
"detail_link": "/player/benzema-karim/tpV0VX0S/",
"short_name": "Benzema",
"shirt_number": "9",
"country": "France",
"facts": [
{
"type": "3",
"time": "30' Benzema K.",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Karim Benzema"
},
{
"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": "ULLmpdEb",
"name": "Isco",
"captain": "",
"detail_link": "/player/isco/ULLmpdEb/",
"short_name": "Isco",
"shirt_number": "22",
"country": "Spain",
"facts": [],
"lineup": 8,
"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": 7,
"starting": true,
"long_name": "Toni Kroos"
},
{
"hash": "zmAm2AEH",
"name": "Marcelo",
"captain": "",
"detail_link": "/player/marcelo/zmAm2AEH/",
"short_name": "Marcelo",
"shirt_number": "12",
"country": "Brazil",
"facts": [
{
"type": "8",
"time": "81' Ronaldo C. (Marcelo)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Marcelo"
},
{
"hash": "bZWyoJnA",
"name": "Modric L.",
"captain": "",
"detail_link": "/player/modric-luka/bZWyoJnA/",
"short_name": "Modric",
"shirt_number": "19",
"country": "Croatia",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Luka Modric"
},
{
"hash": "dQEusiKl",
"name": "Navas K.",
"captain": "",
"detail_link": "/player/navas-keylor/dQEusiKl/",
"short_name": "Navas",
"shirt_number": "1",
"country": "Costa Rica",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Keylor Navas"
},
{
"hash": "db8mbBaO",
"name": "Ramos S.",
"captain": "(C)",
"detail_link": "/player/ramos-sergio/db8mbBaO/",
"short_name": "Ramos",
"shirt_number": "4",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "59'",
"description": "Fernandez N.",
"linked_player_hash": "8Wp8ZCLG"
}
],
"lineup": 4,
"starting": true,
"long_name": "Sergio Ramos"
},
{
"hash": "WGOY4FSt",
"name": "Ronaldo C.",
"captain": "",
"detail_link": "/player/ronaldo-cristiano/WGOY4FSt/",
"short_name": "Ronaldo",
"shirt_number": "7",
"country": "Portugal",
"facts": [
{
"type": "3",
"time": "81' Ronaldo C. (Marcelo)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 10,
"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": [
{
"type": "6",
"time": "46'",
"description": "Pepe",
"linked_player_hash": "2y9qaipI"
}
],
"lineup": 3,
"starting": true,
"long_name": "Raphael Varane"
},
{
"hash": "Ukeq3c0b",
"name": "Casemiro",
"captain": "",
"detail_link": "/player/casemiro/Ukeq3c0b/",
"short_name": "Casemiro",
"shirt_number": "14",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Casemiro"
},
{
"hash": "l43b8dXD",
"name": "Casilla K.",
"captain": "",
"detail_link": "/player/casilla-francisco/l43b8dXD/",
"short_name": "Casilla",
"shirt_number": "13",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Kiko Casilla"
},
{
"hash": "rRBOMfjm",
"name": "Cheryshev D.",
"captain": "",
"detail_link": "/player/cheryshev-denis/rRBOMfjm/",
"short_name": "Cheryshev",
"shirt_number": "21",
"country": "Russia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Denis Cheryshev"
},
{
"hash": "8Wp8ZCLG",
"name": "Fernandez N.",
"captain": "",
"detail_link": "/player/nacho/8Wp8ZCLG/",
"short_name": "Fernandez",
"shirt_number": "6",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "59'",
"description": "Ramos S.",
"linked_player_hash": "db8mbBaO"
}
],
"lineup": null,
"starting": false,
"long_name": "Nacho Fernandez"
},
{
"hash": "6BdSXunk",
"name": "Jese",
"captain": "",
"detail_link": "/player/jese/6BdSXunk/",
"short_name": "Jese",
"shirt_number": "20",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jese"
},
{
"hash": "4f084TL7",
"name": "Kovacic M.",
"captain": "",
"detail_link": "/player/kovacic-mateo/4f084TL7/",
"short_name": "Kovacic",
"shirt_number": "16",
"country": "Croatia",
"facts": [
{
"type": "7",
"time": "31'",
"description": "Bale G.",
"linked_player_hash": "4SPjLLiR"
}
],
"lineup": null,
"starting": false,
"long_name": "Mateo Kovacic"
},
{
"hash": "2y9qaipI",
"name": "Pepe",
"captain": "",
"detail_link": "/player/pepe/2y9qaipI/",
"short_name": "Pepe",
"shirt_number": "3",
"country": "Portugal",
"facts": [
{
"type": "7",
"time": "46'",
"description": "Varane R.",
"linked_player_hash": "t20vQIvC"
}
],
"lineup": null,
"starting": false,
"long_name": "Pepe"
}
],
"coach": [
{
"hash": "4fN6car1",
"name": "Benitez R.",
"captain": "",
"detail_link": "/player/benitez-rafael/4fN6car1/",
"short_name": "Benitez R.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Rafael Benitez"
}
]
},
"away": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "OS6Qq9f3",
"name": "Alex Teixeira",
"captain": "",
"detail_link": "/player/alex-teixeira/OS6Qq9f3/",
"short_name": "Alex Teixeira",
"shirt_number": "29",
"country": "Brazil",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Alex Teixeira"
},
{
"hash": "2kuP6src",
"name": "Fred",
"captain": "",
"detail_link": "/player/fred/2kuP6src/",
"short_name": "Fred",
"shirt_number": "8",
"country": "Brazil",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Fred"
},
{
"hash": "U7tWNY9C",
"name": "Gladky O.",
"captain": "",
"detail_link": "/player/gladky-oleksandr/U7tWNY9C/",
"short_name": "Gladky",
"shirt_number": "21",
"country": "Ukraine",
"facts": [
{
"type": "6",
"time": "82'",
"description": "Bernard",
"linked_player_hash": "zeTD6aGH"
}
],
"lineup": 11,
"starting": true,
"long_name": "Oleksandr Gladky"
},
{
"hash": "KOOppIqo",
"name": "Kucher O.",
"captain": "",
"detail_link": "/player/kucher-oleksandr/KOOppIqo/",
"short_name": "Kucher",
"shirt_number": "5",
"country": "Ukraine",
"facts": [
{
"type": "1",
"time": "75' Kucher O. (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Oleksandr Kucher"
},
{
"hash": "0fz0l5ik",
"name": "Marcio Azevedo",
"captain": "",
"detail_link": "/player/azevedo-marcio/0fz0l5ik/",
"short_name": "Marcio Azevedo",
"shirt_number": "66",
"country": "Brazil",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Marcio Azevedo"
},
{
"hash": "EJyMBfQp",
"name": "Marlos",
"captain": "",
"detail_link": "/player/marlos/EJyMBfQp/",
"short_name": "Marlos",
"shirt_number": "11",
"country": "Ukraine",
"facts": [
{
"type": "6",
"time": "74'",
"description": "Kovalenko V.",
"linked_player_hash": "SGS8U0Ua"
}
],
"lineup": 8,
"starting": true,
"long_name": "Marlos"
},
{
"hash": "YiFKQr6n",
"name": "Pyatov A.",
"captain": "",
"detail_link": "/player/pyatov-andrij/YiFKQr6n/",
"short_name": "Pyatov",
"shirt_number": "30",
"country": "Ukraine",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Andrij Pyatov"
},
{
"hash": "hrAzkzLI",
"name": "Rakitsky Y.",
"captain": "",
"detail_link": "/player/rakitsky-yaroslav/hrAzkzLI/",
"short_name": "Rakitsky",
"shirt_number": "44",
"country": "Ukraine",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Yaroslav Rakitsky"
},
{
"hash": "jeS7vRI7",
"name": "Srna D.",
"captain": "(C)",
"detail_link": "/player/srna-darijo/jeS7vRI7/",
"short_name": "Srna",
"shirt_number": "33",
"country": "Croatia",
"facts": [
{
"type": "1",
"time": "54' Srna D. (Handling)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Darijo Srna"
},
{
"hash": "pCEPykLa",
"name": "Stepanenko T.",
"captain": "",
"detail_link": "/player/stepanenko-taras/pCEPykLa/",
"short_name": "Stepanenko",
"shirt_number": "6",
"country": "Ukraine",
"facts": [
{
"type": "1",
"time": "32' Stepanenko T. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Taras Stepanenko"
},
{
"hash": "S0ed3YoR",
"name": "Taison",
"captain": "",
"detail_link": "/player/taison/S0ed3YoR/",
"short_name": "Taison",
"shirt_number": "28",
"country": "Brazil",
"facts": [
{
"type": "6",
"time": "67'",
"description": "Malyshev M.",
"linked_player_hash": "6m1IsErL"
}
],
"lineup": 10,
"starting": true,
"long_name": "Taison"
},
{
"hash": "zeTD6aGH",
"name": "Bernard",
"captain": "",
"detail_link": "/player/bernard/zeTD6aGH/",
"short_name": "Bernard",
"shirt_number": "10",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "82'",
"description": "Gladky O.",
"linked_player_hash": "U7tWNY9C"
}
],
"lineup": null,
"starting": false,
"long_name": "Bernard"
},
{
"hash": "jqCtWeZk",
"name": "Dentinho",
"captain": "",
"detail_link": "/player/dentinho/jqCtWeZk/",
"short_name": "Dentinho",
"shirt_number": "9",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Dentinho"
},
{
"hash": "IeavP2fU",
"name": "Eduardo",
"captain": "",
"detail_link": "/player/eduardo/IeavP2fU/",
"short_name": "Eduardo",
"shirt_number": "22",
"country": "Croatia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Eduardo"
},
{
"hash": "dA2ABkrT",
"name": "Kanibolotsky A.",
"captain": "",
"detail_link": "/player/kanibolotsky-anton/dA2ABkrT/",
"short_name": "Kanibolotsky",
"shirt_number": "32",
"country": "Ukraine",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Anton Kanibolotsky"
},
{
"hash": "SGS8U0Ua",
"name": "Kovalenko V.",
"captain": "",
"detail_link": "/player/kovalenko-viktor/SGS8U0Ua/",
"short_name": "Kovalenko",
"shirt_number": "74",
"country": "Ukraine",
"facts": [
{
"type": "7",
"time": "74'",
"description": "Marlos",
"linked_player_hash": "EJyMBfQp"
}
],
"lineup": null,
"starting": false,
"long_name": "Viktor Kovalenko"
},
{
"hash": "6m1IsErL",
"name": "Malyshev M.",
"captain": "",
"detail_link": "/player/malyshev-maksym/6m1IsErL/",
"short_name": "Malyshev",
"shirt_number": "17",
"country": "Ukraine",
"facts": [
{
"type": "7",
"time": "67'",
"description": "Taison",
"linked_player_hash": "S0ed3YoR"
},
{
"type": "1",
"time": "80' Malyshev M. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Maksym Malyshev"
},
{
"hash": "40wafXg4",
"name": "Ordets I.",
"captain": "",
"detail_link": "/player/ordets-ivan/40wafXg4/",
"short_name": "Ordets",
"shirt_number": "18",
"country": "Ukraine",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ivan Ordets"
}
],
"coach": [
{
"hash": "hY69tSGu",
"name": "Lucescu M.",
"captain": "",
"detail_link": "/player/lucescu-mircea/hY69tSGu/",
"short_name": "Lucescu M.",
"shirt_number": "",
"country": "Romania",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mircea Lucescu"
}
]
}
},
"referee": [
"Bebek I."
],
"venue": [
"Estadio Santiago Bernab\u00e9u (Madrid)"
],
"attendance": [
"66 389"
],
"referee_matched": [
"Ivan Bebek"
],
"referee_found": [
"Ivan Bebek"
],
"coach_matched": [
"Rafael Benitez",
"Mircea Lucescu"
],
"gameHomeTeam": "Real Madrid",
"home": {
"name": "Real Madrid",
"detail_link": "/team/real-madrid/W8mj7MDD",
"hash": "W8mj7MDD",
"names": [
"Real Madrid",
"real madrid"
]
},
"gameAwayTeam": "Shakhtar Donetsk",
"away": {
"name": "Shakhtar Donetsk",
"detail_link": "/team/shakhtar/4ENWX2OA",
"hash": "4ENWX2OA",
"names": [
"Shakhtar Donetsk",
"Shakhtar Donetsk (Ukr)",
"Shakhtar",
"shakhtar"
]
},
"gameDate": "15/09/2015 - 20:45",
"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 home side were superior in this game. The home team played possession football and the away players really focused on a well-organized defence.",
"identified": "There was no time for the supporters to get bored during the game as it was full of action and thrilling moments. The home side were superior in this game. The home team played possession football and the away players really focused on a well-organized defence.",
"anonymized": "There was no time for the supporters to get bored during the game as it was full of action and thrilling moments. The home side were superior in this game. The home team played possession football and the away players really focused on a well-organized defence.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "2 - 48:07",
"label": "whistle",
"description": "That's all for today as the game is over.",
"identified": "That's all for today as the game is over.",
"anonymized": "That's all for today as the game is over.",
"visibility": "shown",
"position": "2887000"
},
{
"important": false,
"gameTime": "2 - 47:38",
"label": "corner",
"description": "The corner from Darijo Srna (Shakhtar) is intercepted by the defence.",
"identified": "The corner from [PLAYER_jeS7vRI7] ([TEAM_]) is intercepted by the defence.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is intercepted by the defence.",
"visibility": "shown",
"position": "2858000"
},
{
"important": false,
"gameTime": "2 - 47:24",
"label": "",
"description": "Alex Teixeira (Shakhtar) picks up a pass and hits the ball towards the top of the net, but he can't generate enough power to trouble Keylor Navas. Good work from Shakhtar Donetsk as they win a corner.",
"identified": "[PLAYER_OS6Qq9f3] ([TEAM_]) picks up a pass and hits the ball towards the top of the net, but he can't generate enough power to trouble [PLAYER_dQEusiKl]. Good work from [TEAM_4ENWX2OA] as they win a corner.",
"anonymized": "[PLAYER] ([TEAM]) picks up a pass and hits the ball towards the top of the net, but he can't generate enough power to trouble [PLAYER]. Good work from [TEAM] as they win a corner.",
"visibility": "shown",
"position": "2844000"
},
{
"important": false,
"gameTime": "2 - 46:25",
"label": "",
"description": "The referee blows his whistle as Nacho Fernandez (Real Madrid) was too aggressive in his challenge.",
"identified": "The referee blows his whistle as [PLAYER_8Wp8ZCLG] ([TEAM_]) was too aggressive in his challenge.",
"anonymized": "The referee blows his whistle as [PLAYER] ([TEAM]) was too aggressive in his challenge.",
"visibility": "shown",
"position": "2785000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "Fourth official shows 3 min. of added time.",
"identified": "Fourth official shows 3 min. of added time.",
"anonymized": "Fourth official shows 3 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 44:10",
"label": "",
"description": "Darijo Srna (Shakhtar) sends a cross into the box, but the opposition's defence clears the ball to safety.",
"identified": "[PLAYER_jeS7vRI7] ([TEAM_]) sends a cross into the box, but the opposition's defence clears the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence clears the ball to safety.",
"visibility": "shown",
"position": "2650000"
},
{
"important": false,
"gameTime": "2 - 43:13",
"label": "",
"description": "Bernard (Shakhtar) serves up a nice cross, but the defence clears the danger.",
"identified": "[PLAYER_zeTD6aGH] ([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": "2593000"
},
{
"important": false,
"gameTime": "2 - 42:26",
"label": "",
"description": "Karim Benzema (Real Madrid) unleashes a shot from the edge of the box, but it goes straight at Andrij Pyatov.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) unleashes a shot from the edge of the box, but it goes straight at [PLAYER_YiFKQr6n].",
"anonymized": "[PLAYER] ([TEAM]) unleashes a shot from the edge of the box, but it goes straight at [PLAYER].",
"visibility": "shown",
"position": "2546000"
},
{
"important": false,
"gameTime": "2 - 41:10",
"label": "funfact",
"description": "The current number of shots on target for both teams is 25:5.",
"identified": "The current number of shots on target for both teams is 25:5.",
"anonymized": "The current number of shots on target for both teams is 25:5.",
"visibility": "shown",
"position": "2470000"
},
{
"important": false,
"gameTime": "2 - 39:45",
"label": "",
"description": "Ivan Bebek blows his whistle and it's Pepe (Real Madrid) who is penalised for an offensive foul. Good decision by the referee.",
"identified": "[REFEREE] blows his whistle and it's [PLAYER_2y9qaipI] ([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": "2385000"
},
{
"important": false,
"gameTime": "2 - 39:41",
"label": "corner",
"description": "Isco (Real Madrid) launches the ball from the resulting corner, but one of the defenders is first to the ball and deals with the threat.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) launches the ball from the resulting corner, but one of the defenders is first to the ball and deals with the threat.",
"anonymized": "[PLAYER] ([TEAM]) launches the ball from the resulting corner, but one of the defenders is first to the ball and deals with the threat.",
"visibility": "shown",
"position": "2381000"
},
{
"important": true,
"gameTime": "2 - 39:13",
"label": "",
"description": "Karim Benzema (Real Madrid) fashions a shot from the edge of the box after receiving an accurate pass. Andrij Pyatov makes a stunning save to stop the effort from flying into the bottom right corner. Real Madrid will have a chance to score from a corner kick.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) fashions a shot from the edge of the box after receiving an accurate pass. [PLAYER_YiFKQr6n] makes a stunning save to stop the effort from flying into the bottom right corner. [TEAM_] will have a chance to score from a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) fashions a shot from the edge of the box after receiving an accurate pass. [PLAYER] makes a stunning save to stop the effort from flying into the bottom right corner. [TEAM] will have a chance to score from a corner kick.",
"visibility": "shown",
"position": "2353000"
},
{
"important": true,
"gameTime": "2 - 36:42",
"label": "substitution",
"description": "Mircea Lucescu has decided to introduce fresh legs, with Bernard (Shakhtar) replacing Oleksandr Gladky.",
"identified": "[COACH_hY69tSGu] has decided to introduce fresh legs, with [PLAYER_zeTD6aGH] ([TEAM_]) replacing [PLAYER_U7tWNY9C].",
"anonymized": "[COACH] has decided to introduce fresh legs, with [PLAYER] ([TEAM]) replacing [PLAYER].",
"visibility": "shown",
"position": "2202000"
},
{
"important": true,
"gameTime": "2 - 35:43",
"label": "soccer-ball",
"description": "Cristiano Ronaldo (Real Madrid) gets to the rebound in the goalmouth and plants a header home.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) gets to the rebound in the goalmouth and plants a header home.",
"anonymized": "[PLAYER] ([TEAM]) gets to the rebound in the goalmouth and plants a header home.",
"visibility": "shown",
"position": "2143000"
},
{
"important": false,
"gameTime": "2 - 35:30",
"label": "",
"description": "Marcelo (Real Madrid) won himself some space after the corner kick and tries his luck with a shot from the edge of the box. His effort is directed to the middle of the goal, but the goalkeeper is alert and makes the save.",
"identified": "[PLAYER_zmAm2AEH] ([TEAM_]) won himself some space after the corner kick and tries his luck with a shot from the edge of the box. His effort is directed to the middle of the goal, but the goalkeeper is alert and makes the save.",
"anonymized": "[PLAYER] ([TEAM]) won himself some space after the corner kick and tries his luck with a shot from the edge of the box. His effort is directed to the middle of the goal, but the goalkeeper is alert and makes the save.",
"visibility": "shown",
"position": "2130000"
},
{
"important": false,
"gameTime": "2 - 35:15",
"label": "corner",
"description": "The ball goes out for a corner. Real Madrid can continue in their attacking effort.",
"identified": "The ball goes out for a corner. [TEAM_] can continue in their attacking effort.",
"anonymized": "The ball goes out for a corner. [TEAM] can continue in their attacking effort.",
"visibility": "shown",
"position": "2115000"
},
{
"important": false,
"gameTime": "2 - 35:09",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) fails to produce a decent enough free kick for a player of his ability and the only target that he finds is the wall of defenders in front of him. Real Madrid will take a corner kick.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) fails to produce a decent enough free kick for a player of his ability and the only target that he finds is the wall of defenders in front of him. [TEAM_] will take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) fails to produce a decent enough free kick for a player of his ability and the only target that he finds is the wall of defenders in front of him. [TEAM] will take a corner kick.",
"visibility": "shown",
"position": "2109000"
},
{
"important": true,
"gameTime": "2 - 34:11",
"label": "y-card",
"description": "Ivan Bebek shows a yellow card to Maksym Malyshev (Shakhtar), who isn't surprised as the tackle was really hard and late.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_6m1IsErL] ([TEAM_]), who isn't surprised as the tackle was really hard and late.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]), who isn't surprised as the tackle was really hard and late.",
"visibility": "shown",
"position": "2051000"
},
{
"important": false,
"gameTime": "2 - 34:10",
"label": "",
"description": "Maksym Malyshev (Shakhtar) tackles a bit over-zealously and Ivan Bebek blows for a foul. Real Madrid win a free kick. It's a promising situation for a direct shot.",
"identified": "[PLAYER_6m1IsErL] ([TEAM_]) tackles a bit over-zealously and [REFEREE] blows for a foul. [TEAM_] win a free kick. It's a promising situation for a direct shot.",
"anonymized": "[PLAYER] ([TEAM]) tackles a bit over-zealously and [REFEREE] blows for a foul. [TEAM] win a free kick. It's a promising situation for a direct shot.",
"visibility": "shown",
"position": "2050000"
},
{
"important": false,
"gameTime": "2 - 33:32",
"label": "",
"description": "Darijo Srna (Shakhtar) crosses the ball into the box, but one of the defending players averts the threat.",
"identified": "[PLAYER_jeS7vRI7] ([TEAM_]) crosses the ball into the box, but one of the defending players averts the threat.",
"anonymized": "[PLAYER] ([TEAM]) crosses the ball into the box, but one of the defending players averts the threat.",
"visibility": "shown",
"position": "2012000"
},
{
"important": false,
"gameTime": "2 - 32:57",
"label": "",
"description": "Maksym Malyshev (Shakhtar) makes a yard for himself on the edge of the box and produces a poor effort that sails miles wide of the left post.",
"identified": "[PLAYER_6m1IsErL] ([TEAM_]) makes a yard for himself on the edge of the box and produces a poor effort that sails miles wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) makes a yard for himself on the edge of the box and produces a poor effort that sails miles wide of the left post.",
"visibility": "shown",
"position": "1977000"
},
{
"important": true,
"gameTime": "2 - 31:59",
"label": "",
"description": "Karim Benzema (Real Madrid) comes close to scoring. He meets a lovely lofted pass from Isco, but sends his close-range header way over the crossbar.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) comes close to scoring. He meets a lovely lofted pass from [PLAYER_ULLmpdEb], but sends his close-range header way over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) comes close to scoring. He meets a lovely lofted pass from [PLAYER], but sends his close-range header way over the crossbar.",
"visibility": "shown",
"position": "1919000"
},
{
"important": false,
"gameTime": "2 - 31:35",
"label": "",
"description": "Luka Modric (Real Madrid) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player.",
"anonymized": "[PLAYER] ([TEAM]) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player.",
"visibility": "shown",
"position": "1895000"
},
{
"important": false,
"gameTime": "2 - 31:26",
"label": "corner",
"description": "Luka Modric (Real Madrid) works the corner short.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) works the corner short.",
"anonymized": "[PLAYER] ([TEAM]) works the corner short.",
"visibility": "shown",
"position": "1886000"
},
{
"important": false,
"gameTime": "2 - 31:00",
"label": "",
"description": "Daniel Carvajal (Real Madrid) sends a lofted cross into the penalty area. Unfortunately for him, the opponent's defence deals with his cross comfortably and intercepts it. It will be a corner kick for Real Madrid.",
"identified": "[PLAYER_rZh5FTHE] ([TEAM_]) sends a lofted cross into the penalty area. Unfortunately for him, the opponent's defence deals with his cross comfortably and intercepts it. It will be a corner kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) sends a lofted cross into the penalty area. Unfortunately for him, the opponent's defence deals with his cross comfortably and intercepts it. It will be a corner kick for [TEAM].",
"visibility": "shown",
"position": "1860000"
},
{
"important": true,
"gameTime": "2 - 29:53",
"label": "y-card",
"description": "Oleksandr Kucher (Shakhtar) sees a yellow card from Ivan Bebek after he sent one of the opposing players to the ground.",
"identified": "[PLAYER_KOOppIqo] ([TEAM_]) sees a yellow card from [REFEREE] after he sent one of the opposing players to the ground.",
"anonymized": "[PLAYER] ([TEAM]) sees a yellow card from [REFEREE] after he sent one of the opposing players to the ground.",
"visibility": "shown",
"position": "1793000"
},
{
"important": false,
"gameTime": "2 - 29:23",
"label": "corner",
"description": "Alex Teixeira (Shakhtar) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"identified": "[PLAYER_OS6Qq9f3] ([TEAM_]) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"anonymized": "[PLAYER] ([TEAM]) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"visibility": "shown",
"position": "1763000"
},
{
"important": false,
"gameTime": "2 - 28:24",
"label": "",
"description": "A pass by Daniel Carvajal (Real Madrid) ends up in no man's land, and the attacking effort comes to an end. The ball goes out of play. Shakhtar Donetsk are awarded a corner kick.",
"identified": "A pass by [PLAYER_rZh5FTHE] ([TEAM_]) ends up in no man's land, and the attacking effort comes to an end. The ball goes out of play. [TEAM_4ENWX2OA] are awarded a corner kick.",
"anonymized": "A pass by [PLAYER] ([TEAM]) ends up in no man's land, and the attacking effort comes to an end. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "1704000"
},
{
"important": true,
"gameTime": "2 - 28:16",
"label": "substitution",
"description": "Substitution. Marlos is replaced by Viktor Kovalenko (Shakhtar).",
"identified": "Substitution. [PLAYER_EJyMBfQp] is replaced by [PLAYER_SGS8U0Ua] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1696000"
},
{
"important": false,
"gameTime": "2 - 27:04",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) receives a precise pass on the edge of the box and bends his effort inches wide of the left post.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) receives a precise pass on the edge of the box and bends his effort inches wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) receives a precise pass on the edge of the box and bends his effort inches wide of the left post.",
"visibility": "shown",
"position": "1624000"
},
{
"important": false,
"gameTime": "2 - 25:14",
"label": "",
"description": "Isco (Real Madrid) plays a through ball inside the box, but it's too strong and Andrij Pyatov comes off his line to intercept.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) plays a through ball inside the box, but it's too strong and [PLAYER_YiFKQr6n] comes off his line to intercept.",
"anonymized": "[PLAYER] ([TEAM]) plays a through ball inside the box, but it's too strong and [PLAYER] comes off his line to intercept.",
"visibility": "shown",
"position": "1514000"
},
{
"important": false,
"gameTime": "2 - 24:12",
"label": "",
"description": "That's a well-taken pass by Karim Benzema (Real Madrid). He unleashes a strike from the edge of the box, but blazes it high over the bar.",
"identified": "That's a well-taken pass by [PLAYER_tpV0VX0S] ([TEAM_]). He unleashes a strike from the edge of the box, but blazes it high over the bar.",
"anonymized": "That's a well-taken pass by [PLAYER] ([TEAM]). He unleashes a strike from the edge of the box, but blazes it high over the bar.",
"visibility": "shown",
"position": "1452000"
},
{
"important": false,
"gameTime": "2 - 22:40",
"label": "",
"description": "A long pass, executed by Fred (Shakhtar), missed the precision to reach his teammates. The linesman signals a throw-in for Real Madrid.",
"identified": "A long pass, executed by [PLAYER_2kuP6src] ([TEAM_]), missed the precision to reach his teammates. The linesman signals a throw-in for [TEAM_].",
"anonymized": "A long pass, executed by [PLAYER] ([TEAM]), missed the precision to reach his teammates. The linesman signals a throw-in for [TEAM].",
"visibility": "shown",
"position": "1360000"
},
{
"important": true,
"gameTime": "2 - 21:41",
"label": "substitution",
"description": "Substitution. Taison will be replaced by Maksym Malyshev (Shakhtar).",
"identified": "Substitution. [PLAYER_S0ed3YoR] will be replaced by [PLAYER_6m1IsErL] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] will be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1301000"
},
{
"important": false,
"gameTime": "2 - 21:10",
"label": "",
"description": "Karim Benzema (Real Madrid) commits a foul after unfairly battling his opponent for the ball.",
"identified": "[PLAYER_tpV0VX0S] ([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": "1270000"
},
{
"important": true,
"gameTime": "2 - 18:00",
"label": "soccer-ball",
"description": "Cristiano Ronaldo (Real Madrid) coolly converts the penalty. His precise shot goes inside the left post, leaving the goalkeeper helpless.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) coolly converts the penalty. His precise shot goes inside the left post, leaving the goalkeeper helpless.",
"anonymized": "[PLAYER] ([TEAM]) coolly converts the penalty. His precise shot goes inside the left post, leaving the goalkeeper helpless.",
"visibility": "shown",
"position": "1080000"
},
{
"important": true,
"gameTime": "2 - 17:58",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) will take the responsibility and he is already preparing the ball.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) will take the responsibility and he is already preparing the ball.",
"anonymized": "[PLAYER] ([TEAM]) will take the responsibility and he is already preparing the ball.",
"visibility": "shown",
"position": "1078000"
},
{
"important": true,
"gameTime": "2 - 17:28",
"label": "penalty",
"description": "The referee blows his whistle, a clear handball by Marcio Azevedo (Shakhtar). The advantage of a penalty kick is given to Real Madrid.",
"identified": "The referee blows his whistle, a clear handball by [PLAYER_0fz0l5ik] ([TEAM_]). The advantage of a penalty kick is given to [TEAM_].",
"anonymized": "The referee blows his whistle, a clear handball by [PLAYER] ([TEAM]). The advantage of a penalty kick is given to [TEAM].",
"visibility": "shown",
"position": "1048000"
},
{
"important": false,
"gameTime": "2 - 16:32",
"label": "",
"description": "The ball is cleared after Marcelo (Real Madrid) attempted to dribble past an opposing player.",
"identified": "The ball is cleared after [PLAYER_zmAm2AEH] ([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": "992000"
},
{
"important": false,
"gameTime": "2 - 15:08",
"label": "",
"description": "Close! Cristiano Ronaldo (Real Madrid) takes the resultant free kick from 22 metres out and his shot goes just over the crossbar.",
"identified": "Close! [PLAYER_WGOY4FSt] ([TEAM_]) takes the resultant free kick from 22 metres out and his shot goes just over the crossbar.",
"anonymized": "Close! [PLAYER] ([TEAM]) takes the resultant free kick from 22 metres out and his shot goes just over the crossbar.",
"visibility": "shown",
"position": "908000"
},
{
"important": false,
"gameTime": "2 - 14:14",
"label": "",
"description": "Oleksandr Kucher (Shakhtar) makes a strong challenge and Ivan Bebek blows for a foul. Another situation results in a direct free kick for Real Madrid.",
"identified": "[PLAYER_KOOppIqo] ([TEAM_]) makes a strong challenge and [REFEREE] blows for a foul. Another situation results in a direct free kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) makes a strong challenge and [REFEREE] blows for a foul. Another situation results in a direct free kick for [TEAM].",
"visibility": "shown",
"position": "854000"
},
{
"important": true,
"gameTime": "2 - 13:59",
"label": "substitution",
"description": "Nacho (Real Madrid) comes onto the pitch because Sergio Ramos simply cannot continue any longer after picking up an injury.",
"identified": "[PLAYER_8Wp8ZCLG] ([TEAM_]) comes onto the pitch because [PLAYER_db8mbBaO] simply cannot continue any longer after picking up an injury.",
"anonymized": "[PLAYER] ([TEAM]) comes onto the pitch because [PLAYER] simply cannot continue any longer after picking up an injury.",
"visibility": "shown",
"position": "839000"
},
{
"important": false,
"gameTime": "2 - 13:14",
"label": "",
"description": "Isco (Real Madrid) receives a quality pass and unleashes a rocket of a shot from distance, but his amazing effort goes just over the crossbar. The goalkeeper probably wouldn't have saved this one.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) receives a quality pass and unleashes a rocket of a shot from distance, but his amazing effort goes just over the crossbar. The goalkeeper probably wouldn't have saved this one.",
"anonymized": "[PLAYER] ([TEAM]) receives a quality pass and unleashes a rocket of a shot from distance, but his amazing effort goes just over the crossbar. The goalkeeper probably wouldn't have saved this one.",
"visibility": "shown",
"position": "794000"
},
{
"important": false,
"gameTime": "2 - 12:43",
"label": "",
"description": "What a wasted chance that is! An inch-perfect cross into the box finds Oleksandr Gladky (Shakhtar) who sends his header well wide of the left post.",
"identified": "What a wasted chance that is! An inch-perfect cross into the box finds [PLAYER_U7tWNY9C] ([TEAM_]) who sends his header well wide of the left post.",
"anonymized": "What a wasted chance that is! An inch-perfect cross into the box finds [PLAYER] ([TEAM]) who sends his header well wide of the left post.",
"visibility": "shown",
"position": "763000"
},
{
"important": false,
"gameTime": "2 - 11:35",
"label": "",
"description": "An opponent rises to his feet after being downed by Luka Modric (Real Madrid). Ivan Bebek saw the sliding tackle and blows for a foul.",
"identified": "An opponent rises to his feet after being downed by [PLAYER_bZWyoJnA] ([TEAM_]). [REFEREE] saw the sliding tackle and blows for a foul.",
"anonymized": "An opponent rises to his feet after being downed by [PLAYER] ([TEAM]). [REFEREE] saw the sliding tackle and blows for a foul.",
"visibility": "shown",
"position": "695000"
},
{
"important": true,
"gameTime": "2 - 09:54",
"label": "soccer-ball",
"description": "Cristiano Ronaldo (Real Madrid) steps up and confidently directs the penalty into the left side of the goal!",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) steps up and confidently directs the penalty into the left side of the goal!",
"anonymized": "[PLAYER] ([TEAM]) steps up and confidently directs the penalty into the left side of the goal!",
"visibility": "shown",
"position": "594000"
},
{
"important": true,
"gameTime": "2 - 09:40",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) is going to take the penalty!",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) is going to take the penalty!",
"anonymized": "[PLAYER] ([TEAM]) is going to take the penalty!",
"visibility": "shown",
"position": "580000"
},
{
"important": true,
"gameTime": "2 - 08:52",
"label": "y-card",
"description": "A yellow card is awarded to Darijo Srna (Shakhtar).",
"identified": "A yellow card is awarded to [PLAYER_jeS7vRI7] ([TEAM_]).",
"anonymized": "A yellow card is awarded to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "532000"
},
{
"important": true,
"gameTime": "2 - 08:51",
"label": "penalty",
"description": "The players claim that Darijo Srna (Shakhtar) handled the ball inside the box and it seems they are right. Real Madrid are awarded a penalty kick!",
"identified": "The players claim that [PLAYER_jeS7vRI7] ([TEAM_]) handled the ball inside the box and it seems they are right. [TEAM_] are awarded a penalty kick!",
"anonymized": "The players claim that [PLAYER] ([TEAM]) handled the ball inside the box and it seems they are right. [TEAM] are awarded a penalty kick!",
"visibility": "shown",
"position": "531000"
},
{
"important": false,
"gameTime": "2 - 08:29",
"label": "",
"description": "Sergio Ramos (Real Madrid) has picked up a minor injury, but it looks like he will be able to continue.",
"identified": "[PLAYER_db8mbBaO] ([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": "509000"
},
{
"important": false,
"gameTime": "2 - 08:04",
"label": "corner",
"description": "Luka Modric (Real Madrid) takes the corner, but the opposition's defence is ready and clears the ball to safety.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) takes the corner, but the opposition's defence is ready and clears the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner, but the opposition's defence is ready and clears the ball to safety.",
"visibility": "shown",
"position": "484000"
},
{
"important": false,
"gameTime": "2 - 07:52",
"label": "",
"description": "Another attempt to send the ball beyond the defence by Luka Modric (Real Madrid) is thwarted and cleared to safety. The referee and one of his assistants signal for a corner kick to Real Madrid.",
"identified": "Another attempt to send the ball beyond the defence by [PLAYER_bZWyoJnA] ([TEAM_]) is thwarted and cleared to safety. The referee and one of his assistants signal for a corner kick to [TEAM_].",
"anonymized": "Another attempt to send the ball beyond the defence by [PLAYER] ([TEAM]) is thwarted and cleared to safety. The referee and one of his assistants signal for a corner kick to [TEAM].",
"visibility": "shown",
"position": "472000"
},
{
"important": false,
"gameTime": "2 - 06:26",
"label": "injury",
"description": "Sergio Ramos (Real Madrid) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"identified": "[PLAYER_db8mbBaO] ([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": "386000"
},
{
"important": true,
"gameTime": "2 - 05:00",
"label": "yr-card",
"description": "Taras Stepanenko (Shakhtar) makes a bad challenge and is given a second yellow card which means he's off.",
"identified": "[PLAYER_pCEPykLa] ([TEAM_]) makes a bad challenge and is given a second yellow card which means he's off.",
"anonymized": "[PLAYER] ([TEAM]) makes a bad challenge and is given a second yellow card which means he's off.",
"visibility": "shown",
"position": "300000"
},
{
"important": false,
"gameTime": "2 - 04:31",
"label": "",
"description": "Toni Kroos (Real Madrid) commits a rough challenge and Ivan Bebek blows his whistle for a foul.",
"identified": "[PLAYER_CloE7jjr] ([TEAM_]) commits a rough challenge and [REFEREE] blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) commits a rough challenge and [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "271000"
},
{
"important": false,
"gameTime": "2 - 03:24",
"label": "",
"description": "Shakhtar Donetsk keep possession of the ball with some short passes, waiting for the moment to hit the opposition swiftly on the break.",
"identified": "[TEAM_4ENWX2OA] keep possession of the ball with some short passes, waiting for the moment to hit the opposition swiftly on the break.",
"anonymized": "[TEAM] keep possession of the ball with some short passes, waiting for the moment to hit the opposition swiftly on the break.",
"visibility": "shown",
"position": "204000"
},
{
"important": false,
"gameTime": "2 - 02:33",
"label": "",
"description": "Luka Modric (Real Madrid) clearly handles the ball, but he is surprised when the referee blows his whistle.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) clearly handles the ball, but he is surprised when the referee blows his whistle.",
"anonymized": "[PLAYER] ([TEAM]) clearly handles the ball, but he is surprised when the referee blows his whistle.",
"visibility": "shown",
"position": "153000"
},
{
"important": false,
"gameTime": "2 - 00:52",
"label": "",
"description": "Karim Benzema (Real Madrid) sends a cross into the box, but the opposition's defence quickly intercepts the ball.",
"identified": "[PLAYER_tpV0VX0S] ([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": "52000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "substitution",
"description": "Rafael Benitez has made a change at the break. Pepe (Real Madrid) has come on in place of Raphael Varane.",
"identified": "[COACH_4fN6car1] has made a change at the break. [PLAYER_2y9qaipI] ([TEAM_]) has come on in place of [PLAYER_t20vQIvC].",
"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 - 46:59",
"label": "",
"description": "There has not been much to choose between the sides after an absorbing 45 minutes. Let's hope they can continue in the same vein in the second period. The home side were more active and dominant in the first half. The opposition found it tough to keep up. The home team makes a lot of passes and attempts to maintain possession. As for the away side, it's obvious that defence has the highest priority for them.",
"identified": "There has not been much to choose between the sides after an absorbing 45 minutes. Let's hope they can continue in the same vein in the second period. The home side were more active and dominant in the first half. The opposition found it tough to keep up. The home team makes a lot of passes and attempts to maintain possession. As for the away side, it's obvious that defence has the highest priority for them.",
"anonymized": "There has not been much to choose between the sides after an absorbing 45 minutes. Let's hope they can continue in the same vein in the second period. The home side were more active and dominant in the first half. The opposition found it tough to keep up. The home team makes a lot of passes and attempts to maintain possession. As for the away side, it's obvious that defence has the highest priority for them.",
"visibility": "shown",
"position": "2819000"
},
{
"important": true,
"gameTime": "1 - 46:09",
"label": "whistle",
"description": "The referee blows his whistle to end the first half and the players are now heading to their respective dressing rooms.",
"identified": "The referee blows his whistle to end the first half and the players are now heading to their respective dressing rooms.",
"anonymized": "The referee blows his whistle to end the first half and the players are now heading to their respective dressing rooms.",
"visibility": "shown",
"position": "2769000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "We will have 1 min. of added time.",
"identified": "We will have 1 min. of added time.",
"anonymized": "We will have 1 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 44:55",
"label": "",
"description": "A cross into the box from Karim Benzema (Real Madrid) is cleared.",
"identified": "A cross into the box from [PLAYER_tpV0VX0S] ([TEAM_]) is cleared.",
"anonymized": "A cross into the box from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "2695000"
},
{
"important": false,
"gameTime": "1 - 44:32",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) once again attempts to send a defence-splitting pass, but the opposition's defence is alert and intercepts the ball.",
"identified": "[PLAYER_WGOY4FSt] ([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": "2672000"
},
{
"important": false,
"gameTime": "1 - 44:04",
"label": "",
"description": "Marcelo (Real Madrid) attempts to find Cristiano Ronaldo, but puts far too much on the pass and the chance is gone.",
"identified": "[PLAYER_zmAm2AEH] ([TEAM_]) attempts to find [PLAYER_WGOY4FSt], but puts far too much on the pass and the chance is gone.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find [PLAYER], but puts far too much on the pass and the chance is gone.",
"visibility": "shown",
"position": "2644000"
},
{
"important": false,
"gameTime": "1 - 42:19",
"label": "",
"description": "Marcio Azevedo (Shakhtar) times his run too early and the linesman raises his flag for offside.",
"identified": "[PLAYER_0fz0l5ik] ([TEAM_]) times his run too early and the linesman raises his flag for offside.",
"anonymized": "[PLAYER] ([TEAM]) times his run too early and the linesman raises his flag for offside.",
"visibility": "shown",
"position": "2539000"
},
{
"important": false,
"gameTime": "1 - 40:32",
"label": "",
"description": "What a chance that is! Luka Modric (Real Madrid) finds himself unmarked in a promising position after receiving a cross on the edge of the box and his attempt sails a whisker wide of the right post.",
"identified": "What a chance that is! [PLAYER_bZWyoJnA] ([TEAM_]) finds himself unmarked in a promising position after receiving a cross on the edge of the box and his attempt sails a whisker wide of the right post.",
"anonymized": "What a chance that is! [PLAYER] ([TEAM]) finds himself unmarked in a promising position after receiving a cross on the edge of the box and his attempt sails a whisker wide of the right post.",
"visibility": "shown",
"position": "2432000"
},
{
"important": false,
"gameTime": "1 - 38:03",
"label": "",
"description": "Alex Teixeira (Shakhtar) releases Oleksandr Gladky, who latched on to his perfect through pass and can continue with his team's attack.",
"identified": "[PLAYER_OS6Qq9f3] ([TEAM_]) releases [PLAYER_U7tWNY9C], who latched on to his perfect through pass and can continue with his team's attack.",
"anonymized": "[PLAYER] ([TEAM]) releases [PLAYER], who latched on to his perfect through pass and can continue with his team's attack.",
"visibility": "shown",
"position": "2283000"
},
{
"important": false,
"gameTime": "1 - 36:25",
"label": "",
"description": "Daniel Carvajal (Real Madrid) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball is off of the pitch and it's a goal kick for Shakhtar Donetsk.",
"identified": "[PLAYER_rZh5FTHE] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball is off of the pitch and it's a goal kick for [TEAM_4ENWX2OA].",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "2185000"
},
{
"important": false,
"gameTime": "1 - 35:22",
"label": "",
"description": "Marcio Azevedo (Shakhtar) races towards goal but the defender gets back well to make a challenge. The ball is off of the pitch and it's a goal kick for Real Madrid.",
"identified": "[PLAYER_0fz0l5ik] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "2122000"
},
{
"important": false,
"gameTime": "1 - 35:07",
"label": "",
"description": "Mateo Kovacic (Real Madrid) looks to break free, but an opposing player clears the ball away.",
"identified": "[PLAYER_4f084TL7] ([TEAM_]) looks to break free, but an opposing player clears the ball away.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away.",
"visibility": "shown",
"position": "2107000"
},
{
"important": false,
"gameTime": "1 - 34:42",
"label": "",
"description": "Karim Benzema (Real Madrid) tries to send a pass but it's blocked.",
"identified": "[PLAYER_tpV0VX0S] ([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": "2082000"
},
{
"important": false,
"gameTime": "1 - 32:53",
"label": "",
"description": "That was a poorly executed free kick from long distance. Cristiano Ronaldo (Real Madrid) was trying to produce a cross into the penalty area, but his effort sailed off the pitch.",
"identified": "That was a poorly executed free kick from long distance. [PLAYER_WGOY4FSt] ([TEAM_]) was trying to produce a cross into the penalty area, but his effort sailed off the pitch.",
"anonymized": "That was a poorly executed free kick from long distance. [PLAYER] ([TEAM]) was trying to produce a cross into the penalty area, but his effort sailed off the pitch.",
"visibility": "shown",
"position": "1973000"
},
{
"important": true,
"gameTime": "1 - 31:47",
"label": "y-card",
"description": "Taras Stepanenko (Shakhtar) has received a yellow card for his foul.",
"identified": "[PLAYER_pCEPykLa] ([TEAM_]) has received a yellow card for his foul.",
"anonymized": "[PLAYER] ([TEAM]) has received a yellow card for his foul.",
"visibility": "shown",
"position": "1907000"
},
{
"important": true,
"gameTime": "1 - 30:57",
"label": "substitution",
"description": "Gareth Bale is being substituted because of an injury. Rafael Benitez sends Mateo Kovacic (Real Madrid) on the pitch.",
"identified": "[PLAYER_4SPjLLiR] is being substituted because of an injury. [COACH_4fN6car1] sends [PLAYER_4f084TL7] ([TEAM_]) on the pitch.",
"anonymized": "[PLAYER] is being substituted because of an injury. [COACH] sends [PLAYER] ([TEAM]) on the pitch.",
"visibility": "shown",
"position": "1857000"
},
{
"important": true,
"gameTime": "1 - 29:46",
"label": "soccer-ball",
"description": "Goal! It's a catastrophic error from the opponent which has gifted a chance to Karim Benzema (Real Madrid), who rolls the ball into the back of the net from close range. 1:0.",
"identified": "Goal! It's a catastrophic error from the opponent which has gifted a chance to [PLAYER_tpV0VX0S] ([TEAM_]), who rolls the ball into the back of the net from close range. 1:0.",
"anonymized": "Goal! It's a catastrophic error from the opponent which has gifted a chance to [PLAYER] ([TEAM]), who rolls the ball into the back of the net from close range. 1:0.",
"visibility": "shown",
"position": "1786000"
},
{
"important": false,
"gameTime": "1 - 28:48",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"anonymized": "[PLAYER] ([TEAM]) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"visibility": "shown",
"position": "1728000"
},
{
"important": false,
"gameTime": "1 - 27:03",
"label": "injury",
"description": "The game is interrupted now, Gareth Bale (Real Madrid) picks up a knock and the physio has to come on.",
"identified": "The game is interrupted now, [PLAYER_4SPjLLiR] ([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": "1623000"
},
{
"important": false,
"gameTime": "1 - 26:17",
"label": "",
"description": "Isco (Real Madrid) delivers a low pass into the box which is intercepted.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) delivers a low pass into the box which is intercepted.",
"anonymized": "[PLAYER] ([TEAM]) delivers a low pass into the box which is intercepted.",
"visibility": "shown",
"position": "1577000"
},
{
"important": false,
"gameTime": "1 - 25:22",
"label": "",
"description": "Darijo Srna (Shakhtar) found some space to dink a cross from the side into the box, but it needed to be more precise to threaten the opposition.",
"identified": "[PLAYER_jeS7vRI7] ([TEAM_]) found some space to dink a cross from the side into the box, but it needed to be more precise to threaten the opposition.",
"anonymized": "[PLAYER] ([TEAM]) found some space to dink a cross from the side into the box, but it needed to be more precise to threaten the opposition.",
"visibility": "shown",
"position": "1522000"
},
{
"important": false,
"gameTime": "1 - 24:08",
"label": "",
"description": "Taras Stepanenko (Shakhtar) gives away a foul for a clumsy challenge. Referee Ivan Bebek saw the whole situation.",
"identified": "[PLAYER_pCEPykLa] ([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": "1448000"
},
{
"important": false,
"gameTime": "1 - 23:37",
"label": "",
"description": "Yaroslav Rakitsky (Shakhtar) attempts a long crossfield pass, but the defence does well to intercept the ball.",
"identified": "[PLAYER_hrAzkzLI] ([TEAM_]) attempts a long crossfield pass, but the defence does well to intercept the ball.",
"anonymized": "[PLAYER] ([TEAM]) attempts a long crossfield pass, but the defence does well to intercept the ball.",
"visibility": "shown",
"position": "1417000"
},
{
"important": false,
"gameTime": "1 - 23:10",
"label": "",
"description": "Flag goes up against Cristiano Ronaldo (Real Madrid) and the referee blows his whistle for offside.",
"identified": "Flag goes up against [PLAYER_WGOY4FSt] ([TEAM_]) and the referee blows his whistle for offside.",
"anonymized": "Flag goes up against [PLAYER] ([TEAM]) and the referee blows his whistle for offside.",
"visibility": "shown",
"position": "1390000"
},
{
"important": false,
"gameTime": "1 - 22:08",
"label": "",
"description": "Fred (Shakhtar) smashes the ball upfield and Marcio Azevedo controls it with a great first touch.",
"identified": "[PLAYER_2kuP6src] ([TEAM_]) smashes the ball upfield and [PLAYER_0fz0l5ik] controls it with a great first touch.",
"anonymized": "[PLAYER] ([TEAM]) smashes the ball upfield and [PLAYER] controls it with a great first touch.",
"visibility": "shown",
"position": "1328000"
},
{
"important": false,
"gameTime": "1 - 20:59",
"label": "",
"description": "Daniel Carvajal (Real Madrid) holds his opponent to prevent him from getting the ball and the referee blows for a foul after seeing the whole situation.",
"identified": "[PLAYER_rZh5FTHE] ([TEAM_]) holds his opponent to prevent him from getting the ball and the referee blows for a foul after seeing the whole situation.",
"anonymized": "[PLAYER] ([TEAM]) holds his opponent to prevent him from getting the ball and the referee blows for a foul after seeing the whole situation.",
"visibility": "shown",
"position": "1259000"
},
{
"important": false,
"gameTime": "1 - 20:50",
"label": "",
"description": "The ball is cleared after Daniel Carvajal (Real Madrid) attempted to dribble past an opposing player.",
"identified": "The ball is cleared after [PLAYER_rZh5FTHE] ([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": "1250000"
},
{
"important": false,
"gameTime": "1 - 20:24",
"label": "",
"description": "Alex Teixeira (Shakhtar) tries to slide the ball through to a teammate but it's well blocked by a defender.",
"identified": "[PLAYER_OS6Qq9f3] ([TEAM_]) tries to slide the ball through to a teammate but it's well blocked by a defender.",
"anonymized": "[PLAYER] ([TEAM]) tries to slide the ball through to a teammate but it's well blocked by a defender.",
"visibility": "shown",
"position": "1224000"
},
{
"important": false,
"gameTime": "1 - 19:16",
"label": "",
"description": "An attempted cross from Marcelo (Real Madrid) is cleared. The ball goes out of play and Shakhtar Donetsk will have a goal kick.",
"identified": "An attempted cross from [PLAYER_zmAm2AEH] ([TEAM_]) is cleared. The ball goes out of play and [TEAM_4ENWX2OA] will have a goal kick.",
"anonymized": "An attempted cross from [PLAYER] ([TEAM]) is cleared. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "1156000"
},
{
"important": false,
"gameTime": "1 - 18:48",
"label": "",
"description": "Another attempt to send the ball beyond the defence by Gareth Bale (Real Madrid) is thwarted and cleared to safety.",
"identified": "Another attempt to send the ball beyond the defence by [PLAYER_4SPjLLiR] ([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": "1128000"
},
{
"important": false,
"gameTime": "1 - 16:56",
"label": "",
"description": "Toni Kroos (Real Madrid) receives a pass and decides to smash the ball from long range. His poor effort sails well wide of the left post.",
"identified": "[PLAYER_CloE7jjr] ([TEAM_]) receives a pass and decides to smash the ball from long range. His poor effort sails well wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) receives a pass and decides to smash the ball from long range. His poor effort sails well wide of the left post.",
"visibility": "shown",
"position": "1016000"
},
{
"important": false,
"gameTime": "1 - 16:30",
"label": "",
"description": "Daniel Carvajal (Real Madrid) slides a pass forward, but one of the defenders cuts it out.",
"identified": "[PLAYER_rZh5FTHE] ([TEAM_]) slides a pass forward, but one of the defenders cuts it out.",
"anonymized": "[PLAYER] ([TEAM]) slides a pass forward, but one of the defenders cuts it out.",
"visibility": "shown",
"position": "990000"
},
{
"important": false,
"gameTime": "1 - 15:28",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) attempts to test the goalkeeper after receiving a cross inside the penalty area. He hits the ball poorly and his shot goes well wide of the right post.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) attempts to test the goalkeeper after receiving a cross inside the penalty area. He hits the ball poorly and his shot goes well wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) attempts to test the goalkeeper after receiving a cross inside the penalty area. He hits the ball poorly and his shot goes well wide of the right post.",
"visibility": "shown",
"position": "928000"
},
{
"important": true,
"gameTime": "1 - 13:37",
"label": "",
"description": "Karim Benzema (Real Madrid) makes a yard for himself inside the box after an accurate pass and takes a shot that goes just over the crossbar.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) makes a yard for himself inside the box after an accurate pass and takes a shot that goes just over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) makes a yard for himself inside the box after an accurate pass and takes a shot that goes just over the crossbar.",
"visibility": "shown",
"position": "817000"
},
{
"important": false,
"gameTime": "1 - 12:36",
"label": "",
"description": "Gareth Bale (Real Madrid) receives a lofted pass and is given time inside the box to unleash a shot goalwards. The ball is directed to the bottom left corner, but it lacks power and Andrij Pyatov pulls off a comfortable save to thwart the effort.",
"identified": "[PLAYER_4SPjLLiR] ([TEAM_]) receives a lofted pass and is given time inside the box to unleash a shot goalwards. The ball is directed to the bottom left corner, but it lacks power and [PLAYER_YiFKQr6n] pulls off a comfortable save to thwart the effort.",
"anonymized": "[PLAYER] ([TEAM]) receives a lofted pass and is given time inside the box to unleash a shot goalwards. The ball is directed to the bottom left corner, but it lacks power and [PLAYER] pulls off a comfortable save to thwart the effort.",
"visibility": "shown",
"position": "756000"
},
{
"important": false,
"gameTime": "1 - 11:42",
"label": "",
"description": "The linesman signals that Alex Teixeira (Shakhtar) is offside and the referee confirms the decision.",
"identified": "The linesman signals that [PLAYER_OS6Qq9f3] ([TEAM_]) is offside and the referee confirms the decision.",
"anonymized": "The linesman signals that [PLAYER] ([TEAM]) is offside and the referee confirms the decision.",
"visibility": "shown",
"position": "702000"
},
{
"important": false,
"gameTime": "1 - 10:12",
"label": "",
"description": "The Shakhtar Donetsk players are exchanging short passes in an attempt to create a shooting opportunity.",
"identified": "The [TEAM_4ENWX2OA] players are exchanging short passes in an attempt to create a shooting opportunity.",
"anonymized": "The [TEAM] players are exchanging short passes in an attempt to create a shooting opportunity.",
"visibility": "shown",
"position": "612000"
}
]
} |