File size: 98,640 Bytes
23b035e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 |
{
"timestamp": "1446666300",
"score": "0 - 2",
"round": "4",
"teams": [
"Zenit Petersburg",
"Lyon",
"Zenit St Petersburg"
],
"lineup": {
"home": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "jJKCedbt",
"name": "Beauvue C.",
"captain": "",
"detail_link": "/player/beauvue-claudio/jJKCedbt/",
"short_name": "Beauvue",
"shirt_number": "9",
"country": "Guadeloupe",
"facts": [
{
"type": "6",
"time": "69'",
"description": "Cornet M.",
"linked_player_hash": "IuMQIrXk"
}
],
"lineup": 11,
"starting": true,
"long_name": "Claudio Beauvue"
},
{
"hash": "E9RHZbPR",
"name": "Bedimo H.",
"captain": "",
"detail_link": "/player/bedimo-henri/E9RHZbPR/",
"short_name": "Bedimo",
"shirt_number": "3",
"country": "Cameroon",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Henri Bedimo"
},
{
"hash": "On7NYLWr",
"name": "Darder S.",
"captain": "",
"detail_link": "/player/darder-sergi/On7NYLWr/",
"short_name": "Darder",
"shirt_number": "14",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "77'",
"description": "Ferri J.",
"linked_player_hash": "j5dSkdZI"
}
],
"lineup": 10,
"starting": true,
"long_name": "Sergi Darder"
},
{
"hash": "46YCiQYc",
"name": "Gonalons M.",
"captain": "(C)",
"detail_link": "/player/gonalons-maxime/46YCiQYc/",
"short_name": "Gonalons",
"shirt_number": "21",
"country": "France",
"facts": [
{
"type": "1",
"time": "32' Gonalons M. (Elbowing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Maxime Gonalons"
},
{
"hash": "f1OfJxIc",
"name": "Jallet C.",
"captain": "",
"detail_link": "/player/jallet-christophe/f1OfJxIc/",
"short_name": "Jallet",
"shirt_number": "13",
"country": "France",
"facts": [
{
"type": "6",
"time": "61'",
"description": "Rafael",
"linked_player_hash": "K2lhc6jE"
}
],
"lineup": 2,
"starting": true,
"long_name": "Christophe Jallet"
},
{
"hash": "YegtWFr9",
"name": "Lacazette A.",
"captain": "",
"detail_link": "/player/lacazette-alexandre/YegtWFr9/",
"short_name": "Lacazette",
"shirt_number": "10",
"country": "France",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Alexandre Lacazette"
},
{
"hash": "dKmI2jJT",
"name": "Lopes A.",
"captain": "",
"detail_link": "/player/lopes-anthony/dKmI2jJT/",
"short_name": "Lopes",
"shirt_number": "1",
"country": "Portugal",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Anthony Lopes"
},
{
"hash": "hQOIoFOs",
"name": "Tolisso C.",
"captain": "",
"detail_link": "/player/tolisso-corentin/hQOIoFOs/",
"short_name": "Tolisso",
"shirt_number": "8",
"country": "France",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Corentin Tolisso"
},
{
"hash": "zsH7aMfI",
"name": "Umtiti S.",
"captain": "",
"detail_link": "/player/umtiti-samuel/zsH7aMfI/",
"short_name": "Umtiti",
"shirt_number": "23",
"country": "France",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Samuel Umtiti"
},
{
"hash": "YZB1o7O4",
"name": "Valbuena M.",
"captain": "",
"detail_link": "/player/valbuena-mathieu/YZB1o7O4/",
"short_name": "Valbuena",
"shirt_number": "19",
"country": "France",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Mathieu Valbuena"
},
{
"hash": "A5AOUk2F",
"name": "Yanga-Mbiwa M.",
"captain": "",
"detail_link": "/player/yanga-mbiwa-mapou/A5AOUk2F/",
"short_name": "Yanga-Mbiwa",
"shirt_number": "2",
"country": "France",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Mapou Yanga-Mbiwa"
},
{
"hash": "IuMQIrXk",
"name": "Cornet M.",
"captain": "",
"detail_link": "/player/cornet-maxwel/IuMQIrXk/",
"short_name": "Cornet",
"shirt_number": "27",
"country": "Ivory Coast",
"facts": [
{
"type": "7",
"time": "69'",
"description": "Beauvue C.",
"linked_player_hash": "jJKCedbt"
}
],
"lineup": null,
"starting": false,
"long_name": "Maxwel Cornet"
},
{
"hash": "j5dSkdZI",
"name": "Ferri J.",
"captain": "",
"detail_link": "/player/ferri-jordan/j5dSkdZI/",
"short_name": "Ferri",
"shirt_number": "12",
"country": "France",
"facts": [
{
"type": "7",
"time": "77'",
"description": "Darder S.",
"linked_player_hash": "On7NYLWr"
}
],
"lineup": null,
"starting": false,
"long_name": "Jordan Ferri"
},
{
"hash": "jevYFpy7",
"name": "Gorgelin M.",
"captain": "",
"detail_link": "/player/gorgelin-mathieu/jevYFpy7/",
"short_name": "Gorgelin",
"shirt_number": "30",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mathieu Gorgelin"
},
{
"hash": "jPLnM1xL",
"name": "Malbranque S.",
"captain": "",
"detail_link": "/player/malbranque-steed/jPLnM1xL/",
"short_name": "Malbranque",
"shirt_number": "17",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Steed Malbranque"
},
{
"hash": "AyBm2cIA",
"name": "Morel J.",
"captain": "",
"detail_link": "/player/morel-jeremy/AyBm2cIA/",
"short_name": "Morel",
"shirt_number": "15",
"country": "Madagascar",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jeremy Morel"
},
{
"hash": "hjsXb0Zj",
"name": "Mvuemba A.",
"captain": "",
"detail_link": "/player/mvuemba-arnold/hjsXb0Zj/",
"short_name": "Mvuemba",
"shirt_number": "28",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Arnold Mvuemba"
},
{
"hash": "K2lhc6jE",
"name": "Rafael",
"captain": "",
"detail_link": "/player/rafael/K2lhc6jE/",
"short_name": "Rafael",
"shirt_number": "20",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "61'",
"description": "Jallet C.",
"linked_player_hash": "f1OfJxIc"
}
],
"lineup": null,
"starting": false,
"long_name": "Rafael"
}
],
"coach": [
{
"hash": "OfI4w9kc",
"name": "Fournier H.",
"captain": "",
"detail_link": "/player/fournier-hubert/OfI4w9kc/",
"short_name": "Fournier H.",
"shirt_number": "",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Hubert Fournier"
}
]
},
"away": {
"tactic": "1-4-4-2",
"players": [
{
"hash": "ShXCQBDs",
"name": "Anyukov A.",
"captain": "",
"detail_link": "/player/anyukov-aleksandr/ShXCQBDs/",
"short_name": "Anyukov",
"shirt_number": "2",
"country": "Russia",
"facts": [
{
"type": "1",
"time": "56' Anyukov A. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Aleksandr Anyukov"
},
{
"hash": "xldYmKAG",
"name": "Criscito D.",
"captain": "",
"detail_link": "/player/criscito-domenico/xldYmKAG/",
"short_name": "Criscito",
"shirt_number": "4",
"country": "Italy",
"facts": [
{
"type": "1",
"time": "46' Criscito D. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "73'",
"description": "Smolnikov I.",
"linked_player_hash": "YL89WHKu"
}
],
"lineup": 5,
"starting": true,
"long_name": "Domenico Criscito"
},
{
"hash": "zgD8UmB3",
"name": "Danny",
"captain": "(C)",
"detail_link": "/player/danny/zgD8UmB3/",
"short_name": "Danny",
"shirt_number": "10",
"country": "Portugal",
"facts": [
{
"type": "1",
"time": "74' Danny (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Danny"
},
{
"hash": "pY7DwFnQ",
"name": "Dzyuba A.",
"captain": "",
"detail_link": "/player/dzyuba-artem/pY7DwFnQ/",
"short_name": "Dzyuba",
"shirt_number": "22",
"country": "Russia",
"facts": [
{
"type": "3",
"time": "25' Dzyuba A. (Hulk)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "3",
"time": "57' Dzyuba A. (Hulk)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "83'",
"description": "Ryazantsev A.",
"linked_player_hash": "6ajvAFEI"
}
],
"lineup": 10,
"starting": true,
"long_name": "Artem Dzyuba"
},
{
"hash": "67A2Ub5M",
"name": "Garcia J.",
"captain": "",
"detail_link": "/player/garcia-javi/67A2Ub5M/",
"short_name": "Garcia",
"shirt_number": "21",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "54' Garcia J. (Elbowing)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "80'",
"description": "Yusupov A.",
"linked_player_hash": "EkcVDIPH"
}
],
"lineup": 7,
"starting": true,
"long_name": "Javi Garcia"
},
{
"hash": "lKBIrwVE",
"name": "Hulk",
"captain": "",
"detail_link": "/player/hulk/lKBIrwVE/",
"short_name": "Hulk",
"shirt_number": "7",
"country": "Brazil",
"facts": [
{
"type": "8",
"time": "25' Dzyuba A. (Hulk)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "8",
"time": "57' Dzyuba A. (Hulk)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Hulk"
},
{
"hash": "AHq6HWti",
"name": "Lodygin Y.",
"captain": "",
"detail_link": "/player/lodygin-yuri/AHq6HWti/",
"short_name": "Lodygin",
"shirt_number": "1",
"country": "Russia",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Yuri Lodygin"
},
{
"hash": "W4MDHf6E",
"name": "Lombaerts N.",
"captain": "",
"detail_link": "/player/lombaerts-nicolas/W4MDHf6E/",
"short_name": "Lombaerts",
"shirt_number": "6",
"country": "Belgium",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Nicolas Lombaerts"
},
{
"hash": "COZrpB1f",
"name": "Neto",
"captain": "",
"detail_link": "/player/neto/COZrpB1f/",
"short_name": "Neto",
"shirt_number": "13",
"country": "Portugal",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Neto"
},
{
"hash": "MiqABGL0",
"name": "Shatov O.",
"captain": "",
"detail_link": "/player/shatov-oleg/MiqABGL0/",
"short_name": "Shatov",
"shirt_number": "17",
"country": "Russia",
"facts": [
{
"type": "1",
"time": "90' Shatov O. (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Oleg Shatov"
},
{
"hash": "2JsUqijl",
"name": "Witsel A.",
"captain": "",
"detail_link": "/player/witsel-axel/2JsUqijl/",
"short_name": "Witsel",
"shirt_number": "28",
"country": "Belgium",
"facts": [
{
"type": "1",
"time": "20' Witsel A. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Axel Witsel"
},
{
"hash": "h8961VvH",
"name": "Dolgov P.",
"captain": "",
"detail_link": "/player/dolgov-pavel/h8961VvH/",
"short_name": "Dolgov",
"shirt_number": "92",
"country": "Russia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Pavel Dolgov"
},
{
"hash": "vJYr1hLc",
"name": "Evseev A.",
"captain": "",
"detail_link": "/player/evseev-aleksey/vJYr1hLc/",
"short_name": "Evseev",
"shirt_number": "94",
"country": "Russia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Aleksey Evseev"
},
{
"hash": "vJiMxFyr",
"name": "Kerzhakov M.",
"captain": "",
"detail_link": "/player/kerzhakov-mikhail/vJiMxFyr/",
"short_name": "Kerzhakov",
"shirt_number": "41",
"country": "Russia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mikhail Kerzhakov"
},
{
"hash": "6ajvAFEI",
"name": "Ryazantsev A.",
"captain": "",
"detail_link": "/player/ryazantsev-aleksander/6ajvAFEI/",
"short_name": "Ryazantsev",
"shirt_number": "5",
"country": "Russia",
"facts": [
{
"type": "7",
"time": "83'",
"description": "Dzyuba A.",
"linked_player_hash": "pY7DwFnQ"
}
],
"lineup": null,
"starting": false,
"long_name": "Aleksander Ryazantsev"
},
{
"hash": "YL89WHKu",
"name": "Smolnikov I.",
"captain": "",
"detail_link": "/player/smolnikov-igor/YL89WHKu/",
"short_name": "Smolnikov",
"shirt_number": "19",
"country": "Russia",
"facts": [
{
"type": "7",
"time": "73'",
"description": "Criscito D.",
"linked_player_hash": "xldYmKAG"
}
],
"lineup": null,
"starting": false,
"long_name": "Igor Smolnikov"
},
{
"hash": "EkcVDIPH",
"name": "Yusupov A.",
"captain": "",
"detail_link": "/player/yusupov-artur/EkcVDIPH/",
"short_name": "Yusupov",
"shirt_number": "14",
"country": "Russia",
"facts": [
{
"type": "7",
"time": "80'",
"description": "Garcia J.",
"linked_player_hash": "67A2Ub5M"
}
],
"lineup": null,
"starting": false,
"long_name": "Artur Yusupov"
},
{
"hash": "f5XmwkTj",
"name": "Zuev I.",
"captain": "",
"detail_link": "/player/zuev-ilya/f5XmwkTj/",
"short_name": "Zuev",
"shirt_number": "58",
"country": "Russia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ilya Zuev"
}
],
"coach": [
{
"hash": "z9l2skMm",
"name": "Villas-Boas A.",
"captain": "",
"detail_link": "/player/villas-boas-andre/z9l2skMm/",
"short_name": "Villas-Boas A.",
"shirt_number": "",
"country": "Portugal",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Andre Villas-Boas"
}
]
}
},
"referee": [
"Brych F."
],
"venue": [
"Stade de Gerland (Lyon)"
],
"attendance": [
"30 173"
],
"referee_matched": [
"Felix Brych"
],
"referee_found": [
"Felix Brych"
],
"coach_matched": [
"Andre Villas-Boas",
"Hubert Fournier"
],
"gameHomeTeam": "Lyon",
"home": {
"name": "Lyon",
"detail_link": "/team/lyon/2akflumR",
"hash": "2akflumR",
"names": [
"Lyon",
"Lyon (Fra)",
"lyon"
]
},
"gameAwayTeam": "Zenit Petersburg",
"away": {
"name": "Zenit Petersburg",
"detail_link": "/team/zenit-st-petersburg/vsXou9m7",
"hash": "vsXou9m7",
"names": [
"Zenit Petersburg",
"Zenit",
"Zenit (Rus)",
"Zenit St Petersburg",
"zenit st petersburg"
]
},
"gameDate": "04/11/2015 - 20:45",
"annotations": [
{
"important": false,
"gameTime": "2 - 48:59",
"label": "",
"description": "According to the statistics, the match was pretty entertaining. There were plenty of thrilling moments. A very even game was seen on the pitch today. The home side's tactic was what is known as kick and rush football, while the away team adopted a counter-attacking style.",
"identified": "According to the statistics, the match was pretty entertaining. There were plenty of thrilling moments. A very even game was seen on the pitch today. The home side's tactic was what is known as kick and rush football, while the away team adopted a counter-attacking style.",
"anonymized": "According to the statistics, the match was pretty entertaining. There were plenty of thrilling moments. A very even game was seen on the pitch today. The home side's tactic was what is known as kick and rush football, while the away team adopted a counter-attacking style.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "2 - 48:25",
"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": "2905000"
},
{
"important": false,
"gameTime": "2 - 48:09",
"label": "corner",
"description": "Mathieu Valbuena (Lyon) launches a cross from the corner, but Yuri Lodygin is alert to thwart the effort.",
"identified": "[PLAYER_YZB1o7O4] ([TEAM_]) launches a cross from the corner, but [PLAYER_AHq6HWti] is alert to thwart the effort.",
"anonymized": "[PLAYER] ([TEAM]) launches a cross from the corner, but [PLAYER] is alert to thwart the effort.",
"visibility": "shown",
"position": "2889000"
},
{
"important": false,
"gameTime": "2 - 47:50",
"label": "",
"description": "Corentin Tolisso (Lyon) decides to strike the ball towards goal, but his effort fails to threaten the goalkeeper after being blocked by one of the defenders. The ball goes behind for a corner. Lyon will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_hQOIoFOs] ([TEAM_]) decides to strike the ball towards goal, but his effort fails to threaten the goalkeeper after being blocked by one of the defenders. The ball goes behind for a corner. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) decides to strike the ball towards goal, but his effort fails to threaten the goalkeeper after being blocked by one of the defenders. The ball goes behind for a corner. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "2870000"
},
{
"important": false,
"gameTime": "2 - 47:15",
"label": "",
"description": "Corentin Tolisso (Lyon) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger.",
"identified": "[PLAYER_hQOIoFOs] ([TEAM_]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger.",
"anonymized": "[PLAYER] ([TEAM]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger.",
"visibility": "shown",
"position": "2835000"
},
{
"important": true,
"gameTime": "2 - 45:46",
"label": "",
"description": "Gooal! No wait, it's been ruled out for offside. Mapou Yanga-Mbiwa (Lyon) disagrees, but the linesman is sure about his call.",
"identified": "Gooal! No wait, it's been ruled out for offside. [PLAYER_A5AOUk2F] ([TEAM_]) disagrees, but the linesman is sure about his call.",
"anonymized": "Gooal! No wait, it's been ruled out for offside. [PLAYER] ([TEAM]) disagrees, but the linesman is sure about his call.",
"visibility": "shown",
"position": "2746000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "3 min. of stoppage-time to be played.",
"identified": "3 min. of stoppage-time to be played.",
"anonymized": "3 min. of stoppage-time to be played.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "2 - 44:55",
"label": "y-card",
"description": "The referee gives a yellow card to Oleg Shatov (Zenit Petersburg).",
"identified": "The referee gives a yellow card to [PLAYER_MiqABGL0] ([TEAM_]).",
"anonymized": "The referee gives a yellow card to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2695000"
},
{
"important": false,
"gameTime": "2 - 43:39",
"label": "",
"description": "Mathieu Valbuena (Lyon) got the ball on the edge of the box and fired in a first-time shot on goal, but his effort floated well over the bar. High, wide and not at all handsome.",
"identified": "[PLAYER_YZB1o7O4] ([TEAM_]) got the ball on the edge of the box and fired in a first-time shot on goal, but his effort floated well over the bar. High, wide and not at all handsome.",
"anonymized": "[PLAYER] ([TEAM]) got the ball on the edge of the box and fired in a first-time shot on goal, but his effort floated well over the bar. High, wide and not at all handsome.",
"visibility": "shown",
"position": "2619000"
},
{
"important": true,
"gameTime": "2 - 42:45",
"label": "yr-card",
"description": "Aleksandr Anyukov (Zenit St Petersburg) must have known he would be sent off for this foul, but he had to stop the opponent at all costs. Felix Brych shows him a second yellow card and the game has ended for him.",
"identified": "[PLAYER_ShXCQBDs] ([TEAM_]) must have known he would be sent off for this foul, but he had to stop the opponent at all costs. [REFEREE] shows him a second yellow card and the game has ended for him.",
"anonymized": "[PLAYER] ([TEAM]) must have known he would be sent off for this foul, but he had to stop the opponent at all costs. [REFEREE] shows him a second yellow card and the game has ended for him.",
"visibility": "shown",
"position": "2565000"
},
{
"important": false,
"gameTime": "2 - 42:40",
"label": "",
"description": "Mapou Yanga-Mbiwa (Lyon) attempts to find one of his teammates, but puts far too much on the pass and the chance is gone. The ball goes out of play and Zenit will have a goal kick.",
"identified": "[PLAYER_A5AOUk2F] ([TEAM_]) attempts to find one of his teammates, but puts far too much on the pass and the chance is gone. The ball goes out of play and [TEAM_vsXou9m7] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find one of his teammates, but puts far too much on the pass and the chance is gone. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "2560000"
},
{
"important": false,
"gameTime": "2 - 41:32",
"label": "",
"description": "Oleg Shatov (Zenit St Petersburg) dribbles into the box, but Anthony Lopes is quick enough to come off his line and stop him.",
"identified": "[PLAYER_MiqABGL0] ([TEAM_]) dribbles into the box, but [PLAYER_dKmI2jJT] is quick enough to come off his line and stop him.",
"anonymized": "[PLAYER] ([TEAM]) dribbles into the box, but [PLAYER] is quick enough to come off his line and stop him.",
"visibility": "shown",
"position": "2492000"
},
{
"important": false,
"gameTime": "2 - 39:28",
"label": "",
"description": "Alexandre Lacazette (Lyon) unleashes a powerful shot towards goal, but it is bravely blocked by a self-sacrificing defender.",
"identified": "[PLAYER_YegtWFr9] ([TEAM_]) unleashes a powerful shot towards goal, but it is bravely blocked by a self-sacrificing defender.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a powerful shot towards goal, but it is bravely blocked by a self-sacrificing defender.",
"visibility": "shown",
"position": "2368000"
},
{
"important": false,
"gameTime": "2 - 38:55",
"label": "",
"description": "The linesman raises his flag as one of the players from Zenit was in an offside position.",
"identified": "The linesman raises his flag as one of the players from [TEAM_vsXou9m7] was in an offside position.",
"anonymized": "The linesman raises his flag as one of the players from [TEAM] was in an offside position.",
"visibility": "shown",
"position": "2335000"
},
{
"important": false,
"gameTime": "2 - 38:18",
"label": "",
"description": "Aleksandr Anyukov (Zenit St Petersburg) looks to break free, but his touch lets him down and he loses the ball. The ball is out of play. Lyon will have a throw-in.",
"identified": "[PLAYER_ShXCQBDs] ([TEAM_]) looks to break free, but his touch lets him down and he loses the ball. The ball is out of play. [TEAM_] will have a throw-in.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but his touch lets him down and he loses the ball. The ball is out of play. [TEAM] will have a throw-in.",
"visibility": "shown",
"position": "2298000"
},
{
"important": true,
"gameTime": "2 - 37:53",
"label": "substitution",
"description": "Here is a change. Artem Dzyuba is going off and Andre Villas-Boas gives the last tactical orders to Aleksander Ryazantsev (Zenit St Petersburg).",
"identified": "Here is a change. [PLAYER_pY7DwFnQ] is going off and [COACH_z9l2skMm] gives the last tactical orders to [PLAYER_6ajvAFEI] ([TEAM_]).",
"anonymized": "Here is a change. [PLAYER] is going off and [COACH] gives the last tactical orders to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2273000"
},
{
"important": false,
"gameTime": "2 - 36:20",
"label": "",
"description": "Mathieu Valbuena (Lyon) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"identified": "[PLAYER_YZB1o7O4] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"visibility": "shown",
"position": "2180000"
},
{
"important": true,
"gameTime": "2 - 34:40",
"label": "substitution",
"description": "The substitution has been made. Artur Yusupov (Zenit Petersburg) has replaced Javi Garcia.",
"identified": "The substitution has been made. [PLAYER_EkcVDIPH] ([TEAM_]) has replaced [PLAYER_67A2Ub5M].",
"anonymized": "The substitution has been made. [PLAYER] ([TEAM]) has replaced [PLAYER].",
"visibility": "shown",
"position": "2080000"
},
{
"important": false,
"gameTime": "2 - 33:52",
"label": "",
"description": "Lyon are ruled offside.",
"identified": "[TEAM_] are ruled offside.",
"anonymized": "[TEAM] are ruled offside.",
"visibility": "shown",
"position": "2032000"
},
{
"important": true,
"gameTime": "2 - 33:05",
"label": "",
"description": "Hulk (Zenit St Petersburg) unleashes a shot goalwards from a mid-range free kick. The ball heads towards the right post, but the goalkeeper makes a decent save to thwart him.",
"identified": "[PLAYER_lKBIrwVE] ([TEAM_]) unleashes a shot goalwards from a mid-range free kick. The ball heads towards the right post, but the goalkeeper makes a decent save to thwart him.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a shot goalwards from a mid-range free kick. The ball heads towards the right post, but the goalkeeper makes a decent save to thwart him.",
"visibility": "shown",
"position": "1985000"
},
{
"important": false,
"gameTime": "2 - 32:18",
"label": "",
"description": "Jordan Ferri (Lyon) gives away a foul for a clumsy challenge. Referee Felix Brych saw the whole situation. Zenit are awarded a free kick from a dangerous position.",
"identified": "[PLAYER_j5dSkdZI] ([TEAM_]) gives away a foul for a clumsy challenge. Referee [REFEREE] saw the whole situation. [TEAM_vsXou9m7] are awarded a free kick from a dangerous position.",
"anonymized": "[PLAYER] ([TEAM]) gives away a foul for a clumsy challenge. Referee [REFEREE] saw the whole situation. [TEAM] are awarded a free kick from a dangerous position.",
"visibility": "shown",
"position": "1938000"
},
{
"important": true,
"gameTime": "2 - 31:47",
"label": "substitution",
"description": "Hubert Fournier has decided to substitute Sergi Darder and he is replaced by Jordan Ferri (Lyon).",
"identified": "[COACH_OfI4w9kc] has decided to substitute [PLAYER_On7NYLWr] and he is replaced by [PLAYER_j5dSkdZI] ([TEAM_]).",
"anonymized": "[COACH] has decided to substitute [PLAYER] and he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1907000"
},
{
"important": false,
"gameTime": "2 - 31:24",
"label": "",
"description": "Alexandre Lacazette (Lyon) shows off his amazing technique to get to the edge of the box by himself. He pulls the trigger but sends the ball into the stands. Nice run, but poor finish!",
"identified": "[PLAYER_YegtWFr9] ([TEAM_]) shows off his amazing technique to get to the edge of the box by himself. He pulls the trigger but sends the ball into the stands. Nice run, but poor finish!",
"anonymized": "[PLAYER] ([TEAM]) shows off his amazing technique to get to the edge of the box by himself. He pulls the trigger but sends the ball into the stands. Nice run, but poor finish!",
"visibility": "shown",
"position": "1884000"
},
{
"important": false,
"gameTime": "2 - 30:19",
"label": "",
"description": "Zenit hold the ball and display nice passing from player to player.",
"identified": "[TEAM_vsXou9m7] hold the ball and display nice passing from player to player.",
"anonymized": "[TEAM] hold the ball and display nice passing from player to player.",
"visibility": "shown",
"position": "1819000"
},
{
"important": true,
"gameTime": "2 - 28:33",
"label": "y-card",
"description": "Danny (Zenit Petersburg) is yellow-carded.",
"identified": "[PLAYER_zgD8UmB3] ([TEAM_]) is yellow-carded.",
"anonymized": "[PLAYER] ([TEAM]) is yellow-carded.",
"visibility": "shown",
"position": "1713000"
},
{
"important": true,
"gameTime": "2 - 27:21",
"label": "substitution",
"description": "The referee allows time for a substitution. Domenico Criscito will be replaced by Igor Smolnikov (Zenit St Petersburg).",
"identified": "The referee allows time for a substitution. [PLAYER_xldYmKAG] will be replaced by [PLAYER_YL89WHKu] ([TEAM_]).",
"anonymized": "The referee allows time for a substitution. [PLAYER] will be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1641000"
},
{
"important": true,
"gameTime": "2 - 26:59",
"label": "yr-card",
"description": "Felix Brych blows his whistle and Maxime Gonalons (Lyon) is shown a second yellow card for his foul. His manager will not be pleased. He has lot of time to think about it as he walks off.",
"identified": "[REFEREE] blows his whistle and [PLAYER_46YCiQYc] ([TEAM_]) is shown a second yellow card for his foul. His manager will not be pleased. He has lot of time to think about it as he walks off.",
"anonymized": "[REFEREE] blows his whistle and [PLAYER] ([TEAM]) is shown a second yellow card for his foul. His manager will not be pleased. He has lot of time to think about it as he walks off.",
"visibility": "shown",
"position": "1619000"
},
{
"important": false,
"gameTime": "2 - 26:25",
"label": "",
"description": "Sergi Darder (Lyon) smashes the ball with a volley from the edge of the box, but his poor attempt goes miles wide of the left post.",
"identified": "[PLAYER_On7NYLWr] ([TEAM_]) smashes the ball with a volley from the edge of the box, but his poor attempt goes miles wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) smashes the ball with a volley from the edge of the box, but his poor attempt goes miles wide of the left post.",
"visibility": "shown",
"position": "1585000"
},
{
"important": false,
"gameTime": "2 - 25:45",
"label": "corner",
"description": "Mathieu Valbuena (Lyon) takes the corner which is cleared by the opposition's defence.",
"identified": "[PLAYER_YZB1o7O4] ([TEAM_]) takes the corner which is cleared by the opposition's defence.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner which is cleared by the opposition's defence.",
"visibility": "shown",
"position": "1545000"
},
{
"important": false,
"gameTime": "2 - 25:41",
"label": "",
"description": "The defence is alert as they clear a dangerous cross from Rafael (Lyon). The ball is out of play. Lyon will have a chance to score from a corner.",
"identified": "The defence is alert as they clear a dangerous cross from [PLAYER_K2lhc6jE] ([TEAM_]). The ball is out of play. [TEAM_] will have a chance to score from a corner.",
"anonymized": "The defence is alert as they clear a dangerous cross from [PLAYER] ([TEAM]). The ball is out of play. [TEAM] will have a chance to score from a corner.",
"visibility": "shown",
"position": "1541000"
},
{
"important": true,
"gameTime": "2 - 23:59",
"label": "substitution",
"description": "It's time for a substitution. That's the last involvement from Claudio Beauvue as he is replaced by Maxwel Cornet (Lyon).",
"identified": "It's time for a substitution. That's the last involvement from [PLAYER_jJKCedbt] as he is replaced by [PLAYER_IuMQIrXk] ([TEAM_]).",
"anonymized": "It's time for a substitution. That's the last involvement from [PLAYER] as he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1439000"
},
{
"important": false,
"gameTime": "2 - 23:35",
"label": "",
"description": "Maxime Gonalons (Lyon) times his run too early and the linesman raises his flag for offside.",
"identified": "[PLAYER_46YCiQYc] ([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": "1415000"
},
{
"important": false,
"gameTime": "2 - 23:03",
"label": "",
"description": "Maxime Gonalons (Lyon) decides to strike the ball towards goal, but his effort fails to threaten the goalkeeper after being well blocked by one of the defenders.",
"identified": "[PLAYER_46YCiQYc] ([TEAM_]) decides to strike the ball towards goal, but his effort fails to threaten the goalkeeper after being well blocked by one of the defenders.",
"anonymized": "[PLAYER] ([TEAM]) decides to strike the ball towards goal, but his effort fails to threaten the goalkeeper after being well blocked by one of the defenders.",
"visibility": "shown",
"position": "1383000"
},
{
"important": false,
"gameTime": "2 - 22:38",
"label": "",
"description": "Oleg Shatov (Zenit St Petersburg) crosses the ball into the box, but one of the defending players averts the threat.",
"identified": "[PLAYER_MiqABGL0] ([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": "1358000"
},
{
"important": false,
"gameTime": "2 - 20:17",
"label": "corner",
"description": "Mathieu Valbuena (Lyon) overhits the corner kick and none of his teammates can their head on it. The ball goes out of play and Zenit will have a goal kick.",
"identified": "[PLAYER_YZB1o7O4] ([TEAM_]) overhits the corner kick and none of his teammates can their head on it. The ball goes out of play and [TEAM_vsXou9m7] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) overhits the corner kick and none of his teammates can their head on it. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "1217000"
},
{
"important": false,
"gameTime": "2 - 20:01",
"label": "",
"description": "The defence had a hard time blocking out the strike from Alexandre Lacazette (Lyon). He didn't hesitate and finished from outside the box right after he had received a pass from his teammate. Lyon earn a corner.",
"identified": "The defence had a hard time blocking out the strike from [PLAYER_YegtWFr9] ([TEAM_]). He didn't hesitate and finished from outside the box right after he had received a pass from his teammate. [TEAM_] earn a corner.",
"anonymized": "The defence had a hard time blocking out the strike from [PLAYER] ([TEAM]). He didn't hesitate and finished from outside the box right after he had received a pass from his teammate. [TEAM] earn a corner.",
"visibility": "shown",
"position": "1201000"
},
{
"important": false,
"gameTime": "2 - 19:32",
"label": "",
"description": "Flag up against Artem Dzyuba (Zenit Petersburg). He had space to move into behind the defence, but he went too soon.",
"identified": "Flag up against [PLAYER_pY7DwFnQ] ([TEAM_]). He had space to move into behind the defence, but he went too soon.",
"anonymized": "Flag up against [PLAYER] ([TEAM]). He had space to move into behind the defence, but he went too soon.",
"visibility": "shown",
"position": "1172000"
},
{
"important": false,
"gameTime": "2 - 18:44",
"label": "",
"description": "The foul by Alexandre Lacazette (Lyon) was seen by Felix Brych who didn't hesitate to blow the whistle.",
"identified": "The foul by [PLAYER_YegtWFr9] ([TEAM_]) was seen by [REFEREE] who didn't hesitate to blow the whistle.",
"anonymized": "The foul by [PLAYER] ([TEAM]) was seen by [REFEREE] who didn't hesitate to blow the whistle.",
"visibility": "shown",
"position": "1124000"
},
{
"important": false,
"gameTime": "2 - 17:10",
"label": "",
"description": "A long pass, executed by Aleksandr Anyukov (Zenit St Petersburg), missed the precision to reach his teammates.",
"identified": "A long pass, executed by [PLAYER_ShXCQBDs] ([TEAM_]), missed the precision to reach his teammates.",
"anonymized": "A long pass, executed by [PLAYER] ([TEAM]), missed the precision to reach his teammates.",
"visibility": "shown",
"position": "1030000"
},
{
"important": false,
"gameTime": "2 - 16:15",
"label": "",
"description": "Mathieu Valbuena (Lyon) handles the ball and everyone in the stadium shouts 'handball'.",
"identified": "[PLAYER_YZB1o7O4] ([TEAM_]) handles the ball and everyone in the stadium shouts 'handball'.",
"anonymized": "[PLAYER] ([TEAM]) handles the ball and everyone in the stadium shouts 'handball'.",
"visibility": "shown",
"position": "975000"
},
{
"important": false,
"gameTime": "2 - 15:42",
"label": "",
"description": "Alexandre Lacazette (Lyon) plays a through ball but overhits it.",
"identified": "[PLAYER_YegtWFr9] ([TEAM_]) plays a through ball but overhits it.",
"anonymized": "[PLAYER] ([TEAM]) plays a through ball but overhits it.",
"visibility": "shown",
"position": "942000"
},
{
"important": true,
"gameTime": "2 - 15:17",
"label": "substitution",
"description": "Hubert Fournier has decided to introduce fresh legs, with Rafael (Lyon) replacing Christophe Jallet.",
"identified": "[COACH_OfI4w9kc] has decided to introduce fresh legs, with [PLAYER_K2lhc6jE] ([TEAM_]) replacing [PLAYER_f1OfJxIc].",
"anonymized": "[COACH] has decided to introduce fresh legs, with [PLAYER] ([TEAM]) replacing [PLAYER].",
"visibility": "shown",
"position": "917000"
},
{
"important": false,
"gameTime": "2 - 14:54",
"label": "",
"description": "It's a weak, uncertain finish and easy for the goalkeeper. Maxime Gonalons (Lyon) sends in a volley from just outside the box that goes a few yards wide of the left post.",
"identified": "It's a weak, uncertain finish and easy for the goalkeeper. [PLAYER_46YCiQYc] ([TEAM_]) sends in a volley from just outside the box that goes a few yards wide of the left post.",
"anonymized": "It's a weak, uncertain finish and easy for the goalkeeper. [PLAYER] ([TEAM]) sends in a volley from just outside the box that goes a few yards wide of the left post.",
"visibility": "shown",
"position": "894000"
},
{
"important": false,
"gameTime": "2 - 14:26",
"label": "",
"description": "Some patient build-up play from Lyon as they look to unlock the defence.",
"identified": "Some patient build-up play from [TEAM_] as they look to unlock the defence.",
"anonymized": "Some patient build-up play from [TEAM] as they look to unlock the defence.",
"visibility": "shown",
"position": "866000"
},
{
"important": true,
"gameTime": "2 - 11:59",
"label": "soccer-ball",
"description": "Goal! Hulk displays great vision and sends a pass to Artem Dzyuba (Zenit St Petersburg), who shows brilliant composure inside the box to bury the ball from close range in the back of the net. The score is 0:2.",
"identified": "Goal! [PLAYER_lKBIrwVE] displays great vision and sends a pass to [PLAYER_pY7DwFnQ] ([TEAM_]), who shows brilliant composure inside the box to bury the ball from close range in the back of the net. The score is 0:2.",
"anonymized": "Goal! [PLAYER] displays great vision and sends a pass to [PLAYER] ([TEAM]), who shows brilliant composure inside the box to bury the ball from close range in the back of the net. The score is 0:2.",
"visibility": "shown",
"position": "719000"
},
{
"important": false,
"gameTime": "2 - 10:15",
"label": "",
"description": "Mathieu Valbuena (Lyon) delivers a poor cross from a free kick as one of the defenders comfortably clears it away.",
"identified": "[PLAYER_YZB1o7O4] ([TEAM_]) delivers a poor cross from a free kick as one of the defenders comfortably clears it away.",
"anonymized": "[PLAYER] ([TEAM]) delivers a poor cross from a free kick as one of the defenders comfortably clears it away.",
"visibility": "shown",
"position": "615000"
},
{
"important": true,
"gameTime": "2 - 10:06",
"label": "y-card",
"description": "Aleksandr Anyukov (Zenit St Petersburg) is booked after bringing down an opponent. Felix Brych had an easy-decision to make.",
"identified": "[PLAYER_ShXCQBDs] ([TEAM_]) is booked after bringing down an opponent. [REFEREE] had an easy-decision to make.",
"anonymized": "[PLAYER] ([TEAM]) is booked after bringing down an opponent. [REFEREE] had an easy-decision to make.",
"visibility": "shown",
"position": "606000"
},
{
"important": false,
"gameTime": "2 - 09:20",
"label": "",
"description": "Mathieu Valbuena (Lyon) strikes the ball goalwards from a mid-range free kick, but his effort only goes towards the middle of the goal and presents no problem for the goalkeeper.",
"identified": "[PLAYER_YZB1o7O4] ([TEAM_]) strikes the ball goalwards from a mid-range free kick, but his effort only goes towards the middle of the goal and presents no problem for the goalkeeper.",
"anonymized": "[PLAYER] ([TEAM]) strikes the ball goalwards from a mid-range free kick, but his effort only goes towards the middle of the goal and presents no problem for the goalkeeper.",
"visibility": "shown",
"position": "560000"
},
{
"important": false,
"gameTime": "2 - 08:52",
"label": "",
"description": "Lyon are awarded a free kick from a dangerous position.",
"identified": "[TEAM_] are awarded a free kick from a dangerous position.",
"anonymized": "[TEAM] are awarded a free kick from a dangerous position.",
"visibility": "shown",
"position": "532000"
},
{
"important": true,
"gameTime": "2 - 08:42",
"label": "y-card",
"description": "This yellow card was deserved. The tackle by Javi Garcia (Zenit St Petersburg) was quite harsh and Felix Brych didn't hesitate to show him a yellow card.",
"identified": "This yellow card was deserved. The tackle by [PLAYER_67A2Ub5M] ([TEAM_]) was quite harsh and [REFEREE] didn't hesitate to show him a yellow card.",
"anonymized": "This yellow card was deserved. The tackle by [PLAYER] ([TEAM]) was quite harsh and [REFEREE] didn't hesitate to show him a yellow card.",
"visibility": "shown",
"position": "522000"
},
{
"important": true,
"gameTime": "2 - 07:18",
"label": "",
"description": "Mathieu Valbuena (Lyon) races towards goal but the defender gets back well to make a challenge.",
"identified": "[PLAYER_YZB1o7O4] ([TEAM_]) races towards goal but the defender gets back well to make a challenge.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge.",
"visibility": "shown",
"position": "438000"
},
{
"important": false,
"gameTime": "2 - 06:36",
"label": "",
"description": "Hulk (Zenit St Petersburg) unleashed a promising strike from a long-distance free kick, but his attempt flies way wide of the right post and it's going to be a goal kick.",
"identified": "[PLAYER_lKBIrwVE] ([TEAM_]) unleashed a promising strike from a long-distance free kick, but his attempt flies way wide of the right post and it's going to be a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) unleashed a promising strike from a long-distance free kick, but his attempt flies way wide of the right post and it's going to be a goal kick.",
"visibility": "shown",
"position": "396000"
},
{
"important": false,
"gameTime": "2 - 06:11",
"label": "",
"description": "An opponent rises to his feet after being downed by Mapou Yanga-Mbiwa (Lyon). Felix Brych saw the sliding tackle and blows for a foul. Another situation results in a direct free kick for Zenit.",
"identified": "An opponent rises to his feet after being downed by [PLAYER_A5AOUk2F] ([TEAM_]). [REFEREE] saw the sliding tackle and blows for a foul. Another situation results in a direct free kick for [TEAM_vsXou9m7].",
"anonymized": "An opponent rises to his feet after being downed by [PLAYER] ([TEAM]). [REFEREE] saw the sliding tackle and blows for a foul. Another situation results in a direct free kick for [TEAM].",
"visibility": "shown",
"position": "371000"
},
{
"important": false,
"gameTime": "2 - 04:35",
"label": "",
"description": "Danny (Zenit St Petersburg) sends a cross into the box, but the opposition's defence clears the ball to safety.",
"identified": "[PLAYER_zgD8UmB3] ([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": "275000"
},
{
"important": false,
"gameTime": "2 - 03:21",
"label": "",
"description": "The linesman raises his flag for offside before Artem Dzyuba (Zenit St Petersburg) heads on.",
"identified": "The linesman raises his flag for offside before [PLAYER_pY7DwFnQ] ([TEAM_]) heads on.",
"anonymized": "The linesman raises his flag for offside before [PLAYER] ([TEAM]) heads on.",
"visibility": "shown",
"position": "201000"
},
{
"important": false,
"gameTime": "2 - 01:40",
"label": "",
"description": "Henri Bedimo (Lyon) swings a cross into the box, but it's far too close to Yuri Lodygin, who smothers the ball.",
"identified": "[PLAYER_E9RHZbPR] ([TEAM_]) swings a cross into the box, but it's far too close to [PLAYER_AHq6HWti], who smothers the ball.",
"anonymized": "[PLAYER] ([TEAM]) swings a cross into the box, but it's far too close to [PLAYER], who smothers the ball.",
"visibility": "shown",
"position": "100000"
},
{
"important": false,
"gameTime": "2 - 01:24",
"label": "",
"description": "Lyon 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": "84000"
},
{
"important": true,
"gameTime": "2 - 00:48",
"label": "y-card",
"description": "Domenico Criscito (Zenit St Petersburg) has tested the patience of referee Felix Brych and goes into the book for a previous late challenge.",
"identified": "[PLAYER_xldYmKAG] ([TEAM_]) has tested the patience of referee [REFEREE] and goes into the book for a previous late challenge.",
"anonymized": "[PLAYER] ([TEAM]) has tested the patience of referee [REFEREE] and goes into the book for a previous late challenge.",
"visibility": "shown",
"position": "48000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The whistle blows and Felix Brych starts the second half.",
"identified": "The whistle blows and [REFEREE] starts the second half.",
"anonymized": "The whistle blows and [REFEREE] starts the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 47:59",
"label": "",
"description": "There was certainly plenty of action during that opening 45 minutes. Both teams are unsuccessfully trying to control the game and it's pretty even so far. The home side have dominated the possession and midfield so far. The visitors have spent most of their time defending and waiting for the right moment to launch counter-attacks.",
"identified": "There was certainly plenty of action during that opening 45 minutes. Both teams are unsuccessfully trying to control the game and it's pretty even so far. The home side have dominated the possession and midfield so far. The visitors have spent most of their time defending and waiting for the right moment to launch counter-attacks.",
"anonymized": "There was certainly plenty of action during that opening 45 minutes. Both teams are unsuccessfully trying to control the game and it's pretty even so far. The home side have dominated the possession and midfield so far. The visitors have spent most of their time defending and waiting for the right moment to launch counter-attacks.",
"visibility": "shown",
"position": "2879000"
},
{
"important": true,
"gameTime": "1 - 46:59",
"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": "2819000"
},
{
"important": true,
"gameTime": "1 - 46:45",
"label": "",
"description": "Hulk (Zenit St Petersburg) receives a low pass just outside the box and unleashes a fine strike towards the middle of the goal. Anthony Lopes pulls off a reflexive save to block his effort. Nice goalkeeping skill, indeed.",
"identified": "[PLAYER_lKBIrwVE] ([TEAM_]) receives a low pass just outside the box and unleashes a fine strike towards the middle of the goal. [PLAYER_dKmI2jJT] pulls off a reflexive save to block his effort. Nice goalkeeping skill, indeed.",
"anonymized": "[PLAYER] ([TEAM]) receives a low pass just outside the box and unleashes a fine strike towards the middle of the goal. [PLAYER] pulls off a reflexive save to block his effort. Nice goalkeeping skill, indeed.",
"visibility": "shown",
"position": "2805000"
},
{
"important": true,
"gameTime": "1 - 45:27",
"label": "",
"description": "Sergi Darder (Lyon) finds himself with a great opportunity! He unleashes a shot from the edge of the box, which whizzes just wide of the left post!",
"identified": "[PLAYER_On7NYLWr] ([TEAM_]) finds himself with a great opportunity! He unleashes a shot from the edge of the box, which whizzes just wide of the left post!",
"anonymized": "[PLAYER] ([TEAM]) finds himself with a great opportunity! He unleashes a shot from the edge of the box, which whizzes just wide of the left post!",
"visibility": "shown",
"position": "2727000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "Fourth official shows 2 min. of added time.",
"identified": "Fourth official shows 2 min. of added time.",
"anonymized": "Fourth official shows 2 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 43:59",
"label": "",
"description": "Alexandre Lacazette (Lyon) is penalised for a foul. Felix Brych had a clear view and blows his whistle.",
"identified": "[PLAYER_YegtWFr9] ([TEAM_]) is penalised for a foul. [REFEREE] had a clear view and blows his whistle.",
"anonymized": "[PLAYER] ([TEAM]) is penalised for a foul. [REFEREE] had a clear view and blows his whistle.",
"visibility": "shown",
"position": "2639000"
},
{
"important": false,
"gameTime": "1 - 43:24",
"label": "",
"description": "Hulk (Zenit St Petersburg) looks to break free, but his touch lets him down and he loses the ball.",
"identified": "[PLAYER_lKBIrwVE] ([TEAM_]) looks to break free, but his touch lets him down and he loses the ball.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but his touch lets him down and he loses the ball.",
"visibility": "shown",
"position": "2604000"
},
{
"important": false,
"gameTime": "1 - 42:32",
"label": "",
"description": "Danny (Zenit St Petersburg) is able to continue to play.",
"identified": "[PLAYER_zgD8UmB3] ([TEAM_]) is able to continue to play.",
"anonymized": "[PLAYER] ([TEAM]) is able to continue to play.",
"visibility": "shown",
"position": "2552000"
},
{
"important": false,
"gameTime": "1 - 41:35",
"label": "injury",
"description": "Danny (Zenit St Petersburg) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"identified": "[PLAYER_zgD8UmB3] ([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": "2495000"
},
{
"important": false,
"gameTime": "1 - 40:23",
"label": "",
"description": "Mathieu Valbuena (Lyon) attempts to slip the ball through the defence, but is unable to find any of his teammates. The ball is off of the pitch and it's a goal kick for Zenit.",
"identified": "[PLAYER_YZB1o7O4] ([TEAM_]) attempts to slip the ball through the defence, but is unable to find any of his teammates. The ball is off of the pitch and it's a goal kick for [TEAM_vsXou9m7].",
"anonymized": "[PLAYER] ([TEAM]) attempts to slip the ball through the defence, but is unable to find any of his teammates. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "2423000"
},
{
"important": false,
"gameTime": "1 - 39:54",
"label": "",
"description": "Lyon string together a series of short passes.",
"identified": "[TEAM_] string together a series of short passes.",
"anonymized": "[TEAM] string together a series of short passes.",
"visibility": "shown",
"position": "2394000"
},
{
"important": true,
"gameTime": "1 - 37:41",
"label": "",
"description": "Alexandre Lacazette (Lyon) must feel embarrassed now. He received a killer pass, but his shot from the six-yard box was a disaster. He miskicked and made it very easy for Yuri Lodygin to get hold of the ball.",
"identified": "[PLAYER_YegtWFr9] ([TEAM_]) must feel embarrassed now. He received a killer pass, but his shot from the six-yard box was a disaster. He miskicked and made it very easy for [PLAYER_AHq6HWti] to get hold of the ball.",
"anonymized": "[PLAYER] ([TEAM]) must feel embarrassed now. He received a killer pass, but his shot from the six-yard box was a disaster. He miskicked and made it very easy for [PLAYER] to get hold of the ball.",
"visibility": "shown",
"position": "2261000"
},
{
"important": false,
"gameTime": "1 - 36:20",
"label": "corner",
"description": "The resulting corner from Mathieu Valbuena (Lyon) is cleared by the defence.",
"identified": "The resulting corner from [PLAYER_YZB1o7O4] ([TEAM_]) is cleared by the defence.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) is cleared by the defence.",
"visibility": "shown",
"position": "2180000"
},
{
"important": false,
"gameTime": "1 - 36:09",
"label": "",
"description": "Mathieu Valbuena (Lyon) slaloms his way past challenges, but an opposing player does well to get the ball away. The ball is out of play. A goal-scoring opportunity from a corner for Lyon.",
"identified": "[PLAYER_YZB1o7O4] ([TEAM_]) slaloms his way past challenges, but an opposing player does well to get the ball away. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) slaloms his way past challenges, but an opposing player does well to get the ball away. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM].",
"visibility": "shown",
"position": "2169000"
},
{
"important": true,
"gameTime": "1 - 35:21",
"label": "",
"description": "Henri Bedimo (Lyon) creates a good chance for himself and goes for goal from mid-range, but he fails to change the score as his effort deflects away off the bar.",
"identified": "[PLAYER_E9RHZbPR] ([TEAM_]) creates a good chance for himself and goes for goal from mid-range, but he fails to change the score as his effort deflects away off the bar.",
"anonymized": "[PLAYER] ([TEAM]) creates a good chance for himself and goes for goal from mid-range, but he fails to change the score as his effort deflects away off the bar.",
"visibility": "shown",
"position": "2121000"
},
{
"important": false,
"gameTime": "1 - 34:40",
"label": "",
"description": "Christophe Jallet (Lyon) skips past his man but can't keep the ball in play. The ball goes out of play and Zenit will have a goal kick.",
"identified": "[PLAYER_f1OfJxIc] ([TEAM_]) skips past his man but can't keep the ball in play. The ball goes out of play and [TEAM_vsXou9m7] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) skips past his man but can't keep the ball in play. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "2080000"
},
{
"important": false,
"gameTime": "1 - 33:10",
"label": "",
"description": "Hulk (Zenit St Petersburg) seems to have picked up a minor injury, but it looks like he will be able to continue playing.",
"identified": "[PLAYER_lKBIrwVE] ([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": "1990000"
},
{
"important": false,
"gameTime": "1 - 32:59",
"label": "injury",
"description": "The game is interrupted now, Hulk (Zenit St Petersburg) picks up a knock and the physio has to come on.",
"identified": "The game is interrupted now, [PLAYER_lKBIrwVE] ([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": "1979000"
},
{
"important": true,
"gameTime": "1 - 31:29",
"label": "y-card",
"description": "The referee had an easy-decision to make. A yellow card is given to Maxime Gonalons (Lyon) for a foul that he committed a little earlier.",
"identified": "The referee had an easy-decision to make. A yellow card is given to [PLAYER_46YCiQYc] ([TEAM_]) for a foul that he committed a little earlier.",
"anonymized": "The referee had an easy-decision to make. A yellow card is given to [PLAYER] ([TEAM]) for a foul that he committed a little earlier.",
"visibility": "shown",
"position": "1889000"
},
{
"important": true,
"gameTime": "1 - 31:11",
"label": "",
"description": "Mapou Yanga-Mbiwa (Lyon) can't believe his eyes as he blows an opportunity from close range. It looked really simple and he only needed to tap the ball in, but he failed. The ball goes well wide of the right post. Hang your head in shame son.",
"identified": "[PLAYER_A5AOUk2F] ([TEAM_]) can't believe his eyes as he blows an opportunity from close range. It looked really simple and he only needed to tap the ball in, but he failed. The ball goes well wide of the right post. Hang your head in shame son.",
"anonymized": "[PLAYER] ([TEAM]) can't believe his eyes as he blows an opportunity from close range. It looked really simple and he only needed to tap the ball in, but he failed. The ball goes well wide of the right post. Hang your head in shame son.",
"visibility": "shown",
"position": "1871000"
},
{
"important": false,
"gameTime": "1 - 30:46",
"label": "corner",
"description": "The corner from Mathieu Valbuena (Lyon) is intercepted by the defence.",
"identified": "The corner from [PLAYER_YZB1o7O4] ([TEAM_]) is intercepted by the defence.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is intercepted by the defence.",
"visibility": "shown",
"position": "1846000"
},
{
"important": false,
"gameTime": "1 - 30:34",
"label": "",
"description": "Claudio Beauvue (Lyon) looks to break free, but an opposing player clears the ball away. The referee and his assistant both point at the corner flag. Lyon will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_jJKCedbt] ([TEAM_]) looks to break free, but an opposing player clears the ball away. 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]) looks to break free, but an opposing player clears the ball away. 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": "1834000"
},
{
"important": true,
"gameTime": "1 - 29:34",
"label": "",
"description": "Chance! Corentin Tolisso (Lyon) comes within inches of scoring after picking up a pass from Mathieu Valbuena, but his shot from inside the box flashes inches wide of the right post.",
"identified": "Chance! [PLAYER_hQOIoFOs] ([TEAM_]) comes within inches of scoring after picking up a pass from [PLAYER_YZB1o7O4], but his shot from inside the box flashes inches wide of the right post.",
"anonymized": "Chance! [PLAYER] ([TEAM]) comes within inches of scoring after picking up a pass from [PLAYER], but his shot from inside the box flashes inches wide of the right post.",
"visibility": "shown",
"position": "1774000"
},
{
"important": false,
"gameTime": "1 - 28:33",
"label": "",
"description": "A cross is clipped into the penalty area by Henri Bedimo (Lyon) but poses no threat.",
"identified": "A cross is clipped into the penalty area by [PLAYER_E9RHZbPR] ([TEAM_]) but poses no threat.",
"anonymized": "A cross is clipped into the penalty area by [PLAYER] ([TEAM]) but poses no threat.",
"visibility": "shown",
"position": "1713000"
},
{
"important": false,
"gameTime": "1 - 27:10",
"label": "",
"description": "Lyon are showing great team chemistry. They are passing the ball around seamlessly.",
"identified": "[TEAM_] are showing great team chemistry. They are passing the ball around seamlessly.",
"anonymized": "[TEAM] are showing great team chemistry. They are passing the ball around seamlessly.",
"visibility": "shown",
"position": "1630000"
},
{
"important": false,
"gameTime": "1 - 26:54",
"label": "",
"description": "Christophe Jallet (Lyon) fails to beat the offside trap and the linesman puts his flag up.",
"identified": "[PLAYER_f1OfJxIc] ([TEAM_]) fails to beat the offside trap and the linesman puts his flag up.",
"anonymized": "[PLAYER] ([TEAM]) fails to beat the offside trap and the linesman puts his flag up.",
"visibility": "shown",
"position": "1614000"
},
{
"important": true,
"gameTime": "1 - 24:07",
"label": "soccer-ball",
"description": "Goal! Hulk puts the ball on a plate for Artem Dzyuba (Zenit St Petersburg), who scores with a simple close-range finish. It's 0:1.",
"identified": "Goal! [PLAYER_lKBIrwVE] puts the ball on a plate for [PLAYER_pY7DwFnQ] ([TEAM_]), who scores with a simple close-range finish. It's 0:1.",
"anonymized": "Goal! [PLAYER] puts the ball on a plate for [PLAYER] ([TEAM]), who scores with a simple close-range finish. It's 0:1.",
"visibility": "shown",
"position": "1447000"
},
{
"important": false,
"gameTime": "1 - 23:05",
"label": "",
"description": "Mathieu Valbuena (Lyon) is offside and the linesman raises his flag.",
"identified": "[PLAYER_YZB1o7O4] ([TEAM_]) is offside and the linesman raises his flag.",
"anonymized": "[PLAYER] ([TEAM]) is offside and the linesman raises his flag.",
"visibility": "shown",
"position": "1385000"
},
{
"important": false,
"gameTime": "1 - 22:59",
"label": "",
"description": "Mathieu Valbuena (Lyon) attempted to create a dangerous situation in front of goal by sending a cross into the box, but the defence easily dealt with the threat.",
"identified": "[PLAYER_YZB1o7O4] ([TEAM_]) attempted to create a dangerous situation in front of goal by sending a cross into the box, but the defence easily dealt with the threat.",
"anonymized": "[PLAYER] ([TEAM]) attempted to create a dangerous situation in front of goal by sending a cross into the box, but the defence easily dealt with the threat.",
"visibility": "shown",
"position": "1379000"
},
{
"important": true,
"gameTime": "1 - 22:29",
"label": "",
"description": "Henri Bedimo (Lyon) zig-zags his way into the box and fails to direct a shot inside the left post. The goalkeeper pulls off a miraculous stop.",
"identified": "[PLAYER_E9RHZbPR] ([TEAM_]) zig-zags his way into the box and fails to direct a shot inside the left post. The goalkeeper pulls off a miraculous stop.",
"anonymized": "[PLAYER] ([TEAM]) zig-zags his way into the box and fails to direct a shot inside the left post. The goalkeeper pulls off a miraculous stop.",
"visibility": "shown",
"position": "1349000"
},
{
"important": false,
"gameTime": "1 - 21:01",
"label": "",
"description": "Alexandre Lacazette (Lyon) produces a lovely chip pass into the box, but one of the opposition players cuts it out.",
"identified": "[PLAYER_YegtWFr9] ([TEAM_]) produces a lovely chip pass into the box, but one of the opposition players cuts it out.",
"anonymized": "[PLAYER] ([TEAM]) produces a lovely chip pass into the box, but one of the opposition players cuts it out.",
"visibility": "shown",
"position": "1261000"
},
{
"important": true,
"gameTime": "1 - 20:36",
"label": "",
"description": "Danny (Zenit St Petersburg) latches on to a precise pass and finds himself one-on-one with the keeper. He fires a low shot towards the right side of the net, but Anthony Lopes leaps like a salmon to deny him.",
"identified": "[PLAYER_zgD8UmB3] ([TEAM_]) latches on to a precise pass and finds himself one-on-one with the keeper. He fires a low shot towards the right side of the net, but [PLAYER_dKmI2jJT] leaps like a salmon to deny him.",
"anonymized": "[PLAYER] ([TEAM]) latches on to a precise pass and finds himself one-on-one with the keeper. He fires a low shot towards the right side of the net, but [PLAYER] leaps like a salmon to deny him.",
"visibility": "shown",
"position": "1236000"
},
{
"important": false,
"gameTime": "1 - 20:18",
"label": "corner",
"description": "Mathieu Valbuena (Lyon) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"identified": "[PLAYER_YZB1o7O4] ([TEAM_]) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"anonymized": "[PLAYER] ([TEAM]) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"visibility": "shown",
"position": "1218000"
},
{
"important": false,
"gameTime": "1 - 19:54",
"label": "",
"description": "Claudio Beauvue (Lyon) takes the free kick but it is cleared by the first defender. The ball goes out of play. Lyon are awarded a corner kick.",
"identified": "[PLAYER_jJKCedbt] ([TEAM_]) takes the free kick but it is cleared by the first defender. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) takes the free kick but it is cleared by the first defender. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "1194000"
},
{
"important": false,
"gameTime": "1 - 19:22",
"label": "",
"description": "Lyon earn a free kick which could lead to a goal-scoring opportunity.",
"identified": "[TEAM_] earn a free kick which could lead to a goal-scoring opportunity.",
"anonymized": "[TEAM] earn a free kick which could lead to a goal-scoring opportunity.",
"visibility": "shown",
"position": "1162000"
},
{
"important": true,
"gameTime": "1 - 19:13",
"label": "y-card",
"description": "Felix Brych shows a yellow card to Axel Witsel (Zenit St Petersburg) for his blatant foul.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_2JsUqijl] ([TEAM_]) for his blatant foul.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for his blatant foul.",
"visibility": "shown",
"position": "1153000"
},
{
"important": true,
"gameTime": "1 - 18:10",
"label": "",
"description": "Great chance! Sergi Darder (Lyon) collects a great pass inside the box, but the goalkeeper does well to stop his effort.",
"identified": "Great chance! [PLAYER_On7NYLWr] ([TEAM_]) collects a great pass inside the box, but the goalkeeper does well to stop his effort.",
"anonymized": "Great chance! [PLAYER] ([TEAM]) collects a great pass inside the box, but the goalkeeper does well to stop his effort.",
"visibility": "shown",
"position": "1090000"
},
{
"important": true,
"gameTime": "1 - 17:12",
"label": "",
"description": "Domenico Criscito (Zenit St Petersburg) wastes a good opportunity as his pass into the box is blocked by the defence.",
"identified": "[PLAYER_xldYmKAG] ([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": "1032000"
},
{
"important": false,
"gameTime": "1 - 16:29",
"label": "",
"description": "Some great controlled play and passing from Zenit. They are increasing their possession of the ball and trying to open up the opposition's defence to hit them swiftly on the break.",
"identified": "Some great controlled play and passing from [TEAM_vsXou9m7]. They are increasing their possession of the ball and trying to open up the opposition's defence to hit them swiftly on the break.",
"anonymized": "Some great controlled play and passing from [TEAM]. They are increasing their possession of the ball and trying to open up the opposition's defence to hit them swiftly on the break.",
"visibility": "shown",
"position": "989000"
},
{
"important": false,
"gameTime": "1 - 15:33",
"label": "",
"description": "Christophe Jallet sends a lovely lofted pass forward that flies over the top of the defence and into the path of Claudio Beauvue (Lyon), but he can't direct his header on target as it flies well wide of the left post. The ball is off of the pitch and it's a goal kick for Zenit.",
"identified": "[PLAYER_f1OfJxIc] sends a lovely lofted pass forward that flies over the top of the defence and into the path of [PLAYER_jJKCedbt] ([TEAM_]), but he can't direct his header on target as it flies well wide of the left post. The ball is off of the pitch and it's a goal kick for [TEAM_vsXou9m7].",
"anonymized": "[PLAYER] sends a lovely lofted pass forward that flies over the top of the defence and into the path of [PLAYER] ([TEAM]), but he can't direct his header on target as it flies well wide of the left post. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "933000"
},
{
"important": false,
"gameTime": "1 - 14:43",
"label": "",
"description": "Hulk (Zenit St Petersburg) whips in the resulting set piece but it's cleared.",
"identified": "[PLAYER_lKBIrwVE] ([TEAM_]) whips in the resulting set piece but it's cleared.",
"anonymized": "[PLAYER] ([TEAM]) whips in the resulting set piece but it's cleared.",
"visibility": "shown",
"position": "883000"
},
{
"important": false,
"gameTime": "1 - 14:06",
"label": "",
"description": "Felix Brych interrupts the game for a tactical foul by Alexandre Lacazette (Lyon). Zenit have a free kick from a promising distance.",
"identified": "[REFEREE] interrupts the game for a tactical foul by [PLAYER_YegtWFr9] ([TEAM_]). [TEAM_vsXou9m7] have a free kick from a promising distance.",
"anonymized": "[REFEREE] interrupts the game for a tactical foul by [PLAYER] ([TEAM]). [TEAM] have a free kick from a promising distance.",
"visibility": "shown",
"position": "846000"
},
{
"important": false,
"gameTime": "1 - 13:08",
"label": "",
"description": "The game is interrupted as Hulk (Zenit St Petersburg) is flagged offside.",
"identified": "The game is interrupted as [PLAYER_lKBIrwVE] ([TEAM_]) is flagged offside.",
"anonymized": "The game is interrupted as [PLAYER] ([TEAM]) is flagged offside.",
"visibility": "shown",
"position": "788000"
},
{
"important": false,
"gameTime": "1 - 12:51",
"label": "",
"description": "What a poor attempt! Domenico Criscito (Zenit St Petersburg) drives another shot towards goal - this time from further out, but it couldn't have been worse if he had shot blindfolded. The ball goes into the stands.",
"identified": "What a poor attempt! [PLAYER_xldYmKAG] ([TEAM_]) drives another shot towards goal - this time from further out, but it couldn't have been worse if he had shot blindfolded. The ball goes into the stands.",
"anonymized": "What a poor attempt! [PLAYER] ([TEAM]) drives another shot towards goal - this time from further out, but it couldn't have been worse if he had shot blindfolded. The ball goes into the stands.",
"visibility": "shown",
"position": "771000"
},
{
"important": false,
"gameTime": "1 - 12:07",
"label": "",
"description": "The free kick is taken by Danny (Zenit St Petersburg), but ball is cleared.",
"identified": "The free kick is taken by [PLAYER_zgD8UmB3] ([TEAM_]), but ball is cleared.",
"anonymized": "The free kick is taken by [PLAYER] ([TEAM]), but ball is cleared.",
"visibility": "shown",
"position": "727000"
},
{
"important": false,
"gameTime": "1 - 11:58",
"label": "",
"description": "Mapou Yanga-Mbiwa (Lyon) gives away a foul for a fierce tackle on an opponent. Zenit win a free kick. It's a promising situation for a direct shot.",
"identified": "[PLAYER_A5AOUk2F] ([TEAM_]) gives away a foul for a fierce tackle on an opponent. [TEAM_vsXou9m7] win a free kick. It's a promising situation for a direct shot.",
"anonymized": "[PLAYER] ([TEAM]) gives away a foul for a fierce tackle on an opponent. [TEAM] win a free kick. It's a promising situation for a direct shot.",
"visibility": "shown",
"position": "718000"
},
{
"important": false,
"gameTime": "1 - 10:16",
"label": "",
"description": "Domenico Criscito (Zenit St Petersburg) plays a through ball but overhits it. The ball goes out of play and Lyon will have a goal kick.",
"identified": "[PLAYER_xldYmKAG] ([TEAM_]) plays a through ball but overhits it. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) plays a through ball but overhits it. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "616000"
},
{
"important": false,
"gameTime": "1 - 12:59",
"label": "",
"description": "There was no time for the supporters to get bored during the game as it was full of action and thrilling moments. The game was quite balanced and neither team had any obvious advantage. The home side attempted to create scoring opportunities mostly with long balls, while the opposition focused on counter-attacks to breach the home side's defences.",
"identified": "There was no time for the supporters to get bored during the game as it was full of action and thrilling moments. The game was quite balanced and neither team had any obvious advantage. The home side attempted to create scoring opportunities mostly with long balls, while the opposition focused on counter-attacks to breach the home side's defences.",
"anonymized": "There was no time for the supporters to get bored during the game as it was full of action and thrilling moments. The game was quite balanced and neither team had any obvious advantage. The home side attempted to create scoring opportunities mostly with long balls, while the opposition focused on counter-attacks to breach the home side's defences.",
"visibility": "shown",
"position": "779000"
}
]
} |