File size: 52,650 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 |
{
"timestamp": "1486755900",
"score": "0 - 3",
"round": "25",
"teams": [
"Bordeaux",
"Paris SG"
],
"lineup": {
"home": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "SlBH931P",
"name": "Carrasso C.",
"captain": "",
"detail_link": "/player/carrasso-cedric/SlBH931P/",
"short_name": "Carrasso",
"shirt_number": "16",
"country": "France",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Cedric Carrasso"
},
{
"hash": "KzBi1eNF",
"name": "Gajic M.",
"captain": "",
"detail_link": "/player/gajic-milan/KzBi1eNF/",
"short_name": "Gajic",
"shirt_number": "2",
"country": "Serbia",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Milan Gajic"
},
{
"hash": "WKsd337J",
"name": "Jovanovic V.",
"captain": "",
"detail_link": "/player/jovanovic-vukasin/WKsd337J/",
"short_name": "Jovanovic",
"shirt_number": "4",
"country": "Serbia",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Vukasin Jovanovic"
},
{
"hash": "YFYwI0J1",
"name": "Malcom",
"captain": "",
"detail_link": "/player/malcom/YFYwI0J1/",
"short_name": "Malcom",
"shirt_number": "25",
"country": "Brazil",
"facts": [
{
"type": "6",
"time": "78'",
"description": "Laborde G.",
"linked_player_hash": "KdLy7rKC"
}
],
"lineup": 9,
"starting": true,
"long_name": "Malcom"
},
{
"hash": "A10nmDRJ",
"name": "Menez J.",
"captain": "",
"detail_link": "/player/menez-jeremy/A10nmDRJ/",
"short_name": "Menez",
"shirt_number": "7",
"country": "France",
"facts": [
{
"type": "6",
"time": "57'",
"description": "Kamano F.",
"linked_player_hash": "2DkHTsUk"
}
],
"lineup": 11,
"starting": true,
"long_name": "Jeremy Menez"
},
{
"hash": "2XnIOLsp",
"name": "Pallois N.",
"captain": "",
"detail_link": "/player/pallois-nicolas/2XnIOLsp/",
"short_name": "Pallois",
"shirt_number": "5",
"country": "France",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Nicolas Pallois"
},
{
"hash": "MBnOLA4c",
"name": "Plasil J.",
"captain": "(C)",
"detail_link": "/player/plasil-jaroslav/MBnOLA4c/",
"short_name": "Plasil",
"shirt_number": "18",
"country": "Czech Republic",
"facts": [
{
"type": "6",
"time": "66'",
"description": "Vada V.",
"linked_player_hash": "pbrB5czO"
}
],
"lineup": 6,
"starting": true,
"long_name": "Jaroslav Plasil"
},
{
"hash": "jc0mS5u3",
"name": "Rolan D.",
"captain": "",
"detail_link": "/player/rolan-diego/jc0mS5u3/",
"short_name": "Rolan",
"shirt_number": "9",
"country": "Uruguay",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Diego Rolan"
},
{
"hash": "vFNb1rQ5",
"name": "Sabaly Y.",
"captain": "",
"detail_link": "/player/sabaly-youssouf/vFNb1rQ5/",
"short_name": "Sabaly",
"shirt_number": "20",
"country": "Senegal",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Youssouf Sabaly"
},
{
"hash": "OWQ4qnaG",
"name": "Sankhare Y.",
"captain": "",
"detail_link": "/player/sankhare-younousse/OWQ4qnaG/",
"short_name": "Sankhare",
"shirt_number": "13",
"country": "Senegal",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Younousse Sankhare"
},
{
"hash": "Yy3ES2U6",
"name": "Toulalan J.",
"captain": "",
"detail_link": "/player/toulalan-jeremy/Yy3ES2U6/",
"short_name": "Toulalan",
"shirt_number": "14",
"country": "France",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Jeremy Toulalan"
},
{
"hash": "zHQB5zMa",
"name": "Arambarri M.",
"captain": "",
"detail_link": "/player/arambarri-mauro/zHQB5zMa/",
"short_name": "Arambarri",
"shirt_number": "8",
"country": "Uruguay",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mauro Arambarri"
},
{
"hash": "ADz9mh2A",
"name": "Contento D.",
"captain": "",
"detail_link": "/player/contento-diego/ADz9mh2A/",
"short_name": "Contento",
"shirt_number": "3",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Diego Contento"
},
{
"hash": "2DkHTsUk",
"name": "Kamano F.",
"captain": "",
"detail_link": "/player/kamano-francois/2DkHTsUk/",
"short_name": "Kamano",
"shirt_number": "11",
"country": "Guinea",
"facts": [
{
"type": "7",
"time": "57'",
"description": "Menez J.",
"linked_player_hash": "A10nmDRJ"
}
],
"lineup": null,
"starting": false,
"long_name": "Francois Kamano"
},
{
"hash": "KdLy7rKC",
"name": "Laborde G.",
"captain": "",
"detail_link": "/player/laborde-gaetan/KdLy7rKC/",
"short_name": "Laborde",
"shirt_number": "24",
"country": "France",
"facts": [
{
"type": "7",
"time": "78'",
"description": "Malcom",
"linked_player_hash": "YFYwI0J1"
}
],
"lineup": null,
"starting": false,
"long_name": "Gaetan Laborde"
},
{
"hash": "8Ka0CoOm",
"name": "Pellenard T.",
"captain": "",
"detail_link": "/player/pellenard-theo/8Ka0CoOm/",
"short_name": "Pellenard",
"shirt_number": "21",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Theo Pellenard"
},
{
"hash": "bglZQ2NF",
"name": "Prior J.",
"captain": "",
"detail_link": "/player/prior-jerome/bglZQ2NF/",
"short_name": "Prior",
"shirt_number": "30",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jerome Prior"
},
{
"hash": "pbrB5czO",
"name": "Vada V.",
"captain": "",
"detail_link": "/player/vada-valentin/pbrB5czO/",
"short_name": "Vada",
"shirt_number": "23",
"country": "Argentina",
"facts": [
{
"type": "7",
"time": "66'",
"description": "Plasil J.",
"linked_player_hash": "MBnOLA4c"
}
],
"lineup": null,
"starting": false,
"long_name": "Valentin Vada"
}
],
"coach": [
{
"hash": "2BM2LniQ",
"name": "Gourvennec J.",
"captain": "",
"detail_link": "/player/gourvennec-jocelyn/2BM2LniQ/",
"short_name": "Gourvennec J.",
"shirt_number": "",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jocelyn Gourvennec"
}
]
},
"away": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "Qgx2trzH",
"name": "Cavani E.",
"captain": "",
"detail_link": "/player/cavani-edinson/Qgx2trzH/",
"short_name": "Cavani",
"shirt_number": "9",
"country": "Uruguay",
"facts": [
{
"type": "3",
"time": "6' Cavani E.",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "3",
"time": "47' Cavani E. (Di Maria A.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "72'",
"description": "Ben Arfa H.",
"linked_player_hash": "Yo6cQVwd"
}
],
"lineup": 10,
"starting": true,
"long_name": "Edinson Cavani"
},
{
"hash": "SISkkDSQ",
"name": "Di Maria A.",
"captain": "",
"detail_link": "/player/di-maria-angel/SISkkDSQ/",
"short_name": "Di Maria",
"shirt_number": "11",
"country": "Argentina",
"facts": [
{
"type": "3",
"time": "40' Di Maria A. (Verratti M.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "8",
"time": "47' Cavani E. (Di Maria A.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "63'",
"description": "Draxler J.",
"linked_player_hash": "plO3S4gF"
}
],
"lineup": 11,
"starting": true,
"long_name": "Angel Di Maria"
},
{
"hash": "dMyiR1D8",
"name": "Kimpembe P.",
"captain": "",
"detail_link": "/player/kimpembe-presnel/dMyiR1D8/",
"short_name": "Kimpembe",
"shirt_number": "3",
"country": "France",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Presnel Kimpembe"
},
{
"hash": "joeqPtde",
"name": "Kurzawa L.",
"captain": "",
"detail_link": "/player/kurzawa-layvin/joeqPtde/",
"short_name": "Kurzawa",
"shirt_number": "20",
"country": "France",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Layvin Kurzawa"
},
{
"hash": "EcmXnnoo",
"name": "Lucas Moura",
"captain": "",
"detail_link": "/player/lucas-moura/EcmXnnoo/",
"short_name": "Lucas Moura",
"shirt_number": "7",
"country": "Brazil",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Lucas Moura"
},
{
"hash": "UFfev8HP",
"name": "Marquinhos",
"captain": "",
"detail_link": "/player/marquinhos/UFfev8HP/",
"short_name": "Marquinhos",
"shirt_number": "5",
"country": "Brazil",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Marquinhos"
},
{
"hash": "WUyrShAL",
"name": "Meunier T.",
"captain": "",
"detail_link": "/player/meunier-thomas/WUyrShAL/",
"short_name": "Meunier",
"shirt_number": "12",
"country": "Belgium",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Thomas Meunier"
},
{
"hash": "bBhpZV2s",
"name": "Motta T.",
"captain": "(C)",
"detail_link": "/player/motta-thiago/bBhpZV2s/",
"short_name": "Motta",
"shirt_number": "8",
"country": "Italy",
"facts": [
{
"type": "1",
"time": "21' Motta T. (Elbowing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Thiago Motta"
},
{
"hash": "l08EAP2Q",
"name": "Rabiot A.",
"captain": "",
"detail_link": "/player/rabiot-adrien/l08EAP2Q/",
"short_name": "Rabiot",
"shirt_number": "25",
"country": "France",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Adrien Rabiot"
},
{
"hash": "QqugudYS",
"name": "Trapp K.",
"captain": "",
"detail_link": "/player/trapp-kevin/QqugudYS/",
"short_name": "Trapp",
"shirt_number": "1",
"country": "Germany",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Kevin Trapp"
},
{
"hash": "fmn5agXI",
"name": "Verratti M.",
"captain": "",
"detail_link": "/player/verratti-marco/fmn5agXI/",
"short_name": "Verratti",
"shirt_number": "6",
"country": "Italy",
"facts": [
{
"type": "8",
"time": "40' Di Maria A. (Verratti M.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "60'",
"description": "Nkunku C.",
"linked_player_hash": "8liaG2W0"
}
],
"lineup": 6,
"starting": true,
"long_name": "Marco Verratti"
},
{
"hash": "phOf2OAa",
"name": "Areola A.",
"captain": "",
"detail_link": "/player/areola-alphonse/phOf2OAa/",
"short_name": "Areola",
"shirt_number": "16",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alphonse Areola"
},
{
"hash": "6iUXQVdq",
"name": "Aurier S.",
"captain": "",
"detail_link": "/player/aurier-serge/6iUXQVdq/",
"short_name": "Aurier",
"shirt_number": "19",
"country": "Ivory Coast",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Serge Aurier"
},
{
"hash": "Yo6cQVwd",
"name": "Ben Arfa H.",
"captain": "",
"detail_link": "/player/ben-arfa-hatem/Yo6cQVwd/",
"short_name": "Ben Arfa",
"shirt_number": "21",
"country": "France",
"facts": [
{
"type": "7",
"time": "72'",
"description": "Cavani E.",
"linked_player_hash": "Qgx2trzH"
}
],
"lineup": null,
"starting": false,
"long_name": "Hatem Ben Arfa"
},
{
"hash": "plO3S4gF",
"name": "Draxler J.",
"captain": "",
"detail_link": "/player/draxler-julian/plO3S4gF/",
"short_name": "Draxler",
"shirt_number": "23",
"country": "Germany",
"facts": [
{
"type": "7",
"time": "63'",
"description": "Di Maria A.",
"linked_player_hash": "SISkkDSQ"
}
],
"lineup": null,
"starting": false,
"long_name": "Julian Draxler"
},
{
"hash": "CAWma17n",
"name": "Matuidi B.",
"captain": "",
"detail_link": "/player/matuidi-blaise/CAWma17n/",
"short_name": "Matuidi",
"shirt_number": "14",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Blaise Matuidi"
},
{
"hash": "lxTgxZ9r",
"name": "Maxwell",
"captain": "",
"detail_link": "/player/maxwell/lxTgxZ9r/",
"short_name": "Maxwell",
"shirt_number": "17",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Maxwell"
},
{
"hash": "8liaG2W0",
"name": "Nkunku C.",
"captain": "",
"detail_link": "/player/nkunku-christopher/8liaG2W0/",
"short_name": "Nkunku",
"shirt_number": "24",
"country": "France",
"facts": [
{
"type": "7",
"time": "60'",
"description": "Verratti M.",
"linked_player_hash": "fmn5agXI"
}
],
"lineup": null,
"starting": false,
"long_name": "Christopher Nkunku"
}
],
"coach": [
{
"hash": "8QQVnKh9",
"name": "Emery U.",
"captain": "",
"detail_link": "/player/emery-unai/8QQVnKh9/",
"short_name": "Emery U.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Unai Emery"
}
]
}
},
"referee": [
"Rainville N."
],
"venue": [
"Matmut Atlantique (Bordeaux)"
],
"attendance": [
"37 823"
],
"referee_matched": [
"Nicolas Rainville"
],
"referee_found": [
"Nicolas Rainville"
],
"coach_matched": [
"Unai Emery"
],
"gameHomeTeam": "Bordeaux",
"home": {
"name": "Bordeaux",
"detail_link": "/team/bordeaux/SKc9FeQ7",
"hash": "SKc9FeQ7",
"names": [
"Bordeaux",
"Bordeaux (Fra)",
"bordeaux"
]
},
"gameAwayTeam": "Paris SG",
"away": {
"name": "Paris SG",
"detail_link": "/team/paris-sg/CjhkPw0k",
"hash": "CjhkPw0k",
"names": [
"Paris SG",
"paris sg"
]
},
"gameDate": "10/02/2017 - 20:45",
"annotations": [
{
"important": true,
"gameTime": "2 - 45:25",
"label": "whistle",
"description": "That's the end of the match.",
"identified": "That's the end of the match.",
"anonymized": "That's the end of the match.",
"visibility": "shown",
"position": "2725000"
},
{
"important": false,
"gameTime": "2 - 42:40",
"label": "",
"description": "Some neat passing and movement from Paris SG as they ping around some short passes in order to create a new attacking opportunity.",
"identified": "Some neat passing and movement from [TEAM_] as they ping around some short passes in order to create a new attacking opportunity.",
"anonymized": "Some neat passing and movement from [TEAM] as they ping around some short passes in order to create a new attacking opportunity.",
"visibility": "shown",
"position": "2560000"
},
{
"important": false,
"gameTime": "2 - 37:51",
"label": "",
"description": "The keeper doesn't have to worry about this one. Adrien Rabiot (Paris SG) sacrificed accuracy for power, and thus his attempt went well over the bar.",
"identified": "The keeper doesn't have to worry about this one. [PLAYER_l08EAP2Q] ([TEAM_]) sacrificed accuracy for power, and thus his attempt went well over the bar.",
"anonymized": "The keeper doesn't have to worry about this one. [PLAYER] ([TEAM]) sacrificed accuracy for power, and thus his attempt went well over the bar.",
"visibility": "shown",
"position": "2271000"
},
{
"important": false,
"gameTime": "2 - 35:47",
"label": "",
"description": "The linesman raises his flag as one of the players from Bordeaux was in an offside position.",
"identified": "The linesman raises his flag as one of the players from [TEAM_] 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": "2147000"
},
{
"important": false,
"gameTime": "2 - 32:57",
"label": "",
"description": "Christopher Nkunku (Paris SG) produces an effort from the edge of the box, but doesn't hit the ball properly and sends it yards over the bar.",
"identified": "[PLAYER_8liaG2W0] ([TEAM_]) produces an effort from the edge of the box, but doesn't hit the ball properly and sends it yards over the bar.",
"anonymized": "[PLAYER] ([TEAM]) produces an effort from the edge of the box, but doesn't hit the ball properly and sends it yards over the bar.",
"visibility": "shown",
"position": "1977000"
},
{
"important": true,
"gameTime": "2 - 32:37",
"label": "substitution",
"description": "Here's the change. Malcom leaves the pitch and Gaetan Laborde (Bordeaux) comes on as a substitute.",
"identified": "Here's the change. [PLAYER_YFYwI0J1] leaves the pitch and [PLAYER_KdLy7rKC] ([TEAM_]) comes on as a substitute.",
"anonymized": "Here's the change. [PLAYER] leaves the pitch and [PLAYER] ([TEAM]) comes on as a substitute.",
"visibility": "shown",
"position": "1957000"
},
{
"important": false,
"gameTime": "2 - 32:23",
"label": "",
"description": "Milan Gajic (Bordeaux) sends a long ball in, but Kevin Trapp comfortably gathers the ball.",
"identified": "[PLAYER_KzBi1eNF] ([TEAM_]) sends a long ball in, but [PLAYER_QqugudYS] comfortably gathers the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a long ball in, but [PLAYER] comfortably gathers the ball.",
"visibility": "shown",
"position": "1943000"
},
{
"important": false,
"gameTime": "2 - 30:37",
"label": "",
"description": "Jeremy Toulalan sends a good ball to the edge of the box and Diego Rolan (Bordeaux) gets in a shot which goes narrowly wide of the right post.",
"identified": "[PLAYER_Yy3ES2U6] sends a good ball to the edge of the box and [PLAYER_jc0mS5u3] ([TEAM_]) gets in a shot which goes narrowly wide of the right post.",
"anonymized": "[PLAYER] sends a good ball to the edge of the box and [PLAYER] ([TEAM]) gets in a shot which goes narrowly wide of the right post.",
"visibility": "shown",
"position": "1837000"
},
{
"important": true,
"gameTime": "2 - 26:07",
"label": "substitution",
"description": "Here is a change. Edinson Cavani is going off and Unai Emery gives the last tactical orders to Hatem Ben Arfa (Paris SG).",
"identified": "Here is a change. [PLAYER_Qgx2trzH] is going off and [COACH_8QQVnKh9] gives the last tactical orders to [PLAYER_Yo6cQVwd] ([TEAM_]).",
"anonymized": "Here is a change. [PLAYER] is going off and [COACH] gives the last tactical orders to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1567000"
},
{
"important": false,
"gameTime": "2 - 24:53",
"label": "",
"description": "Younousse Sankhare (Bordeaux) has a big opportunity to score! He climbs highest deep inside the penalty box and strikes a powerful header towards the goal. Next time he should aim better as his effort flies narrowly over the bar.",
"identified": "[PLAYER_OWQ4qnaG] ([TEAM_]) has a big opportunity to score! He climbs highest deep inside the penalty box and strikes a powerful header towards the goal. Next time he should aim better as his effort flies narrowly over the bar.",
"anonymized": "[PLAYER] ([TEAM]) has a big opportunity to score! He climbs highest deep inside the penalty box and strikes a powerful header towards the goal. Next time he should aim better as his effort flies narrowly over the bar.",
"visibility": "shown",
"position": "1493000"
},
{
"important": false,
"gameTime": "2 - 24:09",
"label": "corner",
"description": "Bordeaux failed to take advantage of the corner as the opposition's defence was alert and averted the threat.",
"identified": "[TEAM_] failed to take advantage of the corner as the opposition's defence was alert and averted the threat.",
"anonymized": "[TEAM] failed to take advantage of the corner as the opposition's defence was alert and averted the threat.",
"visibility": "shown",
"position": "1449000"
},
{
"important": false,
"gameTime": "2 - 23:37",
"label": "",
"description": "Milan Gajic (Bordeaux) attempts a long crossfield pass, but the defence does well to intercept the ball. Now Bordeaux have a corner.",
"identified": "[PLAYER_KzBi1eNF] ([TEAM_]) attempts a long crossfield pass, but the defence does well to intercept the ball. Now [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) attempts a long crossfield pass, but the defence does well to intercept the ball. Now [TEAM] have a corner.",
"visibility": "shown",
"position": "1417000"
},
{
"important": false,
"gameTime": "2 - 22:41",
"label": "",
"description": "Julian Draxler (Paris SG) passes the ball onto Edinson Cavani, but one of the defenders dispossesses him.",
"identified": "[PLAYER_plO3S4gF] ([TEAM_]) passes the ball onto [PLAYER_Qgx2trzH], but one of the defenders dispossesses him.",
"anonymized": "[PLAYER] ([TEAM]) passes the ball onto [PLAYER], but one of the defenders dispossesses him.",
"visibility": "shown",
"position": "1361000"
},
{
"important": false,
"gameTime": "2 - 21:50",
"label": "",
"description": "A pass from Francois Kamano (Bordeaux) is intercepted by Kevin Trapp and the move breaks down.",
"identified": "A pass from [PLAYER_2DkHTsUk] ([TEAM_]) is intercepted by [PLAYER_QqugudYS] and the move breaks down.",
"anonymized": "A pass from [PLAYER] ([TEAM]) is intercepted by [PLAYER] and the move breaks down.",
"visibility": "shown",
"position": "1310000"
},
{
"important": true,
"gameTime": "2 - 20:27",
"label": "substitution",
"description": "The game has come to an end for Jaroslav Plasil. He has contributed as much as he could today. He will be replaced by the fresh legs of Valentin Vada (Bordeaux).",
"identified": "The game has come to an end for [PLAYER_MBnOLA4c]. He has contributed as much as he could today. He will be replaced by the fresh legs of [PLAYER_pbrB5czO] ([TEAM_]).",
"anonymized": "The game has come to an end for [PLAYER]. He has contributed as much as he could today. He will be replaced by the fresh legs of [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1227000"
},
{
"important": false,
"gameTime": "2 - 18:24",
"label": "corner",
"description": "The resulting set piece from Bordeaux is comfortably intercepted by one of the defending players.",
"identified": "The resulting set piece from [TEAM_] is comfortably intercepted by one of the defending players.",
"anonymized": "The resulting set piece from [TEAM] is comfortably intercepted by one of the defending players.",
"visibility": "shown",
"position": "1104000"
},
{
"important": false,
"gameTime": "2 - 17:35",
"label": "",
"description": "Bordeaux move the ball around well as they wait for an opportunity to shoot, but the attack is halted as they lose possession. The referee points to the corner flag. It's a corner to Bordeaux.",
"identified": "[TEAM_] move the ball around well as they wait for an opportunity to shoot, but the attack is halted as they lose possession. The referee points to the corner flag. It's a corner to [TEAM_].",
"anonymized": "[TEAM] move the ball around well as they wait for an opportunity to shoot, but the attack is halted as they lose possession. The referee points to the corner flag. It's a corner to [TEAM].",
"visibility": "shown",
"position": "1055000"
},
{
"important": true,
"gameTime": "2 - 17:30",
"label": "substitution",
"description": "The referee signals a substitution. Julian Draxler (Paris SG) is brought on as a substitute for Angel Di Maria.",
"identified": "The referee signals a substitution. [PLAYER_plO3S4gF] ([TEAM_]) is brought on as a substitute for [PLAYER_SISkkDSQ].",
"anonymized": "The referee signals a substitution. [PLAYER] ([TEAM]) is brought on as a substitute for [PLAYER].",
"visibility": "shown",
"position": "1050000"
},
{
"important": true,
"gameTime": "2 - 14:24",
"label": "substitution",
"description": "Unai Emery has decided to substitute Marco Verratti and he is replaced by Christopher Nkunku (Paris SG).",
"identified": "[COACH_8QQVnKh9] has decided to substitute [PLAYER_fmn5agXI] and he is replaced by [PLAYER_8liaG2W0] ([TEAM_]).",
"anonymized": "[COACH] has decided to substitute [PLAYER] and he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "864000"
},
{
"important": true,
"gameTime": "2 - 11:41",
"label": "substitution",
"description": "Substitution. Francois Kamano (Bordeaux) in, Jeremy Menez out.",
"identified": "Substitution. [PLAYER_2DkHTsUk] ([TEAM_]) in, [PLAYER_A10nmDRJ] out.",
"anonymized": "Substitution. [PLAYER] ([TEAM]) in, [PLAYER] out.",
"visibility": "shown",
"position": "701000"
},
{
"important": false,
"gameTime": "2 - 09:42",
"label": "corner",
"description": "None of the Paris SG players could reach the corner kick as the ball was overhit and goes out of play.",
"identified": "None of the [TEAM_] players could reach the corner kick as the ball was overhit and goes out of play.",
"anonymized": "None of the [TEAM] players could reach the corner kick as the ball was overhit and goes out of play.",
"visibility": "shown",
"position": "582000"
},
{
"important": false,
"gameTime": "2 - 08:48",
"label": "corner",
"description": "Angel Di Maria (Paris SG) will deliver the ball into the penalty box from a corner kick. Angel Di Maria (Paris SG) launches an inaccurate corner kick into the penalty area. Paris SG have been awarded a corner kick.",
"identified": "[PLAYER_SISkkDSQ] ([TEAM_]) will deliver the ball into the penalty box from a corner kick. [PLAYER_SISkkDSQ] ([TEAM_]) launches an inaccurate corner kick into the penalty area. [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will deliver the ball into the penalty box from a corner kick. [PLAYER] ([TEAM]) launches an inaccurate corner kick into the penalty area. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "528000"
},
{
"important": false,
"gameTime": "2 - 08:45",
"label": "",
"description": "Lucas (Paris SG) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat. Paris SG have been awarded a corner kick.",
"identified": "[PLAYER_EcmXnnoo] ([TEAM_]) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat. [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "525000"
},
{
"important": false,
"gameTime": "2 - 08:05",
"label": "",
"description": "Some patient build-up play from Paris SG 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": "485000"
},
{
"important": true,
"gameTime": "2 - 01:58",
"label": "soccer-ball",
"description": "0:3. Edinson Cavani (Paris SG) latches on to a pass on the edge of the penalty area and immediately fires a fantastic first-time shot into the left side of the net. What a finish that is! Cedric Carrasso did his best to stop it, but the shot was just too good. Angel Di Maria provided the assistance.",
"identified": "0:3. [PLAYER_Qgx2trzH] ([TEAM_]) latches on to a pass on the edge of the penalty area and immediately fires a fantastic first-time shot into the left side of the net. What a finish that is! [PLAYER_SlBH931P] did his best to stop it, but the shot was just too good. [PLAYER_SISkkDSQ] provided the assistance.",
"anonymized": "0:3. [PLAYER] ([TEAM]) latches on to a pass on the edge of the penalty area and immediately fires a fantastic first-time shot into the left side of the net. What a finish that is! [PLAYER] did his best to stop it, but the shot was just too good. [PLAYER] provided the assistance.",
"visibility": "shown",
"position": "118000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "Referee Nicolas Rainville blows his whistle to start the second half.",
"identified": "Referee [REFEREE] blows his whistle to start the second half.",
"anonymized": "Referee [REFEREE] blows his whistle to start the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": true,
"gameTime": "1 - 45:08",
"label": "whistle",
"description": "The end of the first half.",
"identified": "The end of the first half.",
"anonymized": "The end of the first half.",
"visibility": "shown",
"position": "2708000"
},
{
"important": true,
"gameTime": "1 - 39:45",
"label": "soccer-ball",
"description": "Goal! Marco Verratti gets to the ball, slips Angel Di Maria (Paris SG) into the area and he scores with a delightful chipped finish to make it 0:2.",
"identified": "Goal! [PLAYER_fmn5agXI] gets to the ball, slips [PLAYER_SISkkDSQ] ([TEAM_]) into the area and he scores with a delightful chipped finish to make it 0:2.",
"anonymized": "Goal! [PLAYER] gets to the ball, slips [PLAYER] ([TEAM]) into the area and he scores with a delightful chipped finish to make it 0:2.",
"visibility": "shown",
"position": "2385000"
},
{
"important": false,
"gameTime": "1 - 37:15",
"label": "",
"description": "Lucas (Paris SG) passes the ball and slows down the tempo so his team can continue with their combination play.",
"identified": "[PLAYER_EcmXnnoo] ([TEAM_]) passes the ball and slows down the tempo so his team can continue with their combination play.",
"anonymized": "[PLAYER] ([TEAM]) passes the ball and slows down the tempo so his team can continue with their combination play.",
"visibility": "shown",
"position": "2235000"
},
{
"important": false,
"gameTime": "1 - 31:44",
"label": "",
"description": "Youssouf Sabaly (Bordeaux) sends a long ball in, but Kevin Trapp comfortably gathers the ball.",
"identified": "[PLAYER_vFNb1rQ5] ([TEAM_]) sends a long ball in, but [PLAYER_QqugudYS] comfortably gathers the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a long ball in, but [PLAYER] comfortably gathers the ball.",
"visibility": "shown",
"position": "1904000"
},
{
"important": false,
"gameTime": "1 - 28:23",
"label": "",
"description": "Adrien Rabiot (Paris SG) sprays a pass out to Angel Di Maria, but he can't beat his man inside the box.",
"identified": "[PLAYER_l08EAP2Q] ([TEAM_]) sprays a pass out to [PLAYER_SISkkDSQ], but he can't beat his man inside the box.",
"anonymized": "[PLAYER] ([TEAM]) sprays a pass out to [PLAYER], but he can't beat his man inside the box.",
"visibility": "shown",
"position": "1703000"
},
{
"important": false,
"gameTime": "1 - 25:20",
"label": "",
"description": "One of the players from Paris SG times his run too early and the referee blows his whistle for offside.",
"identified": "One of the players from [TEAM_] times his run too early and the referee blows his whistle for offside.",
"anonymized": "One of the players from [TEAM] times his run too early and the referee blows his whistle for offside.",
"visibility": "shown",
"position": "1520000"
},
{
"important": false,
"gameTime": "1 - 22:08",
"label": "",
"description": "Diego Rolan (Bordeaux) shoots from the edge of the penalty area. The ball travels towards the target, but Kevin Trapp easily deals with the threat.",
"identified": "[PLAYER_jc0mS5u3] ([TEAM_]) shoots from the edge of the penalty area. The ball travels towards the target, but [PLAYER_QqugudYS] easily deals with the threat.",
"anonymized": "[PLAYER] ([TEAM]) shoots from the edge of the penalty area. The ball travels towards the target, but [PLAYER] easily deals with the threat.",
"visibility": "shown",
"position": "1328000"
},
{
"important": true,
"gameTime": "1 - 20:44",
"label": "y-card",
"description": "Thiago Motta (Paris SG) has to be very careful for the rest of the match after receiving a yellow card from the referee for a bad tackle on an opponent.",
"identified": "[PLAYER_bBhpZV2s] ([TEAM_]) has to be very careful for the rest of the match after receiving a yellow card from the referee for a bad tackle on an opponent.",
"anonymized": "[PLAYER] ([TEAM]) has to be very careful for the rest of the match after receiving a yellow card from the referee for a bad tackle on an opponent.",
"visibility": "shown",
"position": "1244000"
},
{
"important": false,
"gameTime": "1 - 19:20",
"label": "corner",
"description": "Bordeaux take the corner, but their hopes of scoring a goal end with a nice clearance by the defence.",
"identified": "[TEAM_] take the corner, but their hopes of scoring a goal end with a nice clearance by the defence.",
"anonymized": "[TEAM] take the corner, but their hopes of scoring a goal end with a nice clearance by the defence.",
"visibility": "shown",
"position": "1160000"
},
{
"important": false,
"gameTime": "1 - 19:12",
"label": "",
"description": "Nicolas Pallois (Bordeaux) unleashes a long-range free kick, but the goalkeeper does well to make a fine save. The ball goes behind for a corner. Bordeaux will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_2XnIOLsp] ([TEAM_]) unleashes a long-range free kick, but the goalkeeper does well to make a fine save. The ball goes behind for a corner. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a long-range free kick, but the goalkeeper does well to make a fine save. The ball goes behind for a corner. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "1152000"
},
{
"important": false,
"gameTime": "1 - 17:41",
"label": "",
"description": "Younousse Sankhare (Bordeaux) rises high on the edge of the box to meet a cross and plants a powerful header goalwards, but Kevin Trapp is alert and makes a decent save to deny him.",
"identified": "[PLAYER_OWQ4qnaG] ([TEAM_]) rises high on the edge of the box to meet a cross and plants a powerful header goalwards, but [PLAYER_QqugudYS] is alert and makes a decent save to deny him.",
"anonymized": "[PLAYER] ([TEAM]) rises high on the edge of the box to meet a cross and plants a powerful header goalwards, but [PLAYER] is alert and makes a decent save to deny him.",
"visibility": "shown",
"position": "1061000"
},
{
"important": false,
"gameTime": "1 - 16:24",
"label": "",
"description": "Lucas (Paris SG) takes a long-range free kick and whips it into the box. The goalkeeper reads it well and leaps high to intercept the ball.",
"identified": "[PLAYER_EcmXnnoo] ([TEAM_]) takes a long-range free kick and whips it into the box. The goalkeeper reads it well and leaps high to intercept the ball.",
"anonymized": "[PLAYER] ([TEAM]) takes a long-range free kick and whips it into the box. The goalkeeper reads it well and leaps high to intercept the ball.",
"visibility": "shown",
"position": "984000"
},
{
"important": false,
"gameTime": "1 - 14:55",
"label": "",
"description": "Cedric Carrasso earns applause from the crowd! He dives superbly to deny a dangerous first-time effort from the edge of the box. Angel Di Maria (Paris SG) was the player who tested the keeper's reflexes. Nice goalkeeping skills, indeed.",
"identified": "[PLAYER_SlBH931P] earns applause from the crowd! He dives superbly to deny a dangerous first-time effort from the edge of the box. [PLAYER_SISkkDSQ] ([TEAM_]) was the player who tested the keeper's reflexes. Nice goalkeeping skills, indeed.",
"anonymized": "[PLAYER] earns applause from the crowd! He dives superbly to deny a dangerous first-time effort from the edge of the box. [PLAYER] ([TEAM]) was the player who tested the keeper's reflexes. Nice goalkeeping skills, indeed.",
"visibility": "shown",
"position": "895000"
},
{
"important": false,
"gameTime": "1 - 13:17",
"label": "",
"description": "Jeremy Toulalan (Bordeaux) makes an unfair challenge by holding his opponent to prevent him from getting the ball. A free kick to Paris SG.",
"identified": "[PLAYER_Yy3ES2U6] ([TEAM_]) makes an unfair challenge by holding his opponent to prevent him from getting the ball. A free kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) makes an unfair challenge by holding his opponent to prevent him from getting the ball. A free kick to [TEAM].",
"visibility": "shown",
"position": "797000"
},
{
"important": false,
"gameTime": "1 - 11:43",
"label": "",
"description": "A cross into the box from Vukasin Jovanovic (Bordeaux) is cleared.",
"identified": "A cross into the box from [PLAYER_WKsd337J] ([TEAM_]) is cleared.",
"anonymized": "A cross into the box from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "703000"
}
]
} |