DROP DATABASE IF EXISTS world; CREATE DATABASE world; \c world; -- -- Table structure for table City -- DROP TABLE IF EXISTS City; CREATE TABLE City ( ID serial NOT NULL, Name varchar(35) NOT NULL default '', CountryCode char(3) NOT NULL default '', District varchar(20) NOT NULL default '', Population int NOT NULL default '0', PRIMARY KEY (ID) ) ; -- -- Dumping data for table City -- -- ORDER BY: ID INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kabul','AFG','Kabol',1780000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Qandahar','AFG','Qandahar',237500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Herat','AFG','Herat',186800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mazar-e-Sharif','AFG','Balkh',127800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Amsterdam','NLD','Noord-Holland',731200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rotterdam','NLD','Zuid-Holland',593321); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Haag','NLD','Zuid-Holland',440900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Utrecht','NLD','Utrecht',234323); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Eindhoven','NLD','Noord-Brabant',201843); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tilburg','NLD','Noord-Brabant',193238); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Groningen','NLD','Groningen',172701); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Breda','NLD','Noord-Brabant',160398); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Apeldoorn','NLD','Gelderland',153491); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nijmegen','NLD','Gelderland',152463); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Enschede','NLD','Overijssel',149544); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Haarlem','NLD','Noord-Holland',148772); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Almere','NLD','Flevoland',142465); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Arnhem','NLD','Gelderland',138020); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zaanstad','NLD','Noord-Holland',135621); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('´s-Hertogenbosch','NLD','Noord-Brabant',129170); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Amersfoort','NLD','Utrecht',126270); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Maastricht','NLD','Limburg',122087); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dordrecht','NLD','Zuid-Holland',119811); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Leiden','NLD','Zuid-Holland',117196); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Haarlemmermeer','NLD','Noord-Holland',110722); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zoetermeer','NLD','Zuid-Holland',110214); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Emmen','NLD','Drenthe',105853); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zwolle','NLD','Overijssel',105819); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ede','NLD','Gelderland',101574); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Delft','NLD','Zuid-Holland',95268); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Heerlen','NLD','Limburg',95052); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Alkmaar','NLD','Noord-Holland',92713); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Willemstad','ANT','Curaçao',2345); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tirana','ALB','Tirana',270000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Alger','DZA','Alger',2168000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Oran','DZA','Oran',609823); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Constantine','DZA','Constantine',443727); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Annaba','DZA','Annaba',222518); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Batna','DZA','Batna',183377); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sétif','DZA','Sétif',179055); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sidi Bel Abbès','DZA','Sidi Bel Abbès',153106); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Skikda','DZA','Skikda',128747); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Biskra','DZA','Biskra',128281); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Blida (el-Boulaida)','DZA','Blida',127284); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Béjaïa','DZA','Béjaïa',117162); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mostaganem','DZA','Mostaganem',115212); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tébessa','DZA','Tébessa',112007); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tlemcen (Tilimsen)','DZA','Tlemcen',110242); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Béchar','DZA','Béchar',107311); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tiaret','DZA','Tiaret',100118); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ech-Chleff (el-Asnam)','DZA','Chlef',96794); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ghardaïa','DZA','Ghardaïa',89415); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tafuna','ASM','Tutuila',5200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fagatogo','ASM','Tutuila',2323); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Andorra la Vella','AND','Andorra la Vella',21189); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Luanda','AGO','Luanda',2022000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Huambo','AGO','Huambo',163100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lobito','AGO','Benguela',130000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Benguela','AGO','Benguela',128300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Namibe','AGO','Namibe',118200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('South Hill','AIA','–',961); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('The Valley','AIA','–',595); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Saint John´s','ATG','St John',24000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dubai','ARE','Dubai',669181); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Abu Dhabi','ARE','Abu Dhabi',398695); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sharja','ARE','Sharja',320095); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Ayn','ARE','Abu Dhabi',225970); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ajman','ARE','Ajman',114395); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Buenos Aires','ARG','Distrito Federal',2982146); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('La Matanza','ARG','Buenos Aires',1266461); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Córdoba','ARG','Córdoba',1157507); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rosario','ARG','Santa Fé',907718); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lomas de Zamora','ARG','Buenos Aires',622013); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Quilmes','ARG','Buenos Aires',559249); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Almirante Brown','ARG','Buenos Aires',538918); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('La Plata','ARG','Buenos Aires',521936); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mar del Plata','ARG','Buenos Aires',512880); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Miguel de Tucumán','ARG','Tucumán',470809); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lanús','ARG','Buenos Aires',469735); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Merlo','ARG','Buenos Aires',463846); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('General San Martín','ARG','Buenos Aires',422542); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Salta','ARG','Salta',367550); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Moreno','ARG','Buenos Aires',356993); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santa Fé','ARG','Santa Fé',353063); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Avellaneda','ARG','Buenos Aires',353046); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tres de Febrero','ARG','Buenos Aires',352311); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Morón','ARG','Buenos Aires',349246); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Florencio Varela','ARG','Buenos Aires',315432); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Isidro','ARG','Buenos Aires',306341); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tigre','ARG','Buenos Aires',296226); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Malvinas Argentinas','ARG','Buenos Aires',290335); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vicente López','ARG','Buenos Aires',288341); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Berazategui','ARG','Buenos Aires',276916); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Corrientes','ARG','Corrientes',258103); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Miguel','ARG','Buenos Aires',248700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bahía Blanca','ARG','Buenos Aires',239810); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Esteban Echeverría','ARG','Buenos Aires',235760); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Resistencia','ARG','Chaco',229212); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('José C. Paz','ARG','Buenos Aires',221754); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Paraná','ARG','Entre Rios',207041); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Godoy Cruz','ARG','Mendoza',206998); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Posadas','ARG','Misiones',201273); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guaymallén','ARG','Mendoza',200595); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santiago del Estero','ARG','Santiago del Estero',189947); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Salvador de Jujuy','ARG','Jujuy',178748); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hurlingham','ARG','Buenos Aires',170028); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Neuquén','ARG','Neuquén',167296); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ituzaingó','ARG','Buenos Aires',158197); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Fernando','ARG','Buenos Aires',153036); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Formosa','ARG','Formosa',147636); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Las Heras','ARG','Mendoza',145823); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('La Rioja','ARG','La Rioja',138117); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Fernando del Valle de Cata','ARG','Catamarca',134935); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Río Cuarto','ARG','Córdoba',134355); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Comodoro Rivadavia','ARG','Chubut',124104); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mendoza','ARG','Mendoza',123027); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Nicolás de los Arroyos','ARG','Buenos Aires',119302); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Juan','ARG','San Juan',119152); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Escobar','ARG','Buenos Aires',116675); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Concordia','ARG','Entre Rios',116485); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pilar','ARG','Buenos Aires',113428); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Luis','ARG','San Luis',110136); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ezeiza','ARG','Buenos Aires',99578); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Rafael','ARG','Mendoza',94651); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tandil','ARG','Buenos Aires',91101); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yerevan','ARM','Yerevan',1248700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gjumri','ARM','Širak',211700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vanadzor','ARM','Lori',172700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Oranjestad','ABW','–',29034); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sydney','AUS','New South Wales',3276207); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Melbourne','AUS','Victoria',2865329); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Brisbane','AUS','Queensland',1291117); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Perth','AUS','West Australia',1096829); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Adelaide','AUS','South Australia',978100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Canberra','AUS','Capital Region',322723); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gold Coast','AUS','Queensland',311932); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Newcastle','AUS','New South Wales',270324); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Central Coast','AUS','New South Wales',227657); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wollongong','AUS','New South Wales',219761); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hobart','AUS','Tasmania',126118); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Geelong','AUS','Victoria',125382); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Townsville','AUS','Queensland',109914); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cairns','AUS','Queensland',92273); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Baku','AZE','Baki',1787800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gäncä','AZE','Gäncä',299300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sumqayit','AZE','Sumqayit',283000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mingäçevir','AZE','Mingäçevir',93900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nassau','BHS','New Providence',172000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Manama','BHR','al-Manama',148000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dhaka','BGD','Dhaka',3612850); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chittagong','BGD','Chittagong',1392860); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Khulna','BGD','Khulna',663340); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rajshahi','BGD','Rajshahi',294056); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Narayanganj','BGD','Dhaka',202134); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rangpur','BGD','Rajshahi',191398); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mymensingh','BGD','Dhaka',188713); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Barisal','BGD','Barisal',170232); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tungi','BGD','Dhaka',168702); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jessore','BGD','Khulna',139710); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Comilla','BGD','Chittagong',135313); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nawabganj','BGD','Rajshahi',130577); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dinajpur','BGD','Rajshahi',127815); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bogra','BGD','Rajshahi',120170); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sylhet','BGD','Sylhet',117396); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Brahmanbaria','BGD','Chittagong',109032); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tangail','BGD','Dhaka',106004); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jamalpur','BGD','Dhaka',103556); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pabna','BGD','Rajshahi',103277); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Naogaon','BGD','Rajshahi',101266); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sirajganj','BGD','Rajshahi',99669); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Narsinghdi','BGD','Dhaka',98342); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Saidpur','BGD','Rajshahi',96777); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gazipur','BGD','Dhaka',96717); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bridgetown','BRB','St Michael',6070); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Antwerpen','BEL','Antwerpen',446525); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gent','BEL','East Flanderi',224180); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Charleroi','BEL','Hainaut',200827); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Liège','BEL','Liège',185639); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bruxelles [Brussel]','BEL','Bryssel',133859); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Brugge','BEL','West Flanderi',116246); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Schaerbeek','BEL','Bryssel',105692); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Namur','BEL','Namur',105419); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mons','BEL','Hainaut',90935); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Belize City','BLZ','Belize City',55810); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Belmopan','BLZ','Cayo',7105); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cotonou','BEN','Atlantique',536827); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Porto-Novo','BEN','Ouémé',194000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Djougou','BEN','Atacora',134099); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Parakou','BEN','Borgou',103577); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Saint George','BMU','Saint George´s',1800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hamilton','BMU','Hamilton',1200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Thimphu','BTN','Thimphu',22000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santa Cruz de la Sierra','BOL','Santa Cruz',935361); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('La Paz','BOL','La Paz',758141); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('El Alto','BOL','La Paz',534466); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cochabamba','BOL','Cochabamba',482800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Oruro','BOL','Oruro',223553); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sucre','BOL','Chuquisaca',178426); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Potosí','BOL','Potosí',140642); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tarija','BOL','Tarija',125255); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sarajevo','BIH','Federaatio',360000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Banja Luka','BIH','Republika Srpska',143079); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zenica','BIH','Federaatio',96027); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gaborone','BWA','Gaborone',213017); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Francistown','BWA','Francistown',101805); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('São Paulo','BRA','São Paulo',9968485); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rio de Janeiro','BRA','Rio de Janeiro',5598953); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Salvador','BRA','Bahia',2302832); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Belo Horizonte','BRA','Minas Gerais',2139125); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fortaleza','BRA','Ceará',2097757); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Brasília','BRA','Distrito Federal',1969868); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Curitiba','BRA','Paraná',1584232); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Recife','BRA','Pernambuco',1378087); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Porto Alegre','BRA','Rio Grande do Sul',1314032); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Manaus','BRA','Amazonas',1255049); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Belém','BRA','Pará',1186926); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guarulhos','BRA','São Paulo',1095874); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Goiânia','BRA','Goiás',1056330); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Campinas','BRA','São Paulo',950043); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('São Gonçalo','BRA','Rio de Janeiro',869254); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nova Iguaçu','BRA','Rio de Janeiro',862225); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('São Luís','BRA','Maranhão',837588); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Maceió','BRA','Alagoas',786288); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Duque de Caxias','BRA','Rio de Janeiro',746758); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('São Bernardo do Campo','BRA','São Paulo',723132); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Teresina','BRA','Piauí',691942); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Natal','BRA','Rio Grande do Norte',688955); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Osasco','BRA','São Paulo',659604); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Campo Grande','BRA','Mato Grosso do Sul',649593); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santo André','BRA','São Paulo',630073); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('João Pessoa','BRA','Paraíba',584029); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jaboatão dos Guararapes','BRA','Pernambuco',558680); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Contagem','BRA','Minas Gerais',520801); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('São José dos Campos','BRA','São Paulo',515553); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Uberlândia','BRA','Minas Gerais',487222); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Feira de Santana','BRA','Bahia',479992); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ribeirão Preto','BRA','São Paulo',473276); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sorocaba','BRA','São Paulo',466823); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Niterói','BRA','Rio de Janeiro',459884); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cuiabá','BRA','Mato Grosso',453813); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Juiz de Fora','BRA','Minas Gerais',450288); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Aracaju','BRA','Sergipe',445555); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('São João de Meriti','BRA','Rio de Janeiro',440052); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Londrina','BRA','Paraná',432257); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Joinville','BRA','Santa Catarina',428011); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Belford Roxo','BRA','Rio de Janeiro',425194); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santos','BRA','São Paulo',408748); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ananindeua','BRA','Pará',400940); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Campos dos Goytacazes','BRA','Rio de Janeiro',398418); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mauá','BRA','São Paulo',375055); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Carapicuíba','BRA','São Paulo',357552); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Olinda','BRA','Pernambuco',354732); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Campina Grande','BRA','Paraíba',352497); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('São José do Rio Preto','BRA','São Paulo',351944); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Caxias do Sul','BRA','Rio Grande do Sul',349581); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Moji das Cruzes','BRA','São Paulo',339194); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Diadema','BRA','São Paulo',335078); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Aparecida de Goiânia','BRA','Goiás',324662); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Piracicaba','BRA','São Paulo',319104); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cariacica','BRA','Espírito Santo',319033); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vila Velha','BRA','Espírito Santo',318758); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pelotas','BRA','Rio Grande do Sul',315415); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bauru','BRA','São Paulo',313670); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Porto Velho','BRA','Rondônia',309750); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Serra','BRA','Espírito Santo',302666); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Betim','BRA','Minas Gerais',302108); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jundíaí','BRA','São Paulo',296127); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Canoas','BRA','Rio Grande do Sul',294125); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Franca','BRA','São Paulo',290139); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('São Vicente','BRA','São Paulo',286848); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Maringá','BRA','Paraná',286461); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Montes Claros','BRA','Minas Gerais',286058); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Anápolis','BRA','Goiás',282197); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Florianópolis','BRA','Santa Catarina',281928); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Petrópolis','BRA','Rio de Janeiro',279183); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Itaquaquecetuba','BRA','São Paulo',270874); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vitória','BRA','Espírito Santo',270626); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ponta Grossa','BRA','Paraná',268013); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rio Branco','BRA','Acre',259537); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Foz do Iguaçu','BRA','Paraná',259425); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Macapá','BRA','Amapá',256033); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ilhéus','BRA','Bahia',254970); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vitória da Conquista','BRA','Bahia',253587); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Uberaba','BRA','Minas Gerais',249225); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Paulista','BRA','Pernambuco',248473); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Limeira','BRA','São Paulo',245497); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Blumenau','BRA','Santa Catarina',244379); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Caruaru','BRA','Pernambuco',244247); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santarém','BRA','Pará',241771); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Volta Redonda','BRA','Rio de Janeiro',240315); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Novo Hamburgo','BRA','Rio Grande do Sul',239940); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Caucaia','BRA','Ceará',238738); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santa Maria','BRA','Rio Grande do Sul',238473); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cascavel','BRA','Paraná',237510); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guarujá','BRA','São Paulo',237206); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ribeirão das Neves','BRA','Minas Gerais',232685); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Governador Valadares','BRA','Minas Gerais',231724); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Taubaté','BRA','São Paulo',229130); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Imperatriz','BRA','Maranhão',224564); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gravataí','BRA','Rio Grande do Sul',223011); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Embu','BRA','São Paulo',222223); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mossoró','BRA','Rio Grande do Norte',214901); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Várzea Grande','BRA','Mato Grosso',214435); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Petrolina','BRA','Pernambuco',210540); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Barueri','BRA','São Paulo',208426); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Viamão','BRA','Rio Grande do Sul',207557); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ipatinga','BRA','Minas Gerais',206338); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Juazeiro','BRA','Bahia',201073); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Juazeiro do Norte','BRA','Ceará',199636); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Taboão da Serra','BRA','São Paulo',197550); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('São José dos Pinhais','BRA','Paraná',196884); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Magé','BRA','Rio de Janeiro',196147); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Suzano','BRA','São Paulo',195434); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('São Leopoldo','BRA','Rio Grande do Sul',189258); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Marília','BRA','São Paulo',188691); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('São Carlos','BRA','São Paulo',187122); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sumaré','BRA','São Paulo',186205); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Presidente Prudente','BRA','São Paulo',185340); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Divinópolis','BRA','Minas Gerais',185047); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sete Lagoas','BRA','Minas Gerais',182984); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rio Grande','BRA','Rio Grande do Sul',182222); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Itabuna','BRA','Bahia',182148); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jequié','BRA','Bahia',179128); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Arapiraca','BRA','Alagoas',178988); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Colombo','BRA','Paraná',177764); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Americana','BRA','São Paulo',177409); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Alvorada','BRA','Rio Grande do Sul',175574); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Araraquara','BRA','São Paulo',174381); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Itaboraí','BRA','Rio de Janeiro',173977); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santa Bárbara d´Oeste','BRA','São Paulo',171657); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nova Friburgo','BRA','Rio de Janeiro',170697); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jacareí','BRA','São Paulo',170356); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Araçatuba','BRA','São Paulo',169303); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Barra Mansa','BRA','Rio de Janeiro',168953); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Praia Grande','BRA','São Paulo',168434); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Marabá','BRA','Pará',167795); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Criciúma','BRA','Santa Catarina',167661); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Boa Vista','BRA','Roraima',167185); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Passo Fundo','BRA','Rio Grande do Sul',166343); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dourados','BRA','Mato Grosso do Sul',164716); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santa Luzia','BRA','Minas Gerais',164704); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rio Claro','BRA','São Paulo',163551); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Maracanaú','BRA','Ceará',162022); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guarapuava','BRA','Paraná',160510); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rondonópolis','BRA','Mato Grosso',155115); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('São José','BRA','Santa Catarina',155105); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cachoeiro de Itapemirim','BRA','Espírito Santo',155024); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nilópolis','BRA','Rio de Janeiro',153383); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Itapevi','BRA','São Paulo',150664); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cabo de Santo Agostinho','BRA','Pernambuco',149964); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Camaçari','BRA','Bahia',149146); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sobral','BRA','Ceará',146005); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Itajaí','BRA','Santa Catarina',145197); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chapecó','BRA','Santa Catarina',144158); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cotia','BRA','São Paulo',140042); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lages','BRA','Santa Catarina',139570); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ferraz de Vasconcelos','BRA','São Paulo',139283); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Indaiatuba','BRA','São Paulo',135968); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hortolândia','BRA','São Paulo',135755); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Caxias','BRA','Maranhão',133980); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('São Caetano do Sul','BRA','São Paulo',133321); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Itu','BRA','São Paulo',132736); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nossa Senhora do Socorro','BRA','Sergipe',131351); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Parnaíba','BRA','Piauí',129756); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Poços de Caldas','BRA','Minas Gerais',129683); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Teresópolis','BRA','Rio de Janeiro',128079); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Barreiras','BRA','Bahia',127801); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Castanhal','BRA','Pará',127634); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Alagoinhas','BRA','Bahia',126820); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Itapecerica da Serra','BRA','São Paulo',126672); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Uruguaiana','BRA','Rio Grande do Sul',126305); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Paranaguá','BRA','Paraná',126076); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ibirité','BRA','Minas Gerais',125982); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Timon','BRA','Maranhão',125812); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Luziânia','BRA','Goiás',125597); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Macaé','BRA','Rio de Janeiro',125597); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Teófilo Otoni','BRA','Minas Gerais',124489); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Moji-Guaçu','BRA','São Paulo',123782); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Palmas','BRA','Tocantins',121919); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pindamonhangaba','BRA','São Paulo',121904); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Francisco Morato','BRA','São Paulo',121197); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bagé','BRA','Rio Grande do Sul',120793); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sapucaia do Sul','BRA','Rio Grande do Sul',120217); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cabo Frio','BRA','Rio de Janeiro',119503); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Itapetininga','BRA','São Paulo',119391); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Patos de Minas','BRA','Minas Gerais',119262); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Camaragibe','BRA','Pernambuco',118968); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bragança Paulista','BRA','São Paulo',116929); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Queimados','BRA','Rio de Janeiro',115020); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Araguaína','BRA','Tocantins',114948); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Garanhuns','BRA','Pernambuco',114603); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vitória de Santo Antão','BRA','Pernambuco',113595); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santa Rita','BRA','Paraíba',113135); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Barbacena','BRA','Minas Gerais',113079); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Abaetetuba','BRA','Pará',111258); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jaú','BRA','São Paulo',109965); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lauro de Freitas','BRA','Bahia',109236); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Franco da Rocha','BRA','São Paulo',108964); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Teixeira de Freitas','BRA','Bahia',108441); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Varginha','BRA','Minas Gerais',108314); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ribeirão Pires','BRA','São Paulo',108121); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sabará','BRA','Minas Gerais',107781); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Catanduva','BRA','São Paulo',107761); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rio Verde','BRA','Goiás',107755); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Botucatu','BRA','São Paulo',107663); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Colatina','BRA','Espírito Santo',107354); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santa Cruz do Sul','BRA','Rio Grande do Sul',106734); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Linhares','BRA','Espírito Santo',106278); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Apucarana','BRA','Paraná',105114); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Barretos','BRA','São Paulo',104156); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guaratinguetá','BRA','São Paulo',103433); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cachoeirinha','BRA','Rio Grande do Sul',103240); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Codó','BRA','Maranhão',103153); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jaraguá do Sul','BRA','Santa Catarina',102580); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cubatão','BRA','São Paulo',102372); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Itabira','BRA','Minas Gerais',102217); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Itaituba','BRA','Pará',101320); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Araras','BRA','São Paulo',101046); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Resende','BRA','Rio de Janeiro',100627); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Atibaia','BRA','São Paulo',100356); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pouso Alegre','BRA','Minas Gerais',100028); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Toledo','BRA','Paraná',99387); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Crato','BRA','Ceará',98965); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Passos','BRA','Minas Gerais',98570); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Araguari','BRA','Minas Gerais',98399); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('São José de Ribamar','BRA','Maranhão',98318); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pinhais','BRA','Paraná',98198); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sertãozinho','BRA','São Paulo',98140); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Conselheiro Lafaiete','BRA','Minas Gerais',97507); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Paulo Afonso','BRA','Bahia',97291); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Angra dos Reis','BRA','Rio de Janeiro',96864); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Eunápolis','BRA','Bahia',96610); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Salto','BRA','São Paulo',96348); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ourinhos','BRA','São Paulo',96291); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Parnamirim','BRA','Rio Grande do Norte',96210); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jacobina','BRA','Bahia',96131); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Coronel Fabriciano','BRA','Minas Gerais',95933); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Birigui','BRA','São Paulo',94685); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tatuí','BRA','São Paulo',93897); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ji-Paraná','BRA','Rondônia',93346); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bacabal','BRA','Maranhão',93121); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cametá','BRA','Pará',92779); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guaíba','BRA','Rio Grande do Sul',92224); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('São Lourenço da Mata','BRA','Pernambuco',91999); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santana do Livramento','BRA','Rio Grande do Sul',91779); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Votorantim','BRA','São Paulo',91777); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Campo Largo','BRA','Paraná',91203); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Patos','BRA','Paraíba',90519); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ituiutaba','BRA','Minas Gerais',90507); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Corumbá','BRA','Mato Grosso do Sul',90111); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Palhoça','BRA','Santa Catarina',89465); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Barra do Piraí','BRA','Rio de Janeiro',89388); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bento Gonçalves','BRA','Rio Grande do Sul',89254); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Poá','BRA','São Paulo',89236); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Águas Lindas de Goiás','BRA','Goiás',89200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('London','GBR','England',7285000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Birmingham','GBR','England',1013000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Glasgow','GBR','Scotland',619680); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Liverpool','GBR','England',461000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Edinburgh','GBR','Scotland',450180); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sheffield','GBR','England',431607); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Manchester','GBR','England',430000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Leeds','GBR','England',424194); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bristol','GBR','England',402000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cardiff','GBR','Wales',321000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Coventry','GBR','England',304000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Leicester','GBR','England',294000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bradford','GBR','England',289376); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Belfast','GBR','North Ireland',287500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nottingham','GBR','England',287000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kingston upon Hull','GBR','England',262000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Plymouth','GBR','England',253000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Stoke-on-Trent','GBR','England',252000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wolverhampton','GBR','England',242000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Derby','GBR','England',236000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Swansea','GBR','Wales',230000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Southampton','GBR','England',216000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Aberdeen','GBR','Scotland',213070); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Northampton','GBR','England',196000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dudley','GBR','England',192171); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Portsmouth','GBR','England',190000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Newcastle upon Tyne','GBR','England',189150); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sunderland','GBR','England',183310); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Luton','GBR','England',183000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Swindon','GBR','England',180000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Southend-on-Sea','GBR','England',176000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Walsall','GBR','England',174739); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bournemouth','GBR','England',162000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Peterborough','GBR','England',156000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Brighton','GBR','England',156124); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Blackpool','GBR','England',151000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dundee','GBR','Scotland',146690); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('West Bromwich','GBR','England',146386); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Reading','GBR','England',148000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Oldbury/Smethwick (Warley)','GBR','England',145542); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Middlesbrough','GBR','England',145000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Huddersfield','GBR','England',143726); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Oxford','GBR','England',144000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Poole','GBR','England',141000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bolton','GBR','England',139020); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Blackburn','GBR','England',140000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Newport','GBR','Wales',139000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Preston','GBR','England',135000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Stockport','GBR','England',132813); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Norwich','GBR','England',124000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rotherham','GBR','England',121380); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cambridge','GBR','England',121000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Watford','GBR','England',113080); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ipswich','GBR','England',114000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Slough','GBR','England',112000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Exeter','GBR','England',111000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cheltenham','GBR','England',106000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gloucester','GBR','England',107000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Saint Helens','GBR','England',106293); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sutton Coldfield','GBR','England',106001); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('York','GBR','England',104425); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Oldham','GBR','England',103931); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Basildon','GBR','England',100924); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Worthing','GBR','England',100000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chelmsford','GBR','England',97451); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Colchester','GBR','England',96063); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Crawley','GBR','England',97000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gillingham','GBR','England',92000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Solihull','GBR','England',94531); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rochdale','GBR','England',94313); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Birkenhead','GBR','England',93087); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Worcester','GBR','England',95000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hartlepool','GBR','England',92000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Halifax','GBR','England',91069); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Woking/Byfleet','GBR','England',92000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Southport','GBR','England',90959); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Maidstone','GBR','England',90878); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Eastbourne','GBR','England',90000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Grimsby','GBR','England',89000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Saint Helier','GBR','Jersey',27523); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Douglas','GBR','–',23487); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Road Town','VGB','Tortola',8000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bandar Seri Begawan','BRN','Brunei and Muara',21484); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sofija','BGR','Grad Sofija',1122302); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Plovdiv','BGR','Plovdiv',342584); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Varna','BGR','Varna',299801); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Burgas','BGR','Burgas',195255); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ruse','BGR','Ruse',166467); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Stara Zagora','BGR','Haskovo',147939); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pleven','BGR','Lovec',121952); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sliven','BGR','Burgas',105530); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dobric','BGR','Varna',100399); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Šumen','BGR','Varna',94686); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ouagadougou','BFA','Kadiogo',824000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bobo-Dioulasso','BFA','Houet',300000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Koudougou','BFA','Boulkiemdé',105000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bujumbura','BDI','Bujumbura',300000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('George Town','CYM','Grand Cayman',19600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santiago de Chile','CHL','Santiago',4703954); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Puente Alto','CHL','Santiago',386236); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Viña del Mar','CHL','Valparaíso',312493); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Valparaíso','CHL','Valparaíso',293800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Talcahuano','CHL','Bíobío',277752); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Antofagasta','CHL','Antofagasta',251429); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Bernardo','CHL','Santiago',241910); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Temuco','CHL','La Araucanía',233041); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Concepción','CHL','Bíobío',217664); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rancagua','CHL','O´Higgins',212977); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Arica','CHL','Tarapacá',189036); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Talca','CHL','Maule',187557); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chillán','CHL','Bíobío',178182); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Iquique','CHL','Tarapacá',177892); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Los Angeles','CHL','Bíobío',158215); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Puerto Montt','CHL','Los Lagos',152194); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Coquimbo','CHL','Coquimbo',143353); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Osorno','CHL','Los Lagos',141468); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('La Serena','CHL','Coquimbo',137409); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Calama','CHL','Antofagasta',137265); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Valdivia','CHL','Los Lagos',133106); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Punta Arenas','CHL','Magallanes',125631); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Copiapó','CHL','Atacama',120128); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Quilpué','CHL','Valparaíso',118857); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Curicó','CHL','Maule',115766); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ovalle','CHL','Coquimbo',94854); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Coronel','CHL','Bíobío',93061); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Pedro de la Paz','CHL','Bíobío',91684); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Melipilla','CHL','Santiago',91056); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Avarua','COK','Rarotonga',11900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San José','CRI','San José',339131); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Djibouti','DJI','Djibouti',383000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Roseau','DMA','St George',16243); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santo Domingo de Guzmán','DOM','Distrito Nacional',1609966); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santiago de los Caballeros','DOM','Santiago',365463); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('La Romana','DOM','La Romana',140204); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Pedro de Macorís','DOM','San Pedro de Macorís',124735); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Francisco de Macorís','DOM','Duarte',108485); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Felipe de Puerto Plata','DOM','Puerto Plata',89423); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guayaquil','ECU','Guayas',2070040); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Quito','ECU','Pichincha',1573458); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cuenca','ECU','Azuay',270353); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Machala','ECU','El Oro',210368); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santo Domingo de los Colorados','ECU','Pichincha',202111); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Portoviejo','ECU','Manabí',176413); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ambato','ECU','Tungurahua',169612); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Manta','ECU','Manabí',164739); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Duran [Eloy Alfaro]','ECU','Guayas',152514); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ibarra','ECU','Imbabura',130643); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Quevedo','ECU','Los Ríos',129631); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Milagro','ECU','Guayas',124177); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Loja','ECU','Loja',123875); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ríobamba','ECU','Chimborazo',123163); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Esmeraldas','ECU','Esmeraldas',123045); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cairo','EGY','Kairo',6789479); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Alexandria','EGY','Aleksandria',3328196); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Giza','EGY','Giza',2221868); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shubra al-Khayma','EGY','al-Qalyubiya',870716); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Port Said','EGY','Port Said',469533); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Suez','EGY','Suez',417610); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Mahallat al-Kubra','EGY','al-Gharbiya',395402); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tanta','EGY','al-Gharbiya',371010); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Mansura','EGY','al-Daqahliya',369621); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Luxor','EGY','Luxor',360503); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Asyut','EGY','Asyut',343498); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bahtim','EGY','al-Qalyubiya',275807); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zagazig','EGY','al-Sharqiya',267351); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Faiyum','EGY','al-Faiyum',260964); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ismailia','EGY','Ismailia',254477); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kafr al-Dawwar','EGY','al-Buhayra',231978); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Assuan','EGY','Assuan',219017); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Damanhur','EGY','al-Buhayra',212203); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Minya','EGY','al-Minya',201360); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bani Suwayf','EGY','Bani Suwayf',172032); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Qina','EGY','Qina',171275); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sawhaj','EGY','Sawhaj',170125); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shibin al-Kawm','EGY','al-Minufiya',159909); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bulaq al-Dakrur','EGY','Giza',148787); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Banha','EGY','al-Qalyubiya',145792); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Warraq al-Arab','EGY','Giza',127108); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kafr al-Shaykh','EGY','Kafr al-Shaykh',124819); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mallawi','EGY','al-Minya',119283); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bilbays','EGY','al-Sharqiya',113608); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mit Ghamr','EGY','al-Daqahliya',101801); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Arish','EGY','Shamal Sina',100447); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Talkha','EGY','al-Daqahliya',97700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Qalyub','EGY','al-Qalyubiya',97200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jirja','EGY','Sawhaj',95400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Idfu','EGY','Qina',94200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Hawamidiya','EGY','Giza',91700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Disuq','EGY','Kafr al-Shaykh',91300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Salvador','SLV','San Salvador',415346); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santa Ana','SLV','Santa Ana',139389); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mejicanos','SLV','San Salvador',138800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Soyapango','SLV','San Salvador',129800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Miguel','SLV','San Miguel',127696); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nueva San Salvador','SLV','La Libertad',98400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Apopa','SLV','San Salvador',88800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Asmara','ERI','Maekel',431000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Madrid','ESP','Madrid',2879052); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Barcelona','ESP','Katalonia',1503451); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Valencia','ESP','Valencia',739412); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sevilla','ESP','Andalusia',701927); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zaragoza','ESP','Aragonia',603367); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Málaga','ESP','Andalusia',530553); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bilbao','ESP','Baskimaa',357589); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Las Palmas de Gran Canaria','ESP','Canary Islands',354757); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Murcia','ESP','Murcia',353504); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Palma de Mallorca','ESP','Balears',326993); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Valladolid','ESP','Castilla and León',319998); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Córdoba','ESP','Andalusia',311708); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vigo','ESP','Galicia',283670); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Alicante [Alacant]','ESP','Valencia',272432); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gijón','ESP','Asturia',267980); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('L´Hospitalet de Llobregat','ESP','Katalonia',247986); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Granada','ESP','Andalusia',244767); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('A Coruña (La Coruña)','ESP','Galicia',243402); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vitoria-Gasteiz','ESP','Baskimaa',217154); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santa Cruz de Tenerife','ESP','Canary Islands',213050); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Badalona','ESP','Katalonia',209635); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Oviedo','ESP','Asturia',200453); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Móstoles','ESP','Madrid',195351); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Elche [Elx]','ESP','Valencia',193174); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sabadell','ESP','Katalonia',184859); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santander','ESP','Cantabria',184165); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jerez de la Frontera','ESP','Andalusia',182660); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pamplona [Iruña]','ESP','Navarra',180483); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Donostia-San Sebastián','ESP','Baskimaa',179208); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cartagena','ESP','Murcia',177709); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Leganés','ESP','Madrid',173163); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fuenlabrada','ESP','Madrid',171173); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Almería','ESP','Andalusia',169027); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Terrassa','ESP','Katalonia',168695); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Alcalá de Henares','ESP','Madrid',164463); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Burgos','ESP','Castilla and León',162802); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Salamanca','ESP','Castilla and León',158720); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Albacete','ESP','Kastilia-La Mancha',147527); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Getafe','ESP','Madrid',145371); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cádiz','ESP','Andalusia',142449); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Alcorcón','ESP','Madrid',142048); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Huelva','ESP','Andalusia',140583); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('León','ESP','Castilla and León',139809); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Castellón de la Plana [Castell','ESP','Valencia',139712); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Badajoz','ESP','Extremadura',136613); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('[San Cristóbal de] la Laguna','ESP','Canary Islands',127945); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Logroño','ESP','La Rioja',127093); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santa Coloma de Gramenet','ESP','Katalonia',120802); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tarragona','ESP','Katalonia',113016); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lleida (Lérida)','ESP','Katalonia',112207); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jaén','ESP','Andalusia',109247); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ourense (Orense)','ESP','Galicia',109120); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mataró','ESP','Katalonia',104095); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Algeciras','ESP','Andalusia',103106); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Marbella','ESP','Andalusia',101144); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Barakaldo','ESP','Baskimaa',98212); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dos Hermanas','ESP','Andalusia',94591); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santiago de Compostela','ESP','Galicia',93745); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Torrejón de Ardoz','ESP','Madrid',92262); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cape Town','ZAF','Western Cape',2352121); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Soweto','ZAF','Gauteng',904165); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Johannesburg','ZAF','Gauteng',756653); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Port Elizabeth','ZAF','Eastern Cape',752319); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pretoria','ZAF','Gauteng',658630); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Inanda','ZAF','KwaZulu-Natal',634065); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Durban','ZAF','KwaZulu-Natal',566120); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vanderbijlpark','ZAF','Gauteng',468931); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kempton Park','ZAF','Gauteng',442633); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Alberton','ZAF','Gauteng',410102); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pinetown','ZAF','KwaZulu-Natal',378810); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pietermaritzburg','ZAF','KwaZulu-Natal',370190); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Benoni','ZAF','Gauteng',365467); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Randburg','ZAF','Gauteng',341288); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Umlazi','ZAF','KwaZulu-Natal',339233); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bloemfontein','ZAF','Free State',334341); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vereeniging','ZAF','Gauteng',328535); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wonderboom','ZAF','Gauteng',283289); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Roodepoort','ZAF','Gauteng',279340); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Boksburg','ZAF','Gauteng',262648); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Klerksdorp','ZAF','North West',261911); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Soshanguve','ZAF','Gauteng',242727); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Newcastle','ZAF','KwaZulu-Natal',222993); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('East London','ZAF','Eastern Cape',221047); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Welkom','ZAF','Free State',203296); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kimberley','ZAF','Northern Cape',197254); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Uitenhage','ZAF','Eastern Cape',192120); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chatsworth','ZAF','KwaZulu-Natal',189885); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mdantsane','ZAF','Eastern Cape',182639); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Krugersdorp','ZAF','Gauteng',181503); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Botshabelo','ZAF','Free State',177971); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Brakpan','ZAF','Gauteng',171363); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Witbank','ZAF','Mpumalanga',167183); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Oberholzer','ZAF','Gauteng',164367); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Germiston','ZAF','Gauteng',164252); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Springs','ZAF','Gauteng',162072); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Westonaria','ZAF','Gauteng',159632); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Randfontein','ZAF','Gauteng',120838); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Paarl','ZAF','Western Cape',105768); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Potchefstroom','ZAF','North West',101817); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rustenburg','ZAF','North West',97008); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nigel','ZAF','Gauteng',96734); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('George','ZAF','Western Cape',93818); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ladysmith','ZAF','KwaZulu-Natal',89292); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Addis Abeba','ETH','Addis Abeba',2495000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dire Dawa','ETH','Dire Dawa',164851); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nazret','ETH','Oromia',127842); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gonder','ETH','Amhara',112249); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dese','ETH','Amhara',97314); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mekele','ETH','Tigray',96938); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bahir Dar','ETH','Amhara',96140); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Stanley','FLK','East Falkland',1636); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Suva','FJI','Central',77366); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Quezon','PHL','National Capital Reg',2173831); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Manila','PHL','National Capital Reg',1581082); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kalookan','PHL','National Capital Reg',1177604); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Davao','PHL','Southern Mindanao',1147116); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cebu','PHL','Central Visayas',718821); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zamboanga','PHL','Western Mindanao',601794); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pasig','PHL','National Capital Reg',505058); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Valenzuela','PHL','National Capital Reg',485433); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Las Piñas','PHL','National Capital Reg',472780); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Antipolo','PHL','Southern Tagalog',470866); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Taguig','PHL','National Capital Reg',467375); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cagayan de Oro','PHL','Northern Mindanao',461877); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Parañaque','PHL','National Capital Reg',449811); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Makati','PHL','National Capital Reg',444867); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bacolod','PHL','Western Visayas',429076); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('General Santos','PHL','Southern Mindanao',411822); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Marikina','PHL','National Capital Reg',391170); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dasmariñas','PHL','Southern Tagalog',379520); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Muntinlupa','PHL','National Capital Reg',379310); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Iloilo','PHL','Western Visayas',365820); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pasay','PHL','National Capital Reg',354908); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Malabon','PHL','National Capital Reg',338855); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San José del Monte','PHL','Central Luzon',315807); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bacoor','PHL','Southern Tagalog',305699); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Iligan','PHL','Central Mindanao',285061); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Calamba','PHL','Southern Tagalog',281146); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mandaluyong','PHL','National Capital Reg',278474); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Butuan','PHL','Caraga',267279); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Angeles','PHL','Central Luzon',263971); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tarlac','PHL','Central Luzon',262481); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mandaue','PHL','Central Visayas',259728); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Baguio','PHL','CAR',252386); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Batangas','PHL','Southern Tagalog',247588); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cainta','PHL','Southern Tagalog',242511); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Pedro','PHL','Southern Tagalog',231403); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Navotas','PHL','National Capital Reg',230403); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cabanatuan','PHL','Central Luzon',222859); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Fernando','PHL','Central Luzon',221857); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lipa','PHL','Southern Tagalog',218447); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lapu-Lapu','PHL','Central Visayas',217019); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Pablo','PHL','Southern Tagalog',207927); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Biñan','PHL','Southern Tagalog',201186); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Taytay','PHL','Southern Tagalog',198183); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lucena','PHL','Southern Tagalog',196075); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Imus','PHL','Southern Tagalog',195482); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Olongapo','PHL','Central Luzon',194260); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Binangonan','PHL','Southern Tagalog',187691); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santa Rosa','PHL','Southern Tagalog',185633); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tagum','PHL','Southern Mindanao',179531); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tacloban','PHL','Eastern Visayas',178639); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Malolos','PHL','Central Luzon',175291); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mabalacat','PHL','Central Luzon',171045); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cotabato','PHL','Central Mindanao',163849); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Meycauayan','PHL','Central Luzon',163037); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Puerto Princesa','PHL','Southern Tagalog',161912); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Legazpi','PHL','Bicol',157010); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Silang','PHL','Southern Tagalog',156137); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ormoc','PHL','Eastern Visayas',154297); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Carlos','PHL','Ilocos',154264); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kabankalan','PHL','Western Visayas',149769); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Talisay','PHL','Central Visayas',148110); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Valencia','PHL','Northern Mindanao',147924); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Calbayog','PHL','Eastern Visayas',147187); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santa Maria','PHL','Central Luzon',144282); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pagadian','PHL','Western Mindanao',142515); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cadiz','PHL','Western Visayas',141954); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bago','PHL','Western Visayas',141721); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Toledo','PHL','Central Visayas',141174); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Naga','PHL','Bicol',137810); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Mateo','PHL','Southern Tagalog',135603); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Panabo','PHL','Southern Mindanao',133950); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Koronadal','PHL','Southern Mindanao',133786); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Marawi','PHL','Central Mindanao',131090); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dagupan','PHL','Ilocos',130328); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sagay','PHL','Western Visayas',129765); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Roxas','PHL','Western Visayas',126352); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lubao','PHL','Central Luzon',125699); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Digos','PHL','Southern Mindanao',125171); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Miguel','PHL','Central Luzon',123824); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Malaybalay','PHL','Northern Mindanao',123672); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tuguegarao','PHL','Cagayan Valley',120645); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ilagan','PHL','Cagayan Valley',119990); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Baliuag','PHL','Central Luzon',119675); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Surigao','PHL','Caraga',118534); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Carlos','PHL','Western Visayas',118259); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Juan del Monte','PHL','National Capital Reg',117680); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tanauan','PHL','Southern Tagalog',117539); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Concepcion','PHL','Central Luzon',115171); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rodriguez (Montalban)','PHL','Southern Tagalog',115167); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sariaya','PHL','Southern Tagalog',114568); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Malasiqui','PHL','Ilocos',113190); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('General Mariano Alvarez','PHL','Southern Tagalog',112446); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Urdaneta','PHL','Ilocos',111582); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hagonoy','PHL','Central Luzon',111425); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Jose','PHL','Southern Tagalog',111009); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Polomolok','PHL','Southern Mindanao',110709); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santiago','PHL','Cagayan Valley',110531); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tanza','PHL','Southern Tagalog',110517); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ozamis','PHL','Northern Mindanao',110420); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mexico','PHL','Central Luzon',109481); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Jose','PHL','Central Luzon',108254); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Silay','PHL','Western Visayas',107722); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('General Trias','PHL','Southern Tagalog',107691); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tabaco','PHL','Bicol',107166); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cabuyao','PHL','Southern Tagalog',106630); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Calapan','PHL','Southern Tagalog',105910); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mati','PHL','Southern Mindanao',105908); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Midsayap','PHL','Central Mindanao',105760); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cauayan','PHL','Cagayan Valley',103952); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gingoog','PHL','Northern Mindanao',102379); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dumaguete','PHL','Central Visayas',102265); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Fernando','PHL','Ilocos',102082); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Arayat','PHL','Central Luzon',101792); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bayawan (Tulong)','PHL','Central Visayas',101391); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kidapawan','PHL','Central Mindanao',101205); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Daraga (Locsin)','PHL','Bicol',101031); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Marilao','PHL','Central Luzon',101017); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Malita','PHL','Southern Mindanao',100000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dipolog','PHL','Western Mindanao',99862); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cavite','PHL','Southern Tagalog',99367); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Danao','PHL','Central Visayas',98781); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bislig','PHL','Caraga',97860); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Talavera','PHL','Central Luzon',97329); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guagua','PHL','Central Luzon',96858); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bayambang','PHL','Ilocos',96609); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nasugbu','PHL','Southern Tagalog',96113); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Baybay','PHL','Eastern Visayas',95630); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Capas','PHL','Central Luzon',95219); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sultan Kudarat','PHL','ARMM',94861); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Laoag','PHL','Ilocos',94466); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bayugan','PHL','Caraga',93623); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Malungon','PHL','Southern Mindanao',93232); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santa Cruz','PHL','Southern Tagalog',92694); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sorsogon','PHL','Bicol',92512); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Candelaria','PHL','Southern Tagalog',92429); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ligao','PHL','Bicol',90603); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tórshavn','FRO','Streymoyar',14542); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Libreville','GAB','Estuaire',419000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Serekunda','GMB','Kombo St Mary',102600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Banjul','GMB','Banjul',42326); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tbilisi','GEO','Tbilisi',1235200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kutaisi','GEO','Imereti',240900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rustavi','GEO','Kvemo Kartli',155400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Batumi','GEO','Adzaria [Atšara]',137700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sohumi','GEO','Abhasia [Aphazeti]',111700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Accra','GHA','Greater Accra',1070000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kumasi','GHA','Ashanti',385192); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tamale','GHA','Northern',151069); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tema','GHA','Greater Accra',109975); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sekondi-Takoradi','GHA','Western',103653); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gibraltar','GIB','–',27025); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Saint George´s','GRD','St George',4621); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nuuk','GRL','Kitaa',13445); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Les Abymes','GLP','Grande-Terre',62947); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Basse-Terre','GLP','Basse-Terre',12433); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tamuning','GUM','–',9500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Agaña','GUM','–',1139); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ciudad de Guatemala','GTM','Guatemala',823301); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mixco','GTM','Guatemala',209791); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Villa Nueva','GTM','Guatemala',101295); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Quetzaltenango','GTM','Quetzaltenango',90801); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Conakry','GIN','Conakry',1090610); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bissau','GNB','Bissau',241000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Georgetown','GUY','Georgetown',254000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Port-au-Prince','HTI','Ouest',884472); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Carrefour','HTI','Ouest',290204); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Delmas','HTI','Ouest',240429); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Le-Cap-Haïtien','HTI','Nord',102233); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tegucigalpa','HND','Distrito Central',813900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Pedro Sula','HND','Cortés',383900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('La Ceiba','HND','Atlántida',89200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kowloon and New Kowloon','HKG','Kowloon and New Kowl',1987996); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Victoria','HKG','Hongkong',1312637); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Longyearbyen','SJM','Länsimaa',1438); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jakarta','IDN','Jakarta Raya',9604900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Surabaya','IDN','East Java',2663820); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bandung','IDN','West Java',2429000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Medan','IDN','Sumatera Utara',1843919); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Palembang','IDN','Sumatera Selatan',1222764); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tangerang','IDN','West Java',1198300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Semarang','IDN','Central Java',1104405); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ujung Pandang','IDN','Sulawesi Selatan',1060257); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Malang','IDN','East Java',716862); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bandar Lampung','IDN','Lampung',680332); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bekasi','IDN','West Java',644300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Padang','IDN','Sumatera Barat',534474); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Surakarta','IDN','Central Java',518600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Banjarmasin','IDN','Kalimantan Selatan',482931); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pekan Baru','IDN','Riau',438638); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Denpasar','IDN','Bali',435000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yogyakarta','IDN','Yogyakarta',418944); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pontianak','IDN','Kalimantan Barat',409632); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Samarinda','IDN','Kalimantan Timur',399175); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jambi','IDN','Jambi',385201); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Depok','IDN','West Java',365200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cimahi','IDN','West Java',344600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Balikpapan','IDN','Kalimantan Timur',338752); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Manado','IDN','Sulawesi Utara',332288); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mataram','IDN','Nusa Tenggara Barat',306600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pekalongan','IDN','Central Java',301504); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tegal','IDN','Central Java',289744); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bogor','IDN','West Java',285114); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ciputat','IDN','West Java',270800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pondokgede','IDN','West Java',263200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cirebon','IDN','West Java',254406); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kediri','IDN','East Java',253760); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ambon','IDN','Molukit',249312); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jember','IDN','East Java',218500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cilacap','IDN','Central Java',206900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cimanggis','IDN','West Java',205100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pematang Siantar','IDN','Sumatera Utara',203056); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Purwokerto','IDN','Central Java',202500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ciomas','IDN','West Java',187400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tasikmalaya','IDN','West Java',179800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Madiun','IDN','East Java',171532); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bengkulu','IDN','Bengkulu',146439); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Karawang','IDN','West Java',145000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Banda Aceh','IDN','Aceh',143409); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Palu','IDN','Sulawesi Tengah',142800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pasuruan','IDN','East Java',134019); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kupang','IDN','Nusa Tenggara Timur',129300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tebing Tinggi','IDN','Sumatera Utara',129300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Percut Sei Tuan','IDN','Sumatera Utara',129000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Binjai','IDN','Sumatera Utara',127222); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sukabumi','IDN','West Java',125766); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Waru','IDN','East Java',124300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pangkal Pinang','IDN','Sumatera Selatan',124000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Magelang','IDN','Central Java',123800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Blitar','IDN','East Java',122600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Serang','IDN','West Java',122400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Probolinggo','IDN','East Java',120770); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cilegon','IDN','West Java',117000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cianjur','IDN','West Java',114300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ciparay','IDN','West Java',111500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lhokseumawe','IDN','Aceh',109600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Taman','IDN','East Java',107000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Depok','IDN','Yogyakarta',106800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Citeureup','IDN','West Java',105100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pemalang','IDN','Central Java',103500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Klaten','IDN','Central Java',103300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Salatiga','IDN','Central Java',103000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cibinong','IDN','West Java',101300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Palangka Raya','IDN','Kalimantan Tengah',99693); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mojokerto','IDN','East Java',96626); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Purwakarta','IDN','West Java',95900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Garut','IDN','West Java',95800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kudus','IDN','Central Java',95300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kendari','IDN','Sulawesi Tenggara',94800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jaya Pura','IDN','West Irian',94700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gorontalo','IDN','Sulawesi Utara',94058); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Majalaya','IDN','West Java',93200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pondok Aren','IDN','West Java',92700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jombang','IDN','East Java',92600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sunggal','IDN','Sumatera Utara',92300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Batam','IDN','Riau',91871); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Padang Sidempuan','IDN','Sumatera Utara',91200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sawangan','IDN','West Java',91100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Banyuwangi','IDN','East Java',89900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tanjung Pinang','IDN','Riau',89900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mumbai (Bombay)','IND','Maharashtra',10500000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Delhi','IND','Delhi',7206704); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Calcutta [Kolkata]','IND','West Bengali',4399819); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chennai (Madras)','IND','Tamil Nadu',3841396); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hyderabad','IND','Andhra Pradesh',2964638); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ahmedabad','IND','Gujarat',2876710); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bangalore','IND','Karnataka',2660088); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kanpur','IND','Uttar Pradesh',1874409); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nagpur','IND','Maharashtra',1624752); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lucknow','IND','Uttar Pradesh',1619115); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pune','IND','Maharashtra',1566651); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Surat','IND','Gujarat',1498817); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jaipur','IND','Rajasthan',1458483); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Indore','IND','Madhya Pradesh',1091674); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bhopal','IND','Madhya Pradesh',1062771); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ludhiana','IND','Punjab',1042740); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vadodara (Baroda)','IND','Gujarat',1031346); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kalyan','IND','Maharashtra',1014557); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Madurai','IND','Tamil Nadu',977856); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Haora (Howrah)','IND','West Bengali',950435); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Varanasi (Benares)','IND','Uttar Pradesh',929270); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Patna','IND','Bihar',917243); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Srinagar','IND','Jammu and Kashmir',892506); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Agra','IND','Uttar Pradesh',891790); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Coimbatore','IND','Tamil Nadu',816321); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Thane (Thana)','IND','Maharashtra',803389); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Allahabad','IND','Uttar Pradesh',792858); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Meerut','IND','Uttar Pradesh',753778); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vishakhapatnam','IND','Andhra Pradesh',752037); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jabalpur','IND','Madhya Pradesh',741927); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Amritsar','IND','Punjab',708835); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Faridabad','IND','Haryana',703592); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vijayawada','IND','Andhra Pradesh',701827); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gwalior','IND','Madhya Pradesh',690765); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jodhpur','IND','Rajasthan',666279); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nashik (Nasik)','IND','Maharashtra',656925); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hubli-Dharwad','IND','Karnataka',648298); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Solapur (Sholapur)','IND','Maharashtra',604215); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ranchi','IND','Jharkhand',599306); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bareilly','IND','Uttar Pradesh',587211); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guwahati (Gauhati)','IND','Assam',584342); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shambajinagar (Aurangabad)','IND','Maharashtra',573272); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cochin (Kochi)','IND','Kerala',564589); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rajkot','IND','Gujarat',559407); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kota','IND','Rajasthan',537371); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Thiruvananthapuram (Trivandrum','IND','Kerala',524006); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pimpri-Chinchwad','IND','Maharashtra',517083); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jalandhar (Jullundur)','IND','Punjab',509510); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gorakhpur','IND','Uttar Pradesh',505566); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chandigarh','IND','Chandigarh',504094); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mysore','IND','Karnataka',480692); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Aligarh','IND','Uttar Pradesh',480520); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guntur','IND','Andhra Pradesh',471051); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jamshedpur','IND','Jharkhand',460577); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ghaziabad','IND','Uttar Pradesh',454156); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Warangal','IND','Andhra Pradesh',447657); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Raipur','IND','Chhatisgarh',438639); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Moradabad','IND','Uttar Pradesh',429214); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Durgapur','IND','West Bengali',425836); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Amravati','IND','Maharashtra',421576); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Calicut (Kozhikode)','IND','Kerala',419831); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bikaner','IND','Rajasthan',416289); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bhubaneswar','IND','Orissa',411542); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kolhapur','IND','Maharashtra',406370); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kataka (Cuttack)','IND','Orissa',403418); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ajmer','IND','Rajasthan',402700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bhavnagar','IND','Gujarat',402338); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tiruchirapalli','IND','Tamil Nadu',387223); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bhilai','IND','Chhatisgarh',386159); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bhiwandi','IND','Maharashtra',379070); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Saharanpur','IND','Uttar Pradesh',374945); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ulhasnagar','IND','Maharashtra',369077); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Salem','IND','Tamil Nadu',366712); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ujjain','IND','Madhya Pradesh',362266); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Malegaon','IND','Maharashtra',342595); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jamnagar','IND','Gujarat',341637); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bokaro Steel City','IND','Jharkhand',333683); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Akola','IND','Maharashtra',328034); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Belgaum','IND','Karnataka',326399); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rajahmundry','IND','Andhra Pradesh',324851); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nellore','IND','Andhra Pradesh',316606); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Udaipur','IND','Rajasthan',308571); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('New Bombay','IND','Maharashtra',307297); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bhatpara','IND','West Bengali',304952); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gulbarga','IND','Karnataka',304099); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('New Delhi','IND','Delhi',301297); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jhansi','IND','Uttar Pradesh',300850); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gaya','IND','Bihar',291675); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kakinada','IND','Andhra Pradesh',279980); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dhule (Dhulia)','IND','Maharashtra',278317); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Panihati','IND','West Bengali',275990); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nanded (Nander)','IND','Maharashtra',275083); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mangalore','IND','Karnataka',273304); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dehra Dun','IND','Uttaranchal',270159); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kamarhati','IND','West Bengali',266889); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Davangere','IND','Karnataka',266082); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Asansol','IND','West Bengali',262188); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bhagalpur','IND','Bihar',253225); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bellary','IND','Karnataka',245391); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Barddhaman (Burdwan)','IND','West Bengali',245079); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rampur','IND','Uttar Pradesh',243742); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jalgaon','IND','Maharashtra',242193); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Muzaffarpur','IND','Bihar',241107); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nizamabad','IND','Andhra Pradesh',241034); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Muzaffarnagar','IND','Uttar Pradesh',240609); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Patiala','IND','Punjab',238368); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shahjahanpur','IND','Uttar Pradesh',237713); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kurnool','IND','Andhra Pradesh',236800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tiruppur (Tirupper)','IND','Tamil Nadu',235661); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rohtak','IND','Haryana',233400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('South Dum Dum','IND','West Bengali',232811); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mathura','IND','Uttar Pradesh',226691); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chandrapur','IND','Maharashtra',226105); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Barahanagar (Baranagar)','IND','West Bengali',224821); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Darbhanga','IND','Bihar',218391); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Siliguri (Shiliguri)','IND','West Bengali',216950); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Raurkela','IND','Orissa',215489); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ambattur','IND','Tamil Nadu',215424); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Panipat','IND','Haryana',215218); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Firozabad','IND','Uttar Pradesh',215128); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ichalkaranji','IND','Maharashtra',214950); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jammu','IND','Jammu and Kashmir',214737); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ramagundam','IND','Andhra Pradesh',214384); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Eluru','IND','Andhra Pradesh',212866); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Brahmapur','IND','Orissa',210418); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Alwar','IND','Rajasthan',205086); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pondicherry','IND','Pondicherry',203065); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Thanjavur','IND','Tamil Nadu',202013); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bihar Sharif','IND','Bihar',201323); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tuticorin','IND','Tamil Nadu',199854); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Imphal','IND','Manipur',198535); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Latur','IND','Maharashtra',197408); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sagar','IND','Madhya Pradesh',195346); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Farrukhabad-cum-Fatehgarh','IND','Uttar Pradesh',194567); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sangli','IND','Maharashtra',193197); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Parbhani','IND','Maharashtra',190255); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nagar Coil','IND','Tamil Nadu',190084); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bijapur','IND','Karnataka',186939); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kukatpalle','IND','Andhra Pradesh',185378); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bally','IND','West Bengali',184474); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bhilwara','IND','Rajasthan',183965); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ratlam','IND','Madhya Pradesh',183375); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Avadi','IND','Tamil Nadu',183215); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dindigul','IND','Tamil Nadu',182477); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ahmadnagar','IND','Maharashtra',181339); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bilaspur','IND','Chhatisgarh',179833); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shimoga','IND','Karnataka',179258); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kharagpur','IND','West Bengali',177989); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mira Bhayandar','IND','Maharashtra',175372); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vellore','IND','Tamil Nadu',175061); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jalna','IND','Maharashtra',174985); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Burnpur','IND','West Bengali',174933); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Anantapur','IND','Andhra Pradesh',174924); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Allappuzha (Alleppey)','IND','Kerala',174666); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tirupati','IND','Andhra Pradesh',174369); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Karnal','IND','Haryana',173751); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Burhanpur','IND','Madhya Pradesh',172710); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hisar (Hissar)','IND','Haryana',172677); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tiruvottiyur','IND','Tamil Nadu',172562); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mirzapur-cum-Vindhyachal','IND','Uttar Pradesh',169336); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Secunderabad','IND','Andhra Pradesh',167461); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nadiad','IND','Gujarat',167051); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dewas','IND','Madhya Pradesh',164364); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Murwara (Katni)','IND','Madhya Pradesh',163431); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ganganagar','IND','Rajasthan',161482); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vizianagaram','IND','Andhra Pradesh',160359); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Erode','IND','Tamil Nadu',159232); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Machilipatnam (Masulipatam)','IND','Andhra Pradesh',159110); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bhatinda (Bathinda)','IND','Punjab',159042); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Raichur','IND','Karnataka',157551); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Agartala','IND','Tripura',157358); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Arrah (Ara)','IND','Bihar',157082); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Satna','IND','Madhya Pradesh',156630); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lalbahadur Nagar','IND','Andhra Pradesh',155500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Aizawl','IND','Mizoram',155240); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Uluberia','IND','West Bengali',155172); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Katihar','IND','Bihar',154367); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cuddalore','IND','Tamil Nadu',153086); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hugli-Chinsurah','IND','West Bengali',151806); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dhanbad','IND','Jharkhand',151789); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Raiganj','IND','West Bengali',151045); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sambhal','IND','Uttar Pradesh',150869); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Durg','IND','Chhatisgarh',150645); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Munger (Monghyr)','IND','Bihar',150112); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kanchipuram','IND','Tamil Nadu',150100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('North Dum Dum','IND','West Bengali',149965); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Karimnagar','IND','Andhra Pradesh',148583); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bharatpur','IND','Rajasthan',148519); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sikar','IND','Rajasthan',148272); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hardwar (Haridwar)','IND','Uttaranchal',147305); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dabgram','IND','West Bengali',147217); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Morena','IND','Madhya Pradesh',147124); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Noida','IND','Uttar Pradesh',146514); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hapur','IND','Uttar Pradesh',146262); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bhusawal','IND','Maharashtra',145143); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Khandwa','IND','Madhya Pradesh',145133); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yamuna Nagar','IND','Haryana',144346); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sonipat (Sonepat)','IND','Haryana',143922); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tenali','IND','Andhra Pradesh',143726); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Raurkela Civil Township','IND','Orissa',140408); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kollam (Quilon)','IND','Kerala',139852); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kumbakonam','IND','Tamil Nadu',139483); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ingraj Bazar (English Bazar)','IND','West Bengali',139204); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Timkur','IND','Karnataka',138903); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Amroha','IND','Uttar Pradesh',137061); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Serampore','IND','West Bengali',137028); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chapra','IND','Bihar',136877); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pali','IND','Rajasthan',136842); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Maunath Bhanjan','IND','Uttar Pradesh',136697); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Adoni','IND','Andhra Pradesh',136182); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jaunpur','IND','Uttar Pradesh',136062); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tirunelveli','IND','Tamil Nadu',135825); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bahraich','IND','Uttar Pradesh',135400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gadag Betigeri','IND','Karnataka',134051); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Proddatur','IND','Andhra Pradesh',133914); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chittoor','IND','Andhra Pradesh',133462); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Barrackpur','IND','West Bengali',133265); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bharuch (Broach)','IND','Gujarat',133102); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Naihati','IND','West Bengali',132701); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shillong','IND','Meghalaya',131719); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sambalpur','IND','Orissa',131138); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Junagadh','IND','Gujarat',130484); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rae Bareli','IND','Uttar Pradesh',129904); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rewa','IND','Madhya Pradesh',128981); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gurgaon','IND','Haryana',128608); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Khammam','IND','Andhra Pradesh',127992); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bulandshahr','IND','Uttar Pradesh',127201); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Navsari','IND','Gujarat',126089); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Malkajgiri','IND','Andhra Pradesh',126066); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Midnapore (Medinipur)','IND','West Bengali',125498); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Miraj','IND','Maharashtra',125407); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Raj Nandgaon','IND','Chhatisgarh',125371); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Alandur','IND','Tamil Nadu',125244); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Puri','IND','Orissa',125199); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Navadwip','IND','West Bengali',125037); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sirsa','IND','Haryana',125000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Korba','IND','Chhatisgarh',124501); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Faizabad','IND','Uttar Pradesh',124437); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Etawah','IND','Uttar Pradesh',124072); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pathankot','IND','Punjab',123930); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gandhinagar','IND','Gujarat',123359); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Palghat (Palakkad)','IND','Kerala',123289); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Veraval','IND','Gujarat',123000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hoshiarpur','IND','Punjab',122705); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ambala','IND','Haryana',122596); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sitapur','IND','Uttar Pradesh',121842); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bhiwani','IND','Haryana',121629); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cuddapah','IND','Andhra Pradesh',121463); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bhimavaram','IND','Andhra Pradesh',121314); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Krishnanagar','IND','West Bengali',121110); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chandannagar','IND','West Bengali',120378); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mandya','IND','Karnataka',120265); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dibrugarh','IND','Assam',120127); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nandyal','IND','Andhra Pradesh',119813); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Balurghat','IND','West Bengali',119796); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Neyveli','IND','Tamil Nadu',118080); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fatehpur','IND','Uttar Pradesh',117675); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mahbubnagar','IND','Andhra Pradesh',116833); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Budaun','IND','Uttar Pradesh',116695); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Porbandar','IND','Gujarat',116671); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Silchar','IND','Assam',115483); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Berhampore (Baharampur)','IND','West Bengali',115144); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Purnea (Purnia)','IND','Jharkhand',114912); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bankura','IND','West Bengali',114876); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rajapalaiyam','IND','Tamil Nadu',114202); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Titagarh','IND','West Bengali',114085); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Halisahar','IND','West Bengali',114028); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hathras','IND','Uttar Pradesh',113285); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bhir (Bid)','IND','Maharashtra',112434); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pallavaram','IND','Tamil Nadu',111866); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Anand','IND','Gujarat',110266); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mango','IND','Jharkhand',110024); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santipur','IND','West Bengali',109956); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bhind','IND','Madhya Pradesh',109755); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gondiya','IND','Maharashtra',109470); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tiruvannamalai','IND','Tamil Nadu',109196); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yeotmal (Yavatmal)','IND','Maharashtra',108578); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kulti-Barakar','IND','West Bengali',108518); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Moga','IND','Punjab',108304); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shivapuri','IND','Madhya Pradesh',108277); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bidar','IND','Karnataka',108016); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guntakal','IND','Andhra Pradesh',107592); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Unnao','IND','Uttar Pradesh',107425); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Barasat','IND','West Bengali',107365); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tambaram','IND','Tamil Nadu',107187); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Abohar','IND','Punjab',107163); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pilibhit','IND','Uttar Pradesh',106605); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Valparai','IND','Tamil Nadu',106523); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gonda','IND','Uttar Pradesh',106078); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Surendranagar','IND','Gujarat',105973); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Qutubullapur','IND','Andhra Pradesh',105380); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Beawar','IND','Rajasthan',105363); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hindupur','IND','Andhra Pradesh',104651); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gandhidham','IND','Gujarat',104585); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Haldwani-cum-Kathgodam','IND','Uttaranchal',104195); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tellicherry (Thalassery)','IND','Kerala',103579); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wardha','IND','Maharashtra',102985); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rishra','IND','West Bengali',102649); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bhuj','IND','Gujarat',102176); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Modinagar','IND','Uttar Pradesh',101660); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gudivada','IND','Andhra Pradesh',101656); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Basirhat','IND','West Bengali',101409); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Uttarpara-Kotrung','IND','West Bengali',100867); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ongole','IND','Andhra Pradesh',100836); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('North Barrackpur','IND','West Bengali',100513); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guna','IND','Madhya Pradesh',100490); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Haldia','IND','West Bengali',100347); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Habra','IND','West Bengali',100223); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kanchrapara','IND','West Bengali',100194); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tonk','IND','Rajasthan',100079); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Champdani','IND','West Bengali',98818); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Orai','IND','Uttar Pradesh',98640); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pudukkottai','IND','Tamil Nadu',98619); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sasaram','IND','Bihar',98220); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hazaribag','IND','Jharkhand',97712); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Palayankottai','IND','Tamil Nadu',97662); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Banda','IND','Uttar Pradesh',97227); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Godhra','IND','Gujarat',96813); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hospet','IND','Karnataka',96322); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ashoknagar-Kalyangarh','IND','West Bengali',96315); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Achalpur','IND','Maharashtra',96216); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Patan','IND','Gujarat',96109); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mandasor','IND','Madhya Pradesh',95758); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Damoh','IND','Madhya Pradesh',95661); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Satara','IND','Maharashtra',95133); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Meerut Cantonment','IND','Uttar Pradesh',94876); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dehri','IND','Bihar',94526); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Delhi Cantonment','IND','Delhi',94326); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chhindwara','IND','Madhya Pradesh',93731); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bansberia','IND','West Bengali',93447); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nagaon','IND','Assam',93350); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kanpur Cantonment','IND','Uttar Pradesh',93109); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vidisha','IND','Madhya Pradesh',92917); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bettiah','IND','Bihar',92583); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Purulia','IND','Jharkhand',92574); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hassan','IND','Karnataka',90803); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ambala Sadar','IND','Haryana',90712); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Baidyabati','IND','West Bengali',90601); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Morvi','IND','Gujarat',90357); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Raigarh','IND','Chhatisgarh',89166); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vejalpur','IND','Gujarat',89053); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Baghdad','IRQ','Baghdad',4336000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mosul','IRQ','Ninawa',879000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Irbil','IRQ','Irbil',485968); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kirkuk','IRQ','al-Tamim',418624); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Basra','IRQ','Basra',406296); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Sulaymaniya','IRQ','al-Sulaymaniya',364096); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Najaf','IRQ','al-Najaf',309010); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Karbala','IRQ','Karbala',296705); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Hilla','IRQ','Babil',268834); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Nasiriya','IRQ','DhiQar',265937); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Amara','IRQ','Maysan',208797); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Diwaniya','IRQ','al-Qadisiya',196519); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Ramadi','IRQ','al-Anbar',192556); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Kut','IRQ','Wasit',183183); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Baquba','IRQ','Diyala',114516); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Teheran','IRN','Teheran',6758845); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mashhad','IRN','Khorasan',1887405); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Esfahan','IRN','Esfahan',1266072); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tabriz','IRN','East Azerbaidzan',1191043); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shiraz','IRN','Fars',1053025); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Karaj','IRN','Teheran',940968); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ahvaz','IRN','Khuzestan',804980); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Qom','IRN','Qom',777677); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kermanshah','IRN','Kermanshah',692986); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Urmia','IRN','West Azerbaidzan',435200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zahedan','IRN','Sistan va Baluchesta',419518); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rasht','IRN','Gilan',417748); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hamadan','IRN','Hamadan',401281); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kerman','IRN','Kerman',384991); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Arak','IRN','Markazi',380755); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ardebil','IRN','Ardebil',340386); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yazd','IRN','Yazd',326776); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Qazvin','IRN','Qazvin',291117); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zanjan','IRN','Zanjan',286295); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sanandaj','IRN','Kordestan',277808); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bandar-e-Abbas','IRN','Hormozgan',273578); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Khorramabad','IRN','Lorestan',272815); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Eslamshahr','IRN','Teheran',265450); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Borujerd','IRN','Lorestan',217804); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Abadan','IRN','Khuzestan',206073); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dezful','IRN','Khuzestan',202639); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kashan','IRN','Esfahan',201372); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sari','IRN','Mazandaran',195882); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gorgan','IRN','Golestan',188710); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Najafabad','IRN','Esfahan',178498); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sabzevar','IRN','Khorasan',170738); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Khomeynishahr','IRN','Esfahan',165888); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Amol','IRN','Mazandaran',159092); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Neyshabur','IRN','Khorasan',158847); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Babol','IRN','Mazandaran',158346); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Khoy','IRN','West Azerbaidzan',148944); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Malayer','IRN','Hamadan',144373); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bushehr','IRN','Bushehr',143641); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Qaemshahr','IRN','Mazandaran',143286); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Qarchak','IRN','Teheran',142690); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Qods','IRN','Teheran',138278); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sirjan','IRN','Kerman',135024); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bojnurd','IRN','Khorasan',134835); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Maragheh','IRN','East Azerbaidzan',132318); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Birjand','IRN','Khorasan',127608); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ilam','IRN','Ilam',126346); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bukan','IRN','West Azerbaidzan',120020); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Masjed-e-Soleyman','IRN','Khuzestan',116883); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Saqqez','IRN','Kordestan',115394); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gonbad-e Qabus','IRN','Mazandaran',111253); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Saveh','IRN','Qom',111245); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mahabad','IRN','West Azerbaidzan',107799); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Varamin','IRN','Teheran',107233); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Andimeshk','IRN','Khuzestan',106923); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Khorramshahr','IRN','Khuzestan',105636); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shahrud','IRN','Semnan',104765); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Marv Dasht','IRN','Fars',103579); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zabol','IRN','Sistan va Baluchesta',100887); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shahr-e Kord','IRN','Chaharmahal va Bakht',100477); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bandar-e Anzali','IRN','Gilan',98500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rafsanjan','IRN','Kerman',98300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Marand','IRN','East Azerbaidzan',96400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Torbat-e Heydariyeh','IRN','Khorasan',94600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jahrom','IRN','Fars',94200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Semnan','IRN','Semnan',91045); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Miandoab','IRN','West Azerbaidzan',90100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Qomsheh','IRN','Esfahan',89800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dublin','IRL','Leinster',481854); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cork','IRL','Munster',127187); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Reykjavík','ISL','Höfuðborgarsvæði',109184); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jerusalem','ISR','Jerusalem',633700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tel Aviv-Jaffa','ISR','Tel Aviv',348100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Haifa','ISR','Haifa',265700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rishon Le Ziyyon','ISR','Ha Merkaz',188200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Beerseba','ISR','Ha Darom',163700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Holon','ISR','Tel Aviv',163100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Petah Tiqwa','ISR','Ha Merkaz',159400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ashdod','ISR','Ha Darom',155800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Netanya','ISR','Ha Merkaz',154900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bat Yam','ISR','Tel Aviv',137000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bene Beraq','ISR','Tel Aviv',133900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ramat Gan','ISR','Tel Aviv',126900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ashqelon','ISR','Ha Darom',92300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rehovot','ISR','Ha Merkaz',90300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Roma','ITA','Latium',2643581); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Milano','ITA','Lombardia',1300977); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Napoli','ITA','Campania',1002619); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Torino','ITA','Piemonte',903705); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Palermo','ITA','Sisilia',683794); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Genova','ITA','Liguria',636104); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bologna','ITA','Emilia-Romagna',381161); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Firenze','ITA','Toscana',376662); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Catania','ITA','Sisilia',337862); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bari','ITA','Apulia',331848); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Venezia','ITA','Veneto',277305); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Messina','ITA','Sisilia',259156); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Verona','ITA','Veneto',255268); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Trieste','ITA','Friuli-Venezia Giuli',216459); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Padova','ITA','Veneto',211391); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Taranto','ITA','Apulia',208214); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Brescia','ITA','Lombardia',191317); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Reggio di Calabria','ITA','Calabria',179617); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Modena','ITA','Emilia-Romagna',176022); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Prato','ITA','Toscana',172473); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Parma','ITA','Emilia-Romagna',168717); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cagliari','ITA','Sardinia',165926); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Livorno','ITA','Toscana',161673); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Perugia','ITA','Umbria',156673); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Foggia','ITA','Apulia',154891); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Reggio nell´ Emilia','ITA','Emilia-Romagna',143664); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Salerno','ITA','Campania',142055); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ravenna','ITA','Emilia-Romagna',138418); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ferrara','ITA','Emilia-Romagna',132127); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rimini','ITA','Emilia-Romagna',131062); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Syrakusa','ITA','Sisilia',126282); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sassari','ITA','Sardinia',120803); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Monza','ITA','Lombardia',119516); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bergamo','ITA','Lombardia',117837); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pescara','ITA','Abruzzit',115698); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Latina','ITA','Latium',114099); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vicenza','ITA','Veneto',109738); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Terni','ITA','Umbria',107770); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Forlì','ITA','Emilia-Romagna',107475); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Trento','ITA','Trentino-Alto Adige',104906); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Novara','ITA','Piemonte',102037); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Piacenza','ITA','Emilia-Romagna',98384); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ancona','ITA','Marche',98329); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lecce','ITA','Apulia',98208); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bolzano','ITA','Trentino-Alto Adige',97232); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Catanzaro','ITA','Calabria',96700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('La Spezia','ITA','Liguria',95504); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Udine','ITA','Friuli-Venezia Giuli',94932); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Torre del Greco','ITA','Campania',94505); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Andria','ITA','Apulia',94443); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Brindisi','ITA','Apulia',93454); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Giugliano in Campania','ITA','Campania',93286); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pisa','ITA','Toscana',92379); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Barletta','ITA','Apulia',91904); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Arezzo','ITA','Toscana',91729); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Alessandria','ITA','Piemonte',90289); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cesena','ITA','Emilia-Romagna',89852); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pesaro','ITA','Marche',88987); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dili','TMP','Dili',47900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wien','AUT','Wien',1608144); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Graz','AUT','Steiermark',240967); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Linz','AUT','North Austria',188022); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Salzburg','AUT','Salzburg',144247); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Innsbruck','AUT','Tiroli',111752); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Klagenfurt','AUT','Kärnten',91141); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Spanish Town','JAM','St. Catherine',110379); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kingston','JAM','St. Andrew',103962); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Portmore','JAM','St. Andrew',99799); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tokyo','JPN','Tokyo-to',7980230); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jokohama [Yokohama]','JPN','Kanagawa',3339594); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Osaka','JPN','Osaka',2595674); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nagoya','JPN','Aichi',2154376); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sapporo','JPN','Hokkaido',1790886); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kioto','JPN','Kyoto',1461974); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kobe','JPN','Hyogo',1425139); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fukuoka','JPN','Fukuoka',1308379); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kawasaki','JPN','Kanagawa',1217359); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hiroshima','JPN','Hiroshima',1119117); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kitakyushu','JPN','Fukuoka',1016264); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sendai','JPN','Miyagi',989975); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chiba','JPN','Chiba',863930); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sakai','JPN','Osaka',797735); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kumamoto','JPN','Kumamoto',656734); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Okayama','JPN','Okayama',624269); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sagamihara','JPN','Kanagawa',586300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hamamatsu','JPN','Shizuoka',568796); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kagoshima','JPN','Kagoshima',549977); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Funabashi','JPN','Chiba',545299); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Higashiosaka','JPN','Osaka',517785); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hachioji','JPN','Tokyo-to',513451); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Niigata','JPN','Niigata',497464); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Amagasaki','JPN','Hyogo',481434); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Himeji','JPN','Hyogo',475167); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shizuoka','JPN','Shizuoka',473854); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Urawa','JPN','Saitama',469675); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Matsuyama','JPN','Ehime',466133); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Matsudo','JPN','Chiba',461126); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kanazawa','JPN','Ishikawa',455386); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kawaguchi','JPN','Saitama',452155); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ichikawa','JPN','Chiba',441893); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Omiya','JPN','Saitama',441649); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Utsunomiya','JPN','Tochigi',440353); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Oita','JPN','Oita',433401); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nagasaki','JPN','Nagasaki',432759); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yokosuka','JPN','Kanagawa',430200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kurashiki','JPN','Okayama',425103); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gifu','JPN','Gifu',408007); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hirakata','JPN','Osaka',403151); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nishinomiya','JPN','Hyogo',397618); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Toyonaka','JPN','Osaka',396689); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wakayama','JPN','Wakayama',391233); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fukuyama','JPN','Hiroshima',376921); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fujisawa','JPN','Kanagawa',372840); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Asahikawa','JPN','Hokkaido',364813); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Machida','JPN','Tokyo-to',364197); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nara','JPN','Nara',362812); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Takatsuki','JPN','Osaka',361747); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Iwaki','JPN','Fukushima',361737); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nagano','JPN','Nagano',361391); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Toyohashi','JPN','Aichi',360066); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Toyota','JPN','Aichi',346090); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Suita','JPN','Osaka',345750); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Takamatsu','JPN','Kagawa',332471); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Koriyama','JPN','Fukushima',330335); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Okazaki','JPN','Aichi',328711); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kawagoe','JPN','Saitama',327211); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tokorozawa','JPN','Saitama',325809); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Toyama','JPN','Toyama',325790); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kochi','JPN','Kochi',324710); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kashiwa','JPN','Chiba',320296); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Akita','JPN','Akita',314440); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Miyazaki','JPN','Miyazaki',303784); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Koshigaya','JPN','Saitama',301446); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Naha','JPN','Okinawa',299851); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Aomori','JPN','Aomori',295969); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hakodate','JPN','Hokkaido',294788); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Akashi','JPN','Hyogo',292253); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yokkaichi','JPN','Mie',288173); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fukushima','JPN','Fukushima',287525); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Morioka','JPN','Iwate',287353); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Maebashi','JPN','Gumma',284473); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kasugai','JPN','Aichi',282348); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Otsu','JPN','Shiga',282070); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ichihara','JPN','Chiba',279280); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yao','JPN','Osaka',276421); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ichinomiya','JPN','Aichi',270828); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tokushima','JPN','Tokushima',269649); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kakogawa','JPN','Hyogo',266281); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ibaraki','JPN','Osaka',261020); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Neyagawa','JPN','Osaka',257315); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shimonoseki','JPN','Yamaguchi',257263); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yamagata','JPN','Yamagata',255617); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fukui','JPN','Fukui',254818); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hiratsuka','JPN','Kanagawa',254207); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mito','JPN','Ibaragi',246559); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sasebo','JPN','Nagasaki',244240); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hachinohe','JPN','Aomori',242979); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Takasaki','JPN','Gumma',239124); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shimizu','JPN','Shizuoka',239123); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kurume','JPN','Fukuoka',235611); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fuji','JPN','Shizuoka',231527); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Soka','JPN','Saitama',222768); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fuchu','JPN','Tokyo-to',220576); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chigasaki','JPN','Kanagawa',216015); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Atsugi','JPN','Kanagawa',212407); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Numazu','JPN','Shizuoka',211382); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ageo','JPN','Saitama',209442); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yamato','JPN','Kanagawa',208234); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Matsumoto','JPN','Nagano',206801); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kure','JPN','Hiroshima',206504); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Takarazuka','JPN','Hyogo',205993); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kasukabe','JPN','Saitama',201838); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chofu','JPN','Tokyo-to',201585); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Odawara','JPN','Kanagawa',200171); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kofu','JPN','Yamanashi',199753); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kushiro','JPN','Hokkaido',197608); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kishiwada','JPN','Osaka',197276); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hitachi','JPN','Ibaragi',196622); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nagaoka','JPN','Niigata',192407); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Itami','JPN','Hyogo',190886); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Uji','JPN','Kyoto',188735); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Suzuka','JPN','Mie',184061); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hirosaki','JPN','Aomori',177522); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ube','JPN','Yamaguchi',175206); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kodaira','JPN','Tokyo-to',174984); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Takaoka','JPN','Toyama',174380); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Obihiro','JPN','Hokkaido',173685); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tomakomai','JPN','Hokkaido',171958); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Saga','JPN','Saga',170034); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sakura','JPN','Chiba',168072); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kamakura','JPN','Kanagawa',167661); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mitaka','JPN','Tokyo-to',167268); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Izumi','JPN','Osaka',166979); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hino','JPN','Tokyo-to',166770); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hadano','JPN','Kanagawa',166512); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ashikaga','JPN','Tochigi',165243); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tsu','JPN','Mie',164543); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sayama','JPN','Saitama',162472); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yachiyo','JPN','Chiba',161222); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tsukuba','JPN','Ibaragi',160768); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tachikawa','JPN','Tokyo-to',159430); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kumagaya','JPN','Saitama',157171); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Moriguchi','JPN','Osaka',155941); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Otaru','JPN','Hokkaido',155784); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Anjo','JPN','Aichi',153823); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Narashino','JPN','Chiba',152849); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Oyama','JPN','Tochigi',152820); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ogaki','JPN','Gifu',151758); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Matsue','JPN','Shimane',149821); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kawanishi','JPN','Hyogo',149794); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hitachinaka','JPN','Tokyo-to',148006); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Niiza','JPN','Saitama',147744); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nagareyama','JPN','Chiba',147738); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tottori','JPN','Tottori',147523); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tama','JPN','Ibaragi',146712); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Iruma','JPN','Saitama',145922); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ota','JPN','Gumma',145317); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Omuta','JPN','Fukuoka',142889); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Komaki','JPN','Aichi',139827); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ome','JPN','Tokyo-to',139216); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kadoma','JPN','Osaka',138953); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yamaguchi','JPN','Yamaguchi',138210); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Higashimurayama','JPN','Tokyo-to',136970); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yonago','JPN','Tottori',136461); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Matsubara','JPN','Osaka',135010); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Musashino','JPN','Tokyo-to',134426); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tsuchiura','JPN','Ibaragi',134072); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Joetsu','JPN','Niigata',133505); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Miyakonojo','JPN','Miyazaki',133183); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Misato','JPN','Saitama',132957); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kakamigahara','JPN','Gifu',131831); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Daito','JPN','Osaka',130594); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Seto','JPN','Aichi',130470); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kariya','JPN','Aichi',127969); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Urayasu','JPN','Chiba',127550); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Beppu','JPN','Oita',127486); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Niihama','JPN','Ehime',127207); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Minoo','JPN','Osaka',127026); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fujieda','JPN','Shizuoka',126897); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Abiko','JPN','Chiba',126670); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nobeoka','JPN','Miyazaki',125547); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tondabayashi','JPN','Osaka',125094); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ueda','JPN','Nagano',124217); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kashihara','JPN','Nara',124013); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Matsusaka','JPN','Mie',123582); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Isesaki','JPN','Gumma',123285); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zama','JPN','Kanagawa',122046); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kisarazu','JPN','Chiba',121967); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Noda','JPN','Chiba',121030); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ishinomaki','JPN','Miyagi',120963); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fujinomiya','JPN','Shizuoka',119714); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kawachinagano','JPN','Osaka',119666); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Imabari','JPN','Ehime',119357); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Aizuwakamatsu','JPN','Fukushima',119287); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Higashihiroshima','JPN','Hiroshima',119166); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Habikino','JPN','Osaka',118968); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ebetsu','JPN','Hokkaido',118805); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hofu','JPN','Yamaguchi',118751); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kiryu','JPN','Gumma',118326); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Okinawa','JPN','Okinawa',117748); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yaizu','JPN','Shizuoka',117258); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Toyokawa','JPN','Aichi',115781); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ebina','JPN','Kanagawa',115571); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Asaka','JPN','Saitama',114815); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Higashikurume','JPN','Tokyo-to',111666); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ikoma','JPN','Nara',111645); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kitami','JPN','Hokkaido',111295); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Koganei','JPN','Tokyo-to',110969); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Iwatsuki','JPN','Saitama',110034); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mishima','JPN','Shizuoka',109699); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Handa','JPN','Aichi',108600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Muroran','JPN','Hokkaido',108275); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Komatsu','JPN','Ishikawa',107937); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yatsushiro','JPN','Kumamoto',107661); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Iida','JPN','Nagano',107583); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tokuyama','JPN','Yamaguchi',107078); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kokubunji','JPN','Tokyo-to',106996); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Akishima','JPN','Tokyo-to',106914); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Iwakuni','JPN','Yamaguchi',106647); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kusatsu','JPN','Shiga',106232); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kuwana','JPN','Mie',106121); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sanda','JPN','Hyogo',105643); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hikone','JPN','Shiga',105508); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Toda','JPN','Saitama',103969); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tajimi','JPN','Gifu',103171); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ikeda','JPN','Osaka',102710); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fukaya','JPN','Saitama',102156); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ise','JPN','Mie',101732); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sakata','JPN','Yamagata',101651); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kasuga','JPN','Fukuoka',101344); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kamagaya','JPN','Chiba',100821); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tsuruoka','JPN','Yamagata',100713); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hoya','JPN','Tokyo-to',100313); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nishio','JPN','Chiba',100032); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tokai','JPN','Aichi',99738); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Inazawa','JPN','Aichi',98746); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sakado','JPN','Saitama',98221); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Isehara','JPN','Kanagawa',98123); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Takasago','JPN','Hyogo',97632); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fujimi','JPN','Saitama',96972); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Urasoe','JPN','Okinawa',96002); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yonezawa','JPN','Yamagata',95592); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Konan','JPN','Aichi',95521); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yamatokoriyama','JPN','Nara',95165); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Maizuru','JPN','Kyoto',94784); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Onomichi','JPN','Hiroshima',93756); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Higashimatsuyama','JPN','Saitama',93342); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kimitsu','JPN','Chiba',93216); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Isahaya','JPN','Nagasaki',93058); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kanuma','JPN','Tochigi',93053); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Izumisano','JPN','Osaka',92583); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kameoka','JPN','Kyoto',92398); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mobara','JPN','Chiba',91664); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Narita','JPN','Chiba',91470); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kashiwazaki','JPN','Niigata',91229); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tsuyama','JPN','Okayama',91170); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sanaa','YEM','Sanaa',503600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Aden','YEM','Aden',398300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Taizz','YEM','Taizz',317600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hodeida','YEM','Hodeida',298500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Mukalla','YEM','Hadramawt',122400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ibb','YEM','Ibb',103300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Amman','JOR','Amman',1000000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Zarqa','JOR','al-Zarqa',389815); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Irbid','JOR','Irbid',231511); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Rusayfa','JOR','al-Zarqa',137247); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wadi al-Sir','JOR','Amman',89104); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Flying Fish Cove','CXR','–',700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Beograd','YUG','Central Serbia',1204000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Novi Sad','YUG','Vojvodina',179626); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Niš','YUG','Central Serbia',175391); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Priština','YUG','Kosovo and Metohija',155496); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kragujevac','YUG','Central Serbia',147305); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Podgorica','YUG','Montenegro',135000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Subotica','YUG','Vojvodina',100386); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Prizren','YUG','Kosovo and Metohija',92303); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Phnom Penh','KHM','Phnom Penh',570155); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Battambang','KHM','Battambang',129800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Siem Reap','KHM','Siem Reap',105100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Douala','CMR','Littoral',1448300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yaoundé','CMR','Centre',1372800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Garoua','CMR','Nord',177000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Maroua','CMR','Extrême-Nord',143000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bamenda','CMR','Nord-Ouest',138000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bafoussam','CMR','Ouest',131000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nkongsamba','CMR','Littoral',112454); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Montréal','CAN','Québec',1016376); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Calgary','CAN','Alberta',768082); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Toronto','CAN','Ontario',688275); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('North York','CAN','Ontario',622632); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Winnipeg','CAN','Manitoba',618477); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Edmonton','CAN','Alberta',616306); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mississauga','CAN','Ontario',608072); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Scarborough','CAN','Ontario',594501); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vancouver','CAN','British Colombia',514008); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Etobicoke','CAN','Ontario',348845); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('London','CAN','Ontario',339917); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hamilton','CAN','Ontario',335614); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ottawa','CAN','Ontario',335277); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Laval','CAN','Québec',330393); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Surrey','CAN','British Colombia',304477); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Brampton','CAN','Ontario',296711); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Windsor','CAN','Ontario',207588); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Saskatoon','CAN','Saskatchewan',193647); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kitchener','CAN','Ontario',189959); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Markham','CAN','Ontario',189098); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Regina','CAN','Saskatchewan',180400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Burnaby','CAN','British Colombia',179209); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Québec','CAN','Québec',167264); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('York','CAN','Ontario',154980); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Richmond','CAN','British Colombia',148867); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vaughan','CAN','Ontario',147889); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Burlington','CAN','Ontario',145150); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Oshawa','CAN','Ontario',140173); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Oakville','CAN','Ontario',139192); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Saint Catharines','CAN','Ontario',136216); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Longueuil','CAN','Québec',127977); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Richmond Hill','CAN','Ontario',116428); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Thunder Bay','CAN','Ontario',115913); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nepean','CAN','Ontario',115100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cape Breton','CAN','Nova Scotia',114733); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('East York','CAN','Ontario',114034); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Halifax','CAN','Nova Scotia',113910); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cambridge','CAN','Ontario',109186); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gloucester','CAN','Ontario',107314); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Abbotsford','CAN','British Colombia',105403); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guelph','CAN','Ontario',103593); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Saint John´s','CAN','Newfoundland',101936); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Coquitlam','CAN','British Colombia',101820); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Saanich','CAN','British Colombia',101388); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gatineau','CAN','Québec',100702); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Delta','CAN','British Colombia',95411); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sudbury','CAN','Ontario',92686); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kelowna','CAN','British Colombia',89442); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Barrie','CAN','Ontario',89269); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Praia','CPV','São Tiago',94800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Almaty','KAZ','Almaty Qalasy',1129400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Qaraghandy','KAZ','Qaraghandy',436900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shymkent','KAZ','South Kazakstan',360100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Taraz','KAZ','Taraz',330100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Astana','KAZ','Astana',311200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Öskemen','KAZ','East Kazakstan',311000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pavlodar','KAZ','Pavlodar',300500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Semey','KAZ','East Kazakstan',269600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Aqtöbe','KAZ','Aqtöbe',253100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Qostanay','KAZ','Qostanay',221400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Petropavl','KAZ','North Kazakstan',203500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Oral','KAZ','West Kazakstan',195500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Temirtau','KAZ','Qaraghandy',170500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Qyzylorda','KAZ','Qyzylorda',157400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Aqtau','KAZ','Mangghystau',143400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Atyrau','KAZ','Atyrau',142500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ekibastuz','KAZ','Pavlodar',127200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kökshetau','KAZ','North Kazakstan',123400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rudnyy','KAZ','Qostanay',109500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Taldyqorghan','KAZ','Almaty',98000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zhezqazghan','KAZ','Qaraghandy',90000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nairobi','KEN','Nairobi',2290000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mombasa','KEN','Coast',461753); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kisumu','KEN','Nyanza',192733); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nakuru','KEN','Rift Valley',163927); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Machakos','KEN','Eastern',116293); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Eldoret','KEN','Rift Valley',111882); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Meru','KEN','Eastern',94947); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nyeri','KEN','Central',91258); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bangui','CAF','Bangui',524000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shanghai','CHN','Shanghai',9696300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Peking','CHN','Peking',7472000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chongqing','CHN','Chongqing',6351600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tianjin','CHN','Tianjin',5286800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wuhan','CHN','Hubei',4344600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Harbin','CHN','Heilongjiang',4289800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shenyang','CHN','Liaoning',4265200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kanton [Guangzhou]','CHN','Guangdong',4256300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chengdu','CHN','Sichuan',3361500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nanking [Nanjing]','CHN','Jiangsu',2870300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Changchun','CHN','Jilin',2812000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Xi´an','CHN','Shaanxi',2761400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dalian','CHN','Liaoning',2697000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Qingdao','CHN','Shandong',2596000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jinan','CHN','Shandong',2278100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hangzhou','CHN','Zhejiang',2190500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zhengzhou','CHN','Henan',2107200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shijiazhuang','CHN','Hebei',2041500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Taiyuan','CHN','Shanxi',1968400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kunming','CHN','Yunnan',1829500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Changsha','CHN','Hunan',1809800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nanchang','CHN','Jiangxi',1691600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fuzhou','CHN','Fujian',1593800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lanzhou','CHN','Gansu',1565800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guiyang','CHN','Guizhou',1465200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ningbo','CHN','Zhejiang',1371200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hefei','CHN','Anhui',1369100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Urumtši [Ürümqi]','CHN','Xinxiang',1310100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Anshan','CHN','Liaoning',1200000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fushun','CHN','Liaoning',1200000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nanning','CHN','Guangxi',1161800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zibo','CHN','Shandong',1140000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Qiqihar','CHN','Heilongjiang',1070000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jilin','CHN','Jilin',1040000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tangshan','CHN','Hebei',1040000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Baotou','CHN','Inner Mongolia',980000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shenzhen','CHN','Guangdong',950500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hohhot','CHN','Inner Mongolia',916700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Handan','CHN','Hebei',840000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wuxi','CHN','Jiangsu',830000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Xuzhou','CHN','Jiangsu',810000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Datong','CHN','Shanxi',800000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yichun','CHN','Heilongjiang',800000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Benxi','CHN','Liaoning',770000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Luoyang','CHN','Henan',760000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Suzhou','CHN','Jiangsu',710000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Xining','CHN','Qinghai',700200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Huainan','CHN','Anhui',700000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jixi','CHN','Heilongjiang',683885); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Daqing','CHN','Heilongjiang',660000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fuxin','CHN','Liaoning',640000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Amoy [Xiamen]','CHN','Fujian',627500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Liuzhou','CHN','Guangxi',610000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shantou','CHN','Guangdong',580000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jinzhou','CHN','Liaoning',570000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mudanjiang','CHN','Heilongjiang',570000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yinchuan','CHN','Ningxia',544500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Changzhou','CHN','Jiangsu',530000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zhangjiakou','CHN','Hebei',530000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dandong','CHN','Liaoning',520000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hegang','CHN','Heilongjiang',520000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kaifeng','CHN','Henan',510000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jiamusi','CHN','Heilongjiang',493409); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Liaoyang','CHN','Liaoning',492559); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hengyang','CHN','Hunan',487148); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Baoding','CHN','Hebei',483155); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hunjiang','CHN','Jilin',482043); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Xinxiang','CHN','Henan',473762); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Huangshi','CHN','Hubei',457601); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Haikou','CHN','Hainan',454300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yantai','CHN','Shandong',452127); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bengbu','CHN','Anhui',449245); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Xiangtan','CHN','Hunan',441968); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Weifang','CHN','Shandong',428522); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wuhu','CHN','Anhui',425740); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pingxiang','CHN','Jiangxi',425579); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yingkou','CHN','Liaoning',421589); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Anyang','CHN','Henan',420332); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Panzhihua','CHN','Sichuan',415466); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pingdingshan','CHN','Henan',410775); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Xiangfan','CHN','Hubei',410407); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zhuzhou','CHN','Hunan',409924); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jiaozuo','CHN','Henan',409100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wenzhou','CHN','Zhejiang',401871); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zhangjiang','CHN','Guangdong',400997); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zigong','CHN','Sichuan',393184); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shuangyashan','CHN','Heilongjiang',386081); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zaozhuang','CHN','Shandong',380846); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yakeshi','CHN','Inner Mongolia',377869); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yichang','CHN','Hubei',371601); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zhenjiang','CHN','Jiangsu',368316); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Huaibei','CHN','Anhui',366549); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Qinhuangdao','CHN','Hebei',364972); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guilin','CHN','Guangxi',364130); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Liupanshui','CHN','Guizhou',363954); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Panjin','CHN','Liaoning',362773); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yangquan','CHN','Shanxi',362268); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jinxi','CHN','Liaoning',357052); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Liaoyuan','CHN','Jilin',354141); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lianyungang','CHN','Jiangsu',354139); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Xianyang','CHN','Shaanxi',352125); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tai´an','CHN','Shandong',350696); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chifeng','CHN','Inner Mongolia',350077); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shaoguan','CHN','Guangdong',350043); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nantong','CHN','Jiangsu',343341); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Leshan','CHN','Sichuan',341128); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Baoji','CHN','Shaanxi',337765); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Linyi','CHN','Shandong',324720); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tonghua','CHN','Jilin',324600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Siping','CHN','Jilin',317223); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Changzhi','CHN','Shanxi',317144); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tengzhou','CHN','Shandong',315083); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chaozhou','CHN','Guangdong',313469); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yangzhou','CHN','Jiangsu',312892); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dongwan','CHN','Guangdong',308669); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ma´anshan','CHN','Anhui',305421); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Foshan','CHN','Guangdong',303160); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yueyang','CHN','Hunan',302800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Xingtai','CHN','Hebei',302789); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Changde','CHN','Hunan',301276); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shihezi','CHN','Xinxiang',299676); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yancheng','CHN','Jiangsu',296831); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jiujiang','CHN','Jiangxi',291187); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dongying','CHN','Shandong',281728); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shashi','CHN','Hubei',281352); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Xintai','CHN','Shandong',281248); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jingdezhen','CHN','Jiangxi',281183); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tongchuan','CHN','Shaanxi',280657); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zhongshan','CHN','Guangdong',278829); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shiyan','CHN','Hubei',273786); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tieli','CHN','Heilongjiang',265683); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jining','CHN','Shandong',265248); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wuhai','CHN','Inner Mongolia',264081); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mianyang','CHN','Sichuan',262947); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Luzhou','CHN','Sichuan',262892); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zunyi','CHN','Guizhou',261862); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shizuishan','CHN','Ningxia',257862); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Neijiang','CHN','Sichuan',256012); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tongliao','CHN','Inner Mongolia',255129); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tieling','CHN','Liaoning',254842); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wafangdian','CHN','Liaoning',251733); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Anqing','CHN','Anhui',250718); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shaoyang','CHN','Hunan',247227); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Laiwu','CHN','Shandong',246833); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chengde','CHN','Hebei',246799); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tianshui','CHN','Gansu',244974); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nanyang','CHN','Henan',243303); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cangzhou','CHN','Hebei',242708); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yibin','CHN','Sichuan',241019); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Huaiyin','CHN','Jiangsu',239675); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dunhua','CHN','Jilin',235100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yanji','CHN','Jilin',230892); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jiangmen','CHN','Guangdong',230587); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tongling','CHN','Anhui',228017); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Suihua','CHN','Heilongjiang',227881); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gongziling','CHN','Jilin',226569); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Xiantao','CHN','Hubei',222884); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chaoyang','CHN','Liaoning',222394); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ganzhou','CHN','Jiangxi',220129); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Huzhou','CHN','Zhejiang',218071); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Baicheng','CHN','Jilin',217987); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shangzi','CHN','Heilongjiang',215373); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yangjiang','CHN','Guangdong',215196); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Qitaihe','CHN','Heilongjiang',214957); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gejiu','CHN','Yunnan',214294); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jiangyin','CHN','Jiangsu',213659); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hebi','CHN','Henan',212976); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jiaxing','CHN','Zhejiang',211526); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wuzhou','CHN','Guangxi',210452); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Meihekou','CHN','Jilin',209038); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Xuchang','CHN','Henan',208815); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Liaocheng','CHN','Shandong',207844); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Haicheng','CHN','Liaoning',205560); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Qianjiang','CHN','Hubei',205504); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Baiyin','CHN','Gansu',204970); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bei´an','CHN','Heilongjiang',204899); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yixing','CHN','Jiangsu',200824); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Laizhou','CHN','Shandong',198664); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Qaramay','CHN','Xinxiang',197602); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Acheng','CHN','Heilongjiang',197595); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dezhou','CHN','Shandong',195485); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nanping','CHN','Fujian',195064); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zhaoqing','CHN','Guangdong',194784); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Beipiao','CHN','Liaoning',194301); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fengcheng','CHN','Jiangxi',193784); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fuyu','CHN','Jilin',192981); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Xinyang','CHN','Henan',192509); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dongtai','CHN','Jiangsu',192247); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yuci','CHN','Shanxi',191356); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Honghu','CHN','Hubei',190772); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ezhou','CHN','Hubei',190123); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Heze','CHN','Shandong',189293); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Daxian','CHN','Sichuan',188101); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Linfen','CHN','Shanxi',187309); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tianmen','CHN','Hubei',186332); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yiyang','CHN','Hunan',185818); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Quanzhou','CHN','Fujian',185154); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rizhao','CHN','Shandong',185048); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Deyang','CHN','Sichuan',182488); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guangyuan','CHN','Sichuan',182241); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Changshu','CHN','Jiangsu',181805); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zhangzhou','CHN','Fujian',181424); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hailar','CHN','Inner Mongolia',180650); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nanchong','CHN','Sichuan',180273); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jiutai','CHN','Jilin',180130); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zhaodong','CHN','Heilongjiang',179976); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shaoxing','CHN','Zhejiang',179818); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fuyang','CHN','Anhui',179572); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Maoming','CHN','Guangdong',178683); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Qujing','CHN','Yunnan',178669); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ghulja','CHN','Xinxiang',177193); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jiaohe','CHN','Jilin',176367); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Puyang','CHN','Henan',175988); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Huadian','CHN','Jilin',175873); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jiangyou','CHN','Sichuan',175753); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Qashqar','CHN','Xinxiang',174570); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Anshun','CHN','Guizhou',174142); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fuling','CHN','Sichuan',173878); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Xinyu','CHN','Jiangxi',173524); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hanzhong','CHN','Shaanxi',169930); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Danyang','CHN','Jiangsu',169603); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chenzhou','CHN','Hunan',169400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Xiaogan','CHN','Hubei',166280); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shangqiu','CHN','Henan',164880); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zhuhai','CHN','Guangdong',164747); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Qingyuan','CHN','Guangdong',164641); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Aqsu','CHN','Xinxiang',164092); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jining','CHN','Inner Mongolia',163552); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Xiaoshan','CHN','Zhejiang',162930); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zaoyang','CHN','Hubei',162198); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Xinghua','CHN','Jiangsu',161910); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hami','CHN','Xinxiang',161315); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Huizhou','CHN','Guangdong',161023); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jinmen','CHN','Hubei',160794); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sanming','CHN','Fujian',160691); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ulanhot','CHN','Inner Mongolia',159538); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Korla','CHN','Xinxiang',159344); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wanxian','CHN','Sichuan',156823); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rui´an','CHN','Zhejiang',156468); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zhoushan','CHN','Zhejiang',156317); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Liangcheng','CHN','Shandong',156307); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jiaozhou','CHN','Shandong',153364); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Taizhou','CHN','Jiangsu',152442); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Suzhou','CHN','Anhui',151862); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yichun','CHN','Jiangxi',151585); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Taonan','CHN','Jilin',150168); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pingdu','CHN','Shandong',150123); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ji´an','CHN','Jiangxi',148583); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Longkou','CHN','Shandong',148362); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Langfang','CHN','Hebei',148105); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zhoukou','CHN','Henan',146288); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Suining','CHN','Sichuan',146086); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yulin','CHN','Guangxi',144467); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jinhua','CHN','Zhejiang',144280); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Liu´an','CHN','Anhui',144248); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shuangcheng','CHN','Heilongjiang',142659); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Suizhou','CHN','Hubei',142302); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ankang','CHN','Shaanxi',142170); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Weinan','CHN','Shaanxi',140169); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Longjing','CHN','Jilin',139417); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Da´an','CHN','Jilin',138963); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lengshuijiang','CHN','Hunan',137994); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Laiyang','CHN','Shandong',137080); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Xianning','CHN','Hubei',136811); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dali','CHN','Yunnan',136554); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Anda','CHN','Heilongjiang',136446); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jincheng','CHN','Shanxi',136396); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Longyan','CHN','Fujian',134481); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Xichang','CHN','Sichuan',134419); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wendeng','CHN','Shandong',133910); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hailun','CHN','Heilongjiang',133565); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Binzhou','CHN','Shandong',133555); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Linhe','CHN','Inner Mongolia',133183); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wuwei','CHN','Gansu',133101); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Duyun','CHN','Guizhou',132971); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mishan','CHN','Heilongjiang',132744); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shangrao','CHN','Jiangxi',132455); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Changji','CHN','Xinxiang',132260); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Meixian','CHN','Guangdong',132156); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yushu','CHN','Jilin',131861); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tiefa','CHN','Liaoning',131807); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Huai´an','CHN','Jiangsu',131149); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Leiyang','CHN','Hunan',130115); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zalantun','CHN','Inner Mongolia',130031); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Weihai','CHN','Shandong',128888); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Loudi','CHN','Hunan',128418); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Qingzhou','CHN','Shandong',128258); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Qidong','CHN','Jiangsu',126872); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Huaihua','CHN','Hunan',126785); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Luohe','CHN','Henan',126438); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chuzhou','CHN','Anhui',125341); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kaiyuan','CHN','Liaoning',124219); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Linqing','CHN','Shandong',123958); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chaohu','CHN','Anhui',123676); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Laohekou','CHN','Hubei',123366); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dujiangyan','CHN','Sichuan',123357); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zhumadian','CHN','Henan',123232); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Linchuan','CHN','Jiangxi',121949); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jiaonan','CHN','Shandong',121397); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sanmenxia','CHN','Henan',120523); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Heyuan','CHN','Guangdong',120101); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Manzhouli','CHN','Inner Mongolia',120023); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lhasa','CHN','Tibet',120000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lianyuan','CHN','Hunan',118858); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kuytun','CHN','Xinxiang',118553); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Puqi','CHN','Hubei',117264); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hongjiang','CHN','Hunan',116188); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Qinzhou','CHN','Guangxi',114586); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Renqiu','CHN','Hebei',114256); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yuyao','CHN','Zhejiang',114065); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guigang','CHN','Guangxi',114025); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kaili','CHN','Guizhou',113958); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yan´an','CHN','Shaanxi',113277); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Beihai','CHN','Guangxi',112673); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Xuangzhou','CHN','Anhui',112673); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Quzhou','CHN','Zhejiang',112373); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yong´an','CHN','Fujian',111762); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zixing','CHN','Hunan',110048); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Liyang','CHN','Jiangsu',109520); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yizheng','CHN','Jiangsu',109268); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yumen','CHN','Gansu',109234); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Liling','CHN','Hunan',108504); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yuncheng','CHN','Shanxi',108359); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shanwei','CHN','Guangdong',107847); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cixi','CHN','Zhejiang',107329); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yuanjiang','CHN','Hunan',107004); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bozhou','CHN','Anhui',106346); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jinchang','CHN','Gansu',105287); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fu´an','CHN','Fujian',105265); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Suqian','CHN','Jiangsu',105021); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shishou','CHN','Hubei',104571); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hengshui','CHN','Hebei',104269); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Danjiangkou','CHN','Hubei',103211); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fujin','CHN','Heilongjiang',103104); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sanya','CHN','Hainan',102820); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guangshui','CHN','Hubei',102770); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Huangshan','CHN','Anhui',102628); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Xingcheng','CHN','Liaoning',102384); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zhucheng','CHN','Shandong',102134); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kunshan','CHN','Jiangsu',102052); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Haining','CHN','Zhejiang',100478); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pingliang','CHN','Gansu',99265); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fuqing','CHN','Fujian',99193); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Xinzhou','CHN','Shanxi',98667); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jieyang','CHN','Guangdong',98531); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zhangjiagang','CHN','Jiangsu',97994); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tong Xian','CHN','Peking',97168); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ya´an','CHN','Sichuan',95900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jinzhou','CHN','Liaoning',95761); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Emeishan','CHN','Sichuan',94000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Enshi','CHN','Hubei',93056); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bose','CHN','Guangxi',93009); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yuzhou','CHN','Henan',92889); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kaiyuan','CHN','Yunnan',91999); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tumen','CHN','Jilin',91471); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Putian','CHN','Fujian',91030); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Linhai','CHN','Zhejiang',90870); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Xilin Hot','CHN','Inner Mongolia',90646); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shaowu','CHN','Fujian',90286); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Junan','CHN','Shandong',90222); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Huaying','CHN','Sichuan',89400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pingyi','CHN','Shandong',89373); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Huangyan','CHN','Zhejiang',89288); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bishkek','KGZ','Bishkek shaary',589400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Osh','KGZ','Osh',222700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bikenibeu','KIR','South Tarawa',5055); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bairiki','KIR','South Tarawa',2226); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santafé de Bogotá','COL','Santafé de Bogotá',6260862); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cali','COL','Valle',2077386); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Medellín','COL','Antioquia',1861265); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Barranquilla','COL','Atlántico',1223260); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cartagena','COL','Bolívar',805757); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cúcuta','COL','Norte de Santander',606932); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bucaramanga','COL','Santander',515555); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ibagué','COL','Tolima',393664); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pereira','COL','Risaralda',381725); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santa Marta','COL','Magdalena',359147); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Manizales','COL','Caldas',337580); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bello','COL','Antioquia',333470); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pasto','COL','Nariño',332396); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Neiva','COL','Huila',300052); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Soledad','COL','Atlántico',295058); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Armenia','COL','Quindío',288977); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Villavicencio','COL','Meta',273140); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Soacha','COL','Cundinamarca',272058); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Valledupar','COL','Cesar',263247); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Montería','COL','Córdoba',248245); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Itagüí','COL','Antioquia',228985); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Palmira','COL','Valle',226509); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Buenaventura','COL','Valle',224336); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Floridablanca','COL','Santander',221913); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sincelejo','COL','Sucre',220704); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Popayán','COL','Cauca',200719); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Barrancabermeja','COL','Santander',178020); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dos Quebradas','COL','Risaralda',159363); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tuluá','COL','Valle',152488); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Envigado','COL','Antioquia',135848); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cartago','COL','Valle',125884); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Girardot','COL','Cundinamarca',110963); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Buga','COL','Valle',110699); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tunja','COL','Boyacá',109740); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Florencia','COL','Caquetá',108574); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Maicao','COL','La Guajira',108053); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sogamoso','COL','Boyacá',107728); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Giron','COL','Santander',90688); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Moroni','COM','Njazidja',36000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Brazzaville','COG','Brazzaville',950000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pointe-Noire','COG','Kouilou',500000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kinshasa','COD','Kinshasa',5064000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lubumbashi','COD','Shaba',851381); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mbuji-Mayi','COD','East Kasai',806475); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kolwezi','COD','Shaba',417810); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kisangani','COD','Haute-Zaïre',417517); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kananga','COD','West Kasai',393030); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Likasi','COD','Shaba',299118); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bukavu','COD','South Kivu',201569); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kikwit','COD','Bandundu',182142); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tshikapa','COD','West Kasai',180860); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Matadi','COD','Bas-Zaïre',172730); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mbandaka','COD','Equateur',169841); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mwene-Ditu','COD','East Kasai',137459); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Boma','COD','Bas-Zaïre',135284); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Uvira','COD','South Kivu',115590); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Butembo','COD','North Kivu',109406); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Goma','COD','North Kivu',109094); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kalemie','COD','Shaba',101309); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bantam','CCK','Home Island',503); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('West Island','CCK','West Island',167); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pyongyang','PRK','Pyongyang-si',2484000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hamhung','PRK','Hamgyong N',709730); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chongjin','PRK','Hamgyong P',582480); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nampo','PRK','Nampo-si',566200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sinuiju','PRK','Pyongan P',326011); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wonsan','PRK','Kangwon',300148); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Phyongsong','PRK','Pyongan N',272934); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sariwon','PRK','Hwanghae P',254146); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Haeju','PRK','Hwanghae N',229172); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kanggye','PRK','Chagang',223410); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kimchaek','PRK','Hamgyong P',179000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hyesan','PRK','Yanggang',178020); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kaesong','PRK','Kaesong-si',171500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Seoul','KOR','Seoul',9981619); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pusan','KOR','Pusan',3804522); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Inchon','KOR','Inchon',2559424); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Taegu','KOR','Taegu',2548568); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Taejon','KOR','Taejon',1425835); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kwangju','KOR','Kwangju',1368341); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ulsan','KOR','Kyongsangnam',1084891); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Songnam','KOR','Kyonggi',869094); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Puchon','KOR','Kyonggi',779412); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Suwon','KOR','Kyonggi',755550); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Anyang','KOR','Kyonggi',591106); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chonju','KOR','Chollabuk',563153); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chongju','KOR','Chungchongbuk',531376); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Koyang','KOR','Kyonggi',518282); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ansan','KOR','Kyonggi',510314); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pohang','KOR','Kyongsangbuk',508899); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chang-won','KOR','Kyongsangnam',481694); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Masan','KOR','Kyongsangnam',441242); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kwangmyong','KOR','Kyonggi',350914); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chonan','KOR','Chungchongnam',330259); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chinju','KOR','Kyongsangnam',329886); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Iksan','KOR','Chollabuk',322685); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pyongtaek','KOR','Kyonggi',312927); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kumi','KOR','Kyongsangbuk',311431); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Uijongbu','KOR','Kyonggi',276111); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kyongju','KOR','Kyongsangbuk',272968); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kunsan','KOR','Chollabuk',266569); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cheju','KOR','Cheju',258511); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kimhae','KOR','Kyongsangnam',256370); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sunchon','KOR','Chollanam',249263); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mokpo','KOR','Chollanam',247452); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yong-in','KOR','Kyonggi',242643); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wonju','KOR','Kang-won',237460); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kunpo','KOR','Kyonggi',235233); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chunchon','KOR','Kang-won',234528); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Namyangju','KOR','Kyonggi',229060); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kangnung','KOR','Kang-won',220403); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chungju','KOR','Chungchongbuk',205206); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Andong','KOR','Kyongsangbuk',188443); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yosu','KOR','Chollanam',183596); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kyongsan','KOR','Kyongsangbuk',173746); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Paju','KOR','Kyonggi',163379); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yangsan','KOR','Kyongsangnam',163351); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ichon','KOR','Kyonggi',155332); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Asan','KOR','Chungchongnam',154663); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Koje','KOR','Kyongsangnam',147562); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kimchon','KOR','Kyongsangbuk',147027); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nonsan','KOR','Chungchongnam',146619); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kuri','KOR','Kyonggi',142173); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chong-up','KOR','Chollabuk',139111); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chechon','KOR','Chungchongbuk',137070); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sosan','KOR','Chungchongnam',134746); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shihung','KOR','Kyonggi',133443); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tong-yong','KOR','Kyongsangnam',131717); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kongju','KOR','Chungchongnam',131229); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yongju','KOR','Kyongsangbuk',131097); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chinhae','KOR','Kyongsangnam',125997); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sangju','KOR','Kyongsangbuk',124116); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Poryong','KOR','Chungchongnam',122604); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kwang-yang','KOR','Chollanam',122052); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Miryang','KOR','Kyongsangnam',121501); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hanam','KOR','Kyonggi',115812); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kimje','KOR','Chollabuk',115427); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yongchon','KOR','Kyongsangbuk',113511); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sachon','KOR','Kyongsangnam',113494); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Uiwang','KOR','Kyonggi',108788); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Naju','KOR','Chollanam',107831); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Namwon','KOR','Chollabuk',103544); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tonghae','KOR','Kang-won',95472); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mun-gyong','KOR','Kyongsangbuk',92239); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Athenai','GRC','Attika',772072); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Thessaloniki','GRC','Central Macedonia',383967); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pireus','GRC','Attika',182671); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Patras','GRC','West Greece',153344); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Peristerion','GRC','Attika',137288); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Herakleion','GRC','Crete',116178); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kallithea','GRC','Attika',114233); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Larisa','GRC','Thessalia',113090); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zagreb','HRV','Grad Zagreb',706770); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Split','HRV','Split-Dalmatia',189388); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rijeka','HRV','Primorje-Gorski Kota',167964); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Osijek','HRV','Osijek-Baranja',104761); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('La Habana','CUB','La Habana',2256000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santiago de Cuba','CUB','Santiago de Cuba',433180); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Camagüey','CUB','Camagüey',298726); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Holguín','CUB','Holguín',249492); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santa Clara','CUB','Villa Clara',207350); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guantánamo','CUB','Guantánamo',205078); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pinar del Río','CUB','Pinar del Río',142100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bayamo','CUB','Granma',141000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cienfuegos','CUB','Cienfuegos',132770); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Victoria de las Tunas','CUB','Las Tunas',132350); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Matanzas','CUB','Matanzas',123273); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Manzanillo','CUB','Granma',109350); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sancti-Spíritus','CUB','Sancti-Spíritus',100751); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ciego de Ávila','CUB','Ciego de Ávila',98505); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Salimiya','KWT','Hawalli',130215); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jalib al-Shuyukh','KWT','Hawalli',102178); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kuwait','KWT','al-Asima',28859); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nicosia','CYP','Nicosia',195000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Limassol','CYP','Limassol',154400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vientiane','LAO','Viangchan',531800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Savannakhet','LAO','Savannakhet',96652); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Riga','LVA','Riika',764328); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Daugavpils','LVA','Daugavpils',114829); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Liepaja','LVA','Liepaja',89439); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Maseru','LSO','Maseru',297000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Beirut','LBN','Beirut',1100000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tripoli','LBN','al-Shamal',240000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Monrovia','LBR','Montserrado',850000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tripoli','LBY','Tripoli',1682000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bengasi','LBY','Bengasi',804000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Misrata','LBY','Misrata',121669); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Zawiya','LBY','al-Zawiya',89338); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Schaan','LIE','Schaan',5346); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vaduz','LIE','Vaduz',5043); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vilnius','LTU','Vilna',577969); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kaunas','LTU','Kaunas',412639); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Klaipeda','LTU','Klaipeda',202451); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Šiauliai','LTU','Šiauliai',146563); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Panevezys','LTU','Panevezys',133695); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Luxembourg [Luxemburg/Lëtzebuerg]','LUX','Luxembourg',80700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('El-Aaiún','ESH','El-Aaiún',169000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Macao','MAC','Macau',437500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Antananarivo','MDG','Antananarivo',675669); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Toamasina','MDG','Toamasina',127441); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Antsirabé','MDG','Antananarivo',120239); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mahajanga','MDG','Mahajanga',100807); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fianarantsoa','MDG','Fianarantsoa',99005); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Skopje','MKD','Skopje',444299); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Blantyre','MWI','Blantyre',478155); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lilongwe','MWI','Lilongwe',435964); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Male','MDV','Maale',71000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kuala Lumpur','MYS','Wilayah Persekutuan',1297526); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ipoh','MYS','Perak',382853); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Johor Baharu','MYS','Johor',328436); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Petaling Jaya','MYS','Selangor',254350); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kelang','MYS','Selangor',243355); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kuala Terengganu','MYS','Terengganu',228119); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pinang','MYS','Pulau Pinang',219603); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kota Bharu','MYS','Kelantan',219582); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kuantan','MYS','Pahang',199484); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Taiping','MYS','Perak',183261); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Seremban','MYS','Negeri Sembilan',182869); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kuching','MYS','Sarawak',148059); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sibu','MYS','Sarawak',126381); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sandakan','MYS','Sabah',125841); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Alor Setar','MYS','Kedah',124412); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Selayang Baru','MYS','Selangor',124228); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sungai Petani','MYS','Kedah',114763); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shah Alam','MYS','Selangor',102019); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bamako','MLI','Bamako',809552); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Birkirkara','MLT','Outer Harbour',21445); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Valletta','MLT','Inner Harbour',7073); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Casablanca','MAR','Casablanca',2940623); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rabat','MAR','Rabat-Salé-Zammour-Z',623457); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Marrakech','MAR','Marrakech-Tensift-Al',621914); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fès','MAR','Fès-Boulemane',541162); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tanger','MAR','Tanger-Tétouan',521735); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Salé','MAR','Rabat-Salé-Zammour-Z',504420); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Meknès','MAR','Meknès-Tafilalet',460000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Oujda','MAR','Oriental',365382); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kénitra','MAR','Gharb-Chrarda-Béni H',292600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tétouan','MAR','Tanger-Tétouan',277516); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Safi','MAR','Doukkala-Abda',262300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Agadir','MAR','Souss Massa-Draâ',155244); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mohammedia','MAR','Casablanca',154706); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Khouribga','MAR','Chaouia-Ouardigha',152090); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Beni-Mellal','MAR','Tadla-Azilal',140212); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Témara','MAR','Rabat-Salé-Zammour-Z',126303); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('El Jadida','MAR','Doukkala-Abda',119083); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nador','MAR','Oriental',112450); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ksar el Kebir','MAR','Tanger-Tétouan',107065); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Settat','MAR','Chaouia-Ouardigha',96200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Taza','MAR','Taza-Al Hoceima-Taou',92700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('El Araich','MAR','Tanger-Tétouan',90400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dalap-Uliga-Darrit','MHL','Majuro',28000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fort-de-France','MTQ','Fort-de-France',94050); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nouakchott','MRT','Nouakchott',667300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nouâdhibou','MRT','Dakhlet Nouâdhibou',97600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Port-Louis','MUS','Port-Louis',138200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Beau Bassin-Rose Hill','MUS','Plaines Wilhelms',100616); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vacoas-Phoenix','MUS','Plaines Wilhelms',98464); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mamoutzou','MYT','Mamoutzou',12000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ciudad de México','MEX','Distrito Federal',8591309); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guadalajara','MEX','Jalisco',1647720); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ecatepec de Morelos','MEX','México',1620303); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Puebla','MEX','Puebla',1346176); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nezahualcóyotl','MEX','México',1224924); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Juárez','MEX','Chihuahua',1217818); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tijuana','MEX','Baja California',1212232); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('León','MEX','Guanajuato',1133576); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Monterrey','MEX','Nuevo León',1108499); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zapopan','MEX','Jalisco',1002239); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Naucalpan de Juárez','MEX','México',857511); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mexicali','MEX','Baja California',764902); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Culiacán','MEX','Sinaloa',744859); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Acapulco de Juárez','MEX','Guerrero',721011); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tlalnepantla de Baz','MEX','México',720755); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mérida','MEX','Yucatán',703324); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chihuahua','MEX','Chihuahua',670208); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Luis Potosí','MEX','San Luis Potosí',669353); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guadalupe','MEX','Nuevo León',668780); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Toluca','MEX','México',665617); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Aguascalientes','MEX','Aguascalientes',643360); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Querétaro','MEX','Querétaro de Arteaga',639839); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Morelia','MEX','Michoacán de Ocampo',619958); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hermosillo','MEX','Sonora',608697); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Saltillo','MEX','Coahuila de Zaragoza',577352); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Torreón','MEX','Coahuila de Zaragoza',529093); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Centro (Villahermosa)','MEX','Tabasco',519873); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Nicolás de los Garza','MEX','Nuevo León',495540); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Durango','MEX','Durango',490524); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chimalhuacán','MEX','México',490245); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tlaquepaque','MEX','Jalisco',475472); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Atizapán de Zaragoza','MEX','México',467262); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Veracruz','MEX','Veracruz',457119); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cuautitlán Izcalli','MEX','México',452976); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Irapuato','MEX','Guanajuato',440039); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tuxtla Gutiérrez','MEX','Chiapas',433544); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tultitlán','MEX','México',432411); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Reynosa','MEX','Tamaulipas',419776); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Benito Juárez','MEX','Quintana Roo',419276); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Matamoros','MEX','Tamaulipas',416428); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Xalapa','MEX','Veracruz',390058); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Celaya','MEX','Guanajuato',382140); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mazatlán','MEX','Sinaloa',380265); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ensenada','MEX','Baja California',369573); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ahome','MEX','Sinaloa',358663); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cajeme','MEX','Sonora',355679); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cuernavaca','MEX','Morelos',337966); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tonalá','MEX','Jalisco',336109); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Valle de Chalco Solidaridad','MEX','México',323113); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nuevo Laredo','MEX','Tamaulipas',310277); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tepic','MEX','Nayarit',305025); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tampico','MEX','Tamaulipas',294789); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ixtapaluca','MEX','México',293160); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Apodaca','MEX','Nuevo León',282941); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guasave','MEX','Sinaloa',277201); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gómez Palacio','MEX','Durango',272806); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tapachula','MEX','Chiapas',271141); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nicolás Romero','MEX','México',269393); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Coatzacoalcos','MEX','Veracruz',267037); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Uruapan','MEX','Michoacán de Ocampo',265211); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Victoria','MEX','Tamaulipas',262686); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Oaxaca de Juárez','MEX','Oaxaca',256848); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Coacalco de Berriozábal','MEX','México',252270); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pachuca de Soto','MEX','Hidalgo',244688); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('General Escobedo','MEX','Nuevo León',232961); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Salamanca','MEX','Guanajuato',226864); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santa Catarina','MEX','Nuevo León',226573); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tehuacán','MEX','Puebla',225943); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chalco','MEX','México',222201); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cárdenas','MEX','Tabasco',216903); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Campeche','MEX','Campeche',216735); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('La Paz','MEX','México',213045); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Othón P. Blanco (Chetumal)','MEX','Quintana Roo',208014); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Texcoco','MEX','México',203681); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('La Paz','MEX','Baja California Sur',196708); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Metepec','MEX','México',194265); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Monclova','MEX','Coahuila de Zaragoza',193657); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Huixquilucan','MEX','México',193156); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chilpancingo de los Bravo','MEX','Guerrero',192509); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Puerto Vallarta','MEX','Jalisco',183741); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fresnillo','MEX','Zacatecas',182744); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ciudad Madero','MEX','Tamaulipas',182012); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Soledad de Graciano Sánchez','MEX','San Luis Potosí',179956); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Juan del Río','MEX','Querétaro',179300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Felipe del Progreso','MEX','México',177330); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Córdoba','MEX','Veracruz',176952); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tecámac','MEX','México',172410); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ocosingo','MEX','Chiapas',171495); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Carmen','MEX','Campeche',171367); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lázaro Cárdenas','MEX','Michoacán de Ocampo',170878); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jiutepec','MEX','Morelos',170428); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Papantla','MEX','Veracruz',170123); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Comalcalco','MEX','Tabasco',164640); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zamora','MEX','Michoacán de Ocampo',161191); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nogales','MEX','Sonora',159103); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Huimanguillo','MEX','Tabasco',158335); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cuautla','MEX','Morelos',153132); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Minatitlán','MEX','Veracruz',152983); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Poza Rica de Hidalgo','MEX','Veracruz',152678); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ciudad Valles','MEX','San Luis Potosí',146411); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Navolato','MEX','Sinaloa',145396); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Luis Río Colorado','MEX','Sonora',145276); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pénjamo','MEX','Guanajuato',143927); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Andrés Tuxtla','MEX','Veracruz',142251); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guanajuato','MEX','Guanajuato',141215); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Navojoa','MEX','Sonora',140495); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zitácuaro','MEX','Michoacán de Ocampo',137970); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Boca del Río','MEX','Veracruz-Llave',135721); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Allende','MEX','Guanajuato',134645); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Silao','MEX','Guanajuato',134037); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Macuspana','MEX','Tabasco',133795); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Juan Bautista Tuxtepec','MEX','Oaxaca',133675); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Cristóbal de las Casas','MEX','Chiapas',132317); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Valle de Santiago','MEX','Guanajuato',130557); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guaymas','MEX','Sonora',130108); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Colima','MEX','Colima',129454); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dolores Hidalgo','MEX','Guanajuato',128675); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lagos de Moreno','MEX','Jalisco',127949); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Piedras Negras','MEX','Coahuila de Zaragoza',127898); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Altamira','MEX','Tamaulipas',127490); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Túxpam','MEX','Veracruz',126475); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Pedro Garza García','MEX','Nuevo León',126147); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cuauhtémoc','MEX','Chihuahua',124279); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Manzanillo','MEX','Colima',124014); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Iguala de la Independencia','MEX','Guerrero',123883); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zacatecas','MEX','Zacatecas',123700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tlajomulco de Zúñiga','MEX','Jalisco',123220); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tulancingo de Bravo','MEX','Hidalgo',121946); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zinacantepec','MEX','México',121715); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Martín Texmelucan','MEX','Puebla',121093); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tepatitlán de Morelos','MEX','Jalisco',118948); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Martínez de la Torre','MEX','Veracruz',118815); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Orizaba','MEX','Veracruz',118488); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Apatzingán','MEX','Michoacán de Ocampo',117849); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Atlixco','MEX','Puebla',117019); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Delicias','MEX','Chihuahua',116132); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ixtlahuaca','MEX','México',115548); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('El Mante','MEX','Tamaulipas',112453); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lerdo','MEX','Durango',112272); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Almoloya de Juárez','MEX','México',110550); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Acámbaro','MEX','Guanajuato',110487); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Acuña','MEX','Coahuila de Zaragoza',110388); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guadalupe','MEX','Zacatecas',108881); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Huejutla de Reyes','MEX','Hidalgo',108017); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hidalgo','MEX','Michoacán de Ocampo',106198); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Los Cabos','MEX','Baja California Sur',105199); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Comitán de Domínguez','MEX','Chiapas',104986); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cunduacán','MEX','Tabasco',104164); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Río Bravo','MEX','Tamaulipas',103901); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Temapache','MEX','Veracruz',102824); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chilapa de Alvarez','MEX','Guerrero',102716); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hidalgo del Parral','MEX','Chihuahua',100881); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Francisco del Rincón','MEX','Guanajuato',100149); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Taxco de Alarcón','MEX','Guerrero',99907); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zumpango','MEX','México',99781); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Pedro Cholula','MEX','Puebla',99734); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lerma','MEX','México',99714); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tecomán','MEX','Colima',99296); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Las Margaritas','MEX','Chiapas',97389); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cosoleacaque','MEX','Veracruz',97199); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Luis de la Paz','MEX','Guanajuato',96763); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('José Azueta','MEX','Guerrero',95448); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santiago Ixcuintla','MEX','Nayarit',95311); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Felipe','MEX','Guanajuato',95305); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tejupilco','MEX','México',94934); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tantoyuca','MEX','Veracruz',94709); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Salvatierra','MEX','Guanajuato',94322); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tultepec','MEX','México',93364); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Temixco','MEX','Morelos',92686); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Matamoros','MEX','Coahuila de Zaragoza',91858); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pánuco','MEX','Veracruz',90551); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('El Fuerte','MEX','Sinaloa',89556); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tierra Blanca','MEX','Veracruz',89143); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Weno','FSM','Chuuk',22000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Palikir','FSM','Pohnpei',8600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chisinau','MDA','Chisinau',719900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tiraspol','MDA','Dnjestria',194300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Balti','MDA','Balti',153400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bender (Tîghina)','MDA','Bender (Tîghina)',125700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Monte-Carlo','MCO','–',13154); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Monaco-Ville','MCO','–',1234); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ulan Bator','MNG','Ulaanbaatar',773700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Plymouth','MSR','Plymouth',2000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Maputo','MOZ','Maputo',1018938); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Matola','MOZ','Maputo',424662); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Beira','MOZ','Sofala',397368); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nampula','MOZ','Nampula',303346); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chimoio','MOZ','Manica',171056); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Naçala-Porto','MOZ','Nampula',158248); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Quelimane','MOZ','Zambézia',150116); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mocuba','MOZ','Zambézia',124700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tete','MOZ','Tete',101984); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Xai-Xai','MOZ','Gaza',99442); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gurue','MOZ','Zambézia',99300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Maxixe','MOZ','Inhambane',93985); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rangoon (Yangon)','MMR','Rangoon [Yangon]',3361700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mandalay','MMR','Mandalay',885300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Moulmein (Mawlamyine)','MMR','Mon',307900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pegu (Bago)','MMR','Pegu [Bago]',190900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bassein (Pathein)','MMR','Irrawaddy [Ayeyarwad',183900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Monywa','MMR','Sagaing',138600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sittwe (Akyab)','MMR','Rakhine',137600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Taunggyi (Taunggye)','MMR','Shan',131500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Meikhtila','MMR','Mandalay',129700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mergui (Myeik)','MMR','Tenasserim [Tanintha',122700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lashio (Lasho)','MMR','Shan',107600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Prome (Pyay)','MMR','Pegu [Bago]',105700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Henzada (Hinthada)','MMR','Irrawaddy [Ayeyarwad',104700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Myingyan','MMR','Mandalay',103600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tavoy (Dawei)','MMR','Tenasserim [Tanintha',96800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pagakku (Pakokku)','MMR','Magwe [Magway]',94800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Windhoek','NAM','Khomas',169000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yangor','NRU','–',4050); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yaren','NRU','–',559); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kathmandu','NPL','Central',591835); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Biratnagar','NPL','Eastern',157764); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pokhara','NPL','Western',146318); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lalitapur','NPL','Central',145847); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Birgunj','NPL','Central',90639); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Managua','NIC','Managua',959000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('León','NIC','León',123865); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chinandega','NIC','Chinandega',97387); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Masaya','NIC','Masaya',88971); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Niamey','NER','Niamey',420000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zinder','NER','Zinder',120892); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Maradi','NER','Maradi',112965); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lagos','NGA','Lagos',1518000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ibadan','NGA','Oyo & Osun',1432000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ogbomosho','NGA','Oyo & Osun',730000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kano','NGA','Kano & Jigawa',674100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Oshogbo','NGA','Oyo & Osun',476800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ilorin','NGA','Kwara & Kogi',475800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Abeokuta','NGA','Ogun',427400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Port Harcourt','NGA','Rivers & Bayelsa',410000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zaria','NGA','Kaduna',379200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ilesha','NGA','Oyo & Osun',378400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Onitsha','NGA','Anambra & Enugu & Eb',371900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Iwo','NGA','Oyo & Osun',362000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ado-Ekiti','NGA','Ondo & Ekiti',359400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Abuja','NGA','Federal Capital Dist',350100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kaduna','NGA','Kaduna',342200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mushin','NGA','Lagos',333200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Maiduguri','NGA','Borno & Yobe',320000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Enugu','NGA','Anambra & Enugu & Eb',316100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ede','NGA','Oyo & Osun',307100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Aba','NGA','Imo & Abia',298900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ife','NGA','Oyo & Osun',296800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ila','NGA','Oyo & Osun',264000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Oyo','NGA','Oyo & Osun',256400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ikerre','NGA','Ondo & Ekiti',244600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Benin City','NGA','Edo & Delta',229400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Iseyin','NGA','Oyo & Osun',217300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Katsina','NGA','Katsina',206500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jos','NGA','Plateau & Nassarawa',206300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sokoto','NGA','Sokoto & Kebbi & Zam',204900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ilobu','NGA','Oyo & Osun',199000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Offa','NGA','Kwara & Kogi',197200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ikorodu','NGA','Lagos',184900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ilawe-Ekiti','NGA','Ondo & Ekiti',184500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Owo','NGA','Ondo & Ekiti',183500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ikirun','NGA','Oyo & Osun',181400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shaki','NGA','Oyo & Osun',174500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Calabar','NGA','Cross River',174400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ondo','NGA','Ondo & Ekiti',173600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Akure','NGA','Ondo & Ekiti',162300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gusau','NGA','Sokoto & Kebbi & Zam',158000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ijebu-Ode','NGA','Ogun',156400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Effon-Alaiye','NGA','Oyo & Osun',153100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kumo','NGA','Bauchi & Gombe',148000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shomolu','NGA','Lagos',147700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Oka-Akoko','NGA','Ondo & Ekiti',142900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ikare','NGA','Ondo & Ekiti',140800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sapele','NGA','Edo & Delta',139200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Deba Habe','NGA','Bauchi & Gombe',138600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Minna','NGA','Niger',136900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Warri','NGA','Edo & Delta',126100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bida','NGA','Niger',125500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ikire','NGA','Oyo & Osun',123300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Makurdi','NGA','Benue',123100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lafia','NGA','Plateau & Nassarawa',122500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Inisa','NGA','Oyo & Osun',119800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shagamu','NGA','Ogun',117200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Awka','NGA','Anambra & Enugu & Eb',111200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gombe','NGA','Bauchi & Gombe',107800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Igboho','NGA','Oyo & Osun',106800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ejigbo','NGA','Oyo & Osun',105900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Agege','NGA','Lagos',105000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ise-Ekiti','NGA','Ondo & Ekiti',103400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ugep','NGA','Cross River',102600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Epe','NGA','Lagos',101000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Alofi','NIU','–',682); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kingston','NFK','–',800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Oslo','NOR','Oslo',508726); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bergen','NOR','Hordaland',230948); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Trondheim','NOR','Sør-Trøndelag',150166); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Stavanger','NOR','Rogaland',108848); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bærum','NOR','Akershus',101340); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Abidjan','CIV','Abidjan',2500000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bouaké','CIV','Bouaké',329850); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yamoussoukro','CIV','Yamoussoukro',130000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Daloa','CIV','Daloa',121842); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Korhogo','CIV','Korhogo',109445); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Sib','OMN','Masqat',155000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Salala','OMN','Zufar',131813); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bawshar','OMN','Masqat',107500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Suhar','OMN','al-Batina',90814); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Masqat','OMN','Masqat',51969); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Karachi','PAK','Sindh',9269265); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lahore','PAK','Punjab',5063499); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Faisalabad','PAK','Punjab',1977246); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rawalpindi','PAK','Punjab',1406214); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Multan','PAK','Punjab',1182441); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hyderabad','PAK','Sindh',1151274); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gujranwala','PAK','Punjab',1124749); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Peshawar','PAK','Nothwest Border Prov',988005); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Quetta','PAK','Baluchistan',560307); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Islamabad','PAK','Islamabad',524500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sargodha','PAK','Punjab',455360); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sialkot','PAK','Punjab',417597); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bahawalpur','PAK','Punjab',403408); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sukkur','PAK','Sindh',329176); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jhang','PAK','Punjab',292214); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sheikhupura','PAK','Punjab',271875); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Larkana','PAK','Sindh',270366); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gujrat','PAK','Punjab',250121); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mardan','PAK','Nothwest Border Prov',244511); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kasur','PAK','Punjab',241649); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rahim Yar Khan','PAK','Punjab',228479); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sahiwal','PAK','Punjab',207388); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Okara','PAK','Punjab',200901); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wah','PAK','Punjab',198400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dera Ghazi Khan','PAK','Punjab',188100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mirpur Khas','PAK','Sind',184500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nawabshah','PAK','Sind',183100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mingora','PAK','Nothwest Border Prov',174500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chiniot','PAK','Punjab',169300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kamoke','PAK','Punjab',151000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mandi Burewala','PAK','Punjab',149900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jhelum','PAK','Punjab',145800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sadiqabad','PAK','Punjab',141500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jacobabad','PAK','Sind',137700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shikarpur','PAK','Sind',133300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Khanewal','PAK','Punjab',133000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hafizabad','PAK','Punjab',130200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kohat','PAK','Nothwest Border Prov',125300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Muzaffargarh','PAK','Punjab',121600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Khanpur','PAK','Punjab',117800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gojra','PAK','Punjab',115000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bahawalnagar','PAK','Punjab',109600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Muridke','PAK','Punjab',108600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pak Pattan','PAK','Punjab',107800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Abottabad','PAK','Nothwest Border Prov',106000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tando Adam','PAK','Sind',103400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jaranwala','PAK','Punjab',103300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Khairpur','PAK','Sind',102200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chishtian Mandi','PAK','Punjab',101700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Daska','PAK','Punjab',101500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dadu','PAK','Sind',98600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mandi Bahauddin','PAK','Punjab',97300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ahmadpur East','PAK','Punjab',96000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kamalia','PAK','Punjab',95300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Khuzdar','PAK','Baluchistan',93100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vihari','PAK','Punjab',92300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dera Ismail Khan','PAK','Nothwest Border Prov',90400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wazirabad','PAK','Punjab',89700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nowshera','PAK','Nothwest Border Prov',89400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Koror','PLW','Koror',12000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ciudad de Panamá','PAN','Panamá',471373); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Miguelito','PAN','San Miguelito',315382); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Port Moresby','PNG','National Capital Dis',247000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Asunción','PRY','Asunción',557776); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ciudad del Este','PRY','Alto Paraná',133881); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Lorenzo','PRY','Central',133395); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lambaré','PRY','Central',99681); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fernando de la Mora','PRY','Central',95287); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lima','PER','Lima',6464693); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Arequipa','PER','Arequipa',762000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Trujillo','PER','La Libertad',652000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chiclayo','PER','Lambayeque',517000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Callao','PER','Callao',424294); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Iquitos','PER','Loreto',367000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chimbote','PER','Ancash',336000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Huancayo','PER','Junín',327000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Piura','PER','Piura',325000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cusco','PER','Cusco',291000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pucallpa','PER','Ucayali',220866); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tacna','PER','Tacna',215683); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ica','PER','Ica',194820); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sullana','PER','Piura',147361); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Juliaca','PER','Puno',142576); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Huánuco','PER','Huanuco',129688); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ayacucho','PER','Ayacucho',118960); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chincha Alta','PER','Ica',110016); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cajamarca','PER','Cajamarca',108009); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Puno','PER','Puno',101578); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ventanilla','PER','Callao',101056); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Castilla','PER','Piura',90642); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Adamstown','PCN','–',42); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Garapan','MNP','Saipan',9200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lisboa','PRT','Lisboa',563210); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Porto','PRT','Porto',273060); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Amadora','PRT','Lisboa',122106); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Coímbra','PRT','Coímbra',96100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Braga','PRT','Braga',90535); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Juan','PRI','San Juan',434374); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bayamón','PRI','Bayamón',224044); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ponce','PRI','Ponce',186475); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Carolina','PRI','Carolina',186076); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Caguas','PRI','Caguas',140502); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Arecibo','PRI','Arecibo',100131); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guaynabo','PRI','Guaynabo',100053); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mayagüez','PRI','Mayagüez',98434); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Toa Baja','PRI','Toa Baja',94085); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Warszawa','POL','Mazowieckie',1615369); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lódz','POL','Lodzkie',800110); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kraków','POL','Malopolskie',738150); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wroclaw','POL','Dolnoslaskie',636765); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Poznan','POL','Wielkopolskie',576899); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gdansk','POL','Pomorskie',458988); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Szczecin','POL','Zachodnio-Pomorskie',416988); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bydgoszcz','POL','Kujawsko-Pomorskie',386855); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lublin','POL','Lubelskie',356251); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Katowice','POL','Slaskie',345934); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bialystok','POL','Podlaskie',283937); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Czestochowa','POL','Slaskie',257812); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gdynia','POL','Pomorskie',253521); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sosnowiec','POL','Slaskie',244102); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Radom','POL','Mazowieckie',232262); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kielce','POL','Swietokrzyskie',212383); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gliwice','POL','Slaskie',212164); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Torun','POL','Kujawsko-Pomorskie',206158); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bytom','POL','Slaskie',205560); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zabrze','POL','Slaskie',200177); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bielsko-Biala','POL','Slaskie',180307); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Olsztyn','POL','Warminsko-Mazurskie',170904); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rzeszów','POL','Podkarpackie',162049); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ruda Slaska','POL','Slaskie',159665); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rybnik','POL','Slaskie',144582); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Walbrzych','POL','Dolnoslaskie',136923); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tychy','POL','Slaskie',133178); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dabrowa Górnicza','POL','Slaskie',131037); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Plock','POL','Mazowieckie',131011); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Elblag','POL','Warminsko-Mazurskie',129782); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Opole','POL','Opolskie',129553); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gorzów Wielkopolski','POL','Lubuskie',126019); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wloclawek','POL','Kujawsko-Pomorskie',123373); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chorzów','POL','Slaskie',121708); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tarnów','POL','Malopolskie',121494); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zielona Góra','POL','Lubuskie',118182); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Koszalin','POL','Zachodnio-Pomorskie',112375); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Legnica','POL','Dolnoslaskie',109335); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kalisz','POL','Wielkopolskie',106641); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Grudziadz','POL','Kujawsko-Pomorskie',102434); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Slupsk','POL','Pomorskie',102370); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jastrzebie-Zdrój','POL','Slaskie',102294); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jaworzno','POL','Slaskie',97929); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jelenia Góra','POL','Dolnoslaskie',93901); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Malabo','GNQ','Bioko',40000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Doha','QAT','Doha',355000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Paris','FRA','Île-de-France',2125246); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Marseille','FRA','Provence-Alpes-Côte',798430); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lyon','FRA','Rhône-Alpes',445452); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Toulouse','FRA','Midi-Pyrénées',390350); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nice','FRA','Provence-Alpes-Côte',342738); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nantes','FRA','Pays de la Loire',270251); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Strasbourg','FRA','Alsace',264115); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Montpellier','FRA','Languedoc-Roussillon',225392); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bordeaux','FRA','Aquitaine',215363); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rennes','FRA','Haute-Normandie',206229); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Le Havre','FRA','Champagne-Ardenne',190905); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Reims','FRA','Nord-Pas-de-Calais',187206); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lille','FRA','Rhône-Alpes',184657); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('St-Étienne','FRA','Bretagne',180210); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Toulon','FRA','Provence-Alpes-Côte',160639); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Grenoble','FRA','Rhône-Alpes',153317); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Angers','FRA','Pays de la Loire',151279); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dijon','FRA','Bourgogne',149867); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Brest','FRA','Bretagne',149634); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Le Mans','FRA','Pays de la Loire',146105); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Clermont-Ferrand','FRA','Auvergne',137140); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Amiens','FRA','Picardie',135501); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Aix-en-Provence','FRA','Provence-Alpes-Côte',134222); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Limoges','FRA','Limousin',133968); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nîmes','FRA','Languedoc-Roussillon',133424); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tours','FRA','Centre',132820); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Villeurbanne','FRA','Rhône-Alpes',124215); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Metz','FRA','Lorraine',123776); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Besançon','FRA','Franche-Comté',117733); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Caen','FRA','Basse-Normandie',113987); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Orléans','FRA','Centre',113126); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mulhouse','FRA','Alsace',110359); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rouen','FRA','Haute-Normandie',106592); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Boulogne-Billancourt','FRA','Île-de-France',106367); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Perpignan','FRA','Languedoc-Roussillon',105115); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nancy','FRA','Lorraine',103605); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Roubaix','FRA','Nord-Pas-de-Calais',96984); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Argenteuil','FRA','Île-de-France',93961); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tourcoing','FRA','Nord-Pas-de-Calais',93540); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Montreuil','FRA','Île-de-France',90674); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cayenne','GUF','Cayenne',50699); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Faaa','PYF','Tahiti',25888); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Papeete','PYF','Tahiti',25553); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Saint-Denis','REU','Saint-Denis',131480); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bucuresti','ROM','Bukarest',2016131); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Iasi','ROM','Iasi',348070); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Constanta','ROM','Constanta',342264); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cluj-Napoca','ROM','Cluj',332498); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Galati','ROM','Galati',330276); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Timisoara','ROM','Timis',324304); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Brasov','ROM','Brasov',314225); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Craiova','ROM','Dolj',313530); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ploiesti','ROM','Prahova',251348); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Braila','ROM','Braila',233756); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Oradea','ROM','Bihor',222239); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bacau','ROM','Bacau',209235); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pitesti','ROM','Arges',187170); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Arad','ROM','Arad',184408); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sibiu','ROM','Sibiu',169611); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Târgu Mures','ROM','Mures',165153); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Baia Mare','ROM','Maramures',149665); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Buzau','ROM','Buzau',148372); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Satu Mare','ROM','Satu Mare',130059); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Botosani','ROM','Botosani',128730); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Piatra Neamt','ROM','Neamt',125070); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Râmnicu Vâlcea','ROM','Vâlcea',119741); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Suceava','ROM','Suceava',118549); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Drobeta-Turnu Severin','ROM','Mehedinti',117865); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Târgoviste','ROM','Dâmbovita',98980); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Focsani','ROM','Vrancea',98979); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Târgu Jiu','ROM','Gorj',98524); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tulcea','ROM','Tulcea',96278); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Resita','ROM','Caras-Severin',93976); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kigali','RWA','Kigali',286000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Stockholm','SWE','Lisboa',750348); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gothenburg [Göteborg]','SWE','West Götanmaan län',466990); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Malmö','SWE','Skåne län',259579); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Uppsala','SWE','Uppsala län',189569); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Linköping','SWE','East Götanmaan län',133168); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Västerås','SWE','Västmanlands län',126328); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Örebro','SWE','Örebros län',124207); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Norrköping','SWE','East Götanmaan län',122199); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Helsingborg','SWE','Skåne län',117737); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jönköping','SWE','Jönköpings län',117095); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Umeå','SWE','Västerbottens län',104512); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lund','SWE','Skåne län',98948); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Borås','SWE','West Götanmaan län',96883); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sundsvall','SWE','Västernorrlands län',93126); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gävle','SWE','Gävleborgs län',90742); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jamestown','SHN','Saint Helena',1500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Basseterre','KNA','St George Basseterre',11600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Castries','LCA','Castries',2301); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kingstown','VCT','St George',17100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Saint-Pierre','SPM','Saint-Pierre',5808); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Berlin','DEU','Berliini',3386667); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hamburg','DEU','Hamburg',1704735); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Munich [München]','DEU','Baijeri',1194560); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Köln','DEU','Nordrhein-Westfalen',962507); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Frankfurt am Main','DEU','Hessen',643821); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Essen','DEU','Nordrhein-Westfalen',599515); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dortmund','DEU','Nordrhein-Westfalen',590213); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Stuttgart','DEU','Baden-Württemberg',582443); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Düsseldorf','DEU','Nordrhein-Westfalen',568855); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bremen','DEU','Bremen',540330); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Duisburg','DEU','Nordrhein-Westfalen',519793); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hannover','DEU','Niedersachsen',514718); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Leipzig','DEU','Saksi',489532); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nürnberg','DEU','Baijeri',486628); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dresden','DEU','Saksi',476668); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bochum','DEU','Nordrhein-Westfalen',392830); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wuppertal','DEU','Nordrhein-Westfalen',368993); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bielefeld','DEU','Nordrhein-Westfalen',321125); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mannheim','DEU','Baden-Württemberg',307730); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bonn','DEU','Nordrhein-Westfalen',301048); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gelsenkirchen','DEU','Nordrhein-Westfalen',281979); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Karlsruhe','DEU','Baden-Württemberg',277204); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wiesbaden','DEU','Hessen',268716); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Münster','DEU','Nordrhein-Westfalen',264670); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mönchengladbach','DEU','Nordrhein-Westfalen',263697); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chemnitz','DEU','Saksi',263222); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Augsburg','DEU','Baijeri',254867); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Halle/Saale','DEU','Anhalt Sachsen',254360); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Braunschweig','DEU','Niedersachsen',246322); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Aachen','DEU','Nordrhein-Westfalen',243825); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Krefeld','DEU','Nordrhein-Westfalen',241769); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Magdeburg','DEU','Anhalt Sachsen',235073); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kiel','DEU','Schleswig-Holstein',233795); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Oberhausen','DEU','Nordrhein-Westfalen',222349); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lübeck','DEU','Schleswig-Holstein',213326); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hagen','DEU','Nordrhein-Westfalen',205201); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rostock','DEU','Mecklenburg-Vorpomme',203279); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Freiburg im Breisgau','DEU','Baden-Württemberg',202455); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Erfurt','DEU','Thüringen',201267); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kassel','DEU','Hessen',196211); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Saarbrücken','DEU','Saarland',183836); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mainz','DEU','Rheinland-Pfalz',183134); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hamm','DEU','Nordrhein-Westfalen',181804); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Herne','DEU','Nordrhein-Westfalen',175661); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mülheim an der Ruhr','DEU','Nordrhein-Westfalen',173895); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Solingen','DEU','Nordrhein-Westfalen',165583); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Osnabrück','DEU','Niedersachsen',164539); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ludwigshafen am Rhein','DEU','Rheinland-Pfalz',163771); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Leverkusen','DEU','Nordrhein-Westfalen',160841); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Oldenburg','DEU','Niedersachsen',154125); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Neuss','DEU','Nordrhein-Westfalen',149702); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Heidelberg','DEU','Baden-Württemberg',139672); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Darmstadt','DEU','Hessen',137776); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Paderborn','DEU','Nordrhein-Westfalen',137647); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Potsdam','DEU','Brandenburg',128983); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Würzburg','DEU','Baijeri',127350); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Regensburg','DEU','Baijeri',125236); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Recklinghausen','DEU','Nordrhein-Westfalen',125022); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Göttingen','DEU','Niedersachsen',124775); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bremerhaven','DEU','Bremen',122735); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wolfsburg','DEU','Niedersachsen',121954); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bottrop','DEU','Nordrhein-Westfalen',121097); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Remscheid','DEU','Nordrhein-Westfalen',120125); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Heilbronn','DEU','Baden-Württemberg',119526); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pforzheim','DEU','Baden-Württemberg',117227); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Offenbach am Main','DEU','Hessen',116627); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ulm','DEU','Baden-Württemberg',116103); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ingolstadt','DEU','Baijeri',114826); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gera','DEU','Thüringen',114718); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Salzgitter','DEU','Niedersachsen',112934); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cottbus','DEU','Brandenburg',110894); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Reutlingen','DEU','Baden-Württemberg',110343); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fürth','DEU','Baijeri',109771); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Siegen','DEU','Nordrhein-Westfalen',109225); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Koblenz','DEU','Rheinland-Pfalz',108003); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Moers','DEU','Nordrhein-Westfalen',106837); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bergisch Gladbach','DEU','Nordrhein-Westfalen',106150); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zwickau','DEU','Saksi',104146); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hildesheim','DEU','Niedersachsen',104013); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Witten','DEU','Nordrhein-Westfalen',103384); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Schwerin','DEU','Mecklenburg-Vorpomme',102878); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Erlangen','DEU','Baijeri',100750); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kaiserslautern','DEU','Rheinland-Pfalz',100025); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Trier','DEU','Rheinland-Pfalz',99891); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jena','DEU','Thüringen',99779); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Iserlohn','DEU','Nordrhein-Westfalen',99474); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gütersloh','DEU','Nordrhein-Westfalen',95028); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Marl','DEU','Nordrhein-Westfalen',93735); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lünen','DEU','Nordrhein-Westfalen',92044); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Düren','DEU','Nordrhein-Westfalen',91092); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ratingen','DEU','Nordrhein-Westfalen',90951); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Velbert','DEU','Nordrhein-Westfalen',89881); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Esslingen am Neckar','DEU','Baden-Württemberg',89667); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Honiara','SLB','Honiara',50100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lusaka','ZMB','Lusaka',1317000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ndola','ZMB','Copperbelt',329200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kitwe','ZMB','Copperbelt',288600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kabwe','ZMB','Central',154300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chingola','ZMB','Copperbelt',142400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mufulira','ZMB','Copperbelt',123900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Luanshya','ZMB','Copperbelt',118100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Apia','WSM','Upolu',35900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Serravalle','SMR','Serravalle/Dogano',4802); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Marino','SMR','San Marino',2294); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('São Tomé','STP','Aqua Grande',49541); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Riyadh','SAU','Riyadh',3324000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jedda','SAU','Mekka',2046300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mekka','SAU','Mekka',965700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Medina','SAU','Medina',608300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Dammam','SAU','al-Sharqiya',482300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Taif','SAU','Mekka',416100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tabuk','SAU','Tabuk',292600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Burayda','SAU','al-Qasim',248600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Hufuf','SAU','al-Sharqiya',225800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Mubarraz','SAU','al-Sharqiya',219100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Khamis Mushayt','SAU','Asir',217900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hail','SAU','Hail',176800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Kharj','SAU','Riad',152100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Khubar','SAU','al-Sharqiya',141700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jubayl','SAU','al-Sharqiya',140800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hafar al-Batin','SAU','al-Sharqiya',137800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Tuqba','SAU','al-Sharqiya',125700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yanbu','SAU','Medina',119800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Abha','SAU','Asir',112300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ara´ar','SAU','al-Khudud al-Samaliy',108100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Qatif','SAU','al-Sharqiya',98900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Hawiya','SAU','Mekka',93900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Unayza','SAU','Qasim',91100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Najran','SAU','Najran',91000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pikine','SEN','Cap-Vert',855287); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dakar','SEN','Cap-Vert',785071); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Thiès','SEN','Thiès',248000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kaolack','SEN','Kaolack',199000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ziguinchor','SEN','Ziguinchor',192000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rufisque','SEN','Cap-Vert',150000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Saint-Louis','SEN','Saint-Louis',132400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mbour','SEN','Thiès',109300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Diourbel','SEN','Diourbel',99400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Victoria','SYC','Mahé',41000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Freetown','SLE','Western',850000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Singapore','SGP','–',4017733); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bratislava','SVK','Bratislava',448292); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Košice','SVK','Východné Slovensko',241874); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Prešov','SVK','Východné Slovensko',93977); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ljubljana','SVN','Osrednjeslovenska',270986); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Maribor','SVN','Podravska',115532); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mogadishu','SOM','Banaadir',997000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hargeysa','SOM','Woqooyi Galbeed',90000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kismaayo','SOM','Jubbada Hoose',90000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Colombo','LKA','Western',645000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dehiwala','LKA','Western',203000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Moratuwa','LKA','Western',190000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jaffna','LKA','Northern',149000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kandy','LKA','Central',140000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sri Jayawardenepura Kotte','LKA','Western',118000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Negombo','LKA','Western',100000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Omdurman','SDN','Khartum',1271403); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Khartum','SDN','Khartum',947483); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sharq al-Nil','SDN','Khartum',700887); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Port Sudan','SDN','al-Bahr al-Ahmar',308195); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kassala','SDN','Kassala',234622); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Obeid','SDN','Kurdufan al-Shamaliy',229425); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nyala','SDN','Darfur al-Janubiya',227183); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wad Madani','SDN','al-Jazira',211362); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Qadarif','SDN','al-Qadarif',191164); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kusti','SDN','al-Bahr al-Abyad',173599); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Fashir','SDN','Darfur al-Shamaliya',141884); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Juba','SDN','Bahr al-Jabal',114980); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Helsinki [Helsingfors]','FIN','Newmaa',555474); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Espoo','FIN','Newmaa',213271); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tampere','FIN','Pirkanmaa',195468); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vantaa','FIN','Newmaa',178471); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Turku [Åbo]','FIN','Varsinais-Suomi',172561); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Oulu','FIN','Pohjois-Pohjanmaa',120753); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lahti','FIN','Päijät-Häme',96921); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Paramaribo','SUR','Paramaribo',112000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mbabane','SWZ','Hhohho',61000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zürich','CHE','Zürich',336800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Geneve','CHE','Geneve',173500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Basel','CHE','Basel-Stadt',166700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bern','CHE','Bern',122700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lausanne','CHE','Vaud',114500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Damascus','SYR','Damascus',1347000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Aleppo','SYR','Aleppo',1261983); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hims','SYR','Hims',507404); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hama','SYR','Hama',343361); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Latakia','SYR','Latakia',264563); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Qamishliya','SYR','al-Hasaka',144286); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dayr al-Zawr','SYR','Dayr al-Zawr',140459); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jaramana','SYR','Damaskos',138469); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Duma','SYR','Damaskos',131158); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('al-Raqqa','SYR','al-Raqqa',108020); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Idlib','SYR','Idlib',91081); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dushanbe','TJK','Karotegin',524000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Khujand','TJK','Khujand',161500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Taipei','TWN','Taipei',2641312); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kaohsiung','TWN','Kaohsiung',1475505); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Taichung','TWN','Taichung',940589); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tainan','TWN','Tainan',728060); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Panchiao','TWN','Taipei',523850); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chungho','TWN','Taipei',392176); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Keelung (Chilung)','TWN','Keelung',385201); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sanchung','TWN','Taipei',380084); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hsinchuang','TWN','Taipei',365048); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hsinchu','TWN','Hsinchu',361958); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chungli','TWN','Taoyuan',318649); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fengshan','TWN','Kaohsiung',318562); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Taoyuan','TWN','Taoyuan',316438); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chiayi','TWN','Chiayi',265109); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hsintien','TWN','Taipei',263603); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Changhwa','TWN','Changhwa',227715); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yungho','TWN','Taipei',227700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tucheng','TWN','Taipei',224897); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pingtung','TWN','Pingtung',214727); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yungkang','TWN','Tainan',193005); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pingchen','TWN','Taoyuan',188344); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tali','TWN','Taichung',171940); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Taiping','TWN','',165524); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pate','TWN','Taoyuan',161700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fengyuan','TWN','Taichung',161032); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Luchou','TWN','Taipei',160516); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hsichuh','TWN','Taipei',154976); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shulin','TWN','Taipei',151260); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yuanlin','TWN','Changhwa',126402); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yangmei','TWN','Taoyuan',126323); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Taliao','TWN','',115897); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kueishan','TWN','',112195); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tanshui','TWN','Taipei',111882); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Taitung','TWN','Taitung',111039); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hualien','TWN','Hualien',108407); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nantou','TWN','Nantou',104723); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lungtan','TWN','Taipei',103088); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Touliu','TWN','Yünlin',98900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tsaotun','TWN','Nantou',96800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kangshan','TWN','Kaohsiung',92200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ilan','TWN','Ilan',92000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Miaoli','TWN','Miaoli',90000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dar es Salaam','TZA','Dar es Salaam',1747000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dodoma','TZA','Dodoma',189000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mwanza','TZA','Mwanza',172300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zanzibar','TZA','Zanzibar West',157634); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tanga','TZA','Tanga',137400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mbeya','TZA','Mbeya',130800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Morogoro','TZA','Morogoro',117800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Arusha','TZA','Arusha',102500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Moshi','TZA','Kilimanjaro',96800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tabora','TZA','Tabora',92800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('København','DNK','København',495699); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Århus','DNK','Århus',284846); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Odense','DNK','Fyn',183912); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Aalborg','DNK','Nordjylland',161161); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Frederiksberg','DNK','Frederiksberg',90327); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bangkok','THA','Bangkok',6320174); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nonthaburi','THA','Nonthaburi',292100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nakhon Ratchasima','THA','Nakhon Ratchasima',181400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chiang Mai','THA','Chiang Mai',171100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Udon Thani','THA','Udon Thani',158100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hat Yai','THA','Songkhla',148632); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Khon Kaen','THA','Khon Kaen',126500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pak Kret','THA','Nonthaburi',126055); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nakhon Sawan','THA','Nakhon Sawan',123800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ubon Ratchathani','THA','Ubon Ratchathani',116300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Songkhla','THA','Songkhla',94900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nakhon Pathom','THA','Nakhon Pathom',94100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lomé','TGO','Maritime',375000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fakaofo','TKL','Fakaofo',300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nuku´alofa','TON','Tongatapu',22400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chaguanas','TTO','Caroni',56601); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Port-of-Spain','TTO','Port-of-Spain',43396); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('N´Djaména','TCD','Chari-Baguirmi',530965); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Moundou','TCD','Logone Occidental',99500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Praha','CZE','Hlavní mesto Praha',1181126); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Brno','CZE','Jizní Morava',381862); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ostrava','CZE','Severní Morava',320041); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Plzen','CZE','Zapadní Cechy',166759); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Olomouc','CZE','Severní Morava',102702); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Liberec','CZE','Severní Cechy',99155); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ceské Budejovice','CZE','Jizní Cechy',98186); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hradec Králové','CZE','Východní Cechy',98080); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ústí nad Labem','CZE','Severní Cechy',95491); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pardubice','CZE','Východní Cechy',91309); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tunis','TUN','Tunis',690600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sfax','TUN','Sfax',257800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ariana','TUN','Ariana',197000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ettadhamen','TUN','Ariana',178600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sousse','TUN','Sousse',145900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kairouan','TUN','Kairouan',113100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Biserta','TUN','Biserta',108900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gabès','TUN','Gabès',106600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Istanbul','TUR','Istanbul',8787958); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ankara','TUR','Ankara',3038159); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Izmir','TUR','Izmir',2130359); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Adana','TUR','Adana',1131198); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bursa','TUR','Bursa',1095842); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gaziantep','TUR','Gaziantep',789056); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Konya','TUR','Konya',628364); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mersin (Içel)','TUR','Içel',587212); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Antalya','TUR','Antalya',564914); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Diyarbakir','TUR','Diyarbakir',479884); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kayseri','TUR','Kayseri',475657); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Eskisehir','TUR','Eskisehir',470781); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sanliurfa','TUR','Sanliurfa',405905); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Samsun','TUR','Samsun',339871); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Malatya','TUR','Malatya',330312); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gebze','TUR','Kocaeli',264170); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Denizli','TUR','Denizli',253848); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sivas','TUR','Sivas',246642); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Erzurum','TUR','Erzurum',246535); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tarsus','TUR','Adana',246206); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kahramanmaras','TUR','Kahramanmaras',245772); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Elâzig','TUR','Elâzig',228815); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Van','TUR','Van',219319); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sultanbeyli','TUR','Istanbul',211068); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Izmit (Kocaeli)','TUR','Kocaeli',210068); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Manisa','TUR','Manisa',207148); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Batman','TUR','Batman',203793); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Balikesir','TUR','Balikesir',196382); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sakarya (Adapazari)','TUR','Sakarya',190641); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Iskenderun','TUR','Hatay',153022); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Osmaniye','TUR','Osmaniye',146003); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Çorum','TUR','Çorum',145495); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kütahya','TUR','Kütahya',144761); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hatay (Antakya)','TUR','Hatay',143982); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kirikkale','TUR','Kirikkale',142044); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Adiyaman','TUR','Adiyaman',141529); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Trabzon','TUR','Trabzon',138234); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ordu','TUR','Ordu',133642); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Aydin','TUR','Aydin',128651); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Usak','TUR','Usak',128162); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Edirne','TUR','Edirne',123383); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Çorlu','TUR','Tekirdag',123300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Isparta','TUR','Isparta',121911); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Karabük','TUR','Karabük',118285); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kilis','TUR','Kilis',118245); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Alanya','TUR','Antalya',117300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kiziltepe','TUR','Mardin',112000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zonguldak','TUR','Zonguldak',111542); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Siirt','TUR','Siirt',107100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Viransehir','TUR','Sanliurfa',106400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tekirdag','TUR','Tekirdag',106077); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Karaman','TUR','Karaman',104200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Afyon','TUR','Afyon',103984); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Aksaray','TUR','Aksaray',102681); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ceyhan','TUR','Adana',102412); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Erzincan','TUR','Erzincan',102304); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bismil','TUR','Diyarbakir',101400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nazilli','TUR','Aydin',99900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tokat','TUR','Tokat',99500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kars','TUR','Kars',93000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Inegöl','TUR','Bursa',90500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bandirma','TUR','Balikesir',90200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ashgabat','TKM','Ahal',540600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chärjew','TKM','Lebap',189200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dashhowuz','TKM','Dashhowuz',141800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mary','TKM','Mary',101000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cockburn Town','TCA','Grand Turk',4800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Funafuti','TUV','Funafuti',4600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kampala','UGA','Central',890800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kyiv','UKR','Kiova',2624000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Harkova [Harkiv]','UKR','Harkova',1500000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dnipropetrovsk','UKR','Dnipropetrovsk',1103000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Donetsk','UKR','Donetsk',1050000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Odesa','UKR','Odesa',1011000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zaporizzja','UKR','Zaporizzja',848000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lviv','UKR','Lviv',788000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kryvyi Rig','UKR','Dnipropetrovsk',703000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mykolajiv','UKR','Mykolajiv',508000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mariupol','UKR','Donetsk',490000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lugansk','UKR','Lugansk',469000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vinnytsja','UKR','Vinnytsja',391000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Makijivka','UKR','Donetsk',384000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Herson','UKR','Herson',353000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sevastopol','UKR','Krim',348000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Simferopol','UKR','Krim',339000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pultava [Poltava]','UKR','Pultava',313000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tšernigiv','UKR','Tšernigiv',313000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tšerkasy','UKR','Tšerkasy',309000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gorlivka','UKR','Donetsk',299000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zytomyr','UKR','Zytomyr',297000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sumy','UKR','Sumy',294000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dniprodzerzynsk','UKR','Dnipropetrovsk',270000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kirovograd','UKR','Kirovograd',265000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hmelnytskyi','UKR','Hmelnytskyi',262000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tšernivtsi','UKR','Tšernivtsi',259000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rivne','UKR','Rivne',245000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Krementšuk','UKR','Pultava',239000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ivano-Frankivsk','UKR','Ivano-Frankivsk',237000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ternopil','UKR','Ternopil',236000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lutsk','UKR','Volynia',217000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bila Tserkva','UKR','Kiova',215000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kramatorsk','UKR','Donetsk',186000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Melitopol','UKR','Zaporizzja',169000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kertš','UKR','Krim',162000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nikopol','UKR','Dnipropetrovsk',149000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Berdjansk','UKR','Zaporizzja',130000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pavlograd','UKR','Dnipropetrovsk',127000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sjeverodonetsk','UKR','Lugansk',127000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Slovjansk','UKR','Donetsk',127000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Uzgorod','UKR','Taka-Karpatia',127000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Altševsk','UKR','Lugansk',119000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lysytšansk','UKR','Lugansk',116000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jevpatorija','UKR','Krim',112000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kamjanets-Podilskyi','UKR','Hmelnytskyi',109000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jenakijeve','UKR','Donetsk',105000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Krasnyi Lutš','UKR','Lugansk',101000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Stahanov','UKR','Lugansk',101000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Oleksandrija','UKR','Kirovograd',99000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Konotop','UKR','Sumy',96000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kostjantynivka','UKR','Donetsk',95000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Berdytšiv','UKR','Zytomyr',90000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Izmajil','UKR','Odesa',90000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Šostka','UKR','Sumy',90000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Uman','UKR','Tšerkasy',90000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Brovary','UKR','Kiova',89000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mukatševe','UKR','Taka-Karpatia',89000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Budapest','HUN','Budapest',1811552); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Debrecen','HUN','Hajdú-Bihar',203648); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Miskolc','HUN','Borsod-Abaúj-Zemplén',172357); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Szeged','HUN','Csongrád',158158); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pécs','HUN','Baranya',157332); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Györ','HUN','Györ-Moson-Sopron',127119); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nyiregyháza','HUN','Szabolcs-Szatmár-Ber',112419); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kecskemét','HUN','Bács-Kiskun',105606); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Székesfehérvár','HUN','Fejér',105119); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Montevideo','URY','Montevideo',1236000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nouméa','NCL','–',76293); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Auckland','NZL','Auckland',381800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Christchurch','NZL','Canterbury',324200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Manukau','NZL','Auckland',281800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('North Shore','NZL','Auckland',187700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Waitakere','NZL','Auckland',170600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wellington','NZL','Wellington',166700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dunedin','NZL','Dunedin',119600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hamilton','NZL','Hamilton',117100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lower Hutt','NZL','Wellington',98100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Toskent','UZB','Toskent Shahri',2117500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Namangan','UZB','Namangan',370500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Samarkand','UZB','Samarkand',361800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Andijon','UZB','Andijon',318600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Buhoro','UZB','Buhoro',237100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Karsi','UZB','Qashqadaryo',194100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nukus','UZB','Karakalpakistan',194100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kükon','UZB','Fargona',190100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fargona','UZB','Fargona',180500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Circik','UZB','Toskent',146400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Margilon','UZB','Fargona',140800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ürgenc','UZB','Khorazm',138900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Angren','UZB','Toskent',128000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cizah','UZB','Cizah',124800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Navoi','UZB','Navoi',116300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Olmalik','UZB','Toskent',114900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Termiz','UZB','Surkhondaryo',109500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Minsk','BLR','Horad Minsk',1674000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gomel','BLR','Gomel',475000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mogiljov','BLR','Mogiljov',356000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vitebsk','BLR','Vitebsk',340000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Grodno','BLR','Grodno',302000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Brest','BLR','Brest',286000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bobruisk','BLR','Mogiljov',221000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Baranovitši','BLR','Brest',167000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Borisov','BLR','Minsk',151000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pinsk','BLR','Brest',130000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Orša','BLR','Vitebsk',124000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mozyr','BLR','Gomel',110000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Novopolotsk','BLR','Vitebsk',106000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lida','BLR','Grodno',101000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Soligorsk','BLR','Minsk',101000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Molodetšno','BLR','Minsk',97000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mata-Utu','WLF','Wallis',1137); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Port-Vila','VUT','Shefa',33700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Città del Vaticano','VAT','–',455); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Caracas','VEN','Distrito Federal',1975294); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Maracaíbo','VEN','Zulia',1304776); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Barquisimeto','VEN','Lara',877239); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Valencia','VEN','Carabobo',794246); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ciudad Guayana','VEN','Bolívar',663713); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Petare','VEN','Miranda',488868); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Maracay','VEN','Aragua',444443); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Barcelona','VEN','Anzoátegui',322267); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Maturín','VEN','Monagas',319726); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Cristóbal','VEN','Táchira',319373); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ciudad Bolívar','VEN','Bolívar',301107); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cumaná','VEN','Sucre',293105); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mérida','VEN','Mérida',224887); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cabimas','VEN','Zulia',221329); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Barinas','VEN','Barinas',217831); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Turmero','VEN','Aragua',217499); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Baruta','VEN','Miranda',207290); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Puerto Cabello','VEN','Carabobo',187722); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santa Ana de Coro','VEN','Falcón',185766); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Los Teques','VEN','Miranda',178784); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Punto Fijo','VEN','Falcón',167215); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guarenas','VEN','Miranda',165889); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Acarigua','VEN','Portuguesa',158954); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Puerto La Cruz','VEN','Anzoátegui',155700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ciudad Losada','VEN','',134501); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guacara','VEN','Carabobo',131334); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Valera','VEN','Trujillo',130281); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guanare','VEN','Portuguesa',125621); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Carúpano','VEN','Sucre',119639); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Catia La Mar','VEN','Distrito Federal',117012); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('El Tigre','VEN','Anzoátegui',116256); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Guatire','VEN','Miranda',109121); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Calabozo','VEN','Guárico',107146); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pozuelos','VEN','Anzoátegui',105690); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ciudad Ojeda','VEN','Zulia',99354); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ocumare del Tuy','VEN','Miranda',97168); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Valle de la Pascua','VEN','Guárico',95927); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Araure','VEN','Portuguesa',94269); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Fernando de Apure','VEN','Apure',93809); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Felipe','VEN','Yaracuy',90940); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('El Limón','VEN','Aragua',90000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Moscow','RUS','Moscow (City)',8389200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('St Petersburg','RUS','Pietari',4694000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Novosibirsk','RUS','Novosibirsk',1398800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nizni Novgorod','RUS','Nizni Novgorod',1357000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jekaterinburg','RUS','Sverdlovsk',1266300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Samara','RUS','Samara',1156100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Omsk','RUS','Omsk',1148900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kazan','RUS','Tatarstan',1101000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ufa','RUS','Baškortostan',1091200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tšeljabinsk','RUS','Tšeljabinsk',1083200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rostov-na-Donu','RUS','Rostov-na-Donu',1012700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Perm','RUS','Perm',1009700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Volgograd','RUS','Volgograd',993400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Voronez','RUS','Voronez',907700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Krasnojarsk','RUS','Krasnojarsk',875500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Saratov','RUS','Saratov',874000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Toljatti','RUS','Samara',722900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Uljanovsk','RUS','Uljanovsk',667400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Izevsk','RUS','Udmurtia',652800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Krasnodar','RUS','Krasnodar',639000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jaroslavl','RUS','Jaroslavl',616700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Habarovsk','RUS','Habarovsk',609400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vladivostok','RUS','Primorje',606200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Irkutsk','RUS','Irkutsk',593700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Barnaul','RUS','Altai',580100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Novokuznetsk','RUS','Kemerovo',561600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Penza','RUS','Penza',532200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rjazan','RUS','Rjazan',529900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Orenburg','RUS','Orenburg',523600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lipetsk','RUS','Lipetsk',521000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nabereznyje Tšelny','RUS','Tatarstan',514700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tula','RUS','Tula',506100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tjumen','RUS','Tjumen',503400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kemerovo','RUS','Kemerovo',492700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Astrahan','RUS','Astrahan',486100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tomsk','RUS','Tomsk',482100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kirov','RUS','Kirov',466200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ivanovo','RUS','Ivanovo',459200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tšeboksary','RUS','Tšuvassia',459200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Brjansk','RUS','Brjansk',457400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tver','RUS','Tver',454900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kursk','RUS','Kursk',443500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Magnitogorsk','RUS','Tšeljabinsk',427900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kaliningrad','RUS','Kaliningrad',424400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nizni Tagil','RUS','Sverdlovsk',390900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Murmansk','RUS','Murmansk',376300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ulan-Ude','RUS','Burjatia',370400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kurgan','RUS','Kurgan',364700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Arkangeli','RUS','Arkangeli',361800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sotši','RUS','Krasnodar',358600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Smolensk','RUS','Smolensk',353400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Orjol','RUS','Orjol',344500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Stavropol','RUS','Stavropol',343300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Belgorod','RUS','Belgorod',342000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kaluga','RUS','Kaluga',339300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vladimir','RUS','Vladimir',337100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mahatškala','RUS','Dagestan',332800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tšerepovets','RUS','Vologda',324400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Saransk','RUS','Mordva',314800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tambov','RUS','Tambov',312000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vladikavkaz','RUS','North Ossetia-Alania',310100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tšita','RUS','Tšita',309900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vologda','RUS','Vologda',302500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Veliki Novgorod','RUS','Novgorod',299500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Komsomolsk-na-Amure','RUS','Habarovsk',291600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kostroma','RUS','Kostroma',288100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Volzski','RUS','Volgograd',286900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Taganrog','RUS','Rostov-na-Donu',284400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Petroskoi','RUS','Karjala',282100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bratsk','RUS','Irkutsk',277600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dzerzinsk','RUS','Nizni Novgorod',277100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Surgut','RUS','Hanti-Mansia',274900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Orsk','RUS','Orenburg',273900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sterlitamak','RUS','Baškortostan',265200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Angarsk','RUS','Irkutsk',264700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Joškar-Ola','RUS','Marinmaa',249200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rybinsk','RUS','Jaroslavl',239600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Prokopjevsk','RUS','Kemerovo',237300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Niznevartovsk','RUS','Hanti-Mansia',233900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Naltšik','RUS','Kabardi-Balkaria',233400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Syktyvkar','RUS','Komi',229700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Severodvinsk','RUS','Arkangeli',229300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bijsk','RUS','Altai',225000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Niznekamsk','RUS','Tatarstan',223400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Blagoveštšensk','RUS','Amur',222000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Šahty','RUS','Rostov-na-Donu',221800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Staryi Oskol','RUS','Belgorod',213800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zelenograd','RUS','Moscow (City)',207100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Balakovo','RUS','Saratov',206000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Novorossijsk','RUS','Krasnodar',203300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pihkova','RUS','Pihkova',201500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zlatoust','RUS','Tšeljabinsk',196900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jakutsk','RUS','Saha (Jakutia)',195400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Podolsk','RUS','Moskova',194300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Petropavlovsk-Kamtšatski','RUS','Kamtšatka',194100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kamensk-Uralski','RUS','Sverdlovsk',190600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Engels','RUS','Saratov',189000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Syzran','RUS','Samara',186900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Grozny','RUS','Tšetšenia',186000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Novotšerkassk','RUS','Rostov-na-Donu',184400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Berezniki','RUS','Perm',181900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Juzno-Sahalinsk','RUS','Sahalin',179200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Volgodonsk','RUS','Rostov-na-Donu',178200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Abakan','RUS','Hakassia',169200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Maikop','RUS','Adygea',167300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Miass','RUS','Tšeljabinsk',166200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Armavir','RUS','Krasnodar',164900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ljubertsy','RUS','Moskova',163900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rubtsovsk','RUS','Altai',162600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kovrov','RUS','Vladimir',159900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nahodka','RUS','Primorje',157700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ussurijsk','RUS','Primorje',157300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Salavat','RUS','Baškortostan',156800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mytištši','RUS','Moskova',155700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kolomna','RUS','Moskova',150700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Elektrostal','RUS','Moskova',147000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Murom','RUS','Vladimir',142400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kolpino','RUS','Pietari',141200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Norilsk','RUS','Krasnojarsk',140800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Almetjevsk','RUS','Tatarstan',140700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Novomoskovsk','RUS','Tula',138100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dimitrovgrad','RUS','Uljanovsk',137000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pervouralsk','RUS','Sverdlovsk',136100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Himki','RUS','Moskova',133700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Balašiha','RUS','Moskova',132900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nevinnomyssk','RUS','Stavropol',132600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pjatigorsk','RUS','Stavropol',132500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Korolev','RUS','Moskova',132400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Serpuhov','RUS','Moskova',132000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Odintsovo','RUS','Moskova',127400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Orehovo-Zujevo','RUS','Moskova',124900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kamyšin','RUS','Volgograd',124600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Novotšeboksarsk','RUS','Tšuvassia',123400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tšerkessk','RUS','Karatšai-Tšerkessia',121700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Atšinsk','RUS','Krasnojarsk',121600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Magadan','RUS','Magadan',121000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mitšurinsk','RUS','Tambov',120700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kislovodsk','RUS','Stavropol',120400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jelets','RUS','Lipetsk',119400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Seversk','RUS','Tomsk',118600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Noginsk','RUS','Moskova',117200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Velikije Luki','RUS','Pihkova',116300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Novokuibyševsk','RUS','Samara',116200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Neftekamsk','RUS','Baškortostan',115700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Leninsk-Kuznetski','RUS','Kemerovo',113800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Oktjabrski','RUS','Baškortostan',111500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sergijev Posad','RUS','Moskova',111100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Arzamas','RUS','Nizni Novgorod',110700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kiseljovsk','RUS','Kemerovo',110000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Novotroitsk','RUS','Orenburg',109600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Obninsk','RUS','Kaluga',108300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kansk','RUS','Krasnojarsk',107400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Glazov','RUS','Udmurtia',106300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Solikamsk','RUS','Perm',106000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sarapul','RUS','Udmurtia',105700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ust-Ilimsk','RUS','Irkutsk',105200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Štšolkovo','RUS','Moskova',104900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mezduretšensk','RUS','Kemerovo',104400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Usolje-Sibirskoje','RUS','Irkutsk',103500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Elista','RUS','Kalmykia',103300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Novošahtinsk','RUS','Rostov-na-Donu',101900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Votkinsk','RUS','Udmurtia',101700); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kyzyl','RUS','Tyva',101100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Serov','RUS','Sverdlovsk',100400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zelenodolsk','RUS','Tatarstan',100200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zeleznodoroznyi','RUS','Moskova',100100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kinešma','RUS','Ivanovo',100000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kuznetsk','RUS','Penza',98200); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Uhta','RUS','Komi',98000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jessentuki','RUS','Stavropol',97900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tobolsk','RUS','Tjumen',97600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Neftejugansk','RUS','Hanti-Mansia',97400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bataisk','RUS','Rostov-na-Donu',97300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nojabrsk','RUS','Yamalin Nenetsia',97300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Balašov','RUS','Saratov',97100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zeleznogorsk','RUS','Kursk',96900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zukovski','RUS','Moskova',96500); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Anzero-Sudzensk','RUS','Kemerovo',96100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bugulma','RUS','Tatarstan',94100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Zeleznogorsk','RUS','Krasnojarsk',94000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Novouralsk','RUS','Sverdlovsk',93300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Puškin','RUS','Pietari',92900); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vorkuta','RUS','Komi',92600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Derbent','RUS','Dagestan',92300); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kirovo-Tšepetsk','RUS','Kirov',91600); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Krasnogorsk','RUS','Moskova',91000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Klin','RUS','Moskova',90000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tšaikovski','RUS','Perm',90000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Novyi Urengoi','RUS','Yamalin Nenetsia',89800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ho Chi Minh City','VNM','Ho Chi Minh City',3980000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hanoi','VNM','Hanoi',1410000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Haiphong','VNM','Haiphong',783133); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Da Nang','VNM','Quang Nam-Da Nang',382674); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Biên Hoa','VNM','Dong Nai',282095); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nha Trang','VNM','Khanh Hoa',221331); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hue','VNM','Thua Thien-Hue',219149); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Can Tho','VNM','Can Tho',215587); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cam Pha','VNM','Quang Binh',209086); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nam Dinh','VNM','Nam Ha',171699); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Quy Nhon','VNM','Binh Dinh',163385); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vung Tau','VNM','Ba Ria-Vung Tau',145145); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rach Gia','VNM','Kien Giang',141132); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Long Xuyen','VNM','An Giang',132681); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Thai Nguyen','VNM','Bac Thai',127643); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hong Gai','VNM','Quang Ninh',127484); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Phan Thiêt','VNM','Binh Thuan',114236); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cam Ranh','VNM','Khanh Hoa',114041); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vinh','VNM','Nghe An',112455); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('My Tho','VNM','Tien Giang',108404); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Da Lat','VNM','Lam Dong',106409); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Buon Ma Thuot','VNM','Dac Lac',97044); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tallinn','EST','Harjumaa',403981); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tartu','EST','Tartumaa',101246); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('New York','USA','New York',8008278); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Los Angeles','USA','California',3694820); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chicago','USA','Illinois',2896016); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Houston','USA','Texas',1953631); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Philadelphia','USA','Pennsylvania',1517550); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Phoenix','USA','Arizona',1321045); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Diego','USA','California',1223400); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dallas','USA','Texas',1188580); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Antonio','USA','Texas',1144646); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Detroit','USA','Michigan',951270); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Jose','USA','California',894943); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Indianapolis','USA','Indiana',791926); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Francisco','USA','California',776733); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jacksonville','USA','Florida',735167); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Columbus','USA','Ohio',711470); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Austin','USA','Texas',656562); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Baltimore','USA','Maryland',651154); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Memphis','USA','Tennessee',650100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Milwaukee','USA','Wisconsin',596974); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Boston','USA','Massachusetts',589141); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Washington','USA','District of Columbia',572059); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nashville-Davidson','USA','Tennessee',569891); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('El Paso','USA','Texas',563662); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Seattle','USA','Washington',563374); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Denver','USA','Colorado',554636); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Charlotte','USA','North Carolina',540828); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fort Worth','USA','Texas',534694); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Portland','USA','Oregon',529121); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Oklahoma City','USA','Oklahoma',506132); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tucson','USA','Arizona',486699); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('New Orleans','USA','Louisiana',484674); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Las Vegas','USA','Nevada',478434); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cleveland','USA','Ohio',478403); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Long Beach','USA','California',461522); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Albuquerque','USA','New Mexico',448607); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kansas City','USA','Missouri',441545); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fresno','USA','California',427652); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Virginia Beach','USA','Virginia',425257); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Atlanta','USA','Georgia',416474); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sacramento','USA','California',407018); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Oakland','USA','California',399484); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mesa','USA','Arizona',396375); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tulsa','USA','Oklahoma',393049); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Omaha','USA','Nebraska',390007); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Minneapolis','USA','Minnesota',382618); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Honolulu','USA','Hawaii',371657); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Miami','USA','Florida',362470); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Colorado Springs','USA','Colorado',360890); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Saint Louis','USA','Missouri',348189); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wichita','USA','Kansas',344284); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santa Ana','USA','California',337977); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pittsburgh','USA','Pennsylvania',334563); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Arlington','USA','Texas',332969); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cincinnati','USA','Ohio',331285); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Anaheim','USA','California',328014); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Toledo','USA','Ohio',313619); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tampa','USA','Florida',303447); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Buffalo','USA','New York',292648); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Saint Paul','USA','Minnesota',287151); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Corpus Christi','USA','Texas',277454); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Aurora','USA','Colorado',276393); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Raleigh','USA','North Carolina',276093); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Newark','USA','New Jersey',273546); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lexington-Fayette','USA','Kentucky',260512); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Anchorage','USA','Alaska',260283); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Louisville','USA','Kentucky',256231); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Riverside','USA','California',255166); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Saint Petersburg','USA','Florida',248232); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bakersfield','USA','California',247057); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Stockton','USA','California',243771); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Birmingham','USA','Alabama',242820); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jersey City','USA','New Jersey',240055); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Norfolk','USA','Virginia',234403); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Baton Rouge','USA','Louisiana',227818); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hialeah','USA','Florida',226419); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lincoln','USA','Nebraska',225581); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Greensboro','USA','North Carolina',223891); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Plano','USA','Texas',222030); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rochester','USA','New York',219773); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Glendale','USA','Arizona',218812); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Akron','USA','Ohio',217074); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Garland','USA','Texas',215768); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Madison','USA','Wisconsin',208054); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fort Wayne','USA','Indiana',205727); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fremont','USA','California',203413); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Scottsdale','USA','Arizona',202705); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Montgomery','USA','Alabama',201568); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Shreveport','USA','Louisiana',200145); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Augusta-Richmond County','USA','Georgia',199775); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lubbock','USA','Texas',199564); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chesapeake','USA','Virginia',199184); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mobile','USA','Alabama',198915); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Des Moines','USA','Iowa',198682); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Grand Rapids','USA','Michigan',197800); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Richmond','USA','Virginia',197790); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Yonkers','USA','New York',196086); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Spokane','USA','Washington',195629); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Glendale','USA','California',194973); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tacoma','USA','Washington',193556); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Irving','USA','Texas',191615); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Huntington Beach','USA','California',189594); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Modesto','USA','California',188856); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Durham','USA','North Carolina',187035); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Columbus','USA','Georgia',186291); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Orlando','USA','Florida',185951); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Boise City','USA','Idaho',185787); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Winston-Salem','USA','North Carolina',185776); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Bernardino','USA','California',185401); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jackson','USA','Mississippi',184256); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Little Rock','USA','Arkansas',183133); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Salt Lake City','USA','Utah',181743); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Reno','USA','Nevada',180480); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Newport News','USA','Virginia',180150); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chandler','USA','Arizona',176581); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Laredo','USA','Texas',176576); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Henderson','USA','Nevada',175381); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Arlington','USA','Virginia',174838); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Knoxville','USA','Tennessee',173890); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Amarillo','USA','Texas',173627); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Providence','USA','Rhode Island',173618); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chula Vista','USA','California',173556); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Worcester','USA','Massachusetts',172648); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Oxnard','USA','California',170358); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Dayton','USA','Ohio',166179); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Garden Grove','USA','California',165196); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Oceanside','USA','California',161029); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tempe','USA','Arizona',158625); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Huntsville','USA','Alabama',158216); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ontario','USA','California',158007); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chattanooga','USA','Tennessee',155554); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fort Lauderdale','USA','Florida',152397); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Springfield','USA','Massachusetts',152082); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Springfield','USA','Missouri',151580); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santa Clarita','USA','California',151088); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Salinas','USA','California',151060); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Tallahassee','USA','Florida',150624); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rockford','USA','Illinois',150115); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pomona','USA','California',149473); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Metairie','USA','Louisiana',149428); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Paterson','USA','New Jersey',149222); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Overland Park','USA','Kansas',149080); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santa Rosa','USA','California',147595); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Syracuse','USA','New York',147306); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kansas City','USA','Kansas',146866); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hampton','USA','Virginia',146437); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lakewood','USA','Colorado',144126); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vancouver','USA','Washington',143560); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Irvine','USA','California',143072); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Aurora','USA','Illinois',142990); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Moreno Valley','USA','California',142381); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pasadena','USA','California',141674); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hayward','USA','California',140030); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Brownsville','USA','Texas',139722); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bridgeport','USA','Connecticut',139529); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hollywood','USA','Florida',139357); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Warren','USA','Michigan',138247); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Torrance','USA','California',137946); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Eugene','USA','Oregon',137893); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pembroke Pines','USA','Florida',137427); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Salem','USA','Oregon',136924); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pasadena','USA','Texas',133936); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Escondido','USA','California',133559); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sunnyvale','USA','California',131760); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Savannah','USA','Georgia',131510); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fontana','USA','California',128929); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Orange','USA','California',128821); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Naperville','USA','Illinois',128358); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Alexandria','USA','Virginia',128283); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rancho Cucamonga','USA','California',127743); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Grand Prairie','USA','Texas',127427); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('East Los Angeles','USA','California',126379); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fullerton','USA','California',126003); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Corona','USA','California',124966); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Flint','USA','Michigan',124943); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Paradise','USA','Nevada',124682); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mesquite','USA','Texas',124523); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sterling Heights','USA','Michigan',124471); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sioux Falls','USA','South Dakota',123975); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('New Haven','USA','Connecticut',123626); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Topeka','USA','Kansas',122377); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Concord','USA','California',121780); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Evansville','USA','Indiana',121582); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hartford','USA','Connecticut',121578); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fayetteville','USA','North Carolina',121015); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cedar Rapids','USA','Iowa',120758); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Elizabeth','USA','New Jersey',120568); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lansing','USA','Michigan',119128); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lancaster','USA','California',118718); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fort Collins','USA','Colorado',118652); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Coral Springs','USA','Florida',117549); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Stamford','USA','Connecticut',117083); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Thousand Oaks','USA','California',117005); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Vallejo','USA','California',116760); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Palmdale','USA','California',116670); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Columbia','USA','South Carolina',116278); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('El Monte','USA','California',115965); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Abilene','USA','Texas',115930); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('North Las Vegas','USA','Nevada',115488); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Ann Arbor','USA','Michigan',114024); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Beaumont','USA','Texas',113866); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Waco','USA','Texas',113726); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Macon','USA','Georgia',113336); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Independence','USA','Missouri',113288); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Peoria','USA','Illinois',112936); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Inglewood','USA','California',112580); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Springfield','USA','Illinois',111454); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Simi Valley','USA','California',111351); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lafayette','USA','Louisiana',110257); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gilbert','USA','Arizona',109697); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Carrollton','USA','Texas',109576); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bellevue','USA','Washington',109569); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('West Valley City','USA','Utah',108896); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Clarksville','USA','Tennessee',108787); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Costa Mesa','USA','California',108724); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Peoria','USA','Arizona',108364); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('South Bend','USA','Indiana',107789); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Downey','USA','California',107323); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Waterbury','USA','Connecticut',107271); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Manchester','USA','New Hampshire',107006); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Allentown','USA','Pennsylvania',106632); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('McAllen','USA','Texas',106414); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Joliet','USA','Illinois',106221); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Lowell','USA','Massachusetts',105167); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Provo','USA','Utah',105166); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('West Covina','USA','California',105080); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Wichita Falls','USA','Texas',104197); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Erie','USA','Pennsylvania',103717); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Daly City','USA','California',103621); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Citrus Heights','USA','California',103455); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Norwalk','USA','California',103298); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gary','USA','Indiana',102746); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Berkeley','USA','California',102743); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santa Clara','USA','California',102361); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Green Bay','USA','Wisconsin',102313); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cape Coral','USA','Florida',102286); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Arvada','USA','Colorado',102153); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Pueblo','USA','Colorado',102121); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sandy','USA','Utah',101853); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Athens-Clarke County','USA','Georgia',101489); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cambridge','USA','Massachusetts',101355); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Westminster','USA','Colorado',100940); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Buenaventura','USA','California',100916); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Portsmouth','USA','Virginia',100565); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Livonia','USA','Michigan',100545); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Burbank','USA','California',100316); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Clearwater','USA','Florida',99936); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Midland','USA','Texas',98293); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Davenport','USA','Iowa',98256); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mission Viejo','USA','California',98049); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Miami Beach','USA','Florida',97855); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Sunrise Manor','USA','Nevada',95362); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('New Bedford','USA','Massachusetts',94780); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('El Cajon','USA','California',94578); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Norman','USA','Oklahoma',94193); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Richmond','USA','California',94100); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Albany','USA','New York',93994); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Brockton','USA','Massachusetts',93653); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Roanoke','USA','Virginia',93357); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Billings','USA','Montana',92988); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Compton','USA','California',92864); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gainesville','USA','Florida',92291); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fairfield','USA','California',92256); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Arden-Arcade','USA','California',92040); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('San Mateo','USA','California',91799); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Visalia','USA','California',91762); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Boulder','USA','Colorado',91238); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Cary','USA','North Carolina',91213); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Santa Monica','USA','California',91084); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Fall River','USA','Massachusetts',90555); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Kenosha','USA','Wisconsin',89447); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Elgin','USA','Illinois',89408); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Odessa','USA','Texas',89293); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Carson','USA','California',89089); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Charleston','USA','South Carolina',89063); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Charlotte Amalie','VIR','St Thomas',13000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Harare','ZWE','Harare',1410000); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Bulawayo','ZWE','Bulawayo',621742); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Chitungwiza','ZWE','Harare',274912); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mount Darwin','ZWE','Harare',164362); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Mutare','ZWE','Manicaland',131367); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gweru','ZWE','Midlands',128037); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Gaza','PSE','Gaza',353632); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Khan Yunis','PSE','Khan Yunis',123175); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Hebron','PSE','Hebron',119401); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Jabaliya','PSE','North Gaza',113901); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Nablus','PSE','Nablus',100231); INSERT INTO City (Name, CountryCode, District, Population) VALUES ('Rafah','PSE','Rafah',92020); -- -- Table structure for table Country -- -- CREATE TYPE continentList AS ENUM ('Asia','Europe','North America','Africa','Oceania','Antarctica','South America'); DROP TABLE IF EXISTS Country; CREATE TABLE Country ( Code char(3) NOT NULL default '', Name varchar(52) NOT NULL default '', Continent varchar(50) NOT NULL default 'Asia', Region varchar(26) NOT NULL default '', SurfaceArea float NOT NULL default '0.00', IndepYear smallint default NULL, Population int NOT NULL default '0', LifeExpectancy float default NULL, GNP float default NULL, GNPOld float default NULL, LocalName varchar(45) NOT NULL default '', GovernmentForm varchar(45) NOT NULL default '', HeadOfState varchar(60) default NULL, Capital int default NULL, Code2 char(2) NOT NULL default '', PRIMARY KEY (Code) ) ; -- -- Dumping data for table Country -- -- ORDER BY: Code INSERT INTO Country VALUES ('ABW','Aruba','North America','Caribbean',193.00,NULL,103000,78.4,828.00,793.00,'Aruba','Nonmetropolitan Territory of The Netherlands','Beatrix',129,'AW'); INSERT INTO Country VALUES ('AFG','Afghanistan','Asia','Southern and Central Asia',652090.00,1919,22720000,45.9,5976.00,NULL,'Afganistan/Afqanestan','Islamic Emirate','Mohammad Omar',1,'AF'); INSERT INTO Country VALUES ('AGO','Angola','Africa','Central Africa',1246700.00,1975,12878000,38.3,6648.00,7984.00,'Angola','Republic','José Eduardo dos Santos',56,'AO'); INSERT INTO Country VALUES ('AIA','Anguilla','North America','Caribbean',96.00,NULL,8000,76.1,63.20,NULL,'Anguilla','Dependent Territory of the UK','Elisabeth II',62,'AI'); INSERT INTO Country VALUES ('ALB','Albania','Europe','Southern Europe',28748.00,1912,3401200,71.6,3205.00,2500.00,'Shqipëria','Republic','Rexhep Mejdani',34,'AL'); INSERT INTO Country VALUES ('AND','Andorra','Europe','Southern Europe',468.00,1278,78000,83.5,1630.00,NULL,'Andorra','Parliamentary Coprincipality','',55,'AD'); INSERT INTO Country VALUES ('ANT','Netherlands Antilles','North America','Caribbean',800.00,NULL,217000,74.7,1941.00,NULL,'Nederlandse Antillen','Nonmetropolitan Territory of The Netherlands','Beatrix',33,'AN'); INSERT INTO Country VALUES ('ARE','United Arab Emirates','Asia','Middle East',83600.00,1971,2441000,74.1,37966.00,36846.00,'Al-Imarat al-´Arabiya al-Muttahida','Emirate Federation','Zayid bin Sultan al-Nahayan',65,'AE'); INSERT INTO Country VALUES ('ARG','Argentina','South America','South America',2780400.00,1816,37032000,75.1,340238.00,323310.00,'Argentina','Federal Republic','Fernando de la Rúa',69,'AR'); INSERT INTO Country VALUES ('ARM','Armenia','Asia','Middle East',29800.00,1991,3520000,66.4,1813.00,1627.00,'Hajastan','Republic','Robert Kotšarjan',126,'AM'); INSERT INTO Country VALUES ('ASM','American Samoa','Oceania','Polynesia',199.00,NULL,68000,75.1,334.00,NULL,'Amerika Samoa','US Territory','George W. Bush',54,'AS'); INSERT INTO Country VALUES ('ATA','Antarctica','Antarctica','Antarctica',13120000.00,NULL,0,NULL,0.00,NULL,'–','Co-administrated','',NULL,'AQ'); INSERT INTO Country VALUES ('ATF','French Southern territories','Antarctica','Antarctica',7780.00,NULL,0,NULL,0.00,NULL,'Terres australes françaises','Nonmetropolitan Territory of France','Jacques Chirac',NULL,'TF'); INSERT INTO Country VALUES ('ATG','Antigua and Barbuda','North America','Caribbean',442.00,1981,68000,70.5,612.00,584.00,'Antigua and Barbuda','Constitutional Monarchy','Elisabeth II',63,'AG'); INSERT INTO Country VALUES ('AUS','Australia','Oceania','Australia and New Zealand',7741220.00,1901,18886000,79.8,351182.00,392911.00,'Australia','Constitutional Monarchy, Federation','Elisabeth II',135,'AU'); INSERT INTO Country VALUES ('AUT','Austria','Europe','Western Europe',83859.00,1918,8091800,77.7,211860.00,206025.00,'Österreich','Federal Republic','Thomas Klestil',1523,'AT'); INSERT INTO Country VALUES ('AZE','Azerbaijan','Asia','Middle East',86600.00,1991,7734000,62.9,4127.00,4100.00,'Azärbaycan','Federal Republic','Heydär Äliyev',144,'AZ'); INSERT INTO Country VALUES ('BDI','Burundi','Africa','Eastern Africa',27834.00,1962,6695000,46.2,903.00,982.00,'Burundi/Uburundi','Republic','Pierre Buyoya',552,'BI'); INSERT INTO Country VALUES ('BEL','Belgium','Europe','Western Europe',30518.00,1830,10239000,77.8,249704.00,243948.00,'België/Belgique','Constitutional Monarchy, Federation','Albert II',179,'BE'); INSERT INTO Country VALUES ('BEN','Benin','Africa','Western Africa',112622.00,1960,6097000,50.2,2357.00,2141.00,'Bénin','Republic','Mathieu Kérékou',187,'BJ'); INSERT INTO Country VALUES ('BFA','Burkina Faso','Africa','Western Africa',274000.00,1960,11937000,46.7,2425.00,2201.00,'Burkina Faso','Republic','Blaise Compaoré',549,'BF'); INSERT INTO Country VALUES ('BGD','Bangladesh','Asia','Southern and Central Asia',143998.00,1971,129155000,60.2,32852.00,31966.00,'Bangladesh','Republic','Shahabuddin Ahmad',150,'BD'); INSERT INTO Country VALUES ('BGR','Bulgaria','Europe','Eastern Europe',110994.00,1908,8190900,70.9,12178.00,10169.00,'Balgarija','Republic','Petar Stojanov',539,'BG'); INSERT INTO Country VALUES ('BHR','Bahrain','Asia','Middle East',694.00,1971,617000,73.0,6366.00,6097.00,'Al-Bahrayn','Monarchy (Emirate)','Hamad ibn Isa al-Khalifa',149,'BH'); INSERT INTO Country VALUES ('BHS','Bahamas','North America','Caribbean',13878.00,1973,307000,71.1,3527.00,3347.00,'The Bahamas','Constitutional Monarchy','Elisabeth II',148,'BS'); INSERT INTO Country VALUES ('BIH','Bosnia and Herzegovina','Europe','Southern Europe',51197.00,1992,3972000,71.5,2841.00,NULL,'Bosna i Hercegovina','Federal Republic','Ante Jelavic',201,'BA'); INSERT INTO Country VALUES ('BLR','Belarus','Europe','Eastern Europe',207600.00,1991,10236000,68.0,13714.00,NULL,'Belarus','Republic','Aljaksandr Lukašenka',3520,'BY'); INSERT INTO Country VALUES ('BLZ','Belize','North America','Central America',22696.00,1981,241000,70.9,630.00,616.00,'Belize','Constitutional Monarchy','Elisabeth II',185,'BZ'); INSERT INTO Country VALUES ('BMU','Bermuda','North America','North America',53.00,NULL,65000,76.9,2328.00,2190.00,'Bermuda','Dependent Territory of the UK','Elisabeth II',191,'BM'); INSERT INTO Country VALUES ('BOL','Bolivia','South America','South America',1098581.00,1825,8329000,63.7,8571.00,7967.00,'Bolivia','Republic','Hugo Bánzer Suárez',194,'BO'); INSERT INTO Country VALUES ('BRA','Brazil','South America','South America',8547403.00,1822,170115000,62.9,776739.00,804108.00,'Brasil','Federal Republic','Fernando Henrique Cardoso',211,'BR'); INSERT INTO Country VALUES ('BRB','Barbados','North America','Caribbean',430.00,1966,270000,73.0,2223.00,2186.00,'Barbados','Constitutional Monarchy','Elisabeth II',174,'BB'); INSERT INTO Country VALUES ('BRN','Brunei','Asia','Southeast Asia',5765.00,1984,328000,73.6,11705.00,12460.00,'Brunei Darussalam','Monarchy (Sultanate)','Haji Hassan al-Bolkiah',538,'BN'); INSERT INTO Country VALUES ('BTN','Bhutan','Asia','Southern and Central Asia',47000.00,1910,2124000,52.4,372.00,383.00,'Druk-Yul','Monarchy','Jigme Singye Wangchuk',192,'BT'); INSERT INTO Country VALUES ('BVT','Bouvet Island','Antarctica','Antarctica',59.00,NULL,0,NULL,0.00,NULL,'Bouvetøya','Dependent Territory of Norway','Harald V',NULL,'BV'); INSERT INTO Country VALUES ('BWA','Botswana','Africa','Southern Africa',581730.00,1966,1622000,39.3,4834.00,4935.00,'Botswana','Republic','Festus G. Mogae',204,'BW'); INSERT INTO Country VALUES ('CAF','Central African Republic','Africa','Central Africa',622984.00,1960,3615000,44.0,1054.00,993.00,'Centrafrique/Bê-Afrîka','Republic','Ange-Félix Patassé',1889,'CF'); INSERT INTO Country VALUES ('CAN','Canada','North America','North America',9970610.00,1867,31147000,79.4,598862.00,625626.00,'Canada','Constitutional Monarchy, Federation','Elisabeth II',1822,'CA'); INSERT INTO Country VALUES ('CCK','Cocos (Keeling) Islands','Oceania','Australia and New Zealand',14.00,NULL,600,NULL,0.00,NULL,'Cocos (Keeling) Islands','Territory of Australia','Elisabeth II',2317,'CC'); INSERT INTO Country VALUES ('CHE','Switzerland','Europe','Western Europe',41284.00,1499,7160400,79.6,264478.00,256092.00,'Schweiz/Suisse/Svizzera/Svizra','Federation','Adolf Ogi',3248,'CH'); INSERT INTO Country VALUES ('CHL','Chile','South America','South America',756626.00,1810,15211000,75.7,72949.00,75780.00,'Chile','Republic','Ricardo Lagos Escobar',554,'CL'); INSERT INTO Country VALUES ('CHN','China','Asia','Eastern Asia',9572900.00,-1523,1277558000,71.4,982268.00,917719.00,'Zhongquo','People''sRepublic','Jiang Zemin',1891,'CN'); INSERT INTO Country VALUES ('CIV','Côte d’Ivoire','Africa','Western Africa',322463.00,1960,14786000,45.2,11345.00,10285.00,'Côte d’Ivoire','Republic','Laurent Gbagbo',2814,'CI'); INSERT INTO Country VALUES ('CMR','Cameroon','Africa','Central Africa',475442.00,1960,15085000,54.8,9174.00,8596.00,'Cameroun/Cameroon','Republic','Paul Biya',1804,'CM'); INSERT INTO Country VALUES ('COD','Congo, The Democratic Republic of the','Africa','Central Africa',2344858.00,1960,51654000,48.8,6964.00,2474.00,'République Démocratique du Congo','Republic','Joseph Kabila',2298,'CD'); INSERT INTO Country VALUES ('COG','Congo','Africa','Central Africa',342000.00,1960,2943000,47.4,2108.00,2287.00,'Congo','Republic','Denis Sassou-Nguesso',2296,'CG'); INSERT INTO Country VALUES ('COK','Cook Islands','Oceania','Polynesia',236.00,NULL,20000,71.1,100.00,NULL,'The Cook Islands','Nonmetropolitan Territory of New Zealand','Elisabeth II',583,'CK'); INSERT INTO Country VALUES ('COL','Colombia','South America','South America',1138914.00,1810,42321000,70.3,102896.00,105116.00,'Colombia','Republic','Andrés Pastrana Arango',2257,'CO'); INSERT INTO Country VALUES ('COM','Comoros','Africa','Eastern Africa',1862.00,1975,578000,60.0,4401.00,4361.00,'Komori/Comores','Republic','Azali Assoumani',2295,'KM'); INSERT INTO Country VALUES ('CPV','Cape Verde','Africa','Western Africa',4033.00,1975,428000,68.9,435.00,420.00,'Cabo Verde','Republic','António Mascarenhas Monteiro',1859,'CV'); INSERT INTO Country VALUES ('CRI','Costa Rica','North America','Central America',51100.00,1821,4023000,75.8,10226.00,9757.00,'Costa Rica','Republic','Miguel Ángel Rodríguez Echeverría',584,'CR'); INSERT INTO Country VALUES ('CUB','Cuba','North America','Caribbean',110861.00,1902,11201000,76.2,17843.00,18862.00,'Cuba','Socialistic Republic','Fidel Castro Ruz',2413,'CU'); INSERT INTO Country VALUES ('CXR','Christmas Island','Oceania','Australia and New Zealand',135.00,NULL,2500,NULL,0.00,NULL,'Christmas Island','Territory of Australia','Elisabeth II',1791,'CX'); INSERT INTO Country VALUES ('CYM','Cayman Islands','North America','Caribbean',264.00,NULL,38000,78.9,1263.00,1186.00,'Cayman Islands','Dependent Territory of the UK','Elisabeth II',553,'KY'); INSERT INTO Country VALUES ('CYP','Cyprus','Asia','Middle East',9251.00,1960,754700,76.7,9333.00,8246.00,'Kýpros/Kibris','Republic','Glafkos Klerides',2430,'CY'); INSERT INTO Country VALUES ('CZE','Czech Republic','Europe','Eastern Europe',78866.00,1993,10278100,74.5,55017.00,52037.00,'¸esko','Republic','Václav Havel',3339,'CZ'); INSERT INTO Country VALUES ('DEU','Germany','Europe','Western Europe',357022.00,1955,82164700,77.4,2133367.00,2102826.00,'Deutschland','Federal Republic','Johannes Rau',3068,'DE'); INSERT INTO Country VALUES ('DJI','Djibouti','Africa','Eastern Africa',23200.00,1977,638000,50.8,382.00,373.00,'Djibouti/Jibuti','Republic','Ismail Omar Guelleh',585,'DJ'); INSERT INTO Country VALUES ('DMA','Dominica','North America','Caribbean',751.00,1978,71000,73.4,256.00,243.00,'Dominica','Republic','Vernon Shaw',586,'DM'); INSERT INTO Country VALUES ('DNK','Denmark','Europe','Nordic Countries',43094.00,800,5330000,76.5,174099.00,169264.00,'Danmark','Constitutional Monarchy','Margrethe II',3315,'DK'); INSERT INTO Country VALUES ('DOM','Dominican Republic','North America','Caribbean',48511.00,1844,8495000,73.2,15846.00,15076.00,'República Dominicana','Republic','Hipólito Mejía Domínguez',587,'DO'); INSERT INTO Country VALUES ('DZA','Algeria','Africa','Northern Africa',2381741.00,1962,31471000,69.7,49982.00,46966.00,'Al-Jaza’ir/Algérie','Republic','Abdelaziz Bouteflika',35,'DZ'); INSERT INTO Country VALUES ('ECU','Ecuador','South America','South America',283561.00,1822,12646000,71.1,19770.00,19769.00,'Ecuador','Republic','Gustavo Noboa Bejarano',594,'EC'); INSERT INTO Country VALUES ('EGY','Egypt','Africa','Northern Africa',1001449.00,1922,68470000,63.3,82710.00,75617.00,'Misr','Republic','Hosni Mubarak',608,'EG'); INSERT INTO Country VALUES ('ERI','Eritrea','Africa','Eastern Africa',117600.00,1993,3850000,55.8,650.00,755.00,'Ertra','Republic','Isayas Afewerki [Isaias Afwerki]',652,'ER'); INSERT INTO Country VALUES ('ESH','Western Sahara','Africa','Northern Africa',266000.00,NULL,293000,49.8,60.00,NULL,'As-Sahrawiya','Occupied by Marocco','Mohammed Abdel Aziz',2453,'EH'); INSERT INTO Country VALUES ('ESP','Spain','Europe','Southern Europe',505992.00,1492,39441700,78.8,553233.00,532031.00,'España','Constitutional Monarchy','Juan Carlos I',653,'ES'); INSERT INTO Country VALUES ('EST','Estonia','Europe','Baltic Countries',45227.00,1991,1439200,69.5,5328.00,3371.00,'Eesti','Republic','Lennart Meri',3791,'EE'); INSERT INTO Country VALUES ('ETH','Ethiopia','Africa','Eastern Africa',1104300.00,-1000,62565000,45.2,6353.00,6180.00,'YeItyop´iya','Republic','Negasso Gidada',756,'ET'); INSERT INTO Country VALUES ('FIN','Finland','Europe','Nordic Countries',338145.00,1917,5171300,77.4,121914.00,119833.00,'Suomi','Republic','Tarja Halonen',3236,'FI'); INSERT INTO Country VALUES ('FJI','Fiji Islands','Oceania','Melanesia',18274.00,1970,817000,67.9,1536.00,2149.00,'Fiji Islands','Republic','Josefa Iloilo',764,'FJ'); INSERT INTO Country VALUES ('FLK','Falkland Islands','South America','South America',12173.00,NULL,2000,NULL,0.00,NULL,'Falkland Islands','Dependent Territory of the UK','Elisabeth II',763,'FK'); INSERT INTO Country VALUES ('FRA','France','Europe','Western Europe',551500.00,843,59225700,78.8,1424285.00,1392448.00,'France','Republic','Jacques Chirac',2974,'FR'); INSERT INTO Country VALUES ('FRO','Faroe Islands','Europe','Nordic Countries',1399.00,NULL,43000,78.4,0.00,NULL,'Føroyar','Part of Denmark','Margrethe II',901,'FO'); INSERT INTO Country VALUES ('FSM','Micronesia, Federated States of','Oceania','Micronesia',702.00,1990,119000,68.6,212.00,NULL,'Micronesia','Federal Republic','Leo A. Falcam',2689,'FM'); INSERT INTO Country VALUES ('GAB','Gabon','Africa','Central Africa',267668.00,1960,1226000,50.1,5493.00,5279.00,'Le Gabon','Republic','Omar Bongo',902,'GA'); INSERT INTO Country VALUES ('GBR','United Kingdom','Europe','British Islands',242900.00,1066,59623400,77.7,1378330.00,1296830.00,'United Kingdom','Constitutional Monarchy','Elisabeth II',456,'GB'); INSERT INTO Country VALUES ('GEO','Georgia','Asia','Middle East',69700.00,1991,4968000,64.5,6064.00,5924.00,'Sakartvelo','Republic','Eduard Ševardnadze',905,'GE'); INSERT INTO Country VALUES ('GHA','Ghana','Africa','Western Africa',238533.00,1957,20212000,57.4,7137.00,6884.00,'Ghana','Republic','John Kufuor',910,'GH'); INSERT INTO Country VALUES ('GIB','Gibraltar','Europe','Southern Europe',6.00,NULL,25000,79.0,258.00,NULL,'Gibraltar','Dependent Territory of the UK','Elisabeth II',915,'GI'); INSERT INTO Country VALUES ('GIN','Guinea','Africa','Western Africa',245857.00,1958,7430000,45.6,2352.00,2383.00,'Guinée','Republic','Lansana Conté',926,'GN'); INSERT INTO Country VALUES ('GLP','Guadeloupe','North America','Caribbean',1705.00,NULL,456000,77.0,3501.00,NULL,'Guadeloupe','Overseas Department of France','Jacques Chirac',919,'GP'); INSERT INTO Country VALUES ('GMB','Gambia','Africa','Western Africa',11295.00,1965,1305000,53.2,320.00,325.00,'The Gambia','Republic','Yahya Jammeh',904,'GM'); INSERT INTO Country VALUES ('GNB','Guinea-Bissau','Africa','Western Africa',36125.00,1974,1213000,49.0,293.00,272.00,'Guiné-Bissau','Republic','Kumba Ialá',927,'GW'); INSERT INTO Country VALUES ('GNQ','Equatorial Guinea','Africa','Central Africa',28051.00,1968,453000,53.6,283.00,542.00,'Guinea Ecuatorial','Republic','Teodoro Obiang Nguema Mbasogo',2972,'GQ'); INSERT INTO Country VALUES ('GRC','Greece','Europe','Southern Europe',131626.00,1830,10545700,78.4,120724.00,119946.00,'Elláda','Republic','Kostis Stefanopoulos',2401,'GR'); INSERT INTO Country VALUES ('GRD','Grenada','North America','Caribbean',344.00,1974,94000,64.5,318.00,NULL,'Grenada','Constitutional Monarchy','Elisabeth II',916,'GD'); INSERT INTO Country VALUES ('GRL','Greenland','North America','North America',2166090.00,NULL,56000,68.1,0.00,NULL,'Kalaallit Nunaat/Grønland','Part of Denmark','Margrethe II',917,'GL'); INSERT INTO Country VALUES ('GTM','Guatemala','North America','Central America',108889.00,1821,11385000,66.2,19008.00,17797.00,'Guatemala','Republic','Alfonso Portillo Cabrera',922,'GT'); INSERT INTO Country VALUES ('GUF','French Guiana','South America','South America',90000.00,NULL,181000,76.1,681.00,NULL,'Guyane française','Overseas Department of France','Jacques Chirac',3014,'GF'); INSERT INTO Country VALUES ('GUM','Guam','Oceania','Micronesia',549.00,NULL,168000,77.8,1197.00,1136.00,'Guam','US Territory','George W. Bush',921,'GU'); INSERT INTO Country VALUES ('GUY','Guyana','South America','South America',214969.00,1966,861000,64.0,722.00,743.00,'Guyana','Republic','Bharrat Jagdeo',928,'GY'); INSERT INTO Country VALUES ('HKG','Hong Kong','Asia','Eastern Asia',1075.00,NULL,6782000,79.5,166448.00,173610.00,'Xianggang/Hong Kong','Special Administrative Region of China','Jiang Zemin',937,'HK'); INSERT INTO Country VALUES ('HMD','Heard Island and McDonald Islands','Antarctica','Antarctica',359.00,NULL,0,NULL,0.00,NULL,'Heard and McDonald Islands','Territory of Australia','Elisabeth II',NULL,'HM'); INSERT INTO Country VALUES ('HND','Honduras','North America','Central America',112088.00,1838,6485000,69.9,5333.00,4697.00,'Honduras','Republic','Carlos Roberto Flores Facussé',933,'HN'); INSERT INTO Country VALUES ('HRV','Croatia','Europe','Southern Europe',56538.00,1991,4473000,73.7,20208.00,19300.00,'Hrvatska','Republic','Štipe Mesic',2409,'HR'); INSERT INTO Country VALUES ('HTI','Haiti','North America','Caribbean',27750.00,1804,8222000,49.2,3459.00,3107.00,'Haïti/Dayti','Republic','Jean-Bertrand Aristide',929,'HT'); INSERT INTO Country VALUES ('HUN','Hungary','Europe','Eastern Europe',93030.00,1918,10043200,71.4,48267.00,45914.00,'Magyarország','Republic','Ferenc Mádl',3483,'HU'); INSERT INTO Country VALUES ('IDN','Indonesia','Asia','Southeast Asia',1904569.00,1945,212107000,68.0,84982.00,215002.00,'Indonesia','Republic','Abdurrahman Wahid',939,'ID'); INSERT INTO Country VALUES ('IND','India','Asia','Southern and Central Asia',3287263.00,1947,1013662000,62.5,447114.00,430572.00,'Bharat/India','Federal Republic','Kocheril Raman Narayanan',1109,'IN'); INSERT INTO Country VALUES ('IOT','British Indian Ocean Territory','Africa','Eastern Africa',78.00,NULL,0,NULL,0.00,NULL,'British Indian Ocean Territory','Dependent Territory of the UK','Elisabeth II',NULL,'IO'); INSERT INTO Country VALUES ('IRL','Ireland','Europe','British Islands',70273.00,1921,3775100,76.8,75921.00,73132.00,'Ireland/Éire','Republic','Mary McAleese',1447,'IE'); INSERT INTO Country VALUES ('IRN','Iran','Asia','Southern and Central Asia',1648195.00,1906,67702000,69.7,195746.00,160151.00,'Iran','Islamic Republic','Ali Mohammad Khatami-Ardakani',1380,'IR'); INSERT INTO Country VALUES ('IRQ','Iraq','Asia','Middle East',438317.00,1932,23115000,66.5,11500.00,NULL,'Al-´Iraq','Republic','Saddam Hussein al-Takriti',1365,'IQ'); INSERT INTO Country VALUES ('ISL','Iceland','Europe','Nordic Countries',103000.00,1944,279000,79.4,8255.00,7474.00,'Ísland','Republic','Ólafur Ragnar Grímsson',1449,'IS'); INSERT INTO Country VALUES ('ISR','Israel','Asia','Middle East',21056.00,1948,6217000,78.6,97477.00,98577.00,'Yisra’el/Isra’il','Republic','Moshe Katzav',1450,'IL'); INSERT INTO Country VALUES ('ITA','Italy','Europe','Southern Europe',301316.00,1861,57680000,79.0,1161755.00,1145372.00,'Italia','Republic','Carlo Azeglio Ciampi',1464,'IT'); INSERT INTO Country VALUES ('JAM','Jamaica','North America','Caribbean',10990.00,1962,2583000,75.2,6871.00,6722.00,'Jamaica','Constitutional Monarchy','Elisabeth II',1530,'JM'); INSERT INTO Country VALUES ('JOR','Jordan','Asia','Middle East',88946.00,1946,5083000,77.4,7526.00,7051.00,'Al-Urdunn','Constitutional Monarchy','Abdullah II',1786,'JO'); INSERT INTO Country VALUES ('JPN','Japan','Asia','Eastern Asia',377829.00,-660,126714000,80.7,3787042.00,4192638.00,'Nihon/Nippon','Constitutional Monarchy','Akihito',1532,'JP'); INSERT INTO Country VALUES ('KAZ','Kazakstan','Asia','Southern and Central Asia',2724900.00,1991,16223000,63.2,24375.00,23383.00,'Qazaqstan','Republic','Nursultan Nazarbajev',1864,'KZ'); INSERT INTO Country VALUES ('KEN','Kenya','Africa','Eastern Africa',580367.00,1963,30080000,48.0,9217.00,10241.00,'Kenya','Republic','Daniel arap Moi',1881,'KE'); INSERT INTO Country VALUES ('KGZ','Kyrgyzstan','Asia','Southern and Central Asia',199900.00,1991,4699000,63.4,1626.00,1767.00,'Kyrgyzstan','Republic','Askar Akajev',2253,'KG'); INSERT INTO Country VALUES ('KHM','Cambodia','Asia','Southeast Asia',181035.00,1953,11168000,56.5,5121.00,5670.00,'Kâmpuchéa','Constitutional Monarchy','Norodom Sihanouk',1800,'KH'); INSERT INTO Country VALUES ('KIR','Kiribati','Oceania','Micronesia',726.00,1979,83000,59.8,40.70,NULL,'Kiribati','Republic','Teburoro Tito',2256,'KI'); INSERT INTO Country VALUES ('KNA','Saint Kitts and Nevis','North America','Caribbean',261.00,1983,38000,70.7,299.00,NULL,'Saint Kitts and Nevis','Constitutional Monarchy','Elisabeth II',3064,'KN'); INSERT INTO Country VALUES ('KOR','South Korea','Asia','Eastern Asia',99434.00,1948,46844000,74.4,320749.00,442544.00,'Taehan Min’guk (Namhan)','Republic','Kim Dae-jung',2331,'KR'); INSERT INTO Country VALUES ('KWT','Kuwait','Asia','Middle East',17818.00,1961,1972000,76.1,27037.00,30373.00,'Al-Kuwayt','Constitutional Monarchy (Emirate)','Jabir al-Ahmad al-Jabir al-Sabah',2429,'KW'); INSERT INTO Country VALUES ('LAO','Laos','Asia','Southeast Asia',236800.00,1953,5433000,53.1,1292.00,1746.00,'Lao','Republic','Khamtay Siphandone',2432,'LA'); INSERT INTO Country VALUES ('LBN','Lebanon','Asia','Middle East',10400.00,1941,3282000,71.3,17121.00,15129.00,'Lubnan','Republic','Émile Lahoud',2438,'LB'); INSERT INTO Country VALUES ('LBR','Liberia','Africa','Western Africa',111369.00,1847,3154000,51.0,2012.00,NULL,'Liberia','Republic','Charles Taylor',2440,'LR'); INSERT INTO Country VALUES ('LBY','Libyan Arab Jamahiriya','Africa','Northern Africa',1759540.00,1951,5605000,75.5,44806.00,40562.00,'Libiya','Socialistic State','Muammar al-Qadhafi',2441,'LY'); INSERT INTO Country VALUES ('LCA','Saint Lucia','North America','Caribbean',622.00,1979,154000,72.3,571.00,NULL,'Saint Lucia','Constitutional Monarchy','Elisabeth II',3065,'LC'); INSERT INTO Country VALUES ('LIE','Liechtenstein','Europe','Western Europe',160.00,1806,32300,78.8,1119.00,1084.00,'Liechtenstein','Constitutional Monarchy','Hans-Adam II',2446,'LI'); INSERT INTO Country VALUES ('LKA','Sri Lanka','Asia','Southern and Central Asia',65610.00,1948,18827000,71.8,15706.00,15091.00,'Sri Lanka/Ilankai','Republic','Chandrika Kumaratunga',3217,'LK'); INSERT INTO Country VALUES ('LSO','Lesotho','Africa','Southern Africa',30355.00,1966,2153000,50.8,1061.00,1161.00,'Lesotho','Constitutional Monarchy','Letsie III',2437,'LS'); INSERT INTO Country VALUES ('LTU','Lithuania','Europe','Baltic Countries',65301.00,1991,3698500,69.1,10692.00,9585.00,'Lietuva','Republic','Valdas Adamkus',2447,'LT'); INSERT INTO Country VALUES ('LUX','Luxembourg','Europe','Western Europe',2586.00,1867,435700,77.1,16321.00,15519.00,'Luxembourg/Lëtzebuerg','Constitutional Monarchy','Henri',2452,'LU'); INSERT INTO Country VALUES ('LVA','Latvia','Europe','Baltic Countries',64589.00,1991,2424200,68.4,6398.00,5639.00,'Latvija','Republic','Vaira Vike-Freiberga',2434,'LV'); INSERT INTO Country VALUES ('MAC','Macao','Asia','Eastern Asia',18.00,NULL,473000,81.6,5749.00,5940.00,'Macau/Aomen','Special Administrative Region of China','Jiang Zemin',2454,'MO'); INSERT INTO Country VALUES ('MAR','Morocco','Africa','Northern Africa',446550.00,1956,28351000,69.1,36124.00,33514.00,'Al-Maghrib','Constitutional Monarchy','Mohammed VI',2486,'MA'); INSERT INTO Country VALUES ('MCO','Monaco','Europe','Western Europe',1.50,1861,34000,78.8,776.00,NULL,'Monaco','Constitutional Monarchy','Rainier III',2695,'MC'); INSERT INTO Country VALUES ('MDA','Moldova','Europe','Eastern Europe',33851.00,1991,4380000,64.5,1579.00,1872.00,'Moldova','Republic','Vladimir Voronin',2690,'MD'); INSERT INTO Country VALUES ('MDG','Madagascar','Africa','Eastern Africa',587041.00,1960,15942000,55.0,3750.00,3545.00,'Madagasikara/Madagascar','Federal Republic','Didier Ratsiraka',2455,'MG'); INSERT INTO Country VALUES ('MDV','Maldives','Asia','Southern and Central Asia',298.00,1965,286000,62.2,199.00,NULL,'Dhivehi Raajje/Maldives','Republic','Maumoon Abdul Gayoom',2463,'MV'); INSERT INTO Country VALUES ('MEX','Mexico','North America','Central America',1958201.00,1810,98881000,71.5,414972.00,401461.00,'México','Federal Republic','Vicente Fox Quesada',2515,'MX'); INSERT INTO Country VALUES ('MHL','Marshall Islands','Oceania','Micronesia',181.00,1990,64000,65.5,97.00,NULL,'Marshall Islands/Majol','Republic','Kessai Note',2507,'MH'); INSERT INTO Country VALUES ('MKD','Macedonia','Europe','Southern Europe',25713.00,1991,2024000,73.8,1694.00,1915.00,'Makedonija','Republic','Boris Trajkovski',2460,'MK'); INSERT INTO Country VALUES ('MLI','Mali','Africa','Western Africa',1240192.00,1960,11234000,46.7,2642.00,2453.00,'Mali','Republic','Alpha Oumar Konaré',2482,'ML'); INSERT INTO Country VALUES ('MLT','Malta','Europe','Southern Europe',316.00,1964,380200,77.9,3512.00,3338.00,'Malta','Republic','Guido de Marco',2484,'MT'); INSERT INTO Country VALUES ('MMR','Myanmar','Asia','Southeast Asia',676578.00,1948,45611000,54.9,180375.00,171028.00,'Myanma Pye','Republic','kenraali Than Shwe',2710,'MM'); INSERT INTO Country VALUES ('MNG','Mongolia','Asia','Eastern Asia',1566500.00,1921,2662000,67.3,1043.00,933.00,'Mongol Uls','Republic','Natsagiin Bagabandi',2696,'MN'); INSERT INTO Country VALUES ('MNP','Northern Mariana Islands','Oceania','Micronesia',464.00,NULL,78000,75.5,0.00,NULL,'Northern Mariana Islands','Commonwealth of the US','George W. Bush',2913,'MP'); INSERT INTO Country VALUES ('MOZ','Mozambique','Africa','Eastern Africa',801590.00,1975,19680000,37.5,2891.00,2711.00,'Moçambique','Republic','Joaquím A. Chissano',2698,'MZ'); INSERT INTO Country VALUES ('MRT','Mauritania','Africa','Western Africa',1025520.00,1960,2670000,50.8,998.00,1081.00,'Muritaniya/Mauritanie','Republic','Maaouiya Ould Sid´Ahmad Taya',2509,'MR'); INSERT INTO Country VALUES ('MSR','Montserrat','North America','Caribbean',102.00,NULL,11000,78.0,109.00,NULL,'Montserrat','Dependent Territory of the UK','Elisabeth II',2697,'MS'); INSERT INTO Country VALUES ('MTQ','Martinique','North America','Caribbean',1102.00,NULL,395000,78.3,2731.00,2559.00,'Martinique','Overseas Department of France','Jacques Chirac',2508,'MQ'); INSERT INTO Country VALUES ('MUS','Mauritius','Africa','Eastern Africa',2040.00,1968,1158000,71.0,4251.00,4186.00,'Mauritius','Republic','Cassam Uteem',2511,'MU'); INSERT INTO Country VALUES ('MWI','Malawi','Africa','Eastern Africa',118484.00,1964,10925000,37.6,1687.00,2527.00,'Malawi','Republic','Bakili Muluzi',2462,'MW'); INSERT INTO Country VALUES ('MYS','Malaysia','Asia','Southeast Asia',329758.00,1957,22244000,70.8,69213.00,97884.00,'Malaysia','Constitutional Monarchy, Federation','Salahuddin Abdul Aziz Shah Alhaj',2464,'MY'); INSERT INTO Country VALUES ('MYT','Mayotte','Africa','Eastern Africa',373.00,NULL,149000,59.5,0.00,NULL,'Mayotte','Territorial Collectivity of France','Jacques Chirac',2514,'YT'); INSERT INTO Country VALUES ('NAM','Namibia','Africa','Southern Africa',824292.00,1990,1726000,42.5,3101.00,3384.00,'Namibia','Republic','Sam Nujoma',2726,'NA'); INSERT INTO Country VALUES ('NCL','New Caledonia','Oceania','Melanesia',18575.00,NULL,214000,72.8,3563.00,NULL,'Nouvelle-Calédonie','Nonmetropolitan Territory of France','Jacques Chirac',3493,'NC'); INSERT INTO Country VALUES ('NER','Niger','Africa','Western Africa',1267000.00,1960,10730000,41.3,1706.00,1580.00,'Niger','Republic','Mamadou Tandja',2738,'NE'); INSERT INTO Country VALUES ('NFK','Norfolk Island','Oceania','Australia and New Zealand',36.00,NULL,2000,NULL,0.00,NULL,'Norfolk Island','Territory of Australia','Elisabeth II',2806,'NF'); INSERT INTO Country VALUES ('NGA','Nigeria','Africa','Western Africa',923768.00,1960,111506000,51.6,65707.00,58623.00,'Nigeria','Federal Republic','Olusegun Obasanjo',2754,'NG'); INSERT INTO Country VALUES ('NIC','Nicaragua','North America','Central America',130000.00,1838,5074000,68.7,1988.00,2023.00,'Nicaragua','Republic','Arnoldo Alemán Lacayo',2734,'NI'); INSERT INTO Country VALUES ('NIU','Niue','Oceania','Polynesia',260.00,NULL,2000,NULL,0.00,NULL,'Niue','Nonmetropolitan Territory of New Zealand','Elisabeth II',2805,'NU'); INSERT INTO Country VALUES ('NLD','Netherlands','Europe','Western Europe',41526.00,1581,15864000,78.3,371362.00,360478.00,'Nederland','Constitutional Monarchy','Beatrix',5,'NL'); INSERT INTO Country VALUES ('NOR','Norway','Europe','Nordic Countries',323877.00,1905,4478500,78.7,145895.00,153370.00,'Norge','Constitutional Monarchy','Harald V',2807,'NO'); INSERT INTO Country VALUES ('NPL','Nepal','Asia','Southern and Central Asia',147181.00,1769,23930000,57.8,4768.00,4837.00,'Nepal','Constitutional Monarchy','Gyanendra Bir Bikram',2729,'NP'); INSERT INTO Country VALUES ('NRU','Nauru','Oceania','Micronesia',21.00,1968,12000,60.8,197.00,NULL,'Naoero/Nauru','Republic','Bernard Dowiyogo',2728,'NR'); INSERT INTO Country VALUES ('NZL','New Zealand','Oceania','Australia and New Zealand',270534.00,1907,3862000,77.8,54669.00,64960.00,'New Zealand/Aotearoa','Constitutional Monarchy','Elisabeth II',3499,'NZ'); INSERT INTO Country VALUES ('OMN','Oman','Asia','Middle East',309500.00,1951,2542000,71.8,16904.00,16153.00,'´Uman','Monarchy (Sultanate)','Qabus ibn Sa´id',2821,'OM'); INSERT INTO Country VALUES ('PAK','Pakistan','Asia','Southern and Central Asia',796095.00,1947,156483000,61.1,61289.00,58549.00,'Pakistan','Republic','Mohammad Rafiq Tarar',2831,'PK'); INSERT INTO Country VALUES ('PAN','Panama','North America','Central America',75517.00,1903,2856000,75.5,9131.00,8700.00,'Panamá','Republic','Mireya Elisa Moscoso Rodríguez',2882,'PA'); INSERT INTO Country VALUES ('PCN','Pitcairn','Oceania','Polynesia',49.00,NULL,50,NULL,0.00,NULL,'Pitcairn','Dependent Territory of the UK','Elisabeth II',2912,'PN'); INSERT INTO Country VALUES ('PER','Peru','South America','South America',1285216.00,1821,25662000,70.0,64140.00,65186.00,'Perú/Piruw','Republic','Valentin Paniagua Corazao',2890,'PE'); INSERT INTO Country VALUES ('PHL','Philippines','Asia','Southeast Asia',300000.00,1946,75967000,67.5,65107.00,82239.00,'Pilipinas','Republic','Gloria Macapagal-Arroyo',766,'PH'); INSERT INTO Country VALUES ('PLW','Palau','Oceania','Micronesia',459.00,1994,19000,68.6,105.00,NULL,'Belau/Palau','Republic','Kuniwo Nakamura',2881,'PW'); INSERT INTO Country VALUES ('PNG','Papua New Guinea','Oceania','Melanesia',462840.00,1975,4807000,63.1,4988.00,6328.00,'Papua New Guinea/Papua Niugini','Constitutional Monarchy','Elisabeth II',2884,'PG'); INSERT INTO Country VALUES ('POL','Poland','Europe','Eastern Europe',323250.00,1918,38653600,73.2,151697.00,135636.00,'Polska','Republic','Aleksander Kwasniewski',2928,'PL'); INSERT INTO Country VALUES ('PRI','Puerto Rico','North America','Caribbean',8875.00,NULL,3869000,75.6,34100.00,32100.00,'Puerto Rico','Commonwealth of the US','George W. Bush',2919,'PR'); INSERT INTO Country VALUES ('PRK','North Korea','Asia','Eastern Asia',120538.00,1948,24039000,70.7,5332.00,NULL,'Choson Minjujuui In´min Konghwaguk (Bukhan)','Socialistic Republic','Kim Jong-il',2318,'KP'); INSERT INTO Country VALUES ('PRT','Portugal','Europe','Southern Europe',91982.00,1143,9997600,75.8,105954.00,102133.00,'Portugal','Republic','Jorge Sampãio',2914,'PT'); INSERT INTO Country VALUES ('PRY','Paraguay','South America','South America',406752.00,1811,5496000,73.7,8444.00,9555.00,'Paraguay','Republic','Luis Ángel González Macchi',2885,'PY'); INSERT INTO Country VALUES ('PSE','Palestine','Asia','Middle East',6257.00,NULL,3101000,71.4,4173.00,NULL,'Filastin','Autonomous Area','Yasser (Yasir) Arafat',4074,'PS'); INSERT INTO Country VALUES ('PYF','French Polynesia','Oceania','Polynesia',4000.00,NULL,235000,74.8,818.00,781.00,'Polynésie française','Nonmetropolitan Territory of France','Jacques Chirac',3016,'PF'); INSERT INTO Country VALUES ('QAT','Qatar','Asia','Middle East',11000.00,1971,599000,72.4,9472.00,8920.00,'Qatar','Monarchy','Hamad ibn Khalifa al-Thani',2973,'QA'); INSERT INTO Country VALUES ('REU','Réunion','Africa','Eastern Africa',2510.00,NULL,699000,72.7,8287.00,7988.00,'Réunion','Overseas Department of France','Jacques Chirac',3017,'RE'); INSERT INTO Country VALUES ('ROM','Romania','Europe','Eastern Europe',238391.00,1878,22455500,69.9,38158.00,34843.00,'România','Republic','Ion Iliescu',3018,'RO'); INSERT INTO Country VALUES ('RUS','Russian Federation','Europe','Eastern Europe',17075400.00,1991,146934000,67.2,276608.00,442989.00,'Rossija','Federal Republic','Vladimir Putin',3580,'RU'); INSERT INTO Country VALUES ('RWA','Rwanda','Africa','Eastern Africa',26338.00,1962,7733000,39.3,2036.00,1863.00,'Rwanda/Urwanda','Republic','Paul Kagame',3047,'RW'); INSERT INTO Country VALUES ('SAU','Saudi Arabia','Asia','Middle East',2149690.00,1932,21607000,67.8,137635.00,146171.00,'Al-´Arabiya as-Sa´udiya','Monarchy','Fahd ibn Abdul-Aziz al-Sa´ud',3173,'SA'); INSERT INTO Country VALUES ('SDN','Sudan','Africa','Northern Africa',2505813.00,1956,29490000,56.6,10162.00,NULL,'As-Sudan','Islamic Republic','Omar Hassan Ahmad al-Bashir',3225,'SD'); INSERT INTO Country VALUES ('SEN','Senegal','Africa','Western Africa',196722.00,1960,9481000,62.2,4787.00,4542.00,'Sénégal/Sounougal','Republic','Abdoulaye Wade',3198,'SN'); INSERT INTO Country VALUES ('SGP','Singapore','Asia','Southeast Asia',618.00,1965,3567000,80.1,86503.00,96318.00,'Singapore/Singapura/Xinjiapo/Singapur','Republic','Sellapan Rama Nathan',3208,'SG'); INSERT INTO Country VALUES ('SGS','South Georgia and the South Sandwich Islands','Antarctica','Antarctica',3903.00,NULL,0,NULL,0.00,NULL,'South Georgia and the South Sandwich Islands','Dependent Territory of the UK','Elisabeth II',NULL,'GS'); INSERT INTO Country VALUES ('SHN','Saint Helena','Africa','Western Africa',314.00,NULL,6000,76.8,0.00,NULL,'Saint Helena','Dependent Territory of the UK','Elisabeth II',3063,'SH'); INSERT INTO Country VALUES ('SJM','Svalbard and Jan Mayen','Europe','Nordic Countries',62422.00,NULL,3200,NULL,0.00,NULL,'Svalbard og Jan Mayen','Dependent Territory of Norway','Harald V',938,'SJ'); INSERT INTO Country VALUES ('SLB','Solomon Islands','Oceania','Melanesia',28896.00,1978,444000,71.3,182.00,220.00,'Solomon Islands','Constitutional Monarchy','Elisabeth II',3161,'SB'); INSERT INTO Country VALUES ('SLE','Sierra Leone','Africa','Western Africa',71740.00,1961,4854000,45.3,746.00,858.00,'Sierra Leone','Republic','Ahmed Tejan Kabbah',3207,'SL'); INSERT INTO Country VALUES ('SLV','El Salvador','North America','Central America',21041.00,1841,6276000,69.7,11863.00,11203.00,'El Salvador','Republic','Francisco Guillermo Flores Pérez',645,'SV'); INSERT INTO Country VALUES ('SMR','San Marino','Europe','Southern Europe',61.00,885,27000,81.1,510.00,NULL,'San Marino','Republic',NULL,3171,'SM'); INSERT INTO Country VALUES ('SOM','Somalia','Africa','Eastern Africa',637657.00,1960,10097000,46.2,935.00,NULL,'Soomaaliya','Republic','Abdiqassim Salad Hassan',3214,'SO'); INSERT INTO Country VALUES ('SPM','Saint Pierre and Miquelon','North America','North America',242.00,NULL,7000,77.6,0.00,NULL,'Saint-Pierre-et-Miquelon','Territorial Collectivity of France','Jacques Chirac',3067,'PM'); INSERT INTO Country VALUES ('STP','Sao Tome and Principe','Africa','Central Africa',964.00,1975,147000,65.3,6.00,NULL,'São Tomé e Príncipe','Republic','Miguel Trovoada',3172,'ST'); INSERT INTO Country VALUES ('SUR','Suriname','South America','South America',163265.00,1975,417000,71.4,870.00,706.00,'Suriname','Republic','Ronald Venetiaan',3243,'SR'); INSERT INTO Country VALUES ('SVK','Slovakia','Europe','Eastern Europe',49012.00,1993,5398700,73.7,20594.00,19452.00,'Slovensko','Republic','Rudolf Schuster',3209,'SK'); INSERT INTO Country VALUES ('SVN','Slovenia','Europe','Southern Europe',20256.00,1991,1987800,74.9,19756.00,18202.00,'Slovenija','Republic','Milan Kucan',3212,'SI'); INSERT INTO Country VALUES ('SWE','Sweden','Europe','Nordic Countries',449964.00,836,8861400,79.6,226492.00,227757.00,'Sverige','Constitutional Monarchy','Carl XVI Gustaf',3048,'SE'); INSERT INTO Country VALUES ('SWZ','Swaziland','Africa','Southern Africa',17364.00,1968,1008000,40.4,1206.00,1312.00,'kaNgwane','Monarchy','Mswati III',3244,'SZ'); INSERT INTO Country VALUES ('SYC','Seychelles','Africa','Eastern Africa',455.00,1976,77000,70.4,536.00,539.00,'Sesel/Seychelles','Republic','France-Albert René',3206,'SC'); INSERT INTO Country VALUES ('SYR','Syria','Asia','Middle East',185180.00,1941,16125000,68.5,65984.00,64926.00,'Suriya','Republic','Bashar al-Assad',3250,'SY'); INSERT INTO Country VALUES ('TCA','Turks and Caicos Islands','North America','Caribbean',430.00,NULL,17000,73.3,96.00,NULL,'The Turks and Caicos Islands','Dependent Territory of the UK','Elisabeth II',3423,'TC'); INSERT INTO Country VALUES ('TCD','Chad','Africa','Central Africa',1284000.00,1960,7651000,50.5,1208.00,1102.00,'Tchad/Tshad','Republic','Idriss Déby',3337,'TD'); INSERT INTO Country VALUES ('TGO','Togo','Africa','Western Africa',56785.00,1960,4629000,54.7,1449.00,1400.00,'Togo','Republic','Gnassingbé Eyadéma',3332,'TG'); INSERT INTO Country VALUES ('THA','Thailand','Asia','Southeast Asia',513115.00,1350,61399000,68.6,116416.00,153907.00,'Prathet Thai','Constitutional Monarchy','Bhumibol Adulyadej',3320,'TH'); INSERT INTO Country VALUES ('TJK','Tajikistan','Asia','Southern and Central Asia',143100.00,1991,6188000,64.1,1990.00,1056.00,'Toçikiston','Republic','Emomali Rahmonov',3261,'TJ'); INSERT INTO Country VALUES ('TKL','Tokelau','Oceania','Polynesia',12.00,NULL,2000,NULL,0.00,NULL,'Tokelau','Nonmetropolitan Territory of New Zealand','Elisabeth II',3333,'TK'); INSERT INTO Country VALUES ('TKM','Turkmenistan','Asia','Southern and Central Asia',488100.00,1991,4459000,60.9,4397.00,2000.00,'Türkmenostan','Republic','Saparmurad Nijazov',3419,'TM'); INSERT INTO Country VALUES ('TMP','East Timor','Asia','Southeast Asia',14874.00,NULL,885000,46.0,0.00,NULL,'Timor Timur','Administrated by the UN','José Alexandre Gusmão',1522,'TP'); INSERT INTO Country VALUES ('TON','Tonga','Oceania','Polynesia',650.00,1970,99000,67.9,146.00,170.00,'Tonga','Monarchy','Taufa''ahau Tupou IV',3334,'TO'); INSERT INTO Country VALUES ('TTO','Trinidad and Tobago','North America','Caribbean',5130.00,1962,1295000,68.0,6232.00,5867.00,'Trinidad and Tobago','Republic','Arthur N. R. Robinson',3336,'TT'); INSERT INTO Country VALUES ('TUN','Tunisia','Africa','Northern Africa',163610.00,1956,9586000,73.7,20026.00,18898.00,'Tunis/Tunisie','Republic','Zine al-Abidine Ben Ali',3349,'TN'); INSERT INTO Country VALUES ('TUR','Turkey','Asia','Middle East',774815.00,1923,66591000,71.0,210721.00,189122.00,'Türkiye','Republic','Ahmet Necdet Sezer',3358,'TR'); INSERT INTO Country VALUES ('TUV','Tuvalu','Oceania','Polynesia',26.00,1978,12000,66.3,6.00,NULL,'Tuvalu','Constitutional Monarchy','Elisabeth II',3424,'TV'); INSERT INTO Country VALUES ('TWN','Taiwan','Asia','Eastern Asia',36188.00,1945,22256000,76.4,256254.00,263451.00,'T’ai-wan','Republic','Chen Shui-bian',3263,'TW'); INSERT INTO Country VALUES ('TZA','Tanzania','Africa','Eastern Africa',883749.00,1961,33517000,52.3,8005.00,7388.00,'Tanzania','Republic','Benjamin William Mkapa',3306,'TZ'); INSERT INTO Country VALUES ('UGA','Uganda','Africa','Eastern Africa',241038.00,1962,21778000,42.9,6313.00,6887.00,'Uganda','Republic','Yoweri Museveni',3425,'UG'); INSERT INTO Country VALUES ('UKR','Ukraine','Europe','Eastern Europe',603700.00,1991,50456000,66.0,42168.00,49677.00,'Ukrajina','Republic','Leonid Kutšma',3426,'UA'); INSERT INTO Country VALUES ('UMI','United States Minor Outlying Islands','Oceania','Micronesia/Caribbean',16.00,NULL,0,NULL,0.00,NULL,'United States Minor Outlying Islands','Dependent Territory of the US','George W. Bush',NULL,'UM'); INSERT INTO Country VALUES ('URY','Uruguay','South America','South America',175016.00,1828,3337000,75.2,20831.00,19967.00,'Uruguay','Republic','Jorge Batlle Ibáñez',3492,'UY'); INSERT INTO Country VALUES ('USA','United States','North America','North America',9363520.00,1776,278357000,77.1,8510700.00,8110900.00,'United States','Federal Republic','George W. Bush',3813,'US'); INSERT INTO Country VALUES ('UZB','Uzbekistan','Asia','Southern and Central Asia',447400.00,1991,24318000,63.7,14194.00,21300.00,'Uzbekiston','Republic','Islam Karimov',3503,'UZ'); INSERT INTO Country VALUES ('VAT','Holy See (Vatican City State)','Europe','Southern Europe',0.40,1929,1000,NULL,9.00,NULL,'Santa Sede/Città del Vaticano','Independent Church State','Johannes Paavali II',3538,'VA'); INSERT INTO Country VALUES ('VCT','Saint Vincent and the Grenadines','North America','Caribbean',388.00,1979,114000,72.3,285.00,NULL,'Saint Vincent and the Grenadines','Constitutional Monarchy','Elisabeth II',3066,'VC'); INSERT INTO Country VALUES ('VEN','Venezuela','South America','South America',912050.00,1811,24170000,73.1,95023.00,88434.00,'Venezuela','Federal Republic','Hugo Chávez Frías',3539,'VE'); INSERT INTO Country VALUES ('VGB','Virgin Islands, British','North America','Caribbean',151.00,NULL,21000,75.4,612.00,573.00,'British Virgin Islands','Dependent Territory of the UK','Elisabeth II',537,'VG'); INSERT INTO Country VALUES ('VIR','Virgin Islands, U.S.','North America','Caribbean',347.00,NULL,93000,78.1,0.00,NULL,'Virgin Islands of the United States','US Territory','George W. Bush',4067,'VI'); INSERT INTO Country VALUES ('VNM','Vietnam','Asia','Southeast Asia',331689.00,1945,79832000,69.3,21929.00,22834.00,'Viêt Nam','Socialistic Republic','Trân Duc Luong',3770,'VN'); INSERT INTO Country VALUES ('VUT','Vanuatu','Oceania','Melanesia',12189.00,1980,190000,60.6,261.00,246.00,'Vanuatu','Republic','John Bani',3537,'VU'); INSERT INTO Country VALUES ('WLF','Wallis and Futuna','Oceania','Polynesia',200.00,NULL,15000,NULL,0.00,NULL,'Wallis-et-Futuna','Nonmetropolitan Territory of France','Jacques Chirac',3536,'WF'); INSERT INTO Country VALUES ('WSM','Samoa','Oceania','Polynesia',2831.00,1962,180000,69.2,141.00,157.00,'Samoa','Parlementary Monarchy','Malietoa Tanumafili II',3169,'WS'); INSERT INTO Country VALUES ('YEM','Yemen','Asia','Middle East',527968.00,1918,18112000,59.8,6041.00,5729.00,'Al-Yaman','Republic','Ali Abdallah Salih',1780,'YE'); INSERT INTO Country VALUES ('YUG','Yugoslavia','Europe','Southern Europe',102173.00,1918,10640000,72.4,17000.00,NULL,'Jugoslavija','Federal Republic','Vojislav Koštunica',1792,'YU'); INSERT INTO Country VALUES ('ZAF','South Africa','Africa','Southern Africa',1221037.00,1910,40377000,51.1,116729.00,129092.00,'South Africa','Republic','Thabo Mbeki',716,'ZA'); INSERT INTO Country VALUES ('ZMB','Zambia','Africa','Eastern Africa',752618.00,1964,9169000,37.2,3377.00,3922.00,'Zambia','Republic','Frederick Chiluba',3162,'ZM'); INSERT INTO Country VALUES ('ZWE','Zimbabwe','Africa','Eastern Africa',390757.00,1980,11669000,37.8,5951.00,8670.00,'Zimbabwe','Republic','Robert G. Mugabe',4068,'ZW'); -- -- Table structure for table CountryLanguage -- DROP TABLE IF EXISTS CountryLanguage; CREATE TABLE CountryLanguage ( CountryCode char(3) NOT NULL default '', Language varchar(30) NOT NULL default '', IsOfficial boolean NOT NULL default 'false', Percentage float NOT NULL default '0.0', PRIMARY KEY (CountryCode,Language) ) ; -- -- Dumping data for table CountryLanguage -- -- ORDER BY: CountryCode,Language INSERT INTO CountryLanguage VALUES ('ABW','Dutch','T',5.3); INSERT INTO CountryLanguage VALUES ('ABW','English','F',9.5); INSERT INTO CountryLanguage VALUES ('ABW','Papiamento','F',76.7); INSERT INTO CountryLanguage VALUES ('ABW','Spanish','F',7.4); INSERT INTO CountryLanguage VALUES ('AFG','Balochi','F',0.9); INSERT INTO CountryLanguage VALUES ('AFG','Dari','T',32.1); INSERT INTO CountryLanguage VALUES ('AFG','Pashto','T',52.4); INSERT INTO CountryLanguage VALUES ('AFG','Turkmenian','F',1.9); INSERT INTO CountryLanguage VALUES ('AFG','Uzbek','F',8.8); INSERT INTO CountryLanguage VALUES ('AGO','Ambo','F',2.4); INSERT INTO CountryLanguage VALUES ('AGO','Chokwe','F',4.2); INSERT INTO CountryLanguage VALUES ('AGO','Kongo','F',13.2); INSERT INTO CountryLanguage VALUES ('AGO','Luchazi','F',2.4); INSERT INTO CountryLanguage VALUES ('AGO','Luimbe-nganguela','F',5.4); INSERT INTO CountryLanguage VALUES ('AGO','Luvale','F',3.6); INSERT INTO CountryLanguage VALUES ('AGO','Mbundu','F',21.6); INSERT INTO CountryLanguage VALUES ('AGO','Nyaneka-nkhumbi','F',5.4); INSERT INTO CountryLanguage VALUES ('AGO','Ovimbundu','F',37.2); INSERT INTO CountryLanguage VALUES ('AIA','English','T',0.0); INSERT INTO CountryLanguage VALUES ('ALB','Albaniana','T',97.9); INSERT INTO CountryLanguage VALUES ('ALB','Greek','F',1.8); INSERT INTO CountryLanguage VALUES ('ALB','Macedonian','F',0.1); INSERT INTO CountryLanguage VALUES ('AND','Catalan','T',32.3); INSERT INTO CountryLanguage VALUES ('AND','French','F',6.2); INSERT INTO CountryLanguage VALUES ('AND','Portuguese','F',10.8); INSERT INTO CountryLanguage VALUES ('AND','Spanish','F',44.6); INSERT INTO CountryLanguage VALUES ('ANT','Dutch','T',0.0); INSERT INTO CountryLanguage VALUES ('ANT','English','F',7.8); INSERT INTO CountryLanguage VALUES ('ANT','Papiamento','T',86.2); INSERT INTO CountryLanguage VALUES ('ARE','Arabic','T',42.0); INSERT INTO CountryLanguage VALUES ('ARE','Hindi','F',0.0); INSERT INTO CountryLanguage VALUES ('ARG','Indian Languages','F',0.3); INSERT INTO CountryLanguage VALUES ('ARG','Italian','F',1.7); INSERT INTO CountryLanguage VALUES ('ARG','Spanish','T',96.8); INSERT INTO CountryLanguage VALUES ('ARM','Armenian','T',93.4); INSERT INTO CountryLanguage VALUES ('ARM','Azerbaijani','F',2.6); INSERT INTO CountryLanguage VALUES ('ASM','English','T',3.1); INSERT INTO CountryLanguage VALUES ('ASM','Samoan','T',90.6); INSERT INTO CountryLanguage VALUES ('ASM','Tongan','F',3.1); INSERT INTO CountryLanguage VALUES ('ATG','Creole English','F',95.7); INSERT INTO CountryLanguage VALUES ('ATG','English','T',0.0); INSERT INTO CountryLanguage VALUES ('AUS','Arabic','F',1.0); INSERT INTO CountryLanguage VALUES ('AUS','Canton Chinese','F',1.1); INSERT INTO CountryLanguage VALUES ('AUS','English','T',81.2); INSERT INTO CountryLanguage VALUES ('AUS','German','F',0.6); INSERT INTO CountryLanguage VALUES ('AUS','Greek','F',1.6); INSERT INTO CountryLanguage VALUES ('AUS','Italian','F',2.2); INSERT INTO CountryLanguage VALUES ('AUS','Serbo-Croatian','F',0.6); INSERT INTO CountryLanguage VALUES ('AUS','Vietnamese','F',0.8); INSERT INTO CountryLanguage VALUES ('AUT','Czech','F',0.2); INSERT INTO CountryLanguage VALUES ('AUT','German','T',92.0); INSERT INTO CountryLanguage VALUES ('AUT','Hungarian','F',0.4); INSERT INTO CountryLanguage VALUES ('AUT','Polish','F',0.2); INSERT INTO CountryLanguage VALUES ('AUT','Romanian','F',0.2); INSERT INTO CountryLanguage VALUES ('AUT','Serbo-Croatian','F',2.2); INSERT INTO CountryLanguage VALUES ('AUT','Slovene','F',0.4); INSERT INTO CountryLanguage VALUES ('AUT','Turkish','F',1.5); INSERT INTO CountryLanguage VALUES ('AZE','Armenian','F',2.0); INSERT INTO CountryLanguage VALUES ('AZE','Azerbaijani','T',89.0); INSERT INTO CountryLanguage VALUES ('AZE','Lezgian','F',2.3); INSERT INTO CountryLanguage VALUES ('AZE','Russian','F',3.0); INSERT INTO CountryLanguage VALUES ('BDI','French','T',0.0); INSERT INTO CountryLanguage VALUES ('BDI','Kirundi','T',98.1); INSERT INTO CountryLanguage VALUES ('BDI','Swahili','F',0.0); INSERT INTO CountryLanguage VALUES ('BEL','Arabic','F',1.6); INSERT INTO CountryLanguage VALUES ('BEL','Dutch','T',59.2); INSERT INTO CountryLanguage VALUES ('BEL','French','T',32.6); INSERT INTO CountryLanguage VALUES ('BEL','German','T',1.0); INSERT INTO CountryLanguage VALUES ('BEL','Italian','F',2.4); INSERT INTO CountryLanguage VALUES ('BEL','Turkish','F',0.9); INSERT INTO CountryLanguage VALUES ('BEN','Adja','F',11.1); INSERT INTO CountryLanguage VALUES ('BEN','Aizo','F',8.7); INSERT INTO CountryLanguage VALUES ('BEN','Bariba','F',8.7); INSERT INTO CountryLanguage VALUES ('BEN','Fon','F',39.8); INSERT INTO CountryLanguage VALUES ('BEN','Ful','F',5.6); INSERT INTO CountryLanguage VALUES ('BEN','Joruba','F',12.2); INSERT INTO CountryLanguage VALUES ('BEN','Somba','F',6.7); INSERT INTO CountryLanguage VALUES ('BFA','Busansi','F',3.5); INSERT INTO CountryLanguage VALUES ('BFA','Dagara','F',3.1); INSERT INTO CountryLanguage VALUES ('BFA','Dyula','F',2.6); INSERT INTO CountryLanguage VALUES ('BFA','Ful','F',9.7); INSERT INTO CountryLanguage VALUES ('BFA','Gurma','F',5.7); INSERT INTO CountryLanguage VALUES ('BFA','Mossi','F',50.2); INSERT INTO CountryLanguage VALUES ('BGD','Bengali','T',97.7); INSERT INTO CountryLanguage VALUES ('BGD','Chakma','F',0.4); INSERT INTO CountryLanguage VALUES ('BGD','Garo','F',0.1); INSERT INTO CountryLanguage VALUES ('BGD','Khasi','F',0.1); INSERT INTO CountryLanguage VALUES ('BGD','Marma','F',0.2); INSERT INTO CountryLanguage VALUES ('BGD','Santhali','F',0.1); INSERT INTO CountryLanguage VALUES ('BGD','Tripuri','F',0.1); INSERT INTO CountryLanguage VALUES ('BGR','Bulgariana','T',83.2); INSERT INTO CountryLanguage VALUES ('BGR','Macedonian','F',2.6); INSERT INTO CountryLanguage VALUES ('BGR','Romani','F',3.7); INSERT INTO CountryLanguage VALUES ('BGR','Turkish','F',9.4); INSERT INTO CountryLanguage VALUES ('BHR','Arabic','T',67.7); INSERT INTO CountryLanguage VALUES ('BHR','English','F',0.0); INSERT INTO CountryLanguage VALUES ('BHS','Creole English','F',89.7); INSERT INTO CountryLanguage VALUES ('BHS','Creole French','F',10.3); INSERT INTO CountryLanguage VALUES ('BIH','Serbo-Croatian','T',99.2); INSERT INTO CountryLanguage VALUES ('BLR','Belorussian','T',65.6); INSERT INTO CountryLanguage VALUES ('BLR','Polish','F',0.6); INSERT INTO CountryLanguage VALUES ('BLR','Russian','T',32.0); INSERT INTO CountryLanguage VALUES ('BLR','Ukrainian','F',1.3); INSERT INTO CountryLanguage VALUES ('BLZ','English','T',50.8); INSERT INTO CountryLanguage VALUES ('BLZ','Garifuna','F',6.8); INSERT INTO CountryLanguage VALUES ('BLZ','Maya Languages','F',9.6); INSERT INTO CountryLanguage VALUES ('BLZ','Spanish','F',31.6); INSERT INTO CountryLanguage VALUES ('BMU','English','T',100.0); INSERT INTO CountryLanguage VALUES ('BOL','Aimará','T',3.2); INSERT INTO CountryLanguage VALUES ('BOL','Guaraní','F',0.1); INSERT INTO CountryLanguage VALUES ('BOL','Ketšua','T',8.1); INSERT INTO CountryLanguage VALUES ('BOL','Spanish','T',87.7); INSERT INTO CountryLanguage VALUES ('BRA','German','F',0.5); INSERT INTO CountryLanguage VALUES ('BRA','Indian Languages','F',0.2); INSERT INTO CountryLanguage VALUES ('BRA','Italian','F',0.4); INSERT INTO CountryLanguage VALUES ('BRA','Japanese','F',0.4); INSERT INTO CountryLanguage VALUES ('BRA','Portuguese','T',97.5); INSERT INTO CountryLanguage VALUES ('BRB','Bajan','F',95.1); INSERT INTO CountryLanguage VALUES ('BRB','English','T',0.0); INSERT INTO CountryLanguage VALUES ('BRN','Chinese','F',9.3); INSERT INTO CountryLanguage VALUES ('BRN','English','F',3.1); INSERT INTO CountryLanguage VALUES ('BRN','Malay','T',45.5); INSERT INTO CountryLanguage VALUES ('BRN','Malay-English','F',28.8); INSERT INTO CountryLanguage VALUES ('BTN','Asami','F',15.2); INSERT INTO CountryLanguage VALUES ('BTN','Dzongkha','T',50.0); INSERT INTO CountryLanguage VALUES ('BTN','Nepali','F',34.8); INSERT INTO CountryLanguage VALUES ('BWA','Khoekhoe','F',2.5); INSERT INTO CountryLanguage VALUES ('BWA','Ndebele','F',1.3); INSERT INTO CountryLanguage VALUES ('BWA','San','F',3.5); INSERT INTO CountryLanguage VALUES ('BWA','Shona','F',12.3); INSERT INTO CountryLanguage VALUES ('BWA','Tswana','F',75.5); INSERT INTO CountryLanguage VALUES ('CAF','Banda','F',23.5); INSERT INTO CountryLanguage VALUES ('CAF','Gbaya','F',23.8); INSERT INTO CountryLanguage VALUES ('CAF','Mandjia','F',14.8); INSERT INTO CountryLanguage VALUES ('CAF','Mbum','F',6.4); INSERT INTO CountryLanguage VALUES ('CAF','Ngbaka','F',7.5); INSERT INTO CountryLanguage VALUES ('CAF','Sara','F',6.4); INSERT INTO CountryLanguage VALUES ('CAN','Chinese','F',2.5); INSERT INTO CountryLanguage VALUES ('CAN','Dutch','F',0.5); INSERT INTO CountryLanguage VALUES ('CAN','English','T',60.4); INSERT INTO CountryLanguage VALUES ('CAN','Eskimo Languages','F',0.1); INSERT INTO CountryLanguage VALUES ('CAN','French','T',23.4); INSERT INTO CountryLanguage VALUES ('CAN','German','F',1.6); INSERT INTO CountryLanguage VALUES ('CAN','Italian','F',1.7); INSERT INTO CountryLanguage VALUES ('CAN','Polish','F',0.7); INSERT INTO CountryLanguage VALUES ('CAN','Portuguese','F',0.7); INSERT INTO CountryLanguage VALUES ('CAN','Punjabi','F',0.7); INSERT INTO CountryLanguage VALUES ('CAN','Spanish','F',0.7); INSERT INTO CountryLanguage VALUES ('CAN','Ukrainian','F',0.6); INSERT INTO CountryLanguage VALUES ('CCK','English','T',0.0); INSERT INTO CountryLanguage VALUES ('CCK','Malay','F',0.0); INSERT INTO CountryLanguage VALUES ('CHE','French','T',19.2); INSERT INTO CountryLanguage VALUES ('CHE','German','T',63.6); INSERT INTO CountryLanguage VALUES ('CHE','Italian','T',7.7); INSERT INTO CountryLanguage VALUES ('CHE','Romansh','T',0.6); INSERT INTO CountryLanguage VALUES ('CHL','Aimará','F',0.5); INSERT INTO CountryLanguage VALUES ('CHL','Araucan','F',9.6); INSERT INTO CountryLanguage VALUES ('CHL','Rapa nui','F',0.2); INSERT INTO CountryLanguage VALUES ('CHL','Spanish','T',89.7); INSERT INTO CountryLanguage VALUES ('CHN','Chinese','T',92.0); INSERT INTO CountryLanguage VALUES ('CHN','Dong','F',0.2); INSERT INTO CountryLanguage VALUES ('CHN','Hui','F',0.8); INSERT INTO CountryLanguage VALUES ('CHN','Mantšu','F',0.9); INSERT INTO CountryLanguage VALUES ('CHN','Miao','F',0.7); INSERT INTO CountryLanguage VALUES ('CHN','Mongolian','F',0.4); INSERT INTO CountryLanguage VALUES ('CHN','Puyi','F',0.2); INSERT INTO CountryLanguage VALUES ('CHN','Tibetan','F',0.4); INSERT INTO CountryLanguage VALUES ('CHN','Tujia','F',0.5); INSERT INTO CountryLanguage VALUES ('CHN','Uighur','F',0.6); INSERT INTO CountryLanguage VALUES ('CHN','Yi','F',0.6); INSERT INTO CountryLanguage VALUES ('CHN','Zhuang','F',1.4); INSERT INTO CountryLanguage VALUES ('CIV','Akan','F',30.0); INSERT INTO CountryLanguage VALUES ('CIV','Gur','F',11.7); INSERT INTO CountryLanguage VALUES ('CIV','Kru','F',10.5); INSERT INTO CountryLanguage VALUES ('CIV','Malinke','F',11.4); INSERT INTO CountryLanguage VALUES ('CIV','[South]Mande','F',7.7); INSERT INTO CountryLanguage VALUES ('CMR','Bamileke-bamum','F',18.6); INSERT INTO CountryLanguage VALUES ('CMR','Duala','F',10.9); INSERT INTO CountryLanguage VALUES ('CMR','Fang','F',19.7); INSERT INTO CountryLanguage VALUES ('CMR','Ful','F',9.6); INSERT INTO CountryLanguage VALUES ('CMR','Maka','F',4.9); INSERT INTO CountryLanguage VALUES ('CMR','Mandara','F',5.7); INSERT INTO CountryLanguage VALUES ('CMR','Masana','F',3.9); INSERT INTO CountryLanguage VALUES ('CMR','Tikar','F',7.4); INSERT INTO CountryLanguage VALUES ('COD','Boa','F',2.3); INSERT INTO CountryLanguage VALUES ('COD','Chokwe','F',1.8); INSERT INTO CountryLanguage VALUES ('COD','Kongo','F',16.0); INSERT INTO CountryLanguage VALUES ('COD','Luba','F',18.0); INSERT INTO CountryLanguage VALUES ('COD','Mongo','F',13.5); INSERT INTO CountryLanguage VALUES ('COD','Ngala and Bangi','F',5.8); INSERT INTO CountryLanguage VALUES ('COD','Rundi','F',3.8); INSERT INTO CountryLanguage VALUES ('COD','Rwanda','F',10.3); INSERT INTO CountryLanguage VALUES ('COD','Teke','F',2.7); INSERT INTO CountryLanguage VALUES ('COD','Zande','F',6.1); INSERT INTO CountryLanguage VALUES ('COG','Kongo','F',51.5); INSERT INTO CountryLanguage VALUES ('COG','Mbete','F',4.8); INSERT INTO CountryLanguage VALUES ('COG','Mboshi','F',11.4); INSERT INTO CountryLanguage VALUES ('COG','Punu','F',2.9); INSERT INTO CountryLanguage VALUES ('COG','Sango','F',2.6); INSERT INTO CountryLanguage VALUES ('COG','Teke','F',17.3); INSERT INTO CountryLanguage VALUES ('COK','English','F',0.0); INSERT INTO CountryLanguage VALUES ('COK','Maori','T',0.0); INSERT INTO CountryLanguage VALUES ('COL','Arawakan','F',0.1); INSERT INTO CountryLanguage VALUES ('COL','Caribbean','F',0.1); INSERT INTO CountryLanguage VALUES ('COL','Chibcha','F',0.4); INSERT INTO CountryLanguage VALUES ('COL','Creole English','F',0.1); INSERT INTO CountryLanguage VALUES ('COL','Spanish','T',99.0); INSERT INTO CountryLanguage VALUES ('COM','Comorian','T',75.0); INSERT INTO CountryLanguage VALUES ('COM','Comorian-Arabic','F',1.6); INSERT INTO CountryLanguage VALUES ('COM','Comorian-French','F',12.9); INSERT INTO CountryLanguage VALUES ('COM','Comorian-madagassi','F',5.5); INSERT INTO CountryLanguage VALUES ('COM','Comorian-Swahili','F',0.5); INSERT INTO CountryLanguage VALUES ('CPV','Crioulo','F',100.0); INSERT INTO CountryLanguage VALUES ('CPV','Portuguese','T',0.0); INSERT INTO CountryLanguage VALUES ('CRI','Chibcha','F',0.3); INSERT INTO CountryLanguage VALUES ('CRI','Chinese','F',0.2); INSERT INTO CountryLanguage VALUES ('CRI','Creole English','F',2.0); INSERT INTO CountryLanguage VALUES ('CRI','Spanish','T',97.5); INSERT INTO CountryLanguage VALUES ('CUB','Spanish','T',100.0); INSERT INTO CountryLanguage VALUES ('CXR','Chinese','F',0.0); INSERT INTO CountryLanguage VALUES ('CXR','English','T',0.0); INSERT INTO CountryLanguage VALUES ('CYM','English','T',0.0); INSERT INTO CountryLanguage VALUES ('CYP','Greek','T',74.1); INSERT INTO CountryLanguage VALUES ('CYP','Turkish','T',22.4); INSERT INTO CountryLanguage VALUES ('CZE','Czech','T',81.2); INSERT INTO CountryLanguage VALUES ('CZE','German','F',0.5); INSERT INTO CountryLanguage VALUES ('CZE','Hungarian','F',0.2); INSERT INTO CountryLanguage VALUES ('CZE','Moravian','F',12.9); INSERT INTO CountryLanguage VALUES ('CZE','Polish','F',0.6); INSERT INTO CountryLanguage VALUES ('CZE','Romani','F',0.3); INSERT INTO CountryLanguage VALUES ('CZE','Silesiana','F',0.4); INSERT INTO CountryLanguage VALUES ('CZE','Slovak','F',3.1); INSERT INTO CountryLanguage VALUES ('DEU','German','T',91.3); INSERT INTO CountryLanguage VALUES ('DEU','Greek','F',0.4); INSERT INTO CountryLanguage VALUES ('DEU','Italian','F',0.7); INSERT INTO CountryLanguage VALUES ('DEU','Polish','F',0.3); INSERT INTO CountryLanguage VALUES ('DEU','Southern Slavic Languages','F',1.4); INSERT INTO CountryLanguage VALUES ('DEU','Turkish','F',2.6); INSERT INTO CountryLanguage VALUES ('DJI','Afar','F',34.8); INSERT INTO CountryLanguage VALUES ('DJI','Arabic','T',10.6); INSERT INTO CountryLanguage VALUES ('DJI','Somali','F',43.9); INSERT INTO CountryLanguage VALUES ('DMA','Creole English','F',100.0); INSERT INTO CountryLanguage VALUES ('DMA','Creole French','F',0.0); INSERT INTO CountryLanguage VALUES ('DNK','Arabic','F',0.7); INSERT INTO CountryLanguage VALUES ('DNK','Danish','T',93.5); INSERT INTO CountryLanguage VALUES ('DNK','English','F',0.3); INSERT INTO CountryLanguage VALUES ('DNK','German','F',0.5); INSERT INTO CountryLanguage VALUES ('DNK','Norwegian','F',0.3); INSERT INTO CountryLanguage VALUES ('DNK','Swedish','F',0.3); INSERT INTO CountryLanguage VALUES ('DNK','Turkish','F',0.8); INSERT INTO CountryLanguage VALUES ('DOM','Creole French','F',2.0); INSERT INTO CountryLanguage VALUES ('DOM','Spanish','T',98.0); INSERT INTO CountryLanguage VALUES ('DZA','Arabic','T',86.0); INSERT INTO CountryLanguage VALUES ('DZA','Berberi','F',14.0); INSERT INTO CountryLanguage VALUES ('ECU','Ketšua','F',7.0); INSERT INTO CountryLanguage VALUES ('ECU','Spanish','T',93.0); INSERT INTO CountryLanguage VALUES ('EGY','Arabic','T',98.8); INSERT INTO CountryLanguage VALUES ('EGY','Sinaberberi','F',0.0); INSERT INTO CountryLanguage VALUES ('ERI','Afar','F',4.3); INSERT INTO CountryLanguage VALUES ('ERI','Bilin','F',3.0); INSERT INTO CountryLanguage VALUES ('ERI','Hadareb','F',3.8); INSERT INTO CountryLanguage VALUES ('ERI','Saho','F',3.0); INSERT INTO CountryLanguage VALUES ('ERI','Tigre','F',31.7); INSERT INTO CountryLanguage VALUES ('ERI','Tigrinja','T',49.1); INSERT INTO CountryLanguage VALUES ('ESH','Arabic','T',100.0); INSERT INTO CountryLanguage VALUES ('ESP','Basque','F',1.6); INSERT INTO CountryLanguage VALUES ('ESP','Catalan','F',16.9); INSERT INTO CountryLanguage VALUES ('ESP','Galecian','F',6.4); INSERT INTO CountryLanguage VALUES ('ESP','Spanish','T',74.4); INSERT INTO CountryLanguage VALUES ('EST','Belorussian','F',1.4); INSERT INTO CountryLanguage VALUES ('EST','Estonian','T',65.3); INSERT INTO CountryLanguage VALUES ('EST','Finnish','F',0.7); INSERT INTO CountryLanguage VALUES ('EST','Russian','F',27.8); INSERT INTO CountryLanguage VALUES ('EST','Ukrainian','F',2.8); INSERT INTO CountryLanguage VALUES ('ETH','Amhara','F',30.0); INSERT INTO CountryLanguage VALUES ('ETH','Gurage','F',4.7); INSERT INTO CountryLanguage VALUES ('ETH','Oromo','F',31.0); INSERT INTO CountryLanguage VALUES ('ETH','Sidamo','F',3.2); INSERT INTO CountryLanguage VALUES ('ETH','Somali','F',4.1); INSERT INTO CountryLanguage VALUES ('ETH','Tigrinja','F',7.2); INSERT INTO CountryLanguage VALUES ('ETH','Walaita','F',2.8); INSERT INTO CountryLanguage VALUES ('FIN','Estonian','F',0.2); INSERT INTO CountryLanguage VALUES ('FIN','Finnish','T',92.7); INSERT INTO CountryLanguage VALUES ('FIN','Russian','F',0.4); INSERT INTO CountryLanguage VALUES ('FIN','Saame','F',0.0); INSERT INTO CountryLanguage VALUES ('FIN','Swedish','T',5.7); INSERT INTO CountryLanguage VALUES ('FJI','Fijian','T',50.8); INSERT INTO CountryLanguage VALUES ('FJI','Hindi','F',43.7); INSERT INTO CountryLanguage VALUES ('FLK','English','T',0.0); INSERT INTO CountryLanguage VALUES ('FRA','Arabic','F',2.5); INSERT INTO CountryLanguage VALUES ('FRA','French','T',93.6); INSERT INTO CountryLanguage VALUES ('FRA','Italian','F',0.4); INSERT INTO CountryLanguage VALUES ('FRA','Portuguese','F',1.2); INSERT INTO CountryLanguage VALUES ('FRA','Spanish','F',0.4); INSERT INTO CountryLanguage VALUES ('FRA','Turkish','F',0.4); INSERT INTO CountryLanguage VALUES ('FRO','Danish','T',0.0); INSERT INTO CountryLanguage VALUES ('FRO','Faroese','T',100.0); INSERT INTO CountryLanguage VALUES ('FSM','Kosrean','F',7.3); INSERT INTO CountryLanguage VALUES ('FSM','Mortlock','F',7.6); INSERT INTO CountryLanguage VALUES ('FSM','Pohnpei','F',23.8); INSERT INTO CountryLanguage VALUES ('FSM','Trukese','F',41.6); INSERT INTO CountryLanguage VALUES ('FSM','Wolea','F',3.7); INSERT INTO CountryLanguage VALUES ('FSM','Yap','F',5.8); INSERT INTO CountryLanguage VALUES ('GAB','Fang','F',35.8); INSERT INTO CountryLanguage VALUES ('GAB','Mbete','F',13.8); INSERT INTO CountryLanguage VALUES ('GAB','Mpongwe','F',14.6); INSERT INTO CountryLanguage VALUES ('GAB','Punu-sira-nzebi','F',17.1); INSERT INTO CountryLanguage VALUES ('GBR','English','T',97.3); INSERT INTO CountryLanguage VALUES ('GBR','Gaeli','F',0.1); INSERT INTO CountryLanguage VALUES ('GBR','Kymri','F',0.9); INSERT INTO CountryLanguage VALUES ('GEO','Abhyasi','F',1.7); INSERT INTO CountryLanguage VALUES ('GEO','Armenian','F',6.8); INSERT INTO CountryLanguage VALUES ('GEO','Azerbaijani','F',5.5); INSERT INTO CountryLanguage VALUES ('GEO','Georgiana','T',71.7); INSERT INTO CountryLanguage VALUES ('GEO','Osseetti','F',2.4); INSERT INTO CountryLanguage VALUES ('GEO','Russian','F',8.8); INSERT INTO CountryLanguage VALUES ('GHA','Akan','F',52.4); INSERT INTO CountryLanguage VALUES ('GHA','Ewe','F',11.9); INSERT INTO CountryLanguage VALUES ('GHA','Ga-adangme','F',7.8); INSERT INTO CountryLanguage VALUES ('GHA','Gurma','F',3.3); INSERT INTO CountryLanguage VALUES ('GHA','Joruba','F',1.3); INSERT INTO CountryLanguage VALUES ('GHA','Mossi','F',15.8); INSERT INTO CountryLanguage VALUES ('GIB','Arabic','F',7.4); INSERT INTO CountryLanguage VALUES ('GIB','English','T',88.9); INSERT INTO CountryLanguage VALUES ('GIN','Ful','F',38.6); INSERT INTO CountryLanguage VALUES ('GIN','Kissi','F',6.0); INSERT INTO CountryLanguage VALUES ('GIN','Kpelle','F',4.6); INSERT INTO CountryLanguage VALUES ('GIN','Loma','F',2.3); INSERT INTO CountryLanguage VALUES ('GIN','Malinke','F',23.2); INSERT INTO CountryLanguage VALUES ('GIN','Susu','F',11.0); INSERT INTO CountryLanguage VALUES ('GIN','Yalunka','F',2.9); INSERT INTO CountryLanguage VALUES ('GLP','Creole French','F',95.0); INSERT INTO CountryLanguage VALUES ('GLP','French','T',0.0); INSERT INTO CountryLanguage VALUES ('GMB','Diola','F',9.2); INSERT INTO CountryLanguage VALUES ('GMB','Ful','F',16.2); INSERT INTO CountryLanguage VALUES ('GMB','Malinke','F',34.1); INSERT INTO CountryLanguage VALUES ('GMB','Soninke','F',7.6); INSERT INTO CountryLanguage VALUES ('GMB','Wolof','F',12.6); INSERT INTO CountryLanguage VALUES ('GNB','Balante','F',14.6); INSERT INTO CountryLanguage VALUES ('GNB','Crioulo','F',36.4); INSERT INTO CountryLanguage VALUES ('GNB','Ful','F',16.6); INSERT INTO CountryLanguage VALUES ('GNB','Malinke','F',6.9); INSERT INTO CountryLanguage VALUES ('GNB','Mandyako','F',4.9); INSERT INTO CountryLanguage VALUES ('GNB','Portuguese','T',8.1); INSERT INTO CountryLanguage VALUES ('GNQ','Bubi','F',8.7); INSERT INTO CountryLanguage VALUES ('GNQ','Fang','F',84.8); INSERT INTO CountryLanguage VALUES ('GRC','Greek','T',98.5); INSERT INTO CountryLanguage VALUES ('GRC','Turkish','F',0.9); INSERT INTO CountryLanguage VALUES ('GRD','Creole English','F',100.0); INSERT INTO CountryLanguage VALUES ('GRL','Danish','T',12.5); INSERT INTO CountryLanguage VALUES ('GRL','Greenlandic','T',87.5); INSERT INTO CountryLanguage VALUES ('GTM','Cakchiquel','F',8.9); INSERT INTO CountryLanguage VALUES ('GTM','Kekchí','F',4.9); INSERT INTO CountryLanguage VALUES ('GTM','Mam','F',2.7); INSERT INTO CountryLanguage VALUES ('GTM','Quiché','F',10.1); INSERT INTO CountryLanguage VALUES ('GTM','Spanish','T',64.7); INSERT INTO CountryLanguage VALUES ('GUF','Creole French','F',94.3); INSERT INTO CountryLanguage VALUES ('GUF','Indian Languages','F',1.9); INSERT INTO CountryLanguage VALUES ('GUM','Chamorro','T',29.6); INSERT INTO CountryLanguage VALUES ('GUM','English','T',37.5); INSERT INTO CountryLanguage VALUES ('GUM','Japanese','F',2.0); INSERT INTO CountryLanguage VALUES ('GUM','Korean','F',3.3); INSERT INTO CountryLanguage VALUES ('GUM','Philippene Languages','F',19.7); INSERT INTO CountryLanguage VALUES ('GUY','Arawakan','F',1.4); INSERT INTO CountryLanguage VALUES ('GUY','Caribbean','F',2.2); INSERT INTO CountryLanguage VALUES ('GUY','Creole English','F',96.4); INSERT INTO CountryLanguage VALUES ('HKG','Canton Chinese','F',88.7); INSERT INTO CountryLanguage VALUES ('HKG','Chiu chau','F',1.4); INSERT INTO CountryLanguage VALUES ('HKG','English','T',2.2); INSERT INTO CountryLanguage VALUES ('HKG','Fukien','F',1.9); INSERT INTO CountryLanguage VALUES ('HKG','Hakka','F',1.6); INSERT INTO CountryLanguage VALUES ('HND','Creole English','F',0.2); INSERT INTO CountryLanguage VALUES ('HND','Garifuna','F',1.3); INSERT INTO CountryLanguage VALUES ('HND','Miskito','F',0.2); INSERT INTO CountryLanguage VALUES ('HND','Spanish','T',97.2); INSERT INTO CountryLanguage VALUES ('HRV','Serbo-Croatian','T',95.9); INSERT INTO CountryLanguage VALUES ('HRV','Slovene','F',0.0); INSERT INTO CountryLanguage VALUES ('HTI','French','T',0.0); INSERT INTO CountryLanguage VALUES ('HTI','Haiti Creole','F',100.0); INSERT INTO CountryLanguage VALUES ('HUN','German','F',0.4); INSERT INTO CountryLanguage VALUES ('HUN','Hungarian','T',98.5); INSERT INTO CountryLanguage VALUES ('HUN','Romani','F',0.5); INSERT INTO CountryLanguage VALUES ('HUN','Romanian','F',0.1); INSERT INTO CountryLanguage VALUES ('HUN','Serbo-Croatian','F',0.2); INSERT INTO CountryLanguage VALUES ('HUN','Slovak','F',0.1); INSERT INTO CountryLanguage VALUES ('IDN','Bali','F',1.7); INSERT INTO CountryLanguage VALUES ('IDN','Banja','F',1.8); INSERT INTO CountryLanguage VALUES ('IDN','Batakki','F',2.2); INSERT INTO CountryLanguage VALUES ('IDN','Bugi','F',2.2); INSERT INTO CountryLanguage VALUES ('IDN','Javanese','F',39.4); INSERT INTO CountryLanguage VALUES ('IDN','Madura','F',4.3); INSERT INTO CountryLanguage VALUES ('IDN','Malay','T',12.1); INSERT INTO CountryLanguage VALUES ('IDN','Minangkabau','F',2.4); INSERT INTO CountryLanguage VALUES ('IDN','Sunda','F',15.8); INSERT INTO CountryLanguage VALUES ('IND','Asami','F',1.5); INSERT INTO CountryLanguage VALUES ('IND','Bengali','F',8.2); INSERT INTO CountryLanguage VALUES ('IND','Gujarati','F',4.8); INSERT INTO CountryLanguage VALUES ('IND','Hindi','T',39.9); INSERT INTO CountryLanguage VALUES ('IND','Kannada','F',3.9); INSERT INTO CountryLanguage VALUES ('IND','Malajalam','F',3.6); INSERT INTO CountryLanguage VALUES ('IND','Marathi','F',7.4); INSERT INTO CountryLanguage VALUES ('IND','Orija','F',3.3); INSERT INTO CountryLanguage VALUES ('IND','Punjabi','F',2.8); INSERT INTO CountryLanguage VALUES ('IND','Tamil','F',6.3); INSERT INTO CountryLanguage VALUES ('IND','Telugu','F',7.8); INSERT INTO CountryLanguage VALUES ('IND','Urdu','F',5.1); INSERT INTO CountryLanguage VALUES ('IRL','English','T',98.4); INSERT INTO CountryLanguage VALUES ('IRL','Irish','T',1.6); INSERT INTO CountryLanguage VALUES ('IRN','Arabic','F',2.2); INSERT INTO CountryLanguage VALUES ('IRN','Azerbaijani','F',16.8); INSERT INTO CountryLanguage VALUES ('IRN','Bakhtyari','F',1.7); INSERT INTO CountryLanguage VALUES ('IRN','Balochi','F',2.3); INSERT INTO CountryLanguage VALUES ('IRN','Gilaki','F',5.3); INSERT INTO CountryLanguage VALUES ('IRN','Kurdish','F',9.1); INSERT INTO CountryLanguage VALUES ('IRN','Luri','F',4.3); INSERT INTO CountryLanguage VALUES ('IRN','Mazandarani','F',3.6); INSERT INTO CountryLanguage VALUES ('IRN','Persian','T',45.7); INSERT INTO CountryLanguage VALUES ('IRN','Turkmenian','F',1.6); INSERT INTO CountryLanguage VALUES ('IRQ','Arabic','T',77.2); INSERT INTO CountryLanguage VALUES ('IRQ','Assyrian','F',0.8); INSERT INTO CountryLanguage VALUES ('IRQ','Azerbaijani','F',1.7); INSERT INTO CountryLanguage VALUES ('IRQ','Kurdish','F',19.0); INSERT INTO CountryLanguage VALUES ('IRQ','Persian','F',0.8); INSERT INTO CountryLanguage VALUES ('ISL','English','F',0.0); INSERT INTO CountryLanguage VALUES ('ISL','Icelandic','T',95.7); INSERT INTO CountryLanguage VALUES ('ISR','Arabic','T',18.0); INSERT INTO CountryLanguage VALUES ('ISR','Hebrew','T',63.1); INSERT INTO CountryLanguage VALUES ('ISR','Russian','F',8.9); INSERT INTO CountryLanguage VALUES ('ITA','Albaniana','F',0.2); INSERT INTO CountryLanguage VALUES ('ITA','French','F',0.5); INSERT INTO CountryLanguage VALUES ('ITA','Friuli','F',1.2); INSERT INTO CountryLanguage VALUES ('ITA','German','F',0.5); INSERT INTO CountryLanguage VALUES ('ITA','Italian','T',94.1); INSERT INTO CountryLanguage VALUES ('ITA','Romani','F',0.2); INSERT INTO CountryLanguage VALUES ('ITA','Sardinian','F',2.7); INSERT INTO CountryLanguage VALUES ('ITA','Slovene','F',0.2); INSERT INTO CountryLanguage VALUES ('JAM','Creole English','F',94.2); INSERT INTO CountryLanguage VALUES ('JAM','Hindi','F',1.9); INSERT INTO CountryLanguage VALUES ('JOR','Arabic','T',97.9); INSERT INTO CountryLanguage VALUES ('JOR','Armenian','F',1.0); INSERT INTO CountryLanguage VALUES ('JOR','Circassian','F',1.0); INSERT INTO CountryLanguage VALUES ('JPN','Ainu','F',0.0); INSERT INTO CountryLanguage VALUES ('JPN','Chinese','F',0.2); INSERT INTO CountryLanguage VALUES ('JPN','English','F',0.1); INSERT INTO CountryLanguage VALUES ('JPN','Japanese','T',99.1); INSERT INTO CountryLanguage VALUES ('JPN','Korean','F',0.5); INSERT INTO CountryLanguage VALUES ('JPN','Philippene Languages','F',0.1); INSERT INTO CountryLanguage VALUES ('KAZ','German','F',3.1); INSERT INTO CountryLanguage VALUES ('KAZ','Kazakh','T',46.0); INSERT INTO CountryLanguage VALUES ('KAZ','Russian','F',34.7); INSERT INTO CountryLanguage VALUES ('KAZ','Tatar','F',2.0); INSERT INTO CountryLanguage VALUES ('KAZ','Ukrainian','F',5.0); INSERT INTO CountryLanguage VALUES ('KAZ','Uzbek','F',2.3); INSERT INTO CountryLanguage VALUES ('KEN','Gusii','F',6.1); INSERT INTO CountryLanguage VALUES ('KEN','Kalenjin','F',10.8); INSERT INTO CountryLanguage VALUES ('KEN','Kamba','F',11.2); INSERT INTO CountryLanguage VALUES ('KEN','Kikuyu','F',20.9); INSERT INTO CountryLanguage VALUES ('KEN','Luhya','F',13.8); INSERT INTO CountryLanguage VALUES ('KEN','Luo','F',12.8); INSERT INTO CountryLanguage VALUES ('KEN','Masai','F',1.6); INSERT INTO CountryLanguage VALUES ('KEN','Meru','F',5.5); INSERT INTO CountryLanguage VALUES ('KEN','Nyika','F',4.8); INSERT INTO CountryLanguage VALUES ('KEN','Turkana','F',1.4); INSERT INTO CountryLanguage VALUES ('KGZ','Kazakh','F',0.8); INSERT INTO CountryLanguage VALUES ('KGZ','Kirgiz','T',59.7); INSERT INTO CountryLanguage VALUES ('KGZ','Russian','T',16.2); INSERT INTO CountryLanguage VALUES ('KGZ','Tadzhik','F',0.8); INSERT INTO CountryLanguage VALUES ('KGZ','Tatar','F',1.3); INSERT INTO CountryLanguage VALUES ('KGZ','Ukrainian','F',1.7); INSERT INTO CountryLanguage VALUES ('KGZ','Uzbek','F',14.1); INSERT INTO CountryLanguage VALUES ('KHM','Chinese','F',3.1); INSERT INTO CountryLanguage VALUES ('KHM','Khmer','T',88.6); INSERT INTO CountryLanguage VALUES ('KHM','Tšam','F',2.4); INSERT INTO CountryLanguage VALUES ('KHM','Vietnamese','F',5.5); INSERT INTO CountryLanguage VALUES ('KIR','Kiribati','T',98.9); INSERT INTO CountryLanguage VALUES ('KIR','Tuvalu','F',0.5); INSERT INTO CountryLanguage VALUES ('KNA','Creole English','F',100.0); INSERT INTO CountryLanguage VALUES ('KNA','English','T',0.0); INSERT INTO CountryLanguage VALUES ('KOR','Chinese','F',0.1); INSERT INTO CountryLanguage VALUES ('KOR','Korean','T',99.9); INSERT INTO CountryLanguage VALUES ('KWT','Arabic','T',78.1); INSERT INTO CountryLanguage VALUES ('KWT','English','F',0.0); INSERT INTO CountryLanguage VALUES ('LAO','Lao','T',67.2); INSERT INTO CountryLanguage VALUES ('LAO','Lao-Soung','F',5.2); INSERT INTO CountryLanguage VALUES ('LAO','Mon-khmer','F',16.5); INSERT INTO CountryLanguage VALUES ('LAO','Thai','F',7.8); INSERT INTO CountryLanguage VALUES ('LBN','Arabic','T',93.0); INSERT INTO CountryLanguage VALUES ('LBN','Armenian','F',5.9); INSERT INTO CountryLanguage VALUES ('LBN','French','F',0.0); INSERT INTO CountryLanguage VALUES ('LBR','Bassa','F',13.7); INSERT INTO CountryLanguage VALUES ('LBR','Gio','F',7.9); INSERT INTO CountryLanguage VALUES ('LBR','Grebo','F',8.9); INSERT INTO CountryLanguage VALUES ('LBR','Kpelle','F',19.5); INSERT INTO CountryLanguage VALUES ('LBR','Kru','F',7.2); INSERT INTO CountryLanguage VALUES ('LBR','Loma','F',5.8); INSERT INTO CountryLanguage VALUES ('LBR','Malinke','F',5.1); INSERT INTO CountryLanguage VALUES ('LBR','Mano','F',7.2); INSERT INTO CountryLanguage VALUES ('LBY','Arabic','T',96.0); INSERT INTO CountryLanguage VALUES ('LBY','Berberi','F',1.0); INSERT INTO CountryLanguage VALUES ('LCA','Creole French','F',80.0); INSERT INTO CountryLanguage VALUES ('LCA','English','T',20.0); INSERT INTO CountryLanguage VALUES ('LIE','German','T',89.0); INSERT INTO CountryLanguage VALUES ('LIE','Italian','F',2.5); INSERT INTO CountryLanguage VALUES ('LIE','Turkish','F',2.5); INSERT INTO CountryLanguage VALUES ('LKA','Mixed Languages','F',19.6); INSERT INTO CountryLanguage VALUES ('LKA','Singali','T',60.3); INSERT INTO CountryLanguage VALUES ('LKA','Tamil','T',19.6); INSERT INTO CountryLanguage VALUES ('LSO','English','T',0.0); INSERT INTO CountryLanguage VALUES ('LSO','Sotho','T',85.0); INSERT INTO CountryLanguage VALUES ('LSO','Zulu','F',15.0); INSERT INTO CountryLanguage VALUES ('LTU','Belorussian','F',1.4); INSERT INTO CountryLanguage VALUES ('LTU','Lithuanian','T',81.6); INSERT INTO CountryLanguage VALUES ('LTU','Polish','F',7.0); INSERT INTO CountryLanguage VALUES ('LTU','Russian','F',8.1); INSERT INTO CountryLanguage VALUES ('LTU','Ukrainian','F',1.1); INSERT INTO CountryLanguage VALUES ('LUX','French','T',4.2); INSERT INTO CountryLanguage VALUES ('LUX','German','T',2.3); INSERT INTO CountryLanguage VALUES ('LUX','Italian','F',4.6); INSERT INTO CountryLanguage VALUES ('LUX','Luxembourgish','T',64.4); INSERT INTO CountryLanguage VALUES ('LUX','Portuguese','F',13.0); INSERT INTO CountryLanguage VALUES ('LVA','Belorussian','F',4.1); INSERT INTO CountryLanguage VALUES ('LVA','Latvian','T',55.1); INSERT INTO CountryLanguage VALUES ('LVA','Lithuanian','F',1.2); INSERT INTO CountryLanguage VALUES ('LVA','Polish','F',2.1); INSERT INTO CountryLanguage VALUES ('LVA','Russian','F',32.5); INSERT INTO CountryLanguage VALUES ('LVA','Ukrainian','F',2.9); INSERT INTO CountryLanguage VALUES ('MAC','Canton Chinese','F',85.6); INSERT INTO CountryLanguage VALUES ('MAC','English','F',0.5); INSERT INTO CountryLanguage VALUES ('MAC','Mandarin Chinese','F',1.2); INSERT INTO CountryLanguage VALUES ('MAC','Portuguese','T',2.3); INSERT INTO CountryLanguage VALUES ('MAR','Arabic','T',65.0); INSERT INTO CountryLanguage VALUES ('MAR','Berberi','F',33.0); INSERT INTO CountryLanguage VALUES ('MCO','English','F',6.5); INSERT INTO CountryLanguage VALUES ('MCO','French','T',41.9); INSERT INTO CountryLanguage VALUES ('MCO','Italian','F',16.1); INSERT INTO CountryLanguage VALUES ('MCO','Monegasque','F',16.1); INSERT INTO CountryLanguage VALUES ('MDA','Bulgariana','F',1.6); INSERT INTO CountryLanguage VALUES ('MDA','Gagauzi','F',3.2); INSERT INTO CountryLanguage VALUES ('MDA','Romanian','T',61.9); INSERT INTO CountryLanguage VALUES ('MDA','Russian','F',23.2); INSERT INTO CountryLanguage VALUES ('MDA','Ukrainian','F',8.6); INSERT INTO CountryLanguage VALUES ('MDG','French','T',0.0); INSERT INTO CountryLanguage VALUES ('MDG','Malagasy','T',98.9); INSERT INTO CountryLanguage VALUES ('MDV','Dhivehi','T',100.0); INSERT INTO CountryLanguage VALUES ('MDV','English','F',0.0); INSERT INTO CountryLanguage VALUES ('MEX','Mixtec','F',0.6); INSERT INTO CountryLanguage VALUES ('MEX','Náhuatl','F',1.8); INSERT INTO CountryLanguage VALUES ('MEX','Otomí','F',0.4); INSERT INTO CountryLanguage VALUES ('MEX','Spanish','T',92.1); INSERT INTO CountryLanguage VALUES ('MEX','Yucatec','F',1.1); INSERT INTO CountryLanguage VALUES ('MEX','Zapotec','F',0.6); INSERT INTO CountryLanguage VALUES ('MHL','English','T',0.0); INSERT INTO CountryLanguage VALUES ('MHL','Marshallese','T',96.8); INSERT INTO CountryLanguage VALUES ('MKD','Albaniana','F',22.9); INSERT INTO CountryLanguage VALUES ('MKD','Macedonian','T',66.5); INSERT INTO CountryLanguage VALUES ('MKD','Romani','F',2.3); INSERT INTO CountryLanguage VALUES ('MKD','Serbo-Croatian','F',2.0); INSERT INTO CountryLanguage VALUES ('MKD','Turkish','F',4.0); INSERT INTO CountryLanguage VALUES ('MLI','Bambara','F',31.8); INSERT INTO CountryLanguage VALUES ('MLI','Ful','F',13.9); INSERT INTO CountryLanguage VALUES ('MLI','Senufo and Minianka','F',12.0); INSERT INTO CountryLanguage VALUES ('MLI','Songhai','F',6.9); INSERT INTO CountryLanguage VALUES ('MLI','Soninke','F',8.7); INSERT INTO CountryLanguage VALUES ('MLI','Tamashek','F',7.3); INSERT INTO CountryLanguage VALUES ('MLT','English','T',2.1); INSERT INTO CountryLanguage VALUES ('MLT','Maltese','T',95.8); INSERT INTO CountryLanguage VALUES ('MMR','Burmese','T',69.0); INSERT INTO CountryLanguage VALUES ('MMR','Chin','F',2.2); INSERT INTO CountryLanguage VALUES ('MMR','Kachin','F',1.4); INSERT INTO CountryLanguage VALUES ('MMR','Karen','F',6.2); INSERT INTO CountryLanguage VALUES ('MMR','Kayah','F',0.4); INSERT INTO CountryLanguage VALUES ('MMR','Mon','F',2.4); INSERT INTO CountryLanguage VALUES ('MMR','Rakhine','F',4.5); INSERT INTO CountryLanguage VALUES ('MMR','Shan','F',8.5); INSERT INTO CountryLanguage VALUES ('MNG','Bajad','F',1.9); INSERT INTO CountryLanguage VALUES ('MNG','Buryat','F',1.7); INSERT INTO CountryLanguage VALUES ('MNG','Dariganga','F',1.4); INSERT INTO CountryLanguage VALUES ('MNG','Dorbet','F',2.7); INSERT INTO CountryLanguage VALUES ('MNG','Kazakh','F',5.9); INSERT INTO CountryLanguage VALUES ('MNG','Mongolian','T',78.8); INSERT INTO CountryLanguage VALUES ('MNP','Carolinian','F',4.8); INSERT INTO CountryLanguage VALUES ('MNP','Chamorro','F',30.0); INSERT INTO CountryLanguage VALUES ('MNP','Chinese','F',7.1); INSERT INTO CountryLanguage VALUES ('MNP','English','T',4.8); INSERT INTO CountryLanguage VALUES ('MNP','Korean','F',6.5); INSERT INTO CountryLanguage VALUES ('MNP','Philippene Languages','F',34.1); INSERT INTO CountryLanguage VALUES ('MOZ','Chuabo','F',5.7); INSERT INTO CountryLanguage VALUES ('MOZ','Lomwe','F',7.8); INSERT INTO CountryLanguage VALUES ('MOZ','Makua','F',27.8); INSERT INTO CountryLanguage VALUES ('MOZ','Marendje','F',3.5); INSERT INTO CountryLanguage VALUES ('MOZ','Nyanja','F',3.3); INSERT INTO CountryLanguage VALUES ('MOZ','Ronga','F',3.7); INSERT INTO CountryLanguage VALUES ('MOZ','Sena','F',9.4); INSERT INTO CountryLanguage VALUES ('MOZ','Shona','F',6.5); INSERT INTO CountryLanguage VALUES ('MOZ','Tsonga','F',12.4); INSERT INTO CountryLanguage VALUES ('MOZ','Tswa','F',6.0); INSERT INTO CountryLanguage VALUES ('MRT','Ful','F',1.2); INSERT INTO CountryLanguage VALUES ('MRT','Hassaniya','F',81.7); INSERT INTO CountryLanguage VALUES ('MRT','Soninke','F',2.7); INSERT INTO CountryLanguage VALUES ('MRT','Tukulor','F',5.4); INSERT INTO CountryLanguage VALUES ('MRT','Wolof','F',6.6); INSERT INTO CountryLanguage VALUES ('MRT','Zenaga','F',1.2); INSERT INTO CountryLanguage VALUES ('MSR','English','T',0.0); INSERT INTO CountryLanguage VALUES ('MTQ','Creole French','F',96.6); INSERT INTO CountryLanguage VALUES ('MTQ','French','T',0.0); INSERT INTO CountryLanguage VALUES ('MUS','Bhojpuri','F',21.1); INSERT INTO CountryLanguage VALUES ('MUS','Creole French','F',70.6); INSERT INTO CountryLanguage VALUES ('MUS','French','F',3.4); INSERT INTO CountryLanguage VALUES ('MUS','Hindi','F',1.2); INSERT INTO CountryLanguage VALUES ('MUS','Marathi','F',0.7); INSERT INTO CountryLanguage VALUES ('MUS','Tamil','F',0.8); INSERT INTO CountryLanguage VALUES ('MWI','Chichewa','T',58.3); INSERT INTO CountryLanguage VALUES ('MWI','Lomwe','F',18.4); INSERT INTO CountryLanguage VALUES ('MWI','Ngoni','F',6.7); INSERT INTO CountryLanguage VALUES ('MWI','Yao','F',13.2); INSERT INTO CountryLanguage VALUES ('MYS','Chinese','F',9.0); INSERT INTO CountryLanguage VALUES ('MYS','Dusun','F',1.1); INSERT INTO CountryLanguage VALUES ('MYS','English','F',1.6); INSERT INTO CountryLanguage VALUES ('MYS','Iban','F',2.8); INSERT INTO CountryLanguage VALUES ('MYS','Malay','T',58.4); INSERT INTO CountryLanguage VALUES ('MYS','Tamil','F',3.9); INSERT INTO CountryLanguage VALUES ('MYT','French','T',20.3); INSERT INTO CountryLanguage VALUES ('MYT','Mahoré','F',41.9); INSERT INTO CountryLanguage VALUES ('MYT','Malagasy','F',16.1); INSERT INTO CountryLanguage VALUES ('NAM','Afrikaans','F',9.5); INSERT INTO CountryLanguage VALUES ('NAM','Caprivi','F',4.7); INSERT INTO CountryLanguage VALUES ('NAM','German','F',0.9); INSERT INTO CountryLanguage VALUES ('NAM','Herero','F',8.0); INSERT INTO CountryLanguage VALUES ('NAM','Kavango','F',9.7); INSERT INTO CountryLanguage VALUES ('NAM','Nama','F',12.4); INSERT INTO CountryLanguage VALUES ('NAM','Ovambo','F',50.7); INSERT INTO CountryLanguage VALUES ('NAM','San','F',1.9); INSERT INTO CountryLanguage VALUES ('NCL','French','T',34.3); INSERT INTO CountryLanguage VALUES ('NCL','Malenasian Languages','F',45.4); INSERT INTO CountryLanguage VALUES ('NCL','Polynesian Languages','F',11.6); INSERT INTO CountryLanguage VALUES ('NER','Ful','F',9.7); INSERT INTO CountryLanguage VALUES ('NER','Hausa','F',53.1); INSERT INTO CountryLanguage VALUES ('NER','Kanuri','F',4.4); INSERT INTO CountryLanguage VALUES ('NER','Songhai-zerma','F',21.2); INSERT INTO CountryLanguage VALUES ('NER','Tamashek','F',10.4); INSERT INTO CountryLanguage VALUES ('NFK','English','T',0.0); INSERT INTO CountryLanguage VALUES ('NGA','Bura','F',1.6); INSERT INTO CountryLanguage VALUES ('NGA','Edo','F',3.3); INSERT INTO CountryLanguage VALUES ('NGA','Ful','F',11.3); INSERT INTO CountryLanguage VALUES ('NGA','Hausa','F',21.1); INSERT INTO CountryLanguage VALUES ('NGA','Ibibio','F',5.6); INSERT INTO CountryLanguage VALUES ('NGA','Ibo','F',18.1); INSERT INTO CountryLanguage VALUES ('NGA','Ijo','F',1.8); INSERT INTO CountryLanguage VALUES ('NGA','Joruba','F',21.4); INSERT INTO CountryLanguage VALUES ('NGA','Kanuri','F',4.1); INSERT INTO CountryLanguage VALUES ('NGA','Tiv','F',2.3); INSERT INTO CountryLanguage VALUES ('NIC','Creole English','F',0.5); INSERT INTO CountryLanguage VALUES ('NIC','Miskito','F',1.6); INSERT INTO CountryLanguage VALUES ('NIC','Spanish','T',97.6); INSERT INTO CountryLanguage VALUES ('NIC','Sumo','F',0.2); INSERT INTO CountryLanguage VALUES ('NIU','English','T',0.0); INSERT INTO CountryLanguage VALUES ('NIU','Niue','F',0.0); INSERT INTO CountryLanguage VALUES ('NLD','Arabic','F',0.9); INSERT INTO CountryLanguage VALUES ('NLD','Dutch','T',95.6); INSERT INTO CountryLanguage VALUES ('NLD','Fries','F',3.7); INSERT INTO CountryLanguage VALUES ('NLD','Turkish','F',0.8); INSERT INTO CountryLanguage VALUES ('NOR','Danish','F',0.4); INSERT INTO CountryLanguage VALUES ('NOR','English','F',0.5); INSERT INTO CountryLanguage VALUES ('NOR','Norwegian','T',96.6); INSERT INTO CountryLanguage VALUES ('NOR','Saame','F',0.0); INSERT INTO CountryLanguage VALUES ('NOR','Swedish','F',0.3); INSERT INTO CountryLanguage VALUES ('NPL','Bhojpuri','F',7.5); INSERT INTO CountryLanguage VALUES ('NPL','Hindi','F',3.0); INSERT INTO CountryLanguage VALUES ('NPL','Maithili','F',11.9); INSERT INTO CountryLanguage VALUES ('NPL','Nepali','T',50.4); INSERT INTO CountryLanguage VALUES ('NPL','Newari','F',3.7); INSERT INTO CountryLanguage VALUES ('NPL','Tamang','F',4.9); INSERT INTO CountryLanguage VALUES ('NPL','Tharu','F',5.4); INSERT INTO CountryLanguage VALUES ('NRU','Chinese','F',8.5); INSERT INTO CountryLanguage VALUES ('NRU','English','T',7.5); INSERT INTO CountryLanguage VALUES ('NRU','Kiribati','F',17.9); INSERT INTO CountryLanguage VALUES ('NRU','Nauru','T',57.5); INSERT INTO CountryLanguage VALUES ('NRU','Tuvalu','F',8.5); INSERT INTO CountryLanguage VALUES ('NZL','English','T',87.0); INSERT INTO CountryLanguage VALUES ('NZL','Maori','F',4.3); INSERT INTO CountryLanguage VALUES ('OMN','Arabic','T',76.7); INSERT INTO CountryLanguage VALUES ('OMN','Balochi','F',0.0); INSERT INTO CountryLanguage VALUES ('PAK','Balochi','F',3.0); INSERT INTO CountryLanguage VALUES ('PAK','Brahui','F',1.2); INSERT INTO CountryLanguage VALUES ('PAK','Hindko','F',2.4); INSERT INTO CountryLanguage VALUES ('PAK','Pashto','F',13.1); INSERT INTO CountryLanguage VALUES ('PAK','Punjabi','F',48.2); INSERT INTO CountryLanguage VALUES ('PAK','Saraiki','F',9.8); INSERT INTO CountryLanguage VALUES ('PAK','Sindhi','F',11.8); INSERT INTO CountryLanguage VALUES ('PAK','Urdu','T',7.6); INSERT INTO CountryLanguage VALUES ('PAN','Arabic','F',0.6); INSERT INTO CountryLanguage VALUES ('PAN','Creole English','F',14.0); INSERT INTO CountryLanguage VALUES ('PAN','Cuna','F',2.0); INSERT INTO CountryLanguage VALUES ('PAN','Embera','F',0.6); INSERT INTO CountryLanguage VALUES ('PAN','Guaymí','F',5.3); INSERT INTO CountryLanguage VALUES ('PAN','Spanish','T',76.8); INSERT INTO CountryLanguage VALUES ('PCN','Pitcairnese','F',0.0); INSERT INTO CountryLanguage VALUES ('PER','Aimará','T',2.3); INSERT INTO CountryLanguage VALUES ('PER','Ketšua','T',16.4); INSERT INTO CountryLanguage VALUES ('PER','Spanish','T',79.8); INSERT INTO CountryLanguage VALUES ('PHL','Bicol','F',5.7); INSERT INTO CountryLanguage VALUES ('PHL','Cebuano','F',23.3); INSERT INTO CountryLanguage VALUES ('PHL','Hiligaynon','F',9.1); INSERT INTO CountryLanguage VALUES ('PHL','Ilocano','F',9.3); INSERT INTO CountryLanguage VALUES ('PHL','Maguindanao','F',1.4); INSERT INTO CountryLanguage VALUES ('PHL','Maranao','F',1.3); INSERT INTO CountryLanguage VALUES ('PHL','Pampango','F',3.0); INSERT INTO CountryLanguage VALUES ('PHL','Pangasinan','F',1.8); INSERT INTO CountryLanguage VALUES ('PHL','Pilipino','T',29.3); INSERT INTO CountryLanguage VALUES ('PHL','Waray-waray','F',3.8); INSERT INTO CountryLanguage VALUES ('PLW','Chinese','F',1.6); INSERT INTO CountryLanguage VALUES ('PLW','English','T',3.2); INSERT INTO CountryLanguage VALUES ('PLW','Palau','T',82.2); INSERT INTO CountryLanguage VALUES ('PLW','Philippene Languages','F',9.2); INSERT INTO CountryLanguage VALUES ('PNG','Malenasian Languages','F',20.0); INSERT INTO CountryLanguage VALUES ('PNG','Papuan Languages','F',78.1); INSERT INTO CountryLanguage VALUES ('POL','Belorussian','F',0.5); INSERT INTO CountryLanguage VALUES ('POL','German','F',1.3); INSERT INTO CountryLanguage VALUES ('POL','Polish','T',97.6); INSERT INTO CountryLanguage VALUES ('POL','Ukrainian','F',0.6); INSERT INTO CountryLanguage VALUES ('PRI','English','F',47.4); INSERT INTO CountryLanguage VALUES ('PRI','Spanish','T',51.3); INSERT INTO CountryLanguage VALUES ('PRK','Chinese','F',0.1); INSERT INTO CountryLanguage VALUES ('PRK','Korean','T',99.9); INSERT INTO CountryLanguage VALUES ('PRT','Portuguese','T',99.0); INSERT INTO CountryLanguage VALUES ('PRY','German','F',0.9); INSERT INTO CountryLanguage VALUES ('PRY','Guaraní','T',40.1); INSERT INTO CountryLanguage VALUES ('PRY','Portuguese','F',3.2); INSERT INTO CountryLanguage VALUES ('PRY','Spanish','T',55.1); INSERT INTO CountryLanguage VALUES ('PSE','Arabic','F',95.9); INSERT INTO CountryLanguage VALUES ('PSE','Hebrew','F',4.1); INSERT INTO CountryLanguage VALUES ('PYF','Chinese','F',2.9); INSERT INTO CountryLanguage VALUES ('PYF','French','T',40.8); INSERT INTO CountryLanguage VALUES ('PYF','Tahitian','F',46.4); INSERT INTO CountryLanguage VALUES ('QAT','Arabic','T',40.7); INSERT INTO CountryLanguage VALUES ('QAT','Urdu','F',0.0); INSERT INTO CountryLanguage VALUES ('REU','Chinese','F',2.8); INSERT INTO CountryLanguage VALUES ('REU','Comorian','F',2.8); INSERT INTO CountryLanguage VALUES ('REU','Creole French','F',91.5); INSERT INTO CountryLanguage VALUES ('REU','Malagasy','F',1.4); INSERT INTO CountryLanguage VALUES ('REU','Tamil','F',0.0); INSERT INTO CountryLanguage VALUES ('ROM','German','F',0.4); INSERT INTO CountryLanguage VALUES ('ROM','Hungarian','F',7.2); INSERT INTO CountryLanguage VALUES ('ROM','Romani','T',0.7); INSERT INTO CountryLanguage VALUES ('ROM','Romanian','T',90.7); INSERT INTO CountryLanguage VALUES ('ROM','Serbo-Croatian','F',0.1); INSERT INTO CountryLanguage VALUES ('ROM','Ukrainian','F',0.3); INSERT INTO CountryLanguage VALUES ('RUS','Avarian','F',0.4); INSERT INTO CountryLanguage VALUES ('RUS','Bashkir','F',0.7); INSERT INTO CountryLanguage VALUES ('RUS','Belorussian','F',0.3); INSERT INTO CountryLanguage VALUES ('RUS','Chechen','F',0.6); INSERT INTO CountryLanguage VALUES ('RUS','Chuvash','F',0.9); INSERT INTO CountryLanguage VALUES ('RUS','Kazakh','F',0.4); INSERT INTO CountryLanguage VALUES ('RUS','Mari','F',0.4); INSERT INTO CountryLanguage VALUES ('RUS','Mordva','F',0.5); INSERT INTO CountryLanguage VALUES ('RUS','Russian','T',86.6); INSERT INTO CountryLanguage VALUES ('RUS','Tatar','F',3.2); INSERT INTO CountryLanguage VALUES ('RUS','Udmur','F',0.3); INSERT INTO CountryLanguage VALUES ('RUS','Ukrainian','F',1.3); INSERT INTO CountryLanguage VALUES ('RWA','French','T',0.0); INSERT INTO CountryLanguage VALUES ('RWA','Rwanda','T',100.0); INSERT INTO CountryLanguage VALUES ('SAU','Arabic','T',95.0); INSERT INTO CountryLanguage VALUES ('SDN','Arabic','T',49.4); INSERT INTO CountryLanguage VALUES ('SDN','Bari','F',2.5); INSERT INTO CountryLanguage VALUES ('SDN','Beja','F',6.4); INSERT INTO CountryLanguage VALUES ('SDN','Chilluk','F',1.7); INSERT INTO CountryLanguage VALUES ('SDN','Dinka','F',11.5); INSERT INTO CountryLanguage VALUES ('SDN','Fur','F',2.1); INSERT INTO CountryLanguage VALUES ('SDN','Lotuko','F',1.5); INSERT INTO CountryLanguage VALUES ('SDN','Nubian Languages','F',8.1); INSERT INTO CountryLanguage VALUES ('SDN','Nuer','F',4.9); INSERT INTO CountryLanguage VALUES ('SDN','Zande','F',2.7); INSERT INTO CountryLanguage VALUES ('SEN','Diola','F',5.0); INSERT INTO CountryLanguage VALUES ('SEN','Ful','F',21.7); INSERT INTO CountryLanguage VALUES ('SEN','Malinke','F',3.8); INSERT INTO CountryLanguage VALUES ('SEN','Serer','F',12.5); INSERT INTO CountryLanguage VALUES ('SEN','Soninke','F',1.3); INSERT INTO CountryLanguage VALUES ('SEN','Wolof','T',48.1); INSERT INTO CountryLanguage VALUES ('SGP','Chinese','T',77.1); INSERT INTO CountryLanguage VALUES ('SGP','Malay','T',14.1); INSERT INTO CountryLanguage VALUES ('SGP','Tamil','T',7.4); INSERT INTO CountryLanguage VALUES ('SHN','English','T',0.0); INSERT INTO CountryLanguage VALUES ('SJM','Norwegian','T',0.0); INSERT INTO CountryLanguage VALUES ('SJM','Russian','F',0.0); INSERT INTO CountryLanguage VALUES ('SLB','Malenasian Languages','F',85.6); INSERT INTO CountryLanguage VALUES ('SLB','Papuan Languages','F',8.6); INSERT INTO CountryLanguage VALUES ('SLB','Polynesian Languages','F',3.8); INSERT INTO CountryLanguage VALUES ('SLE','Bullom-sherbro','F',3.8); INSERT INTO CountryLanguage VALUES ('SLE','Ful','F',3.8); INSERT INTO CountryLanguage VALUES ('SLE','Kono-vai','F',5.1); INSERT INTO CountryLanguage VALUES ('SLE','Kuranko','F',3.4); INSERT INTO CountryLanguage VALUES ('SLE','Limba','F',8.3); INSERT INTO CountryLanguage VALUES ('SLE','Mende','F',34.8); INSERT INTO CountryLanguage VALUES ('SLE','Temne','F',31.8); INSERT INTO CountryLanguage VALUES ('SLE','Yalunka','F',3.4); INSERT INTO CountryLanguage VALUES ('SLV','Nahua','F',0.0); INSERT INTO CountryLanguage VALUES ('SLV','Spanish','T',100.0); INSERT INTO CountryLanguage VALUES ('SMR','Italian','T',100.0); INSERT INTO CountryLanguage VALUES ('SOM','Arabic','T',0.0); INSERT INTO CountryLanguage VALUES ('SOM','Somali','T',98.3); INSERT INTO CountryLanguage VALUES ('SPM','French','T',0.0); INSERT INTO CountryLanguage VALUES ('STP','Crioulo','F',86.3); INSERT INTO CountryLanguage VALUES ('STP','French','F',0.7); INSERT INTO CountryLanguage VALUES ('SUR','Hindi','F',0.0); INSERT INTO CountryLanguage VALUES ('SUR','Sranantonga','F',81.0); INSERT INTO CountryLanguage VALUES ('SVK','Czech and Moravian','F',1.1); INSERT INTO CountryLanguage VALUES ('SVK','Hungarian','F',10.5); INSERT INTO CountryLanguage VALUES ('SVK','Romani','F',1.7); INSERT INTO CountryLanguage VALUES ('SVK','Slovak','T',85.6); INSERT INTO CountryLanguage VALUES ('SVK','Ukrainian and Russian','F',0.6); INSERT INTO CountryLanguage VALUES ('SVN','Hungarian','F',0.5); INSERT INTO CountryLanguage VALUES ('SVN','Serbo-Croatian','F',7.9); INSERT INTO CountryLanguage VALUES ('SVN','Slovene','T',87.9); INSERT INTO CountryLanguage VALUES ('SWE','Arabic','F',0.8); INSERT INTO CountryLanguage VALUES ('SWE','Finnish','F',2.4); INSERT INTO CountryLanguage VALUES ('SWE','Norwegian','F',0.5); INSERT INTO CountryLanguage VALUES ('SWE','Southern Slavic Languages','F',1.3); INSERT INTO CountryLanguage VALUES ('SWE','Spanish','F',0.6); INSERT INTO CountryLanguage VALUES ('SWE','Swedish','T',89.5); INSERT INTO CountryLanguage VALUES ('SWZ','Swazi','T',89.9); INSERT INTO CountryLanguage VALUES ('SWZ','Zulu','F',2.0); INSERT INTO CountryLanguage VALUES ('SYC','English','T',3.8); INSERT INTO CountryLanguage VALUES ('SYC','French','T',1.3); INSERT INTO CountryLanguage VALUES ('SYC','Seselwa','F',91.3); INSERT INTO CountryLanguage VALUES ('SYR','Arabic','T',90.0); INSERT INTO CountryLanguage VALUES ('SYR','Kurdish','F',9.0); INSERT INTO CountryLanguage VALUES ('TCA','English','T',0.0); INSERT INTO CountryLanguage VALUES ('TCD','Arabic','T',12.3); INSERT INTO CountryLanguage VALUES ('TCD','Gorane','F',6.2); INSERT INTO CountryLanguage VALUES ('TCD','Hadjarai','F',6.7); INSERT INTO CountryLanguage VALUES ('TCD','Kanem-bornu','F',9.0); INSERT INTO CountryLanguage VALUES ('TCD','Mayo-kebbi','F',11.5); INSERT INTO CountryLanguage VALUES ('TCD','Ouaddai','F',8.7); INSERT INTO CountryLanguage VALUES ('TCD','Sara','F',27.7); INSERT INTO CountryLanguage VALUES ('TCD','Tandjile','F',6.5); INSERT INTO CountryLanguage VALUES ('TGO','Ane','F',5.7); INSERT INTO CountryLanguage VALUES ('TGO','Ewe','T',23.2); INSERT INTO CountryLanguage VALUES ('TGO','Gurma','F',3.4); INSERT INTO CountryLanguage VALUES ('TGO','Kabyé','T',13.8); INSERT INTO CountryLanguage VALUES ('TGO','Kotokoli','F',5.7); INSERT INTO CountryLanguage VALUES ('TGO','Moba','F',5.4); INSERT INTO CountryLanguage VALUES ('TGO','Naudemba','F',4.1); INSERT INTO CountryLanguage VALUES ('TGO','Watyi','F',10.3); INSERT INTO CountryLanguage VALUES ('THA','Chinese','F',12.1); INSERT INTO CountryLanguage VALUES ('THA','Khmer','F',1.3); INSERT INTO CountryLanguage VALUES ('THA','Kuy','F',1.1); INSERT INTO CountryLanguage VALUES ('THA','Lao','F',26.9); INSERT INTO CountryLanguage VALUES ('THA','Malay','F',3.6); INSERT INTO CountryLanguage VALUES ('THA','Thai','T',52.6); INSERT INTO CountryLanguage VALUES ('TJK','Russian','F',9.7); INSERT INTO CountryLanguage VALUES ('TJK','Tadzhik','T',62.2); INSERT INTO CountryLanguage VALUES ('TJK','Uzbek','F',23.2); INSERT INTO CountryLanguage VALUES ('TKL','English','T',0.0); INSERT INTO CountryLanguage VALUES ('TKL','Tokelau','F',0.0); INSERT INTO CountryLanguage VALUES ('TKM','Kazakh','F',2.0); INSERT INTO CountryLanguage VALUES ('TKM','Russian','F',6.7); INSERT INTO CountryLanguage VALUES ('TKM','Turkmenian','T',76.7); INSERT INTO CountryLanguage VALUES ('TKM','Uzbek','F',9.2); INSERT INTO CountryLanguage VALUES ('TMP','Portuguese','T',0.0); INSERT INTO CountryLanguage VALUES ('TMP','Sunda','F',0.0); INSERT INTO CountryLanguage VALUES ('TON','English','T',0.0); INSERT INTO CountryLanguage VALUES ('TON','Tongan','T',98.3); INSERT INTO CountryLanguage VALUES ('TTO','Creole English','F',2.9); INSERT INTO CountryLanguage VALUES ('TTO','English','F',93.5); INSERT INTO CountryLanguage VALUES ('TTO','Hindi','F',3.4); INSERT INTO CountryLanguage VALUES ('TUN','Arabic','T',69.9); INSERT INTO CountryLanguage VALUES ('TUN','Arabic-French','F',26.3); INSERT INTO CountryLanguage VALUES ('TUN','Arabic-French-English','F',3.2); INSERT INTO CountryLanguage VALUES ('TUR','Arabic','F',1.4); INSERT INTO CountryLanguage VALUES ('TUR','Kurdish','F',10.6); INSERT INTO CountryLanguage VALUES ('TUR','Turkish','T',87.6); INSERT INTO CountryLanguage VALUES ('TUV','English','T',0.0); INSERT INTO CountryLanguage VALUES ('TUV','Kiribati','F',7.5); INSERT INTO CountryLanguage VALUES ('TUV','Tuvalu','T',92.5); INSERT INTO CountryLanguage VALUES ('TWN','Ami','F',0.6); INSERT INTO CountryLanguage VALUES ('TWN','Atayal','F',0.4); INSERT INTO CountryLanguage VALUES ('TWN','Hakka','F',11.0); INSERT INTO CountryLanguage VALUES ('TWN','Mandarin Chinese','T',20.1); INSERT INTO CountryLanguage VALUES ('TWN','Min','F',66.7); INSERT INTO CountryLanguage VALUES ('TWN','Paiwan','F',0.3); INSERT INTO CountryLanguage VALUES ('TZA','Chaga and Pare','F',4.9); INSERT INTO CountryLanguage VALUES ('TZA','Gogo','F',3.9); INSERT INTO CountryLanguage VALUES ('TZA','Ha','F',3.5); INSERT INTO CountryLanguage VALUES ('TZA','Haya','F',5.9); INSERT INTO CountryLanguage VALUES ('TZA','Hehet','F',6.9); INSERT INTO CountryLanguage VALUES ('TZA','Luguru','F',4.9); INSERT INTO CountryLanguage VALUES ('TZA','Makonde','F',5.9); INSERT INTO CountryLanguage VALUES ('TZA','Nyakusa','F',5.4); INSERT INTO CountryLanguage VALUES ('TZA','Nyamwesi','F',21.1); INSERT INTO CountryLanguage VALUES ('TZA','Shambala','F',4.3); INSERT INTO CountryLanguage VALUES ('TZA','Swahili','T',8.8); INSERT INTO CountryLanguage VALUES ('UGA','Acholi','F',4.4); INSERT INTO CountryLanguage VALUES ('UGA','Ganda','F',18.1); INSERT INTO CountryLanguage VALUES ('UGA','Gisu','F',4.5); INSERT INTO CountryLanguage VALUES ('UGA','Kiga','F',8.3); INSERT INTO CountryLanguage VALUES ('UGA','Lango','F',5.9); INSERT INTO CountryLanguage VALUES ('UGA','Lugbara','F',4.7); INSERT INTO CountryLanguage VALUES ('UGA','Nkole','F',10.7); INSERT INTO CountryLanguage VALUES ('UGA','Rwanda','F',3.2); INSERT INTO CountryLanguage VALUES ('UGA','Soga','F',8.2); INSERT INTO CountryLanguage VALUES ('UGA','Teso','F',6.0); INSERT INTO CountryLanguage VALUES ('UKR','Belorussian','F',0.3); INSERT INTO CountryLanguage VALUES ('UKR','Bulgariana','F',0.3); INSERT INTO CountryLanguage VALUES ('UKR','Hungarian','F',0.3); INSERT INTO CountryLanguage VALUES ('UKR','Polish','F',0.1); INSERT INTO CountryLanguage VALUES ('UKR','Romanian','F',0.7); INSERT INTO CountryLanguage VALUES ('UKR','Russian','F',32.9); INSERT INTO CountryLanguage VALUES ('UKR','Ukrainian','T',64.7); INSERT INTO CountryLanguage VALUES ('UMI','English','T',0.0); INSERT INTO CountryLanguage VALUES ('URY','Spanish','T',95.7); INSERT INTO CountryLanguage VALUES ('USA','Chinese','F',0.6); INSERT INTO CountryLanguage VALUES ('USA','English','T',86.2); INSERT INTO CountryLanguage VALUES ('USA','French','F',0.7); INSERT INTO CountryLanguage VALUES ('USA','German','F',0.7); INSERT INTO CountryLanguage VALUES ('USA','Italian','F',0.6); INSERT INTO CountryLanguage VALUES ('USA','Japanese','F',0.2); INSERT INTO CountryLanguage VALUES ('USA','Korean','F',0.3); INSERT INTO CountryLanguage VALUES ('USA','Polish','F',0.3); INSERT INTO CountryLanguage VALUES ('USA','Portuguese','F',0.2); INSERT INTO CountryLanguage VALUES ('USA','Spanish','F',7.5); INSERT INTO CountryLanguage VALUES ('USA','Tagalog','F',0.4); INSERT INTO CountryLanguage VALUES ('USA','Vietnamese','F',0.2); INSERT INTO CountryLanguage VALUES ('UZB','Karakalpak','F',2.0); INSERT INTO CountryLanguage VALUES ('UZB','Kazakh','F',3.8); INSERT INTO CountryLanguage VALUES ('UZB','Russian','F',10.9); INSERT INTO CountryLanguage VALUES ('UZB','Tadzhik','F',4.4); INSERT INTO CountryLanguage VALUES ('UZB','Tatar','F',1.8); INSERT INTO CountryLanguage VALUES ('UZB','Uzbek','T',72.6); INSERT INTO CountryLanguage VALUES ('VAT','Italian','T',0.0); INSERT INTO CountryLanguage VALUES ('VCT','Creole English','F',99.1); INSERT INTO CountryLanguage VALUES ('VCT','English','T',0.0); INSERT INTO CountryLanguage VALUES ('VEN','Goajiro','F',0.4); INSERT INTO CountryLanguage VALUES ('VEN','Spanish','T',96.9); INSERT INTO CountryLanguage VALUES ('VEN','Warrau','F',0.1); INSERT INTO CountryLanguage VALUES ('VGB','English','T',0.0); INSERT INTO CountryLanguage VALUES ('VIR','English','T',81.7); INSERT INTO CountryLanguage VALUES ('VIR','French','F',2.5); INSERT INTO CountryLanguage VALUES ('VIR','Spanish','F',13.3); INSERT INTO CountryLanguage VALUES ('VNM','Chinese','F',1.4); INSERT INTO CountryLanguage VALUES ('VNM','Khmer','F',1.4); INSERT INTO CountryLanguage VALUES ('VNM','Man','F',0.7); INSERT INTO CountryLanguage VALUES ('VNM','Miao','F',0.9); INSERT INTO CountryLanguage VALUES ('VNM','Muong','F',1.5); INSERT INTO CountryLanguage VALUES ('VNM','Nung','F',1.1); INSERT INTO CountryLanguage VALUES ('VNM','Thai','F',1.6); INSERT INTO CountryLanguage VALUES ('VNM','Tho','F',1.8); INSERT INTO CountryLanguage VALUES ('VNM','Vietnamese','T',86.8); INSERT INTO CountryLanguage VALUES ('VUT','Bislama','T',56.6); INSERT INTO CountryLanguage VALUES ('VUT','English','T',28.3); INSERT INTO CountryLanguage VALUES ('VUT','French','T',14.2); INSERT INTO CountryLanguage VALUES ('WLF','Futuna','F',0.0); INSERT INTO CountryLanguage VALUES ('WLF','Wallis','F',0.0); INSERT INTO CountryLanguage VALUES ('WSM','English','T',0.6); INSERT INTO CountryLanguage VALUES ('WSM','Samoan','T',47.5); INSERT INTO CountryLanguage VALUES ('WSM','Samoan-English','F',52.0); INSERT INTO CountryLanguage VALUES ('YEM','Arabic','T',99.6); INSERT INTO CountryLanguage VALUES ('YEM','Soqutri','F',0.0); INSERT INTO CountryLanguage VALUES ('YUG','Albaniana','F',16.5); INSERT INTO CountryLanguage VALUES ('YUG','Hungarian','F',3.4); INSERT INTO CountryLanguage VALUES ('YUG','Macedonian','F',0.5); INSERT INTO CountryLanguage VALUES ('YUG','Romani','F',1.4); INSERT INTO CountryLanguage VALUES ('YUG','Serbo-Croatian','T',75.2); INSERT INTO CountryLanguage VALUES ('YUG','Slovak','F',0.7); INSERT INTO CountryLanguage VALUES ('ZAF','Afrikaans','T',14.3); INSERT INTO CountryLanguage VALUES ('ZAF','English','T',8.5); INSERT INTO CountryLanguage VALUES ('ZAF','Ndebele','F',1.5); INSERT INTO CountryLanguage VALUES ('ZAF','Northsotho','F',9.1); INSERT INTO CountryLanguage VALUES ('ZAF','Southsotho','F',7.6); INSERT INTO CountryLanguage VALUES ('ZAF','Swazi','F',2.5); INSERT INTO CountryLanguage VALUES ('ZAF','Tsonga','F',4.3); INSERT INTO CountryLanguage VALUES ('ZAF','Tswana','F',8.1); INSERT INTO CountryLanguage VALUES ('ZAF','Venda','F',2.2); INSERT INTO CountryLanguage VALUES ('ZAF','Xhosa','T',17.7); INSERT INTO CountryLanguage VALUES ('ZAF','Zulu','T',22.7); INSERT INTO CountryLanguage VALUES ('ZMB','Bemba','F',29.7); INSERT INTO CountryLanguage VALUES ('ZMB','Chewa','F',5.7); INSERT INTO CountryLanguage VALUES ('ZMB','Lozi','F',6.4); INSERT INTO CountryLanguage VALUES ('ZMB','Nsenga','F',4.3); INSERT INTO CountryLanguage VALUES ('ZMB','Nyanja','F',7.8); INSERT INTO CountryLanguage VALUES ('ZMB','Tongan','F',11.0); INSERT INTO CountryLanguage VALUES ('ZWE','English','T',2.2); INSERT INTO CountryLanguage VALUES ('ZWE','Ndebele','F',16.2); INSERT INTO CountryLanguage VALUES ('ZWE','Nyanja','F',2.2); INSERT INTO CountryLanguage VALUES ('ZWE','Shona','F',72.1); /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2010-09-30 11:01:37