├── .gitattributes ├── README.md ├── countries_abb2.json ├── countries_flags ├── AC.png ├── AD.png ├── AE.png ├── AF.png ├── AG.png ├── AI.png ├── AL.png ├── AM.png ├── AO.png ├── AQ.png ├── AR.png ├── AS.png ├── AT.png ├── AU.png ├── AW.png ├── AX.png ├── AZ.png ├── BA.png ├── BB.png ├── BD.png ├── BE.png ├── BF.png ├── BG.png ├── BH.png ├── BI.png ├── BJ.png ├── BL.png ├── BM.png ├── BN.png ├── BO.png ├── BQ.png ├── BR.png ├── BS.png ├── BT.png ├── BW.png ├── BY.png ├── BZ.png ├── CA.png ├── CC.png ├── CD.png ├── CF.png ├── CG.png ├── CH.png ├── CI.png ├── CK.png ├── CL.png ├── CM.png ├── CN.png ├── CO.png ├── CR.png ├── CU.png ├── CV.png ├── CW.png ├── CX.png ├── CY.png ├── CZ.png ├── DE.png ├── DJ.png ├── DK.png ├── DM.png ├── DO.png ├── DZ.png ├── EC.png ├── EE.png ├── EG.png ├── EH.png ├── ER.png ├── ES.png ├── ET.png ├── FI.png ├── FJ.png ├── FK.png ├── FM.png ├── FO.png ├── FR.png ├── GA.png ├── GB.png ├── GD.png ├── GE.png ├── GF.png ├── GG.png ├── GH.png ├── GI.png ├── GL.png ├── GM.png ├── GN.png ├── GP.png ├── GQ.png ├── GR.png ├── GS.png ├── GT.png ├── GU.png ├── GW.png ├── GY.png ├── HK.png ├── HM.png ├── HN.png ├── HR.png ├── HT.png ├── HU.png ├── ID.png ├── IE.png ├── IL.png ├── IM.png ├── IN.png ├── IO.png ├── IQ.png ├── IR.png ├── IS.png ├── IT.png ├── JE.png ├── JM.png ├── JO.png ├── JP.png ├── KE.png ├── KG.png ├── KH.png ├── KI.png ├── KM.png ├── KN.png ├── KP.png ├── KR.png ├── KW.png ├── KY.png ├── KZ.png ├── LA.png ├── LB.png ├── LC.png ├── LI.png ├── LK.png ├── LR.png ├── LS.png ├── LT.png ├── LU.png ├── LV.png ├── LY.png ├── MA.png ├── MC.png ├── MD.png ├── ME.png ├── MF.png ├── MG.png ├── MH.png ├── MK.png ├── ML.png ├── MM.png ├── MN.png ├── MO.png ├── MP.png ├── MQ.png ├── MR.png ├── MS.png ├── MT.png ├── MU.png ├── MV.png ├── MW.png ├── MX.png ├── MY.png ├── MZ.png ├── NA.png ├── NC.png ├── NE.png ├── NF.png ├── NG.png ├── NI.png ├── NL.png ├── NO.png ├── NP.png ├── NR.png ├── NU.png ├── NZ.png ├── OM.png ├── PA.png ├── PE.png ├── PF.png ├── PG.png ├── PH.png ├── PK.png ├── PL.png ├── PM.png ├── PN.png ├── PR.png ├── PS.png ├── PT.png ├── PW.png ├── PY.png ├── QA.png ├── RE.png ├── RO.png ├── RS.png ├── RU.png ├── RW.png ├── SA.png ├── SB.png ├── SC.png ├── SD.png ├── SE.png ├── SG.png ├── SH.png ├── SI.png ├── SJ.png ├── SK.png ├── SL.png ├── SM.png ├── SN.png ├── SO.png ├── SR.png ├── SS.png ├── ST.png ├── SV.png ├── SX.png ├── SY.png ├── SZ.png ├── TA.png ├── TC.png ├── TD.png ├── TG.png ├── TH.png ├── TJ.png ├── TK.png ├── TL.png ├── TM.png ├── TN.png ├── TO.png ├── TR.png ├── TT.png ├── TV.png ├── TW.png ├── TZ.png ├── UA.png ├── UG.png ├── UM.png ├── US.png ├── UY.png ├── UZ.png ├── VA.png ├── VC.png ├── VE.png ├── VG.png ├── VI.png ├── VN.png ├── VU.png ├── WF.png ├── WS.png ├── XK.png ├── YE.png ├── YT.png ├── ZA.png ├── ZM.png └── ZW.png └── countries_list.json /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 世界国家名称及国旗数据 2 | 3 | #### [countries_list.json](countries_list.json "世界国家数据列表") 文件 4 | 国家数据列表 [country_data, ...] 5 | 6 | #### [countries_abb2.json](countries_abb2.json "世界国家数据集合") 文件 7 | 以2位国家缩写为key的国家数据集合 {country_abb2 : country_data, ...} 8 | 9 | **country_data 国家数据** 10 | ``` 11 | { 12 | cn : 国家中文名称, 13 | en : 国家英文名称, 14 | full: 国家英文全称, 15 | abb2: 国家英文2位简称(大写), 16 | abb3: 国家英文3位 简称( 大写), 17 | code: 国家code数字(字符串) 18 | } 19 | 20 | example: 21 | { 22 | "cn" : "中国", 23 | "en" : "China", 24 | "full" : "the People's Republic of China", 25 | "abb2" : "CN", 26 | "abb3" : "CHN", 27 | "code" : "156" 28 | } 29 | 30 | ``` 31 | 32 | #### [countries_flags](countries_flags "国旗图片文件夹") 国旗图片文件夹 33 | 以国家英文2位简称为图片名的国旗图片,包含全部主流国家,缺少几个小众国家的国旗图片。 34 | 图片绝大部分宽640px 35 | -------------------------------------------------------------------------------- /countries_abb2.json: -------------------------------------------------------------------------------- 1 | {"AF":{"cn":"阿富汗","en":"Afghanistan","full":"the Islamic Republic of Afghanistan","abb2":"AF","abb3":"AFG","code":"004"},"AX":{"cn":"奥兰群岛","en":"Aland Islands","full":"Aland Islands","abb2":"AX","abb3":"ALA","code":"248"},"AL":{"cn":"阿尔巴尼亚","en":"Albania","full":"the Republic of Albania","abb2":"AL","abb3":"ALB","code":"008"},"DZ":{"cn":"阿尔及利亚","en":"Algeria","full":"the People's Democratic Republic of Algeria","abb2":"DZ","abb3":"DZA","code":"012"},"AS":{"cn":"美属萨摩亚","en":"American Samoa","full":"American Samoa","abb2":"AS","abb3":"ASM","code":"016"},"AD":{"cn":"安道尔","en":"Andorra","full":"the Principality of Andorra","abb2":"AD","abb3":"AND","code":"020"},"AO":{"cn":"安哥拉","en":"Angola","full":"the Republic of Angola","abb2":"AO","abb3":"AGO","code":"024"},"AI":{"cn":"安圭拉","en":"Anguilla","full":"Anguilla","abb2":"AI","abb3":"AIA","code":"660"},"AQ":{"cn":"南极洲","en":"Antarctica","full":"Antarctica","abb2":"AQ","abb3":"ATA","code":"010"},"AG":{"cn":"安提瓜和巴布达","en":"Antigua and Barbuda","full":"Antigua and Barbuda","abb2":"AG","abb3":"ATG","code":"028"},"AR":{"cn":"阿根廷","en":"Argentina","full":"the Argentine Republic","abb2":"AR","abb3":"ARG","code":"032"},"AM":{"cn":"亚美尼亚","en":"Armenia","full":"the Republic of Armenia","abb2":"AM","abb3":"ARM","code":"051"},"AW":{"cn":"阿鲁巴","en":"Aruba","full":"Aruba","abb2":"AW","abb3":"ABW","code":"533"},"AU":{"cn":"澳大利亚","en":"Australia","full":"Australia","abb2":"AU","abb3":"AUS","code":"036"},"AT":{"cn":"奥地利","en":"Austria","full":"the Republic of Austria","abb2":"AT","abb3":"AUT","code":"040"},"AZ":{"cn":"阿塞拜疆","en":"Azerbaijan","full":"the Republic of Azerbaijan","abb2":"AZ","abb3":"AZE","code":"031"},"BS":{"cn":"巴哈马","en":"Bahamas","full":"the Commonwealth of The Bahamas","abb2":"BS","abb3":"BHS","code":"044"},"BH":{"cn":"巴林","en":"Bahrain","full":"the Kingdom of Bahrain","abb2":"BH","abb3":"BHR","code":"048"},"BD":{"cn":"孟加拉国","en":"Bangladesh","full":"the People's Republic of Bangladesh","abb2":"BD","abb3":"BGD","code":"050"},"BB":{"cn":"巴巴多斯","en":"Barbados","full":"Barbados","abb2":"BB","abb3":"BRB","code":"052"},"BY":{"cn":"白俄罗斯","en":"Belarus","full":"the Republic of Belarus","abb2":"BY","abb3":"BLR","code":"112"},"BE":{"cn":"比利时","en":"Belgium","full":"the Kingdom of Belgium","abb2":"BE","abb3":"BEL","code":"056"},"BZ":{"cn":"伯利兹","en":"Belize","full":"Belize","abb2":"BZ","abb3":"BLZ","code":"084"},"BJ":{"cn":"贝宁","en":"Benin","full":"the Republic of Benin","abb2":"BJ","abb3":"BEN","code":"204"},"BM":{"cn":"百慕大","en":"Bermuda","full":"Bermuda","abb2":"BM","abb3":"BMU","code":"060"},"BT":{"cn":"不丹","en":"Bhutan","full":"the Kingdom of Bhutan","abb2":"BT","abb3":"BTN","code":"064"},"BO":{"cn":"玻利维亚","en":"Bolivia","full":"the Republic of Bolivia","abb2":"BO","abb3":"BOL","code":"068"},"BA":{"cn":"波黑","en":"Bosnia and Herzegovina","full":"Bosnia and Herzegovina","abb2":"BA","abb3":"BIH","code":"070"},"BW":{"cn":"博茨瓦纳","en":"Botswana","full":"the Republic of Botswana","abb2":"BW","abb3":"BWA","code":"072"},"BV":{"cn":"布维岛","en":"Bouvet Island","full":"Bouvet Island","abb2":"BV","abb3":"BVT","code":"074"},"BR":{"cn":"巴西","en":"Brazil","full":"the Federative Republic of Brazil","abb2":"BR","abb3":"BRA","code":"076"},"IO":{"cn":"英属印度洋领地","en":"British Indian Ocean Territory","full":"British Indian Ocean Territory","abb2":"IO","abb3":"IOT","code":"086"},"BN":{"cn":"文莱","en":"Brunei Darussalam","full":"Brunei Darussalam","abb2":"BN","abb3":"BRN","code":"096"},"BG":{"cn":"保加利亚","en":"Bulgaria","full":"the Republic of Bulgaria","abb2":"BG","abb3":"BGR","code":"100"},"BF":{"cn":"布基纳法索","en":"Burkina Faso","full":"Burkina Faso","abb2":"BF","abb3":"BFA","code":"854"},"BI":{"cn":"布隆迪","en":"Burundi","full":"the Republic of Burundi","abb2":"BI","abb3":"BDI","code":"108"},"KH":{"cn":"柬埔寨","en":"Cambodia","full":"the Kingdom of Cambodia","abb2":"KH","abb3":"KHM","code":"116"},"CM":{"cn":"喀麦隆","en":"Cameroon","full":"the Republic of Cameroon","abb2":"CM","abb3":"CMR","code":"120"},"CA":{"cn":"加拿大","en":"Canada","full":"Canada","abb2":"CA","abb3":"CAN","code":"124"},"CV":{"cn":"佛得角","en":"Cape Verde","full":"the Republic of Cape Verde","abb2":"CV","abb3":"CPV","code":"132"},"KY":{"cn":"开曼群岛","en":"Cayman Islands","full":"Cayman Islands","abb2":"KY","abb3":"CYM","code":"136"},"CF":{"cn":"中非","en":"Central African Republic","full":"the Central African Republic","abb2":"CF","abb3":"CAF","code":"140"},"TD":{"cn":"乍得","en":"Chad","full":"the Republic of Chad","abb2":"TD","abb3":"TCD","code":"148"},"CL":{"cn":"智利","en":"Chile","full":"the Republic of Chile","abb2":"CL","abb3":"CHL","code":"152"},"CN":{"cn":"中国","en":"China","full":"the People's Republic of China","abb2":"CN","abb3":"CHN","code":"156"},"CX":{"cn":"圣诞岛","en":"Christmas Island","full":"Christmas Island","abb2":"CX","abb3":"CXR","code":"162"},"CC":{"cn":"科科斯(基林)群岛","en":"Cocos (Keeling) Islands","full":"Cocos (Keeling) Islands","abb2":"CC","abb3":"CCK","code":"166"},"CO":{"cn":"哥伦比亚","en":"Colombia","full":"the Republic of Colombia","abb2":"CO","abb3":"COL","code":"170"},"KM":{"cn":"科摩罗","en":"Comoros","full":"the Union of the Comoros","abb2":"KM","abb3":"COM","code":"174"},"CG":{"cn":"刚果(布)","en":"Congo","full":"the Republic of the Congo","abb2":"CG","abb3":"COG","code":"178"},"CD":{"cn":"刚果(金)","en":"Congo (the Democratic Republic of the)","full":"the Democratic Republic of the Congo","abb2":"CD","abb3":"COD","code":"180"},"CK":{"cn":"库克群岛","en":"Cook Islands","full":"Cook Islands","abb2":"CK","abb3":"COK","code":"184"},"CR":{"cn":"哥斯达黎加","en":"Costa Rica","full":"the Republic of Costa Rica","abb2":"CR","abb3":"CRI","code":"188"},"CI":{"cn":"科特迪瓦","en":"Côte d'Ivoire","full":"the Republic of Côte d'Ivoire","abb2":"CI","abb3":"CIV","code":"384"},"HR":{"cn":"克罗地亚","en":"Croatia","full":"the Republic of Croatia","abb2":"HR","abb3":"HRV","code":"191"},"CU":{"cn":"古巴","en":"Cuba","full":"the Republic of Cuba","abb2":"CU","abb3":"CUB","code":"192"},"CY":{"cn":"塞浦路斯","en":"Cyprus","full":"the Republic of Cyprus","abb2":"CY","abb3":"CYP","code":"196"},"CZ":{"cn":"捷克","en":"Czech Republic","full":"the Czech Republic","abb2":"CZ","abb3":"CZE","code":"203"},"DK":{"cn":"丹麦","en":"Denmark","full":"the Kingdom of Denmark","abb2":"DK","abb3":"DNK","code":"208"},"DJ":{"cn":"吉布提","en":"Djibouti","full":"the Republic of Djibouti","abb2":"DJ","abb3":"DJI","code":"262"},"DM":{"cn":"多米尼克","en":"Dominica","full":"the Commonwealth of Dominica","abb2":"DM","abb3":"DMA","code":"212"},"DO":{"cn":"多米尼加","en":"Dominican Republic","full":"the Dominican Republic","abb2":"DO","abb3":"DOM","code":"214"},"EC":{"cn":"厄瓜多尔","en":"Ecuador","full":"the Republic of Ecuador","abb2":"EC","abb3":"ECU","code":"218"},"EG":{"cn":"埃及","en":"Egypt","full":"the Arab Republic of Egypt","abb2":"EG","abb3":"EGY","code":"818"},"SV":{"cn":"萨尔瓦多","en":"El Salvador","full":"the Republic of El Salvador","abb2":"SV","abb3":"SLV","code":"222"},"GQ":{"cn":"赤道几内亚","en":"Equatorial Guinea","full":"the Republic of Equatorial Guinea","abb2":"GQ","abb3":"GNQ","code":"226"},"ER":{"cn":"厄立特里亚","en":"Eritrea","full":"Eritrea","abb2":"ER","abb3":"ERI","code":"232"},"EE":{"cn":"爱沙尼亚","en":"Estonia","full":"the Republic of Estonia","abb2":"EE","abb3":"EST","code":"233"},"ET":{"cn":"埃塞俄比亚","en":"Ethiopia","full":"the Federal Democratic Republic of Ethiopia","abb2":"ET","abb3":"ETH","code":"231"},"FK":{"cn":"福克兰群岛(马尔维纳斯)","en":"Falkland Islands [Malvinas]","full":"Falkland Islands [Malvinas]","abb2":"FK","abb3":"FLK","code":"238"},"FO":{"cn":"法罗群岛","en":"Faroe Islands","full":"Faroe Islands","abb2":"FO","abb3":"FRO","code":"234"},"FJ":{"cn":"斐济","en":"Fiji","full":"the Republic of the Fiji Islands","abb2":"FJ","abb3":"FJI","code":"242"},"FI":{"cn":"芬兰","en":"Finland","full":"the Republic of Finland","abb2":"FI","abb3":"FIN","code":"246"},"FR":{"cn":"法国","en":"France","full":"the French Republic","abb2":"FR","abb3":"FRA","code":"250"},"GF":{"cn":"法属圭亚那","en":"French Guiana","full":"French Guiana","abb2":"GF","abb3":"GUF","code":"254"},"PF":{"cn":"法属波利尼西亚","en":"French Polynesia","full":"French Polynesia","abb2":"PF","abb3":"PYF","code":"258"},"TF":{"cn":"法属南部领地","en":"French Southern Territories","full":"French Southern Territories","abb2":"TF","abb3":"ATF","code":"260"},"GA":{"cn":"加蓬","en":"Gabon","full":"the Gabonese Republic","abb2":"GA","abb3":"GAB","code":"266"},"GM":{"cn":"冈比亚","en":"Gambia","full":"the Republic of The Gambia","abb2":"GM","abb3":"GMB","code":"270"},"GE":{"cn":"格鲁吉亚","en":"Georgia","full":"Georgia","abb2":"GE","abb3":"GEO","code":"268"},"DE":{"cn":"德国","en":"Germany","full":"he Federal Republic of Germany","abb2":"DE","abb3":"DEU","code":"276"},"GH":{"cn":"加纳","en":"Ghana","full":"the Republic of Ghana","abb2":"GH","abb3":"GHA","code":"288"},"GI":{"cn":"直布罗陀","en":"Gibraltar","full":"Gibraltar","abb2":"GI","abb3":"GIB","code":"292"},"GR":{"cn":"希腊","en":"Greece","full":"the Hellenic Republic","abb2":"GR","abb3":"GRC","code":"300"},"GL":{"cn":"格陵兰","en":"Greenland","full":"Greenland","abb2":"GL","abb3":"GRL","code":"304"},"GD":{"cn":"格林纳达","en":"Grenada","full":"Grenada","abb2":"GD","abb3":"GRD","code":"308"},"GP":{"cn":"瓜德罗普","en":"Guadeloupe","full":"Guadeloupe","abb2":"GP","abb3":"GLP","code":"312"},"GU":{"cn":"关岛","en":"Guam","full":"Guam","abb2":"GU","abb3":"GUM","code":"316"},"GT":{"cn":"危地马拉","en":"Guatemala","full":"the Republic of Guatemala","abb2":"GT","abb3":"GTM","code":"320"},"GG":{"cn":"格恩西岛","en":"Guernsey","full":"Guernsey","abb2":"GG","abb3":"GGY","code":"831"},"GN":{"cn":"几内亚","en":"Guinea","full":"the Republic of Guinea","abb2":"GN","abb3":"GIN","code":"324"},"GW":{"cn":"几内亚比绍","en":"Guinea-Bissau","full":"the Republic of Guinea-Bissau","abb2":"GW","abb3":"GNB","code":"624"},"GY":{"cn":"圭亚那","en":"Guyana","full":"the Republic of Guyana","abb2":"GY","abb3":"GUY","code":"328"},"HT":{"cn":"海地","en":"Haiti","full":"the Republic of Haiti","abb2":"HT","abb3":"HTI","code":"332"},"HM":{"cn":"赫德岛和麦克唐纳岛","en":"Heard Island and McDonald Islands","full":"Heard Island and McDonald Islands","abb2":"HM","abb3":"HMD","code":"334"},"VA":{"cn":"梵蒂冈","en":"Holy See [Vatican City State]","full":"Holy See [Vatican City State]","abb2":"VA","abb3":"VAT","code":"336"},"HN":{"cn":"洪都拉斯","en":"Honduras","full":"the Republic of Honduras","abb2":"HN","abb3":"HND","code":"340"},"HK":{"cn":"香港 (中国)","en":"Hong Kong (China)","full":"the Hong Kong (China) Special Administrative Region of China","abb2":"HK","abb3":"HKG","code":"344"},"HU":{"cn":"匈牙利","en":"Hungary","full":"the Republic of Hungary","abb2":"HU","abb3":"HUN","code":"348"},"IS":{"cn":"冰岛","en":"Iceland","full":"the Republic of Iceland","abb2":"IS","abb3":"ISL","code":"352"},"IN":{"cn":"印度","en":"India","full":"the Republic of India","abb2":"IN","abb3":"IND","code":"356"},"ID":{"cn":"印度尼西亚","en":"Indonesia","full":"the Republic of Indonesia","abb2":"ID","abb3":"IDN","code":"360"},"IR":{"cn":"伊朗","en":"Iran (the Islamic Republic of)","full":"the Islamic Republic of Iran","abb2":"IR","abb3":"IRN","code":"364"},"IQ":{"cn":"伊拉克","en":"Iraq","full":"the Republic of Iraq","abb2":"IQ","abb3":"IRQ","code":"368"},"IE":{"cn":"爱尔兰","en":"Ireland","full":"Ireland","abb2":"IE","abb3":"IRL","code":"372"},"IM":{"cn":"英国属地曼岛","en":"Isle of Man","full":"Isle of Man","abb2":"IM","abb3":"IMN","code":"833"},"IL":{"cn":"以色列","en":"Israel","full":"the State of Israel","abb2":"IL","abb3":"ISR","code":"376"},"IT":{"cn":"意大利","en":"Italy","full":"the Republic of Italy","abb2":"IT","abb3":"ITA","code":"380"},"JM":{"cn":"牙买加","en":"Jamaica","full":"Jamaica","abb2":"JM","abb3":"JAM","code":"388"},"JP":{"cn":"日本","en":"Japan","full":"Japan","abb2":"JP","abb3":"JPN","code":"392"},"JE":{"cn":"泽西岛","en":"Jersey","full":"Jersey","abb2":"JE","abb3":"JEY","code":"832"},"JO":{"cn":"约旦","en":"Jordan","full":"the Hashemite Kingdom of Jordan","abb2":"JO","abb3":"JOR","code":"400"},"KZ":{"cn":"哈萨克斯坦","en":"Kazakhstan","full":"the Republic of Kazakhstan","abb2":"KZ","abb3":"KAZ","code":"398"},"KE":{"cn":"肯尼亚","en":"Kenya","full":"the Republic of Kenya","abb2":"KE","abb3":"KEN","code":"404"},"KI":{"cn":"基里巴斯","en":"Kiribati","full":"the Republic of Kiribati","abb2":"KI","abb3":"KIR","code":"296"},"KP":{"cn":"朝鲜","en":"Korea (the Democratic People's Republic of)","full":"the Democratic People's Republic of Korea","abb2":"KP","abb3":"PRK","code":"408"},"KR":{"cn":"韩国","en":"Korea (the Republic of)","full":"the Republic of Korea","abb2":"KR","abb3":"KOR","code":"410"},"KW":{"cn":"科威特","en":"Kuwait","full":"he State of Kuwait","abb2":"KW","abb3":"KWT","code":"414"},"KG":{"cn":"吉尔吉斯斯坦","en":"Kyrgyzstan","full":"the Kyrgyz Republic","abb2":"KG","abb3":"KGZ","code":"417"},"LA":{"cn":"老挝","en":"Lao People's Democratic Republic","full":"the Lao People's Democratic Republic","abb2":"LA","abb3":"LAO","code":"418"},"LV":{"cn":"拉脱维亚","en":"Latvia","full":"the Republic of Latvia","abb2":"LV","abb3":"LVA","code":"428"},"LB":{"cn":"黎巴嫩","en":"Lebanon","full":"the Lebanese Republic","abb2":"LB","abb3":"LBN","code":"422"},"LS":{"cn":"莱索托","en":"Lesotho","full":"the Kingdom of Lesotho","abb2":"LS","abb3":"LSO","code":"426"},"LR":{"cn":"利比里亚","en":"Liberia","full":"the Republic of Liberia","abb2":"LR","abb3":"LBR","code":"430"},"LY":{"cn":"利比亚","en":"Libyan Arab Jamahiriya","full":"the Socialist People's Libyan Arab Jamahiriya","abb2":"LY","abb3":"LBY","code":"434"},"LI":{"cn":"列支敦士登","en":"Liechtenstein","full":"the Principality of Liechtenstein","abb2":"LI","abb3":"LIE","code":"438"},"LT":{"cn":"立陶宛","en":"Lithuania","full":"the Republic of Lithuania","abb2":"LT","abb3":"LTU","code":"440"},"LU":{"cn":"卢森堡","en":"Luxembourg","full":"the Grand Duchy of Luxembourg","abb2":"LU","abb3":"LUX","code":"442"},"MO":{"cn":"澳门","en":"Macao","full":"Macao Special Administrative Region of China","abb2":"MO","abb3":"MAC","code":"446"},"MK":{"cn":"前南马其顿","en":"Macedonia (the former Yugoslav Republic of)","full":"the former Yugoslav Republic of Macedonia","abb2":"MK","abb3":"MKD","code":"807"},"MG":{"cn":"马达加斯加","en":"Madagascar","full":"the Republic of Madagascar","abb2":"MG","abb3":"MDG","code":"450"},"MW":{"cn":"马拉维","en":"Malawi","full":"the Republic of Malawi","abb2":"MW","abb3":"MWI","code":"454"},"MY":{"cn":"马来西亚","en":"Malaysia","full":"Malaysia","abb2":"MY","abb3":"MYS","code":"458"},"MV":{"cn":"马尔代夫","en":"Maldives","full":"the Republic of Maldives","abb2":"MV","abb3":"MDV","code":"462"},"ML":{"cn":"马里","en":"Mali","full":"the Republic of Mali","abb2":"ML","abb3":"MLI","code":"466"},"MT":{"cn":"马耳他","en":"Malta","full":"the Republic of Malta","abb2":"MT","abb3":"MLT","code":"470"},"MH":{"cn":"马绍尔群岛","en":"Marshall Islands","full":"the Republic of the Marshall Islands","abb2":"MH","abb3":"MHL","code":"584"},"MQ":{"cn":"马提尼克","en":"Martinique","full":"Martinique","abb2":"MQ","abb3":"MTQ","code":"474"},"MR":{"cn":"毛利塔尼亚","en":"Mauritania","full":"the Islamic Republic of Mauritania","abb2":"MR","abb3":"MRT","code":"478"},"MU":{"cn":"毛里求斯","en":"Mauritius","full":"the Republic of Mauritius","abb2":"MU","abb3":"MUS","code":"480"},"YT":{"cn":"马约特","en":"Mayotte","full":"Mayotte","abb2":"YT","abb3":"MYT","code":"175"},"MX":{"cn":"墨西哥","en":"Mexico","full":"the United Mexican States","abb2":"MX","abb3":"MEX","code":"484"},"FM":{"cn":"密克罗尼西亚联邦","en":"Micronesia (the Federated States of)","full":"the Federated States of Micronesia","abb2":"FM","abb3":"FSM","code":"583"},"MD":{"cn":"摩尔多瓦","en":"Moldova (the Republic of)","full":"the Republic of Moldova","abb2":"MD","abb3":"MDA","code":"498"},"MC":{"cn":"摩纳哥","en":"Monaco","full":"the Principality of Monaco","abb2":"MC","abb3":"MCO","code":"492"},"MN":{"cn":"蒙古","en":"Mongolia","full":"Mongolia","abb2":"MN","abb3":"MNG","code":"496"},"ME":{"cn":"黑山","en":"Montenegro","full":"he Republic of Montenegro","abb2":"ME","abb3":"MNE","code":"499"},"MS":{"cn":"蒙特塞拉特","en":"Montserrat","full":"Montserrat","abb2":"MS","abb3":"MSR","code":"500"},"MA":{"cn":"摩洛哥","en":"Morocco","full":"the Kingdom of Morocco","abb2":"MA","abb3":"MAR","code":"504"},"MZ":{"cn":"莫桑比克","en":"Mozambique","full":"the Republic of Mozambique","abb2":"MZ","abb3":"MOZ","code":"508"},"MM":{"cn":"缅甸","en":"Myanmar","full":"the Union of Myanmar","abb2":"MM","abb3":"MMR","code":"104"},"NA":{"cn":"纳米比亚","en":"Namibia","full":"the Republic of Namibia","abb2":"NA","abb3":"NAM","code":"516"},"NR":{"cn":"瑙鲁","en":"Nauru","full":"the Republic of Nauru","abb2":"NR","abb3":"NRU","code":"520"},"NP":{"cn":"尼泊尔","en":"Nepal","full":"Nepal","abb2":"NP","abb3":"NPL","code":"524"},"NL":{"cn":"荷兰","en":"Netherlands","full":"the Kingdom of the Netherlands","abb2":"NL","abb3":"NLD","code":"528"},"AN":{"cn":"荷属安的列斯","en":"Netherlands Antilles","full":"Netherlands Antilles","abb2":"AN","abb3":"ANT","code":"530"},"NC":{"cn":"新喀里多尼亚","en":"New Caledonia","full":"New Caledonia","abb2":"NC","abb3":"NCL","code":"540"},"NZ":{"cn":"新西兰","en":"New Zealand","full":"New Zealand","abb2":"NZ","abb3":"NZL","code":"554"},"NI":{"cn":"尼加拉瓜","en":"Nicaragua","full":"the Republic of Nicaragua","abb2":"NI","abb3":"NIC","code":"558"},"NE":{"cn":"尼日尔","en":"Niger","full":"the Republic of the Niger","abb2":"NE","abb3":"NER","code":"562"},"NG":{"cn":"尼日利亚","en":"Nigeria","full":"the Federal Republic of Nigeria","abb2":"NG","abb3":"NGA","code":"566"},"NU":{"cn":"纽埃","en":"Niue","full":"the Republic of Niue","abb2":"NU","abb3":"NIU","code":"570"},"NF":{"cn":"诺福克岛","en":"Norfolk Island","full":"Norfolk Island","abb2":"NF","abb3":"NFK","code":"574"},"MP":{"cn":"北马里亚纳","en":"Northern Mariana Islands","full":"the Commonwealth of the Northern Mariana Islands","abb2":"MP","abb3":"MNP","code":"580"},"NO":{"cn":"挪威","en":"Norway","full":"the Kingdom of Norway","abb2":"NO","abb3":"NOR","code":"578"},"OM":{"cn":"阿曼","en":"Oman","full":"the Sultanate of Oman","abb2":"OM","abb3":"OMN","code":"512"},"PK":{"cn":"巴基斯坦","en":"Pakistan","full":"the Islamic Republic of Pakistan","abb2":"PK","abb3":"PAK","code":"586"},"PW":{"cn":"帕劳","en":"Palau","full":"the Republic of Palau","abb2":"PW","abb3":"PLW","code":"585"},"PS":{"cn":"巴勒斯坦","en":"Palestinian Territory (the Occupied)","full":"the Occupied Palestinian Territory","abb2":"PS","abb3":"PSE","code":"275"},"PA":{"cn":"巴拿马","en":"Panama","full":"the Republic of Panama","abb2":"PA","abb3":"PAN","code":"591"},"PG":{"cn":"巴布亚新几内亚","en":"Papua New Guinea","full":"Papua New Guinea","abb2":"PG","abb3":"PNG","code":"598"},"PY":{"cn":"巴拉圭","en":"Paraguay","full":"the Republic of Paraguay","abb2":"PY","abb3":"PRY","code":"600"},"PE":{"cn":"秘鲁","en":"Peru","full":"the Republic of Peru","abb2":"PE","abb3":"PER","code":"604"},"PH":{"cn":"菲律宾","en":"Philippines","full":"the Republic of the Philippines","abb2":"PH","abb3":"PHL","code":"608"},"PN":{"cn":"皮特凯恩","en":"Pitcairn","full":"Pitcairn","abb2":"PN","abb3":"PCN","code":"612"},"PL":{"cn":"波兰","en":"Poland","full":"the Republic of Poland","abb2":"PL","abb3":"POL","code":"616"},"PT":{"cn":"葡萄牙","en":"Portugal","full":"the Portuguese Republic","abb2":"PT","abb3":"PRT","code":"620"},"PR":{"cn":"波多黎各","en":"Puerto Rico","full":"Puerto Rico","abb2":"PR","abb3":"PRI","code":"630"},"QA":{"cn":"卡塔尔","en":"Qatar","full":"the State of Qatar","abb2":"QA","abb3":"QAT","code":"634"},"RE":{"cn":"留尼汪","en":"Réunion","full":"Réunion","abb2":"RE","abb3":"REU","code":"638"},"RO":{"cn":"罗马尼亚","en":"Romania","full":"Romania","abb2":"RO","abb3":"ROU","code":"642"},"RU":{"cn":"俄罗斯联邦","en":"Russian Federation","full":"the Russian Federation","abb2":"RU","abb3":"RUS","code":"643"},"RW":{"cn":"卢旺达","en":"Rwanda","full":"the Republic of Rwanda","abb2":"RW","abb3":"RWA","code":"646"},"SH":{"cn":"圣赫勒拿","en":"Saint Helena","full":"Saint Helena","abb2":"SH","abb3":"SHN","code":"654"},"KN":{"cn":"圣基茨和尼维斯","en":"Saint Kitts and Nevis","full":"Saint Kitts and Nevis","abb2":"KN","abb3":"KNA","code":"659"},"LC":{"cn":"圣卢西亚","en":"Saint Lucia","full":"Saint Lucia","abb2":"LC","abb3":"LCA","code":"662"},"PM":{"cn":"圣皮埃尔和密克隆","en":"Saint Pierre and Miquelon","full":"Saint Pierre and Miquelon","abb2":"PM","abb3":"SPM","code":"666"},"VC":{"cn":"圣文森特和格林纳丁斯","en":"Saint Vincent and the Grenadines","full":"Saint Vincent and the Grenadines","abb2":"VC","abb3":"VCT","code":"670"},"WS":{"cn":"萨摩亚","en":"Samoa","full":"the Independent State of Samoa","abb2":"WS","abb3":"WSM","code":"882"},"SM":{"cn":"圣马力诺","en":"San Marino","full":"the Republic of San Marino","abb2":"SM","abb3":"SMR","code":"674"},"ST":{"cn":"圣多美和普林西比","en":"Sao Tome and Principe","full":"the Democratic Republic of Sao Tome and Principe","abb2":"ST","abb3":"STP","code":"678"},"SA":{"cn":"沙特阿拉伯","en":"Saudi Arabia","full":"the Kingdom of Saudi Arabia","abb2":"SA","abb3":"SAU","code":"682"},"SN":{"cn":"塞内加尔","en":"Senegal","full":"the Republic of Senegal","abb2":"SN","abb3":"SEN","code":"686"},"RS":{"cn":"塞尔维亚","en":"Serbia","full":"the Republic of Serbia","abb2":"RS","abb3":"SRB","code":"688"},"SC":{"cn":"塞舌尔","en":"Seychelles","full":"the Republic of Seychelles","abb2":"SC","abb3":"SYC","code":"690"},"SL":{"cn":"塞拉利昂","en":"Sierra Leone","full":"the Republic of Sierra Leone","abb2":"SL","abb3":"SLE","code":"694"},"SG":{"cn":"新加坡","en":"Singapore","full":"the Republic of Singapore","abb2":"SG","abb3":"SGP","code":"702"},"SK":{"cn":"斯洛伐克","en":"Slovakia","full":"the Slovak Republic","abb2":"SK","abb3":"SVK","code":"703"},"SI":{"cn":"斯洛文尼亚","en":"Slovenia","full":"the Republic of Slovenia","abb2":"SI","abb3":"SVN","code":"705"},"SB":{"cn":"所罗门群岛","en":"Solomon Islands","full":"Solomon Islands","abb2":"SB","abb3":"SLB","code":"090"},"SO":{"cn":"索马里","en":"Somalia","full":"the Somali Republic","abb2":"SO","abb3":"SOM","code":"706"},"ZA":{"cn":"南非","en":"South Africa","full":"the Republic of South Africa","abb2":"ZA","abb3":"ZAF","code":"710"},"GS":{"cn":"南乔治亚岛和南桑德韦奇岛","en":"South Georgia and the South Sandwich Islands","full":"South Georgia and the South Sandwich Islands","abb2":"GS","abb3":"SGS","code":"239"},"ES":{"cn":"西班牙","en":"Spain","full":"the Kingdom of Spain","abb2":"ES","abb3":"ESP","code":"724"},"LK":{"cn":"斯里兰卡","en":"Sri Lanka","full":"the Democratic Socialist Republic of Sri Lanka","abb2":"LK","abb3":"LKA","code":"144"},"SD":{"cn":"苏丹","en":"Sudan","full":"the Republic of the Sudan","abb2":"SD","abb3":"SDN","code":"736"},"SR":{"cn":"苏里南","en":"Suriname","full":"the Republic of Suriname","abb2":"SR","abb3":"SUR","code":"740"},"SJ":{"cn":"斯瓦尔巴岛和扬马延岛","en":"Svalbard and Jan Mayen","full":"Svalbard and Jan Mayen","abb2":"SJ","abb3":"SJM","code":"744"},"SZ":{"cn":"斯威士兰","en":"Swaziland","full":"the Kingdom of Swaziland","abb2":"SZ","abb3":"SWZ","code":"748"},"SE":{"cn":"瑞典","en":"Sweden","full":"the Kingdom of Sweden","abb2":"SE","abb3":"SWE","code":"752"},"CH":{"cn":"瑞士","en":"Switzerland","full":"the Swiss Confederation","abb2":"CH","abb3":"CHE","code":"756"},"SY":{"cn":"叙利亚","en":"Syrian Arab Republic","full":"the Syrian Arab Republic","abb2":"SY","abb3":"SYR","code":"760"},"TW":{"cn":"台湾","en":"Taiwan (Province of China)","full":"Taiwan (Province of China)","abb2":"TW","abb3":"TWN","code":"158"},"TJ":{"cn":"塔吉克斯坦","en":"Tajikistan","full":"the Republic of Tajikistan","abb2":"TJ","abb3":"TJK","code":"762"},"TZ":{"cn":"坦桑尼亚","en":"Tanzania,United Republic of","full":"the United Republic of Tanzania","abb2":"TZ","abb3":"TZA","code":"834"},"TH":{"cn":"泰国","en":"Thailand","full":"the Kingdom of Thailand","abb2":"TH","abb3":"THA","code":"764"},"TL":{"cn":"东帝汶","en":"Timor-Leste","full":"the Democratic Republic of Timor-Leste","abb2":"TL","abb3":"TLS","code":"626"},"TG":{"cn":"多哥","en":"Togo","full":"the Togolese Republic","abb2":"TG","abb3":"TGO","code":"768"},"TK":{"cn":"托克劳","en":"Tokelau","full":"Tokelau","abb2":"TK","abb3":"TKL","code":"772"},"TO":{"cn":"汤加","en":"Tonga","full":"the Kingdom of Tonga","abb2":"TO","abb3":"TON","code":"776"},"TT":{"cn":"特立尼达和多巴哥","en":"Trinidad and Tobago","full":"the Republic of Trinidad and Tobago","abb2":"TT","abb3":"TTO","code":"780"},"TN":{"cn":"突尼斯","en":"Tunisia","full":"the Republic of Tunisia","abb2":"TN","abb3":"TUN","code":"788"},"TR":{"cn":"土耳其","en":"Turkey","full":"the Republic of Turkey","abb2":"TR","abb3":"TUR","code":"792"},"TM":{"cn":"土库曼斯坦","en":"Turkmenistan","full":"Turkmenistan","abb2":"TM","abb3":"TKM","code":"795"},"TC":{"cn":"特克斯和凯科斯群岛","en":"Turks and Caicos Islands","full":"Turks and Caicos Islands","abb2":"TC","abb3":"TCA","code":"796"},"TV":{"cn":"图瓦卢","en":"Tuvalu","full":"Tuvalu","abb2":"TV","abb3":"TUV","code":"798"},"UG":{"cn":"乌干达","en":"Uganda","full":"the Republic of Uganda","abb2":"UG","abb3":"UGA","code":"800"},"UA":{"cn":"乌克兰","en":"Ukraine","full":"Ukraine","abb2":"UA","abb3":"UKR","code":"804"},"AE":{"cn":"阿联酋","en":"United Arab Emirates","full":"the United Arab Emirates","abb2":"AE","abb3":"ARE","code":"784"},"GB":{"cn":"英国","en":"United Kingdom","full":"the United Kingdom of Great Britain and Northern Ireland","abb2":"GB","abb3":"GBR","code":"826"},"US":{"cn":"美国","en":"United States","full":"the United States of America","abb2":"US","abb3":"USA","code":"840"},"UM":{"cn":"美国本土外小岛屿","en":"United States Minor Outlying Islands","full":"United States Minor Outlying Islands","abb2":"UM","abb3":"UMI","code":"581"},"UY":{"cn":"乌拉圭","en":"Uruguay","full":"the Eastern Republic of Uruguay","abb2":"UY","abb3":"URY","code":"858"},"UZ":{"cn":"乌兹别克斯坦","en":"Uzbekistan","full":"the Republic of Uzbekistan","abb2":"UZ","abb3":"UZB","code":"860"},"VU":{"cn":"瓦努阿图","en":"Vanuatu","full":"the Republic of Vanuatu","abb2":"VU","abb3":"VUT","code":"548"},"VE":{"cn":"委内瑞拉","en":"Venezuela","full":"the Bolivarian Republic of Venezuela","abb2":"VE","abb3":"VEN","code":"862"},"VN":{"cn":"越南","en":"Viet Nam","full":"the Socialist Republic of Viet Nam","abb2":"VN","abb3":"VNM","code":"704"},"VG":{"cn":"英属维尔京群岛","en":"Virgin Islands (British)","full":"British Virgin Islands","abb2":"VG","abb3":"VGB","code":"092"},"VI":{"cn":"美属维尔京群岛","en":"Virgin Islands (U.S.)","full":"the Virgin Islands of the United States","abb2":"VI","abb3":"VIR","code":"850"},"WF":{"cn":"瓦利斯和富图纳","en":"Wallis and Futuna","full":"Wallis and Futuna Islands","abb2":"WF","abb3":"WLF","code":"876"},"EH":{"cn":"西撒哈拉","en":"Western Sahara","full":"Western Sahara","abb2":"EH","abb3":"ESH","code":"732"},"YE":{"cn":"也门","en":"Yemen","full":"the Republic of Yemen","abb2":"YE","abb3":"YEM","code":"887"},"ZM":{"cn":"赞比亚","en":"Zambia","full":"the Republic of Zambia","abb2":"ZM","abb3":"ZMB","code":"894"},"ZW":{"cn":"津巴布韦","en":"Zimbabwe","full":"the Republic of Zimbabwe","abb2":"ZW","abb3":"ZWE","code":"716"}} 2 | -------------------------------------------------------------------------------- /countries_flags/AC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/AC.png -------------------------------------------------------------------------------- /countries_flags/AD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/AD.png -------------------------------------------------------------------------------- /countries_flags/AE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/AE.png -------------------------------------------------------------------------------- /countries_flags/AF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/AF.png -------------------------------------------------------------------------------- /countries_flags/AG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/AG.png -------------------------------------------------------------------------------- /countries_flags/AI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/AI.png -------------------------------------------------------------------------------- /countries_flags/AL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/AL.png -------------------------------------------------------------------------------- /countries_flags/AM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/AM.png -------------------------------------------------------------------------------- /countries_flags/AO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/AO.png -------------------------------------------------------------------------------- /countries_flags/AQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/AQ.png -------------------------------------------------------------------------------- /countries_flags/AR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/AR.png -------------------------------------------------------------------------------- /countries_flags/AS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/AS.png -------------------------------------------------------------------------------- /countries_flags/AT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/AT.png -------------------------------------------------------------------------------- /countries_flags/AU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/AU.png -------------------------------------------------------------------------------- /countries_flags/AW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/AW.png -------------------------------------------------------------------------------- /countries_flags/AX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/AX.png -------------------------------------------------------------------------------- /countries_flags/AZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/AZ.png -------------------------------------------------------------------------------- /countries_flags/BA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/BA.png -------------------------------------------------------------------------------- /countries_flags/BB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/BB.png -------------------------------------------------------------------------------- /countries_flags/BD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/BD.png -------------------------------------------------------------------------------- /countries_flags/BE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/BE.png -------------------------------------------------------------------------------- /countries_flags/BF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/BF.png -------------------------------------------------------------------------------- /countries_flags/BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/BG.png -------------------------------------------------------------------------------- /countries_flags/BH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/BH.png -------------------------------------------------------------------------------- /countries_flags/BI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/BI.png -------------------------------------------------------------------------------- /countries_flags/BJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/BJ.png -------------------------------------------------------------------------------- /countries_flags/BL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/BL.png -------------------------------------------------------------------------------- /countries_flags/BM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/BM.png -------------------------------------------------------------------------------- /countries_flags/BN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/BN.png -------------------------------------------------------------------------------- /countries_flags/BO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/BO.png -------------------------------------------------------------------------------- /countries_flags/BQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/BQ.png -------------------------------------------------------------------------------- /countries_flags/BR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/BR.png -------------------------------------------------------------------------------- /countries_flags/BS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/BS.png -------------------------------------------------------------------------------- /countries_flags/BT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/BT.png -------------------------------------------------------------------------------- /countries_flags/BW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/BW.png -------------------------------------------------------------------------------- /countries_flags/BY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/BY.png -------------------------------------------------------------------------------- /countries_flags/BZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/BZ.png -------------------------------------------------------------------------------- /countries_flags/CA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/CA.png -------------------------------------------------------------------------------- /countries_flags/CC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/CC.png -------------------------------------------------------------------------------- /countries_flags/CD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/CD.png -------------------------------------------------------------------------------- /countries_flags/CF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/CF.png -------------------------------------------------------------------------------- /countries_flags/CG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/CG.png -------------------------------------------------------------------------------- /countries_flags/CH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/CH.png -------------------------------------------------------------------------------- /countries_flags/CI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/CI.png -------------------------------------------------------------------------------- /countries_flags/CK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/CK.png -------------------------------------------------------------------------------- /countries_flags/CL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/CL.png -------------------------------------------------------------------------------- /countries_flags/CM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/CM.png -------------------------------------------------------------------------------- /countries_flags/CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/CN.png -------------------------------------------------------------------------------- /countries_flags/CO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/CO.png -------------------------------------------------------------------------------- /countries_flags/CR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/CR.png -------------------------------------------------------------------------------- /countries_flags/CU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/CU.png -------------------------------------------------------------------------------- /countries_flags/CV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/CV.png -------------------------------------------------------------------------------- /countries_flags/CW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/CW.png -------------------------------------------------------------------------------- /countries_flags/CX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/CX.png -------------------------------------------------------------------------------- /countries_flags/CY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/CY.png -------------------------------------------------------------------------------- /countries_flags/CZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/CZ.png -------------------------------------------------------------------------------- /countries_flags/DE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/DE.png -------------------------------------------------------------------------------- /countries_flags/DJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/DJ.png -------------------------------------------------------------------------------- /countries_flags/DK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/DK.png -------------------------------------------------------------------------------- /countries_flags/DM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/DM.png -------------------------------------------------------------------------------- /countries_flags/DO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/DO.png -------------------------------------------------------------------------------- /countries_flags/DZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/DZ.png -------------------------------------------------------------------------------- /countries_flags/EC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/EC.png -------------------------------------------------------------------------------- /countries_flags/EE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/EE.png -------------------------------------------------------------------------------- /countries_flags/EG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/EG.png -------------------------------------------------------------------------------- /countries_flags/EH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/EH.png -------------------------------------------------------------------------------- /countries_flags/ER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/ER.png -------------------------------------------------------------------------------- /countries_flags/ES.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/ES.png -------------------------------------------------------------------------------- /countries_flags/ET.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/ET.png -------------------------------------------------------------------------------- /countries_flags/FI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/FI.png -------------------------------------------------------------------------------- /countries_flags/FJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/FJ.png -------------------------------------------------------------------------------- /countries_flags/FK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/FK.png -------------------------------------------------------------------------------- /countries_flags/FM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/FM.png -------------------------------------------------------------------------------- /countries_flags/FO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/FO.png -------------------------------------------------------------------------------- /countries_flags/FR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/FR.png -------------------------------------------------------------------------------- /countries_flags/GA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/GA.png -------------------------------------------------------------------------------- /countries_flags/GB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/GB.png -------------------------------------------------------------------------------- /countries_flags/GD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/GD.png -------------------------------------------------------------------------------- /countries_flags/GE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/GE.png -------------------------------------------------------------------------------- /countries_flags/GF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/GF.png -------------------------------------------------------------------------------- /countries_flags/GG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/GG.png -------------------------------------------------------------------------------- /countries_flags/GH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/GH.png -------------------------------------------------------------------------------- /countries_flags/GI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/GI.png -------------------------------------------------------------------------------- /countries_flags/GL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/GL.png -------------------------------------------------------------------------------- /countries_flags/GM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/GM.png -------------------------------------------------------------------------------- /countries_flags/GN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/GN.png -------------------------------------------------------------------------------- /countries_flags/GP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/GP.png -------------------------------------------------------------------------------- /countries_flags/GQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/GQ.png -------------------------------------------------------------------------------- /countries_flags/GR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/GR.png -------------------------------------------------------------------------------- /countries_flags/GS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/GS.png -------------------------------------------------------------------------------- /countries_flags/GT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/GT.png -------------------------------------------------------------------------------- /countries_flags/GU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/GU.png -------------------------------------------------------------------------------- /countries_flags/GW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/GW.png -------------------------------------------------------------------------------- /countries_flags/GY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/GY.png -------------------------------------------------------------------------------- /countries_flags/HK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/HK.png -------------------------------------------------------------------------------- /countries_flags/HM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/HM.png -------------------------------------------------------------------------------- /countries_flags/HN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/HN.png -------------------------------------------------------------------------------- /countries_flags/HR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/HR.png -------------------------------------------------------------------------------- /countries_flags/HT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/HT.png -------------------------------------------------------------------------------- /countries_flags/HU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/HU.png -------------------------------------------------------------------------------- /countries_flags/ID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/ID.png -------------------------------------------------------------------------------- /countries_flags/IE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/IE.png -------------------------------------------------------------------------------- /countries_flags/IL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/IL.png -------------------------------------------------------------------------------- /countries_flags/IM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/IM.png -------------------------------------------------------------------------------- /countries_flags/IN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/IN.png -------------------------------------------------------------------------------- /countries_flags/IO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/IO.png -------------------------------------------------------------------------------- /countries_flags/IQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/IQ.png -------------------------------------------------------------------------------- /countries_flags/IR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/IR.png -------------------------------------------------------------------------------- /countries_flags/IS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/IS.png -------------------------------------------------------------------------------- /countries_flags/IT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/IT.png -------------------------------------------------------------------------------- /countries_flags/JE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/JE.png -------------------------------------------------------------------------------- /countries_flags/JM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/JM.png -------------------------------------------------------------------------------- /countries_flags/JO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/JO.png -------------------------------------------------------------------------------- /countries_flags/JP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/JP.png -------------------------------------------------------------------------------- /countries_flags/KE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/KE.png -------------------------------------------------------------------------------- /countries_flags/KG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/KG.png -------------------------------------------------------------------------------- /countries_flags/KH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/KH.png -------------------------------------------------------------------------------- /countries_flags/KI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/KI.png -------------------------------------------------------------------------------- /countries_flags/KM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/KM.png -------------------------------------------------------------------------------- /countries_flags/KN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/KN.png -------------------------------------------------------------------------------- /countries_flags/KP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/KP.png -------------------------------------------------------------------------------- /countries_flags/KR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/KR.png -------------------------------------------------------------------------------- /countries_flags/KW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/KW.png -------------------------------------------------------------------------------- /countries_flags/KY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/KY.png -------------------------------------------------------------------------------- /countries_flags/KZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/KZ.png -------------------------------------------------------------------------------- /countries_flags/LA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/LA.png -------------------------------------------------------------------------------- /countries_flags/LB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/LB.png -------------------------------------------------------------------------------- /countries_flags/LC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/LC.png -------------------------------------------------------------------------------- /countries_flags/LI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/LI.png -------------------------------------------------------------------------------- /countries_flags/LK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/LK.png -------------------------------------------------------------------------------- /countries_flags/LR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/LR.png -------------------------------------------------------------------------------- /countries_flags/LS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/LS.png -------------------------------------------------------------------------------- /countries_flags/LT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/LT.png -------------------------------------------------------------------------------- /countries_flags/LU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/LU.png -------------------------------------------------------------------------------- /countries_flags/LV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/LV.png -------------------------------------------------------------------------------- /countries_flags/LY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/LY.png -------------------------------------------------------------------------------- /countries_flags/MA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/MA.png -------------------------------------------------------------------------------- /countries_flags/MC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/MC.png -------------------------------------------------------------------------------- /countries_flags/MD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/MD.png -------------------------------------------------------------------------------- /countries_flags/ME.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/ME.png -------------------------------------------------------------------------------- /countries_flags/MF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/MF.png -------------------------------------------------------------------------------- /countries_flags/MG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/MG.png -------------------------------------------------------------------------------- /countries_flags/MH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/MH.png -------------------------------------------------------------------------------- /countries_flags/MK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/MK.png -------------------------------------------------------------------------------- /countries_flags/ML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/ML.png -------------------------------------------------------------------------------- /countries_flags/MM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/MM.png -------------------------------------------------------------------------------- /countries_flags/MN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/MN.png -------------------------------------------------------------------------------- /countries_flags/MO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/MO.png -------------------------------------------------------------------------------- /countries_flags/MP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/MP.png -------------------------------------------------------------------------------- /countries_flags/MQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/MQ.png -------------------------------------------------------------------------------- /countries_flags/MR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/MR.png -------------------------------------------------------------------------------- /countries_flags/MS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/MS.png -------------------------------------------------------------------------------- /countries_flags/MT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/MT.png -------------------------------------------------------------------------------- /countries_flags/MU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/MU.png -------------------------------------------------------------------------------- /countries_flags/MV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/MV.png -------------------------------------------------------------------------------- /countries_flags/MW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/MW.png -------------------------------------------------------------------------------- /countries_flags/MX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/MX.png -------------------------------------------------------------------------------- /countries_flags/MY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/MY.png -------------------------------------------------------------------------------- /countries_flags/MZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/MZ.png -------------------------------------------------------------------------------- /countries_flags/NA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/NA.png -------------------------------------------------------------------------------- /countries_flags/NC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/NC.png -------------------------------------------------------------------------------- /countries_flags/NE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/NE.png -------------------------------------------------------------------------------- /countries_flags/NF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/NF.png -------------------------------------------------------------------------------- /countries_flags/NG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/NG.png -------------------------------------------------------------------------------- /countries_flags/NI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/NI.png -------------------------------------------------------------------------------- /countries_flags/NL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/NL.png -------------------------------------------------------------------------------- /countries_flags/NO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/NO.png -------------------------------------------------------------------------------- /countries_flags/NP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/NP.png -------------------------------------------------------------------------------- /countries_flags/NR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/NR.png -------------------------------------------------------------------------------- /countries_flags/NU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/NU.png -------------------------------------------------------------------------------- /countries_flags/NZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/NZ.png -------------------------------------------------------------------------------- /countries_flags/OM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/OM.png -------------------------------------------------------------------------------- /countries_flags/PA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/PA.png -------------------------------------------------------------------------------- /countries_flags/PE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/PE.png -------------------------------------------------------------------------------- /countries_flags/PF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/PF.png -------------------------------------------------------------------------------- /countries_flags/PG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/PG.png -------------------------------------------------------------------------------- /countries_flags/PH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/PH.png -------------------------------------------------------------------------------- /countries_flags/PK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/PK.png -------------------------------------------------------------------------------- /countries_flags/PL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/PL.png -------------------------------------------------------------------------------- /countries_flags/PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/PM.png -------------------------------------------------------------------------------- /countries_flags/PN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/PN.png -------------------------------------------------------------------------------- /countries_flags/PR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/PR.png -------------------------------------------------------------------------------- /countries_flags/PS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/PS.png -------------------------------------------------------------------------------- /countries_flags/PT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/PT.png -------------------------------------------------------------------------------- /countries_flags/PW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/PW.png -------------------------------------------------------------------------------- /countries_flags/PY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/PY.png -------------------------------------------------------------------------------- /countries_flags/QA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/QA.png -------------------------------------------------------------------------------- /countries_flags/RE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/RE.png -------------------------------------------------------------------------------- /countries_flags/RO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/RO.png -------------------------------------------------------------------------------- /countries_flags/RS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/RS.png -------------------------------------------------------------------------------- /countries_flags/RU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/RU.png -------------------------------------------------------------------------------- /countries_flags/RW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/RW.png -------------------------------------------------------------------------------- /countries_flags/SA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/SA.png -------------------------------------------------------------------------------- /countries_flags/SB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/SB.png -------------------------------------------------------------------------------- /countries_flags/SC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/SC.png -------------------------------------------------------------------------------- /countries_flags/SD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/SD.png -------------------------------------------------------------------------------- /countries_flags/SE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/SE.png -------------------------------------------------------------------------------- /countries_flags/SG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/SG.png -------------------------------------------------------------------------------- /countries_flags/SH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/SH.png -------------------------------------------------------------------------------- /countries_flags/SI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/SI.png -------------------------------------------------------------------------------- /countries_flags/SJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/SJ.png -------------------------------------------------------------------------------- /countries_flags/SK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/SK.png -------------------------------------------------------------------------------- /countries_flags/SL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/SL.png -------------------------------------------------------------------------------- /countries_flags/SM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/SM.png -------------------------------------------------------------------------------- /countries_flags/SN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/SN.png -------------------------------------------------------------------------------- /countries_flags/SO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/SO.png -------------------------------------------------------------------------------- /countries_flags/SR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/SR.png -------------------------------------------------------------------------------- /countries_flags/SS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/SS.png -------------------------------------------------------------------------------- /countries_flags/ST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/ST.png -------------------------------------------------------------------------------- /countries_flags/SV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/SV.png -------------------------------------------------------------------------------- /countries_flags/SX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/SX.png -------------------------------------------------------------------------------- /countries_flags/SY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/SY.png -------------------------------------------------------------------------------- /countries_flags/SZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/SZ.png -------------------------------------------------------------------------------- /countries_flags/TA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/TA.png -------------------------------------------------------------------------------- /countries_flags/TC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/TC.png -------------------------------------------------------------------------------- /countries_flags/TD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/TD.png -------------------------------------------------------------------------------- /countries_flags/TG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/TG.png -------------------------------------------------------------------------------- /countries_flags/TH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/TH.png -------------------------------------------------------------------------------- /countries_flags/TJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/TJ.png -------------------------------------------------------------------------------- /countries_flags/TK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/TK.png -------------------------------------------------------------------------------- /countries_flags/TL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/TL.png -------------------------------------------------------------------------------- /countries_flags/TM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/TM.png -------------------------------------------------------------------------------- /countries_flags/TN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/TN.png -------------------------------------------------------------------------------- /countries_flags/TO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/TO.png -------------------------------------------------------------------------------- /countries_flags/TR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/TR.png -------------------------------------------------------------------------------- /countries_flags/TT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/TT.png -------------------------------------------------------------------------------- /countries_flags/TV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/TV.png -------------------------------------------------------------------------------- /countries_flags/TW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/TW.png -------------------------------------------------------------------------------- /countries_flags/TZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/TZ.png -------------------------------------------------------------------------------- /countries_flags/UA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/UA.png -------------------------------------------------------------------------------- /countries_flags/UG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/UG.png -------------------------------------------------------------------------------- /countries_flags/UM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/UM.png -------------------------------------------------------------------------------- /countries_flags/US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/US.png -------------------------------------------------------------------------------- /countries_flags/UY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/UY.png -------------------------------------------------------------------------------- /countries_flags/UZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/UZ.png -------------------------------------------------------------------------------- /countries_flags/VA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/VA.png -------------------------------------------------------------------------------- /countries_flags/VC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/VC.png -------------------------------------------------------------------------------- /countries_flags/VE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/VE.png -------------------------------------------------------------------------------- /countries_flags/VG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/VG.png -------------------------------------------------------------------------------- /countries_flags/VI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/VI.png -------------------------------------------------------------------------------- /countries_flags/VN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/VN.png -------------------------------------------------------------------------------- /countries_flags/VU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/VU.png -------------------------------------------------------------------------------- /countries_flags/WF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/WF.png -------------------------------------------------------------------------------- /countries_flags/WS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/WS.png -------------------------------------------------------------------------------- /countries_flags/XK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/XK.png -------------------------------------------------------------------------------- /countries_flags/YE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/YE.png -------------------------------------------------------------------------------- /countries_flags/YT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/YT.png -------------------------------------------------------------------------------- /countries_flags/ZA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/ZA.png -------------------------------------------------------------------------------- /countries_flags/ZM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/ZM.png -------------------------------------------------------------------------------- /countries_flags/ZW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vihan/CountriesData/e2d58bb1628e00de3e93fda3baf3c7c373425f62/countries_flags/ZW.png -------------------------------------------------------------------------------- /countries_list.json: -------------------------------------------------------------------------------- 1 | [{"cn":"阿富汗","en":"Afghanistan","full":"the Islamic Republic of Afghanistan","abb2":"AF","abb3":"AFG","code":"004"},{"cn":"奥兰群岛","en":"Aland Islands","full":"Aland Islands","abb2":"AX","abb3":"ALA","code":"248"},{"cn":"阿尔巴尼亚","en":"Albania","full":"the Republic of Albania","abb2":"AL","abb3":"ALB","code":"008"},{"cn":"阿尔及利亚","en":"Algeria","full":"the People's Democratic Republic of Algeria","abb2":"DZ","abb3":"DZA","code":"012"},{"cn":"美属萨摩亚","en":"American Samoa","full":"American Samoa","abb2":"AS","abb3":"ASM","code":"016"},{"cn":"安道尔","en":"Andorra","full":"the Principality of Andorra","abb2":"AD","abb3":"AND","code":"020"},{"cn":"安哥拉","en":"Angola","full":"the Republic of Angola","abb2":"AO","abb3":"AGO","code":"024"},{"cn":"安圭拉","en":"Anguilla","full":"Anguilla","abb2":"AI","abb3":"AIA","code":"660"},{"cn":"南极洲","en":"Antarctica","full":"Antarctica","abb2":"AQ","abb3":"ATA","code":"010"},{"cn":"安提瓜和巴布达","en":"Antigua and Barbuda","full":"Antigua and Barbuda","abb2":"AG","abb3":"ATG","code":"028"},{"cn":"阿根廷","en":"Argentina","full":"the Argentine Republic","abb2":"AR","abb3":"ARG","code":"032"},{"cn":"亚美尼亚","en":"Armenia","full":"the Republic of Armenia","abb2":"AM","abb3":"ARM","code":"051"},{"cn":"阿鲁巴","en":"Aruba","full":"Aruba","abb2":"AW","abb3":"ABW","code":"533"},{"cn":"澳大利亚","en":"Australia","full":"Australia","abb2":"AU","abb3":"AUS","code":"036"},{"cn":"奥地利","en":"Austria","full":"the Republic of Austria","abb2":"AT","abb3":"AUT","code":"040"},{"cn":"阿塞拜疆","en":"Azerbaijan","full":"the Republic of Azerbaijan","abb2":"AZ","abb3":"AZE","code":"031"},{"cn":"巴哈马","en":"Bahamas","full":"the Commonwealth of The Bahamas","abb2":"BS","abb3":"BHS","code":"044"},{"cn":"巴林","en":"Bahrain","full":"the Kingdom of Bahrain","abb2":"BH","abb3":"BHR","code":"048"},{"cn":"孟加拉国","en":"Bangladesh","full":"the People's Republic of Bangladesh","abb2":"BD","abb3":"BGD","code":"050"},{"cn":"巴巴多斯","en":"Barbados","full":"Barbados","abb2":"BB","abb3":"BRB","code":"052"},{"cn":"白俄罗斯","en":"Belarus","full":"the Republic of Belarus","abb2":"BY","abb3":"BLR","code":"112"},{"cn":"比利时","en":"Belgium","full":"the Kingdom of Belgium","abb2":"BE","abb3":"BEL","code":"056"},{"cn":"伯利兹","en":"Belize","full":"Belize","abb2":"BZ","abb3":"BLZ","code":"084"},{"cn":"贝宁","en":"Benin","full":"the Republic of Benin","abb2":"BJ","abb3":"BEN","code":"204"},{"cn":"百慕大","en":"Bermuda","full":"Bermuda","abb2":"BM","abb3":"BMU","code":"060"},{"cn":"不丹","en":"Bhutan","full":"the Kingdom of Bhutan","abb2":"BT","abb3":"BTN","code":"064"},{"cn":"玻利维亚","en":"Bolivia","full":"the Republic of Bolivia","abb2":"BO","abb3":"BOL","code":"068"},{"cn":"波黑","en":"Bosnia and Herzegovina","full":"Bosnia and Herzegovina","abb2":"BA","abb3":"BIH","code":"070"},{"cn":"博茨瓦纳","en":"Botswana","full":"the Republic of Botswana","abb2":"BW","abb3":"BWA","code":"072"},{"cn":"布维岛","en":"Bouvet Island","full":"Bouvet Island","abb2":"BV","abb3":"BVT","code":"074"},{"cn":"巴西","en":"Brazil","full":"the Federative Republic of Brazil","abb2":"BR","abb3":"BRA","code":"076"},{"cn":"英属印度洋领地","en":"British Indian Ocean Territory","full":"British Indian Ocean Territory","abb2":"IO","abb3":"IOT","code":"086"},{"cn":"文莱","en":"Brunei Darussalam","full":"Brunei Darussalam","abb2":"BN","abb3":"BRN","code":"096"},{"cn":"保加利亚","en":"Bulgaria","full":"the Republic of Bulgaria","abb2":"BG","abb3":"BGR","code":"100"},{"cn":"布基纳法索","en":"Burkina Faso","full":"Burkina Faso","abb2":"BF","abb3":"BFA","code":"854"},{"cn":"布隆迪","en":"Burundi","full":"the Republic of Burundi","abb2":"BI","abb3":"BDI","code":"108"},{"cn":"柬埔寨","en":"Cambodia","full":"the Kingdom of Cambodia","abb2":"KH","abb3":"KHM","code":"116"},{"cn":"喀麦隆","en":"Cameroon","full":"the Republic of Cameroon","abb2":"CM","abb3":"CMR","code":"120"},{"cn":"加拿大","en":"Canada","full":"Canada","abb2":"CA","abb3":"CAN","code":"124"},{"cn":"佛得角","en":"Cape Verde","full":"the Republic of Cape Verde","abb2":"CV","abb3":"CPV","code":"132"},{"cn":"开曼群岛","en":"Cayman Islands","full":"Cayman Islands","abb2":"KY","abb3":"CYM","code":"136"},{"cn":"中非","en":"Central African Republic","full":"the Central African Republic","abb2":"CF","abb3":"CAF","code":"140"},{"cn":"乍得","en":"Chad","full":"the Republic of Chad","abb2":"TD","abb3":"TCD","code":"148"},{"cn":"智利","en":"Chile","full":"the Republic of Chile","abb2":"CL","abb3":"CHL","code":"152"},{"cn":"中国","en":"China","full":"the People's Republic of China","abb2":"CN","abb3":"CHN","code":"156"},{"cn":"圣诞岛","en":"Christmas Island","full":"Christmas Island","abb2":"CX","abb3":"CXR","code":"162"},{"cn":"科科斯(基林)群岛","en":"Cocos (Keeling) Islands","full":"Cocos (Keeling) Islands","abb2":"CC","abb3":"CCK","code":"166"},{"cn":"哥伦比亚","en":"Colombia","full":"the Republic of Colombia","abb2":"CO","abb3":"COL","code":"170"},{"cn":"科摩罗","en":"Comoros","full":"the Union of the Comoros","abb2":"KM","abb3":"COM","code":"174"},{"cn":"刚果(布)","en":"Congo","full":"the Republic of the Congo","abb2":"CG","abb3":"COG","code":"178"},{"cn":"刚果(金)","en":"Congo (the Democratic Republic of the)","full":"the Democratic Republic of the Congo","abb2":"CD","abb3":"COD","code":"180"},{"cn":"库克群岛","en":"Cook Islands","full":"Cook Islands","abb2":"CK","abb3":"COK","code":"184"},{"cn":"哥斯达黎加","en":"Costa Rica","full":"the Republic of Costa Rica","abb2":"CR","abb3":"CRI","code":"188"},{"cn":"科特迪瓦","en":"Côte d'Ivoire","full":"the Republic of Côte d'Ivoire","abb2":"CI","abb3":"CIV","code":"384"},{"cn":"克罗地亚","en":"Croatia","full":"the Republic of Croatia","abb2":"HR","abb3":"HRV","code":"191"},{"cn":"古巴","en":"Cuba","full":"the Republic of Cuba","abb2":"CU","abb3":"CUB","code":"192"},{"cn":"塞浦路斯","en":"Cyprus","full":"the Republic of Cyprus","abb2":"CY","abb3":"CYP","code":"196"},{"cn":"捷克","en":"Czech Republic","full":"the Czech Republic","abb2":"CZ","abb3":"CZE","code":"203"},{"cn":"丹麦","en":"Denmark","full":"the Kingdom of Denmark","abb2":"DK","abb3":"DNK","code":"208"},{"cn":"吉布提","en":"Djibouti","full":"the Republic of Djibouti","abb2":"DJ","abb3":"DJI","code":"262"},{"cn":"多米尼克","en":"Dominica","full":"the Commonwealth of Dominica","abb2":"DM","abb3":"DMA","code":"212"},{"cn":"多米尼加","en":"Dominican Republic","full":"the Dominican Republic","abb2":"DO","abb3":"DOM","code":"214"},{"cn":"厄瓜多尔","en":"Ecuador","full":"the Republic of Ecuador","abb2":"EC","abb3":"ECU","code":"218"},{"cn":"埃及","en":"Egypt","full":"the Arab Republic of Egypt","abb2":"EG","abb3":"EGY","code":"818"},{"cn":"萨尔瓦多","en":"El Salvador","full":"the Republic of El Salvador","abb2":"SV","abb3":"SLV","code":"222"},{"cn":"赤道几内亚","en":"Equatorial Guinea","full":"the Republic of Equatorial Guinea","abb2":"GQ","abb3":"GNQ","code":"226"},{"cn":"厄立特里亚","en":"Eritrea","full":"Eritrea","abb2":"ER","abb3":"ERI","code":"232"},{"cn":"爱沙尼亚","en":"Estonia","full":"the Republic of Estonia","abb2":"EE","abb3":"EST","code":"233"},{"cn":"埃塞俄比亚","en":"Ethiopia","full":"the Federal Democratic Republic of Ethiopia","abb2":"ET","abb3":"ETH","code":"231"},{"cn":"福克兰群岛(马尔维纳斯)","en":"Falkland Islands [Malvinas]","full":"Falkland Islands [Malvinas]","abb2":"FK","abb3":"FLK","code":"238"},{"cn":"法罗群岛","en":"Faroe Islands","full":"Faroe Islands","abb2":"FO","abb3":"FRO","code":"234"},{"cn":"斐济","en":"Fiji","full":"the Republic of the Fiji Islands","abb2":"FJ","abb3":"FJI","code":"242"},{"cn":"芬兰","en":"Finland","full":"the Republic of Finland","abb2":"FI","abb3":"FIN","code":"246"},{"cn":"法国","en":"France","full":"the French Republic","abb2":"FR","abb3":"FRA","code":"250"},{"cn":"法属圭亚那","en":"French Guiana","full":"French Guiana","abb2":"GF","abb3":"GUF","code":"254"},{"cn":"法属波利尼西亚","en":"French Polynesia","full":"French Polynesia","abb2":"PF","abb3":"PYF","code":"258"},{"cn":"法属南部领地","en":"French Southern Territories","full":"French Southern Territories","abb2":"TF","abb3":"ATF","code":"260"},{"cn":"加蓬","en":"Gabon","full":"the Gabonese Republic","abb2":"GA","abb3":"GAB","code":"266"},{"cn":"冈比亚","en":"Gambia","full":"the Republic of The Gambia","abb2":"GM","abb3":"GMB","code":"270"},{"cn":"格鲁吉亚","en":"Georgia","full":"Georgia","abb2":"GE","abb3":"GEO","code":"268"},{"cn":"德国","en":"Germany","full":"he Federal Republic of Germany","abb2":"DE","abb3":"DEU","code":"276"},{"cn":"加纳","en":"Ghana","full":"the Republic of Ghana","abb2":"GH","abb3":"GHA","code":"288"},{"cn":"直布罗陀","en":"Gibraltar","full":"Gibraltar","abb2":"GI","abb3":"GIB","code":"292"},{"cn":"希腊","en":"Greece","full":"the Hellenic Republic","abb2":"GR","abb3":"GRC","code":"300"},{"cn":"格陵兰","en":"Greenland","full":"Greenland","abb2":"GL","abb3":"GRL","code":"304"},{"cn":"格林纳达","en":"Grenada","full":"Grenada","abb2":"GD","abb3":"GRD","code":"308"},{"cn":"瓜德罗普","en":"Guadeloupe","full":"Guadeloupe","abb2":"GP","abb3":"GLP","code":"312"},{"cn":"关岛","en":"Guam","full":"Guam","abb2":"GU","abb3":"GUM","code":"316"},{"cn":"危地马拉","en":"Guatemala","full":"the Republic of Guatemala","abb2":"GT","abb3":"GTM","code":"320"},{"cn":"格恩西岛","en":"Guernsey","full":"Guernsey","abb2":"GG","abb3":"GGY","code":"831"},{"cn":"几内亚","en":"Guinea","full":"the Republic of Guinea","abb2":"GN","abb3":"GIN","code":"324"},{"cn":"几内亚比绍","en":"Guinea-Bissau","full":"the Republic of Guinea-Bissau","abb2":"GW","abb3":"GNB","code":"624"},{"cn":"圭亚那","en":"Guyana","full":"the Republic of Guyana","abb2":"GY","abb3":"GUY","code":"328"},{"cn":"海地","en":"Haiti","full":"the Republic of Haiti","abb2":"HT","abb3":"HTI","code":"332"},{"cn":"赫德岛和麦克唐纳岛","en":"Heard Island and McDonald Islands","full":"Heard Island and McDonald Islands","abb2":"HM","abb3":"HMD","code":"334"},{"cn":"梵蒂冈","en":"Holy See [Vatican City State]","full":"Holy See [Vatican City State]","abb2":"VA","abb3":"VAT","code":"336"},{"cn":"洪都拉斯","en":"Honduras","full":"the Republic of Honduras","abb2":"HN","abb3":"HND","code":"340"},{"cn":"香港 (中国)","en":"Hong Kong (China)","full":"the Hong Kong (China) Special Administrative Region of China","abb2":"HK","abb3":"HKG","code":"344"},{"cn":"匈牙利","en":"Hungary","full":"the Republic of Hungary","abb2":"HU","abb3":"HUN","code":"348"},{"cn":"冰岛","en":"Iceland","full":"the Republic of Iceland","abb2":"IS","abb3":"ISL","code":"352"},{"cn":"印度","en":"India","full":"the Republic of India","abb2":"IN","abb3":"IND","code":"356"},{"cn":"印度尼西亚","en":"Indonesia","full":"the Republic of Indonesia","abb2":"ID","abb3":"IDN","code":"360"},{"cn":"伊朗","en":"Iran (the Islamic Republic of)","full":"the Islamic Republic of Iran","abb2":"IR","abb3":"IRN","code":"364"},{"cn":"伊拉克","en":"Iraq","full":"the Republic of Iraq","abb2":"IQ","abb3":"IRQ","code":"368"},{"cn":"爱尔兰","en":"Ireland","full":"Ireland","abb2":"IE","abb3":"IRL","code":"372"},{"cn":"英国属地曼岛","en":"Isle of Man","full":"Isle of Man","abb2":"IM","abb3":"IMN","code":"833"},{"cn":"以色列","en":"Israel","full":"the State of Israel","abb2":"IL","abb3":"ISR","code":"376"},{"cn":"意大利","en":"Italy","full":"the Republic of Italy","abb2":"IT","abb3":"ITA","code":"380"},{"cn":"牙买加","en":"Jamaica","full":"Jamaica","abb2":"JM","abb3":"JAM","code":"388"},{"cn":"日本","en":"Japan","full":"Japan","abb2":"JP","abb3":"JPN","code":"392"},{"cn":"泽西岛","en":"Jersey","full":"Jersey","abb2":"JE","abb3":"JEY","code":"832"},{"cn":"约旦","en":"Jordan","full":"the Hashemite Kingdom of Jordan","abb2":"JO","abb3":"JOR","code":"400"},{"cn":"哈萨克斯坦","en":"Kazakhstan","full":"the Republic of Kazakhstan","abb2":"KZ","abb3":"KAZ","code":"398"},{"cn":"肯尼亚","en":"Kenya","full":"the Republic of Kenya","abb2":"KE","abb3":"KEN","code":"404"},{"cn":"基里巴斯","en":"Kiribati","full":"the Republic of Kiribati","abb2":"KI","abb3":"KIR","code":"296"},{"cn":"朝鲜","en":"Korea (the Democratic People's Republic of)","full":"the Democratic People's Republic of Korea","abb2":"KP","abb3":"PRK","code":"408"},{"cn":"韩国","en":"Korea (the Republic of)","full":"the Republic of Korea","abb2":"KR","abb3":"KOR","code":"410"},{"cn":"科威特","en":"Kuwait","full":"he State of Kuwait","abb2":"KW","abb3":"KWT","code":"414"},{"cn":"吉尔吉斯斯坦","en":"Kyrgyzstan","full":"the Kyrgyz Republic","abb2":"KG","abb3":"KGZ","code":"417"},{"cn":"老挝","en":"Lao People's Democratic Republic","full":"the Lao People's Democratic Republic","abb2":"LA","abb3":"LAO","code":"418"},{"cn":"拉脱维亚","en":"Latvia","full":"the Republic of Latvia","abb2":"LV","abb3":"LVA","code":"428"},{"cn":"黎巴嫩","en":"Lebanon","full":"the Lebanese Republic","abb2":"LB","abb3":"LBN","code":"422"},{"cn":"莱索托","en":"Lesotho","full":"the Kingdom of Lesotho","abb2":"LS","abb3":"LSO","code":"426"},{"cn":"利比里亚","en":"Liberia","full":"the Republic of Liberia","abb2":"LR","abb3":"LBR","code":"430"},{"cn":"利比亚","en":"Libyan Arab Jamahiriya","full":"the Socialist People's Libyan Arab Jamahiriya","abb2":"LY","abb3":"LBY","code":"434"},{"cn":"列支敦士登","en":"Liechtenstein","full":"the Principality of Liechtenstein","abb2":"LI","abb3":"LIE","code":"438"},{"cn":"立陶宛","en":"Lithuania","full":"the Republic of Lithuania","abb2":"LT","abb3":"LTU","code":"440"},{"cn":"卢森堡","en":"Luxembourg","full":"the Grand Duchy of Luxembourg","abb2":"LU","abb3":"LUX","code":"442"},{"cn":"澳门","en":"Macao","full":"Macao Special Administrative Region of China","abb2":"MO","abb3":"MAC","code":"446"},{"cn":"前南马其顿","en":"Macedonia (the former Yugoslav Republic of)","full":"the former Yugoslav Republic of Macedonia","abb2":"MK","abb3":"MKD","code":"807"},{"cn":"马达加斯加","en":"Madagascar","full":"the Republic of Madagascar","abb2":"MG","abb3":"MDG","code":"450"},{"cn":"马拉维","en":"Malawi","full":"the Republic of Malawi","abb2":"MW","abb3":"MWI","code":"454"},{"cn":"马来西亚","en":"Malaysia","full":"Malaysia","abb2":"MY","abb3":"MYS","code":"458"},{"cn":"马尔代夫","en":"Maldives","full":"the Republic of Maldives","abb2":"MV","abb3":"MDV","code":"462"},{"cn":"马里","en":"Mali","full":"the Republic of Mali","abb2":"ML","abb3":"MLI","code":"466"},{"cn":"马耳他","en":"Malta","full":"the Republic of Malta","abb2":"MT","abb3":"MLT","code":"470"},{"cn":"马绍尔群岛","en":"Marshall Islands","full":"the Republic of the Marshall Islands","abb2":"MH","abb3":"MHL","code":"584"},{"cn":"马提尼克","en":"Martinique","full":"Martinique","abb2":"MQ","abb3":"MTQ","code":"474"},{"cn":"毛利塔尼亚","en":"Mauritania","full":"the Islamic Republic of Mauritania","abb2":"MR","abb3":"MRT","code":"478"},{"cn":"毛里求斯","en":"Mauritius","full":"the Republic of Mauritius","abb2":"MU","abb3":"MUS","code":"480"},{"cn":"马约特","en":"Mayotte","full":"Mayotte","abb2":"YT","abb3":"MYT","code":"175"},{"cn":"墨西哥","en":"Mexico","full":"the United Mexican States","abb2":"MX","abb3":"MEX","code":"484"},{"cn":"密克罗尼西亚联邦","en":"Micronesia (the Federated States of)","full":"the Federated States of Micronesia","abb2":"FM","abb3":"FSM","code":"583"},{"cn":"摩尔多瓦","en":"Moldova (the Republic of)","full":"the Republic of Moldova","abb2":"MD","abb3":"MDA","code":"498"},{"cn":"摩纳哥","en":"Monaco","full":"the Principality of Monaco","abb2":"MC","abb3":"MCO","code":"492"},{"cn":"蒙古","en":"Mongolia","full":"Mongolia","abb2":"MN","abb3":"MNG","code":"496"},{"cn":"黑山","en":"Montenegro","full":"he Republic of Montenegro","abb2":"ME","abb3":"MNE","code":"499"},{"cn":"蒙特塞拉特","en":"Montserrat","full":"Montserrat","abb2":"MS","abb3":"MSR","code":"500"},{"cn":"摩洛哥","en":"Morocco","full":"the Kingdom of Morocco","abb2":"MA","abb3":"MAR","code":"504"},{"cn":"莫桑比克","en":"Mozambique","full":"the Republic of Mozambique","abb2":"MZ","abb3":"MOZ","code":"508"},{"cn":"缅甸","en":"Myanmar","full":"the Union of Myanmar","abb2":"MM","abb3":"MMR","code":"104"},{"cn":"纳米比亚","en":"Namibia","full":"the Republic of Namibia","abb2":"NA","abb3":"NAM","code":"516"},{"cn":"瑙鲁","en":"Nauru","full":"the Republic of Nauru","abb2":"NR","abb3":"NRU","code":"520"},{"cn":"尼泊尔","en":"Nepal","full":"Nepal","abb2":"NP","abb3":"NPL","code":"524"},{"cn":"荷兰","en":"Netherlands","full":"the Kingdom of the Netherlands","abb2":"NL","abb3":"NLD","code":"528"},{"cn":"荷属安的列斯","en":"Netherlands Antilles","full":"Netherlands Antilles","abb2":"AN","abb3":"ANT","code":"530"},{"cn":"新喀里多尼亚","en":"New Caledonia","full":"New Caledonia","abb2":"NC","abb3":"NCL","code":"540"},{"cn":"新西兰","en":"New Zealand","full":"New Zealand","abb2":"NZ","abb3":"NZL","code":"554"},{"cn":"尼加拉瓜","en":"Nicaragua","full":"the Republic of Nicaragua","abb2":"NI","abb3":"NIC","code":"558"},{"cn":"尼日尔","en":"Niger","full":"the Republic of the Niger","abb2":"NE","abb3":"NER","code":"562"},{"cn":"尼日利亚","en":"Nigeria","full":"the Federal Republic of Nigeria","abb2":"NG","abb3":"NGA","code":"566"},{"cn":"纽埃","en":"Niue","full":"the Republic of Niue","abb2":"NU","abb3":"NIU","code":"570"},{"cn":"诺福克岛","en":"Norfolk Island","full":"Norfolk Island","abb2":"NF","abb3":"NFK","code":"574"},{"cn":"北马里亚纳","en":"Northern Mariana Islands","full":"the Commonwealth of the Northern Mariana Islands","abb2":"MP","abb3":"MNP","code":"580"},{"cn":"挪威","en":"Norway","full":"the Kingdom of Norway","abb2":"NO","abb3":"NOR","code":"578"},{"cn":"阿曼","en":"Oman","full":"the Sultanate of Oman","abb2":"OM","abb3":"OMN","code":"512"},{"cn":"巴基斯坦","en":"Pakistan","full":"the Islamic Republic of Pakistan","abb2":"PK","abb3":"PAK","code":"586"},{"cn":"帕劳","en":"Palau","full":"the Republic of Palau","abb2":"PW","abb3":"PLW","code":"585"},{"cn":"巴勒斯坦","en":"Palestinian Territory (the Occupied)","full":"the Occupied Palestinian Territory","abb2":"PS","abb3":"PSE","code":"275"},{"cn":"巴拿马","en":"Panama","full":"the Republic of Panama","abb2":"PA","abb3":"PAN","code":"591"},{"cn":"巴布亚新几内亚","en":"Papua New Guinea","full":"Papua New Guinea","abb2":"PG","abb3":"PNG","code":"598"},{"cn":"巴拉圭","en":"Paraguay","full":"the Republic of Paraguay","abb2":"PY","abb3":"PRY","code":"600"},{"cn":"秘鲁","en":"Peru","full":"the Republic of Peru","abb2":"PE","abb3":"PER","code":"604"},{"cn":"菲律宾","en":"Philippines","full":"the Republic of the Philippines","abb2":"PH","abb3":"PHL","code":"608"},{"cn":"皮特凯恩","en":"Pitcairn","full":"Pitcairn","abb2":"PN","abb3":"PCN","code":"612"},{"cn":"波兰","en":"Poland","full":"the Republic of Poland","abb2":"PL","abb3":"POL","code":"616"},{"cn":"葡萄牙","en":"Portugal","full":"the Portuguese Republic","abb2":"PT","abb3":"PRT","code":"620"},{"cn":"波多黎各","en":"Puerto Rico","full":"Puerto Rico","abb2":"PR","abb3":"PRI","code":"630"},{"cn":"卡塔尔","en":"Qatar","full":"the State of Qatar","abb2":"QA","abb3":"QAT","code":"634"},{"cn":"留尼汪","en":"Réunion","full":"Réunion","abb2":"RE","abb3":"REU","code":"638"},{"cn":"罗马尼亚","en":"Romania","full":"Romania","abb2":"RO","abb3":"ROU","code":"642"},{"cn":"俄罗斯联邦","en":"Russian Federation","full":"the Russian Federation","abb2":"RU","abb3":"RUS","code":"643"},{"cn":"卢旺达","en":"Rwanda","full":"the Republic of Rwanda","abb2":"RW","abb3":"RWA","code":"646"},{"cn":"圣赫勒拿","en":"Saint Helena","full":"Saint Helena","abb2":"SH","abb3":"SHN","code":"654"},{"cn":"圣基茨和尼维斯","en":"Saint Kitts and Nevis","full":"Saint Kitts and Nevis","abb2":"KN","abb3":"KNA","code":"659"},{"cn":"圣卢西亚","en":"Saint Lucia","full":"Saint Lucia","abb2":"LC","abb3":"LCA","code":"662"},{"cn":"圣皮埃尔和密克隆","en":"Saint Pierre and Miquelon","full":"Saint Pierre and Miquelon","abb2":"PM","abb3":"SPM","code":"666"},{"cn":"圣文森特和格林纳丁斯","en":"Saint Vincent and the Grenadines","full":"Saint Vincent and the Grenadines","abb2":"VC","abb3":"VCT","code":"670"},{"cn":"萨摩亚","en":"Samoa","full":"the Independent State of Samoa","abb2":"WS","abb3":"WSM","code":"882"},{"cn":"圣马力诺","en":"San Marino","full":"the Republic of San Marino","abb2":"SM","abb3":"SMR","code":"674"},{"cn":"圣多美和普林西比","en":"Sao Tome and Principe","full":"the Democratic Republic of Sao Tome and Principe","abb2":"ST","abb3":"STP","code":"678"},{"cn":"沙特阿拉伯","en":"Saudi Arabia","full":"the Kingdom of Saudi Arabia","abb2":"SA","abb3":"SAU","code":"682"},{"cn":"塞内加尔","en":"Senegal","full":"the Republic of Senegal","abb2":"SN","abb3":"SEN","code":"686"},{"cn":"塞尔维亚","en":"Serbia","full":"the Republic of Serbia","abb2":"RS","abb3":"SRB","code":"688"},{"cn":"塞舌尔","en":"Seychelles","full":"the Republic of Seychelles","abb2":"SC","abb3":"SYC","code":"690"},{"cn":"塞拉利昂","en":"Sierra Leone","full":"the Republic of Sierra Leone","abb2":"SL","abb3":"SLE","code":"694"},{"cn":"新加坡","en":"Singapore","full":"the Republic of Singapore","abb2":"SG","abb3":"SGP","code":"702"},{"cn":"斯洛伐克","en":"Slovakia","full":"the Slovak Republic","abb2":"SK","abb3":"SVK","code":"703"},{"cn":"斯洛文尼亚","en":"Slovenia","full":"the Republic of Slovenia","abb2":"SI","abb3":"SVN","code":"705"},{"cn":"所罗门群岛","en":"Solomon Islands","full":"Solomon Islands","abb2":"SB","abb3":"SLB","code":"090"},{"cn":"索马里","en":"Somalia","full":"the Somali Republic","abb2":"SO","abb3":"SOM","code":"706"},{"cn":"南非","en":"South Africa","full":"the Republic of South Africa","abb2":"ZA","abb3":"ZAF","code":"710"},{"cn":"南乔治亚岛和南桑德韦奇岛","en":"South Georgia and the South Sandwich Islands","full":"South Georgia and the South Sandwich Islands","abb2":"GS","abb3":"SGS","code":"239"},{"cn":"西班牙","en":"Spain","full":"the Kingdom of Spain","abb2":"ES","abb3":"ESP","code":"724"},{"cn":"斯里兰卡","en":"Sri Lanka","full":"the Democratic Socialist Republic of Sri Lanka","abb2":"LK","abb3":"LKA","code":"144"},{"cn":"苏丹","en":"Sudan","full":"the Republic of the Sudan","abb2":"SD","abb3":"SDN","code":"736"},{"cn":"苏里南","en":"Suriname","full":"the Republic of Suriname","abb2":"SR","abb3":"SUR","code":"740"},{"cn":"斯瓦尔巴岛和扬马延岛","en":"Svalbard and Jan Mayen","full":"Svalbard and Jan Mayen","abb2":"SJ","abb3":"SJM","code":"744"},{"cn":"斯威士兰","en":"Swaziland","full":"the Kingdom of Swaziland","abb2":"SZ","abb3":"SWZ","code":"748"},{"cn":"瑞典","en":"Sweden","full":"the Kingdom of Sweden","abb2":"SE","abb3":"SWE","code":"752"},{"cn":"瑞士","en":"Switzerland","full":"the Swiss Confederation","abb2":"CH","abb3":"CHE","code":"756"},{"cn":"叙利亚","en":"Syrian Arab Republic","full":"the Syrian Arab Republic","abb2":"SY","abb3":"SYR","code":"760"},{"cn":"台湾","en":"Taiwan (Province of China)","full":"Taiwan (Province of China)","abb2":"TW","abb3":"TWN","code":"158"},{"cn":"塔吉克斯坦","en":"Tajikistan","full":"the Republic of Tajikistan","abb2":"TJ","abb3":"TJK","code":"762"},{"cn":"坦桑尼亚","en":"Tanzania,United Republic of","full":"the United Republic of Tanzania","abb2":"TZ","abb3":"TZA","code":"834"},{"cn":"泰国","en":"Thailand","full":"the Kingdom of Thailand","abb2":"TH","abb3":"THA","code":"764"},{"cn":"东帝汶","en":"Timor-Leste","full":"the Democratic Republic of Timor-Leste","abb2":"TL","abb3":"TLS","code":"626"},{"cn":"多哥","en":"Togo","full":"the Togolese Republic","abb2":"TG","abb3":"TGO","code":"768"},{"cn":"托克劳","en":"Tokelau","full":"Tokelau","abb2":"TK","abb3":"TKL","code":"772"},{"cn":"汤加","en":"Tonga","full":"the Kingdom of Tonga","abb2":"TO","abb3":"TON","code":"776"},{"cn":"特立尼达和多巴哥","en":"Trinidad and Tobago","full":"the Republic of Trinidad and Tobago","abb2":"TT","abb3":"TTO","code":"780"},{"cn":"突尼斯","en":"Tunisia","full":"the Republic of Tunisia","abb2":"TN","abb3":"TUN","code":"788"},{"cn":"土耳其","en":"Turkey","full":"the Republic of Turkey","abb2":"TR","abb3":"TUR","code":"792"},{"cn":"土库曼斯坦","en":"Turkmenistan","full":"Turkmenistan","abb2":"TM","abb3":"TKM","code":"795"},{"cn":"特克斯和凯科斯群岛","en":"Turks and Caicos Islands","full":"Turks and Caicos Islands","abb2":"TC","abb3":"TCA","code":"796"},{"cn":"图瓦卢","en":"Tuvalu","full":"Tuvalu","abb2":"TV","abb3":"TUV","code":"798"},{"cn":"乌干达","en":"Uganda","full":"the Republic of Uganda","abb2":"UG","abb3":"UGA","code":"800"},{"cn":"乌克兰","en":"Ukraine","full":"Ukraine","abb2":"UA","abb3":"UKR","code":"804"},{"cn":"阿联酋","en":"United Arab Emirates","full":"the United Arab Emirates","abb2":"AE","abb3":"ARE","code":"784"},{"cn":"英国","en":"United Kingdom","full":"the United Kingdom of Great Britain and Northern Ireland","abb2":"GB","abb3":"GBR","code":"826"},{"cn":"美国","en":"United States","full":"the United States of America","abb2":"US","abb3":"USA","code":"840"},{"cn":"美国本土外小岛屿","en":"United States Minor Outlying Islands","full":"United States Minor Outlying Islands","abb2":"UM","abb3":"UMI","code":"581"},{"cn":"乌拉圭","en":"Uruguay","full":"the Eastern Republic of Uruguay","abb2":"UY","abb3":"URY","code":"858"},{"cn":"乌兹别克斯坦","en":"Uzbekistan","full":"the Republic of Uzbekistan","abb2":"UZ","abb3":"UZB","code":"860"},{"cn":"瓦努阿图","en":"Vanuatu","full":"the Republic of Vanuatu","abb2":"VU","abb3":"VUT","code":"548"},{"cn":"委内瑞拉","en":"Venezuela","full":"the Bolivarian Republic of Venezuela","abb2":"VE","abb3":"VEN","code":"862"},{"cn":"越南","en":"Viet Nam","full":"the Socialist Republic of Viet Nam","abb2":"VN","abb3":"VNM","code":"704"},{"cn":"英属维尔京群岛","en":"Virgin Islands (British)","full":"British Virgin Islands","abb2":"VG","abb3":"VGB","code":"092"},{"cn":"美属维尔京群岛","en":"Virgin Islands (U.S.)","full":"the Virgin Islands of the United States","abb2":"VI","abb3":"VIR","code":"850"},{"cn":"瓦利斯和富图纳","en":"Wallis and Futuna","full":"Wallis and Futuna Islands","abb2":"WF","abb3":"WLF","code":"876"},{"cn":"西撒哈拉","en":"Western Sahara","full":"Western Sahara","abb2":"EH","abb3":"ESH","code":"732"},{"cn":"也门","en":"Yemen","full":"the Republic of Yemen","abb2":"YE","abb3":"YEM","code":"887"},{"cn":"赞比亚","en":"Zambia","full":"the Republic of Zambia","abb2":"ZM","abb3":"ZMB","code":"894"},{"cn":"津巴布韦","en":"Zimbabwe","full":"the Republic of Zimbabwe","abb2":"ZW","abb3":"ZWE","code":"716"}] --------------------------------------------------------------------------------