1590 lines
30 KiB
TypeScript
1590 lines
30 KiB
TypeScript
// https://gist.githubusercontent.com/somangshu/93c83900714d14fe86502be6c48738c7/raw/5ebdc149d599f5661d2c87c59f23d6889cc93129/country.json
|
||
|
||
export interface CurrencyOptionProps {
|
||
code: string;
|
||
currency: string;
|
||
currency_name: string;
|
||
label: string;
|
||
phone: string;
|
||
symbol_native: string;
|
||
}
|
||
|
||
export const CurrencyTypeOptions: Array<CurrencyOptionProps> = [
|
||
{
|
||
code: "AD",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Andorra",
|
||
phone: "376",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "AE",
|
||
currency: "AED",
|
||
currency_name: "United Arab Emirates Dirham",
|
||
label: "United Arab Emirates",
|
||
phone: "971",
|
||
symbol_native: "د.إ.",
|
||
},
|
||
{
|
||
code: "AF",
|
||
currency: "AFN",
|
||
currency_name: "Afghan Afghani",
|
||
label: "Afghanistan",
|
||
phone: "93",
|
||
symbol_native: "؋",
|
||
},
|
||
{
|
||
code: "AL",
|
||
currency: "ALL",
|
||
currency_name: "Albanian Lek",
|
||
label: "Albania",
|
||
phone: "355",
|
||
symbol_native: "Lek",
|
||
},
|
||
{
|
||
code: "AM",
|
||
currency: "AMD",
|
||
currency_name: "Armenian Dram",
|
||
label: "Armenia",
|
||
phone: "374",
|
||
symbol_native: "դր.",
|
||
},
|
||
{
|
||
code: "AR",
|
||
currency: "ARS",
|
||
currency_name: "Argentine Peso",
|
||
label: "Argentina",
|
||
phone: "54",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "AS",
|
||
currency: "USD",
|
||
currency_name: "US Dollar",
|
||
label: "American Samoa",
|
||
phone: "1-684",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "AT",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Austria",
|
||
phone: "43",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "AU",
|
||
currency: "AUD",
|
||
currency_name: "Australian Dollar",
|
||
label: "Australia",
|
||
phone: "61",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "AX",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Alland Islands",
|
||
phone: "358",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "AZ",
|
||
currency: "AZN",
|
||
currency_name: "Azerbaijani Manat",
|
||
label: "Azerbaijan",
|
||
phone: "994",
|
||
symbol_native: "ман.",
|
||
},
|
||
{
|
||
code: "BA",
|
||
currency: "BAM",
|
||
currency_name: "Bosnia-Herzegovina Convertible Mark",
|
||
label: "Bosnia and Herzegovina",
|
||
phone: "387",
|
||
symbol_native: "KM",
|
||
},
|
||
{
|
||
code: "BD",
|
||
currency: "BDT",
|
||
currency_name: "Bangladeshi Taka",
|
||
label: "Bangladesh",
|
||
phone: "880",
|
||
symbol_native: "৳",
|
||
},
|
||
{
|
||
code: "BE",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Belgium",
|
||
phone: "32",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "BF",
|
||
currency: "XOF",
|
||
currency_name: "CFA Franc BCEAO",
|
||
label: "Burkina Faso",
|
||
phone: "226",
|
||
symbol_native: "CFA",
|
||
},
|
||
{
|
||
code: "BG",
|
||
currency: "BGN",
|
||
currency_name: "Bulgarian Lev",
|
||
label: "Bulgaria",
|
||
phone: "359",
|
||
symbol_native: "лв.",
|
||
},
|
||
{
|
||
code: "BH",
|
||
currency: "BHD",
|
||
currency_name: "Bahraini Dinar",
|
||
label: "Bahrain",
|
||
phone: "973",
|
||
symbol_native: "د.ب.",
|
||
},
|
||
{
|
||
code: "BI",
|
||
currency: "BIF",
|
||
currency_name: "Burundian Franc",
|
||
label: "Burundi",
|
||
phone: "257",
|
||
symbol_native: "FBu",
|
||
},
|
||
{
|
||
code: "BJ",
|
||
currency: "XOF",
|
||
currency_name: "CFA Franc BCEAO",
|
||
label: "Benin",
|
||
phone: "229",
|
||
symbol_native: "CFA",
|
||
},
|
||
{
|
||
code: "BL",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Saint Barthelemy",
|
||
phone: "590",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "BN",
|
||
currency: "BND",
|
||
currency_name: "Brunei Dollar",
|
||
label: "Brunei Darussalam",
|
||
phone: "673",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "BO",
|
||
currency: "BOB",
|
||
currency_name: "Bolivian Boliviano",
|
||
label: "Bolivia",
|
||
phone: "591",
|
||
symbol_native: "Bs",
|
||
},
|
||
{
|
||
code: "BR",
|
||
currency: "BRL",
|
||
currency_name: "Brazilian Real",
|
||
label: "Brazil",
|
||
phone: "55",
|
||
symbol_native: "R$",
|
||
},
|
||
{
|
||
code: "BV",
|
||
currency: "NOK",
|
||
currency_name: "Norwegian Krone",
|
||
label: "Bouvet Island",
|
||
phone: "47",
|
||
symbol_native: "kr",
|
||
},
|
||
{
|
||
code: "BW",
|
||
currency: "BWP",
|
||
currency_name: "Botswanan Pula",
|
||
label: "Botswana",
|
||
phone: "267",
|
||
symbol_native: "P",
|
||
},
|
||
{
|
||
code: "BY",
|
||
currency: "BYR",
|
||
currency_name: "Belarusian Ruble",
|
||
label: "Belarus",
|
||
phone: "375",
|
||
symbol_native: "BYR",
|
||
},
|
||
{
|
||
code: "BZ",
|
||
currency: "BZD",
|
||
currency_name: "Belize Dollar",
|
||
label: "Belize",
|
||
phone: "501",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "CA",
|
||
currency: "CAD",
|
||
currency_name: "Canadian Dollar",
|
||
label: "Canada",
|
||
phone: "1",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "CC",
|
||
currency: "AUD",
|
||
currency_name: "Australian Dollar",
|
||
label: "Cocos (Keeling) Islands",
|
||
phone: "61",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "CD",
|
||
currency: "CDF",
|
||
currency_name: "Congolese Franc",
|
||
label: "Congo, Democratic Republic of the",
|
||
phone: "243",
|
||
symbol_native: "FrCD",
|
||
},
|
||
{
|
||
code: "CF",
|
||
currency: "XAF",
|
||
currency_name: "CFA Franc BEAC",
|
||
label: "Central African Republic",
|
||
phone: "236",
|
||
symbol_native: "FCFA",
|
||
},
|
||
{
|
||
code: "CG",
|
||
currency: "XAF",
|
||
currency_name: "CFA Franc BEAC",
|
||
label: "Congo, Republic of the",
|
||
phone: "242",
|
||
symbol_native: "FCFA",
|
||
},
|
||
{
|
||
code: "CH",
|
||
currency: "CHF",
|
||
currency_name: "Swiss Franc",
|
||
label: "Switzerland",
|
||
phone: "41",
|
||
symbol_native: "CHF",
|
||
},
|
||
{
|
||
code: "CI",
|
||
currency: "XOF",
|
||
currency_name: "CFA Franc BCEAO",
|
||
label: "Cote d'Ivoire",
|
||
phone: "225",
|
||
symbol_native: "CFA",
|
||
},
|
||
{
|
||
code: "CK",
|
||
currency: "NZD",
|
||
currency_name: "New Zealand Dollar",
|
||
label: "Cook Islands",
|
||
phone: "682",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "CL",
|
||
currency: "CLP",
|
||
currency_name: "Chilean Peso",
|
||
label: "Chile",
|
||
phone: "56",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "CM",
|
||
currency: "XAF",
|
||
currency_name: "CFA Franc BEAC",
|
||
label: "Cameroon",
|
||
phone: "237",
|
||
symbol_native: "FCFA",
|
||
},
|
||
{
|
||
code: "CN",
|
||
currency: "CNY",
|
||
currency_name: "Chinese Yuan",
|
||
label: "China",
|
||
phone: "86",
|
||
symbol_native: "CN¥",
|
||
},
|
||
{
|
||
code: "CO",
|
||
currency: "COP",
|
||
currency_name: "Colombian Peso",
|
||
label: "Colombia",
|
||
phone: "57",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "CR",
|
||
currency: "CRC",
|
||
currency_name: "Costa Rican Colón",
|
||
label: "Costa Rica",
|
||
phone: "506",
|
||
symbol_native: "₡",
|
||
},
|
||
{
|
||
code: "CV",
|
||
currency: "CVE",
|
||
currency_name: "Cape Verdean Escudo",
|
||
label: "Cape Verde",
|
||
phone: "238",
|
||
symbol_native: "CV$",
|
||
},
|
||
{
|
||
code: "CX",
|
||
currency: "AUD",
|
||
currency_name: "Australian Dollar",
|
||
label: "Christmas Island",
|
||
phone: "61",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "CY",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Cyprus",
|
||
phone: "357",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "CZ",
|
||
currency: "CZK",
|
||
currency_name: "Czech Republic Koruna",
|
||
label: "Czech Republic",
|
||
phone: "420",
|
||
symbol_native: "Kč",
|
||
},
|
||
{
|
||
code: "DE",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Germany",
|
||
phone: "49",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "DJ",
|
||
currency: "DJF",
|
||
currency_name: "Djiboutian Franc",
|
||
label: "Djibouti",
|
||
phone: "253",
|
||
symbol_native: "Fdj",
|
||
},
|
||
{
|
||
code: "DK",
|
||
currency: "DKK",
|
||
currency_name: "Danish Krone",
|
||
label: "Denmark",
|
||
phone: "45",
|
||
symbol_native: "kr",
|
||
},
|
||
{
|
||
code: "DO",
|
||
currency: "DOP",
|
||
currency_name: "Dominican Peso",
|
||
label: "Dominican Republic",
|
||
phone: "1-809",
|
||
symbol_native: "RD$",
|
||
},
|
||
{
|
||
code: "DZ",
|
||
currency: "DZD",
|
||
currency_name: "Algerian Dinar",
|
||
label: "Algeria",
|
||
phone: "213",
|
||
symbol_native: "د.ج.",
|
||
},
|
||
{
|
||
code: "EC",
|
||
currency: "USD",
|
||
currency_name: "US Dollar",
|
||
label: "Ecuador",
|
||
phone: "593",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "EE",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Estonia",
|
||
phone: "372",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "EG",
|
||
currency: "EGP",
|
||
currency_name: "Egyptian Pound",
|
||
label: "Egypt",
|
||
phone: "20",
|
||
symbol_native: "ج.م.",
|
||
},
|
||
{
|
||
code: "EH",
|
||
currency: "MAD",
|
||
currency_name: "Moroccan Dirham",
|
||
label: "Western Sahara",
|
||
phone: "212",
|
||
symbol_native: "د.م.",
|
||
},
|
||
{
|
||
code: "ER",
|
||
currency: "ERN",
|
||
currency_name: "Eritrean Nakfa",
|
||
label: "Eritrea",
|
||
phone: "291",
|
||
symbol_native: "Nfk",
|
||
},
|
||
{
|
||
code: "ES",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Spain",
|
||
phone: "34",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "ET",
|
||
currency: "ETB",
|
||
currency_name: "Ethiopian Birr",
|
||
label: "Ethiopia",
|
||
phone: "251",
|
||
symbol_native: "Br",
|
||
},
|
||
{
|
||
code: "FI",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Finland",
|
||
phone: "358",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "FM",
|
||
currency: "USD",
|
||
currency_name: "US Dollar",
|
||
label: "Micronesia, Federated States of",
|
||
phone: "691",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "FO",
|
||
currency: "DKK",
|
||
currency_name: "Danish Krone",
|
||
label: "Faroe Islands",
|
||
phone: "298",
|
||
symbol_native: "kr",
|
||
},
|
||
{
|
||
code: "FR",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "France",
|
||
phone: "33",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "GA",
|
||
currency: "XAF",
|
||
currency_name: "CFA Franc BEAC",
|
||
label: "Gabon",
|
||
phone: "241",
|
||
symbol_native: "FCFA",
|
||
},
|
||
{
|
||
code: "GB",
|
||
currency: "GBP",
|
||
currency_name: "British Pound Sterling",
|
||
label: "United Kingdom",
|
||
phone: "44",
|
||
symbol_native: "£",
|
||
},
|
||
{
|
||
code: "GE",
|
||
currency: "GEL",
|
||
currency_name: "Georgian Lari",
|
||
label: "Georgia",
|
||
phone: "995",
|
||
symbol_native: "GEL",
|
||
},
|
||
{
|
||
code: "GF",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "French Guiana",
|
||
phone: "594",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "GG",
|
||
currency: "GBP",
|
||
currency_name: "British Pound Sterling",
|
||
label: "Guernsey",
|
||
phone: "44",
|
||
symbol_native: "£",
|
||
},
|
||
{
|
||
code: "GH",
|
||
currency: "GHS",
|
||
currency_name: "Ghanaian Cedi",
|
||
label: "Ghana",
|
||
phone: "233",
|
||
symbol_native: "GH₵",
|
||
},
|
||
{
|
||
code: "GL",
|
||
currency: "DKK",
|
||
currency_name: "Danish Krone",
|
||
label: "Greenland",
|
||
phone: "299",
|
||
symbol_native: "kr",
|
||
},
|
||
{
|
||
code: "GN",
|
||
currency: "GNF",
|
||
currency_name: "Guinean Franc",
|
||
label: "Guinea",
|
||
phone: "224",
|
||
symbol_native: "FG",
|
||
},
|
||
{
|
||
code: "GP",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Guadeloupe",
|
||
phone: "590",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "GQ",
|
||
currency: "XAF",
|
||
currency_name: "CFA Franc BEAC",
|
||
label: "Equatorial Guinea",
|
||
phone: "240",
|
||
symbol_native: "FCFA",
|
||
},
|
||
{
|
||
code: "GR",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Greece",
|
||
phone: "30",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "GS",
|
||
currency: "GBP",
|
||
currency_name: "British Pound Sterling",
|
||
label: "South Georgia and the South Sandwich Islands",
|
||
phone: "500",
|
||
symbol_native: "£",
|
||
},
|
||
{
|
||
code: "GT",
|
||
currency: "GTQ",
|
||
currency_name: "Guatemalan Quetzal",
|
||
label: "Guatemala",
|
||
phone: "502",
|
||
symbol_native: "Q",
|
||
},
|
||
{
|
||
code: "GU",
|
||
currency: "USD",
|
||
currency_name: "US Dollar",
|
||
label: "Guam",
|
||
phone: "1-671",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "GW",
|
||
currency: "XOF",
|
||
currency_name: "CFA Franc BCEAO",
|
||
label: "Guinea-Bissau",
|
||
phone: "245",
|
||
symbol_native: "CFA",
|
||
},
|
||
{
|
||
code: "HK",
|
||
currency: "HKD",
|
||
currency_name: "Hong Kong Dollar",
|
||
label: "Hong Kong",
|
||
phone: "852",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "HM",
|
||
currency: "AUD",
|
||
currency_name: "Australian Dollar",
|
||
label: "Heard Island and McDonald Islands",
|
||
phone: "672",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "HN",
|
||
currency: "HNL",
|
||
currency_name: "Honduran Lempira",
|
||
label: "Honduras",
|
||
phone: "504",
|
||
symbol_native: "L",
|
||
},
|
||
{
|
||
code: "HR",
|
||
currency: "HRK",
|
||
currency_name: "Croatian Kuna",
|
||
label: "Croatia",
|
||
phone: "385",
|
||
symbol_native: "kn",
|
||
},
|
||
{
|
||
code: "HU",
|
||
currency: "HUF",
|
||
currency_name: "Hungarian Forint",
|
||
label: "Hungary",
|
||
phone: "36",
|
||
symbol_native: "Ft",
|
||
},
|
||
{
|
||
code: "ID",
|
||
currency: "IDR",
|
||
currency_name: "Indonesian Rupiah",
|
||
label: "Indonesia",
|
||
phone: "62",
|
||
symbol_native: "Rp",
|
||
},
|
||
{
|
||
code: "IE",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Ireland",
|
||
phone: "353",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "IL",
|
||
currency: "ILS",
|
||
currency_name: "Israeli New Sheqel",
|
||
label: "Israel",
|
||
phone: "972",
|
||
symbol_native: "₪",
|
||
},
|
||
{
|
||
code: "IM",
|
||
currency: "GBP",
|
||
currency_name: "British Pound Sterling",
|
||
label: "Isle of Man",
|
||
phone: "44",
|
||
symbol_native: "£",
|
||
},
|
||
{
|
||
code: "IN",
|
||
currency: "INR",
|
||
currency_name: "Indian Rupee",
|
||
label: "India",
|
||
phone: "91",
|
||
symbol_native: "₹",
|
||
},
|
||
{
|
||
code: "IO",
|
||
currency: "USD",
|
||
currency_name: "US Dollar",
|
||
label: "British Indian Ocean Territory",
|
||
phone: "246",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "IQ",
|
||
currency: "IQD",
|
||
currency_name: "Iraqi Dinar",
|
||
label: "Iraq",
|
||
phone: "964",
|
||
symbol_native: "د.ع.",
|
||
},
|
||
{
|
||
code: "IR",
|
||
currency: "IRR",
|
||
currency_name: "Iranian Rial",
|
||
label: "Iran, Islamic Republic of",
|
||
phone: "98",
|
||
symbol_native: "﷼",
|
||
},
|
||
{
|
||
code: "IS",
|
||
currency: "ISK",
|
||
currency_name: "Icelandic Króna",
|
||
label: "Iceland",
|
||
phone: "354",
|
||
symbol_native: "kr",
|
||
},
|
||
{
|
||
code: "IT",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Italy",
|
||
phone: "39",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "JE",
|
||
currency: "GBP",
|
||
currency_name: "British Pound Sterling",
|
||
label: "Jersey",
|
||
phone: "44",
|
||
symbol_native: "£",
|
||
},
|
||
{
|
||
code: "JM",
|
||
currency: "JMD",
|
||
currency_name: "Jamaican Dollar",
|
||
label: "Jamaica",
|
||
phone: "1-876",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "JO",
|
||
currency: "JOD",
|
||
currency_name: "Jordanian Dinar",
|
||
label: "Jordan",
|
||
phone: "962",
|
||
symbol_native: "د.أ.",
|
||
},
|
||
{
|
||
code: "JP",
|
||
currency: "JPY",
|
||
currency_name: "Japanese Yen",
|
||
label: "Japan",
|
||
phone: "81",
|
||
symbol_native: "¥",
|
||
},
|
||
{
|
||
code: "KE",
|
||
currency: "KES",
|
||
currency_name: "Kenyan Shilling",
|
||
label: "Kenya",
|
||
phone: "254",
|
||
symbol_native: "Ksh",
|
||
},
|
||
{
|
||
code: "KH",
|
||
currency: "KHR",
|
||
currency_name: "Cambodian Riel",
|
||
label: "Cambodia",
|
||
phone: "855",
|
||
symbol_native: "៛",
|
||
},
|
||
{
|
||
code: "KI",
|
||
currency: "AUD",
|
||
currency_name: "Australian Dollar",
|
||
label: "Kiribati",
|
||
phone: "686",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "KM",
|
||
currency: "KMF",
|
||
currency_name: "Comorian Franc",
|
||
label: "Comoros",
|
||
phone: "269",
|
||
symbol_native: "FC",
|
||
},
|
||
{
|
||
code: "KR",
|
||
currency: "KRW",
|
||
currency_name: "South Korean Won",
|
||
label: "Korea, Republic of",
|
||
phone: "82",
|
||
symbol_native: "₩",
|
||
},
|
||
{
|
||
code: "KW",
|
||
currency: "KWD",
|
||
currency_name: "Kuwaiti Dinar",
|
||
label: "Kuwait",
|
||
phone: "965",
|
||
symbol_native: "د.ك.",
|
||
},
|
||
{
|
||
code: "KZ",
|
||
currency: "KZT",
|
||
currency_name: "Kazakhstani Tenge",
|
||
label: "Kazakhstan",
|
||
phone: "7",
|
||
symbol_native: "тңг.",
|
||
},
|
||
{
|
||
code: "LB",
|
||
currency: "LBP",
|
||
currency_name: "Lebanese Pound",
|
||
label: "Lebanon",
|
||
phone: "961",
|
||
symbol_native: "ل.ل.",
|
||
},
|
||
{
|
||
code: "LI",
|
||
currency: "CHF",
|
||
currency_name: "Swiss Franc",
|
||
label: "Liechtenstein",
|
||
phone: "423",
|
||
symbol_native: "CHF",
|
||
},
|
||
{
|
||
code: "LK",
|
||
currency: "LKR",
|
||
currency_name: "Sri Lankan Rupee",
|
||
label: "Sri Lanka",
|
||
phone: "94",
|
||
symbol_native: "SL Re",
|
||
},
|
||
{
|
||
code: "LT",
|
||
currency: "LTL",
|
||
currency_name: "Lithuanian Litas",
|
||
label: "Lithuania",
|
||
phone: "370",
|
||
symbol_native: "Lt",
|
||
},
|
||
{
|
||
code: "LU",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Luxembourg",
|
||
phone: "352",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "LV",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Latvia",
|
||
phone: "371",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "LY",
|
||
currency: "LYD",
|
||
currency_name: "Libyan Dinar",
|
||
label: "Libya",
|
||
phone: "218",
|
||
symbol_native: "د.ل.",
|
||
},
|
||
{
|
||
code: "MA",
|
||
currency: "MAD",
|
||
currency_name: "Moroccan Dirham",
|
||
label: "Morocco",
|
||
phone: "212",
|
||
symbol_native: "د.م.",
|
||
},
|
||
{
|
||
code: "MC",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Monaco",
|
||
phone: "377",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "MD",
|
||
currency: "MDL",
|
||
currency_name: "Moldovan Leu",
|
||
label: "Moldova, Republic of",
|
||
phone: "373",
|
||
symbol_native: "MDL",
|
||
},
|
||
{
|
||
code: "ME",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Montenegro",
|
||
phone: "382",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "MF",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Saint Martin (French part)",
|
||
phone: "590",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "MG",
|
||
currency: "MGA",
|
||
currency_name: "Malagasy Ariary",
|
||
label: "Madagascar",
|
||
phone: "261",
|
||
symbol_native: "MGA",
|
||
},
|
||
{
|
||
code: "MH",
|
||
currency: "USD",
|
||
currency_name: "US Dollar",
|
||
label: "Marshall Islands",
|
||
phone: "692",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "MK",
|
||
currency: "MKD",
|
||
currency_name: "Macedonian Denar",
|
||
label: "Macedonia, the Former Yugoslav Republic of",
|
||
phone: "389",
|
||
symbol_native: "MKD",
|
||
},
|
||
{
|
||
code: "ML",
|
||
currency: "XOF",
|
||
currency_name: "CFA Franc BCEAO",
|
||
label: "Mali",
|
||
phone: "223",
|
||
symbol_native: "CFA",
|
||
},
|
||
{
|
||
code: "MM",
|
||
currency: "MMK",
|
||
currency_name: "Myanma Kyat",
|
||
label: "Myanmar",
|
||
phone: "95",
|
||
symbol_native: "K",
|
||
},
|
||
{
|
||
code: "MO",
|
||
currency: "MOP",
|
||
currency_name: "Macanese Pataca",
|
||
label: "Macao",
|
||
phone: "853",
|
||
symbol_native: "MOP$",
|
||
},
|
||
{
|
||
code: "MP",
|
||
currency: "USD",
|
||
currency_name: "US Dollar",
|
||
label: "Northern Mariana Islands",
|
||
phone: "1-670",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "MQ",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Martinique",
|
||
phone: "596",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "MT",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Malta",
|
||
phone: "356",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "MU",
|
||
currency: "MUR",
|
||
currency_name: "Mauritian Rupee",
|
||
label: "Mauritius",
|
||
phone: "230",
|
||
symbol_native: "MURs",
|
||
},
|
||
{
|
||
code: "MX",
|
||
currency: "MXN",
|
||
currency_name: "Mexican Peso",
|
||
label: "Mexico",
|
||
phone: "52",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "MY",
|
||
currency: "MYR",
|
||
currency_name: "Malaysian Ringgit",
|
||
label: "Malaysia",
|
||
phone: "60",
|
||
symbol_native: "RM",
|
||
},
|
||
{
|
||
code: "MZ",
|
||
currency: "MZN",
|
||
currency_name: "Mozambican Metical",
|
||
label: "Mozambique",
|
||
phone: "258",
|
||
symbol_native: "MTn",
|
||
},
|
||
{
|
||
code: "NA",
|
||
currency: "NAD",
|
||
currency_name: "Namibian Dollar",
|
||
label: "Namibia",
|
||
phone: "264",
|
||
symbol_native: "N$",
|
||
},
|
||
{
|
||
code: "NE",
|
||
currency: "XOF",
|
||
currency_name: "CFA Franc BCEAO",
|
||
label: "Niger",
|
||
phone: "227",
|
||
symbol_native: "CFA",
|
||
},
|
||
{
|
||
code: "NF",
|
||
currency: "AUD",
|
||
currency_name: "Australian Dollar",
|
||
label: "Norfolk Island",
|
||
phone: "672",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "NG",
|
||
currency: "NGN",
|
||
currency_name: "Nigerian Naira",
|
||
label: "Nigeria",
|
||
phone: "234",
|
||
symbol_native: "₦",
|
||
},
|
||
{
|
||
code: "NI",
|
||
currency: "NIO",
|
||
currency_name: "Nicaraguan Córdoba",
|
||
label: "Nicaragua",
|
||
phone: "505",
|
||
symbol_native: "C$",
|
||
},
|
||
{
|
||
code: "NL",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Netherlands",
|
||
phone: "31",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "NO",
|
||
currency: "NOK",
|
||
currency_name: "Norwegian Krone",
|
||
label: "Norway",
|
||
phone: "47",
|
||
symbol_native: "kr",
|
||
},
|
||
{
|
||
code: "NP",
|
||
currency: "NPR",
|
||
currency_name: "Nepalese Rupee",
|
||
label: "Nepal",
|
||
phone: "977",
|
||
symbol_native: "नेरू",
|
||
},
|
||
{
|
||
code: "NR",
|
||
currency: "AUD",
|
||
currency_name: "Australian Dollar",
|
||
label: "Nauru",
|
||
phone: "674",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "NU",
|
||
currency: "NZD",
|
||
currency_name: "New Zealand Dollar",
|
||
label: "Niue",
|
||
phone: "683",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "NZ",
|
||
currency: "NZD",
|
||
currency_name: "New Zealand Dollar",
|
||
label: "New Zealand",
|
||
phone: "64",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "OM",
|
||
currency: "OMR",
|
||
currency_name: "Omani Rial",
|
||
label: "Oman",
|
||
phone: "968",
|
||
symbol_native: "ر.ع.",
|
||
},
|
||
{
|
||
code: "PA",
|
||
currency: "PAB",
|
||
currency_name: "Panamanian Balboa",
|
||
label: "Panama",
|
||
phone: "507",
|
||
symbol_native: "B/.",
|
||
},
|
||
{
|
||
code: "PE",
|
||
currency: "PEN",
|
||
currency_name: "Peruvian Nuevo Sol",
|
||
label: "Peru",
|
||
phone: "51",
|
||
symbol_native: "S/.",
|
||
},
|
||
{
|
||
code: "PH",
|
||
currency: "PHP",
|
||
currency_name: "Philippine Peso",
|
||
label: "Philippines",
|
||
phone: "63",
|
||
symbol_native: "₱",
|
||
},
|
||
{
|
||
code: "PK",
|
||
currency: "PKR",
|
||
currency_name: "Pakistani Rupee",
|
||
label: "Pakistan",
|
||
phone: "92",
|
||
symbol_native: "₨",
|
||
},
|
||
{
|
||
code: "PL",
|
||
currency: "PLN",
|
||
currency_name: "Polish Zloty",
|
||
label: "Poland",
|
||
phone: "48",
|
||
symbol_native: "zł",
|
||
},
|
||
{
|
||
code: "PM",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Saint Pierre and Miquelon",
|
||
phone: "508",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "PN",
|
||
currency: "NZD",
|
||
currency_name: "New Zealand Dollar",
|
||
label: "Pitcairn",
|
||
phone: "870",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "PR",
|
||
currency: "USD",
|
||
currency_name: "US Dollar",
|
||
label: "Puerto Rico",
|
||
phone: "1",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "PS",
|
||
currency: "ILS",
|
||
currency_name: "Israeli New Sheqel",
|
||
label: "Palestine, State of",
|
||
phone: "970",
|
||
symbol_native: "₪",
|
||
},
|
||
{
|
||
code: "PT",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Portugal",
|
||
phone: "351",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "PW",
|
||
currency: "USD",
|
||
currency_name: "US Dollar",
|
||
label: "Palau",
|
||
phone: "680",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "PY",
|
||
currency: "PYG",
|
||
currency_name: "Paraguayan Guarani",
|
||
label: "Paraguay",
|
||
phone: "595",
|
||
symbol_native: "₲",
|
||
},
|
||
{
|
||
code: "QA",
|
||
currency: "QAR",
|
||
currency_name: "Qatari Rial",
|
||
label: "Qatar",
|
||
phone: "974",
|
||
symbol_native: "ر.ق.",
|
||
},
|
||
{
|
||
code: "RE",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Reunion",
|
||
phone: "262",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "RO",
|
||
currency: "RON",
|
||
currency_name: "Romanian Leu",
|
||
label: "Romania",
|
||
phone: "40",
|
||
symbol_native: "RON",
|
||
},
|
||
{
|
||
code: "RS",
|
||
currency: "RSD",
|
||
currency_name: "Serbian Dinar",
|
||
label: "Serbia",
|
||
phone: "381",
|
||
symbol_native: "дин.",
|
||
},
|
||
{
|
||
code: "RU",
|
||
currency: "RUB",
|
||
currency_name: "Russian Ruble",
|
||
label: "Russian Federation",
|
||
phone: "7",
|
||
symbol_native: "руб.",
|
||
},
|
||
{
|
||
code: "RW",
|
||
currency: "RWF",
|
||
currency_name: "Rwandan Franc",
|
||
label: "Rwanda",
|
||
phone: "250",
|
||
symbol_native: "FR",
|
||
},
|
||
{
|
||
code: "SA",
|
||
currency: "SAR",
|
||
currency_name: "Saudi Riyal",
|
||
label: "Saudi Arabia",
|
||
phone: "966",
|
||
symbol_native: "ر.س.",
|
||
},
|
||
{
|
||
code: "SD",
|
||
currency: "SDG",
|
||
currency_name: "Sudanese Pound",
|
||
label: "Sudan",
|
||
phone: "249",
|
||
symbol_native: "SDG",
|
||
},
|
||
{
|
||
code: "SE",
|
||
currency: "SEK",
|
||
currency_name: "Swedish Krona",
|
||
label: "Sweden",
|
||
phone: "46",
|
||
symbol_native: "kr",
|
||
},
|
||
{
|
||
code: "SG",
|
||
currency: "SGD",
|
||
currency_name: "Singapore Dollar",
|
||
label: "Singapore",
|
||
phone: "65",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "SI",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Slovenia",
|
||
phone: "386",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "SJ",
|
||
currency: "NOK",
|
||
currency_name: "Norwegian Krone",
|
||
label: "Svalbard and Jan Mayen",
|
||
phone: "47",
|
||
symbol_native: "kr",
|
||
},
|
||
{
|
||
code: "SK",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Slovakia",
|
||
phone: "421",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "SM",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "San Marino",
|
||
phone: "378",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "SN",
|
||
currency: "XOF",
|
||
currency_name: "CFA Franc BCEAO",
|
||
label: "Senegal",
|
||
phone: "221",
|
||
symbol_native: "CFA",
|
||
},
|
||
{
|
||
code: "SO",
|
||
currency: "SOS",
|
||
currency_name: "Somali Shilling",
|
||
label: "Somalia",
|
||
phone: "252",
|
||
symbol_native: "Ssh",
|
||
},
|
||
{
|
||
code: "SV",
|
||
currency: "USD",
|
||
currency_name: "US Dollar",
|
||
label: "El Salvador",
|
||
phone: "503",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "SY",
|
||
currency: "SYP",
|
||
currency_name: "Syrian Pound",
|
||
label: "Syrian Arab Republic",
|
||
phone: "963",
|
||
symbol_native: "ل.س.",
|
||
},
|
||
{
|
||
code: "TC",
|
||
currency: "USD",
|
||
currency_name: "US Dollar",
|
||
label: "Turks and Caicos Islands",
|
||
phone: "1-649",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "TD",
|
||
currency: "XAF",
|
||
currency_name: "CFA Franc BEAC",
|
||
label: "Chad",
|
||
phone: "235",
|
||
symbol_native: "FCFA",
|
||
},
|
||
{
|
||
code: "TF",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "French Southern Territories",
|
||
phone: "262",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "TG",
|
||
currency: "XOF",
|
||
currency_name: "CFA Franc BCEAO",
|
||
label: "Togo",
|
||
phone: "228",
|
||
symbol_native: "CFA",
|
||
},
|
||
{
|
||
code: "TH",
|
||
currency: "THB",
|
||
currency_name: "Thai Baht",
|
||
label: "Thailand",
|
||
phone: "66",
|
||
symbol_native: "฿",
|
||
},
|
||
{
|
||
code: "TK",
|
||
currency: "NZD",
|
||
currency_name: "New Zealand Dollar",
|
||
label: "Tokelau",
|
||
phone: "690",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "TL",
|
||
currency: "USD",
|
||
currency_name: "US Dollar",
|
||
label: "Timor-Leste",
|
||
phone: "670",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "TN",
|
||
currency: "TND",
|
||
currency_name: "Tunisian Dinar",
|
||
label: "Tunisia",
|
||
phone: "216",
|
||
symbol_native: "د.ت.",
|
||
},
|
||
{
|
||
code: "TO",
|
||
currency: "TOP",
|
||
currency_name: "Tongan Paʻanga",
|
||
label: "Tonga",
|
||
phone: "676",
|
||
symbol_native: "T$",
|
||
},
|
||
{
|
||
code: "TR",
|
||
currency: "TRY",
|
||
currency_name: "Turkish Lira",
|
||
label: "Turkey",
|
||
phone: "90",
|
||
symbol_native: "TL",
|
||
},
|
||
{
|
||
code: "TT",
|
||
currency: "TTD",
|
||
currency_name: "Trinidad and Tobago Dollar",
|
||
label: "Trinidad and Tobago",
|
||
phone: "1-868",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "TV",
|
||
currency: "AUD",
|
||
currency_name: "Australian Dollar",
|
||
label: "Tuvalu",
|
||
phone: "688",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "TW",
|
||
currency: "TWD",
|
||
currency_name: "New Taiwan Dollar",
|
||
label: "Taiwan, Province of China",
|
||
phone: "886",
|
||
symbol_native: "NT$",
|
||
},
|
||
{
|
||
code: "TZ",
|
||
currency: "TZS",
|
||
currency_name: "Tanzanian Shilling",
|
||
label: "United Republic of Tanzania",
|
||
phone: "255",
|
||
symbol_native: "TSh",
|
||
},
|
||
{
|
||
code: "UA",
|
||
currency: "UAH",
|
||
currency_name: "Ukrainian Hryvnia",
|
||
label: "Ukraine",
|
||
phone: "380",
|
||
symbol_native: "₴",
|
||
},
|
||
{
|
||
code: "UG",
|
||
currency: "UGX",
|
||
currency_name: "Ugandan Shilling",
|
||
label: "Uganda",
|
||
phone: "256",
|
||
symbol_native: "USh",
|
||
},
|
||
{
|
||
code: "US",
|
||
currency: "USD",
|
||
currency_name: "US Dollar",
|
||
label: "United States",
|
||
phone: "1",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "UY",
|
||
currency: "UYU",
|
||
currency_name: "Uruguayan Peso",
|
||
label: "Uruguay",
|
||
phone: "598",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "UZ",
|
||
currency: "UZS",
|
||
currency_name: "Uzbekistan Som",
|
||
label: "Uzbekistan",
|
||
phone: "998",
|
||
symbol_native: "UZS",
|
||
},
|
||
{
|
||
code: "VA",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Holy See (Vatican City State)",
|
||
phone: "379",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "VE",
|
||
currency: "VEF",
|
||
currency_name: "Venezuelan Bolívar",
|
||
label: "Venezuela",
|
||
phone: "58",
|
||
symbol_native: "Bs.F.",
|
||
},
|
||
{
|
||
code: "VG",
|
||
currency: "USD",
|
||
currency_name: "US Dollar",
|
||
label: "British Virgin Islands",
|
||
phone: "1-284",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "VI",
|
||
currency: "USD",
|
||
currency_name: "US Dollar",
|
||
label: "US Virgin Islands",
|
||
phone: "1-340",
|
||
symbol_native: "$",
|
||
},
|
||
{
|
||
code: "VN",
|
||
currency: "VND",
|
||
currency_name: "Vietnamese Dong",
|
||
label: "Vietnam",
|
||
phone: "84",
|
||
symbol_native: "₫",
|
||
},
|
||
{
|
||
code: "XK",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Kosovo",
|
||
phone: "383",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "YE",
|
||
currency: "YER",
|
||
currency_name: "Yemeni Rial",
|
||
label: "Yemen",
|
||
phone: "967",
|
||
symbol_native: "ر.ي.",
|
||
},
|
||
{
|
||
code: "YT",
|
||
currency: "EUR",
|
||
currency_name: "Euro",
|
||
label: "Mayotte",
|
||
phone: "262",
|
||
symbol_native: "€",
|
||
},
|
||
{
|
||
code: "ZA",
|
||
currency: "ZAR",
|
||
currency_name: "South African Rand",
|
||
label: "South Africa",
|
||
phone: "27",
|
||
symbol_native: "R",
|
||
},
|
||
{
|
||
code: "ZM",
|
||
currency: "ZMK",
|
||
currency_name: "Zambian Kwacha",
|
||
label: "Zambia",
|
||
phone: "260",
|
||
symbol_native: "ZK",
|
||
},
|
||
];
|