├── .attic ├── 2014.txt ├── 2014_quali.txt ├── 2014_quali_europe.txt ├── 2014_squads.txt ├── 2018.txt ├── all.txt └── history.txt ├── .build ├── 2014_quali.checksum.txt ├── alltime.checksum.txt ├── alltime.txt ├── assocs.txt ├── clubs.txt ├── conf.txt ├── leagues.txt ├── matches.checksum.txt ├── matches.txt └── stats.txt ├── .gitignore ├── 1930--uruguay ├── NOTES.md ├── cup.txt └── squads │ ├── ar-argentina.txt │ ├── be-belgium.txt │ ├── bo-bolivia.txt │ ├── br-brazil.txt │ ├── cl-chile.txt │ ├── fr-france.txt │ ├── mx-mexico.txt │ ├── pe-peru.txt │ ├── py-paraguay.txt │ ├── ro-romania.txt │ ├── us-united-states.txt │ ├── uy-uruguay.txt │ └── yug-yugoslavia.txt ├── 1934--italy ├── NOTES.md ├── cup.txt └── squads │ ├── ar-argentina.txt │ ├── at-austria.txt │ ├── be-belgium.txt │ ├── br-brazil.txt │ ├── ch-switzerland.txt │ ├── de-deutschland.txt │ ├── eg-egypt.txt │ ├── es-espana.txt │ ├── fr-france.txt │ ├── hu-hungary.txt │ ├── it-italy.txt │ ├── nl-netherlands.txt │ ├── ro-romania.txt │ ├── se-sweden.txt │ ├── tch-czechoslovakia.txt │ └── us-united-states.txt ├── 1938--france ├── NOTES.md ├── cup.txt └── squads │ ├── be-belgium.txt │ ├── br-brazil.txt │ ├── ch-switzerland.txt │ ├── cu-cuba.txt │ ├── de-deutschland.txt │ ├── dei-dutch-east-indies.txt │ ├── fr-france.txt │ ├── hu-hungary.txt │ ├── it-italy.txt │ ├── nl-netherlands.txt │ ├── no-norway.txt │ ├── pl-poland.txt │ ├── ro-romania.txt │ ├── se-sweden.txt │ └── tch-czechoslovakia.txt ├── 1950--brazil ├── NOTES.md ├── cup.txt └── squads │ ├── bo-bolivia.txt │ ├── br-brazil.txt │ ├── ch-switzerland.txt │ ├── cl-chile.txt │ ├── en-england.txt │ ├── es-espana.txt │ ├── it-italy.txt │ ├── mx-mexico.txt │ ├── py-paraguay.txt │ ├── se-sweden.txt │ ├── us-united-states.txt │ ├── uy-uruguay.txt │ └── yug-yugoslavia.txt ├── 1954--switzerland ├── NOTES.md ├── cup.txt └── squads │ ├── at-austria.txt │ ├── be-belgium.txt │ ├── br-brazil.txt │ ├── ch-switzerland.txt │ ├── en-england.txt │ ├── fr-france.txt │ ├── frg-west-germany.txt │ ├── hu-hungary.txt │ ├── it-italy.txt │ ├── kr-south-korea.txt │ ├── mx-mexico.txt │ ├── sco-scotland.txt │ ├── tch-czechoslovakia.txt │ ├── tr-turkey.txt │ ├── uy-uruguay.txt │ └── yug-yugoslavia.txt ├── 1958--sweden ├── NOTES.md ├── cup.txt └── squads │ ├── ar-argentina.txt │ ├── at-austria.txt │ ├── br-brazil.txt │ ├── en-england.txt │ ├── fr-france.txt │ ├── frg-west-germany.txt │ ├── hu-hungary.txt │ ├── mx-mexico.txt │ ├── nir-northern-ireland.txt │ ├── py-paraguay.txt │ ├── sco-scotland.txt │ ├── se-sweden.txt │ ├── tch-czechoslovakia.txt │ ├── urs-soviet-union.txt │ ├── wal-wales.txt │ └── yug-yugoslavia.txt ├── 1962--chile ├── NOTES.md ├── cup.txt └── squads │ ├── ar-argentina.txt │ ├── bg-bulgaria.txt │ ├── br-brazil.txt │ ├── ch-switzerland.txt │ ├── cl-chile.txt │ ├── co-colombia.txt │ ├── en-england.txt │ ├── es-espana.txt │ ├── frg-west-germany.txt │ ├── hu-hungary.txt │ ├── it-italy.txt │ ├── mx-mexico.txt │ ├── tch-czechoslovakia.txt │ ├── urs-soviet-union.txt │ ├── uy-uruguay.txt │ └── yug-yugoslavia.txt ├── 1966--england ├── NOTES.md ├── cup.txt └── squads │ ├── ar-argentina.txt │ ├── bg-bulgaria.txt │ ├── br-brazil.txt │ ├── ch-switzerland.txt │ ├── cl-chile.txt │ ├── en-england.txt │ ├── es-espana.txt │ ├── fr-france.txt │ ├── frg-west-germany.txt │ ├── hu-hungary.txt │ ├── it-italy.txt │ ├── kp-north-korea.txt │ ├── mx-mexico.txt │ ├── pt-portugal.txt │ ├── urs-soviet-union.txt │ └── uy-uruguay.txt ├── 1970--mexico ├── NOTES.md ├── cup.txt └── squads │ ├── be-belgium.txt │ ├── bg-bulgaria.txt │ ├── br-brazil.txt │ ├── en-england.txt │ ├── frg-west-germany.txt │ ├── il-israel.txt │ ├── it-italy.txt │ ├── ma-morocco.txt │ ├── mx-mexico.txt │ ├── pe-peru.txt │ ├── ro-romania.txt │ ├── se-sweden.txt │ ├── sv-el-salvador.txt │ ├── tch-czechoslovakia.txt │ ├── urs-soviet-union.txt │ └── uy-uruguay.txt ├── 1974--west-germany ├── NOTES.md ├── cup.txt └── squads │ ├── ar-argentina.txt │ ├── au-australia.txt │ ├── bg-bulgaria.txt │ ├── br-brazil.txt │ ├── cl-chile.txt │ ├── frg-west-germany.txt │ ├── gdr-east-germany.txt │ ├── ht-haiti.txt │ ├── it-italy.txt │ ├── nl-netherlands.txt │ ├── pl-poland.txt │ ├── sco-scotland.txt │ ├── se-sweden.txt │ ├── uy-uruguay.txt │ ├── yug-yugoslavia.txt │ └── zai-zaire.txt ├── 1978--argentina ├── NOTES.md ├── cup.txt └── squads │ ├── ar-argentina.txt │ ├── at-austria.txt │ ├── br-brazil.txt │ ├── es-espana.txt │ ├── fr-france.txt │ ├── frg-west-germany.txt │ ├── hu-hungary.txt │ ├── ir-iran.txt │ ├── it-italy.txt │ ├── mx-mexico.txt │ ├── nl-netherlands.txt │ ├── pe-peru.txt │ ├── pl-poland.txt │ ├── sco-scotland.txt │ ├── se-sweden.txt │ └── tn-tunisia.txt ├── 1982--spain ├── NOTES.md ├── cup.txt └── squads │ ├── ar-argentina.txt │ ├── at-austria.txt │ ├── be-belgium.txt │ ├── br-brazil.txt │ ├── cl-chile.txt │ ├── cm-cameroon.txt │ ├── dz-algeria.txt │ ├── en-england.txt │ ├── es-espana.txt │ ├── fr-france.txt │ ├── frg-west-germany.txt │ ├── hn-honduras.txt │ ├── hu-hungary.txt │ ├── it-italy.txt │ ├── kw-kuwait.txt │ ├── nir-northern-ireland.txt │ ├── nz-new-zealand.txt │ ├── pe-peru.txt │ ├── pl-poland.txt │ ├── sco-scotland.txt │ ├── sv-el-salvador.txt │ ├── tch-czechoslovakia.txt │ ├── urs-soviet-union.txt │ └── yug-yugoslavia.txt ├── 1986--mexico ├── NOTES.md ├── cup.txt ├── cup_finals.txt └── squads │ ├── ar-argentina.txt │ ├── be-belgium.txt │ ├── bg-bulgaria.txt │ ├── br-brazil.txt │ ├── ca-canada.txt │ ├── dk-denmark.txt │ ├── dz-algeria.txt │ ├── en-england.txt │ ├── es-espana.txt │ ├── fr-france.txt │ ├── frg-west-germany.txt │ ├── hu-hungary.txt │ ├── iq-iraq.txt │ ├── it-italy.txt │ ├── kr-south-korea.txt │ ├── ma-morocco.txt │ ├── mx-mexico.txt │ ├── nir-northern-ireland.txt │ ├── pl-poland.txt │ ├── pt-portugal.txt │ ├── py-paraguay.txt │ ├── sco-scotland.txt │ ├── urs-soviet-union.txt │ └── uy-uruguay.txt ├── 1990--italy ├── NOTES.md ├── cup.txt ├── cup_finals.txt └── squads │ ├── ae-united-arab-emirates.txt │ ├── ar-argentina.txt │ ├── at-austria.txt │ ├── be-belgium.txt │ ├── br-brazil.txt │ ├── cm-cameroon.txt │ ├── co-colombia.txt │ ├── cr-costa-rica.txt │ ├── eg-egypt.txt │ ├── en-england.txt │ ├── es-espana.txt │ ├── frg-west-germany.txt │ ├── ie-ireland.txt │ ├── it-italy.txt │ ├── kr-south-korea.txt │ ├── nl-netherlands.txt │ ├── ro-romania.txt │ ├── sco-scotland.txt │ ├── se-sweden.txt │ ├── tch-czechoslovakia.txt │ ├── urs-soviet-union.txt │ ├── us-united-states.txt │ ├── uy-uruguay.txt │ └── yug-yugoslavia.txt ├── 1994--united-states ├── NOTES.md ├── cup.txt ├── cup_finals.txt └── squads │ ├── ar-argentina.txt │ ├── be-belgium.txt │ ├── bg-bulgaria.txt │ ├── bo-bolivia.txt │ ├── br-brazil.txt │ ├── ch-switzerland.txt │ ├── cm-cameroon.txt │ ├── co-colombia.txt │ ├── de-deutschland.txt │ ├── es-espana.txt │ ├── gr-greece.txt │ ├── ie-ireland.txt │ ├── it-italy.txt │ ├── kr-south-korea.txt │ ├── ma-morocco.txt │ ├── mx-mexico.txt │ ├── ng-nigeria.txt │ ├── nl-netherlands.txt │ ├── no-norway.txt │ ├── ro-romania.txt │ ├── ru-russia.txt │ ├── sa-saudi-arabia.txt │ ├── se-sweden.txt │ └── us-united-states.txt ├── 1998--france ├── NOTES.md ├── cup.txt ├── cup_finals.txt └── squads │ ├── ar-argentina.txt │ ├── at-austria.txt │ ├── be-belgium.txt │ ├── bg-bulgaria.txt │ ├── br-brazil.txt │ ├── cl-chile.txt │ ├── cm-cameroon.txt │ ├── co-colombia.txt │ ├── de-deutschland.txt │ ├── dk-denmark.txt │ ├── en-england.txt │ ├── es-espana.txt │ ├── fr-france.txt │ ├── hr-croatia.txt │ ├── ir-iran.txt │ ├── it-italy.txt │ ├── jm-jamaica.txt │ ├── jp-japan.txt │ ├── kr-south-korea.txt │ ├── ma-morocco.txt │ ├── mx-mexico.txt │ ├── ng-nigeria.txt │ ├── nl-netherlands.txt │ ├── no-norway.txt │ ├── py-paraguay.txt │ ├── ro-romania.txt │ ├── sa-saudi-arabia.txt │ ├── sco-scotland.txt │ ├── tn-tunisia.txt │ ├── us-united-states.txt │ ├── yug-yugoslavia.txt │ └── za-south-africa.txt ├── 2002--south-korea-n-japan ├── NOTES.md ├── cup.txt ├── cup_finals.txt └── squads │ ├── ar-argentina.txt │ ├── be-belgium.txt │ ├── br-brazil.txt │ ├── cm-cameroon.txt │ ├── cn-china.txt │ ├── cr-costa-rica.txt │ ├── de-deutschland.txt │ ├── dk-denmark.txt │ ├── ec-ecuador.txt │ ├── en-england.txt │ ├── es-espana.txt │ ├── fr-france.txt │ ├── hr-croatia.txt │ ├── ie-ireland.txt │ ├── it-italy.txt │ ├── jp-japan.txt │ ├── kr-south-korea.txt │ ├── mx-mexico.txt │ ├── ng-nigeria.txt │ ├── pl-poland.txt │ ├── pt-portugal.txt │ ├── py-paraguay.txt │ ├── ru-russia.txt │ ├── sa-saudi-arabia.txt │ ├── se-sweden.txt │ ├── si-slovenia.txt │ ├── sn-senegal.txt │ ├── tn-tunisia.txt │ ├── tr-turkey.txt │ ├── us-united-states.txt │ ├── uy-uruguay.txt │ └── za-south-africa.txt ├── 2006--germany ├── NOTES.md ├── cup.txt ├── cup_finals.txt └── squads │ ├── ao-angola.txt │ ├── ar-argentina.txt │ ├── au-australia.txt │ ├── br-brazil.txt │ ├── ch-switzerland.txt │ ├── ci-cote-d-ivoire.txt │ ├── cr-costa-rica.txt │ ├── cz-czech-republic.txt │ ├── de-deutschland.txt │ ├── ec-ecuador.txt │ ├── en-england.txt │ ├── es-espana.txt │ ├── fr-france.txt │ ├── gh-ghana.txt │ ├── hr-croatia.txt │ ├── ir-iran.txt │ ├── it-italy.txt │ ├── jp-japan.txt │ ├── kr-south-korea.txt │ ├── mx-mexico.txt │ ├── nl-netherlands.txt │ ├── pl-poland.txt │ ├── pt-portugal.txt │ ├── py-paraguay.txt │ ├── rs-serbia.txt │ ├── sa-saudi-arabia.txt │ ├── se-sweden.txt │ ├── tg-togo.txt │ ├── tn-tunisia.txt │ ├── tt-trinidad-tobago.txt │ ├── ua-ukraine.txt │ └── us-united-states.txt ├── 2010--south-africa ├── NOTES.md ├── cup.txt ├── cup_finals.txt └── squads │ ├── ar-argentina.txt │ ├── au-australia.txt │ ├── br-brazil.txt │ ├── ch-switzerland.txt │ ├── ci-cote-d-ivoire.txt │ ├── cl-chile.txt │ ├── cm-cameroon.txt │ ├── de-deutschland.txt │ ├── dk-denmark.txt │ ├── dz-algeria.txt │ ├── en-england.txt │ ├── es-espana.txt │ ├── fr-france.txt │ ├── gh-ghana.txt │ ├── gr-greece.txt │ ├── hn-honduras.txt │ ├── it-italy.txt │ ├── jp-japan.txt │ ├── kp-north-korea.txt │ ├── kr-south-korea.txt │ ├── mx-mexico.txt │ ├── ng-nigeria.txt │ ├── nl-netherlands.txt │ ├── nz-new-zealand.txt │ ├── pt-portugal.txt │ ├── py-paraguay.txt │ ├── rs-serbia.txt │ ├── si-slovenia.txt │ ├── sk-slovakia.txt │ ├── us-united-states.txt │ ├── uy-uruguay.txt │ └── za-south-africa.txt ├── 2014--brazil ├── NOTES.md ├── cup.txt ├── cup_finals.txt └── squads │ ├── ar-argentina.txt │ ├── au-australia.txt │ ├── ba-bosnia-herzegovina.txt │ ├── be-belgium.txt │ ├── br-brazil.txt │ ├── ch-switzerland.txt │ ├── ci-cote-d-ivoire.txt │ ├── cl-chile.txt │ ├── cm-cameroon.txt │ ├── co-colombia.txt │ ├── cr-costa-rica.txt │ ├── de-deutschland.txt │ ├── dz-algeria.txt │ ├── ec-ecuador.txt │ ├── en-england.txt │ ├── es-espana.txt │ ├── fr-france.txt │ ├── gh-ghana.txt │ ├── gr-greece.txt │ ├── hn-honduras.txt │ ├── hr-croatia.txt │ ├── ir-iran.txt │ ├── it-italy.txt │ ├── jp-japan.txt │ ├── kr-south-korea.txt │ ├── mx-mexico.txt │ ├── ng-nigeria.txt │ ├── nl-netherlands.txt │ ├── pt-portugal.txt │ ├── ru-russia.txt │ ├── us-united-states.txt │ └── uy-uruguay.txt ├── 2014--brazil_quali ├── africa.yml ├── africa_i.txt ├── africa_ii.txt ├── africa_playoffs.txt ├── asia.yml ├── asia_i.txt ├── asia_ii.txt ├── asia_iii.txt ├── asia_iv.txt ├── europe.txt ├── europe.yml ├── europe_a.txt ├── europe_b.txt ├── europe_c.txt ├── europe_d.txt ├── europe_e.txt ├── europe_f.txt ├── europe_g.txt ├── europe_h.txt ├── europe_i.txt ├── europe_playoffs.txt ├── north_america.yml ├── north_america_hex.txt ├── north_america_i.txt ├── north_america_ii.txt ├── north_america_iii.txt ├── pacific.yml ├── pacific_i.txt ├── pacific_ii.txt ├── pacific_iii.txt ├── playoffs.txt ├── playoffs.yml ├── south_america.txt └── south_america.yml ├── 2018--russia ├── NOTES.md ├── cup.txt └── cup_finals.txt ├── 2022--qatar ├── NOTES.md ├── cup.txt └── cup_finals.txt ├── 2026--usa ├── NOTES.md ├── cup.txt └── cup_finals.txt ├── LICENSE.md ├── NOTES.md └── README.md /.attic/2014.txt: -------------------------------------------------------------------------------- 1 | ################### 2 | # 2014 3 | 4 | world-cup!/2014--brazil/cup 5 | -------------------------------------------------------------------------------- /.attic/2014_quali.txt: -------------------------------------------------------------------------------- 1 | ################################## 2 | # World Cup Brazil 2014 Quali 3 | 4 | world-cup!/2014--brazil/quali/africa 5 | world-cup!/2014--brazil/quali/asia 6 | world-cup!/2014--brazil/quali/europe 7 | world-cup!/2014--brazil/quali/north_america 8 | world-cup!/2014--brazil/quali/pacific 9 | world-cup!/2014--brazil/quali/playoffs 10 | world-cup!/2014--brazil/quali/south_america 11 | 12 | -------------------------------------------------------------------------------- /.attic/2014_quali_europe.txt: -------------------------------------------------------------------------------- 1 | ########################## 2 | # 2014 Quali Europe 3 | 4 | world-cup!/2014--brazil/quali/europe 5 | 6 | -------------------------------------------------------------------------------- /.attic/2018.txt: -------------------------------------------------------------------------------- 1 | ################### 2 | # 2018 3 | 4 | world-cup!/2018--russia/cup 5 | -------------------------------------------------------------------------------- /.attic/all.txt: -------------------------------------------------------------------------------- 1 | ########### 2 | # All 3 | 4 | # Note: just latest world cup - e.g. Brazil 2014 w/ Quali(fiers) 5 | # 6 | # -- use history.txt for all world cups 7 | 8 | # -- Brazil 2014 Quali(fiers) 9 | world-cup!/2014--brazil/quali/africa 10 | world-cup!/2014--brazil/quali/asia 11 | world-cup!/2014--brazil/quali/europe 12 | world-cup!/2014--brazil/quali/north_america 13 | world-cup!/2014--brazil/quali/pacific 14 | world-cup!/2014--brazil/quali/playoffs 15 | world-cup!/2014--brazil/quali/south_america 16 | 17 | # -- Brazil 2014 18 | world-cup!/2014--brazil/cup 19 | 20 | -------------------------------------------------------------------------------- /.build/2014_quali.checksum.txt: -------------------------------------------------------------------------------- 1 | 2 | ## 3 | # 4 | # 5 | 6 | matches total: 820 matches (check if corret??) 7 | 8 | todo/fix: add matches per confed (continent 9 | add teams per confed 10 | 11 | -------------------------------------------------------------------------------- /.build/matches.txt: -------------------------------------------------------------------------------- 1 | # to generate use: 2 | # $ rake matches_stats 3 | # 4 | # teams and match and scores count OK 5 | 6 | ## dump from Jun/15 7 | 8 | 2010 World Cup | 32 | 64 | 145 (+2 a.e.t.) 9 | 2006 World Cup | 32 | 64 | 147 (+3 a.e.t.) 10 | 2002 World Cup | 32 | 64 | 161 (+3 a.e.t.) 11 | 1998 World Cup | 32 | 64 | 171 (+1 a.e.t.) 12 | 1994 World Cup | 24 | 52 | 141 (+3 a.e.t.) 13 | 1990 World Cup | 24 | 52 | 115 (+6 a.e.t.) 14 | 1986 World Cup | 24 | 52 | 132 (+5 a.e.t.) 15 | 1982 World Cup | 24 | 52 | 146 (+4 a.e.t.) 16 | 1978 World Cup | 16 | 38 | 102 (+2 a.e.t.) 17 | 1974 World Cup | 16 | 38 | 97 18 | 1970 World Cup | 16 | 32 | 95 (+7 a.e.t.) 19 | 1966 World Cup | 16 | 32 | 89 (+2 a.e.t.) 20 | 1962 World Cup | 16 | 32 | 89 21 | 1958 World Cup | 16 | 35 | 126 (+1 a.e.t.) 22 | 1954 World Cup | 16 | 26 | 140 (+4 a.e.t.) 23 | 1950 World Cup | 13 | 22 | 88 24 | 1938 World Cup | 15 | 18 | 84 (+9 a.e.t.) 25 | 1934 World Cup | 16 | 17 | 70 (+4 a.e.t.) 26 | 1930 World Cup | 13 | 18 | 70 27 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | #### 2 | # exclude all databases e.g. sport.db 3 | 4 | *.db 5 | 6 | 7 | ## 8 | # exclude for testing sandbox/ and tmp/ 9 | 10 | sandbox/ 11 | tmp/ 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /1930--uruguay/NOTES.md: -------------------------------------------------------------------------------- 1 | # World Cup 1930 Uruguay, 13 July - 30 July 2 | 3 | - start_at: 1930-07-13 4 | 5 | fix: add edition: or num: e.g. num: 1 or edition: 1 6 | 7 | 8 | ## 13 Teams 9 | - arg # Argentina 10 | - bra # Brazil 11 | - bol # Bolivia 12 | - chi # Chile 13 | - uru # Uruguay 14 | - per # Peru 15 | - par # Paraguay 16 | - mex # Mexico 17 | - usa # United States 18 | - fra # France 19 | - yug # Yugoslavia (-2003) 20 | - bel # Belgium 21 | - rou # Romania 22 | 23 | -------------------------------------------------------------------------------- /1930--uruguay/squads/be-belgium.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Belgium (BEL) 3 | # - 16 players 4 | 5 | - GK Arnold Badjou ## 3, Daring Club de Bruxelles Societe Royale 6 | - GK Jean De Bie ## 37, Royal Racing Club de Bruxelles 7 | 8 | - DF Theodore Nouwens ## 10, RC de Malines Societe Royale 9 | - DF Nic Hoydonckx ## 19, FC Excelsior Hasselt 10 | - DF Henri De Deken ## 0, Royal Antwerp FC 11 | 12 | - MF Jean De Clercq ## 5, Royal Antwerp FC 13 | - MF Pierre Braine ## 42, Royal Beerschot AC 14 | - MF Alexis Chantraine ## 0, Royal FC Liegeois 15 | - MF August Hellemans ## 4, Royal FC Malinois 16 | 17 | - FW Jan Diddens ## 21, RC de Malines Societe Royale 18 | - FW Gérard Delbeke ## 0, Royal FC Brugeois 19 | - FW Jacques Moeschal ## 15, Royal Racing Club de Bruxelles 20 | - FW Ferdinand Adams ## 21, SC Anderlechtois 21 | - FW André Saeys ## 0, Royal CS Brugeois 22 | - FW Louis Versyp ## 7, Royal FC Brugeois 23 | - FW Bernard Voorhoof ## 6, Liersche Sportkring 24 | 25 | -------------------------------------------------------------------------------- /1930--uruguay/squads/bo-bolivia.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Bolivia (BOL) 3 | # - 17 players 4 | 5 | - GK Miguel Murillo ## 0, Club Bolívar 6 | - GK Jesús Bermúdez ## 6, Oruro Royal 7 | 8 | - DF Luis Reyes Peñaranda ## 0, Universitario La Paz 9 | - DF Segundo Durandal ## 0, CS San Jose Oruro 10 | - DF Casiano Chavarría ## 6, Calavera La Paz 11 | 12 | - MF Renato Sáinz ## -, The Strongest 13 | - MF Miguel Brito ## 0, Oruro Royal 14 | - MF Juan Argote ## 0, Club Bolívar 15 | - MF Constantino Noya ## 0, Oruro Royal 16 | - MF Diógenes Lara ## 7, Club Bolívar 17 | - MF Jorge Valderrama ## 5, Oruro Royal 18 | 19 | - FW Gumersindo Gómez ## 0, Oruro Royal 20 | - FW Rafael Méndez ## 7, Universitario La Paz 21 | - FW Eduardo Reyes Ortíz ## 0, The Strongest 22 | - FW René Fernández ## 0, Alianza Oruro 23 | - FW José Bustamante ## 7, Litoral 24 | - FW Mario Alborta ## 7, Club Bolívar 25 | 26 | -------------------------------------------------------------------------------- /1930--uruguay/squads/br-brazil.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Brazil (BRA) 3 | # - 22 players 4 | 5 | - GK Velloso ## -, Fluminense 6 | - GK Joel ## -, América-RJ 7 | 8 | - DF Brilhante ## -, Vasco da Gama 9 | - DF Zé Luiz ## -, São Cristóvão 10 | - DF Itália ## -, Vasco da Gama 11 | - DF Oscarino ## -, Ypiranga Niterói 12 | 13 | - MF Fernando ## -, Fluminense 14 | - MF Hermógenes ## -, America-RJ 15 | - MF Fausto ## -, Vasco da Gama 16 | - MF Ivan Mariz ## -, Fluminense 17 | - MF Pamplona ## -, Botafogo 18 | - MF Fortes ## -, Fluminense 19 | 20 | - FW Manoelzinho ## -, Ypiranga Niterói 21 | - FW Nilo ## -, Botafogo 22 | - FW Moderato ## -, Flamengo 23 | - FW Carvalho Leite ## -, Botafogo 24 | - FW Poly ## -, Americano 25 | - FW Preguinho ## -, Fluminense 26 | - FW Russinho ## -, Vasco da Gama 27 | - FW Teóphilo ## -, São Cristóvão 28 | - FW Benedicto ## -, Botafogo 29 | - FW Araken ## -, Flamengo 30 | 31 | -------------------------------------------------------------------------------- /1930--uruguay/squads/cl-chile.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Chile (CHI) 3 | # - 19 players 4 | 5 | - GK Roberto Cortés ## -, Colo-Colo 6 | - GK Cesar Espinoza ## -, Santiago Wanderers 7 | 8 | - DF Víctor Morales ## -, Colo-Colo 9 | - DF Guillermo Riveros ## -, La Cruz Valparaiso 10 | - DF Ernesto Chaparro ## -, Colo-Colo 11 | - DF Ulises Poirier ## -, La Cruz Valparaiso 12 | 13 | - MF Guillermo Saavedra ## -, Colo-Colo 14 | - MF Arturo Torres ## -, Colo-Colo 15 | - MF Casimiro Torres ## -, Everton 16 | - MF Humberto Elgueta ## -, Santiago Wanderers 17 | 18 | - FW Tomás Ojeda ## -, Boca Juniors Antofagasta 19 | - FW Horacio Muñoz ## -, Arturo Fernández Vial 20 | - FW Arturo Coddou ## -, Arturo Fernández Vial 21 | - FW Carlos Schneeberger ## -, Colo-Colo 22 | - FW Guillermo Subiabre ## -, Colo-Colo 23 | - FW Juan Aguilera ## -, Audax Italiano 24 | - FW Guillermo Arellano ## -, Colo-Colo 25 | - FW Carlos Vidal ## -, Audax Italiano 26 | - FW Eberardo Villalobos ## -, Rangers 27 | 28 | -------------------------------------------------------------------------------- /1930--uruguay/squads/fr-france.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # France (FRA) 3 | # - 16 players 4 | 5 | - GK Alex Thépot ## 12, Red Star Paris 6 | - GK André Tassin ## 0, Racing Club de France 7 | 8 | - DF Marcel Capelle ## 4, Racing Club de France 9 | - DF Numa Andoire ## 0, FC Antibes 10 | - DF Étienne Mattler ## 1, FC Sochaux 11 | 12 | - MF Augustin Chantrel ## 8, CASG Paris 13 | - MF Jean Laurent ## 3, FC Sochaux 14 | - MF Marcel Pinel ## 3, Red Star Paris 15 | - MF Célestin Delmer ## 2, Amiens AC 16 | - MF Alexandre Villaplane ## 22, Racing Club de France 17 | 18 | - FW André Maschinot ## 3, FC Sochaux 19 | - FW Lucien Laurent ## 2, FC Sochaux 20 | - FW Marcel Langiller ## 8, Excelsior AC Roubaix 21 | - FW Edmond Delfour ## 6, Racing Club de France 22 | - FW Émile Veinante ## 3, Racing Club de France 23 | - FW Ernest Libérati ## 3, Amiens AC 24 | 25 | -------------------------------------------------------------------------------- /1930--uruguay/squads/mx-mexico.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Mexico (MEX) 3 | # - 17 players 4 | 5 | - GK Isidoro Sota ## -, América 6 | - GK Oscar Bonfiglio ## -, Marte 7 | 8 | - DF Francisco Garza Gutiérrez ## -, América 9 | - DF Manuel Rosas ## -, Atlante 10 | - DF Rafael Garza Gutiérrez ## -, América 11 | 12 | - MF Alfredo Sánchez ## -, América 13 | - MF Felipe Rosas ## -, Atlante 14 | - MF Raymundo Rodríguez ## -, Marte 15 | - MF Efraín Amézcua ## -, Atlante 16 | 17 | - FW Felipe Olivares ## -, Atlante 18 | - FW Luis Pérez ## -, Necaxa 19 | - FW Hilario López ## -, Marte 20 | - FW Roberto Gayón ## -, América 21 | - FW Jesús Castro ## -, Deportivo Mexico 22 | - FW José Ruíz ## -, Necaxa 23 | - FW Juan Carreño ## -, Atlante 24 | - FW Dionisio Mejía ## -, Atlante 25 | 26 | -------------------------------------------------------------------------------- /1930--uruguay/squads/pe-peru.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Peru (PER) 3 | # - 20 players 4 | 5 | - GK Jorge Pardon ## -, Sporting Tabaco 6 | - GK Juan Valdivieso ## -, Alianza Lima 7 | 8 | - DF Antonio Maquilón ## -, Tarapacá Ferroviario 9 | - DF Mario de las Casas ## -, Lawn Tennis de la Exposición 10 | - DF Arturo Fernández ## -, Universitario de Deportes 11 | - DF Alberto Soria ## -, Alianza Lima 12 | 13 | - MF Plácido Galindo ## -, Universitario de Deportes 14 | - MF Domingo García ## -, Alianza Lima 15 | - MF Julio Quintana ## -, Alianza Lima 16 | - MF Alberto Denegri ## -, Alianza Lima 17 | - MF Eduardo Astengo ## -, Universitario de Deportes 18 | 19 | - FW Demetrio Neyra ## -, Alianza Lima 20 | - FW Pablo Pacheco ## -, Universitario de Deportes 21 | - FW Julio Lores ## -, Association FBC 22 | - FW Lizardo Rodríguez Nue ## -, Sport Progreso 23 | - FW Jorge Sarmiento ## -, Alianza Lima 24 | - FW José María Lavalle ## -, Alianza Lima 25 | - FW Luis Souza Ferreira ## -, Universitario de Deportes 26 | - FW Carlos Cillóniz ## -, Universitario de Deportes 27 | - FW Alejandro Villanueva ## -, Alianza Lima 28 | 29 | -------------------------------------------------------------------------------- /1930--uruguay/squads/py-paraguay.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Paraguay (PAR) 3 | # - 22 players 4 | 5 | - GK Pedro Benítez ## -, Libertad 6 | - GK Modesto Denis ## -, Nacional 7 | 8 | - DF José Miracca ## -, Nacional 9 | - DF Quiterio Olmedo ## -, Nacional 10 | - DF Salvador Flores ## -, Cerro Porteño 11 | - DF Eustacio Chamorro ## -, Presidente Hayes 12 | 13 | - MF Francisco Aguirre ## -, Olimpia 14 | - MF Eusebio Díaz ## -, Guaraní 15 | - MF Santiago Benítez ## -, Olimpia 16 | - MF Romildo Etcheverry ## -, Olimpia 17 | - MF Diego Florentín ## -, River Plate 18 | - MF Tranquilino Garcete ## -, Libertad 19 | 20 | - FW Delfín Benítez Cáceres ## -, Libertad 21 | - FW Aurelio González ## -, Olimpia 22 | - FW Saguier Carreras ## -, Sportivo Luqueño 23 | - FW Lino Nessi ## -, Libertad 24 | - FW Diógenes Domínguez ## -, Sportivo Luqueño 25 | - FW Amadeo Ortega ## -, River Plate 26 | - FW Bernabé Rivera ## -, Sportivo Luqueño 27 | - FW Gerardo Romero ## -, Libertad 28 | - FW Luis Vargas Peña ## -, Olimpia 29 | - FW Jacinto Villalba ## -, Cerro Porteño 30 | 31 | -------------------------------------------------------------------------------- /1930--uruguay/squads/ro-romania.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Romania (ROU) 3 | # - 15 players 4 | 5 | - GK Samuel Zauber ## 0, Maccabi Bucureşti 6 | - GK Ion Lǎpuşneanu ## 3, Sportul Studenţesc 7 | 8 | - DF Iosif Czako ## 1, UDR Reşiţa 9 | - DF Rudolf Bürger ## 4, Chinezul Timişoara 10 | - DF Adalbert Steiner ## 9, Chinezul Timişoara 11 | 12 | - MF Alfred Eisenbeisser ## 0, Dragoş Vodă Cernăuţi 13 | - MF Emerich Vogl ## 10, Juventus Bucureşti 14 | - MF Corneliu Robe ## 0, Olympia Bucureşti 15 | - MF Ladislau Raffinsky ## 4, Juventus Bucuresti 16 | 17 | - FW Constantin Stanciu ## 4, Venus Bucureşti 18 | - FW Miklós Kovács ## 3, Banatul Timişoara 19 | - FW Ilie Subăşeanu ## 2, Olympia Bucureşti 20 | - FW Adalbert Deşu ## 4, UDR Reşiţa 21 | - FW Rudolf Wetzer ## 12, Juventus Bucureşti 22 | - FW Ştefan Barbu ## 4, Gloria Arad 23 | 24 | -------------------------------------------------------------------------------- /1930--uruguay/squads/us-united-states.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # United States (USA) 3 | # - 16 players 4 | 5 | - GK Jimmy Douglas ## 5, New York Nationals 6 | 7 | - DF Alexander Wood ## 0, Detroit Holley Carburetor 8 | - DF George Moorhouse ## 1, New York Giants 9 | - DF Frank Vaughn ## 0, Ben Millers 10 | - DF Raphael Tracey ## 0, Ben Millers 11 | - DF James Gentle ## 0, Philadelphia Cricket Club 12 | - DF Jimmy Gallagher ## 2, New York Nationals 13 | 14 | - MF Billy Gonsalves ## 0, Fall River Marksmen 15 | - MF Philip Slone ## 0, New York Giants 16 | - MF Jim Brown ## 3, New York Giants 17 | - MF Arnie Oliver ## 0, Providence Gold Bugs 18 | - MF Andy Auld ## 1, Providence Gold Bugs 19 | 20 | - FW Bert Patenaude ## 0, Fall River Marksmen 21 | - FW Tom Florie ## 2, New Bedford Whalers 22 | - FW Mike Bookie ## 0, Cleveland Slavia 23 | - FW Bart McGhee ## 0, New York Nationals 24 | 25 | -------------------------------------------------------------------------------- /1930--uruguay/squads/uy-uruguay.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Uruguay (URU) 3 | # - 22 players 4 | 5 | - GK Enrique Ballestrero ## 1, Rampla Juniors 6 | - GK Miguel Capuccini ## 6, Peñarol 7 | 8 | - DF Emilio Recoba ## 5, Nacional 9 | - DF Ernesto Mascheroni ## -, Olimpia 10 | - DF Domingo Tejera ## 15, Montevideo Wanderers 11 | - DF José Nasazzi ## 28, Bella Vista 12 | 13 | - MF José Andrade ## 30, Nacional 14 | - MF Lorenzo Fernández ## 20, Peñarol 15 | - MF Carlos Riolfo ## 2, Peñarol 16 | - MF Álvaro Gestido ## 10, Peñarol 17 | - MF Conduelo Píriz ## 7, Nacional 18 | - MF Ángel Melogno ## 5, Bella Vista 19 | 20 | - FW Pedro Petrone ## 28, Nacional 21 | - FW Héctor Castro ## 17, Nacional 22 | - FW Pedro Cea ## 21, Nacional 23 | - FW Santos Iriarte ## -, Racing Club 24 | - FW Juan Carlos Calvo ## -, Miramar Misiones 25 | - FW Pablo Dorado ## 2, Bella Vista 26 | - FW Zoilo Saldombide ## 14, Nacional 27 | - FW Héctor Scarone ## 49, Nacional 28 | - FW Peregrino Anselmo ## 8, Peñarol 29 | - FW Santos Urdinarán ## 19, Nacional 30 | 31 | -------------------------------------------------------------------------------- /1930--uruguay/squads/yug-yugoslavia.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Yuguslavia (YUG) 3 | # - 17 players 4 | 5 | - GK Milan Stojanović ## 0, BSK Beograd 6 | - GK Milovan Jakšić ## 2, SK Soko 7 | 8 | - DF Dragoslav Mihajlović ## 1, BSK Beograd 9 | - DF Dragomir Tošić ## 0, BSK Beograd 10 | - DF Milutin Ivković ## 22, SK Soko 11 | 12 | - MF Milorad Arsenijević ## 16, SK Beograd 13 | - MF Teofilo Spasojević ## 1, Jugoslavija Beograd 14 | - MF Momčilo Đokić ## 2, Jugoslavija Beograd 15 | - MF Ljubiša Stefanović ## 0, FC Sète 16 | 17 | - FW Blagoje Marjanović ## 15, SK Beograd 18 | - FW Branislav Sekulić ## 3, SC Montpellier 19 | - FW Dragutin Najdanović ## 3, BSK Beograd 20 | - FW Branislav Hrnjiček ## 4, Jugoslavija Beograd 21 | - FW Bozidar Marković ## 0, Vojvodina Novi Sad 22 | - FW Aleksandar Tirnanić ## 5, BSK Beograd 23 | - FW Ivan Bek ## 2, FC Sète 24 | - FW Đorđe Vujadinović ## 4, BSK Beograd 25 | 26 | -------------------------------------------------------------------------------- /1934--italy/NOTES.md: -------------------------------------------------------------------------------- 1 | # World Cup 1934 Italy, 27 May – 10 June 2 | 3 | - start_at: 1934-05-27 4 | 5 | 6 | fix: add edition: or num: e.g. num: 2 or edition: 2 7 | 8 | # 16 Teams 9 | - arg # Argentina 10 | - bra # Brazil 11 | - usa # United States 12 | - aut # Austria 13 | - bel # Belgium 14 | - swe # Sweden 15 | - fra # France 16 | - ger # Germany 17 | - esp # Spain 18 | - hun # Hungary 19 | - sui # Switzerland 20 | - ned # Netherlands 21 | - ita # Italy 22 | - tch # Czechoslovakia 23 | - rou # Romania 24 | - egy # Egypt 25 | -------------------------------------------------------------------------------- /1934--italy/squads/ar-argentina.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Argentina (ARG) 3 | # - 18 players 4 | 5 | - GK Héctor Freschi ## -, Sarmiento de Resistencia 6 | - GK Ángel Grippa ## -, Club Sportivo Alsina 7 | 8 | - DF Enrique Chimento ## -, Barracas Central 9 | - DF Ernesto Belis ## -, Defensores de Belgrano 10 | - DF Ramón Astudillo ## -, Colón de Santa Fe 11 | - DF Juan Pedevilla ## -, Club Atletico Estudiantil Porteño 12 | 13 | - MF Ernesto Albarracín ## -, Club Sportivo Buenos Aires 14 | - MF Constantino Urbieta Sosa ## -, Godoy Cruz 15 | - MF José Nehin ## -, Sportivo Desamparados 16 | - MF Alfonso Lorenzo ## -, Barracas Central 17 | - MF Arcadio López ## -, Club Sportivo Buenos Aires 18 | 19 | - FW Luis Izzeta ## -, Defensores de Belgrano 20 | - FW Roberto Irañeta ## -, Gimnasia y Esgrima de Mendoza 21 | - FW Alberto Galateo ## -, Unión de Santa Fe 22 | - FW Francisco Pérez ## -, Almagro 23 | - FW Francisco Rúa ## -, Sportivo Dock Sud 24 | - FW Alfredo Devincenzi ## -, Club Atlético Estudiantil Porteño 25 | - FW Federico Wilde ## -, Unión de Santa Fe 26 | 27 | -------------------------------------------------------------------------------- /1934--italy/squads/at-austria.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Austria (AUT) 3 | # - 22 players 4 | 5 | - GK Rudolf Raftl ## 1, Rapid Wien 6 | - GK Peter Platzer ## 10, Admira Wien 7 | - GK Friederich Franzl ## 13, Wiener SC 8 | 9 | - DF Willibald Schmaus ## 0, First Vienna 10 | - DF Anton Janda ## 9, Admira Wien 11 | - DF Karl Sesta ## 16, Wiener SC 12 | - DF Franz Cisar ## 5, Wiener SC 13 | 14 | - MF Josef Smistik ## 28, Rapid Wien 15 | - MF Johann Urbanek ## 0, Admira Wien 16 | - MF Franz Wagner ## 7, Rapid Wien 17 | - MF Leopold Hofmann ## 19, First Vienna 18 | 19 | - FW Anton Schall ## 26, Admira Wien 20 | - FW Matthias Kaburek ## 2, Rapid Wien 21 | - FW Johann Horvath ## 41, First Vienna 22 | - FW Matthias Sindelar ## 29, Austria Wien 23 | - FW Josef Hassmann ## 0, First Vienna 24 | - FW Josef Stroh ## 0, Austria Wien 25 | - FW Josef Bican ## 6, Rapid Wien 26 | - FW Rudolf Viertl ## 9, Austria Wien 27 | - FW Georg Braun ## 6, Wiener SC 28 | - FW Hans Walzhofer ## 4, Wacker Wien 29 | - FW Karl Zischek ## 20, Wacker Wien 30 | 31 | -------------------------------------------------------------------------------- /1934--italy/squads/br-brazil.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Brazil (BRA) 3 | # - 20 players 4 | 5 | - GK Germano ## -, Botafogo 6 | - GK Pedrosa ## -, Botafogo 7 | 8 | - DF Luiz Luz ## -, Americano Rio Grande (BRA) 9 | - DF Pamplona ## -, Botafogo 10 | - DF Octacílio ## -, Botafogo 11 | - DF Sylvio Hoffman ## -, São Paulo da Floresta 12 | 13 | - MF Canalli ## -, Botafogo (BRA) 14 | - MF Bile ## -, Ypiranga (BRA) 15 | - MF Tinoco ## -, Vasco da Gama 16 | - MF Waldyr ## -, Botafogo 17 | - MF Almeida ## -, EC Bahia 18 | - MF Martim ## -, Botafogo 19 | - MF Ariel ## -, Botafogo 20 | 21 | - FW Luisinho ## -, São Paulo da Floresta 22 | - FW Patesko ## -, Nacional 23 | - FW Leônidas ## -, Vasco da Gama 24 | - FW Carvalho Leite ## -, Botafogo 25 | - FW Áttila ## -, Botafogo 26 | - FW Armandinho ## -, São Paulo da Floresta 27 | - FW Waldemar de Britto ## -, São Paulo da Floresta 28 | 29 | -------------------------------------------------------------------------------- /1934--italy/squads/fr-france.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # France (FRA) 3 | # - 22 players 4 | 5 | - GK René Llense ## 0, FC Sete 6 | - GK Robert Défossé ## 8, Lille OSC 7 | - GK Alex Thépot ## 28, Red Star Paris 8 | 9 | - DF Jacques Mairesse ## 5, Red Star Paris 10 | - DF Jules Vandooren ## 7, OC Lillois 11 | - DF Étienne Mattler ## 22, FC Sochaux 12 | - DF Joseph Gonzales ## 0, Fives 13 | 14 | - MF Louis Gabrillargues ## 0, FC Sete 15 | - MF Célestin Delmer ## 12, Amiens SC 16 | - MF Roger Rio ## 10, FC Rouen 17 | - MF Edmond Delfour ## 25, RC Paris 18 | - MF Georges Beaucourt ## 0, Lille OSC 19 | - MF Noël Lietaer ## 5, Excelsior Roubaix 20 | - MF Georges Verriest ## 4, RC Roubaix 21 | 22 | - FW Lucien Laurent ## 9, CA Paris 23 | - FW Pierre Korb ## 12, FC Mulhouse 24 | - FW Jean Nicolas ## 11, FC Rouen 25 | - FW Fritz Keller ## 1, Strasbourg 26 | - FW Roger Courtois ## 1, FC Sochaux 27 | - FW Alfred Aston ## 4, Red Star Paris 28 | - FW Émile Veinante ## 11, RC Paris 29 | - FW Joseph Alcazar ## 9, Olympique de Marseille 30 | 31 | -------------------------------------------------------------------------------- /1934--italy/squads/it-italy.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Italy (ITA) 3 | # - 22 players 4 | 5 | - GK Giuseppe Cavanna ## 0, Napoli 6 | - GK Guido Masetti ## 0, Roma 7 | - GK Gianpiero Combi ## 42, Juventus 8 | 9 | - DF Luigi Allemandi ## 9, Ambrosiana-Inter 10 | - DF Umberto Caligaris ## 59, Juventus 11 | - DF Virginio Rosetta ## 51, Juventus 12 | - DF Eraldo Monzeglio ## 12, Bologna 13 | 14 | - MF Luigi Bertolini ## 19, Juventus 15 | - MF Mario Pizziolo ## 8, Fiorentina 16 | - MF Luis Monti ## 10, Juventus 17 | - MF Attilio Ferraris ## 22, Roma 18 | - MF Armando Castellazzi ## 2, Ambrosiana-Inter 19 | - MF Giuseppe Meazza ## 22, Ambrosiana-Inter 20 | - MF Mario Varglien ## 0, Juventus 21 | 22 | - FW Anfilogino Guarisi ## 5, Lazio 23 | - FW Giovanni Ferrari ## 19, Juventus 24 | - FW Attilio Demaria ## 1, Ambrosiana-Inter 25 | - FW Raimundo Orsi ## 27, Juventus 26 | - FW Felice Borel ## 2, Juventus 27 | - FW Pietro Arcari ## 0, Milan 28 | - FW Angelo Schiavio ## 17, Bologna 29 | - FW Enrique Guaita ## 2, Roma 30 | 31 | -------------------------------------------------------------------------------- /1938--france/NOTES.md: -------------------------------------------------------------------------------- 1 | # World Cup 1938 France, 4 June - 19 June 2 | 3 | - start_at: 1938-06-04 4 | - fix: add edition: or num: e.g. num: 3 or edition: 3 5 | 6 | ## 15 Teams 7 | 8 | ``` 9 | ## Asia 10 | - dei # Dutch East Indies 11 | ## Europe 12 | - bel # Belgium 13 | - tch # Czechoslovakia 14 | - fra # France 15 | - ger # Germany 16 | - hun # Hungary 17 | - ita # Italy 18 | - ned # Netherlands 19 | - nor # Norway 20 | - pol # Poland 21 | - rou # Romania 22 | - swe # Sweden 23 | - sui # Switzerland 24 | ## North and Central America 25 | - cub # Cuba 26 | ## South America 27 | - bra # Brazil 28 | ``` 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /1938--france/squads/br-brazil.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Brazil (BRA) 3 | # - 22 players 4 | 5 | - GK Walter ## -, Flamengo 6 | - GK Batatais ## -, Fluminense 7 | 8 | - DF Nariz ## -, Botafogo 9 | - DF Machado ## -, Fluminense 10 | - DF Jaú ## -, Corinthians 11 | - DF Domingos da Guia ## -, Flamengo 12 | 13 | - MF Afonsinho ## -, São Cristóvão 14 | - MF Britto ## -, América Mineiro 15 | - MF Argemiro ## -, Portuguesa Santista 16 | - MF Martim ## -, Botafogo 17 | - MF Brandão ## -, Corinthians 18 | - MF Zezé Procópio ## -, Botafogo 19 | 20 | - FW Hércules ## -, Fluminense 21 | - FW Luizinho ## -, SS Palestra Italia 22 | - FW Lopes ## -, Corinthians 23 | - FW Patesko ## -, Botafogo 24 | - FW Perácio ## -, Botafogo 25 | - FW Roberto ## -, São Cristóvão 26 | - FW Romeu ## -, Fluminense 27 | - FW Tim ## -, Fluminense 28 | - FW Leônidas ## -, Flamengo 29 | - FW Niginho ## -, Vasco da Gama 30 | 31 | -------------------------------------------------------------------------------- /1938--france/squads/cu-cuba.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Cuba (CUB) 3 | # - 15 players 4 | 5 | - GK Juan Ayra ## -, Hispano America 6 | - GK Benito Carvajales ## -, Centro Gallego 7 | 8 | - DF Manuel Chorens ## -, CD Centro Gallego 9 | - DF Jacinto Barquín ## -, Juventud Aturiana 10 | 11 | - MF Pedro Berges ## -, Iberia Havana 12 | - MF José Antonio Rodríguez ## -, CD Centro Gallego 13 | - MF Joaquín Arias ## -, Juventud Asturiana 14 | 15 | - FW Tomás Fernández ## -, CD Centro Gallego 16 | - FW Pedro Ferrer ## -, Iberia Havana 17 | - FW José Magriñá ## -, CD Centro Gallego 18 | - FW Carlos Oliveira ## -, Hispano America 19 | - FW Juan Alonzo ## -, Centro Gallego 20 | - FW Héctor Socorro ## -, Iberia Habana 21 | - FW Mario Sosa ## -, Iberia Havana 22 | - FW Juan Tuñas ## -, Centro Gallego 23 | 24 | -------------------------------------------------------------------------------- /1938--france/squads/dei-dutch-east-indies.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Dutch East Indies (DEI) 3 | # - 17 players 4 | 5 | - GK Tan "Bing" Mo Heng ## -, HCTNH Soerabaja 6 | - GK Van Beusekom L.N. ## -, Hercules Batavia 7 | 8 | - DF Jack Samuels Kolle ## -, Excelsior Soerabaja 9 | - DF J. Harting ## -, HBS Soerabaja 10 | - DF Frans G. Hu Kon ## -, Sparta Batavia 11 | 12 | - MF Sutan Anwar ## -, VIOS Batavia 13 | - MF Achmad Nawir ## -, HBS Soerabaja 14 | - MF G. Van Den Burgh ## -, SVV Semarang 15 | - MF Frans Alfred Meeng ## -, SVVB Batavia 16 | - MF G.H.V.L. Faulhaber ## -, Djocoja Djokjakarta 17 | 18 | - FW Tan Hong Djien ## -, Tiong Hoa Soerabaja 19 | - FW M.J. Hans Taihuttu ## -, VV Jong Ambon Batavia 20 | - FW Suvarte Soedarmadji ## -, HBS Soerabaja 21 | - FW Tan See Han ## -, Gie Hoo Soerabaja 22 | - FW R. Telwe ## -, HBS Soerabaja 23 | - FW Isaak "Tjaak" Pattiwael ## -, VV Jong Ambon Batavia 24 | - FW Hendrikus V. "Henk" Zomers ## -, Hercules Batavia 25 | 26 | -------------------------------------------------------------------------------- /1938--france/squads/it-italy.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Italy (ITA) 3 | # - 22 players 4 | 5 | - GK Aldo Olivieri ## 8, Lucchese 6 | - GK Guido Masetti ## 1, Roma 7 | - GK Carlo Ceresoli ## 7, Bologna 8 | 9 | - DF Eraldo Monzeglio ## 32, Roma 10 | - DF Alfredo Foni ## 6, Juventus 11 | - DF Pietro Rava ## 11, Juventus 12 | 13 | - MF Renato Olmi ## 0, Ambrosiana-Inter 14 | - MF Aldo Donati ## 0, Roma 15 | - MF Mario Perazzolo ## 2, Genoa 16 | - MF Bruno Chizzo ## 0, Triestina 17 | - MF Mario Genta ## 0, Genoa 18 | - MF Michele Andreolo ## 11, Bologna 19 | - MF Pietro Serantoni ## 9, Roma 20 | - MF Giuseppe Meazza ## 43, Ambrosiana-Inter 21 | - MF Ugo Locatelli ## 7, Ambrosiana-Inter 22 | 23 | - FW Pietro Ferraris ## 3, Ambrosiana-Inter 24 | - FW Giovanni Ferrari ## 38, Ambrosiana-Inter 25 | - FW Pietro Pasinati ## 10, Triestina 26 | - FW Gino Colaussi ## 12, Triestina 27 | - FW Silvio Piola ## 14, Lazio 28 | - FW Amedeo Biavati ## 0, Bologna 29 | - FW Sergio Bertoni ## 3, Pisa 30 | 31 | -------------------------------------------------------------------------------- /1938--france/squads/no-norway.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Norway (NOR) 3 | # - 22 players 4 | 5 | - GK Sverre Nordby ## 2, Mjøndalen 6 | - GK Anker Kihle ## 0, Storm 7 | - GK Henry Johansen ## 44, Vålerengen 8 | 9 | - DF Øivind Holmsen ## 22, Lyn 10 | - DF Jørgen Juve ## 45, Lyn 11 | - DF Roald Amundsen ## 0, Mjøndalen 12 | - DF Sigurd Hansen ## 0, Fram Larvik 13 | - DF Nils Eriksen ## 34, Odd 14 | - DF Rolf Johannessen ## 11, Fredrikstad 15 | 16 | - MF Oddmund Andersen ## 1, Mjøndalen 17 | - MF Gunnar Andreassen ## 0, Fredrikstad 18 | - MF Rolf Holmberg ## 18, Odd 19 | - MF Kristian Henriksen ## 12, Lyn 20 | 21 | - FW Arne Brustad ## 19, Lyn 22 | - FW Reidar Kvammen ## 29, Viking 23 | - FW Magnar Isaksen ## 12, Lyn 24 | - FW Arne Ileby ## 0, Fredrikstad 25 | - FW Hjalmar Andresen ## 0, Sarpsborg 26 | - FW Odd Frantzen ## 14, Hardy 27 | - FW Knut Brynildsen ## 1, Fredrikstad 28 | - FW Alf Martinsen ## 17, Lillestrøm 29 | - FW Sverre Berglie ## -, Drafn 30 | 31 | -------------------------------------------------------------------------------- /1950--brazil/NOTES.md: -------------------------------------------------------------------------------- 1 | # World Cup 1950 Brazil, 24 June - 16 July 2 | 3 | - start_at: 1950-06-24 4 | - fix: add edition: or num: e.g. num: 4 or edition: 4 5 | 6 | ## 13 Teams 7 | 8 | ``` 9 | ## Europe 10 | - eng # England 11 | - ita # Italy 12 | - esp # Spain 13 | - swe # Sweden 14 | - sui # Switzerland 15 | - yug # Yugoslavia 16 | ## North and Central America 17 | - mex # Mexico 18 | - usa # USA 19 | ## South America 20 | - bol # Bolivia 21 | - bra # Brazil 22 | - chi # Chile 23 | - par # Paraguay 24 | - uru # Uruguay 25 | ``` 26 | 27 | -------------------------------------------------------------------------------- /1950--brazil/squads/br-brazil.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Brazil (BRA) 3 | # - 22 players 4 | 5 | - GK Barbosa ## 13, Vasco da Gama 6 | - GK Castilho ## 2, Fluminense 7 | 8 | - DF Nílton Santos ## 5, Botafogo 9 | - DF Ely ## 8, Vasco da Gama 10 | - DF Juvenal ## 4, Flamengo 11 | - DF Augusto ## 12, Vasco da Gama 12 | - DF Nena ## 5, Internacional 13 | 14 | - MF Noronha ## 15, São Paulo 15 | - MF Danilo ## 15, Vasco da Gama 16 | - MF Bauer ## 6, São Paulo 17 | - MF Bigode ## 5, Flamengo 18 | - MF Rui ## 27, São Paulo 19 | 20 | - FW Alfredo ## 0, Vasco da Gama 21 | - FW Baltazar ## 4, Corinthians 22 | - FW Chico ## 15, Vasco da Gama 23 | - FW Jair ## 32, Palmeiras 24 | - FW Ademir ## 25, Vasco da Gama 25 | - FW Maneca ## 3, Vasco da Gama 26 | - FW Zizinho ## 30, Bangu 27 | - FW Friaça ## 6, São Paulo 28 | - FW Rodrigues ## 2, Fluminense 29 | - FW Adãozinho ## 2, Internacional 30 | 31 | -------------------------------------------------------------------------------- /1950--brazil/squads/it-italy.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Italy (ITA) 3 | # - 22 players 4 | 5 | - GK Giuseppe Moro ## 2, Torino 6 | - GK Giuseppe Casari ## 2, Atalanta 7 | - GK Lucidio Sentimenti ## 7, Lazio 8 | 9 | - DF Attilio Giovannini ## 4, Internazionale 10 | - DF Carlo Annovazzi ## 10, Milan 11 | - DF Zeffiro Furiassi ## 0, Lazio 12 | - DF Ivano Blason ## 0, Triestina 13 | - DF Osvaldo Fattori ## 3, Internazionale 14 | 15 | - MF Leandro Remondini ## 0, Lazio 16 | - MF Giacomo Mari ## 3, Juventus 17 | - MF Carlo Parola ## 9, Juventus 18 | - MF Augusto Magli ## 0, Fiorentina 19 | - MF Omero Tognon ## 4, Milan 20 | 21 | - FW Benito Lorenzi ## 5, Internazionale 22 | - FW Riccardo Carapellese ## 11, Torino 23 | - FW Emilio Caprile ## 2, Atalanta 24 | - FW Ermes Muccinelli ## 2, Juventus 25 | - FW Egisto Pandolfini ## 0, Fiorentina 26 | - FW Gino Cappello ## 3, Bologna 27 | - FW Aldo Campatelli ## 6, Internazionale 28 | - FW Giampiero Boniperti ## 6, Juventus 29 | - FW Amedeo Amadei ## 6, Internazionale 30 | 31 | -------------------------------------------------------------------------------- /1950--brazil/squads/py-paraguay.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Paraguay (PAR) 3 | # - 22 players 4 | 5 | - GK Marcelino Vargas ## -, Libertad 6 | - GK Pablo Centurión ## -, Cerro Porteño 7 | 8 | - DF Manuel Gavilán ## -, Libertad 9 | - DF Elioro Paredes ## -, Sportivo Luqueño 10 | - DF Antonio Cabrera ## -, Libertad 11 | - DF Casiano Céspedes ## -, Olimpia 12 | - DF Alberto González ## -, Olimpia 13 | 14 | - MF Castor Cantero ## -, Olimpia 15 | - MF Victoriano Leguizamón ## -, Olimpia 16 | - MF Armando González ## -, Guaraní 17 | - MF Melanio Baez ## -, Nacional 18 | 19 | - FW Atilio López ## -, Nacional 20 | - FW Lorenzo Calonga ## -, Guaraní 21 | - FW Juan Cañete ## -, Presidente Hayes 22 | - FW Ángel Berni ## -, Sportivo Luqueño 23 | - FW César López Fretes ## -, Olimpia 24 | - FW Hilarión Osorio ## -, Sportivo Luqueño 25 | - FW Marcial Avalos ## -, Cerro Porteño 26 | - FW Darío Saguier ## -, Cerro Porteño 27 | - FW Francisco Sosa ## -, Cerro Porteño 28 | - FW Leongino Unzaim ## -, Olimpia 29 | - FW Enrique Avalos ## -, Cerro Porteño 30 | 31 | -------------------------------------------------------------------------------- /1950--brazil/squads/us-united-states.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # United States (USA) 3 | # - 19 players 4 | 5 | - GK Frank Borghi ## 4, St. Louis Simpkins-Ford 6 | - GK Gino Gardassanich ## 0, Chicago Slovaks 7 | 8 | - DF Robert Annis ## 1, St. Louis Simpkins-Ford 9 | - DF Joe Maca ## 0, Brooklyn Hispano 10 | - DF Geoff Coombes ## 0, Chicago Vikings 11 | - DF Harry Keough ## 3, St. Louis McMahon 12 | 13 | - MF Charlie Colombo ## 7, St. Louis Simpkins-Ford 14 | - MF Ed McIlvenny ## 0, Philadelphia Nationals 15 | - MF Walter Bahr ## 7, Philadelphia Nationals 16 | 17 | - FW Benny McLaughlin ## 0, Philadelphia Nationals 18 | - FW Robert Craddock ## 0, Pittsburgh Harmarville S.C. 19 | - FW Joe Gaetjens ## 0, Brookhattan 20 | - FW Nicholas DiOrio ## 0, Pittsburgh Harmarville S.C. 21 | - FW Frank Moniz ## 0, Ponta Delgada S.C. 22 | - FW Gino Pariani ## 2, St. Louis Simpkins-Ford 23 | - FW Ed Souza ## 2, Ponta Delgada S.C. 24 | - FW John Souza ## 9, Ponta Delgada S.C. 25 | - FW Frank Wallace ## 4, St. Louis Simpkins-Ford 26 | - FW Adam Wolanin ## 0, Chicago Eagles 27 | 28 | -------------------------------------------------------------------------------- /1950--brazil/squads/uy-uruguay.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Uruguay (URU) 3 | # - 22 players 4 | 5 | - GK Aníbal Paz ## 23, Nacional 6 | - GK Roque Máspoli ## 27, Peñarol 7 | 8 | - DF Schubert Gambetta ## 39, Nacional 9 | - DF Eusebio Tejera ## 28, Nacional 10 | - DF Juan Carlos González ## 3, Peñarol 11 | - DF Matías González ## 7, Cerro 12 | - DF William Martínez ## 3, Rampla Juniors 13 | - DF Héctor Vilches ## 5, Cerro 14 | 15 | - MF Víctor Rodríguez Andrade ## 11, Central 16 | - MF Obdulio Varela ## 39, Peñarol 17 | - MF Washington Ortuño ## 0, Peñarol 18 | - MF Rodolfo Pini ## 6, Nacional 19 | 20 | - FW Oscar Míguez ## 5, Peñarol 21 | - FW Alcides Ghiggia ## 3, Peñarol 22 | - FW Luis Rijo ## 0, Central 23 | - FW Julio Pérez ## 7, Nacional 24 | - FW Carlos Romero ## 3, Danubio 25 | - FW Juan Alberto Schiaffino ## 9, Peñarol 26 | - FW Juan Burgueño ## 4, Danubio 27 | - FW Rubén Morán ## 2, Cerro 28 | - FW Ernesto Vidal ## 0, Peñarol 29 | - FW Julio César Britos ## 10, Peñarol 30 | 31 | -------------------------------------------------------------------------------- /1954--switzerland/NOTES.md: -------------------------------------------------------------------------------- 1 | # World Cup 1954 Switzerland, 16 June - 4 July 2 | 3 | - start_at: 1954-06-16 4 | - fix: add edition: or num: e.g. num: 5 or edition: 5 5 | 6 | ## 16 Teams 7 | 8 | ``` 9 | ## Asia 10 | - kor # Korea Republic 11 | ## Europe 12 | - aut # Austria 13 | - bel # Belgium 14 | - tch # Czechoslovakia 15 | - eng # England 16 | - fra # France 17 | - frg # West Germany 18 | - hun # Hungary 19 | - ita # Italy 20 | - sco # Scotland 21 | - sui # Switzerland 22 | - tur # Turkey 23 | - yug # Yugoslavia 24 | ## North and Central America 25 | - mex # Mexico 26 | ## South America 27 | - bra # Brazil 28 | - uru # Uruguay 29 | ``` 30 | 31 | -------------------------------------------------------------------------------- /1954--switzerland/squads/br-brazil.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Brazil (BRA) 3 | # - 22 players 4 | 5 | (1) GK Castilho ## 13, Fluminense 6 | (21) GK Veludo ## 3, Fluminense 7 | (22) GK Cabeção ## -, Corinthians 8 | 9 | (2) DF Djalma Santos ## 14, Portuguesa 10 | (3) DF Nílton Santos ## 18, Botafogo 11 | (4) DF Brandãozinho ## 12, Portuguesa 12 | (12) DF Paulinho ## -, Vasco da Gama 13 | (13) DF Alfredo ## -, São Paulo FC 14 | (15) DF Mauro ## 4, São Paulo FC 15 | 16 | (5) MF Pinheiro ## 13, Fluminense 17 | (6) MF Bauer ## 21, São Paulo FC 18 | (8) MF Didi ## 13, Fluminense 19 | (14) MF Ely ## 15, Vasco da Gama 20 | (16) MF Dequinha ## 7, Flamengo 21 | 22 | (7) FW Julinho ## 13, Portuguesa 23 | (9) FW Baltazar ## 19, Corinthians 24 | (10) FW Pinga ## 14, Vasco da Gama 25 | (11) FW Rodrigues ## 14, Palmeiras 26 | (17) FW Maurinho ## 0, São Paulo FC 27 | (18) FW Humberto ## 3, Palmeiras 28 | (19) FW Índio ## 0, Flamengo 29 | (20) FW Rubens ## 1, Flamengo 30 | 31 | -------------------------------------------------------------------------------- /1954--switzerland/squads/it-italy.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Italy (ITA) 3 | # - 22 players 4 | 5 | (1) GK Giorgio Ghezzi ## 1, Internazionale 6 | (12) GK Giovanni Viola ## 0, Juventus 7 | (22) GK Leonardo Costagliola ## 3, Fiorentina 8 | 9 | (2) DF Guido Vincenzi ## 1, Internazionale 10 | (3) DF Giovanni Giacomazzi ## 1, Internazionale 11 | (4) DF Maino Neri ## 6, Internazionale 12 | (13) DF Ardico Magnini ## 4, Fiorentina 13 | (14) DF Sergio Cervato ## 11, Fiorentina 14 | (15) DF Giacomo Mari ## 7, Juventus 15 | 16 | (5) MF Omero Tognon ## 11, Milan 17 | (6) MF Fulvio Nesti ## 2, Internazionale 18 | (16) MF Rino Ferrario ## 1, Juventus 19 | (18) MF Gino Pivatelli ## 0, Bologna 20 | (20) MF Guido Gratton ## 1, Fiorentina 21 | 22 | (7) FW Ermes Muccinelli ## 9, Juventus 23 | (8) FW Egisto Pandolfini ## 14, Roma 24 | (9) FW Carlo Galli ## 2, Roma 25 | (10) FW Gino Cappello ## 10, Bologna 26 | (11) FW Benito Lorenzi ## 11, Internazionale 27 | (17) FW Armando Segato ## 3, Fiorentina 28 | (19) FW Giampiero Boniperti ## 22, Juventus 29 | (21) FW Amleto Frignani ## 6, Milan 30 | 31 | -------------------------------------------------------------------------------- /1954--switzerland/squads/kr-south-korea.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Korea (KOR) 3 | # - 20 players 4 | 5 | (1) GK Hong Deok-Young ## -, Joseon Textile FC 6 | (12) GK Ham Heung-Chul ## -, Provost Marshal Office 7 | 8 | (2) DF Park Kyu-Chung ## -, Quartermaster Corps 9 | (3) DF Park Jae-Seung ## -, CIC 10 | (6) DF Min Byung-Dae ## -, CIC 11 | (13) DF Lee Chong-Kap ## -, CIC 12 | (14) DF Han Chang-Wha ## -, CIC 13 | 14 | (4) MF Kang Chang-Gi ## -, Joseon Textile FC 15 | (5) MF Lee Sang-Yi ## -, Joseon Textile FC 16 | (11) MF Chung Nam-Sik ## -, Intelligence Corps 17 | (15) MF Kim Ji-Sung ## -, CIC 18 | (16) MF Chu Yung-Kwang ## -, Naval Forces 19 | 20 | (7) FW Lee Soo-Nam ## -, CIC 21 | (8) FW Choi Chung-Min ## -, CIC 22 | (9) FW Woo Sang-Kwon ## -, Provost Marshal Office 23 | (10) FW Sung Nak-Woon ## -, Quartermaster Corps 24 | (17) FW Park Il-Kap ## -, CIC 25 | (18) FW Choi Yung-Keun ## -, Naval Forces 26 | (19) FW Li Ki-Joo ## -, Joseon Textile FC 27 | (20) FW Chung Kook-Chin ## -, Naval Forces 28 | 29 | -------------------------------------------------------------------------------- /1954--switzerland/squads/mx-mexico.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Mexico (MEX) 3 | # - 22 players 4 | 5 | (1) GK Antonio Carbajal ## 11, FC León 6 | (12) GK Salvador Mota ## 0, Atlante F.C. 7 | 8 | (2) DF Narciso López ## 3, CD Oro 9 | (4) DF Saturnino Martínez ## 6, Necaxa 10 | (5) DF Raúl Cárdenas ## 4, Puebla F.C. 11 | (13) DF Sergio Bravo ## 6, FC León 12 | 13 | (3) MF Jorge Romo ## 5, Club Deportivo Marte 14 | (6) MF Rafael Avalos ## 3, Atlante F.C. 15 | (14) MF Juan Gómez ## 0, Atlas 16 | (16) MF Pedro Nájera ## 0, Club América 17 | (21) MF Mario Ochoa ## 5, Club Deportivo Marte 18 | 19 | (7) FW Alfredo Torres ## 3, Atlas 20 | (8) FW José Naranjo ## 12, CD Oro 21 | (9) FW José Luis Lamadrid ## 5, Necaxa 22 | (10) FW Tomás Balcázar ## 9, CD Guadalajara 23 | (11) FW Raúl Arellano ## 0, CD Guadalajara 24 | (15) FW Carlos Blanco ## 4, Necaxa 25 | (17) FW Carlos Septién ## 11, CD Tampico 26 | (18) FW Carlos Carus ## 0, Club Toluca 27 | (19) FW Moises Jinich ## 1, Atlante F.C. 28 | (20) FW José Antonio Roca ## 7, CD Zacatepec 29 | (22) FW Ranulfo Cortés ## 0, CD Oro 30 | 31 | -------------------------------------------------------------------------------- /1954--switzerland/squads/uy-uruguay.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Uruguay (URU) 3 | # - 22 players 4 | 5 | (1) GK Roque Máspoli ## 35, Peñarol 6 | (12) GK Julio Maceiras ## 1, Danubio 7 | 8 | (2) DF José Santamaría ## 3, Nacional 9 | (3) DF William Martínez ## 11, Rampla Juniors 10 | (4) DF Víctor Rodríguez Andrade ## 20, Peñarol 11 | (13) DF Mirto Davoine ## 1, Peñarol 12 | (14) DF Eusebio Tejera ## 31, Defensor 13 | 14 | (5) MF Obdulio Varela ## 43, Peñarol 15 | (6) MF Roberto Leopardi ## 3, Nacional 16 | (15) MF Urbano Rivera ## 8, Danubio 17 | (16) MF Néstor Carballo ## 10, Nacional 18 | (17) MF Luis Cruz ## 7, Nacional 19 | 20 | (7) FW Julio Abbadie ## 9, Peñarol 21 | (8) FW Juan Hohberg ## 3, Peñarol 22 | (9) FW Oscar Míguez ## 14, Peñarol 23 | (10) FW Juan Alberto Schiaffino ## 14, Peñarol 24 | (11) FW Carlos Borges ## 2, Peñarol 25 | (18) FW Rafael Souto ## 4, Nacional 26 | (19) FW Javier Ambrois ## 7, Nacional 27 | (20) FW Omar Méndez ## 3, Nacional 28 | (21) FW Julio Pérez ## 14, Nacional 29 | (22) FW Luis Castro ## 1, Defensor 30 | 31 | -------------------------------------------------------------------------------- /1958--sweden/NOTES.md: -------------------------------------------------------------------------------- 1 | # World Cup 1958 Sweden, 8 - 29 June 2 | 3 | - start_at: 1958-06-08 4 | - fix: add edition: or num: e.g. num: 6 or edition: 6 5 | 6 | ## 16 Teams 7 | 8 | ``` 9 | ## Europe 10 | - aut # Austria 11 | - tch # Czechoslovakia 12 | - eng # England 13 | - fra # France 14 | - frg # West Germany 15 | - hun # Hungary 16 | - nir # Northern Ireland 17 | - sco # Scotland 18 | - urs # Soviet Union 19 | - swe # Sweden 20 | - wal # Wales 21 | - yug # Yugoslavia 22 | ## North and Central America 23 | - mex # Mexico 24 | ## South America 25 | - arg # Argentina 26 | - bra # Brazil 27 | - par # Paraguay 28 | ``` 29 | 30 | -------------------------------------------------------------------------------- /1958--sweden/squads/br-brazil.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Brazil (BRA) 3 | # - 22 players 4 | 5 | (1) GK Carlos José Castilho ## 20, Fluminense 6 | (3) GK Gilmar ## 31, Corinthians 7 | 8 | (2) DF Hilderaldo Bellini ## 8, Vasco da Gama 9 | (4) DF Djalma Santos ## 47, Portuguesa 10 | (12) DF Nílton Santos ## 46, Botafogo 11 | (14) DF De Sordi ## 14, São Paulo 12 | (15) DF Orlando ## 1, Vasco da Gama 13 | (16) DF Mauro Ramos ## 10, São Paulo 14 | 15 | (5) MF Dino Sani ## 5, São Paulo 16 | (6) MF Didi ## 41, Botafogo 17 | (8) MF Oreco ## 9, Corinthians 18 | (9) MF Zózimo ## 26, Bangu 19 | (13) MF Moacir ## 5, Flamengo 20 | (19) MF Zito ## 3, Santos 21 | 22 | (7) FW Mário Zagallo ## 3, Flamengo 23 | (10) FW Pelé ## 5, Santos 24 | (11) FW Garrincha ## 8, Botafogo 25 | (17) FW Joel Antônio Martins ## 11, Flamengo 26 | (18) FW Mazzola ## 5, Palmeiras 27 | (20) FW Vavá ## 3, Vasco da Gama 28 | (21) FW Dida ## 3, Flamengo 29 | (22) FW Pepe ## 11, Santos 30 | 31 | -------------------------------------------------------------------------------- /1958--sweden/squads/py-paraguay.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Paraguay (PAR) 3 | # - 22 players 4 | 5 | (1) GK Ramón Mayeregger ## -, Nacional 6 | (12) GK Samuel Aguilar ## -, Libertad 7 | 8 | (2) DF Edelmiro Arévalo ## -, Olimpia 9 | (4) DF Ignacio Achúcarro ## -, Olimpia 10 | (6) DF Eligio Echagüe ## -, Olimpia 11 | (13) DF Luis Gini ## -, Sol de América 12 | (14) DF Darío Segovia ## -, Sol de América 13 | (17) DF Agustín Miranda ## -, Cerro Porteño 14 | 15 | (3) MF Juan Vicente Lezcano ## -, Olimpia 16 | (5) MF Salvador Villalba ## -, Libertad 17 | (15) MF Luis Santos Silva ## -, Cerro Porteño 18 | 19 | (7) FW Juan Bautista Agüero ## -, Olimpia 20 | (8) FW José Parodi ## -, Olimpia 21 | (9) FW Jorge Lino Romero ## -, Sol de América 22 | (10) FW Oscar Aguilera ## -, Olimpia 23 | (11) FW Florencio Amarilla ## -, Nacional 24 | (16) FW Claudio Lezcano ## -, Olimpia 25 | (18) FW Gilberto Penayo ## -, Sol de América 26 | (19) FW Eliseo Insfrán ## -, Guaraní 27 | (20) FW José Raúl Aveiro ## -, Sportivo Luqueño 28 | (21) FW Cayetano Ré ## -, Cerro Porteño 29 | (22) FW Eligio Insfrán ## -, Guaraní 30 | 31 | -------------------------------------------------------------------------------- /1958--sweden/squads/sco-scotland.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Scotland (SCO) 3 | # - 22 players 4 | 5 | (1) GK Tommy Younger ## 22, Liverpool 6 | (12) GK Bill Brown ## 0, Dundee 7 | 8 | (2) DF Tommy Docherty ## 22, Preston North End 9 | (3) DF Alex Parker ## 14, Everton 10 | (4) DF Eric Caldow ## 10, Rangers 11 | (5) DF John Hewie ## 12, Charlton Athletic 12 | (7) DF Ian McColl ## 14, Rangers 13 | (13) DF Sammy Baird ## 6, Rangers 14 | (14) DF Graham Leggat ## 5, Aberdeen 15 | 16 | (6) MF Harry Haddock ## 6, Clyde 17 | (9) MF Bobby Evans ## 34, Celtic 18 | (10) MF Doug Cowie ## 18, Dundee 19 | (11) MF Dave Mackay ## 1, Heart of Midlothian 20 | (17) MF Jackie Mudie ## 14, Blackpool 21 | (19) MF Bobby Collins ## 19, Celtic 22 | (21) MF Stewart Imlach ## 2, Nottingham Forest 23 | 24 | (8) FW Eddie Turnbull ## 5, Hibernian 25 | (15) FW Alex Scott ## 5, Rangers 26 | (16) FW Jimmy Murray ## 3, Heart of Midlothian 27 | (18) FW John Coyle ## 0, Clyde 28 | (20) FW Archie Robertson ## 4, Clyde 29 | (22) FW Willie Fernie ## 11, Celtic 30 | 31 | -------------------------------------------------------------------------------- /1958--sweden/squads/se-sweden.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Sweden (SWE) 3 | # - 22 players 4 | 5 | (1) GK Kalle Svensson ## 67, Helsingborg 6 | (12) GK Tore Svensson ## 1, Malmö 7 | (16) GK Ingemar Haraldsson ## 0, Elfsborg 8 | 9 | (2) DF Orvar Bergmark ## 37, Örebro 10 | (3) DF Sven Axbom ## 16, Norrköping 11 | (13) DF Prawitz Öberg ## 2, Malmö 12 | 13 | (4) MF Nils Liedholm ## 18, AC Milan 14 | (5) MF Åke Johansson ## 16, Norrköping 15 | (6) MF Sigge Parling ## 11, Djurgården 16 | (14) MF Bengt Gustavsson ## 42, Atalanta 17 | (15) MF Reino Börjesson ## 3, Norrby 18 | (17) MF Olle Håkansson ## 7, Norrköping 19 | 20 | (7) FW Kurt Hamrin ## 20, Padova 21 | (8) FW Gunnar Gren ## 49, Örgryte 22 | (9) FW Agne Simonsson ## 3, Örgryte 23 | (10) FW Arne Selmosson ## 1, Lazio 24 | (11) FW Lennart Skoglund ## 4, Inter Milan 25 | (18) FW Gösta Löfgren ## 38, Motala 26 | (19) FW Henry Källgren ## 5, Norrköping 27 | (20) FW Bror Mellberg ## 3, AIK 28 | (21) FW Bengt Berndtsson ## 4, Göteborg 29 | (22) FW Ove Olsson ## 1, Göteborg 30 | 31 | -------------------------------------------------------------------------------- /1962--chile/NOTES.md: -------------------------------------------------------------------------------- 1 | # World Cup 1962 Chile, 30 May - 17 June 2 | 3 | - start_at: 1962-05-30 4 | - fix: add edition: or num: e.g. num: 7 or edition: 7 5 | 6 | ## 16 Teams 7 | 8 | ``` 9 | ## Europe 10 | - bul # Bulgaria 11 | - tch # Czechoslovakia 12 | - eng # England 13 | - frg # West Germany 14 | - hun # Hungary 15 | - ita # Italy 16 | - urs # Soviet Union 17 | - esp # Spain 18 | - sui # Switzerland 19 | - yug # Yugoslavia 20 | ## North and Central America 21 | - mex # Mexico 22 | ## South America 23 | - arg # Argentina 24 | - bra # Brazil 25 | - chi # Chile 26 | - col # Colombia 27 | - uru # Uruguay 28 | ``` 29 | 30 | -------------------------------------------------------------------------------- /1962--chile/squads/br-brazil.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Brazil (BRA) 3 | # - 22 players 4 | 5 | (1) GK Gilmar ## -, Santos 6 | (22) GK Castilho ## -, Fluminense 7 | 8 | (2) DF Djalma Santos ## -, Palmeiras 9 | (3) DF Mauro ## -, Santos 10 | (5) DF Zózimo ## -, Bangu 11 | (6) DF Nílton Santos ## -, Botafogo 12 | (12) DF Jair Marinho ## -, Fluminense 13 | (13) DF Bellini ## -, São Paulo 14 | (14) DF Jurandir ## -, São Paulo 15 | (15) DF Altair ## -, Fluminense 16 | 17 | (4) MF Zito ## -, Santos 18 | (8) MF Didi ## -, Botafogo 19 | (16) MF Zequinha ## -, Palmeiras 20 | (17) MF Mengálvio ## -, Santos 21 | 22 | (7) FW Garrincha ## -, Botafogo 23 | (9) FW Coutinho ## -, Santos 24 | (10) FW Pelé ## -, Santos 25 | (11) FW Pepe ## -, Santos 26 | (18) FW Jair da Costa ## -, Portuguesa 27 | (19) FW Vavá ## -, Palmeiras 28 | (20) FW Amarildo ## -, Botafogo 29 | (21) FW Zagallo ## -, Botafogo 30 | 31 | -------------------------------------------------------------------------------- /1962--chile/squads/it-italy.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Italy (ITA) 3 | # - 22 players 4 | 5 | (1) GK Lorenzo Buffon ## 13, Internazionale 6 | (12) GK Carlo Mattrel ## 1, Palermo 7 | (13) GK Enrico Albertosi ## 1, Fiorentina 8 | 9 | (2) DF Giacomo Losi ## 9, Roma 10 | (4) DF Sandro Salvadore ## 5, Milan 11 | (5) DF Cesare Maldini ## 6, Milan 12 | (16) DF Enzo Robotti ## 6, Fiorentina 13 | (18) DF Mario David ## 2, Milan 14 | (19) DF Francesco Janich ## 0, Bologna 15 | 16 | (3) MF Luigi Radice ## 2, Milan 17 | (6) MF Giovanni Trapattoni ## 7, Milan 18 | (20) MF Paride Tumburus ## 0, Bologna 19 | (21) MF Giorgio Ferrini ## 1, Torino 20 | 21 | (7) FW Bruno Mora ## 9, Juventus 22 | (8) FW Humberto Maschio ## 1, Atalanta 23 | (9) FW José Altafini ## 4, Milan 24 | (10) FW Omar Sívori ## 7, Juventus 25 | (11) FW Giampaolo Menichelli ## 2, Roma 26 | (14) FW Gianni Rivera ## 1, Milan 27 | (15) FW Angelo Sormani ## 0, Mantova 28 | (17) FW Ezio Pascutti ## 1, Bologna 29 | (22) FW Giacomo Bulgarelli ## 0, Bologna 30 | 31 | -------------------------------------------------------------------------------- /1962--chile/squads/mx-mexico.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Mexico (MEX) 3 | # - 22 players 4 | 5 | (1) GK Antonio Carbajal ## -, Club León 6 | (12) GK Jaime Gómez ## -, CD Guadalajara 7 | (22) GK Antonio Mota ## -, CD Oro 8 | 9 | (2) DF Jesús del Muro ## -, CF Atlas 10 | (3) DF Guillermo Sepúlveda ## -, CD Guadalajara 11 | (4) DF José Villegas ## -, CD Guadalajara 12 | (5) DF Raúl Cárdenas ## -, CD Zacatepec 13 | (13) DF Arturo Chaires ## -, CD Guadalajara 14 | (15) DF Ignacio Jáuregui ## -, CF Atlas 15 | 16 | (6) MF Pedro Nájera ## -, Club América 17 | (8) MF Salvador Reyes ## -, CD Guadalajara 18 | (14) MF Pedro Romero ## -, Club Toluca 19 | (16) MF Salvador Farfán ## -, Atlante 20 | (20) MF Mario Velarde ## -, Necaxa 21 | 22 | (7) FW Alfredo del Águila ## -, Club Toluca 23 | (9) FW Héctor Hernández ## -, CD Guadalajara 24 | (10) FW Guillermo Ortiz Camargo ## -, Necaxa 25 | (11) FW Isidoro Díaz ## -, CD Guadalajara 26 | (17) FW Felipe Ruvalcaba ## -, CD Oro 27 | (18) FW Alfredo Hernández ## -, CF Monterrey 28 | (19) FW Antonio Jasso ## -, Club América 29 | (21) FW Alberto Baeza ## -, Necaxa 30 | 31 | -------------------------------------------------------------------------------- /1962--chile/squads/uy-uruguay.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Uruguay (URU) 3 | # - 22 players 4 | 5 | (1) GK Roberto Sosa ## 11, Nacional 6 | (12) GK Luis Maidana ## 9, Peñarol 7 | 8 | (2) DF Horacio Troche ## 16, Nacional 9 | (3) DF Emilio Álvarez ## 5, Nacional 10 | (4) DF Omar Méndez ## -, Nacional 11 | (14) DF William Martínez ## 44, Peñarol 12 | (15) DF Rubén Soria ## 2, Cerro 13 | (17) DF Rubén González ## 10, Nacional 14 | (18) DF Eliseo Álvarez ## 0, Nacional 15 | 16 | (5) MF Néstor Gonçalves ## 25, Peñarol 17 | (6) MF Pedro Cubilla ## 6, Rampla Juniors 18 | (8) MF Julio César Cortés ## 1, Sud América 19 | (10) MF Pedro Rocha ## 3, Peñarol 20 | (16) MF Edgardo González ## 21, Peñarol 21 | (19) MF Ronald Langón ## 5, Defensor 22 | 23 | (7) FW Domingo Pérez ## 9, Nacional 24 | (9) FW José Sasía ## 35, Peñarol 25 | (11) FW Luis Cubilla ## 12, Peñarol 26 | (20) FW Mario Ludovico Bergara ## 12, Nacional 27 | (21) FW Héctor Silva ## 6, Danubio 28 | (22) FW Ángel Cabrera ## 3, Peñarol 29 | (23) FW Guillermo Escalada ## 29, Nacional 30 | 31 | -------------------------------------------------------------------------------- /1962--chile/squads/yug-yugoslavia.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Yuguslavia (YUG) 3 | # - 22 players 4 | 5 | (1) GK Milutin Šoškić ## 29, Partizan 6 | (12) GK Srboljub Krivokuća ## 7, OFK Belgrade 7 | (19) GK Mirko Stojanović ## 2, Dinamo Zagreb 8 | 9 | (2) DF Vladimir Durković ## 33, Red Star 10 | (3) DF Fahrudin Jusufi ## 29, Partizan 11 | (5) DF Vlatko Marković ## 7, Dinamo Zagreb 12 | (6) DF Vladica Popović ## 3, Red Star 13 | (13) DF Slavko Svinjarević ## 1, Vojvodina 14 | (14) DF Vasilije Šijaković ## 10, OFK Belgrade 15 | (20) DF Žarko Nikolić ## 9, Vojvodina 16 | 17 | (4) MF Petar Radaković ## 9, Rijeka 18 | (8) MF Dragoslav Šekularac ## 29, Red Star 19 | (10) MF Milan Galić ## 28, Partizan 20 | (15) MF Željko Matuš ## 9, Dinamo Zagreb 21 | (17) MF Vojislav Melić ## 0, Red Star 22 | (18) MF Vladica Kovačević ## 4, Partizan 23 | (22) MF Aleksandar Ivoš ## 0, Sloboda 24 | 25 | (7) FW Andrija Anković ## 7, Hajduk Split 26 | (9) FW Dražan Jerković ## 9, Dinamo Zagreb 27 | (11) FW Josip Skoblar ## 2, OFK Belgrade 28 | (16) FW Muhamed Mujić ## 31, Velež 29 | (21) FW Nikola Stipić ## 0, Red Star 30 | 31 | -------------------------------------------------------------------------------- /1966--england/NOTES.md: -------------------------------------------------------------------------------- 1 | # World Cup 1966 England, 11 - 30 July 2 | 3 | - start_at: 1966-07-11 4 | - fix: add edition: or num: e.g. num: 8 or edition: 8 5 | 6 | ## 16 Teams 7 | 8 | ``` 9 | # -- Asia 10 | - prk # North Korea 11 | # -- Europe 12 | - bul # Bulgaria 13 | - eng # England 14 | - fra # France 15 | - frg # West Germany 16 | - hun # Hungary 17 | - ita # Italy 18 | - por # Portugal 19 | - urs # Soviet Union 20 | - esp # Spain 21 | - sui # Switzerland 22 | # -- North and Central America 23 | - mex # Mexico 24 | # -- South America 25 | - arg # Argentina 26 | - bra # Brazil 27 | - chi # Chile 28 | - uru # Uruguay 29 | ``` 30 | 31 | -------------------------------------------------------------------------------- /1966--england/squads/br-brazil.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Brazil (BRA) 3 | # - 22 players 4 | 5 | (1) GK Gilmar ## -, Santos 6 | (12) GK Manga ## -, Botafogo 7 | 8 | (2) DF Djalma Santos ## -, Palmeiras 9 | (3) DF Fidélis ## -, Bangu 10 | (4) DF Bellini ## -, São Paulo 11 | (5) DF Brito ## -, Vasco da Gama 12 | (6) DF Altair ## -, Fluminense 13 | (7) DF Orlando ## -, Santos 14 | (8) DF Paulo Henrique ## -, Flamengo 15 | (9) DF Rildo ## -, Botafogo 16 | 17 | (11) MF Gérson ## -, Botafogo 18 | (13) MF Denílson ## -, Fluminense 19 | (14) MF Lima ## -, Santos 20 | (15) MF Zito ## -, Santos 21 | (17) MF Jairzinho ## -, Botafogo 22 | (20) MF Tostão ## -, Cruzeiro 23 | 24 | (10) FW Pelé ## -, Santos 25 | (16) FW Garrincha ## -, Corinthians 26 | (18) FW Alcindo ## -, Grêmio 27 | (19) FW Silva ## -, Flamengo 28 | (21) FW Paraná ## -, São Paulo 29 | (22) FW Edu ## -, Santos 30 | 31 | -------------------------------------------------------------------------------- /1966--england/squads/ch-switzerland.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Switzerland (SUI) 3 | # - 22 players 4 | 5 | (1) GK Karl Elsener ## 32, Lausanne 6 | (12) GK Léo Eichmann ## 1, La Chaux-de-Fonds 7 | (22) GK Mario Prosperi ## 3, Lugano 8 | 9 | (2) DF Willy Allemann ## 1, Grenchen 10 | (3) DF Kurt Armbruster ## 3, Lausanne 11 | (5) DF René Brodmann ## 3, Zürich 12 | (14) DF Werner Leimgruber ## 9, Zürich 13 | (18) DF Heinz Schneiter ## 43, Young Boys 14 | (20) DF Ely Tacchella ## 26, Lausanne 15 | 16 | (4) MF Heinz Bäni ## 7, Zürich 17 | (6) MF Richard Dürr ## 17, Lausanne 18 | (7) MF Hansruedi Führer ## 6, Young Boys 19 | (8) MF Vittore Gottardi ## 0, Lugano 20 | (9) MF André Grobéty ## 39, Lausanne 21 | (15) MF Karl Odermatt ## 6, Basel 22 | (19) MF Xavier Stierli ## 7, Zürich 23 | (21) MF Georges Vuilleumier ## 5, Lausanne 24 | 25 | (10) FW Robert Hosp ## 11, Lausanne 26 | (11) FW Köbi Kuhn ## 18, Zürich 27 | (13) FW Fritz Künzli ## 2, Zürich 28 | (16) FW René-Pierre Quentin ## 7, Sion 29 | (17) FW Jean-Claude Schindelholz ## 10, Servette 30 | 31 | -------------------------------------------------------------------------------- /1966--england/squads/fr-france.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # France (FRA) 3 | # - 22 players 4 | 5 | (1) GK Marcel Aubour ## 11, Lyon 6 | (21) GK Georges Carnus ## 1, Stade Français 7 | (22) GK Johnny Schuth ## 0, Strasbourg 8 | 9 | (2) DF Marcel Artelesa ## 17, AS Monaco 10 | (5) DF Bernard Bosquier ## 9, Sochaux 11 | (6) DF Robert Budzynski ## 4, Nantes 12 | (7) DF André Chorda ## 20, Bordeaux 13 | (10) DF Héctor De Bourgoing ## 2, Bordeaux 14 | (11) DF Gabriel De Michele ## 0, Nantes 15 | (12) DF Jean Djorkaeff ## 7, Lyon 16 | (18) DF Jean-Claude Piumi ## 2, Valenciennes 17 | 18 | (4) MF Joseph Bonnel ## 18, Valenciennes 19 | (15) MF Yves Herbet ## 4, Sedan 20 | (16) MF Robert Herbin ## 17, Saint-Etienne 21 | (17) MF Lucien Muller ## 16, Barcelona 22 | (20) MF Jacques Simon ## 5, Nantes 23 | 24 | (3) FW Edmond Baraffe ## 3, Toulouse 25 | (8) FW Nestor Combin ## 6, Varese 26 | (9) FW Didier Couécou ## 0, Bordeaux 27 | (13) FW Philippe Gondet ## -, 28 | (14) FW Gérard Hausser ## 9, Strasbourg 29 | (19) FW Laurent Robuschi ## 4, Bordeaux 30 | 31 | -------------------------------------------------------------------------------- /1966--england/squads/it-italy.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Italy (ITA) 3 | # - 22 players 4 | 5 | (1) GK Enrico Albertosi ## 10, Fiorentina 6 | (2) GK Roberto Anzolin ## 1, Juventus 7 | (18) GK Pierluigi Pizzaballa ## 1, Atalanta 8 | 9 | (5) DF Tarcisio Burgnich ## 12, Internazionale 10 | (6) DF Giacinto Facchetti ## 21, Internazionale 11 | (8) DF Aristide Guarneri ## 12, Internazionale 12 | (9) DF Francesco Janich ## 5, Bologna 13 | (11) DF Spartaco Landini ## 1, Internazionale 14 | (21) DF Roberto Rosato ## 12, Torino 15 | (22) DF Sandro Salvadore ## 27, Juventus 16 | 17 | (3) MF Paolo Barison ## 7, Roma 18 | (4) MF Giacomo Bulgarelli ## 24, Bologna 19 | (7) MF Romano Fogli ## 11, Bologna 20 | (12) MF Gianfranco Leoncini ## 1, Juventus 21 | (13) MF Giovanni Lodetti ## 12, Milan 22 | (17) MF Marino Perani ## 2, Bologna 23 | 24 | (10) FW Antonio Juliano ## 1, Napoli 25 | (14) FW Sandro Mazzola ## 19, Internazionale 26 | (15) FW Luigi Meroni ## 5, Torino 27 | (16) FW Ezio Pascutti ## 15, Bologna 28 | (19) FW Gianni Rivera ## 23, Milan 29 | (20) FW Francesco Rizzo ## 2, Cagliari 30 | 31 | -------------------------------------------------------------------------------- /1966--england/squads/kp-north-korea.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # North Korea (PRK) 3 | # - 22 players 4 | 5 | (1) GK Lee Chang-Myung ## -, Kigwancha 6 | (9) GK Lee Keun-Hak ## -, Moranbong 7 | 8 | (2) DF Pak Li-Sup ## -, Amrokgang 9 | (3) DF Shin Yung-Kyoo ## -, Moranbong 10 | (5) DF Lim Zoong-Sun ## -, Moranbong 11 | (13) DF Oh Yoon-Kyung ## -, 8 August 12 | (14) DF Ha Jung-Won ## -, 8 August 13 | (19) DF Kim Yung-Kil ## -, Rodongja 14 | (20) DF Ryoo Chang-Kil ## -, Kigwancha 15 | 16 | (4) MF Kang Bong-Chil ## -, 8 February 17 | (6) MF Im Seung-Hwi ## -, 8 February 18 | (11) MF Han Bong-Zin ## -, 8 February 19 | (16) MF Li Dong-Woon ## -, Rodongja 20 | (17) MF Kim Bong-Hwan ## -, Kigwancha 21 | (18) MF Ke Seung-Woon ## -, Rodongja 22 | (21) MF An Se-Bok ## -, Amrokgang 23 | 24 | (7) FW Pak Doo-Ik ## -, Moranbong 25 | (8) FW Pak Seung-Zin ## -, Moranbong 26 | (10) FW Kang Ryong-Woon ## -, Rodongja 27 | (12) FW Kim Seung-Il ## -, Moranbong 28 | (15) FW Yang Seung-Kook ## -, Kigwancha 29 | (22) FW Li Chi-An ## -, 8 February 30 | 31 | -------------------------------------------------------------------------------- /1966--england/squads/mx-mexico.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Mexico (MEX) 3 | # - 22 players 4 | 5 | (1) GK Antonio Carbajal ## -, Leon 6 | (12) GK Ignacio Calderón ## -, Guadalajara 7 | (22) GK Javier Vargas ## -, Atlas 8 | 9 | (2) DF Arturo Chaires ## -, Guadalajara 10 | (3) DF Gustavo Peña ## -, Oro 11 | (4) DF Jesús del Muro ## -, Veracruz 12 | (14) DF Gabriel Núñez ## -, Zacatepec 13 | 14 | (5) MF Ignacio Jáuregui ## -, Monterrey 15 | (6) MF Isidoro Díaz ## -, Guadalajara 16 | (9) MF Ernesto Cisneros ## -, Atlas 17 | (13) MF José Luis González ## -, Necaxa 18 | (15) MF Guillermo Hernández ## -, Atlas 19 | (16) MF Luis Regueiro ## -, UNAM 20 | (17) MF Magdaleno Mercado ## -, Atlas 21 | 22 | (7) FW Felipe Ruvalcaba ## -, Oro 23 | (8) FW Aarón Padilla ## -, UNAM 24 | (10) FW Javier Fragoso ## -, América 25 | (11) FW Francisco Jara ## -, Universidad Nuevo León 26 | (18) FW Elías Muñoz ## -, Universidad Nuevo León 27 | (19) FW Salvador Reyes ## -, Guadalajara 28 | (20) FW Enrique Borja ## -, UNAM 29 | (21) FW Ramiro Navarro ## -, Oro 30 | 31 | -------------------------------------------------------------------------------- /1966--england/squads/pt-portugal.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Portugal (POR) 3 | # - 22 players 4 | 5 | (1) GK Américo ## -, Porto 6 | (2) GK Joaquim Carvalho ## -, Sporting CP 7 | (3) GK José Pereira ## -, Belenenses 8 | 9 | (4) DF Vicente ## -, Belenenses 10 | (5) DF Germano ## -, Benfica 11 | (17) DF João Morais ## -, Sporting CP 12 | (20) DF Alexandre Baptista ## -, Sporting CP 13 | (21) DF José Carlos ## -, Sporting CP 14 | (22) DF Alberto Festa ## -, Porto 15 | 16 | (6) MF Fernando Peres ## -, Sporting CP 17 | (9) MF Hilário ## -, Sporting CP 18 | (10) MF Mário Coluna ## -, Benfica 19 | (11) MF António Simões ## -, Benfica 20 | (12) MF José Augusto ## -, Benfica 21 | (14) MF Fernando Cruz ## -, Benfica 22 | (16) MF Jaime Graça ## -, Vitória Setúbal 23 | (19) MF Custódio Pinto ## -, Porto 24 | 25 | (7) FW Ernesto Figueiredo ## -, Sporting CP 26 | (8) FW João Lourenço ## -, Sporting CP 27 | (13) FW Eusébio ## -, Benfica 28 | (15) FW Manuel Duarte ## -, Leixões 29 | (18) FW José Torres ## -, Benfica 30 | 31 | -------------------------------------------------------------------------------- /1966--england/squads/uy-uruguay.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Uruguay (URU) 3 | # - 22 players 4 | 5 | (1) GK Ladislao Mazurkiewicz ## 6, Peñarol 6 | (12) GK Roberto Sosa ## 19, Nacional 7 | (22) GK Walter Taibo ## 31, Peñarol 8 | 9 | (2) DF Horacio Troche ## 25, Cerro 10 | (3) DF Jorge Manicera ## 15, Nacional 11 | (5) DF Néstor Gonçalves ## 37, Peñarol 12 | (13) DF Nelson Díaz ## 8, Peñarol 13 | (14) DF Emilio Álvarez ## 15, Nacional 14 | (15) DF Luis Ubiñas ## 4, Rampla Juniors 15 | (16) DF Eliseo Álvarez ## 6, Rampla Juniors 16 | (20) DF Luis Ramos ## 2, Nacional 17 | 18 | (4) MF Pablo Forlán ## 2, Peñarol 19 | (6) MF Omar Caetano ## 12, Peñarol 20 | (7) MF Julio César Cortés ## 12, Peñarol 21 | (17) MF Héctor Salvá ## 8, Danubio 22 | (19) MF Héctor Silva ## 18, Peñarol 23 | (21) MF Víctor Espárrago ## 6, Nacional 24 | 25 | (8) FW José Urruzmendi ## 12, Nacional 26 | (9) FW José Sasía ## 43, Defensor Sporting 27 | (10) FW Pedro Rocha ## 20, Peñarol 28 | (11) FW Domingo Pérez ## 19, Nacional 29 | (18) FW Milton Viera ## 2, Nacional 30 | 31 | -------------------------------------------------------------------------------- /1970--mexico/NOTES.md: -------------------------------------------------------------------------------- 1 | # World Cup 1970 Mexico, 31 May - 21 June 2 | 3 | - start_at: 1970-05-31 4 | 5 | ## 16 Teams 6 | 7 | ``` 8 | # -- Africa 9 | - mar # Morocco 10 | # -- Europe 11 | - bel # Belgium 12 | - bul # Bulgaria 13 | - tch # Czechoslovakia 14 | - eng # England 15 | - frg # West Germany 16 | - isr # Israel 17 | - ita # Italy 18 | - rou # Romania 19 | - urs # Soviet Union 20 | - swe # Sweden 21 | # -- North and Central America 22 | - slv # El Salvador 23 | - mex # Mexico 24 | # -- South America 25 | - bra # Brazil 26 | - per # Peru 27 | - uru # Uruguay 28 | ``` 29 | 30 | -------------------------------------------------------------------------------- /1970--mexico/squads/br-brazil.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Brazil (BRA) 3 | # - 22 players 4 | 5 | (1) GK Félix ## 23, Fluminense 6 | (12) GK Ado ## 2, Corinthians 7 | (22) GK Leão ## 2, Palmeiras 8 | 9 | (2) DF Brito ## 28, Flamengo 10 | (4) DF Carlos Alberto ## 40, Santos 11 | (6) DF Marco Antônio ## 7, Fluminense 12 | (14) DF Baldocchi ## 1, Palmeiras 13 | (15) DF Fontana ## 6, Cruzeiro 14 | (16) DF Everaldo ## 8, Grêmio 15 | (17) DF Joel ## 26, Santos 16 | (21) DF Zé Maria ## 1, Portuguesa 17 | 18 | (3) MF Piazza ## 16, Cruzeiro 19 | (5) MF Clodoaldo ## 7, Santos 20 | (7) MF Jairzinho ## 45, Botafogo 21 | (8) MF Gérson ## 54, São Paulo 22 | (11) MF Rivellino ## 21, Corinthians 23 | (18) MF Paulo Cézar ## 14, Botafogo 24 | 25 | (9) FW Tostão ## 36, Cruzeiro 26 | (10) FW Pelé ## 81, Santos 27 | (13) FW Roberto ## 9, Botafogo 28 | (19) FW Edu ## 29, Santos 29 | (20) FW Dario ## 3, Atlético Mineiro 30 | 31 | -------------------------------------------------------------------------------- /1970--mexico/squads/it-italy.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Italy (ITA) 3 | # - 22 players 4 | 5 | (1) GK Enrico Albertosi ## 21, Cagliari 6 | (12) GK Dino Zoff ## 10, Napoli 7 | (17) GK Lido Vieri ## 4, Internazionale 8 | 9 | (2) DF Tarcisio Burgnich ## 33, Internazionale 10 | (3) DF Giacinto Facchetti ## 46, Internazionale 11 | (4) DF Fabrizio Poletti ## 4, Torino 12 | (5) DF Pierluigi Cera ## 2, Cagliari 13 | (10) DF Mario Bertini ## 9, Internazionale 14 | (18) DF Antonio Juliano ## 14, Napoli 15 | (21) DF Giuseppe Furino ## 0, Juventus 16 | 17 | (6) MF Ugo Ferrante ## 1, Fiorentina 18 | (7) MF Comunardo Niccolai ## 1, Cagliari 19 | (8) MF Roberto Rosato ## 18, Milan 20 | (9) MF Giorgio Puia ## 7, Torino 21 | (14) MF Gianni Rivera ## 38, Milan 22 | (15) MF Sandro Mazzola ## 37, Internazionale 23 | (16) MF Giancarlo De Sisti ## 12, Fiorentina 24 | 25 | (11) FW Luigi Riva ## 16, Cagliari 26 | (13) FW Angelo Domenghini ## 22, Cagliari 27 | (19) FW Sergio Gori ## 0, Cagliari 28 | (20) FW Roberto Boninsegna ## 1, Internazionale 29 | (22) FW Pierino Prati ## 6, Milan 30 | 31 | -------------------------------------------------------------------------------- /1970--mexico/squads/ma-morocco.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Morocco (MAR) 3 | # - 19 players 4 | 5 | (1) GK Allal Ben Kassou ## -, FAR Rabat 6 | (12) GK Mohammed Hazzaz ## -, MAS Fes 7 | (19) GK Abdelkader Ouaraghli ## -, WAC Casablanca 8 | 9 | (2) DF Abdallah Lamrani ## -, FAR Rabat 10 | (3) DF Boujemaa Benkhrif ## -, KAC Kenitra 11 | (4) DF Moulay Khanousi ## -, MAS Fes 12 | (5) DF Kacem Slimani ## -, RS Settat 13 | (13) DF Jalili Fadili ## -, FAR Rabat 14 | (18) DF Abdelkader El Khiati ## -, FAR Rabat 15 | 16 | (6) MF Mohammed Mahroufi ## -, DH Jadida 17 | (7) MF Said Ghandi ## -, RCA Casablanca 18 | (8) MF Driss Bamous ## -, FAR Rabat 19 | (11) MF Maouhoub Ghazouani ## -, FAR Rabat 20 | (15) MF Hamed Dahane ## -, Union Sidi Kacem 21 | (16) MF Moustapha Choukri ## -, RCA Casablanca 22 | 23 | (9) FW Ahmed Faras ## -, Chabab Mohammedia 24 | (10) FW Mohammed El Filali ## -, Mouloudia Oujda 25 | (14) FW Houmane Jarir ## -, RCA Casablanca 26 | (17) FW Ahmed Alaoui ## -, RS Settat 27 | 28 | -------------------------------------------------------------------------------- /1970--mexico/squads/mx-mexico.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Mexico (MEX) 3 | # - 22 players 4 | 5 | (1) GK Ignacio Calderón ## -, Guadalajara 6 | (12) GK Antonio Mota ## -, Necaxa 7 | (22) GK Francisco Castrejón ## -, UNAM 8 | 9 | (2) DF Juan Manuel Alejandrez ## -, Cruz Azul 10 | (3) DF Gustavo Peña ## -, Cruz Azul 11 | (4) DF Francisco Montes ## -, Veracruz 12 | (5) DF Mario Pérez ## -, América 13 | (6) DF Guillermo Hernández ## -, América 14 | (13) DF José Vantolrá ## -, Toluca 15 | (14) DF Javier Guzmán ## -, Cruz Azul 16 | 17 | (7) MF Marcos Rivas ## -, Atlante 18 | (8) MF Antonio Munguía ## -, Cruz Azul 19 | (9) MF Enrique Borja ## -, América 20 | (15) MF Héctor Pulido ## -, Cruz Azul 21 | (17) MF José Luis González ## -, UNAM 22 | (18) MF Mario Velarde ## -, UNAM 23 | (20) MF Juan Ignacio Basaguren ## -, Atlante 24 | 25 | (10) FW Horacio López Salgado ## -, América 26 | (11) FW Aarón Padilla ## -, UNAM 27 | (16) FW Isidoro Díaz ## -, León 28 | (19) FW Javier Valdivia ## -, Guadalajara 29 | (21) FW Javier Fragoso ## -, América 30 | 31 | -------------------------------------------------------------------------------- /1970--mexico/squads/se-sweden.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Sweden (SWE) 3 | # - 22 players 4 | 5 | (1) GK Ronnie Hellström ## 12, Hammarby IF 6 | (12) GK Sven-Gunnar Larsson ## 14, Örebro SK 7 | (17) GK Ronney Pettersson ## 17, Djurgårdens IF 8 | 9 | (2) DF Hans Selander ## 28, Helsingborgs IF 10 | (3) DF Kurt Axelsson ## 21, Club Brugge 11 | (4) DF Björn Nordqvist ## 42, IFK Norrköping 12 | (5) DF Roland Grip ## 21, AIK 13 | (14) DF Krister Kristensson ## 17, Malmö FF 14 | (15) DF Leif Målberg ## 0, IF Elfsborg 15 | (20) DF Jan Olsson ## 12, GAIS 16 | 17 | (6) MF Tommy Svensson ## 23, Östers IF 18 | (7) MF Bo Larsson ## 22, Malmö FF 19 | (8) MF Leif Eriksson ## 40, Örebro SK 20 | (9) MF Ove Kindvall ## 15, Feyenoord 21 | (10) MF Ove Grahn ## 14, Grasshoppers Club 22 | (11) MF Örjan Persson ## 28, Örgryte IS 23 | (13) MF Claes Cronqvist ## 2, Djurgårdens IF 24 | (19) MF Göran Nicklasson ## 1, IFK Göteborg 25 | (22) MF Sten Pålsson ## 6, GAIS 26 | 27 | (16) FW Tomas Nordahl ## 8, Örebro SK 28 | (18) FW Tom Turesson ## 18, Hammarby IF 29 | (21) FW Inge Ejderstedt ## 15, Östers IF 30 | 31 | -------------------------------------------------------------------------------- /1970--mexico/squads/sv-el-salvador.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # El Salvador (SLV) 3 | # - 22 players 4 | 5 | (1) GK Raúl Magaña ## -, CD FAS 6 | (13) GK Tomas Pineda ## -, Alianza FC 7 | (20) GK Gualberto Fernández ## -, Atlante 8 | 9 | (2) DF Roberto Rivas ## -, Alianza FC 10 | (3) DF Salvador Mariona ## -, Alianza FC 11 | (4) DF Santiago Cortés ## -, Atlético Marte 12 | (5) DF Saturnino Osorio ## -, Águila 13 | (14) DF Mauricio Manzano ## -, CD FAS 14 | (18) DF Guillermo Castro ## -, Atlético Marte 15 | 16 | (6) MF José Quintanilla ## -, Atlético Marte 17 | (7) MF Mauricio Rodríguez ## -, Universidad 18 | (8) MF Jorge Vásquez ## -, Universidad 19 | (9) MF Juan Ramón Martínez ## -, Águila 20 | (16) MF Genaro Sarmeno ## -, CD FAS 21 | (19) MF Sergio Méndez ## -, Atlético Marte 22 | (22) MF Alberto Villalta ## -, Atlético Marte 23 | 24 | (10) FW Salvador Cabezas ## -, Adler San Nicolas 25 | (11) FW Ernesto Aparicio ## -, Atlético Marte 26 | (12) FW Mario Monge ## -, CD FAS 27 | (15) FW David Cabrera ## -, CD FAS 28 | (17) FW Jaime Portillo ## -, Alianza FC 29 | (21) FW Elmer Acevedo ## -, CD FAS 30 | 31 | -------------------------------------------------------------------------------- /1970--mexico/squads/uy-uruguay.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Uruguay (URU) 3 | # - 22 players 4 | 5 | (1) GK Ladislao Mazurkiewicz ## -, Peñarol 6 | (12) GK Héctor Santos ## -, Bella Vista 7 | (22) GK Walter Corbo ## -, Peñarol 8 | 9 | (2) DF Atilio Ancheta ## -, Nacional 10 | (3) DF Roberto Matosas ## -, Peñarol 11 | (4) DF Luis Ubiñas ## -, Nacional 12 | (6) DF Juan Mujica ## -, Nacional 13 | (14) DF Francisco Cámera ## -, Bella Vista 14 | (16) DF Omar Caetano ## -, Peñarol 15 | (18) DF Alberto Gómez ## -, Liverpool 16 | (19) DF Oscar Zubia ## -, River Plate 17 | 18 | (5) MF Julio Montero Castillo ## -, Nacional 19 | (7) MF Luis Cubilla ## -, Nacional 20 | (8) MF Pedro Rocha ## -, Peñarol 21 | (9) MF Víctor Espárrago ## -, Nacional 22 | (10) MF Ildo Maneiro ## -, Nacional 23 | (13) MF Rodolfo Sandoval ## -, Peñarol 24 | 25 | (11) FW Julio Morales ## -, Nacional 26 | (15) FW Dagoberto Fontes ## -, Defensor 27 | (17) FW Rúben Bareño ## -, Cerro 28 | (20) FW Julio César Cortés ## -, Peñarol 29 | (21) FW Julio Losada ## -, Peñarol 30 | 31 | -------------------------------------------------------------------------------- /1974--west-germany/NOTES.md: -------------------------------------------------------------------------------- 1 | # World Cup 1974 West Germany, 13 June - 7 July 2 | 3 | - start_at: 1974-06-13 4 | 5 | 6 | ## 16 Teams 7 | 8 | ``` 9 | # -- Africa 10 | - zai # Zaire 11 | # -- Asia 12 | - aus # Australia 13 | # -- Europe 14 | - bul # Bulgaria 15 | - frg # West Germany 16 | - gdr # East Germany 17 | - ita # Italy 18 | - ned # Netherlands 19 | - pol # Poland 20 | - sco # Scotland 21 | - swe # Sweden 22 | - yug # Yugoslavia 23 | # -- North and Central America 24 | - hai # Haiti 25 | # -- South America 26 | - arg # Argentina 27 | - bra # Brazil 28 | - chi # Chile 29 | - uru # Uruguay 30 | ``` -------------------------------------------------------------------------------- /1974--west-germany/squads/br-brazil.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Brazil (BRA) 3 | # - 22 players 4 | 5 | (1) GK Leão ## 19, Palmeiras 6 | (12) GK Renato ## 2, Flamengo 7 | (22) GK Waldir Peres ## 0, São Paulo 8 | 9 | (2) DF Luís Pereira ## 15, Palmeiras 10 | (3) DF Marinho Peres ## 5, Santos 11 | (6) DF Marinho Chagas ## 9, Botafogo 12 | (14) DF Nelinho ## 2, Cruzeiro 13 | (15) DF Alfredo ## 1, Palmeiras 14 | (16) DF Marco Antônio ## 27, Fluminense 15 | 16 | (4) MF Zé Maria ## 28, Corinthians 17 | (5) MF Piazza ## 44, Cruzeiro 18 | (7) MF Jairzinho ## 73, Botafogo 19 | (10) MF Rivellino ## 55, Corinthians 20 | (11) MF Paulo Cézar ## 42, Flamengo 21 | (17) MF Carpegiani ## 5, Internacional 22 | (18) MF Ademir da Guia ## 8, Palmeiras 23 | (21) MF Dirceu ## 4, Botafogo 24 | 25 | (8) FW Leivinha ## 18, Palmeiras 26 | (9) FW César ## 8, Palmeiras 27 | (13) FW Valdomiro ## 9, Internacional 28 | (19) FW Mirandinha ## 3, São Paulo 29 | (20) FW Edu ## 41, Santos 30 | 31 | -------------------------------------------------------------------------------- /1974--west-germany/squads/it-italy.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Italy (ITA) 3 | # - 22 players 4 | 5 | (1) GK Dino Zoff ## 32, Juventus 6 | (12) GK Enrico Albertosi ## 34, Cagliari 7 | (22) GK Luciano Castellini ## 0, Torino 8 | 9 | (2) DF Luciano Spinosi ## 16, Juventus 10 | (3) DF Giacinto Facchetti ## 73, Internazionale 11 | (5) DF Francesco Morini ## 6, Juventus 12 | (6) DF Tarcisio Burgnich ## 63, Internazionale 13 | (13) DF Giuseppe Sabadini ## 4, Milan 14 | (14) DF Mauro Bellugi ## 7, Internazionale 15 | (15) DF Giuseppe Wilson ## 1, Lazio 16 | 17 | (4) MF Romeo Benetti ## 15, Milan 18 | (7) MF Sandro Mazzola ## 67, Internazionale 19 | (8) MF Fabio Capello ## 16, Juventus 20 | (10) MF Gianni Rivera ## 58, Milan 21 | (16) MF Antonio Juliano ## 17, Napoli 22 | (17) MF Luciano Re Cecconi ## 0, Lazio 23 | (18) MF Franco Causio ## 10, Juventus 24 | 25 | (9) FW Giorgio Chinaglia ## 9, Lazio 26 | (11) FW Luigi Riva ## 40, Cagliari 27 | (19) FW Pietro Anastasi ## 20, Juventus 28 | (20) FW Roberto Boninsegna ## 18, Internazionale 29 | (21) FW Paolo Pulici ## 3, Torino 30 | 31 | -------------------------------------------------------------------------------- /1974--west-germany/squads/se-sweden.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Sweden (SWE) 3 | # - 22 players 4 | 5 | (1) GK Ronnie Hellström ## -, Hammarby 6 | (12) GK Sven-Gunnar Larsson ## -, Örebro 7 | (17) GK Göran Hagberg ## -, 8 | 9 | (2) DF Jan Olsson ## -, Åtvidaberg 10 | (3) DF Kent Karlsson ## -, Åtvidaberg 11 | (4) DF Björn Nordqvist ## -, PSV Eindhoven 12 | (5) DF Björn Andersson ## -, 13 | (13) DF Roland Grip ## -, AIK 14 | (18) DF Jörgen Augustsson ## -, Åtvidaberg 15 | 16 | (6) MF Ove Grahn ## -, Grasshoppers 17 | (7) MF Bo Larsson ## -, Malmö 18 | (8) MF Conny Torstensson ## -, Bayern Munich 19 | (14) MF Staffan Tapper ## -, Malmö 20 | (15) MF Benno Magnusson ## -, Kaiserslautern 21 | (16) MF Inge Ejderstedt ## -, 22 | (19) MF Claes Cronqvist ## -, Landskrona BoIS 23 | (20) MF Sven Lindman ## -, Djurgården 24 | (21) MF Örjan Persson ## -, Örgryte 25 | 26 | (9) FW Ove Kindvall ## -, IFK Norrköping 27 | (10) FW Ralf Edström ## -, PSV Eindhoven 28 | (11) FW Roland Sandberg ## -, Kaiserslautern 29 | (22) FW Thomas Ahlström ## -, Elfsborg 30 | 31 | -------------------------------------------------------------------------------- /1974--west-germany/squads/uy-uruguay.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Uruguay (URU) 3 | # - 22 players 4 | 5 | (1) GK Ladislao Mazurkiewicz ## -, Atlético Mineiro 6 | (12) GK Héctor Santos ## -, Alianza Lima 7 | (22) GK Gustavo Fernández ## -, Rentistas 8 | 9 | (2) DF Baudilio Jáuregui ## -, River Plate 10 | (3) DF Juan Carlos Masnik ## -, Nacional 11 | (4) DF Pablo Forlán ## -, São Paulo 12 | (5) DF Julio Montero Castillo ## -, Nacional 13 | (6) DF Ricardo Pavoni ## -, Independiente 14 | (13) DF Gustavo de Simone ## -, Defensor Sporting 15 | (14) DF Luis Garisto ## -, Peñarol 16 | (15) DF Mario González ## -, Peñarol 17 | 18 | (7) MF Luis Cubilla ## -, Nacional 19 | (8) MF Víctor Espárrago ## -, Sevilla 20 | (10) MF Pedro Rocha ## -, São Paulo 21 | (16) MF Alberto Cardaccio ## -, Danubio 22 | (17) MF Julio César Jiménez ## -, Peñarol 23 | (18) MF Walter Mantegazza ## -, Nacional 24 | 25 | (9) FW Fernando Morena ## -, Peñarol 26 | (11) FW Rubén Corbo ## -, Peñarol 27 | (19) FW Denis Milar ## -, Liverpool 28 | (20) FW Juan Silva ## -, Peñarol 29 | (21) FW José Gómez ## -, Cerro 30 | 31 | -------------------------------------------------------------------------------- /1974--west-germany/squads/zai-zaire.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Zaire (ZAI) 3 | # - 22 players 4 | 5 | (1) GK Kazadi Mwamba ## -, TP Mazembe 6 | (12) GK Tubilandu Ndimbi ## -, AS Vita Club 7 | (22) GK Kalambay Otepa ## -, TP Mazembe 8 | 9 | (2) DF Mwepu Ilunga ## -, TP Mazembe 10 | (3) DF Mwanza Mukombo ## -, TP Mazembe 11 | (4) DF Bwanga Tshimen ## -, TP Mazembe 12 | (5) DF Lobilo Boba ## -, AS Vita Club 13 | (11) DF Kabasu Babo ## -, AS Bilima 14 | (16) DF Mwape Mialo ## -, Nyiki Lubumbashi 15 | 16 | (6) MF Kilasu Massamba ## -, AS Bilima 17 | (7) MF Tshinabu Wa Munda ## -, TP Mazembe 18 | (8) MF Mana Mamuwene ## -, CS Imana 19 | (9) MF Kembo Uba Kembo ## -, AS Vita Club 20 | (10) MF Kidumu Mantantu ## -, CS Imana 21 | (13) MF Ndaye Mulamba ## -, AS Vita Club 22 | (15) MF Kibonge Mafu ## -, AS Vita Club 23 | (17) MF Kafula Ngoie ## -, TP Mazembe 24 | 25 | (14) FW Mayanga Maku ## -, AS Vita Club 26 | (18) FW Mavuba Mafuila ## -, AS Vita Club 27 | (19) FW Mbungu Ekofa ## -, CS Imana 28 | (20) FW Jean Kalala N'Tumba ## -, AS Vita Club 29 | (21) FW Kakoko Etepé ## -, CS Imana 30 | 31 | -------------------------------------------------------------------------------- /1978--argentina/NOTES.md: -------------------------------------------------------------------------------- 1 | # World Cup 1978 Argentina, 1 - 25 June 2 | 3 | - start_at: 1978-05-01 4 | 5 | 6 | ## 16 Teams 7 | 8 | ``` 9 | ## -- Africa 10 | - tun # Tunisia 11 | ## -- Asia 12 | - irn # Iran 13 | ## -- Europe 14 | - aut # Austria 15 | - fra # France 16 | - frg # West Germany 17 | - hun # Hungary 18 | - ita # Italy 19 | - ned # Netherlands 20 | - pol # Poland 21 | - sco # Scotland 22 | - esp # Spain 23 | - swe # Sweden 24 | # -- North and Central America 25 | - mex # Mexico 26 | # -- South America 27 | - arg # Argentina 28 | - bra # Brazil 29 | - per # Peru 30 | ``` 31 | 32 | 33 | -------------------------------------------------------------------------------- /1978--argentina/squads/br-brazil.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Brazil (BRA) 3 | # - 22 players 4 | 5 | (1) GK Leão ## 50, Palmeiras 6 | (12) GK Carlos ## 0, Ponte Preta 7 | (22) GK Valdir Peres ## 5, São Paulo 8 | 9 | (2) DF Toninho ## 4, Flamengo 10 | (3) DF Oscar ## 4, Ponte Preta 11 | (4) DF Amaral ## 22, Corinthians 12 | (6) DF Edinho ## 12, Fluminense 13 | (13) DF Nelinho ## 13, Cruzeiro 14 | (14) DF Abel ## 1, Vasco da Gama 15 | (15) DF Polozzi ## 0, Ponte Preta 16 | (16) DF Rodrigues Neto ## 7, Botafogo 17 | 18 | (5) MF Toninho Cerezo ## 16, Atlético Mineiro 19 | (8) MF Zico ## 21, Flamengo 20 | (11) MF Dirceu ## 14, Vasco da Gama 21 | (17) MF Batista ## 4, Internacional 22 | (21) MF Chicão ## 5, São Paulo 23 | 24 | (7) FW Zé Sérgio ## 2, São Paulo 25 | (9) FW Reinaldo ## 12, Atlético Mineiro 26 | (10) FW Rivelino ## 88, Fluminense 27 | (18) FW Gil ## 22, Botafogo 28 | (19) FW Jorge Mendonça ## 0, Palmeiras 29 | (20) FW Roberto Dinamite ## 20, Vasco da Gama 30 | 31 | -------------------------------------------------------------------------------- /1978--argentina/squads/fr-france.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # France (FRA) 3 | # - 22 players 4 | 5 | (1) GK Dominique Baratelli ## 18, Nice 6 | (21) GK Jean-Paul Bertrand-Demanes ## 9, Nantes 7 | (22) GK Dominique Dropsy ## 0, Strasbourg 8 | 9 | (2) DF Patrick Battiston ## 5, Metz 10 | (3) DF Maxime Bossis ## 11, Nantes 11 | (4) DF Gérard Janvion ## 15, Saint-Étienne 12 | (5) DF François Bracci ## 15, Marseille 13 | (6) DF Christian Lopez ## 12, Saint-Étienne 14 | (7) DF Patrice Rio ## 15, Nantes 15 | (8) DF Marius Trésor ## 36, Marseille 16 | 17 | (9) MF Dominique Bathenay ## 12, Saint-Étienne 18 | (10) MF Jean-Marc Guillou ## 18, Nice 19 | (11) MF Henri Michel ## 52, Nantes 20 | (12) MF Claude Papi ## 2, Bastia 21 | (13) MF Jean Petit ## 3, AS Monaco 22 | (15) MF Michel Platini ## 15, Nancy 23 | (18) MF Dominique Rocheteau ## 10, Saint-Étienne 24 | (19) MF Didier Six ## 15, Lens 25 | 26 | (14) FW Marc Berdoll ## 10, Marseille 27 | (16) FW Christian Dalger ## 5, AS Monaco 28 | (17) FW Bernard Lacombe ## 14, Lyon 29 | (20) FW Olivier Rouyer ## 9, Nancy 30 | 31 | -------------------------------------------------------------------------------- /1978--argentina/squads/ir-iran.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Iran (IRN) 3 | # - 22 players 4 | 5 | (1) GK Nasser Hejazi ## -, Shahbaz 6 | (12) GK Bahram Mavaddat ## -, Sepahan 7 | (22) GK Rasoul Korbekandi ## -, Zob Ahan 8 | 9 | (5) DF Javad Allahverdi ## -, Persepolis 10 | (11) DF Ali Reza Ghesghayan ## -, Bargh Shiraz 11 | (14) DF Hassan Nazari ## -, Taj 12 | (15) DF Andranik Eskandarian ## -, Taj 13 | (20) DF Nasrollah Abdollahi ## -, Shahbaz 14 | (21) DF Hossein Kazerani ## -, Pas 15 | 16 | (2) MF Iraj Danaeifard ## -, Taj 17 | (6) MF Hassan Nayebagha ## -, Homa 18 | (7) MF Ali Parvin ## -, Persepolis 19 | (8) MF Ebrahim Ghasempour ## -, Shahbaz 20 | (9) MF Mohammad Sadeghi ## -, Pas 21 | (19) MF Ali Shojaei ## -, Sepahan 22 | 23 | (3) FW Behtash Fariba ## -, Pas 24 | (4) FW Majid Bishkar ## -, Shahbaz 25 | (10) FW Hassan Roshan ## -, Taj 26 | (13) FW Hamid Majd Teymouri ## -, Shahbaz 27 | (16) FW Nasser Nouraei ## -, Homa 28 | (17) FW Ghafour Jahani ## -, Malavan 29 | (18) FW Hossein Faraki ## -, Pas 30 | 31 | -------------------------------------------------------------------------------- /1978--argentina/squads/it-italy.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Italy (ITA) 3 | # - 22 players 4 | 5 | (1) GK Dino Zoff ## -, Juventus 6 | (12) GK Paolo Conti ## -, Roma 7 | (22) GK Ivano Bordon ## -, Internazionale 8 | 9 | (2) DF Mauro Bellugi ## -, Bologna 10 | (3) DF Antonio Cabrini ## -, Juventus 11 | (4) DF Antonello Cuccureddu ## -, Juventus 12 | (5) DF Claudio Gentile ## -, Juventus 13 | (6) DF Aldo Maldera ## -, Milan 14 | (7) DF Lionello Manfredonia ## -, Lazio 15 | (8) DF Gaetano Scirea ## -, Juventus 16 | 17 | (9) MF Giancarlo Antognoni ## -, Fiorentina 18 | (10) MF Romeo Benetti ## -, Juventus 19 | (11) MF Eraldo Pecci ## -, Torino 20 | (13) MF Patrizio Sala ## -, Torino 21 | (14) MF Marco Tardelli ## -, Juventus 22 | (15) MF Renato Zaccarelli ## -, Torino 23 | (16) MF Franco Causio ## -, Juventus 24 | (17) MF Claudio Sala ## -, Torino 25 | 26 | (18) FW Roberto Bettega ## -, Juventus 27 | (19) FW Francesco Graziani ## -, Torino 28 | (20) FW Paolo Pulici ## -, Torino 29 | (21) FW Paolo Rossi ## -, Vicenza 30 | 31 | -------------------------------------------------------------------------------- /1978--argentina/squads/nl-netherlands.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Netherlands (NED) 3 | # - 22 players 4 | 5 | (1) GK Piet Schrijvers ## 16, Ajax 6 | (8) GK Jan Jongbloed ## 19, Roda JC 7 | (19) GK Pim Doesburg ## 2, Sparta Rotterdam 8 | 9 | (2) DF Jan Poortvliet ## 1, PSV Eindhoven 10 | (4) DF Adrie van Kraay ## 13, PSV Eindhoven 11 | (5) DF Ruud Krol ## 52, Ajax 12 | (7) DF Piet Wildschut ## 1, Twente 13 | (15) DF Hugo Hovenkamp ## 7, AZ 14 | (17) DF Wim Rijsbergen ## 25, Feyenoord 15 | (20) DF Wim Suurbier ## 56, Schalke 04 16 | (22) DF Ernie Brandts ## 1, PSV Eindhoven 17 | 18 | (3) MF Dick Schoenaker ## 0, Ajax 19 | (6) MF Wim Jansen ## 50, Feyenoord 20 | (9) MF Arie Haan ## 24, Anderlecht 21 | (10) MF René van de Kerkhof ## 20, PSV Eindhoven 22 | (11) MF Willy van de Kerkhof ## 18, PSV Eindhoven 23 | (13) MF Johan Neeskens ## 38, Barcelona 24 | (14) MF Johan Boskamp ## 1, Molenbeek 25 | 26 | (12) FW Rob Rensenbrink ## 34, Anderlecht 27 | (16) FW Johnny Rep ## 23, SEC Bastia 28 | (18) FW Dick Nanninga ## 1, Roda JC 29 | (21) FW Harry Lubse ## 1, PSV Eindhoven 30 | 31 | -------------------------------------------------------------------------------- /1982--spain/NOTES.md: -------------------------------------------------------------------------------- 1 | # World Cup 1982 Spain 13 June - 11 July 2 | 3 | - start_at: 1982-06-13 4 | 5 | 6 | ## 24 Teams 7 | 8 | ``` 9 | ## -- Africa 10 | - alg # Algeria 11 | - cmr # Cameroon 12 | ## -- Asia 13 | - kuw # Kuwait 14 | ## -- Europe 15 | - aut # Austria 16 | - bel # Belgium 17 | - tch # Czechoslovakia 18 | - eng # England 19 | - fra # France 20 | - frg # West Germany 21 | - hun # Hungary 22 | - ita # Italy 23 | - nir # Northern Ireland 24 | - pol # Poland 25 | - sco # Scotland 26 | - urs # Soviet Union 27 | - esp # Spain 28 | - yug # Yugoslavia 29 | ## -- North and Central America 30 | - slv # El Salvador 31 | - hon # Honduras 32 | ## -- Oceania 33 | - nzl # New Zealand 34 | ## -- South America 35 | - arg # Argentina 36 | - bra # Brazil 37 | - chi # Chile 38 | - per # Peru 39 | ``` 40 | 41 | 42 | -------------------------------------------------------------------------------- /1982--spain/squads/br-brazil.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Brazil (BRA) 3 | # - 22 players 4 | 5 | (1) GK Valdir Peres ## 23, São Paulo 6 | (12) GK Paulo Sérgio ## 3, Botafogo 7 | (22) GK Carlos ## 6, Ponte Preta 8 | 9 | (2) DF Leandro ## 6, Flamengo 10 | (3) DF Oscar ## 36, São Paulo 11 | (4) DF Luizinho ## 24, Atlético Mineiro 12 | (6) DF Júnior ## 35, Flamengo 13 | (13) DF Edevaldo ## 17, Internacional 14 | (14) DF Juninho ## 4, Ponte Preta 15 | (16) DF Edinho ## 34, Fluminense 16 | (17) DF Pedrinho ## 8, Vasco da Gama 17 | 18 | (5) MF Toninho Cerezo ## 49, Atlético Mineiro 19 | (8) MF Sócrates ## 33, Corinthians 20 | (10) MF Zico ## 56, Flamengo 21 | (15) MF Falcão ## 17, Roma 22 | (18) MF Batista ## 32, Grêmio 23 | (19) MF Renato ## 13, São Paulo 24 | (21) MF Dirceu ## 23, Atlético Madrid 25 | 26 | (7) FW Paulo Isidoro ## 28, Grêmio 27 | (9) FW Serginho ## 15, São Paulo 28 | (11) FW Éder ## 24, Atlético Mineiro 29 | (20) FW Roberto Dinamite ## 32, Vasco da Gama 30 | 31 | -------------------------------------------------------------------------------- /1982--spain/squads/cm-cameroon.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Cameroon (CMR) 3 | # - 22 players 4 | 5 | (1) GK Thomas N'Kono ## -, Canon Yaoundé 6 | (12) GK Joseph-Antoine Bell ## -, Africa Sports 7 | (22) GK Simon Tchobang ## -, 8 | 9 | (2) DF Michel Kaham ## -, Stade Quimperois 10 | (3) DF Edmond Enoka ## -, 11 | (4) DF René N'Djeya ## -, Union Douala 12 | (5) DF Elie Onana ## -, 13 | (15) DF François N'Doumbé ## -, Union Douala 14 | (16) DF Ibrahim Aoudou ## -, Cannes 15 | 16 | (6) MF Emmanuel Kundé ## -, Canon Yaoundé 17 | (7) MF Ephrem M'Bom ## -, Canon Yaoundé 18 | (8) MF Grégoire M'Bida ## -, Canon Yaoundé 19 | (11) MF Charles Toubé ## -, Tonnerre Yaoundé 20 | (14) MF Théophile Abega ## -, Canon Yaoundé 21 | (17) MF Joseph Kamga ## -, Union Douala 22 | (19) MF Joseph Enanga ## -, Union Douala 23 | 24 | (9) FW Roger Milla ## -, Bastia 25 | (10) FW Jean-Pierre Tokoto ## -, Jacksonville Tea Men (USA) 26 | (13) FW Paul Bahoken ## -, Cannes 27 | (18) FW Jacques N'Guea ## -, Canon Yaoundé 28 | (20) FW Oscar Eyobo ## -, 29 | (21) FW Ernest Ebongué ## -, Tonnerre Yaoundé 30 | 31 | -------------------------------------------------------------------------------- /1982--spain/squads/it-italy.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Italy (ITA) 3 | # - 22 players 4 | 5 | (1) GK Dino Zoff ## -, Juventus 6 | (12) GK Ivano Bordon ## -, Internazionale 7 | (22) GK Giovanni Galli ## -, Fiorentina 8 | 9 | (2) DF Franco Baresi ## -, Milan 10 | (3) DF Giuseppe Bergomi ## -, Internazionale 11 | (4) DF Antonio Cabrini ## -, Juventus 12 | (5) DF Fulvio Collovati ## -, Milan 13 | (6) DF Claudio Gentile ## -, Juventus 14 | (7) DF Gaetano Scirea ## -, Juventus 15 | (8) DF Pietro Vierchowod ## -, Fiorentina 16 | 17 | (9) MF Giancarlo Antognoni ## -, Fiorentina 18 | (10) MF Giuseppe Dossena ## -, Torino 19 | (11) MF Giampiero Marini ## -, Internazionale 20 | (13) MF Gabriele Oriali ## -, Internazionale 21 | (14) MF Marco Tardelli ## -, Juventus 22 | (15) MF Franco Causio ## -, Udinese 23 | (16) MF Bruno Conti ## -, Roma 24 | 25 | (17) FW Daniele Massaro ## -, Fiorentina 26 | (18) FW Alessandro Altobelli ## -, Internazionale 27 | (19) FW Francesco Graziani ## -, Fiorentina 28 | (20) FW Paolo Rossi ## -, Juventus 29 | (21) FW Franco Selvaggi ## -, Cagliari 30 | 31 | -------------------------------------------------------------------------------- /1982--spain/squads/kw-kuwait.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Kuwait (KUW) 3 | # - 22 players 4 | 5 | (1) GK Ahmed Al-Tarabulsi ## -, Kuwait SC 6 | (21) GK Adam Marjam ## -, Kazma SC 7 | (22) GK Jasem Bahman ## -, Al-Qadsia SC 8 | 9 | (2) DF Naeem Saad ## -, Al Tadamun SC 10 | (3) DF Mahboub Juma'a ## -, Al-Salmiya SC 11 | (4) DF Jamal Al-Qabendi ## -, Kazma SC 12 | (5) DF Waleed Al-Jasem ## -, Kuwait SC 13 | (13) DF Mubarak Marzouq ## -, Al Tadamun SC 14 | (14) DF Abdullah Mayouf ## -, Kazma SC 15 | (15) DF Sami Al-Hashash ## -, Al-Arabi SC 16 | (17) DF Hamoud Al-Shemmari ## -, Kazma SC 17 | 18 | (6) MF Saad Al-Houti ## -, Kuwait SC 19 | (8) MF Abdullah Al-Buloushi ## -, Al-Arabi SC 20 | (11) MF Nassir Al-Ghanim ## -, Kazma SC 21 | (12) MF Yussef Al-Suwayed ## -, Kazma SC 22 | (18) MF Mohammed Karam ## -, Al-Arabi SC 23 | 24 | (7) FW Fathi Kameel ## -, Al Tadamun SC 25 | (9) FW Jasem Yaqoub ## -, Al-Qadsia SC 26 | (10) FW Abdulaziz Al-Anberi ## -, Kuwait SC 27 | (16) FW Faisal Al-Dakhil ## -, Al-Qadsia SC 28 | (19) FW Muayad Al-Haddad ## -, Khaitan SC 29 | (20) FW Abdulaziz Al-Buloushi ## -, Al-Qadsia SC 30 | 31 | -------------------------------------------------------------------------------- /1982--spain/squads/sv-el-salvador.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # El Salvador (SLV) 3 | # - 20 players 4 | 5 | (1) GK Luis Guevara Mora ## -, Platense Municipal 6 | (19) GK Eduardo Hernández ## -, Santiagueño 7 | (20) GK José Luis Munguía ## -, FAS 8 | 9 | (2) DF Mario Castillo ## -, Santiagueño 10 | (3) DF José Francisco Jovel ## -, Águila 11 | (4) DF Carlos Recinos ## -, FAS 12 | (5) DF Ramón Fagoaga ## -, Atlético Marte 13 | (12) DF Francisco Osorto ## -, Santiagueño 14 | (15) DF Jaime Rodríguez ## -, Bayer Uerdingen 15 | (18) DF Miguel Ángel Díaz ## -, Atlético Marte 16 | 17 | (6) MF Joaquín Ventura ## -, Santiagueño 18 | (7) MF Silvio Aquino ## -, Alianza 19 | (8) MF José Luis Rugamas ## -, Atlético Marte 20 | (10) MF ## -, Palencia 21 | (16) MF Mauricio Alfaro ## -, Platense Municipal 22 | 23 | (9) FW Ever Hernández ## -, Santiagueño 24 | (11) FW Mágico González ## -, Cadiz 25 | (13) FW José María Rivas ## -, Alianza 26 | (14) FW Luis Ramírez ## -, Atlético Marte 27 | (17) FW Guillermo Ragazzone ## -, Atlético Marte 28 | 29 | -------------------------------------------------------------------------------- /1986--mexico/NOTES.md: -------------------------------------------------------------------------------- 1 | # World Cup 1986 Mexico, 31 May-29 June 2 | 3 | - start_at: 1986-05-31 4 | 5 | 6 | ## 24 Teams 7 | 8 | ``` 9 | # -- Africa 10 | - alg # Algeria 11 | - mar # Morocco 12 | # -- Asia 13 | - irq # Iraq 14 | - kor # South Korea 15 | # -- Europe 16 | - bel # Belgium 17 | - bul # Bulgaria 18 | - den # Denmark 19 | - eng # England 20 | - fra # France 21 | - frg # West Germany 22 | - hun # Hungary 23 | - ita # Italy 24 | - nir # Northern Ireland 25 | - pol # Poland 26 | - por # Portugal 27 | - sco # Scotland 28 | - urs # Soviet Union 29 | - esp # Spain 30 | # -- North and Central America 31 | - can # Canada 32 | - mex # Mexico 33 | # -- South America 34 | - arg # Argentina 35 | - bra # Brazil 36 | - par # Paraguay 37 | - uru # Uruguay 38 | ``` 39 | -------------------------------------------------------------------------------- /1986--mexico/cup_finals.txt: -------------------------------------------------------------------------------- 1 | = World Cup 1986 # in Mexico, 31 May-29 June 2 | 3 | 4 | ### --- Knockout stage 5 | 6 | Round of 16 7 | 8 | (37) 15 June Mexico 2-0 Bulgaria @ Estadio Azteca, Mexico City 9 | (38) 15 June Soviet Union 3-4 a.e.t. (2-2) Belgium @ Estadio Nou Camp, León 10 | (39) 16 June Argentina 1-0 Uruguay @ Estadio Cuauhtémoc, Puebla 11 | (40) 16 June Brazil 4-0 Poland @ Estadio Jalisco, Guadalajara 12 | (41) 17 June Italy 0-2 France @ Estadio Olímpico Universitario, Mexico City 13 | (42) 17 June Morocco 0-1 West Germany @ Estadio Universitario, Monterrey 14 | (43) 18 June England 3-0 Paraguay @ Estadio Azteca, Mexico City 15 | (44) 18 June Denmark 1-5 Spain @ Estadio La Corregidora, Querétaro 16 | 17 | 18 | Quarter-finals 19 | 20 | (45) 21 June Brazil 3-4pen 1-1aet (1-1) France @ Estadio Jalisco, Guadalajara 21 | (46) 21 June West Germany 4-1pen 0-0 aet (0-0) Mexico @ Estadio Universitario, Monterrey 22 | (47) 22 June Spain 4-5pen 1-1 aet (1-1) Belgium @ Estadio Cuauhtémoc, Puebla 23 | (48) 22 June Argentina 2-1 England @ Estadio Azteca, Mexico City 24 | 25 | Semi-finals 26 | 27 | (49) 25 June Argentina 2-0 Belgium @ Estadio Azteca, Mexico City 28 | (50) 25 June France 0-2 West Germany @ Estadio Jalisco, Guadalajara 29 | 30 | Third place match 31 | 32 | (51) 28 June France 4-2aet (2-2) Belgium @ Estadio Cuauhtémoc, Puebla 33 | 34 | Final 35 | 36 | (52) 29 June Argentina 3-2 West Germany @ Estadio Azteca, Mexico City 37 | -------------------------------------------------------------------------------- /1986--mexico/squads/be-belgium.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Belgium (BEL) 3 | # - 22 players 4 | 5 | (1) GK Jean-Marie Pfaff ## -, Bayern Munich 6 | (12) GK Jacky Munaron ## -, Anderlecht 7 | (20) GK Gilbert Bodart ## -, Standard Liège 8 | 9 | (2) DF Eric Gerets ## -, PSV 10 | (3) DF Franky Van Der Elst ## -, Club Brugge 11 | (4) DF Michel de Wolf ## -, Gent 12 | (5) DF Michel Renquin ## -, Standard Liège 13 | (13) DF Georges Grün ## -, Anderlecht 14 | (14) DF Lei Clijsters ## -, Waterschei Thor 15 | (15) DF Leo Van Der Elst ## -, Club Brugge 16 | (19) DF Hugo Broos ## -, Club Brugge 17 | 18 | (6) MF Franky Vercauteren ## -, Anderlecht 19 | (7) MF René Vandereycken ## -, Anderlecht 20 | (8) MF Enzo Scifo ## -, Anderlecht 21 | (10) MF Philippe Desmet ## -, Waregem 22 | (11) MF Jan Ceulemans ## -, Club Brugge 23 | (17) MF Raymond Mommens ## -, Lokeren 24 | (21) MF Stéphane Demol ## -, Anderlecht 25 | (22) MF Patrick Vervoort ## -, Beerschot 26 | 27 | (9) FW Erwin Vandenbergh ## -, Anderlecht 28 | (16) FW Nico Claesen ## -, Standard Liège 29 | (18) FW Daniel Veyt ## -, Waregem 30 | 31 | -------------------------------------------------------------------------------- /1986--mexico/squads/br-brazil.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Brazil (BRA) 3 | # - 22 players 4 | 5 | (1) GK Carlos ## -, Corinthians 6 | (12) GK Paulo Vitor ## -, Fluminense 7 | (22) GK Leão ## -, Palmeiras 8 | 9 | (2) DF Édson ## -, Corinthians 10 | (3) DF Oscar ## -, São Paulo 11 | (4) DF Edinho ## -, Udinese 12 | (6) DF Júnior ## -, Torino 13 | (13) DF Josimar ## -, Botafogo 14 | (14) DF Júlio César ## -, Guarani 15 | (16) DF Mauro Galvão ## -, Internacional 16 | (17) DF Branco ## -, Fluminense 17 | 18 | (5) MF Falcão ## -, São Paulo 19 | (15) MF Alemão ## -, Botafogo 20 | (18) MF Sócrates ## -, Flamengo 21 | (19) MF Elzo ## -, Atlético Mineiro 22 | (20) MF Silas ## -, São Paulo 23 | (21) MF Valdo ## -, Grêmio 24 | 25 | (7) FW Müller ## -, São Paulo 26 | (8) FW Casagrande ## -, Corinthians 27 | (9) FW Careca ## -, São Paulo 28 | (10) FW Zico ## -, Flamengo 29 | (11) FW Edivaldo ## -, Atlético Mineiro 30 | 31 | -------------------------------------------------------------------------------- /1986--mexico/squads/dk-denmark.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Denmark (DEN) 3 | # - 22 players 4 | 5 | (1) GK Troels Rasmussen ## 15, Aarhus GF 6 | (16) GK Ole Qvist ## 38, KB 7 | (22) GK Lars Høgh ## 3, Odense 8 | 9 | (2) DF John Sivebæk ## 36, Manchester United 10 | (3) DF Søren Busk ## 46, MVV Maastricht 11 | (4) DF Morten Olsen ## 79, Anderlecht 12 | (5) DF Ivan Nielsen ## 31, Feyenoord 13 | (12) DF Jens Jørn Bertelsen ## 58, Aarau 14 | (17) DF Kent Nielsen ## 4, Brønshøj 15 | (21) DF Henrik Andersen ## 6, Anderlecht 16 | 17 | (6) MF Søren Lerby ## 51, Bayern Munich 18 | (7) MF Jan Mølby ## 20, Liverpool 19 | (8) MF Jesper Olsen ## 26, Manchester United 20 | (11) MF Michael Laudrup ## 30, Juventus 21 | (13) MF Per Frimann ## 10, Anderlecht 22 | (15) MF Frank Arnesen ## 45, PSV 23 | (18) MF Flemming Christensen ## 10, Lyngby 24 | (20) MF Jan Bartram ## 3, Aarhus 25 | 26 | (9) FW Klaus Berggreen ## 32, Pisa 27 | (10) FW Preben Elkjær Larsen ## 56, Verona 28 | (14) FW Allan Simonsen ## 53, Vejle 29 | (19) FW John Eriksen ## 5, Feyenoord 30 | 31 | -------------------------------------------------------------------------------- /1986--mexico/squads/fr-france.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # France (FRA) 3 | # - 22 players 4 | 5 | (1) GK Joël Bats ## 23, Paris Saint-Germain 6 | (21) GK Philippe Bergeroo ## 3, Toulouse 7 | (22) GK Albert Rust ## 0, Sochaux 8 | 9 | (2) DF Manuel Amoros ## 32, AS Monaco 10 | (3) DF William Ayache ## 9, Nantes 11 | (4) DF Patrick Battiston ## 42, Bordeaux 12 | (5) DF Michel Bibard ## 5, Paris Saint-Germain 13 | (6) DF Maxime Bossis ## 69, Racing Paris 14 | (7) DF Yvon Le Roux ## 18, Nantes 15 | (8) DF Thierry Tusseau ## 18, Bordeaux 16 | 17 | (9) MF Luis Fernández ## 28, Paris Saint-Germain 18 | (10) MF Michel Platini ## 63, Juventus 19 | (11) MF Jean-Marc Ferreri ## 14, Auxerre 20 | (12) MF Alain Giresse ## 41, Bordeaux 21 | (13) MF Bernard Genghini ## 25, AS Monaco 22 | (14) MF Jean Tigana ## 40, Bordeaux 23 | (15) MF Philippe Vercruysse ## 2, Lens 24 | 25 | (16) FW Bruno Bellone ## 24, AS Monaco 26 | (17) FW Jean-Pierre Papin ## 1, Club Brugge 27 | (18) FW Dominique Rocheteau ## 45, Paris Saint-Germain 28 | (19) FW Yannick Stopyra ## 16, Toulouse 29 | (20) FW Daniel Xuereb ## 3, Lens 30 | 31 | -------------------------------------------------------------------------------- /1986--mexico/squads/iq-iraq.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Iraq (IRQ) 3 | # - 22 players 4 | 5 | (1) GK Raad Hammoudi Salman ## -, Al-Shurta 6 | (20) GK Abdul-Fatah Nasif Jassim ## -, Al-Jaish 7 | (21) GK Ahmad Jassim Mohammed ## -, Al-Rasheed 8 | 9 | (2) DF Maad Ibrahim Majid ## -, Al-Rasheed 10 | (3) DF Khalil Mohammed Allawi ## -, Al-Rasheed 11 | (4) DF Nadhim Shaker Salim ## -, Al-Tayaran 12 | (5) DF Samir Shaker Mahmoud ## -, Al-Rasheed 13 | (15) DF Natiq Hashim Abidoun ## -, Al-Tayaran 14 | (22) DF Ghanim Oraibi Jassim ## -, Al-Shabab 15 | 16 | (6) MF Ali Hussein Shihab ## -, Talaba 17 | (7) MF Haris Mohammed Hassan ## -, Al-Rasheed 18 | (12) MF Jamal Ali Hamza ## -, Talaba 19 | (13) MF Karim Mohammed Allawi ## -, Al-Rasheed 20 | (14) MF Basil Gorgis Hanna ## -, Al-Shabab 21 | (16) MF Shaker Mahmoud Hamza ## -, Al-Shabab 22 | (17) MF Anad Abid Tweresh ## -, Al-Rasheed 23 | (18) MF Ismail Mohammed Sharif ## -, Al-Shabab 24 | (19) MF Basim Qasim Hamdan ## -, Al-Shurta 25 | 26 | (8) FW Ahmad Radhi Amaiesh ## -, Al-Rasheed 27 | (9) FW Karim Saddam Minshid ## -, Al-Jaish 28 | (10) FW Hussein Saeed Mohammed ## -, Talaba 29 | (11) FW Abdul-Rahim Hamed Aufi ## -, Al-Jaish 30 | 31 | -------------------------------------------------------------------------------- /1986--mexico/squads/it-italy.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Italy (ITA) 3 | # - 22 players 4 | 5 | (1) GK Giovanni Galli ## -, Milan 6 | (12) GK Franco Tancredi ## -, Roma 7 | (22) GK Walter Zenga ## -, Internazionale 8 | 9 | (2) DF Giuseppe Bergomi ## -, Internazionale 10 | (3) DF Antonio Cabrini ## -, Juventus 11 | (4) DF Fulvio Collovati ## -, Internazionale 12 | (5) DF Sebastiano Nela ## -, Roma 13 | (6) DF Gaetano Scirea ## -, Juventus 14 | (7) DF Roberto Tricella ## -, Verona 15 | (8) DF Pietro Vierchowod ## -, Sampdoria 16 | 17 | (9) MF Carlo Ancelotti ## -, Roma 18 | (10) MF Salvatore Bagni ## -, Napoli 19 | (11) MF Giuseppe Baresi ## -, Internazionale 20 | (13) MF Fernando De Napoli ## -, Avellino 21 | (14) MF Antonio Di Gennaro ## -, Verona 22 | (15) MF Marco Tardelli ## -, Internazionale 23 | (16) MF Bruno Conti ## -, Roma 24 | 25 | (17) FW Gianluca Vialli ## -, Sampdoria 26 | (18) FW Alessandro Altobelli ## -, Internazionale 27 | (19) FW Giuseppe Galderisi ## -, Milan 28 | (20) FW Paolo Rossi ## -, Milan 29 | (21) FW Aldo Serena ## -, Juventus 30 | 31 | -------------------------------------------------------------------------------- /1986--mexico/squads/mx-mexico.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Mexico (MEX) 3 | # - 22 players 4 | 5 | (1) GK Pablo Larios ## -, Cruz Azul 6 | (12) GK Ignacio Rodríguez ## -, Atlante 7 | (20) GK Olaf Heredia ## -, Tigres 8 | 9 | (2) DF Mario Trejo ## -, Club América 10 | (3) DF Fernando Quirarte ## -, Guadalajara 11 | (4) DF Armando Manzo ## -, Club América 12 | (14) DF Felix Cruz ## -, UNAM Pumas 13 | (17) DF Raúl Servín ## -, UNAM Pumas 14 | (18) DF Rafael Amador ## -, UNAM Pumas 15 | 16 | (6) MF Carlos de los Cobos ## -, Club América 17 | (7) MF Miguel España ## -, UNAM Pumas 18 | (8) MF Alejandro Domínguez ## -, Club América 19 | (10) MF Tomás Boy ## -, Tigres 20 | (13) MF Javier Aguirre ## -, Club América 21 | (16) MF Carlos Muñoz ## -, Tigres 22 | 23 | (5) FW Francisco Javier Cruz ## -, Monterrey 24 | (9) FW Hugo Sánchez ## -, Real Madrid 25 | (11) FW Carlos Hermosillo ## -, Club América 26 | (15) FW Luis Flores ## -, UNAM Pumas 27 | (19) FW Javier Hernández ## -, Tecos 28 | (21) FW Cristóbal Ortega ## -, Club América 29 | (22) FW Manuel Negrete ## -, UNAM Pumas 30 | 31 | -------------------------------------------------------------------------------- /1986--mexico/squads/pt-portugal.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Portugal (POR) 3 | # - 22 players 4 | 5 | (1) GK Manuel Bento ## -, Benfica 6 | (12) GK Jorge Martins ## -, Belenenses 7 | (22) GK Vítor Damas ## -, Sporting CP 8 | 9 | (2) DF João Pinto ## -, Porto 10 | (4) DF José Ribeiro ## -, Boavista 11 | (5) DF Álvaro ## -, Benfica 12 | (8) DF Frederico ## -, Boavista 13 | (13) DF António Morato ## -, Sporting CP 14 | (16) DF José António ## -, Belenenses 15 | (20) DF Augusto Inácio ## -, Porto 16 | 17 | (3) MF António Sousa ## -, Sporting CP 18 | (6) MF Carlos Manuel ## -, Benfica 19 | (7) MF Jaime Pacheco ## -, Sporting CP 20 | (11) MF Fernando Óscar Bandeirinha ## -, Académica de Coimbra 21 | (14) MF Jaime Magalhães ## -, Porto 22 | (18) MF Luís Sobrinho ## -, Belenenses 23 | (21) MF António André ## -, Porto 24 | 25 | (9) FW Fernando Gomes ## -, Porto 26 | (10) FW Paulo Futre ## -, Porto 27 | (15) FW António Oliveira ## -, Benfica 28 | (17) FW Diamantino ## -, Benfica 29 | (19) FW Rui Águas ## -, Benfica 30 | 31 | -------------------------------------------------------------------------------- /1986--mexico/squads/py-paraguay.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Paraguay (PAR) 3 | # - 22 players 4 | 5 | (1) GK Roberto Fernández ## -, Deportivo Cali 6 | (12) GK Jorge Battaglia ## -, Sol de America 7 | (22) GK Julián Coronel ## -, Guaraní 8 | 9 | (2) DF Juan Torales ## -, Libertad 10 | (3) DF César Zabala ## -, Cerro Porteño 11 | (4) DF Vladimiro Schettina ## -, Guaraní 12 | (5) DF Rogelio Delgado ## -, Olimpia 13 | (13) DF Virginio Cáceres ## -, Guaraní 14 | (14) DF Luis Caballero ## -, Guaraní 15 | 16 | (6) MF Jorge Amado Nunes ## -, Deportivo Cali 17 | (8) MF Julio César Romero ## -, Fluminense 18 | (10) MF Adolfino Cañete ## -, Cruz Azul 19 | (15) MF Eufemio Cabral ## -, Guaraní 20 | (16) MF Jorge Guasch ## -, Olimpia 21 | (19) MF Rolando Chilavert ## -, Guaraní 22 | 23 | (7) FW Buenaventura Ferreira ## -, Deportivo Cali 24 | (9) FW Roberto Cabañas ## -, América de Cali 25 | (11) FW Alfredo Mendoza ## -, Independiente Medellín 26 | (17) FW Francisco Alcaraz ## -, Nacional 27 | (18) FW Evaristo Isasi ## -, Olimpia 28 | (20) FW Ramón Hicks ## -, Libertad 29 | (21) FW Faustino Alonso ## -, Sol de America 30 | 31 | -------------------------------------------------------------------------------- /1986--mexico/squads/uy-uruguay.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Uruguay (URU) 3 | # - 22 players 4 | 5 | (1) GK Rodolfo Rodríguez ## -, Santos 6 | (12) GK Fernando Alvez ## -, Peñarol 7 | (22) GK Celso Otero ## -, Montevideo Wanderers 8 | 9 | (2) DF Nelson Gutiérrez ## -, River Plate 10 | (3) DF Eduardo Mario Acevedo ## -, Defensor Sporting 11 | (4) DF Víctor Diogo ## -, Palmeiras 12 | (6) DF José Batista ## -, Deportivo Español 13 | (13) DF César Vega ## -, Danubio 14 | (14) DF Darío Pereyra ## -, São Paulo 15 | (15) DF Eliseo Rivero ## -, Peñarol 16 | 17 | (5) MF Miguel Bossio ## -, Peñarol 18 | (8) MF Jorge Barrios ## -, Olympiakos 19 | (10) MF Enzo Francescoli ## -, River Plate 20 | (11) MF Sergio Santín ## -, Atlético Nacional 21 | (16) MF Mario Saralegui ## -, Peñarol 22 | (17) MF José Zalazar ## -, Peñarol 23 | (18) MF Rubén Paz ## -, Internacional 24 | 25 | (7) FW Antonio Alzamendi ## -, River Plate 26 | (9) FW Jorge da Silva ## -, Atlético Madrid 27 | (19) FW Venancio Ramos ## -, Lens 28 | (20) FW Carlos Aguilera ## -, Nacional 29 | (21) FW Wilmar Cabrera ## -, Valencia 30 | 31 | -------------------------------------------------------------------------------- /1990--italy/NOTES.md: -------------------------------------------------------------------------------- 1 | # World Cup 1990 Italy, 8 June - 8 July 1990 2 | 3 | - start_at: 1990-06-08 4 | 5 | 6 | 7 | ## 24 Teams 8 | 9 | ``` 10 | # -- Africa 11 | - cmr # Cameroon 12 | - egy # Egypt 13 | # -- Asia 14 | - kor # South Korea 15 | - uae # United Arab Emirates 16 | # -- Europe 17 | - aut # Austria 18 | - bel # Belgium 19 | - tch # Czechoslovakia 20 | - eng # England 21 | - frg # West Germany 22 | - ita # Italy 23 | - ned # Netherlands 24 | - irl # Ireland 25 | - rou # Romania 26 | - sco # Scotland 27 | - urs # Soviet Union 28 | - esp # Spain 29 | - swe # Sweden 30 | - yug # Yugoslavia 31 | # -- North and Central America 32 | - crc # Costa Rica 33 | - usa # United States 34 | # -- South America 35 | - arg # Argentina 36 | - bra # Brazil 37 | - col # Colombia 38 | - uru # Uruguay 39 | ``` 40 | 41 | 42 | -------------------------------------------------------------------------------- /1990--italy/squads/ae-united-arab-emirates.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # United Arab Emirates (UAE) 3 | # - 22 players 4 | 5 | (1) GK Abdullah Musa ## -, Al-Ahli 6 | (17) GK Muhsin Musabah ## -, Sharjah 7 | (22) GK Abdulqadir Hassan ## -, Al Shabab 8 | 9 | (2) DF Khalil Ghanim ## -, Al Khaleej Club 10 | (4) DF Mubarak Ghanim ## -, Al Khaleej Club 11 | (6) DF Abdulrahman Mohamed ## -, Al-Nasr 12 | (15) DF Ibrahim Meer ## -, Sharjah 13 | (16) DF Mohamed Salim ## -, Al-Ahli 14 | (19) DF Eissa Meer ## -, Sharjah 15 | (20) DF Yousuf Hussain ## -, Sharjah 16 | (21) DF Abdulrahman Al-Haddad ## -, Sharjah 17 | 18 | (3) MF Ali Thani Jumaa ## -, Sharjah 19 | (5) MF Abdualla Sultan ## -, Al Khaleej Club 20 | (8) MF Khalid Ismaïl ## -, Al-Nasr 21 | (12) MF Hussain Ghuloum ## -, Sharjah 22 | (13) MF Hassan Mohamed ## -, Al-Wasl 23 | (14) MF Nasir Khamees ## -, Al-Wasl 24 | (18) MF Fahad Abdulrahman ## -, Al-Wasl 25 | 26 | (7) FW Fahad Khamees ## -, Al-Wasl 27 | (9) FW Abdulaziz Mohamed ## -, Sharjah 28 | (10) FW Adnan Al Talyani ## -, Al Shaab 29 | (11) FW Zuhair Bakhit ## -, Al-Wasl 30 | 31 | -------------------------------------------------------------------------------- /1990--italy/squads/be-belgium.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Belgium (BEL) 3 | # - 22 players 4 | 5 | (1) GK Michel Preud'homme ## -, Mechelen 6 | (12) GK Gilbert Bodart ## -, Standard Liège 7 | (20) GK Filip De Wilde ## -, Anderlecht 8 | 9 | (2) DF Eric Gerets ## -, PSV 10 | (3) DF Philippe Albert ## -, Mechelen 11 | (4) DF Lei Clijsters ## -, Mechelen 12 | (6) DF Marc Emmers ## -, Mechelen 13 | (7) DF Stéphane Demol ## -, Porto 14 | (13) DF Georges Grün ## -, Anderlecht 15 | (16) DF Michel De Wolf ## -, Kortrijk 16 | (17) DF Pascal Plovie ## -, Club Brugge 17 | 18 | (5) MF Bruno Versavel ## -, Mechelen 19 | (8) MF Franky Van Der Elst ## -, Club Brugge 20 | (10) MF Enzo Scifo ## -, Auxerre 21 | (15) MF Jean-François De Sart ## -, FC Liège 22 | (18) MF Lorenzo Staelens ## -, Club Brugge 23 | (21) MF Marc Wilmots ## -, Mechelen 24 | (22) MF Patrick Vervoort ## -, Anderlecht 25 | 26 | (9) FW Marc Degryse ## -, Anderlecht 27 | (11) FW Jan Ceulemans ## -, Club Brugge 28 | (14) FW Nico Claesen ## -, Royal Antwerp 29 | (19) FW Marc Van Der Linden ## -, Anderlecht 30 | 31 | -------------------------------------------------------------------------------- /1990--italy/squads/br-brazil.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Brazil (BRA) 3 | # - 22 players 4 | 5 | (1) GK Taffarel ## -, Internacional 6 | (12) GK Acácio ## -, Vasco da Gama 7 | (22) GK Zé Carlos ## -, Flamengo 8 | 9 | (2) DF Jorginho ## -, Bayer Leverkusen 10 | (3) DF Ricardo Gomes ## -, Benfica 11 | (6) DF Branco ## -, Porto 12 | (13) DF Carlos Mozer ## -, Marseille 13 | (14) DF Aldair ## -, Benfica 14 | (19) DF Ricardo Rocha ## -, São Paulo 15 | (21) DF Mauro Galvão ## -, Botafogo 16 | 17 | (4) MF Dunga ## -, Fiorentina 18 | (5) MF Alemão ## -, Napoli 19 | (7) MF Bismarck ## -, Vasco da Gama 20 | (8) MF Valdo ## -, Benfica 21 | (10) MF Silas ## -, Central Español 22 | (18) MF Mazinho ## -, Vasco da Gama 23 | 24 | (9) FW Careca ## -, Napoli 25 | (11) FW Romário ## -, PSV 26 | (15) FW Müller ## -, Torino 27 | (16) FW Bebeto ## -, Vasco da Gama 28 | (17) FW Renato Gaúcho ## -, Flamengo 29 | (20) FW Tita ## -, Vasco da Gama 30 | 31 | -------------------------------------------------------------------------------- /1990--italy/squads/eg-egypt.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Egypt (EGY) 3 | # - 22 players 4 | 5 | (1) GK Ahmed Shobair ## -, Al-Ahly 6 | (21) GK Ayman Taher ## -, Zamalek 7 | (22) GK Thabet El-Batal ## -, Al-Ahly 8 | 9 | (2) DF Ibrahim Hassan ## -, Al-Ahly 10 | (3) DF Rabie Yassin ## -, Al-Ahly 11 | (4) DF Hany Ramzy ## -, Al-Ahly 12 | (5) DF Hesham Yakan ## -, Zamalek 13 | (6) DF Ashraf Kasem ## -, Zamalek 14 | (13) DF Ahmed Ramzy ## -, Zamalek 15 | 16 | (8) MF Magdi Abdelghani ## -, Beira-Mar 17 | (10) MF Gamal Abdelhamid ## -, Zamalek 18 | (12) MF Taher Abouzaid ## -, Al-Ahly 19 | (14) MF Alaa Maihoub ## -, Al-Ahly 20 | (15) MF Saber Eid ## -, Ghazl El-Mehalla 21 | (16) MF Magdy Tolba ## -, PAOK 22 | (18) MF Osama Oraby ## -, Al-Ahly 23 | (20) MF Ahmed El-Kass ## -, El-Olympi Alexandria 24 | 25 | (7) FW Ismail Youssef ## -, Zamalek 26 | (9) FW Hossam Hassan ## -, Al-Ahly 27 | (11) FW Tarek Soliman ## -, Al-Masry 28 | (17) FW Ayman Shawky ## -, Al-Ahly 29 | (19) FW Adel Abdelrahman ## -, Al-Ahly 30 | 31 | -------------------------------------------------------------------------------- /1990--italy/squads/es-espana.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Spain (ESP) 3 | # - 22 players 4 | 5 | (1) GK Andoni Zubizarreta ## 49, Barcelona 6 | (13) GK Juan Carlos Ablanedo ## 2, Sporting Gijón 7 | (22) GK José Manuel Ochotorena ## 1, Valencia 8 | 9 | (2) DF Chendo ## 17, Real Madrid 10 | (3) DF Manuel Jiménez ## 13, Sevilla 11 | (4) DF Genar Andrinúa ## 24, Athletic Club 12 | (5) DF Manuel Sanchís ## 30, Real Madrid 13 | (8) DF Quique ## 11, Valencia 14 | (12) DF Rafael Alkorta ## 1, Athletic Club 15 | (14) DF Alberto Górriz ## 8, Real Sociedad 16 | (17) DF Fernando Hierro ## 2, Real Madrid 17 | 18 | (6) MF Rafael Martín Vázquez ## 22, Real Madrid 19 | (10) MF Fernando ## 2, Valencia 20 | (11) MF Francisco Villarroya ## 7, Real Zaragoza 21 | (15) MF Roberto ## 22, Barcelona 22 | (16) MF José Mari Bakero ## 11, Barcelona 23 | (18) MF Rafael Paz ## 3, Sevilla 24 | (21) MF Míchel ## 44, Real Madrid 25 | 26 | (7) FW Miguel Pardeza ## 4, Real Zaragoza 27 | (9) FW Emilio Butragueño ## 49, Real Madrid 28 | (19) FW Julio Salinas ## 26, Barcelona 29 | (20) FW Manolo ## 13, Atlético Madrid 30 | 31 | -------------------------------------------------------------------------------- /1990--italy/squads/it-italy.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Italy (ITA) 3 | # - 22 players 4 | 5 | (1) GK Walter Zenga ## 35, Internazionale 6 | (12) GK Stefano Tacconi ## 5, Juventus 7 | (22) GK Gianluca Pagliuca ## 0, Sampdoria 8 | 9 | (2) DF Franco Baresi ## 39, Milan 10 | (3) DF Giuseppe Bergomi ## 65, Internazionale 11 | (4) DF Luigi De Agostini ## 24, Juventus 12 | (5) DF Ciro Ferrara ## 16, Napoli 13 | (6) DF Riccardo Ferri ## 29, Internazionale 14 | (7) DF Paolo Maldini ## 19, Milan 15 | (8) DF Pietro Vierchowod ## 29, Sampdoria 16 | 17 | (9) MF Carlo Ancelotti ## 22, Milan 18 | (10) MF Nicola Berti ## 11, Internazionale 19 | (11) MF Fernando De Napoli ## 38, Napoli 20 | (13) MF Giuseppe Giannini ## 34, Roma 21 | (14) MF Giancarlo Marocchi ## 7, Juventus 22 | (17) MF Roberto Donadoni ## 29, Milan 23 | 24 | (15) FW Roberto Baggio ## 8, Fiorentina 25 | (16) FW Andrea Carnevale ## 8, Napoli 26 | (18) FW Roberto Mancini ## 20, Sampdoria 27 | (19) FW Salvatore Schillaci ## 1, Juventus 28 | (20) FW Aldo Serena ## 18, Internazionale 29 | (21) FW Gianluca Vialli ## 42, Sampdoria 30 | 31 | -------------------------------------------------------------------------------- /1990--italy/squads/nl-netherlands.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Netherlands (NED) 3 | # - 22 players 4 | 5 | (1) GK Hans van Breukelen ## 52, PSV 6 | (16) GK Joop Hiele ## 6, Feyenoord 7 | (22) GK Stanley Menzo ## 1, Ajax 8 | 9 | (2) DF Berry van Aerle ## 22, PSV 10 | (4) DF Ronald Koeman ## 43, Barcelona 11 | (5) DF Adri van Tiggelen ## 40, Anderlecht 12 | (13) DF Graeme Rutjes ## 7, Mechelen 13 | (18) DF Henk Fräser ## 2, Roda JC 14 | (21) DF Danny Blind ## 5, Ajax 15 | 16 | (3) MF Frank Rijkaard ## 42, Milan 17 | (6) MF Jan Wouters ## 30, Ajax 18 | (7) MF Erwin Koeman ## 23, Mechelen 19 | (8) MF Gerald Vanenburg ## 36, PSV 20 | (10) MF Ruud Gullit ## 44, Milan 21 | (11) MF Richard Witschge ## 4, Ajax 22 | (14) MF John van 't Schip ## 22, Ajax 23 | (15) MF Bryan Roy ## 2, Ajax 24 | (20) MF Aron Winter ## 11, Ajax 25 | 26 | (9) FW Marco van Basten ## 35, Milan 27 | (12) FW Wim Kieft ## 27, PSV 28 | (17) FW Hans Gillhaus ## 2, Aberdeen 29 | (19) FW John van Loen ## 6, Roda JC 30 | 31 | -------------------------------------------------------------------------------- /1990--italy/squads/se-sweden.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Sweden (SWE) 3 | # - 22 players 4 | 5 | (1) GK Sven Andersson ## -, Örgryte 6 | (12) GK Lars Eriksson ## -, Norrköping 7 | (22) GK Thomas Ravelli ## -, IFK Göteborg 8 | 9 | (2) DF Jan Eriksson ## -, AIK 10 | (3) DF Glenn Hysén ## -, Liverpool 11 | (4) DF Peter Larsson ## -, Ajax 12 | (5) DF Roger Ljung ## -, Young Boys 13 | (6) DF Roland Nilsson ## -, Sheffield Wednesday 14 | (7) DF Niklas Nyhlén ## -, Malmö 15 | (8) DF Stefan Schwarz ## -, Malmö 16 | 17 | (9) MF Leif Engqvist ## -, Malmö 18 | (10) MF Klas Ingesson ## -, IFK Göteborg 19 | (11) MF Ulrik Jansson ## -, 20 | (13) MF Anders Limpar ## -, Cremonese 21 | (14) MF Joakim Nilsson ## -, Malmö 22 | (15) MF Glenn Strömberg ## -, Atalanta 23 | (16) MF Jonas Thern ## -, Benfica 24 | (19) MF Mats Gren ## -, Grasshopper 25 | 26 | (17) FW Tomas Brolin ## -, Norrköping 27 | (18) FW Johnny Ekström ## -, Cannes 28 | (20) FW Mats Magnusson ## -, Benfica 29 | (21) FW Stefan Pettersson ## -, Ajax 30 | 31 | -------------------------------------------------------------------------------- /1990--italy/squads/uy-uruguay.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Uruguay (URU) 3 | # - 22 players 4 | 5 | (1) GK Fernando Álvez ## -, Peñarol 6 | (12) GK Eduardo Pereira ## -, Independiente 7 | (22) GK Javier Zeoli ## -, Danubio 8 | 9 | (2) DF Nelson Gutiérrez ## -, Verona 10 | (3) DF Hugo de León ## -, River Plate 11 | (4) DF José Oscar Herrera ## -, Figueres 12 | (6) DF Alfonso Domínguez ## -, Peñarol 13 | (13) DF Daniel Revelez ## -, Nacional 14 | (14) DF José Pintos Saldanha ## -, Nacional 15 | 16 | (5) MF José Perdomo ## -, Genoa 17 | (8) MF Santiago Ostolaza ## -, Cruz Azul 18 | (9) MF Enzo Francescoli ## -, Marseille 19 | (10) MF Rubén Paz ## -, Genoa 20 | (15) MF Gabriel Correa ## -, Peñarol 21 | (16) MF Pablo Bengoechea ## -, Sevilla 22 | (20) MF Rubén Pereira ## -, Danubio 23 | (21) MF William Castro ## -, Nacional 24 | 25 | (7) FW Antonio Alzamendi ## -, Logroñés 26 | (11) FW Rubén Sosa ## -, Lazio 27 | (17) FW Sergio Martínez ## -, Defensor Sporting 28 | (18) FW Carlos Aguilera ## -, Genoa 29 | (19) FW Daniel Fonseca ## -, Nacional 30 | 31 | -------------------------------------------------------------------------------- /1994--united-states/NOTES.md: -------------------------------------------------------------------------------- 1 | # World Cup 1994 United States, 17 June - 17 July 1994 2 | 3 | - start_at: 1994-06-17 4 | 5 | 6 | ## 24 Teams 7 | 8 | ``` 9 | # -- Africa 10 | - cmr # Cameroon 11 | - mar # Morocco 12 | - nga # Nigeria 13 | # -- Asia 14 | - kor # South Korea 15 | - ksa # Saudi Arabia 16 | # -- Europe 17 | - bel # Belgium 18 | - bul # Bulgaria 19 | - ger # Germany 20 | - gre # Greece 21 | - ita # Italy 22 | - ned # Netherlands 23 | - nor # Norway 24 | - irl # Ireland 25 | - rou # Romania 26 | - rus # Russia 27 | - esp # Spain 28 | - swe # Sweden 29 | - sui # Switzerland 30 | # -- North and Central America 31 | - mex # Mexico 32 | - usa # United States 33 | # -- South America 34 | - arg # Argentina 35 | - bol # Bolivia 36 | - bra # Brazil 37 | - col # Colombia 38 | ``` 39 | 40 | -------------------------------------------------------------------------------- /1994--united-states/cup_finals.txt: -------------------------------------------------------------------------------- 1 | = World Cup 1994 # in United States, 17 June - 17 July 1994 2 | 3 | 4 | # --- Knockout stage 5 | 6 | Round of 16 7 | 8 | (37) 2 July Germany 3-2 Belgium @ Soldier Field, Chicago 9 | (38) 2 July Spain 3-0 Switzerland @ RFK Stadium, Washington 10 | 11 | (39) 3 July Saudi Arabia 1-3 Sweden @ Cotton Bowl, Dallas 12 | (40) 3 July Romania 3-2 Argentina @ Rose Bowl, Pasadena 13 | 14 | (41) 4 July Netherlands 2-0 Ireland @ Citrus Bowl, Orlando 15 | (42) 4 July Brazil 1-0 United States @ Stanford Stadium, Stanford 16 | 17 | (43) 5 July Nigeria 1-2 a.e.t. (1-1) Italy @ Foxboro Stadium, Foxborough 18 | (44) 5 July Mexico 1-3 pen. 1-1 a.e.t. (1-1) Bulgaria @ Giants Stadium, East Rutherford 19 | 20 | 21 | Quarter-finals 22 | 23 | (45) 9 July Italy 2-1 Spain @ Foxboro Stadium, Foxborough 24 | (46) 9 July Netherlands 2-3 Brazil @ Cotton Bowl, Dallas 25 | 26 | (47) 10 July Bulgaria 2-1 Germany @ Giants Stadium, East Rutherford 27 | (48) 10 July Romania 4-5 pen. 2-2 a.e.t. (1-1) Sweden @ Stanford Stadium, Stanford 28 | 29 | 30 | Semi-finals 31 | 32 | (49) 13 July Bulgaria 1-2 Italy @ Giants Stadium, East Rutherford 33 | (50) 13 July Sweden 0-1 Brazil @ Rose Bowl, Pasadena 34 | 35 | Third-place match 36 | 37 | (51) 16 July Sweden 4-0 Bulgaria @ Rose Bowl, Pasadena 38 | 39 | Final 40 | 41 | (52) 17 July Brazil 3-2 pen. 0-0 a.e.t. (0-0) Italy @ Rose Bowl, Pasadena 42 | 43 | -------------------------------------------------------------------------------- /1994--united-states/squads/bg-bulgaria.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Bulgaria (BUL) 3 | # - 22 players 4 | 5 | (1) GK Borislav Mikhailov ## 66, Mulhouse 6 | (12) GK Plamen Nikolov ## 5, Levski Sofia 7 | 8 | (2) DF Emil Kremenliev ## 7, Olympiacos 9 | (3) DF Trifon Ivanov ## 39, Neuchâtel 10 | (4) DF Tsanko Tsvetanov ## 16, Waldhof Mannheim 11 | (5) DF Petar Houbchev ## 15, Hamburger SV 12 | (15) DF Nikolay Iliev ## 48, Rennes 13 | (16) DF Ilian Kiriakov ## 35, Merida 14 | 15 | (6) MF Zlatko Yankov ## 31, Beşiktaş 16 | (9) MF Yordan Letchkov ## 14, Hamburger SV 17 | (11) MF Daniel Borimirov ## 9, Munchen 1860 18 | (14) MF Boncho Genchev ## 4, Ipswich Town 19 | (19) MF Georgi Georgiev ## 10, Mulhouse 20 | (20) MF Krassimir Balakov ## 33, Sporting CP 21 | 22 | (7) FW Emil Kostadinov ## 32, Porto 23 | (8) FW Hristo Stoichkov ## 41, Barcelona 24 | (10) FW Nasko Sirakov ## 55, Zaragoza 25 | (13) FW Ivaylo Yordanov ## 10, Sporting CP 26 | (17) FW Petar Mihtarski ## 5, Pirin Blagoevgrad 27 | (18) FW Petar Aleksandrov ## 26, Aarau 28 | (21) FW Velko Yotov ## 6, Espanyol 29 | (22) FW Ivaylo Andonov ## 5, CSKA Sofia 30 | 31 | -------------------------------------------------------------------------------- /1994--united-states/squads/ch-switzerland.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Switzerland (SUI) 3 | # - 22 players 4 | 5 | (1) GK Marco Pascolo ## 18, Servette 6 | (12) GK Stephan Lehmann ## 6, Sion 7 | (22) GK Martin Brunner ## 33, Grasshopper 8 | 9 | (2) DF Marc Hottiger ## 41, Sion 10 | (3) DF Yvan Quentin ## 14, Sion 11 | (5) DF Alain Geiger ## 94, Sion 12 | (8) DF Christophe Ohrel ## 28, Servette 13 | (13) DF André Egli ## 79, Servette 14 | (18) DF Martin Rueda ## 5, Lucerne 15 | (19) DF Jürg Studer ## 5, Zürich 16 | 17 | (4) MF Dominique Herr ## 39, Sion 18 | (7) MF Alain Sutter ## 46, 1. FC Nürnberg 19 | (10) MF Ciriaco Sforza ## 23, 1. FC Kaiserslautern 20 | (16) MF Thomas Bickel ## 41, Grasshopper 21 | (17) MF Sébastien Fournier ## 4, Sion 22 | (20) MF Patrick Sylvestre ## 9, Lausanne 23 | (21) MF Thomas Wyss ## 5, Aarau 24 | 25 | (6) FW Georges Bregy ## 50, Young Boys 26 | (9) FW Adrian Knup ## 34, VfB Stuttgart 27 | (11) FW Stéphane Chapuisat ## 36, Borussia Dortmund 28 | (14) FW Nestor Subiat ## 7, Lugano 29 | (15) FW Marco Grassi ## 9, Servette 30 | 31 | -------------------------------------------------------------------------------- /1994--united-states/squads/gr-greece.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Greece (GRE) 3 | # - 22 players 4 | 5 | (1) GK Antonis Minou ## -, Apollon Smyrnis 6 | (15) GK Christos Karkamanis ## -, Aris Thessaloniki 7 | (20) GK Elias Atmatsidis ## -, AEK 8 | 9 | (2) DF Stratos Apostolakis ## -, Panathinaikos 10 | (3) DF Thanasis Kolitsidakis ## -, Panathinaikos 11 | (4) DF Stelios Manolas ## -, AEK 12 | (5) DF Ioannis Kalitzakis ## -, Panathinaikos 13 | (13) DF Vaios Karagiannis ## -, AEK 14 | (18) DF Kiriakos Karataidis ## -, Olympiacos 15 | (22) DF Alexis Alexiou ## -, PAOK 16 | 17 | (6) MF Giotis Tsalouchidis ## -, Olympiacos 18 | (8) MF Nikos Nioplias ## -, Panathinaikos 19 | (10) MF Tasos Mitropoulos ## -, AEK 20 | (11) MF Nikos Tsiantakis ## -, Olympiacos 21 | (12) MF Spiros Marangos ## -, Panathinaikos 22 | (17) MF Minas Hantzidis ## -, Olympiacos 23 | (19) MF Savvas Kofidis ## -, Aris Thessaloniki 24 | 25 | (7) FW Dimitris Saravakos ## -, Panathinaikos 26 | (9) FW Nikos Machlas ## -, OFI 27 | (14) FW Vasilis Dimitriadis ## -, AEK 28 | (16) FW Alexis Alexoudis ## -, OFI 29 | (21) FW Alekos Alexandris ## -, Olympiacos 30 | 31 | -------------------------------------------------------------------------------- /1994--united-states/squads/it-italy.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Italy (ITA) 3 | # - 22 players 4 | 5 | (1) GK Gianluca Pagliuca ## -, Sampdoria 6 | (12) GK Luca Marchegiani ## -, Lazio 7 | (22) GK Luca Bucci ## -, Parma 8 | 9 | (2) DF Luigi Apolloni ## -, Parma 10 | (3) DF Antonio Benarrivo ## -, Parma 11 | (4) DF Alessandro Costacurta ## -, Milan 12 | (5) DF Paolo Maldini ## -, Milan 13 | (6) DF Franco Baresi ## -, Milan 14 | (7) DF Lorenzo Minotti ## -, Parma 15 | (8) DF Roberto Mussi ## -, Torino 16 | (9) DF Mauro Tassotti ## -, Milan 17 | 18 | (11) MF Demetrio Albertini ## -, Milan 19 | (13) MF Dino Baggio ## -, Juventus 20 | (14) MF Nicola Berti ## -, Internazionale 21 | (15) MF Antonio Conte ## -, Juventus 22 | (16) MF Roberto Donadoni ## -, Milan 23 | (17) MF Alberigo Evani ## -, Sampdoria 24 | 25 | (10) FW Roberto Baggio ## -, Juventus 26 | (18) FW Pierluigi Casiraghi ## -, Lazio 27 | (19) FW Daniele Massaro ## -, Milan 28 | (20) FW Giuseppe Signori ## -, Lazio 29 | (21) FW Gianfranco Zola ## -, Parma 30 | 31 | -------------------------------------------------------------------------------- /1994--united-states/squads/mx-mexico.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Mexico (MEX) 3 | # - 22 players 4 | 5 | (1) GK Jorge Campos ## 54, Pumas de la UNAM 6 | (12) GK Félix Fernández ## -, Atlante 7 | (22) GK Adrián Chávez ## -, Club América 8 | 9 | (2) DF Claudio Suárez ## 41, Pumas de la UNAM 10 | (3) DF Juan de Dios Ramírez Perales ## 42, Pumas de la UNAM 11 | (4) DF Ignacio Ambríz ## -, Necaxa 12 | (5) DF Ramón Ramírez ## -, Santos 13 | (18) DF José Luis Salgado ## -, Tecos 14 | (21) DF Raúl Gutiérrez ## -, Atlante 15 | 16 | (6) MF Marcelino Bernal ## -, Toluca 17 | (8) MF Alberto García Aspe ## -, Necaxa 18 | (13) MF Juan Carlos Chávez ## -, Atlas 19 | (14) MF Joaquín del Olmo ## -, Veracruz 20 | (15) MF Missael Espinoza ## -, Guadalajara 21 | (16) MF Luis Antonio Valdéz ## -, León 22 | (17) MF Benjamín Galindo ## -, Guadalajara 23 | (20) MF Jorge Rodríguez ## -, Toluca 24 | 25 | (7) FW Carlos Hermosillo ## -, Cruz Azul 26 | (9) FW Hugo Sánchez ## -, Rayo Vallecano 27 | (10) FW Luis García ## -, Atlético Madrid 28 | (11) FW Luis Roberto Alves ## -, Club América 29 | (19) FW Luis Miguel Salvador ## -, Atlante 30 | 31 | -------------------------------------------------------------------------------- /1994--united-states/squads/nl-netherlands.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Netherlands (NED) 3 | # - 22 players 4 | 5 | (1) GK Ed de Goeij ## 14, Feyenoord 6 | (13) GK Edwin van der Sar ## 0, Ajax 7 | (22) GK Theo Snelders ## 1, Aberdeen 8 | 9 | (2) DF Frank de Boer ## 25, Ajax 10 | (4) DF Ronald Koeman ## 73, Barcelona 11 | (14) DF Ulrich van Gobbel ## 6, Feyenoord 12 | (15) DF Danny Blind ## 24, Ajax 13 | (16) DF Arthur Numan ## 4, PSV 14 | (18) DF Stan Valckx ## 7, Sporting CP 15 | (21) DF John de Wolf ## 6, Feyenoord 16 | 17 | (3) MF Frank Rijkaard ## 69, Ajax 18 | (5) MF Rob Witschge ## 22, Feyenoord 19 | (6) MF Jan Wouters ## 66, PSV 20 | (7) MF Marc Overmars ## 13, Ajax 21 | (8) MF Wim Jonk ## 15, Internazionale 22 | (9) MF Ronald de Boer ## 9, Ajax 23 | (11) MF Bryan Roy ## 21, Foggia 24 | (17) MF Gaston Taument ## 6, Feyenoord 25 | (20) MF Aron Winter ## 38, Lazio 26 | 27 | (10) FW Dennis Bergkamp ## 31, Internazionale 28 | (12) FW John Bosman ## 27, Anderlecht 29 | (19) FW Peter van Vossen ## 10, Ajax 30 | 31 | -------------------------------------------------------------------------------- /1994--united-states/squads/sa-saudi-arabia.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Saudi Arabia (KSA) 3 | # - 22 players 4 | 5 | (1) GK Mohamed Al-Deayea ## -, Al-Ta'ee 6 | (21) GK Hussein Al-Sadiq ## -, Al-Qadisiya 7 | (22) GK Ibrahim Al-Helwah ## -, Al-Riyadh 8 | 9 | (2) DF Abdullah Al-Dosari ## -, Al-Ittihad 10 | (3) DF Mohammed Al-Khilaiwi ## -, Al-Ittihad 11 | (4) DF Abdullah Zubromawi ## -, Al-Ahli 12 | (5) DF Ahmad Jamil Madani ## -, Al-Ittihad 13 | (13) DF Mohamed Al-Jawad ## -, Al-Ahli 14 | (15) DF Saleh Al-Dawod ## -, Al-Shabab 15 | (17) DF Yassir Al-Taifi ## -, Al-Riyadh 16 | (18) DF Awad Al-Anazi ## -, Al-Shabab 17 | 18 | (6) MF Fuad Amin ## -, Al-Shabab 19 | (8) MF Fahad Al-Bishi ## -, Al-Nasser 20 | (14) MF Khalid Al-Muwallid ## -, Al-Ahli 21 | (16) MF Talal Jebreen ## -, Al-Riyadh 22 | (19) MF Hamzah Saleh ## -, Al-Ahli 23 | 24 | (7) FW Fahad Al-Ghesheyan ## -, Al-Hilal 25 | (9) FW Majed Abdullah ## -, Al-Nasser 26 | (10) FW Saeed Al-Owairan ## -, Al-Shabab 27 | (11) FW Fahad Al-Mehallel ## -, Al-Shabab 28 | (12) FW Sami Al-Jaber ## -, Al-Hilal 29 | (20) FW Hamzah Idris ## -, Ohud 30 | 31 | -------------------------------------------------------------------------------- /1994--united-states/squads/se-sweden.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Sweden (SWE) 3 | # - 22 players 4 | 5 | (1) GK Thomas Ravelli ## 110, 6 | (12) GK Lars Eriksson ## 14, 7 | (22) GK Magnus Hedman ## 0, 8 | 9 | (2) DF Roland Nilsson ## 62, 10 | (3) DF Patrik Andersson ## 23, Borussia Mönchengladbach 11 | (4) DF Joachim Björklund ## 22, 12 | (5) DF Roger Ljung ## 46, 13 | (13) DF Mikael Nilsson ## 12, 14 | (14) DF Pontus Kåmark ## 12, 15 | (15) DF Teddy Lucic ## 0, 16 | (20) DF Magnus Erlingmark ## 24, 17 | 18 | (6) MF Stefan Schwarz ## 29, 19 | (8) MF Klas Ingesson ## 42, 20 | (9) MF Jonas Thern ## 47, 21 | (16) MF Anders Limpar ## 51, 22 | (17) MF Stefan Rehn ## 38, 23 | (18) MF Håkan Mild ## 12, 24 | (21) MF Jesper Blomqvist ## 8, 25 | 26 | (7) FW Henrik Larsson ## 7, 27 | (10) FW Martin Dahlin ## 29, Borussia Mönchengladbach 28 | (11) FW Tomas Brolin ## 31, 29 | (19) FW Kennet Andersson ## 24, 30 | 31 | -------------------------------------------------------------------------------- /1998--france/NOTES.md: -------------------------------------------------------------------------------- 1 | # World Cup 1998 France, 10 June - 12 July 2 | 3 | - start_at: 1998-06-10 4 | 5 | 6 | ## 32 Teams 7 | 8 | ``` 9 | # -- Africa 10 | - cmr # Cameroon 11 | - mar # Morocco 12 | - nga # Nigeria 13 | - rsa # South Africa 14 | - tun # Tunisia 15 | # -- Asia 16 | - irn # Iran 17 | - jpn # Japan 18 | - kor # South Korea 19 | - ksa # Saudi Arabia 20 | # -- Europe 21 | - aut # Austria 22 | - bel # Belgium 23 | - bul # Bulgaria 24 | - cro # Croatia 25 | - den # Denmark 26 | - eng # England 27 | - fra # France 28 | - ger # Germany 29 | - ita # Italy 30 | - ned # Netherlands 31 | - nor # Norway 32 | - rou # Romania 33 | - sco # Scotland 34 | - esp # Spain 35 | - yug # Yugoslavia 36 | # -- North and Central America 37 | - jam # Jamaica 38 | - mex # Mexico 39 | - usa # USA 40 | # -- South America 41 | - arg # Argentina 42 | - bra # Brazil 43 | - chi # Chile 44 | - col # Colombia 45 | - par # Paraguay 46 | ``` 47 | 48 | -------------------------------------------------------------------------------- /1998--france/cup_finals.txt: -------------------------------------------------------------------------------- 1 | = World Cup 1998 # in France, 10 June - 12 July 2 | 3 | # --- Knockout stage 4 | 5 | Round of 16 6 | 7 | (49) 27 June Brazil 4-1 Chile @ Parc des Princes, Paris 8 | (50) 27 June Italy 1-0 Norway @ Stade Vélodrome, Marseille 9 | 10 | (51) 28 June Nigeria 1-4 Denmark @ Stade de France, Saint-Denis 11 | (52) 28 June France 1-0 a.e.t. (0-0) Paraguay @ Stade Félix Bollaert, Lens 12 | 13 | (53) 29 June Germany 2-1 Mexico @ Stade de la Mosson, Montpellier 14 | (54) 29 June Netherlands 2-1 Yugoslavia @ Stade de Toulouse, Toulouse 15 | 16 | (55) 30 June Argentina 4-3pen 2-2aet (2-2) England @ Stade Geoffroy-Guichard, Saint-Étienne 17 | (56) 30 June Romania 0-1 Croatia @ Parc Lescure, Bordeaux 18 | 19 | 20 | Quarter-finals 21 | 22 | (57) 3 July Italy 3-4pen 0-0 aet (0-0) France @ Stade de France, Saint-Denis 23 | (58) 3 July Brazil 3-2 Denmark @ Stade de la Beaujoire, Nantes 24 | 25 | (59) 4 July Germany 0-3 Croatia @ Stade Gerland, Lyon 26 | (60) 4 July Netherlands 2-1 Argentina @ Stade Vélodrome, Marseille 27 | 28 | 29 | Semi-finals 30 | 31 | (61) 7 July Brazil 4-2pen 1-1aet (1-1) Netherlands @ Stade Vélodrome, Marseille 32 | (62) 8 July France 2-1 Croatia @ Stade de France, Saint-Denis 33 | 34 | Third place match 35 | 36 | (63) 11 July Netherlands 1-2 Croatia @ Parc des Princes, Paris 37 | 38 | 39 | Final 40 | 41 | (64) 12 July Brazil 0-3 France @ Stade de France, Saint-Denis 42 | -------------------------------------------------------------------------------- /1998--france/squads/ar-argentina.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Argentina (ARG) 3 | # - 22 players 4 | 5 | (1) GK Carlos Roa ## -, Mallorca 6 | (12) GK Germán Burgos ## -, River Plate 7 | (17) GK Pablo Cavallero ## -, Vélez Sársfield 8 | 9 | (2) DF Roberto Ayala ## -, Napoli 10 | (3) DF José Chamot ## -, Lazio 11 | (4) DF Mauricio Pineda ## -, Udinese 12 | (6) DF Roberto Néstor Sensini ## -, Parma 13 | (13) DF Pablo Paz ## -, Tenerife 14 | (14) DF Nelson Vivas ## -, Lugano 15 | (22) DF Javier Zanetti ## -, Internazionale 16 | 17 | (5) MF Matías Almeyda ## -, Lazio 18 | (8) MF Diego Simeone ## -, Internazionale 19 | (10) MF Ariel Ortega ## -, Valencia 20 | (11) MF Juan Sebastián Verón ## -, Sampdoria 21 | (15) MF Leonardo Astrada ## -, River Plate 22 | (16) MF Sergio Berti ## -, River Plate 23 | (20) MF Marcelo Gallardo ## -, River Plate 24 | 25 | (7) FW Claudio López ## -, Valencia 26 | (9) FW Gabriel Batistuta ## -, Fiorentina 27 | (18) FW Abel Balbo ## -, Roma 28 | (19) FW Hernán Crespo ## -, Parma 29 | (21) FW Marcelo Delgado ## -, Racing 30 | 31 | -------------------------------------------------------------------------------- /1998--france/squads/be-belgium.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Belgium (BEL) 3 | # - 22 players 4 | 5 | (1) GK Filip De Wilde ## -, Anderlecht 6 | (12) GK Philippe Vande Walle ## -, Eendracht Aalst 7 | (13) GK Dany Verlinden ## -, Club Brugge 8 | 9 | (2) DF Bertrand Crasson ## -, Napoli 10 | (3) DF Lorenzo Staelens ## -, Club Brugge 11 | (4) DF Gordan Vidović ## -, Mouscron 12 | (5) DF Vital Borkelmans ## -, Club Brugge 13 | (16) DF Glen De Boeck ## -, Anderlecht 14 | (17) DF Mike Verstraeten ## -, Germinal Ekeren 15 | (19) DF Eric Van Meir ## -, Lierse 16 | (22) DF Eric Deflandre ## -, Club Brugge 17 | 18 | (6) MF Franky Van Der Elst ## -, Club Brugge 19 | (7) MF Marc Wilmots ## -, Schalke 04 20 | (11) MF Nico Van Kerckhoven ## -, Lierse 21 | (14) MF Enzo Scifo ## -, Anderlecht 22 | (15) MF Philippe Clement ## -, Racing Genk 23 | (21) MF Danny Boffin ## -, Metz 24 | 25 | (8) FW Luis Oliveira ## -, Fiorentina 26 | (9) FW Mbo Mpenza ## -, Standard Liège 27 | (10) FW Luc Nilis ## -, PSV 28 | (18) FW Gert Verheyen ## -, Club Brugge 29 | (20) FW Émile Mpenza ## -, Standard Liège 30 | 31 | -------------------------------------------------------------------------------- /1998--france/squads/br-brazil.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Brazil (BRA) 3 | # - 22 players 4 | 5 | (1) GK Taffarel ## -, Atlético Mineiro 6 | (12) GK Carlos Germano ## -, Vasco da Gama 7 | (22) GK Dida ## -, Cruzeiro 8 | 9 | (2) DF Cafu ## -, Roma 10 | (3) DF Aldair ## -, Roma 11 | (4) DF Júnior Baiano ## -, Flamengo 12 | (6) DF Roberto Carlos ## -, Real Madrid 13 | (13) DF Zé Carlos ## -, São Paulo 14 | (14) DF Gonçalves ## -, Botafogo 15 | (15) DF André Cruz ## -, Milan 16 | 17 | (5) MF César Sampaio ## -, Yokohama Flügels 18 | (7) MF Giovanni ## -, Barcelona 19 | (8) MF Dunga ## -, Júbilo Iwata 20 | (10) MF Rivaldo ## -, Barcelona 21 | (11) MF Emerson ## -, Bayer Leverkusen 22 | (16) MF Zé Roberto ## -, Flamengo 23 | (17) MF Doriva ## -, Porto 24 | (18) MF Leonardo ## -, Milan 25 | (19) MF Denílson ## -, São Paulo 26 | 27 | (9) FW Ronaldo ## -, Internazionale 28 | (20) FW Bebeto ## -, Botafogo 29 | (21) FW Edmundo ## -, Fiorentina 30 | 31 | -------------------------------------------------------------------------------- /1998--france/squads/dk-denmark.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Denmark (DEN) 3 | # - 22 players 4 | 5 | (1) GK Peter Schmeichel ## 100, Manchester United 6 | (16) GK Mogens Krogh ## 8, Brøndby 7 | (22) GK Peter Kjær ## 0, Silkeborg 8 | 9 | (2) DF Michael Schjønberg ## 28, 1. FC Kaiserslautern 10 | (3) DF Marc Rieper ## 53, Celtic 11 | (4) DF Jes Høgh ## 37, Fenerbahçe 12 | (5) DF Jan Heintze ## 39, Bayer Leverkusen 13 | (6) DF Thomas Helveg ## 30, Udinese 14 | (12) DF Søren Colding ## 4, Brøndby 15 | (13) DF Jacob Laursen ## 22, Derby County 16 | (20) DF René Henriksen ## 2, Akademisk 17 | 18 | (7) MF Allan Nielsen ## 18, Tottenham Hotspur 19 | (8) MF Per Frandsen ## 12, Bolton Wanderers 20 | (10) MF Michael Laudrup ## 99, Ajax 21 | (14) MF Morten Wieghorst ## 11, Celtic 22 | (15) MF Stig Tøfting ## 4, MSV Duisburg 23 | (17) MF Bjarne Goldbæk ## 11, Copenhagen 24 | (21) MF Martin Jørgensen ## 4, Udinese 25 | 26 | (9) FW Miklos Molnar ## 9, Sevilla 27 | (11) FW Brian Laudrup ## 77, Rangers 28 | (18) FW Peter Møller ## 11, PSV 29 | (19) FW Ebbe Sand ## 2, Brøndby 30 | 31 | -------------------------------------------------------------------------------- /1998--france/squads/fr-france.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # France (FRA) 3 | # - 22 players 4 | 5 | (1) GK Bernard Lama ## 37, Paris Saint Germain 6 | (16) GK Fabien Barthez ## 12, AS Monaco 7 | (22) GK Lionel Charbonnier ## 1, Auxerre 8 | 9 | (2) DF Vincent Candela ## 10, Roma 10 | (3) DF Bixente Lizarazu ## 32, Bayern Munich 11 | (5) DF Laurent Blanc ## 68, Marseille 12 | (8) DF Marcel Desailly ## 41, Milan 13 | (15) DF Lilian Thuram ## 32, Parma 14 | (18) DF Frank Lebœuf ## 13, Chelsea 15 | 16 | (4) MF Patrick Vieira ## 7, Arsenal 17 | (7) MF Didier Deschamps ## 69, Juventus 18 | (10) MF Zinedine Zidane ## 33, Juventus 19 | (11) MF Robert Pirès ## 13, Metz 20 | (13) MF Bernard Diomède ## 6, Auxerre 21 | (14) MF Alain Boghossian ## 6, Sampdoria 22 | (17) MF Emmanuel Petit ## 17, Arsenal 23 | (19) MF Christian Karembeu ## 31, Real Madrid 24 | 25 | (6) FW Youri Djorkaeff ## 37, Internazionale 26 | (9) FW Stéphane Guivarc'h ## 6, Auxerre 27 | (12) FW Thierry Henry ## 3, AS Monaco 28 | (20) FW David Trezeguet ## 4, AS Monaco 29 | (21) FW Christophe Dugarry ## 23, Marseille 30 | 31 | -------------------------------------------------------------------------------- /1998--france/squads/ir-iran.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Iran (IRN) 3 | # - 22 players 4 | 5 | (1) GK Ahmad Reza Abedzadeh ## 66, Persepolis 6 | (12) GK Nima Nakisa ## 6, Persepolis 7 | (22) GK Parviz Broumand ## 0, Esteghlal 8 | 9 | (3) DF Naeim Saadavi ## 8, Persepolis 10 | (4) DF Mohammad Khakpour ## 37, Bahman 11 | (5) DF Afshin Peyrovani ## 37, Persepolis 12 | (14) DF Nader Mohammadkhani ## 16, Polyacryl 13 | (15) DF Ali Akbar Ostad-Asadi ## 29, Zob Ahan 14 | (16) DF Reza Shahroudi ## 34, Persepolis 15 | (17) DF Javad Zarincheh ## 55, Esteghlal 16 | (20) DF Mehdi Pashazadeh ## 4, Esteghlal 17 | 18 | (2) MF Mehdi Mahdavikia ## 24, Persepolis 19 | (6) MF Karim Bagheri ## 44, Arminia Bielefeld 20 | (7) MF Alireza Mansourian ## 33, Esteghlal 21 | (8) MF Sirous Dinmohammadi ## 16, Shahrdari Tabriz 22 | (9) MF Hamid Estili ## 44, Bahman 23 | (18) MF Sattar Hamedani ## 3, Bahman 24 | (21) MF Mehrdad Minavand ## 23, Persepolis 25 | 26 | (10) FW Ali Daei ## 50, Arminia Bielefeld 27 | (11) FW Khodadad Azizi ## 27, 1. FC Köln 28 | (13) FW Ali Latifi ## 0, Bahman 29 | (19) FW Behnam Seraj ## 0, Sanat Naft 30 | 31 | -------------------------------------------------------------------------------- /1998--france/squads/it-italy.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Italy (ITA) 3 | # - 22 players 4 | 5 | (1) GK Francesco Toldo ## 6, Fiorentina 6 | (12) GK Gianluca Pagliuca ## 34, Internazionale 7 | (22) GK Gianluigi Buffon ## 2, Parma 8 | 9 | (2) DF Giuseppe Bergomi ## 78, Internazionale 10 | (3) DF Paolo Maldini ## 88, Milan 11 | (4) DF Fabio Cannavaro ## 14, Parma 12 | (5) DF Alessandro Costacurta ## 54, Milan 13 | (6) DF Alessandro Nesta ## 12, Lazio 14 | (7) DF Gianluca Pessotto ## 4, Juventus 15 | (8) DF Moreno Torricelli ## 6, Juventus 16 | 17 | (9) MF Demetrio Albertini ## 57, Milan 18 | (11) MF Dino Baggio ## 46, Parma 19 | (13) MF Sandro Cois ## 1, Fiorentina 20 | (14) MF Luigi Di Biagio ## 13, Roma 21 | (15) MF Angelo Di Livio ## 21, Juventus 22 | (16) MF Roberto Di Matteo ## 32, Chelsea 23 | (17) MF Francesco Moriero ## 3, Internazionale 24 | 25 | (10) FW Alessandro Del Piero ## 19, Juventus 26 | (18) FW Roberto Baggio ## 48, Bologna 27 | (19) FW Filippo Inzaghi ## 4, Juventus 28 | (20) FW Enrico Chiesa ## 6, Parma 29 | (21) FW Christian Vieri ## 8, Atlético Madrid 30 | 31 | -------------------------------------------------------------------------------- /1998--france/squads/mx-mexico.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Mexico (MEX) 3 | # - 22 players 4 | 5 | (1) GK Jorge Campos ## 106, Chicago Fire (USA) 6 | (12) GK Oswaldo Sánchez ## 9, América 7 | (22) GK Óscar Pérez ## 8, Cruz Azul 8 | 9 | (2) DF Claudio Suárez ## 121, Guadalajara 10 | (3) DF Joel Sánchez ## 20, Guadalajara 11 | (5) DF Duilio Davino ## 48, América 12 | (16) DF Isaac Terrazas ## 7, América 13 | (18) DF Salvador Carmona ## 16, Toluca 14 | 15 | (4) MF Germán Villa ## 36, América 16 | (6) MF Marcelino Bernal ## 72, Monterrey 17 | (7) MF Ramón Ramírez ## 92, Guadalajara 18 | (8) MF Alberto García Aspe ## 82, América 19 | (13) MF Pável Pardo ## 43, Atlas 20 | (14) MF Raúl Lara ## 24, América 21 | (19) MF Braulio Luna ## 15, UNAM Pumas 22 | (20) MF Jaime Ordiales ## 21, Toluca 23 | (21) MF Jesús Arellano ## 7, Guadalajara 24 | 25 | (9) FW Ricardo Peláez ## 41, América 26 | (10) FW Luis García ## 89, Atlante 27 | (11) FW Cuauhtémoc Blanco ## 42, Necaxa 28 | (15) FW Luis Hernández ## 46, Necaxa 29 | (17) FW Francisco Palencia ## 27, Cruz Azul 30 | 31 | -------------------------------------------------------------------------------- /1998--france/squads/ng-nigeria.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Nigeria (NGA) 3 | # - 22 players 4 | 5 | (1) GK Peter Rufai ## 45, Deportivo La Coruña 6 | (12) GK William Okpara ## 5, Orlando Pirates 7 | (22) GK Abiodun Baruwa ## 3, Sion 8 | 9 | (2) DF Mobi Oparaku ## 3, Kapellen 10 | (3) DF Celestine Babayaro ## 6, Chelsea 11 | (5) DF Uche Okechukwu ## 41, Fenerbahçe 12 | (6) DF Taribo West ## 8, Internazionale 13 | (16) DF Uche Okafor ## 33, Kansas City Wizards (USA) 14 | (17) DF Augustine Eguavoen ## 52, Torpedo Moscow 15 | (19) DF Benedict Iroha ## 33, Elche 16 | (21) DF Godwin Okpara ## 6, Strasbourg 17 | 18 | (7) MF Finidi George ## 36, Real Betis 19 | (8) MF Mutiu Adepoju ## 35, Real Sociedad 20 | (10) MF Jay-Jay Okocha ## 26, Fenerbahçe 21 | (11) MF Garba Lawal ## 3, Roda JC 22 | (13) MF Tijjani Babangida ## 4, Ajax 23 | (15) MF Sunday Oliseh ## 22, Ajax 24 | (18) MF Wilson Oruma ## 4, Lens 25 | 26 | (4) FW Nwankwo Kanu ## 7, Internazionale 27 | (9) FW Rashidi Yekini ## 63, Zürich 28 | (14) FW Daniel Amokachi ## 43, Beşiktaş 29 | (20) FW Victor Ikpeba ## 15, AS Monaco 30 | 31 | -------------------------------------------------------------------------------- /1998--france/squads/nl-netherlands.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Netherlands (NED) 3 | # - 22 players 4 | 5 | (1) GK Edwin van der Sar ## 25, Ajax 6 | (18) GK Ed de Goeij ## 31, Chelsea 7 | (22) GK Ruud Hesp ## 0, Barcelona 8 | 9 | (2) DF Michael Reiziger ## 26, Barcelona 10 | (3) DF Jaap Stam ## 14, PSV 11 | (4) DF Frank de Boer ## 55, Ajax 12 | (5) DF Arthur Numan ## 29, PSV 13 | (13) DF André Ooijer ## 0, PSV 14 | (15) DF Winston Bogarde ## 14, Barcelona 15 | 16 | (6) MF Wim Jonk ## 42, PSV 17 | (7) MF Ronald de Boer ## 41, Ajax 18 | (10) MF Clarence Seedorf ## 31, Real Madrid 19 | (11) MF Phillip Cocu ## 20, PSV 20 | (12) MF Boudewijn Zenden ## 6, PSV 21 | (14) MF Marc Overmars ## 40, Arsenal 22 | (16) MF Edgar Davids ## 12, Juventus 23 | (19) MF Giovanni van Bronckhorst ## 8, Feyenoord 24 | (20) MF Aron Winter ## 72, Internazionale 25 | 26 | (8) FW Dennis Bergkamp ## 57, Arsenal 27 | (9) FW Patrick Kluivert ## 19, Milan 28 | (17) FW Pierre van Hooijdonk ## 12, Nottingham Forest 29 | (21) FW Jimmy Floyd Hasselbaink ## 3, Leeds United 30 | 31 | -------------------------------------------------------------------------------- /1998--france/squads/sa-saudi-arabia.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Saudi Arabia (KSA) 3 | # - 22 players 4 | 5 | (1) GK Mohamed Al-Deayea ## 94, Al-Ta'ee 6 | (21) GK Hussein Al-Sadiq ## 64, Al-Qadisiya 7 | (22) GK Tisir Al-Antaif ## 0, Al-Ittifaq 8 | 9 | (2) DF Mohammed Al-Jahani ## 64, Al-Ahli 10 | (3) DF Mohammed Al-Khilaiwi ## 86, Al-Ittihad 11 | (5) DF Ahmad Jamil Madani ## 94, Al-Ittihad 12 | (13) DF Hussein Sulaimani ## 40, Al-Ahli 13 | (17) DF Ahmed Dokhi ## 12, Al-Hilal 14 | (19) DF Abdulaziz Al-Janoubi ## 3, Al-Nasr 15 | 16 | (4) MF Abdullah Zubromawi ## 83, Al-Ahli 17 | (6) MF Fuad Amin ## 95, Al-Shabab 18 | (12) MF Ibrahim Al-Harbi ## 47, Al-Nasr 19 | (14) MF Khalid Al-Muwallid ## 91, Al-Ahli 20 | (15) MF Yousuf Al-Thunayan ## 86, Al-Hilal 21 | (16) MF Khamis Al-Owairan ## 48, Al-Hilal 22 | (18) MF Nawaf Al-Temyat ## 0, Al-Hilal 23 | (20) MF Hamzah Saleh ## 38, Al-Ahli 24 | 25 | (7) FW Ibrahim Al-Shahrani ## 19, Al-Ahli 26 | (8) FW Obeid Al-Dosari ## 61, Al-Wehda 27 | (9) FW Sami Al-Jaber ## 85, Al-Hilal 28 | (10) FW Saeed Al-Owairan ## 55, Al-Shabab 29 | (11) FW Fahad Al-Mehallel ## 85, Al-Shabab 30 | 31 | -------------------------------------------------------------------------------- /1998--france/squads/sco-scotland.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Scotland (SCO) 3 | # - 22 players 4 | 5 | (1) GK Jim Leighton ## 86, Aberdeen 6 | (12) GK Neil Sullivan ## 3, Wimbledon 7 | (21) GK Jonathan Gould ## 0, Celtic 8 | 9 | (3) DF Tom Boyd ## 55, Celtic 10 | (4) DF Colin Calderwood ## 28, Tottenham Hotspur 11 | (5) DF Colin Hendry ## 32, Blackburn Rovers 12 | (6) DF Tosh McKinlay ## 19, Celtic 13 | (16) DF David Weir ## 5, Hearts 14 | (18) DF Matt Elliott ## 3, Leicester City 15 | (19) DF Derek Whyte ## 11, Aberdeen 16 | (22) DF Christian Dailly ## 10, Derby County 17 | 18 | (2) MF Jackie McNamara ## 6, Celtic 19 | (8) MF Craig Burley ## 25, Celtic 20 | (10) MF Darren Jackson ## 24, Celtic 21 | (11) MF John Collins ## 49, AS Monaco 22 | (14) MF Paul Lambert ## 12, Celtic 23 | (15) MF Scot Gemmill ## 13, Nottingham Forest 24 | (17) MF Billy McKinlay ## 25, Blackburn Rovers 25 | 26 | (7) FW Kevin Gallacher ## 36, Blackburn Rovers 27 | (9) FW Gordon Durie ## 40, Rangers 28 | (13) FW Simon Donnelly ## 8, Celtic 29 | (20) FW Scott Booth ## 16, Utrecht 30 | 31 | -------------------------------------------------------------------------------- /1998--france/squads/yug-yugoslavia.txt: -------------------------------------------------------------------------------- 1 | ############################## 2 | # Yuguslavia (YUG) 3 | # - 22 players 4 | 5 | (1) GK Ivica Kralj ## 15, Partizan 6 | (12) GK Dragoje Leković ## 13, Sporting Gijón 7 | 8 | (2) DF Zoran Mirković ## 28, Atalanta 9 | (3) DF Goran Đorović ## 26, Celta Vigo 10 | (5) DF Miroslav Đukić ## 23, Valencia 11 | (6) DF Branko Brnović ## 22, Espanyol 12 | (11) DF Siniša Mihajlović ## 30, Sampdoria 13 | (13) DF Slobodan Komljenović ## 8, MSV Duisburg 14 | (14) DF Niša Saveljić ## 20, Bordeaux 15 | 16 | (4) MF Slaviša Jokanović ## 33, Tenerife 17 | (7) MF Vladimir Jugović ## 24, Lazio 18 | (10) MF Dragan Stojković ## 64, Nagoya Grampus Eight 19 | (15) MF Ljubinko Drulović ## 16, Porto 20 | (16) MF Željko Petrović ## 12, Urawa Red Diamonds 21 | (18) MF Dejan Govedarica ## 20, Lecce 22 | (19) MF Miroslav Stević ## 5, 1860 Munich 23 | (20) MF Dejan Stanković ## 3, Crvena Zvezda 24 | 25 | (8) FW Dejan Savićević ## 49, Milan 26 | (9) FW Predrag Mijatović ## 28, Real Madrid 27 | (17) FW Savo Milošević ## 28, Aston Villa 28 | (21) FW Perica Ognjenović ## 5, Crvena Zvezda 29 | (22) FW Darko Kovačević ## 19, Real Sociedad 30 | 31 | -------------------------------------------------------------------------------- /2002--south-korea-n-japan/NOTES.md: -------------------------------------------------------------------------------- 1 | # World Cup 2002 in Korea n Japan, 31 May - 30 June 2 | 3 | - start_at: 2002-05-31 4 | 5 | ## 32 Teams 6 | 7 | ``` 8 | # -- Africa 9 | - cmr # Cameroon 10 | - nga # Nigeria 11 | - sen # Senegal 12 | - rsa # South Africa 13 | - tun # Tunisia 14 | # -- Asia 15 | - chn # China 16 | - jpn # Japan 17 | - kor # South Korea 18 | - ksa # Saudi Arabia 19 | # -- Europe 20 | - bel # Belgium 21 | - cro # Croatia 22 | - den # Denmark 23 | - eng # England 24 | - fra # France 25 | - ger # Germany 26 | - ita # Italy 27 | - pol # Poland 28 | - por # Portugal 29 | - irl # Ireland 30 | - rus # Russia 31 | - svn # Slovenia 32 | - esp # Spain 33 | - swe # Sweden 34 | - tur # Turkey 35 | # -- North and Central America 36 | - crc # Costa Rica 37 | - mex # Mexico 38 | - usa # United States 39 | # -- South America 40 | - arg # Argentina 41 | - bra # Brazil 42 | - ecu # Ecuador 43 | - par # Paraguay 44 | - uru # Uruguay 45 | ``` 46 | -------------------------------------------------------------------------------- /2002--south-korea-n-japan/cup_finals.txt: -------------------------------------------------------------------------------- 1 | = World Cup 2002 # in Korea n Japan, 31 May - 30 June 2 | 3 | 4 | # --- Knockout stage 5 | 6 | Round of 16 7 | 8 | (49) 15 June Germany 1-0 Paraguay @ Jeju World Cup Stadium, Jeju 9 | (50) 15 June Denmark 0-3 England @ Niigata Stadium, Niigata 10 | 11 | (51) 16 June Sweden 1-2 a.e.t. (1-1) Senegal @ Ōita Stadium, Ōita 12 | (52) 16 June Spain 3-2 pen. 1-1 a.e.t. (1-1) Ireland @ Suwon World Cup Stadium, Suwon 13 | 14 | (53) 17 June Mexico 0-2 United States @ Jeonju World Cup Stadium, Jeonju 15 | (54) 17 June Brazil 2-0 Belgium @ Kobe Wing Stadium, Kobe 16 | 17 | (55) 18 June Japan 0-1 Turkey @ Miyagi Stadium, Miyagi 18 | (56) 18 June South Korea 2-1 a.e.t. (1-1) Italy @ Daejeon World Cup Stadium, Daejeon 19 | 20 | 21 | Quarter-finals 22 | 23 | (57) 21 June England 1-2 Brazil @ Shizuoka Stadium, Shizuoka 24 | (58) 21 June Germany 1-0 United States @ Munsu Cup Stadium, Ulsan 25 | 26 | (59) 22 June Spain 3-5 pen. 0-0 a.e.t. (0-0) South Korea @ Gwangju World Cup Stadium, Gwangju 27 | (60) 22 June Senegal 0-1 a.e.t. (0-0) Turkey @ Nagai Stadium, Osaka 28 | 29 | 30 | Semi-finals 31 | 32 | (61) 25 June Germany 1-0 South Korea @ Seoul World Cup Stadium, Seoul 33 | (62) 26 June Brazil 1-0 Turkey @ Saitama Stadium, Saitama 34 | 35 | Third place play-off 36 | 37 | (63) 29 June South Korea 2-3 Turkey @ Daegu World Cup Stadium, Daegu 38 | 39 | 40 | Final 41 | 42 | (64) 30 June Germany 0-2 Brazil @ International Stadium Yokohama, Yokohama 43 | -------------------------------------------------------------------------------- /2006--germany/NOTES.md: -------------------------------------------------------------------------------- 1 | # World Cup 2006 Germany / Deutschland 2 | 3 | - see en.wikipedia.org/wiki/2006_FIFA_World_Cup 4 | - www.fifa.com/worldcup/archive/germany2006 5 | 6 | - fix: change time zone to ?? 7 | - All times listed are ??? 8 | 9 | - start_at: 2006-06-09 10 | 11 | 12 | ## Teams 13 | 14 | ``` 15 | # Europa (UEFA) - 14 16 | # Südamerika (CONMEBOL) - 4 17 | # Nord- und Mittelamerika (CONCACAF) - 4 18 | # Oceania (OFC) - 1 19 | # Asien (AFC) - 4 20 | # Afrika (CAF) - 5 21 | 22 | - cro # Croatia /// Europa (UEFA) - 14 23 | - cze # Czech Republic 24 | - eng # England 25 | - fra # France 26 | - ger # Deutschland 27 | - ita # Italien 28 | - ned # Niederlande 29 | - pol # Poland 30 | - por # Portugal 31 | - srb # Serbia and Montenegro 32 | - esp # Spanien 33 | - swe # Sweden 34 | - sui # Switzerland 35 | - ukr # Ukraine 36 | - arg # Argentinien /// Südamerika (CONMEBOL) - 4 37 | - bra # Brasilien 38 | - ecu # Ecuador 39 | - par # Paraguay 40 | - mex # Mexiko /// Nord- und Mittelamerika (CONCACAF) - 4 41 | - usa # Vereinigte Staaten 42 | - crc # Costa Rica 43 | - tri # Trinidad and Tobago 44 | - aus # Australien /// Oceania (OFC) - 1 45 | - jpn # Japan /// Asien (AFC) - 4 46 | - kor # Südkorea 47 | - irn # Iran 48 | - ksa # Saudi Arabia 49 | - ang # Angola /// Afrika (CAF) - 5 50 | - civ # Elfenbeinküste 51 | - gha # Ghana 52 | - tog # Togo 53 | - tun # Tunisia 54 | ``` 55 | 56 | 57 | -------------------------------------------------------------------------------- /2010--south-africa/NOTES.md: -------------------------------------------------------------------------------- 1 | # World Cup 2010 South Africa 2 | 3 | 4 | - fix: change time zone to ?? 5 | - All times listed are South African Standard Time (UTC+02) ??? 6 | 7 | - start_at: 2010-06-11 8 | 9 | 10 | ## Teams 11 | 12 | ``` 13 | ############## 14 | # Europa (13 team) 15 | # Südamerika (5 teams) 16 | # Nord- und Mittelamerika (3 teams) 17 | # Afrika (6 teams) 18 | # Asien mit Australien (4 teams) 19 | # Ozeanien (1 team) 20 | 21 | - den # Dänemark /// Europa 22 | - ger # Deutschland 23 | - eng # England 24 | - fra # Frankreich 25 | - gre # Griechenland 26 | - ita # Italien 27 | - ned # Niederlande 28 | - por # Portugal 29 | - esp # Spanien 30 | - sui # Schweiz 31 | - srb # Serbien 32 | - svk # Slowakei 33 | - svn # Slowenien 34 | - arg # Argentinien /// Südamerika 35 | - bra # Brasilien 36 | - chi # Chile 37 | - par # Paraguay 38 | - uru # Uruguay 39 | - mex # Mexiko /// Nord- und Mittelamerika 40 | - usa # Vereinigte Staaten 41 | - hon # Honduras 42 | - alg # Algerien /// Afrika 43 | - civ # Elfenbeinküste 44 | - gha # Ghana 45 | - cmr # Kamerun 46 | - nga # Nigeria 47 | - rsa # Südafrika 48 | - aus # Australien /// Asien mit Australien 49 | - jpn # Japan 50 | - prk # Nordkorea 51 | - kor # Südkorea 52 | - nzl # Neuseeland /// Ozeanien 53 | ``` 54 | -------------------------------------------------------------------------------- /2014--brazil_quali/africa_playoffs.txt: -------------------------------------------------------------------------------- 1 | ########################################################### 2 | # World Cup 2014 - Qualification Africa Third Round 3 | 4 | 5 | (9) Play-off 1st Leg // 11-15 October 6 | 7 | Oct/12 2013 17:00 Côte d'Ivoire 3-1 Senegal @ Stade Félix Houphouët-Boigny, Abidjan (UTC±0) 8 | Oct/12 2013 16:00 Burkina Faso 3-2 Algeria @ Stade du 4-Août, Ouagadougou (UTC±0) 9 | Oct/13 2013 16:00 Ethiopia 1-2 Nigeria @ Addis Ababa Stadium, Addis Ababa (UTC+3) 10 | Oct/13 2013 18:00 Tunisia 0-0 Cameroon @ Stade Olympique de Radès, Radès (UTC+1) 11 | Oct/15 2013 16:00 Ghana 6-1 Egypt @ Baba Yara Stadium, Kumasi (UTC±0) 12 | 13 | 14 | (10) Play-off 2nd Leg // 15-19 November 15 | 16 | Nov/16 2013 19:00 Senegal 1-1 Côte d'Ivoire @ Stade Mohamed V, Casablanca (UTC±0) - Morocco 17 | Nov/16 2013 16:00 Nigeria 2-0 Ethiopia @ U. J. Esuene Stadium, Calabar (UTC+1) 18 | Nov/17 2013 15:00 Cameroon 4-1 Tunisia @ Stade Ahmadou Ahidjo, Yaoundé (UTC+1) 19 | Nov/19 2013 18:00 Egypt 2-1 Ghana @ 30 June Stadium, Cairo (UTC+2) 20 | Nov/19 2013 19:15 Algeria 1-0 Burkina Faso @ Stade Mustapha Tchaker, Blida (UTC+1) 21 | 22 | 23 | # 24 | # see en.wikipedia.org/wiki/2014_FIFA_World_Cup_qualification_-_CAF_Third_Round 25 | # 26 | # The teams were seeded based on the 12 September 2013 edition 27 | # of the FIFA World Rankings 28 | # Five pairs of teams are to play against each other 29 | # The matches are scheduled to be played in the periods 30 | # 11-15 October and 15-19 November 2013. 31 | # 32 | # Note: The winner from each pair will be qualified. 33 | 34 | 35 | -------------------------------------------------------------------------------- /2014--brazil_quali/asia_i.txt: -------------------------------------------------------------------------------- 1 | ######################################### 2 | # World Cup Brazil 2014 - Asia Quali 3 | 4 | # -- First Stage 5 | 6 | 7 | (1) First Round Play-offs / 1st leg 8 | 9 | Jun/29 2011 Nepal 2-1 East Timor @ Kathmandu 10 | Jun/29 2011 Sri Lanka 1-1 Philippines @ Colombo 11 | Jun/29 2011 Mongolia 1-0 Myanmar @ Ulaanbaatar 12 | Jun/29 2011 Malaysia 2-1 Taiwan @ Kuala Lumpur 13 | Jun/29 2011 Cambodia 4-2 Laos @ Phnom Penh 14 | Jun/29 2011 Vietnam 6-0 Macao @ TP Ho Chi Minh 15 | Jun/29 2011 Afghanistan 0-2 Palestine @ Tursunzade 16 | Jun/29 2011 Bangladesh 3-0 Pakistan @ Dhaka 17 | 18 | 19 | (2) First Round Play-offs / 2nd leg 20 | 21 | Jul/2 2011 East Timor 0-5 Nepal @ Kathmandu 22 | Jul/3 2011 Philippines 4-0 Sri Lanka @ Manila 23 | Jul/3 2011 Myanmar 2-0 Mongolia @ Yangon 24 | Jul/3 2011 Taiwan 3-2 Malaysia @ Taipei 25 | Jul/3 2011 Laos 6-2nV 4-2 Cambodia @ Vientiane 26 | Jul/3 2011 Macao 1-7 Vietnam @ Macao 27 | Jul/3 2011 Palestine 1-1 Afghanistan @ Al-Ram 28 | Jul/3 2011 Pakistan 0-0 Bangladesh @ Lahore 29 | 30 | -------------------------------------------------------------------------------- /2014--brazil_quali/europe_i.txt: -------------------------------------------------------------------------------- 1 | #################################################### 2 | # World Cup 2014 - Qualification Europe Group I 3 | 4 | # note: timezone for games (play_at) is *always* CET (central european time) 5 | 6 | 7 | 8 | Group I: 9 | 10 | (1) Sep/7 2012 Georgia 1-0 Belarus @ Tbilisi 11 | (2) Sep/7 2012 Finland 0-1 France @ Helsinki 12 | 13 | (3) Sep/11 2012 Georgia 0-1 Spain @ Tbilisi 14 | (4) Sep/11 2012 France 3-1 Belarus @ Paris St.-Denis 15 | 16 | (5) Oct/12 2012 Finland 1-1 Georgia @ Helsinki 17 | (6) Oct/12 2012 Belarus 0-4 Spain @ Minsk 18 | 19 | (7) Oct/16 2012 Spain 1-1 France @ Madrid 20 | (8) Oct/16 2012 Belarus 2-0 Georgia @ Minsk 21 | 22 | 23 | (9) Mar/22 2013 France 3-1 Georgia @ Paris St.-Denis 24 | (10) Mar/22 2013 Spain 1-1 Finland @ Gijón 25 | 26 | (11) Mar/26 2013 France 0-1 Spain @ Paris St.-Denis 27 | 28 | (12) Jun/7 2013 Finland 1-0 Belarus @ Helsinki 29 | 30 | (13) Jun/11 2013 Belarus 1-1 Finland @ Homel 31 | 32 | (14) Sep/6 2013 Georgia 0-0 France @ Tbilisi 33 | (15) Sep/6 2013 Finland 0-2 Spain @ Helsinki 34 | 35 | (16) Sep/10 2013 Belarus 2-4 France @ Homel 36 | (17) Sep/10 2013 Georgia 0-1 Finland @ Tbilisi 37 | 38 | (18) Oct/11 2013 Spain 2-1 Belarus @ Palma de Mall 39 | 40 | (19) Oct/15 2013 France 3-0 Finland @ Paris St.-Denis 41 | (20) Oct/15 2013 Spain 2-0 Georgia @ Albacete 42 | 43 | -------------------------------------------------------------------------------- /2014--brazil_quali/europe_playoffs.txt: -------------------------------------------------------------------------------- 1 | ########################################################### 2 | # World Cup 2014 - Quali Europe Second Round / Play-offs 3 | # 4 | # see en.wikipedia.org/wiki/2014_FIFA_World_Cup_qualification_–_UEFA_Second_Round 5 | 6 | 7 | (15) Play-off 1st Leg // Fr Nov 15, 2013 8 | 9 | Fr Nov/15 2013 19:45 Portugal 1-0 Sweden @ Estádio da Luz, Lisbon (UTC±0) 10 | Fr Nov/15 2013 21:45 Ukraine 2-0 France @ Olympic Stadium, Kiev (UTC+2) 11 | Fr Nov/15 2013 21:45 Greece 3-1 Romania @ Karaiskakis Stadium, Piraeus (UTC+2) 12 | Fr Nov/15 2013 19:00 Iceland 0-0 Croatia @ Laugardalsvöllur, Reykjavík (UTC±0) 13 | 14 | 15 | (16) Play-off 2nd Leg // Tu Nov 19, 2013 16 | 17 | Tu Nov/19 2013 20:45 Sweden 2-3 Portugal @ Friends Arena, Solna (UTC+1) 18 | Tu Nov/19 2013 21:00 France 3-0 Ukraine @ Stade de France, Saint-Denis (UTC+1) 19 | Tu Nov/19 2013 21:00 Romania 1-1 Greece @ Arena Națională, Bucharest (UTC+2) 20 | Tu Nov/19 2013 20:15 Croatia 2-0 Iceland @ Stadion Maksimir, Zagreb (UTC+1) 21 | 22 | -------------------------------------------------------------------------------- /2014--brazil_quali/north_america_i.txt: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | # World Cup 2014 - Qualification North/Central America & Caribbean Islands 3 | 4 | 5 | 6 | (1) First Round Play-offs / First Leg 7 | 8 | Jun/15 2011 Montserrat 2-5 Belize @ Couva 9 | Jul/2 2011 Turks and Caicos Islands 0-4 Bahamas @ Providenciales 10 | Jul/3 2011 US Virgin Islands 2-0 British Virgin Islands @ Charl. Amalie 11 | Jul/8 2011 Anguilla 0-2 Dominican Republic @ San Cristóbal 12 | Jul/8 2011 Aruba 4-2 Saint Lucia @ Oranjestad 13 | 14 | (2) First Round Play-offs / Second Leg 15 | 16 | Jul/9 2011 Bahamas 6-0 Turks and Caicos Islands @ Nassau 17 | Jul/10 2011 British Virgin Islands 1-2 US Virgin Islands @ Road Town 18 | Jul/10 2011 Dominican Republic 4-0 Anguilla @ San Cristóbal 19 | Jul/12 2011 Saint Lucia 5-4iE 4-2nV 4-2 Aruba @ Castries 20 | Jul/17 2011 Belize 3-1 Montserrat @ San Pedro Sula 21 | 22 | -------------------------------------------------------------------------------- /2014--brazil_quali/pacific.yml: -------------------------------------------------------------------------------- 1 | ########################################## 2 | # World Cup Brazil 2014 - Quali Oceania 3 | 4 | league: world.quali.pacific 5 | season: 2014 6 | start_at: 2011-11-22 7 | 8 | 9 | fixtures: 10 | - pacific_i 11 | - pacific_ii 12 | - pacific_iii 13 | 14 | teams: 15 | - png # Papua New Guinea 16 | - fij # Fiji 17 | - sol # Solomon Islands 18 | - van # Vanuatu 19 | - nzl # New Zealand 20 | - sam # Samoa 21 | - tga # Tonga 22 | - tah # Tahiti 23 | - ncl # New Caledonia 24 | - asm # American Samoa 25 | - gum # Guam 26 | - cok # Cook Islands 27 | 28 | -------------------------------------------------------------------------------- /2014--brazil_quali/pacific_i.txt: -------------------------------------------------------------------------------- 1 | ########################################## 2 | # World Cup Brazil 2014 - Quali Oceania 3 | 4 | # -- Qualifying Stage / First Quali Round 5 | 6 | 7 | Group I | Samoa Tonga American Samoa Cook Islands 8 | 9 | 10 | ## fix/check: use group - why? why not? 11 | ## fix/todo: allow just Group w/o number or letter ? 12 | 13 | 14 | Matchday 1 | Nov/23 2011 15 | Matchday 2 | Nov/25 2011 16 | Matchday 3 | Nov/27 2011 17 | 18 | 19 | Group I: 20 | 21 | Nov/23 2011 Am. Samoa 2-1 Tonga @ Apia 22 | Nov/23 2011 Samoa 3-2 Cook Islands @ Apia 23 | 24 | Nov/25 2011 Cook Islands 1-1 Am. Samoa @ Apia 25 | Nov/25 2011 Samoa 1-1 Tonga @ Apia 26 | 27 | Nov/27 2011 Tonga 2-1 Cook Islands @ Apia 28 | Nov/27 2011 Samoa 1-0 American Samoa @ Apia 29 | 30 | -------------------------------------------------------------------------------- /2014--brazil_quali/pacific_ii.txt: -------------------------------------------------------------------------------- 1 | ########################################## 2 | # World Cup Brazil 2014 - Quali Oceania 3 | 4 | # -- Second Qualifying Round 5 | 6 | # 7 | # Note: First Stage is also the group stage for the 8 | # 2012 OFC Nations Cup 9 | 10 | 11 | Group A | Tahiti New Caledonia Vanuatu Samoa 12 | Group B | New Zealand Solomon Isl. Fiji Papua N.G. 13 | 14 | 15 | (4) Matchday 1 | Jun/1 2012 16 | (5) Matchday 2 | Jun/2 2012 17 | (6) Matchday 3 | Jun/3 2012 18 | (7) Matchday 4 | Jun/4 2012 19 | (8) Matchday 5 | Jun/5 2012 20 | (9) Matchday 6 | Jun/6 2012 21 | 22 | 23 | Group A: 24 | 25 | Jun/1 2012 Samoa 1-10 Tahiti 26 | Jun/1 2012 Vanuatu 2-5 New Caledonia 27 | 28 | Jun/3 2012 Vanuatu 5-0 Samoa 29 | Jun/3 2012 Tahiti 4-3 New Caledonia 30 | 31 | Jun/5 2012 New Caledonia 9-0 Samoa 32 | Jun/5 2012 Tahiti 4-1 Vanuatu 33 | 34 | Group B: 35 | 36 | Jun/2 2012 Fiji 0-1 New Zealand 37 | Jun/2 2012 Solomon Isl. 1-0 Papua New Guinea 38 | 39 | Jun/4 2012 New Zealand 2-1 Papua New Guinea 40 | Jun/4 2012 Solomon Isl. 0-0 Fiji 41 | 42 | Jun/6 2012 Papua N.G. 1-1 Fiji 43 | Jun/6 2012 Solomon Isl. 1-1 New Zealand 44 | -------------------------------------------------------------------------------- /2014--brazil_quali/pacific_iii.txt: -------------------------------------------------------------------------------- 1 | ########################################## 2 | # World Cup Brazil 2014 - Quali Oceania 3 | 4 | # -- Third Qualifying Round 5 | 6 | Group J | New Zealand New Caledonia Tahiti Solomon Isl. 7 | 8 | ## fix/check: use group - why? why not? 9 | ## todo: allow just Group w/o number or letter ? 10 | 11 | 12 | (10) Matchday | Sep/7 2012 13 | (11) Matchday | Sep/11 2012 - Sep/12 2012 14 | (12) Matchday | Oct/12 2012 - Oct/13 2012 15 | (13) Matchday | Oct/16 2012 16 | (14) Matchday | Mar/22 2013 - Mar/23 2013 17 | (15) Matchday | Mar/26 2013 18 | 19 | 20 | Group J: 21 | 22 | Sep/7 2012 Solomon Isl. 2-0 Tahiti @ Honiara 23 | Sep/7 2012 New Caledonia 0-2 New Zealand @ Nouméa 24 | 25 | Sep/11 2012 New Zealand 6-1 Solomon Islands @ Albany 26 | Sep/12 2012 Tahiti 0-4 New Caledonia @ Papeete 27 | 28 | Oct/12 2012 Solomon Isl. 2-6 New Caledonia @ Honiara 29 | Oct/13 2012 Tahiti 0-2 New Zealand @ Papeete 30 | 31 | Oct/16 2012 New Zealand 3-0 Tahiti @ Christchurch 32 | Oct/16 2012 New Caledonia 5-0 Solomon Islands @ Nouméa 33 | 34 | Mar/22 2013 New Zealand 2-1 New Caledonia @ Dunedin 35 | Mar/23 2013 Tahiti 2-0 Solomon Islands @ Papeete 36 | 37 | Mar/26 2013 Solomon Isl. 0-2 New Zealand @ Honiara 38 | Mar/26 2013 New Caledonia 1-0 Tahiti @ Nouméa 39 | 40 | -------------------------------------------------------------------------------- /2014--brazil_quali/playoffs.txt: -------------------------------------------------------------------------------- 1 | ################################# 2 | # Intercontinental play-offs 3 | # 4 | # - AFC v CONMEBOL, CONCACAF v OFC 5 | # 6 | # see en.wikipedia.org/wiki/2014_FIFA_World_Cup_qualification_(AFC_–_CONMEBOL_play-off) 7 | # see en.wikipedia.org/wiki/2014_FIFA_World_Cup_qualification_(CONCACAF_–_OFC_play-off) 8 | 9 | 10 | 11 | (1) Play-off 1st Leg 12 | 13 | Nov/13 2013 14:30 Mexico 5-1 New Zealand @ Estadio Azteca, Mexico City (UTC−6) 14 | Nov/13 2013 18:00 Jordan 0-5 Uruguay @ Amman International Stadium, Amman (UTC+3) 15 | 16 | 17 | (2) Play-off 2nd Leg 18 | 19 | Nov/20 2013 19:00 New Zealand 2-4 Mexico @ Westpac Stadium, Wellington (UTC+13) 20 | Nov/20 2013 21:00 Uruguay 0-0 Jordan @ Estadio Centenario, Montevideo (UTC−2) 21 | 22 | -------------------------------------------------------------------------------- /2014--brazil_quali/playoffs.yml: -------------------------------------------------------------------------------- 1 | ################################# 2 | # Intercontinental play-offs 3 | # 4 | # - AFC v CONMEBOL, CONCACAF v OFC 5 | 6 | league: world.quali.playoffs 7 | season: 2014 8 | start_at: 2013-11-13 9 | 10 | 11 | teams: 12 | - mex # Mexico 13 | - nzl # New Zealand 14 | - uru # Uruguay 15 | - jor # Jordan 16 | 17 | -------------------------------------------------------------------------------- /2014--brazil_quali/south_america.yml: -------------------------------------------------------------------------------- 1 | ######################################## 2 | # World Cup 2014 - Quali South America 3 | 4 | 5 | league: world.quali.southamerica 6 | season: 2014 7 | start_at: 2011-10-07 8 | 9 | #### 10 | # 9 Teams (4.5 qualify e.g. fifth placed to intercontinental playoff) 11 | 12 | teams: 13 | - arg # Argentina 14 | - chi # Chile 15 | - par # Paraguay 16 | - uru # Uruguay 17 | - col # Colombia 18 | - ecu # Ecuador 19 | - per # Peru 20 | - ven # Venezuela 21 | - bol # Bolivia 22 | -------------------------------------------------------------------------------- /2022--qatar/NOTES.md: -------------------------------------------------------------------------------- 1 | # Notes - World Cup 2022 2 | 3 | ## 32 Teams 4 | 5 | 6 | - Europe (UEFA): 13 places 7 | - Africa (CAF): 5 places 8 | - Asia (AFC): 6 places 9 | - South America (CONMEBOL) 4 places 10 | - North, Central American and Caribbean (CONCACAF): 4 places 11 | - Oceania (OFC): 0 12 | 13 | Teams: 14 | 15 | - Cameroon -- Africa - AFC (5) 16 | - Ghana 17 | - Morocco 18 | - Senegal 19 | - Tunisia 20 | - Australia -- Asia - CAF (6) 21 | - Iran 22 | - Japan 23 | - Qatar (hosts) 24 | - Saudi Arabia 25 | - South Korea 26 | - Canada -- North, Central American and Caribbean - CONCACAF (4) 27 | - Costa Rica 28 | - Mexico 29 | - United States 30 | - Argentina -- South America - CONMEBOL (4) 31 | - Brazil 32 | - Ecuador 33 | - Uruguay 34 | - Belgium -- Europe - UEFA (13) 35 | - Croatia 36 | - Denmark 37 | - England 38 | - France 39 | - Germany 40 | - Netherlands 41 | - Poland 42 | - Portugal 43 | - Serbia 44 | - Spain 45 | - Switzerland 46 | - Wales 47 | 48 | ## 12 stadiums 49 | 50 | - Lusail Iconic Stadium (Lusail Stadium), Lusail 51 | - Al Bayt Stadium, Al Khor 52 | - Khalifa International Stadium, Al Rayyan 53 | - Ahmad bin Ali Stadium, Al Rayyan 54 | - Education City Stadium, Al Rayyan 55 | - Al Thumama Stadium, Doha 56 | - Stadium 974, Doha 57 | - Al Janoub Stadium, Al Wakrah 58 | 59 | 60 | ## 5 cities 61 | 62 | - Lusail 63 | - Al Khor 64 | - Al Rayyan 65 | - Doha 66 | - Al Wakrah -------------------------------------------------------------------------------- /2026--usa/NOTES.md: -------------------------------------------------------------------------------- 1 | # Notes 2 | 3 | 4 | > Check out the match schedule for the tournament in Canada, Mexico and USA 5 | > with each of the 104 fixtures from the 48-team event. 6 | 7 | Match schedule 8 | 9 | 10 | 11 | --------------------------------------------------------------------------------