@martince/countries 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +115 -0
- package/dist/chunk-7VNZ5TNZ.js +265 -0
- package/dist/chunk-7VNZ5TNZ.js.map +1 -0
- package/dist/countries/index.d.ts +263 -0
- package/dist/countries/index.js +256 -0
- package/dist/countries/index.js.map +1 -0
- package/dist/index.d.ts +133 -0
- package/dist/index.js +54 -0
- package/dist/index.js.map +1 -0
- package/dist/regions/index.d.ts +118 -0
- package/dist/regions/index.js +364 -0
- package/dist/regions/index.js.map +1 -0
- package/dist/types/index.d.ts +117 -0
- package/dist/types/index.js +3 -0
- package/dist/types/index.js.map +1 -0
- package/package.json +64 -0
package/README.md
ADDED
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
# @countries/core
|
|
2
|
+
|
|
3
|
+
> Canonical country data - ISO 3166-1 codes, names, regions, and domains
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @countries/core
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
### Lookup Functions
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import {
|
|
17
|
+
getByISO2,
|
|
18
|
+
getByISO3,
|
|
19
|
+
getByNumeric,
|
|
20
|
+
getByName,
|
|
21
|
+
searchByName,
|
|
22
|
+
getAllCountries,
|
|
23
|
+
} from '@countries/core';
|
|
24
|
+
|
|
25
|
+
// Get by ISO 3166-1 Alpha-2 (case-insensitive)
|
|
26
|
+
const usa = getByISO2('US');
|
|
27
|
+
const uk = getByISO2('gb');
|
|
28
|
+
|
|
29
|
+
// Get by ISO 3166-1 Alpha-3
|
|
30
|
+
const germany = getByISO3('DEU');
|
|
31
|
+
|
|
32
|
+
// Get by numeric code
|
|
33
|
+
const japan = getByNumeric('392');
|
|
34
|
+
|
|
35
|
+
// Search by name
|
|
36
|
+
const results = searchByName('united');
|
|
37
|
+
// Returns: [United Arab Emirates, United Kingdom, United States, ...]
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
### Individual Country Imports (Tree-Shakable)
|
|
41
|
+
|
|
42
|
+
```typescript
|
|
43
|
+
// Maximum tree-shaking - only includes US and DE data
|
|
44
|
+
import { US, DE } from '@countries/core/countries';
|
|
45
|
+
|
|
46
|
+
console.log(US.name); // "United States of America"
|
|
47
|
+
console.log(DE.callingCode); // "+49"
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
### Region Queries
|
|
51
|
+
|
|
52
|
+
```typescript
|
|
53
|
+
import {
|
|
54
|
+
getCountriesByRegion,
|
|
55
|
+
getCountriesBySubregion,
|
|
56
|
+
EU_MEMBERS,
|
|
57
|
+
NATO_MEMBERS,
|
|
58
|
+
SCHENGEN_AREA,
|
|
59
|
+
isEUMember,
|
|
60
|
+
isNATOMember,
|
|
61
|
+
} from '@countries/core/regions';
|
|
62
|
+
|
|
63
|
+
// Get countries by region
|
|
64
|
+
const europeanCountries = getCountriesByRegion('Europe');
|
|
65
|
+
const westernEurope = getCountriesBySubregion('Western Europe');
|
|
66
|
+
|
|
67
|
+
// Check membership
|
|
68
|
+
isEUMember('DE'); // true
|
|
69
|
+
isEUMember('GB'); // false
|
|
70
|
+
|
|
71
|
+
// Use grouping arrays directly
|
|
72
|
+
console.log(EU_MEMBERS.length); // 27
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
### Validation
|
|
76
|
+
|
|
77
|
+
```typescript
|
|
78
|
+
import {
|
|
79
|
+
isValidISO2,
|
|
80
|
+
isValidISO3,
|
|
81
|
+
isValidNumeric,
|
|
82
|
+
} from '@countries/core';
|
|
83
|
+
|
|
84
|
+
isValidISO2('US'); // true
|
|
85
|
+
isValidISO2('XX'); // false
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
## Country Object
|
|
89
|
+
|
|
90
|
+
```typescript
|
|
91
|
+
interface Country {
|
|
92
|
+
iso2: string; // "US"
|
|
93
|
+
iso3: string; // "USA"
|
|
94
|
+
isoNumeric: string; // "840"
|
|
95
|
+
name: string; // "United States of America"
|
|
96
|
+
region: Region; // "Americas"
|
|
97
|
+
subregion: Subregion; // "Northern America"
|
|
98
|
+
tld: string[]; // [".us"]
|
|
99
|
+
callingCode: string; // "+1"
|
|
100
|
+
independent: boolean; // true
|
|
101
|
+
unMember: boolean; // true
|
|
102
|
+
}
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
## Data Sources
|
|
106
|
+
|
|
107
|
+
- **Country codes**: [ISO 3166-1](https://www.iso.org/iso-3166-country-codes.html)
|
|
108
|
+
- **Regions/Subregions**: [UN M49](https://unstats.un.org/unsd/methodology/m49/)
|
|
109
|
+
- **Domains**: [IANA](https://www.iana.org/domains/root/db)
|
|
110
|
+
- **Phone prefixes**: [ITU E.164](https://www.itu.int/rec/T-REC-E.164)
|
|
111
|
+
|
|
112
|
+
## License
|
|
113
|
+
|
|
114
|
+
MIT
|
|
115
|
+
|
|
@@ -0,0 +1,265 @@
|
|
|
1
|
+
// src/data/countries.ts
|
|
2
|
+
var countries = [
|
|
3
|
+
{ iso2: "AD", iso3: "AND", isoNumeric: "020", name: "Andorra", region: "Europe", subregion: "Southern Europe", tld: [".ad"], callingCode: "+376", independent: true, unMember: true },
|
|
4
|
+
{ iso2: "AE", iso3: "ARE", isoNumeric: "784", name: "United Arab Emirates", region: "Asia", subregion: "Western Asia", tld: [".ae"], callingCode: "+971", independent: true, unMember: true },
|
|
5
|
+
{ iso2: "AF", iso3: "AFG", isoNumeric: "004", name: "Afghanistan", region: "Asia", subregion: "Southern Asia", tld: [".af"], callingCode: "+93", independent: true, unMember: true },
|
|
6
|
+
{ iso2: "AG", iso3: "ATG", isoNumeric: "028", name: "Antigua and Barbuda", region: "Americas", subregion: "Caribbean", tld: [".ag"], callingCode: "+1268", independent: true, unMember: true },
|
|
7
|
+
{ iso2: "AI", iso3: "AIA", isoNumeric: "660", name: "Anguilla", region: "Americas", subregion: "Caribbean", tld: [".ai"], callingCode: "+1264", independent: false, unMember: false },
|
|
8
|
+
{ iso2: "AL", iso3: "ALB", isoNumeric: "008", name: "Albania", region: "Europe", subregion: "Southern Europe", tld: [".al"], callingCode: "+355", independent: true, unMember: true },
|
|
9
|
+
{ iso2: "AM", iso3: "ARM", isoNumeric: "051", name: "Armenia", region: "Asia", subregion: "Western Asia", tld: [".am"], callingCode: "+374", independent: true, unMember: true },
|
|
10
|
+
{ iso2: "AO", iso3: "AGO", isoNumeric: "024", name: "Angola", region: "Africa", subregion: "Middle Africa", tld: [".ao"], callingCode: "+244", independent: true, unMember: true },
|
|
11
|
+
{ iso2: "AQ", iso3: "ATA", isoNumeric: "010", name: "Antarctica", region: "Antarctica", subregion: "Antarctica", tld: [".aq"], callingCode: "+672", independent: false, unMember: false },
|
|
12
|
+
{ iso2: "AR", iso3: "ARG", isoNumeric: "032", name: "Argentina", region: "Americas", subregion: "South America", tld: [".ar"], callingCode: "+54", independent: true, unMember: true },
|
|
13
|
+
{ iso2: "AS", iso3: "ASM", isoNumeric: "016", name: "American Samoa", region: "Oceania", subregion: "Polynesia", tld: [".as"], callingCode: "+1684", independent: false, unMember: false },
|
|
14
|
+
{ iso2: "AT", iso3: "AUT", isoNumeric: "040", name: "Austria", region: "Europe", subregion: "Western Europe", tld: [".at"], callingCode: "+43", independent: true, unMember: true },
|
|
15
|
+
{ iso2: "AU", iso3: "AUS", isoNumeric: "036", name: "Australia", region: "Oceania", subregion: "Australia and New Zealand", tld: [".au"], callingCode: "+61", independent: true, unMember: true },
|
|
16
|
+
{ iso2: "AW", iso3: "ABW", isoNumeric: "533", name: "Aruba", region: "Americas", subregion: "Caribbean", tld: [".aw"], callingCode: "+297", independent: false, unMember: false },
|
|
17
|
+
{ iso2: "AX", iso3: "ALA", isoNumeric: "248", name: "\xC5land Islands", region: "Europe", subregion: "Northern Europe", tld: [".ax"], callingCode: "+358", independent: false, unMember: false },
|
|
18
|
+
{ iso2: "AZ", iso3: "AZE", isoNumeric: "031", name: "Azerbaijan", region: "Asia", subregion: "Western Asia", tld: [".az"], callingCode: "+994", independent: true, unMember: true },
|
|
19
|
+
{ iso2: "BA", iso3: "BIH", isoNumeric: "070", name: "Bosnia and Herzegovina", region: "Europe", subregion: "Southern Europe", tld: [".ba"], callingCode: "+387", independent: true, unMember: true },
|
|
20
|
+
{ iso2: "BB", iso3: "BRB", isoNumeric: "052", name: "Barbados", region: "Americas", subregion: "Caribbean", tld: [".bb"], callingCode: "+1246", independent: true, unMember: true },
|
|
21
|
+
{ iso2: "BD", iso3: "BGD", isoNumeric: "050", name: "Bangladesh", region: "Asia", subregion: "Southern Asia", tld: [".bd"], callingCode: "+880", independent: true, unMember: true },
|
|
22
|
+
{ iso2: "BE", iso3: "BEL", isoNumeric: "056", name: "Belgium", region: "Europe", subregion: "Western Europe", tld: [".be"], callingCode: "+32", independent: true, unMember: true },
|
|
23
|
+
{ iso2: "BF", iso3: "BFA", isoNumeric: "854", name: "Burkina Faso", region: "Africa", subregion: "Western Africa", tld: [".bf"], callingCode: "+226", independent: true, unMember: true },
|
|
24
|
+
{ iso2: "BG", iso3: "BGR", isoNumeric: "100", name: "Bulgaria", region: "Europe", subregion: "Eastern Europe", tld: [".bg"], callingCode: "+359", independent: true, unMember: true },
|
|
25
|
+
{ iso2: "BH", iso3: "BHR", isoNumeric: "048", name: "Bahrain", region: "Asia", subregion: "Western Asia", tld: [".bh"], callingCode: "+973", independent: true, unMember: true },
|
|
26
|
+
{ iso2: "BI", iso3: "BDI", isoNumeric: "108", name: "Burundi", region: "Africa", subregion: "Eastern Africa", tld: [".bi"], callingCode: "+257", independent: true, unMember: true },
|
|
27
|
+
{ iso2: "BJ", iso3: "BEN", isoNumeric: "204", name: "Benin", region: "Africa", subregion: "Western Africa", tld: [".bj"], callingCode: "+229", independent: true, unMember: true },
|
|
28
|
+
{ iso2: "BL", iso3: "BLM", isoNumeric: "652", name: "Saint Barth\xE9lemy", region: "Americas", subregion: "Caribbean", tld: [".bl"], callingCode: "+590", independent: false, unMember: false },
|
|
29
|
+
{ iso2: "BM", iso3: "BMU", isoNumeric: "060", name: "Bermuda", region: "Americas", subregion: "Northern America", tld: [".bm"], callingCode: "+1441", independent: false, unMember: false },
|
|
30
|
+
{ iso2: "BN", iso3: "BRN", isoNumeric: "096", name: "Brunei Darussalam", region: "Asia", subregion: "South-Eastern Asia", tld: [".bn"], callingCode: "+673", independent: true, unMember: true },
|
|
31
|
+
{ iso2: "BO", iso3: "BOL", isoNumeric: "068", name: "Bolivia (Plurinational State of)", region: "Americas", subregion: "South America", tld: [".bo"], callingCode: "+591", independent: true, unMember: true },
|
|
32
|
+
{ iso2: "BQ", iso3: "BES", isoNumeric: "535", name: "Bonaire, Sint Eustatius and Saba", region: "Americas", subregion: "Caribbean", tld: [".bq", ".nl"], callingCode: "+599", independent: false, unMember: false },
|
|
33
|
+
{ iso2: "BR", iso3: "BRA", isoNumeric: "076", name: "Brazil", region: "Americas", subregion: "South America", tld: [".br"], callingCode: "+55", independent: true, unMember: true },
|
|
34
|
+
{ iso2: "BS", iso3: "BHS", isoNumeric: "044", name: "Bahamas", region: "Americas", subregion: "Caribbean", tld: [".bs"], callingCode: "+1242", independent: true, unMember: true },
|
|
35
|
+
{ iso2: "BT", iso3: "BTN", isoNumeric: "064", name: "Bhutan", region: "Asia", subregion: "Southern Asia", tld: [".bt"], callingCode: "+975", independent: true, unMember: true },
|
|
36
|
+
{ iso2: "BV", iso3: "BVT", isoNumeric: "074", name: "Bouvet Island", region: "Antarctica", subregion: "Antarctica", tld: [], callingCode: "+47", independent: false, unMember: false },
|
|
37
|
+
{ iso2: "BW", iso3: "BWA", isoNumeric: "072", name: "Botswana", region: "Africa", subregion: "Southern Africa", tld: [".bw"], callingCode: "+267", independent: true, unMember: true },
|
|
38
|
+
{ iso2: "BY", iso3: "BLR", isoNumeric: "112", name: "Belarus", region: "Europe", subregion: "Eastern Europe", tld: [".by"], callingCode: "+375", independent: true, unMember: true },
|
|
39
|
+
{ iso2: "BZ", iso3: "BLZ", isoNumeric: "084", name: "Belize", region: "Americas", subregion: "Central America", tld: [".bz"], callingCode: "+501", independent: true, unMember: true },
|
|
40
|
+
{ iso2: "CA", iso3: "CAN", isoNumeric: "124", name: "Canada", region: "Americas", subregion: "Northern America", tld: [".ca"], callingCode: "+1", independent: true, unMember: true },
|
|
41
|
+
{ iso2: "CC", iso3: "CCK", isoNumeric: "166", name: "Cocos (Keeling) Islands", region: "Oceania", subregion: "Australia and New Zealand", tld: [".cc"], callingCode: "+61", independent: false, unMember: false },
|
|
42
|
+
{ iso2: "CD", iso3: "COD", isoNumeric: "180", name: "Congo, Democratic Republic of the", region: "Africa", subregion: "Middle Africa", tld: [".cd"], callingCode: "+243", independent: true, unMember: true },
|
|
43
|
+
{ iso2: "CF", iso3: "CAF", isoNumeric: "140", name: "Central African Republic", region: "Africa", subregion: "Middle Africa", tld: [".cf"], callingCode: "+236", independent: true, unMember: true },
|
|
44
|
+
{ iso2: "CG", iso3: "COG", isoNumeric: "178", name: "Congo", region: "Africa", subregion: "Middle Africa", tld: [".cg"], callingCode: "+242", independent: true, unMember: true },
|
|
45
|
+
{ iso2: "CH", iso3: "CHE", isoNumeric: "756", name: "Switzerland", region: "Europe", subregion: "Western Europe", tld: [".ch"], callingCode: "+41", independent: true, unMember: true },
|
|
46
|
+
{ iso2: "CI", iso3: "CIV", isoNumeric: "384", name: "C\xF4te d'Ivoire", region: "Africa", subregion: "Western Africa", tld: [".ci"], callingCode: "+225", independent: true, unMember: true },
|
|
47
|
+
{ iso2: "CK", iso3: "COK", isoNumeric: "184", name: "Cook Islands", region: "Oceania", subregion: "Polynesia", tld: [".ck"], callingCode: "+682", independent: false, unMember: false },
|
|
48
|
+
{ iso2: "CL", iso3: "CHL", isoNumeric: "152", name: "Chile", region: "Americas", subregion: "South America", tld: [".cl"], callingCode: "+56", independent: true, unMember: true },
|
|
49
|
+
{ iso2: "CM", iso3: "CMR", isoNumeric: "120", name: "Cameroon", region: "Africa", subregion: "Middle Africa", tld: [".cm"], callingCode: "+237", independent: true, unMember: true },
|
|
50
|
+
{ iso2: "CN", iso3: "CHN", isoNumeric: "156", name: "China", region: "Asia", subregion: "Eastern Asia", tld: [".cn"], callingCode: "+86", independent: true, unMember: true },
|
|
51
|
+
{ iso2: "CO", iso3: "COL", isoNumeric: "170", name: "Colombia", region: "Americas", subregion: "South America", tld: [".co"], callingCode: "+57", independent: true, unMember: true },
|
|
52
|
+
{ iso2: "CR", iso3: "CRI", isoNumeric: "188", name: "Costa Rica", region: "Americas", subregion: "Central America", tld: [".cr"], callingCode: "+506", independent: true, unMember: true },
|
|
53
|
+
{ iso2: "CU", iso3: "CUB", isoNumeric: "192", name: "Cuba", region: "Americas", subregion: "Caribbean", tld: [".cu"], callingCode: "+53", independent: true, unMember: true },
|
|
54
|
+
{ iso2: "CV", iso3: "CPV", isoNumeric: "132", name: "Cabo Verde", region: "Africa", subregion: "Western Africa", tld: [".cv"], callingCode: "+238", independent: true, unMember: true },
|
|
55
|
+
{ iso2: "CW", iso3: "CUW", isoNumeric: "531", name: "Cura\xE7ao", region: "Americas", subregion: "Caribbean", tld: [".cw"], callingCode: "+599", independent: false, unMember: false },
|
|
56
|
+
{ iso2: "CX", iso3: "CXR", isoNumeric: "162", name: "Christmas Island", region: "Oceania", subregion: "Australia and New Zealand", tld: [".cx"], callingCode: "+61", independent: false, unMember: false },
|
|
57
|
+
{ iso2: "CY", iso3: "CYP", isoNumeric: "196", name: "Cyprus", region: "Asia", subregion: "Western Asia", tld: [".cy"], callingCode: "+357", independent: true, unMember: true },
|
|
58
|
+
{ iso2: "CZ", iso3: "CZE", isoNumeric: "203", name: "Czechia", region: "Europe", subregion: "Eastern Europe", tld: [".cz"], callingCode: "+420", independent: true, unMember: true },
|
|
59
|
+
{ iso2: "DE", iso3: "DEU", isoNumeric: "276", name: "Germany", region: "Europe", subregion: "Western Europe", tld: [".de"], callingCode: "+49", independent: true, unMember: true },
|
|
60
|
+
{ iso2: "DJ", iso3: "DJI", isoNumeric: "262", name: "Djibouti", region: "Africa", subregion: "Eastern Africa", tld: [".dj"], callingCode: "+253", independent: true, unMember: true },
|
|
61
|
+
{ iso2: "DK", iso3: "DNK", isoNumeric: "208", name: "Denmark", region: "Europe", subregion: "Northern Europe", tld: [".dk"], callingCode: "+45", independent: true, unMember: true },
|
|
62
|
+
{ iso2: "DM", iso3: "DMA", isoNumeric: "212", name: "Dominica", region: "Americas", subregion: "Caribbean", tld: [".dm"], callingCode: "+1767", independent: true, unMember: true },
|
|
63
|
+
{ iso2: "DO", iso3: "DOM", isoNumeric: "214", name: "Dominican Republic", region: "Americas", subregion: "Caribbean", tld: [".do"], callingCode: "+1809", independent: true, unMember: true },
|
|
64
|
+
{ iso2: "DZ", iso3: "DZA", isoNumeric: "012", name: "Algeria", region: "Africa", subregion: "Northern Africa", tld: [".dz"], callingCode: "+213", independent: true, unMember: true },
|
|
65
|
+
{ iso2: "EC", iso3: "ECU", isoNumeric: "218", name: "Ecuador", region: "Americas", subregion: "South America", tld: [".ec"], callingCode: "+593", independent: true, unMember: true },
|
|
66
|
+
{ iso2: "EE", iso3: "EST", isoNumeric: "233", name: "Estonia", region: "Europe", subregion: "Northern Europe", tld: [".ee"], callingCode: "+372", independent: true, unMember: true },
|
|
67
|
+
{ iso2: "EG", iso3: "EGY", isoNumeric: "818", name: "Egypt", region: "Africa", subregion: "Northern Africa", tld: [".eg"], callingCode: "+20", independent: true, unMember: true },
|
|
68
|
+
{ iso2: "EH", iso3: "ESH", isoNumeric: "732", name: "Western Sahara", region: "Africa", subregion: "Northern Africa", tld: [".eh"], callingCode: "+212", independent: false, unMember: false },
|
|
69
|
+
{ iso2: "ER", iso3: "ERI", isoNumeric: "232", name: "Eritrea", region: "Africa", subregion: "Eastern Africa", tld: [".er"], callingCode: "+291", independent: true, unMember: true },
|
|
70
|
+
{ iso2: "ES", iso3: "ESP", isoNumeric: "724", name: "Spain", region: "Europe", subregion: "Southern Europe", tld: [".es"], callingCode: "+34", independent: true, unMember: true },
|
|
71
|
+
{ iso2: "ET", iso3: "ETH", isoNumeric: "231", name: "Ethiopia", region: "Africa", subregion: "Eastern Africa", tld: [".et"], callingCode: "+251", independent: true, unMember: true },
|
|
72
|
+
{ iso2: "FI", iso3: "FIN", isoNumeric: "246", name: "Finland", region: "Europe", subregion: "Northern Europe", tld: [".fi"], callingCode: "+358", independent: true, unMember: true },
|
|
73
|
+
{ iso2: "FJ", iso3: "FJI", isoNumeric: "242", name: "Fiji", region: "Oceania", subregion: "Melanesia", tld: [".fj"], callingCode: "+679", independent: true, unMember: true },
|
|
74
|
+
{ iso2: "FK", iso3: "FLK", isoNumeric: "238", name: "Falkland Islands (Malvinas)", region: "Americas", subregion: "South America", tld: [".fk"], callingCode: "+500", independent: false, unMember: false },
|
|
75
|
+
{ iso2: "FM", iso3: "FSM", isoNumeric: "583", name: "Micronesia (Federated States of)", region: "Oceania", subregion: "Micronesia", tld: [".fm"], callingCode: "+691", independent: true, unMember: true },
|
|
76
|
+
{ iso2: "FO", iso3: "FRO", isoNumeric: "234", name: "Faroe Islands", region: "Europe", subregion: "Northern Europe", tld: [".fo"], callingCode: "+298", independent: false, unMember: false },
|
|
77
|
+
{ iso2: "FR", iso3: "FRA", isoNumeric: "250", name: "France", region: "Europe", subregion: "Western Europe", tld: [".fr"], callingCode: "+33", independent: true, unMember: true },
|
|
78
|
+
{ iso2: "GA", iso3: "GAB", isoNumeric: "266", name: "Gabon", region: "Africa", subregion: "Middle Africa", tld: [".ga"], callingCode: "+241", independent: true, unMember: true },
|
|
79
|
+
{ iso2: "GB", iso3: "GBR", isoNumeric: "826", name: "United Kingdom of Great Britain and Northern Ireland", region: "Europe", subregion: "Northern Europe", tld: [".uk", ".gb"], callingCode: "+44", independent: true, unMember: true },
|
|
80
|
+
{ iso2: "GD", iso3: "GRD", isoNumeric: "308", name: "Grenada", region: "Americas", subregion: "Caribbean", tld: [".gd"], callingCode: "+1473", independent: true, unMember: true },
|
|
81
|
+
{ iso2: "GE", iso3: "GEO", isoNumeric: "268", name: "Georgia", region: "Asia", subregion: "Western Asia", tld: [".ge"], callingCode: "+995", independent: true, unMember: true },
|
|
82
|
+
{ iso2: "GF", iso3: "GUF", isoNumeric: "254", name: "French Guiana", region: "Americas", subregion: "South America", tld: [".gf"], callingCode: "+594", independent: false, unMember: false },
|
|
83
|
+
{ iso2: "GG", iso3: "GGY", isoNumeric: "831", name: "Guernsey", region: "Europe", subregion: "Northern Europe", tld: [".gg"], callingCode: "+44", independent: false, unMember: false },
|
|
84
|
+
{ iso2: "GH", iso3: "GHA", isoNumeric: "288", name: "Ghana", region: "Africa", subregion: "Western Africa", tld: [".gh"], callingCode: "+233", independent: true, unMember: true },
|
|
85
|
+
{ iso2: "GI", iso3: "GIB", isoNumeric: "292", name: "Gibraltar", region: "Europe", subregion: "Southern Europe", tld: [".gi"], callingCode: "+350", independent: false, unMember: false },
|
|
86
|
+
{ iso2: "GL", iso3: "GRL", isoNumeric: "304", name: "Greenland", region: "Americas", subregion: "Northern America", tld: [".gl"], callingCode: "+299", independent: false, unMember: false },
|
|
87
|
+
{ iso2: "GM", iso3: "GMB", isoNumeric: "270", name: "Gambia", region: "Africa", subregion: "Western Africa", tld: [".gm"], callingCode: "+220", independent: true, unMember: true },
|
|
88
|
+
{ iso2: "GN", iso3: "GIN", isoNumeric: "324", name: "Guinea", region: "Africa", subregion: "Western Africa", tld: [".gn"], callingCode: "+224", independent: true, unMember: true },
|
|
89
|
+
{ iso2: "GP", iso3: "GLP", isoNumeric: "312", name: "Guadeloupe", region: "Americas", subregion: "Caribbean", tld: [".gp"], callingCode: "+590", independent: false, unMember: false },
|
|
90
|
+
{ iso2: "GQ", iso3: "GNQ", isoNumeric: "226", name: "Equatorial Guinea", region: "Africa", subregion: "Middle Africa", tld: [".gq"], callingCode: "+240", independent: true, unMember: true },
|
|
91
|
+
{ iso2: "GR", iso3: "GRC", isoNumeric: "300", name: "Greece", region: "Europe", subregion: "Southern Europe", tld: [".gr"], callingCode: "+30", independent: true, unMember: true },
|
|
92
|
+
{ iso2: "GS", iso3: "SGS", isoNumeric: "239", name: "South Georgia and the South Sandwich Islands", region: "Antarctica", subregion: "Antarctica", tld: [".gs"], callingCode: "+500", independent: false, unMember: false },
|
|
93
|
+
{ iso2: "GT", iso3: "GTM", isoNumeric: "320", name: "Guatemala", region: "Americas", subregion: "Central America", tld: [".gt"], callingCode: "+502", independent: true, unMember: true },
|
|
94
|
+
{ iso2: "GU", iso3: "GUM", isoNumeric: "316", name: "Guam", region: "Oceania", subregion: "Micronesia", tld: [".gu"], callingCode: "+1671", independent: false, unMember: false },
|
|
95
|
+
{ iso2: "GW", iso3: "GNB", isoNumeric: "624", name: "Guinea-Bissau", region: "Africa", subregion: "Western Africa", tld: [".gw"], callingCode: "+245", independent: true, unMember: true },
|
|
96
|
+
{ iso2: "GY", iso3: "GUY", isoNumeric: "328", name: "Guyana", region: "Americas", subregion: "South America", tld: [".gy"], callingCode: "+592", independent: true, unMember: true },
|
|
97
|
+
{ iso2: "HK", iso3: "HKG", isoNumeric: "344", name: "Hong Kong", region: "Asia", subregion: "Eastern Asia", tld: [".hk"], callingCode: "+852", independent: false, unMember: false },
|
|
98
|
+
{ iso2: "HM", iso3: "HMD", isoNumeric: "334", name: "Heard Island and McDonald Islands", region: "Antarctica", subregion: "Antarctica", tld: [".hm"], callingCode: "+672", independent: false, unMember: false },
|
|
99
|
+
{ iso2: "HN", iso3: "HND", isoNumeric: "340", name: "Honduras", region: "Americas", subregion: "Central America", tld: [".hn"], callingCode: "+504", independent: true, unMember: true },
|
|
100
|
+
{ iso2: "HR", iso3: "HRV", isoNumeric: "191", name: "Croatia", region: "Europe", subregion: "Southern Europe", tld: [".hr"], callingCode: "+385", independent: true, unMember: true },
|
|
101
|
+
{ iso2: "HT", iso3: "HTI", isoNumeric: "332", name: "Haiti", region: "Americas", subregion: "Caribbean", tld: [".ht"], callingCode: "+509", independent: true, unMember: true },
|
|
102
|
+
{ iso2: "HU", iso3: "HUN", isoNumeric: "348", name: "Hungary", region: "Europe", subregion: "Eastern Europe", tld: [".hu"], callingCode: "+36", independent: true, unMember: true },
|
|
103
|
+
{ iso2: "ID", iso3: "IDN", isoNumeric: "360", name: "Indonesia", region: "Asia", subregion: "South-Eastern Asia", tld: [".id"], callingCode: "+62", independent: true, unMember: true },
|
|
104
|
+
{ iso2: "IE", iso3: "IRL", isoNumeric: "372", name: "Ireland", region: "Europe", subregion: "Northern Europe", tld: [".ie"], callingCode: "+353", independent: true, unMember: true },
|
|
105
|
+
{ iso2: "IL", iso3: "ISR", isoNumeric: "376", name: "Israel", region: "Asia", subregion: "Western Asia", tld: [".il"], callingCode: "+972", independent: true, unMember: true },
|
|
106
|
+
{ iso2: "IM", iso3: "IMN", isoNumeric: "833", name: "Isle of Man", region: "Europe", subregion: "Northern Europe", tld: [".im"], callingCode: "+44", independent: false, unMember: false },
|
|
107
|
+
{ iso2: "IN", iso3: "IND", isoNumeric: "356", name: "India", region: "Asia", subregion: "Southern Asia", tld: [".in"], callingCode: "+91", independent: true, unMember: true },
|
|
108
|
+
{ iso2: "IO", iso3: "IOT", isoNumeric: "086", name: "British Indian Ocean Territory", region: "Africa", subregion: "Eastern Africa", tld: [".io"], callingCode: "+246", independent: false, unMember: false },
|
|
109
|
+
{ iso2: "IQ", iso3: "IRQ", isoNumeric: "368", name: "Iraq", region: "Asia", subregion: "Western Asia", tld: [".iq"], callingCode: "+964", independent: true, unMember: true },
|
|
110
|
+
{ iso2: "IR", iso3: "IRN", isoNumeric: "364", name: "Iran (Islamic Republic of)", region: "Asia", subregion: "Southern Asia", tld: [".ir"], callingCode: "+98", independent: true, unMember: true },
|
|
111
|
+
{ iso2: "IS", iso3: "ISL", isoNumeric: "352", name: "Iceland", region: "Europe", subregion: "Northern Europe", tld: [".is"], callingCode: "+354", independent: true, unMember: true },
|
|
112
|
+
{ iso2: "IT", iso3: "ITA", isoNumeric: "380", name: "Italy", region: "Europe", subregion: "Southern Europe", tld: [".it"], callingCode: "+39", independent: true, unMember: true },
|
|
113
|
+
{ iso2: "JE", iso3: "JEY", isoNumeric: "832", name: "Jersey", region: "Europe", subregion: "Northern Europe", tld: [".je"], callingCode: "+44", independent: false, unMember: false },
|
|
114
|
+
{ iso2: "JM", iso3: "JAM", isoNumeric: "388", name: "Jamaica", region: "Americas", subregion: "Caribbean", tld: [".jm"], callingCode: "+1876", independent: true, unMember: true },
|
|
115
|
+
{ iso2: "JO", iso3: "JOR", isoNumeric: "400", name: "Jordan", region: "Asia", subregion: "Western Asia", tld: [".jo"], callingCode: "+962", independent: true, unMember: true },
|
|
116
|
+
{ iso2: "JP", iso3: "JPN", isoNumeric: "392", name: "Japan", region: "Asia", subregion: "Eastern Asia", tld: [".jp"], callingCode: "+81", independent: true, unMember: true },
|
|
117
|
+
{ iso2: "KE", iso3: "KEN", isoNumeric: "404", name: "Kenya", region: "Africa", subregion: "Eastern Africa", tld: [".ke"], callingCode: "+254", independent: true, unMember: true },
|
|
118
|
+
{ iso2: "KG", iso3: "KGZ", isoNumeric: "417", name: "Kyrgyzstan", region: "Asia", subregion: "Central Asia", tld: [".kg"], callingCode: "+996", independent: true, unMember: true },
|
|
119
|
+
{ iso2: "KH", iso3: "KHM", isoNumeric: "116", name: "Cambodia", region: "Asia", subregion: "South-Eastern Asia", tld: [".kh"], callingCode: "+855", independent: true, unMember: true },
|
|
120
|
+
{ iso2: "KI", iso3: "KIR", isoNumeric: "296", name: "Kiribati", region: "Oceania", subregion: "Micronesia", tld: [".ki"], callingCode: "+686", independent: true, unMember: true },
|
|
121
|
+
{ iso2: "KM", iso3: "COM", isoNumeric: "174", name: "Comoros", region: "Africa", subregion: "Eastern Africa", tld: [".km"], callingCode: "+269", independent: true, unMember: true },
|
|
122
|
+
{ iso2: "KN", iso3: "KNA", isoNumeric: "659", name: "Saint Kitts and Nevis", region: "Americas", subregion: "Caribbean", tld: [".kn"], callingCode: "+1869", independent: true, unMember: true },
|
|
123
|
+
{ iso2: "KP", iso3: "PRK", isoNumeric: "408", name: "Korea (Democratic People's Republic of)", region: "Asia", subregion: "Eastern Asia", tld: [".kp"], callingCode: "+850", independent: true, unMember: true },
|
|
124
|
+
{ iso2: "KR", iso3: "KOR", isoNumeric: "410", name: "Korea, Republic of", region: "Asia", subregion: "Eastern Asia", tld: [".kr"], callingCode: "+82", independent: true, unMember: true },
|
|
125
|
+
{ iso2: "KW", iso3: "KWT", isoNumeric: "414", name: "Kuwait", region: "Asia", subregion: "Western Asia", tld: [".kw"], callingCode: "+965", independent: true, unMember: true },
|
|
126
|
+
{ iso2: "KY", iso3: "CYM", isoNumeric: "136", name: "Cayman Islands", region: "Americas", subregion: "Caribbean", tld: [".ky"], callingCode: "+1345", independent: false, unMember: false },
|
|
127
|
+
{ iso2: "KZ", iso3: "KAZ", isoNumeric: "398", name: "Kazakhstan", region: "Asia", subregion: "Central Asia", tld: [".kz"], callingCode: "+7", independent: true, unMember: true },
|
|
128
|
+
{ iso2: "LA", iso3: "LAO", isoNumeric: "418", name: "Lao People's Democratic Republic", region: "Asia", subregion: "South-Eastern Asia", tld: [".la"], callingCode: "+856", independent: true, unMember: true },
|
|
129
|
+
{ iso2: "LB", iso3: "LBN", isoNumeric: "422", name: "Lebanon", region: "Asia", subregion: "Western Asia", tld: [".lb"], callingCode: "+961", independent: true, unMember: true },
|
|
130
|
+
{ iso2: "LC", iso3: "LCA", isoNumeric: "662", name: "Saint Lucia", region: "Americas", subregion: "Caribbean", tld: [".lc"], callingCode: "+1758", independent: true, unMember: true },
|
|
131
|
+
{ iso2: "LI", iso3: "LIE", isoNumeric: "438", name: "Liechtenstein", region: "Europe", subregion: "Western Europe", tld: [".li"], callingCode: "+423", independent: true, unMember: true },
|
|
132
|
+
{ iso2: "LK", iso3: "LKA", isoNumeric: "144", name: "Sri Lanka", region: "Asia", subregion: "Southern Asia", tld: [".lk"], callingCode: "+94", independent: true, unMember: true },
|
|
133
|
+
{ iso2: "LR", iso3: "LBR", isoNumeric: "430", name: "Liberia", region: "Africa", subregion: "Western Africa", tld: [".lr"], callingCode: "+231", independent: true, unMember: true },
|
|
134
|
+
{ iso2: "LS", iso3: "LSO", isoNumeric: "426", name: "Lesotho", region: "Africa", subregion: "Southern Africa", tld: [".ls"], callingCode: "+266", independent: true, unMember: true },
|
|
135
|
+
{ iso2: "LT", iso3: "LTU", isoNumeric: "440", name: "Lithuania", region: "Europe", subregion: "Northern Europe", tld: [".lt"], callingCode: "+370", independent: true, unMember: true },
|
|
136
|
+
{ iso2: "LU", iso3: "LUX", isoNumeric: "442", name: "Luxembourg", region: "Europe", subregion: "Western Europe", tld: [".lu"], callingCode: "+352", independent: true, unMember: true },
|
|
137
|
+
{ iso2: "LV", iso3: "LVA", isoNumeric: "428", name: "Latvia", region: "Europe", subregion: "Northern Europe", tld: [".lv"], callingCode: "+371", independent: true, unMember: true },
|
|
138
|
+
{ iso2: "LY", iso3: "LBY", isoNumeric: "434", name: "Libya", region: "Africa", subregion: "Northern Africa", tld: [".ly"], callingCode: "+218", independent: true, unMember: true },
|
|
139
|
+
{ iso2: "MA", iso3: "MAR", isoNumeric: "504", name: "Morocco", region: "Africa", subregion: "Northern Africa", tld: [".ma"], callingCode: "+212", independent: true, unMember: true },
|
|
140
|
+
{ iso2: "MC", iso3: "MCO", isoNumeric: "492", name: "Monaco", region: "Europe", subregion: "Western Europe", tld: [".mc"], callingCode: "+377", independent: true, unMember: true },
|
|
141
|
+
{ iso2: "MD", iso3: "MDA", isoNumeric: "498", name: "Moldova, Republic of", region: "Europe", subregion: "Eastern Europe", tld: [".md"], callingCode: "+373", independent: true, unMember: true },
|
|
142
|
+
{ iso2: "ME", iso3: "MNE", isoNumeric: "499", name: "Montenegro", region: "Europe", subregion: "Southern Europe", tld: [".me"], callingCode: "+382", independent: true, unMember: true },
|
|
143
|
+
{ iso2: "MF", iso3: "MAF", isoNumeric: "663", name: "Saint Martin (French part)", region: "Americas", subregion: "Caribbean", tld: [".mf"], callingCode: "+590", independent: false, unMember: false },
|
|
144
|
+
{ iso2: "MG", iso3: "MDG", isoNumeric: "450", name: "Madagascar", region: "Africa", subregion: "Eastern Africa", tld: [".mg"], callingCode: "+261", independent: true, unMember: true },
|
|
145
|
+
{ iso2: "MH", iso3: "MHL", isoNumeric: "584", name: "Marshall Islands", region: "Oceania", subregion: "Micronesia", tld: [".mh"], callingCode: "+692", independent: true, unMember: true },
|
|
146
|
+
{ iso2: "MK", iso3: "MKD", isoNumeric: "807", name: "North Macedonia", region: "Europe", subregion: "Southern Europe", tld: [".mk"], callingCode: "+389", independent: true, unMember: true },
|
|
147
|
+
{ iso2: "ML", iso3: "MLI", isoNumeric: "466", name: "Mali", region: "Africa", subregion: "Western Africa", tld: [".ml"], callingCode: "+223", independent: true, unMember: true },
|
|
148
|
+
{ iso2: "MM", iso3: "MMR", isoNumeric: "104", name: "Myanmar", region: "Asia", subregion: "South-Eastern Asia", tld: [".mm"], callingCode: "+95", independent: true, unMember: true },
|
|
149
|
+
{ iso2: "MN", iso3: "MNG", isoNumeric: "496", name: "Mongolia", region: "Asia", subregion: "Eastern Asia", tld: [".mn"], callingCode: "+976", independent: true, unMember: true },
|
|
150
|
+
{ iso2: "MO", iso3: "MAC", isoNumeric: "446", name: "Macao", region: "Asia", subregion: "Eastern Asia", tld: [".mo"], callingCode: "+853", independent: false, unMember: false },
|
|
151
|
+
{ iso2: "MP", iso3: "MNP", isoNumeric: "580", name: "Northern Mariana Islands", region: "Oceania", subregion: "Micronesia", tld: [".mp"], callingCode: "+1670", independent: false, unMember: false },
|
|
152
|
+
{ iso2: "MQ", iso3: "MTQ", isoNumeric: "474", name: "Martinique", region: "Americas", subregion: "Caribbean", tld: [".mq"], callingCode: "+596", independent: false, unMember: false },
|
|
153
|
+
{ iso2: "MR", iso3: "MRT", isoNumeric: "478", name: "Mauritania", region: "Africa", subregion: "Western Africa", tld: [".mr"], callingCode: "+222", independent: true, unMember: true },
|
|
154
|
+
{ iso2: "MS", iso3: "MSR", isoNumeric: "500", name: "Montserrat", region: "Americas", subregion: "Caribbean", tld: [".ms"], callingCode: "+1664", independent: false, unMember: false },
|
|
155
|
+
{ iso2: "MT", iso3: "MLT", isoNumeric: "470", name: "Malta", region: "Europe", subregion: "Southern Europe", tld: [".mt"], callingCode: "+356", independent: true, unMember: true },
|
|
156
|
+
{ iso2: "MU", iso3: "MUS", isoNumeric: "480", name: "Mauritius", region: "Africa", subregion: "Eastern Africa", tld: [".mu"], callingCode: "+230", independent: true, unMember: true },
|
|
157
|
+
{ iso2: "MV", iso3: "MDV", isoNumeric: "462", name: "Maldives", region: "Asia", subregion: "Southern Asia", tld: [".mv"], callingCode: "+960", independent: true, unMember: true },
|
|
158
|
+
{ iso2: "MW", iso3: "MWI", isoNumeric: "454", name: "Malawi", region: "Africa", subregion: "Eastern Africa", tld: [".mw"], callingCode: "+265", independent: true, unMember: true },
|
|
159
|
+
{ iso2: "MX", iso3: "MEX", isoNumeric: "484", name: "Mexico", region: "Americas", subregion: "Central America", tld: [".mx"], callingCode: "+52", independent: true, unMember: true },
|
|
160
|
+
{ iso2: "MY", iso3: "MYS", isoNumeric: "458", name: "Malaysia", region: "Asia", subregion: "South-Eastern Asia", tld: [".my"], callingCode: "+60", independent: true, unMember: true },
|
|
161
|
+
{ iso2: "MZ", iso3: "MOZ", isoNumeric: "508", name: "Mozambique", region: "Africa", subregion: "Eastern Africa", tld: [".mz"], callingCode: "+258", independent: true, unMember: true },
|
|
162
|
+
{ iso2: "NA", iso3: "NAM", isoNumeric: "516", name: "Namibia", region: "Africa", subregion: "Southern Africa", tld: [".na"], callingCode: "+264", independent: true, unMember: true },
|
|
163
|
+
{ iso2: "NC", iso3: "NCL", isoNumeric: "540", name: "New Caledonia", region: "Oceania", subregion: "Melanesia", tld: [".nc"], callingCode: "+687", independent: false, unMember: false },
|
|
164
|
+
{ iso2: "NE", iso3: "NER", isoNumeric: "562", name: "Niger", region: "Africa", subregion: "Western Africa", tld: [".ne"], callingCode: "+227", independent: true, unMember: true },
|
|
165
|
+
{ iso2: "NF", iso3: "NFK", isoNumeric: "574", name: "Norfolk Island", region: "Oceania", subregion: "Australia and New Zealand", tld: [".nf"], callingCode: "+672", independent: false, unMember: false },
|
|
166
|
+
{ iso2: "NG", iso3: "NGA", isoNumeric: "566", name: "Nigeria", region: "Africa", subregion: "Western Africa", tld: [".ng"], callingCode: "+234", independent: true, unMember: true },
|
|
167
|
+
{ iso2: "NI", iso3: "NIC", isoNumeric: "558", name: "Nicaragua", region: "Americas", subregion: "Central America", tld: [".ni"], callingCode: "+505", independent: true, unMember: true },
|
|
168
|
+
{ iso2: "NL", iso3: "NLD", isoNumeric: "528", name: "Netherlands", region: "Europe", subregion: "Western Europe", tld: [".nl"], callingCode: "+31", independent: true, unMember: true },
|
|
169
|
+
{ iso2: "NO", iso3: "NOR", isoNumeric: "578", name: "Norway", region: "Europe", subregion: "Northern Europe", tld: [".no"], callingCode: "+47", independent: true, unMember: true },
|
|
170
|
+
{ iso2: "NP", iso3: "NPL", isoNumeric: "524", name: "Nepal", region: "Asia", subregion: "Southern Asia", tld: [".np"], callingCode: "+977", independent: true, unMember: true },
|
|
171
|
+
{ iso2: "NR", iso3: "NRU", isoNumeric: "520", name: "Nauru", region: "Oceania", subregion: "Micronesia", tld: [".nr"], callingCode: "+674", independent: true, unMember: true },
|
|
172
|
+
{ iso2: "NU", iso3: "NIU", isoNumeric: "570", name: "Niue", region: "Oceania", subregion: "Polynesia", tld: [".nu"], callingCode: "+683", independent: false, unMember: false },
|
|
173
|
+
{ iso2: "NZ", iso3: "NZL", isoNumeric: "554", name: "New Zealand", region: "Oceania", subregion: "Australia and New Zealand", tld: [".nz"], callingCode: "+64", independent: true, unMember: true },
|
|
174
|
+
{ iso2: "OM", iso3: "OMN", isoNumeric: "512", name: "Oman", region: "Asia", subregion: "Western Asia", tld: [".om"], callingCode: "+968", independent: true, unMember: true },
|
|
175
|
+
{ iso2: "PA", iso3: "PAN", isoNumeric: "591", name: "Panama", region: "Americas", subregion: "Central America", tld: [".pa"], callingCode: "+507", independent: true, unMember: true },
|
|
176
|
+
{ iso2: "PE", iso3: "PER", isoNumeric: "604", name: "Peru", region: "Americas", subregion: "South America", tld: [".pe"], callingCode: "+51", independent: true, unMember: true },
|
|
177
|
+
{ iso2: "PF", iso3: "PYF", isoNumeric: "258", name: "French Polynesia", region: "Oceania", subregion: "Polynesia", tld: [".pf"], callingCode: "+689", independent: false, unMember: false },
|
|
178
|
+
{ iso2: "PG", iso3: "PNG", isoNumeric: "598", name: "Papua New Guinea", region: "Oceania", subregion: "Melanesia", tld: [".pg"], callingCode: "+675", independent: true, unMember: true },
|
|
179
|
+
{ iso2: "PH", iso3: "PHL", isoNumeric: "608", name: "Philippines", region: "Asia", subregion: "South-Eastern Asia", tld: [".ph"], callingCode: "+63", independent: true, unMember: true },
|
|
180
|
+
{ iso2: "PK", iso3: "PAK", isoNumeric: "586", name: "Pakistan", region: "Asia", subregion: "Southern Asia", tld: [".pk"], callingCode: "+92", independent: true, unMember: true },
|
|
181
|
+
{ iso2: "PL", iso3: "POL", isoNumeric: "616", name: "Poland", region: "Europe", subregion: "Eastern Europe", tld: [".pl"], callingCode: "+48", independent: true, unMember: true },
|
|
182
|
+
{ iso2: "PM", iso3: "SPM", isoNumeric: "666", name: "Saint Pierre and Miquelon", region: "Americas", subregion: "Northern America", tld: [".pm"], callingCode: "+508", independent: false, unMember: false },
|
|
183
|
+
{ iso2: "PN", iso3: "PCN", isoNumeric: "612", name: "Pitcairn", region: "Oceania", subregion: "Polynesia", tld: [".pn"], callingCode: "+64", independent: false, unMember: false },
|
|
184
|
+
{ iso2: "PR", iso3: "PRI", isoNumeric: "630", name: "Puerto Rico", region: "Americas", subregion: "Caribbean", tld: [".pr"], callingCode: "+1787", independent: false, unMember: false },
|
|
185
|
+
{ iso2: "PS", iso3: "PSE", isoNumeric: "275", name: "Palestine, State of", region: "Asia", subregion: "Western Asia", tld: [".ps"], callingCode: "+970", independent: false, unMember: false },
|
|
186
|
+
{ iso2: "PT", iso3: "PRT", isoNumeric: "620", name: "Portugal", region: "Europe", subregion: "Southern Europe", tld: [".pt"], callingCode: "+351", independent: true, unMember: true },
|
|
187
|
+
{ iso2: "PW", iso3: "PLW", isoNumeric: "585", name: "Palau", region: "Oceania", subregion: "Micronesia", tld: [".pw"], callingCode: "+680", independent: true, unMember: true },
|
|
188
|
+
{ iso2: "PY", iso3: "PRY", isoNumeric: "600", name: "Paraguay", region: "Americas", subregion: "South America", tld: [".py"], callingCode: "+595", independent: true, unMember: true },
|
|
189
|
+
{ iso2: "QA", iso3: "QAT", isoNumeric: "634", name: "Qatar", region: "Asia", subregion: "Western Asia", tld: [".qa"], callingCode: "+974", independent: true, unMember: true },
|
|
190
|
+
{ iso2: "RE", iso3: "REU", isoNumeric: "638", name: "R\xE9union", region: "Africa", subregion: "Eastern Africa", tld: [".re"], callingCode: "+262", independent: false, unMember: false },
|
|
191
|
+
{ iso2: "RO", iso3: "ROU", isoNumeric: "642", name: "Romania", region: "Europe", subregion: "Eastern Europe", tld: [".ro"], callingCode: "+40", independent: true, unMember: true },
|
|
192
|
+
{ iso2: "RS", iso3: "SRB", isoNumeric: "688", name: "Serbia", region: "Europe", subregion: "Southern Europe", tld: [".rs"], callingCode: "+381", independent: true, unMember: true },
|
|
193
|
+
{ iso2: "RU", iso3: "RUS", isoNumeric: "643", name: "Russian Federation", region: "Europe", subregion: "Eastern Europe", tld: [".ru"], callingCode: "+7", independent: true, unMember: true },
|
|
194
|
+
{ iso2: "RW", iso3: "RWA", isoNumeric: "646", name: "Rwanda", region: "Africa", subregion: "Eastern Africa", tld: [".rw"], callingCode: "+250", independent: true, unMember: true },
|
|
195
|
+
{ iso2: "SA", iso3: "SAU", isoNumeric: "682", name: "Saudi Arabia", region: "Asia", subregion: "Western Asia", tld: [".sa"], callingCode: "+966", independent: true, unMember: true },
|
|
196
|
+
{ iso2: "SB", iso3: "SLB", isoNumeric: "090", name: "Solomon Islands", region: "Oceania", subregion: "Melanesia", tld: [".sb"], callingCode: "+677", independent: true, unMember: true },
|
|
197
|
+
{ iso2: "SC", iso3: "SYC", isoNumeric: "690", name: "Seychelles", region: "Africa", subregion: "Eastern Africa", tld: [".sc"], callingCode: "+248", independent: true, unMember: true },
|
|
198
|
+
{ iso2: "SD", iso3: "SDN", isoNumeric: "729", name: "Sudan", region: "Africa", subregion: "Northern Africa", tld: [".sd"], callingCode: "+249", independent: true, unMember: true },
|
|
199
|
+
{ iso2: "SE", iso3: "SWE", isoNumeric: "752", name: "Sweden", region: "Europe", subregion: "Northern Europe", tld: [".se"], callingCode: "+46", independent: true, unMember: true },
|
|
200
|
+
{ iso2: "SG", iso3: "SGP", isoNumeric: "702", name: "Singapore", region: "Asia", subregion: "South-Eastern Asia", tld: [".sg"], callingCode: "+65", independent: true, unMember: true },
|
|
201
|
+
{ iso2: "SH", iso3: "SHN", isoNumeric: "654", name: "Saint Helena, Ascension and Tristan da Cunha", region: "Africa", subregion: "Western Africa", tld: [".sh"], callingCode: "+290", independent: false, unMember: false },
|
|
202
|
+
{ iso2: "SI", iso3: "SVN", isoNumeric: "705", name: "Slovenia", region: "Europe", subregion: "Southern Europe", tld: [".si"], callingCode: "+386", independent: true, unMember: true },
|
|
203
|
+
{ iso2: "SJ", iso3: "SJM", isoNumeric: "744", name: "Svalbard and Jan Mayen", region: "Europe", subregion: "Northern Europe", tld: [".sj"], callingCode: "+47", independent: false, unMember: false },
|
|
204
|
+
{ iso2: "SK", iso3: "SVK", isoNumeric: "703", name: "Slovakia", region: "Europe", subregion: "Eastern Europe", tld: [".sk"], callingCode: "+421", independent: true, unMember: true },
|
|
205
|
+
{ iso2: "SL", iso3: "SLE", isoNumeric: "694", name: "Sierra Leone", region: "Africa", subregion: "Western Africa", tld: [".sl"], callingCode: "+232", independent: true, unMember: true },
|
|
206
|
+
{ iso2: "SM", iso3: "SMR", isoNumeric: "674", name: "San Marino", region: "Europe", subregion: "Southern Europe", tld: [".sm"], callingCode: "+378", independent: true, unMember: true },
|
|
207
|
+
{ iso2: "SN", iso3: "SEN", isoNumeric: "686", name: "Senegal", region: "Africa", subregion: "Western Africa", tld: [".sn"], callingCode: "+221", independent: true, unMember: true },
|
|
208
|
+
{ iso2: "SO", iso3: "SOM", isoNumeric: "706", name: "Somalia", region: "Africa", subregion: "Eastern Africa", tld: [".so"], callingCode: "+252", independent: true, unMember: true },
|
|
209
|
+
{ iso2: "SR", iso3: "SUR", isoNumeric: "740", name: "Suriname", region: "Americas", subregion: "South America", tld: [".sr"], callingCode: "+597", independent: true, unMember: true },
|
|
210
|
+
{ iso2: "SS", iso3: "SSD", isoNumeric: "728", name: "South Sudan", region: "Africa", subregion: "Eastern Africa", tld: [".ss"], callingCode: "+211", independent: true, unMember: true },
|
|
211
|
+
{ iso2: "ST", iso3: "STP", isoNumeric: "678", name: "Sao Tome and Principe", region: "Africa", subregion: "Middle Africa", tld: [".st"], callingCode: "+239", independent: true, unMember: true },
|
|
212
|
+
{ iso2: "SV", iso3: "SLV", isoNumeric: "222", name: "El Salvador", region: "Americas", subregion: "Central America", tld: [".sv"], callingCode: "+503", independent: true, unMember: true },
|
|
213
|
+
{ iso2: "SX", iso3: "SXM", isoNumeric: "534", name: "Sint Maarten (Dutch part)", region: "Americas", subregion: "Caribbean", tld: [".sx"], callingCode: "+1721", independent: false, unMember: false },
|
|
214
|
+
{ iso2: "SY", iso3: "SYR", isoNumeric: "760", name: "Syrian Arab Republic", region: "Asia", subregion: "Western Asia", tld: [".sy"], callingCode: "+963", independent: true, unMember: true },
|
|
215
|
+
{ iso2: "SZ", iso3: "SWZ", isoNumeric: "748", name: "Eswatini", region: "Africa", subregion: "Southern Africa", tld: [".sz"], callingCode: "+268", independent: true, unMember: true },
|
|
216
|
+
{ iso2: "TC", iso3: "TCA", isoNumeric: "796", name: "Turks and Caicos Islands", region: "Americas", subregion: "Caribbean", tld: [".tc"], callingCode: "+1649", independent: false, unMember: false },
|
|
217
|
+
{ iso2: "TD", iso3: "TCD", isoNumeric: "148", name: "Chad", region: "Africa", subregion: "Middle Africa", tld: [".td"], callingCode: "+235", independent: true, unMember: true },
|
|
218
|
+
{ iso2: "TF", iso3: "ATF", isoNumeric: "260", name: "French Southern Territories", region: "Antarctica", subregion: "Antarctica", tld: [".tf"], callingCode: "+262", independent: false, unMember: false },
|
|
219
|
+
{ iso2: "TG", iso3: "TGO", isoNumeric: "768", name: "Togo", region: "Africa", subregion: "Western Africa", tld: [".tg"], callingCode: "+228", independent: true, unMember: true },
|
|
220
|
+
{ iso2: "TH", iso3: "THA", isoNumeric: "764", name: "Thailand", region: "Asia", subregion: "South-Eastern Asia", tld: [".th"], callingCode: "+66", independent: true, unMember: true },
|
|
221
|
+
{ iso2: "TJ", iso3: "TJK", isoNumeric: "762", name: "Tajikistan", region: "Asia", subregion: "Central Asia", tld: [".tj"], callingCode: "+992", independent: true, unMember: true },
|
|
222
|
+
{ iso2: "TK", iso3: "TKL", isoNumeric: "772", name: "Tokelau", region: "Oceania", subregion: "Polynesia", tld: [".tk"], callingCode: "+690", independent: false, unMember: false },
|
|
223
|
+
{ iso2: "TL", iso3: "TLS", isoNumeric: "626", name: "Timor-Leste", region: "Asia", subregion: "South-Eastern Asia", tld: [".tl"], callingCode: "+670", independent: true, unMember: true },
|
|
224
|
+
{ iso2: "TM", iso3: "TKM", isoNumeric: "795", name: "Turkmenistan", region: "Asia", subregion: "Central Asia", tld: [".tm"], callingCode: "+993", independent: true, unMember: true },
|
|
225
|
+
{ iso2: "TN", iso3: "TUN", isoNumeric: "788", name: "Tunisia", region: "Africa", subregion: "Northern Africa", tld: [".tn"], callingCode: "+216", independent: true, unMember: true },
|
|
226
|
+
{ iso2: "TO", iso3: "TON", isoNumeric: "776", name: "Tonga", region: "Oceania", subregion: "Polynesia", tld: [".to"], callingCode: "+676", independent: true, unMember: true },
|
|
227
|
+
{ iso2: "TR", iso3: "TUR", isoNumeric: "792", name: "T\xFCrkiye", region: "Asia", subregion: "Western Asia", tld: [".tr"], callingCode: "+90", independent: true, unMember: true },
|
|
228
|
+
{ iso2: "TT", iso3: "TTO", isoNumeric: "780", name: "Trinidad and Tobago", region: "Americas", subregion: "Caribbean", tld: [".tt"], callingCode: "+1868", independent: true, unMember: true },
|
|
229
|
+
{ iso2: "TV", iso3: "TUV", isoNumeric: "798", name: "Tuvalu", region: "Oceania", subregion: "Polynesia", tld: [".tv"], callingCode: "+688", independent: true, unMember: true },
|
|
230
|
+
{ iso2: "TW", iso3: "TWN", isoNumeric: "158", name: "Taiwan, Province of China", region: "Asia", subregion: "Eastern Asia", tld: [".tw"], callingCode: "+886", independent: false, unMember: false },
|
|
231
|
+
{ iso2: "TZ", iso3: "TZA", isoNumeric: "834", name: "Tanzania, United Republic of", region: "Africa", subregion: "Eastern Africa", tld: [".tz"], callingCode: "+255", independent: true, unMember: true },
|
|
232
|
+
{ iso2: "UA", iso3: "UKR", isoNumeric: "804", name: "Ukraine", region: "Europe", subregion: "Eastern Europe", tld: [".ua"], callingCode: "+380", independent: true, unMember: true },
|
|
233
|
+
{ iso2: "UG", iso3: "UGA", isoNumeric: "800", name: "Uganda", region: "Africa", subregion: "Eastern Africa", tld: [".ug"], callingCode: "+256", independent: true, unMember: true },
|
|
234
|
+
{ iso2: "UM", iso3: "UMI", isoNumeric: "581", name: "United States Minor Outlying Islands", region: "Oceania", subregion: "Micronesia", tld: [".um"], callingCode: "+1", independent: false, unMember: false },
|
|
235
|
+
{ iso2: "US", iso3: "USA", isoNumeric: "840", name: "United States of America", region: "Americas", subregion: "Northern America", tld: [".us"], callingCode: "+1", independent: true, unMember: true },
|
|
236
|
+
{ iso2: "UY", iso3: "URY", isoNumeric: "858", name: "Uruguay", region: "Americas", subregion: "South America", tld: [".uy"], callingCode: "+598", independent: true, unMember: true },
|
|
237
|
+
{ iso2: "UZ", iso3: "UZB", isoNumeric: "860", name: "Uzbekistan", region: "Asia", subregion: "Central Asia", tld: [".uz"], callingCode: "+998", independent: true, unMember: true },
|
|
238
|
+
{ iso2: "VA", iso3: "VAT", isoNumeric: "336", name: "Holy See", region: "Europe", subregion: "Southern Europe", tld: [".va"], callingCode: "+379", independent: true, unMember: false },
|
|
239
|
+
{ iso2: "VC", iso3: "VCT", isoNumeric: "670", name: "Saint Vincent and the Grenadines", region: "Americas", subregion: "Caribbean", tld: [".vc"], callingCode: "+1784", independent: true, unMember: true },
|
|
240
|
+
{ iso2: "VE", iso3: "VEN", isoNumeric: "862", name: "Venezuela (Bolivarian Republic of)", region: "Americas", subregion: "South America", tld: [".ve"], callingCode: "+58", independent: true, unMember: true },
|
|
241
|
+
{ iso2: "VG", iso3: "VGB", isoNumeric: "092", name: "Virgin Islands (British)", region: "Americas", subregion: "Caribbean", tld: [".vg"], callingCode: "+1284", independent: false, unMember: false },
|
|
242
|
+
{ iso2: "VI", iso3: "VIR", isoNumeric: "850", name: "Virgin Islands (U.S.)", region: "Americas", subregion: "Caribbean", tld: [".vi"], callingCode: "+1340", independent: false, unMember: false },
|
|
243
|
+
{ iso2: "VN", iso3: "VNM", isoNumeric: "704", name: "Viet Nam", region: "Asia", subregion: "South-Eastern Asia", tld: [".vn"], callingCode: "+84", independent: true, unMember: true },
|
|
244
|
+
{ iso2: "VU", iso3: "VUT", isoNumeric: "548", name: "Vanuatu", region: "Oceania", subregion: "Melanesia", tld: [".vu"], callingCode: "+678", independent: true, unMember: true },
|
|
245
|
+
{ iso2: "WF", iso3: "WLF", isoNumeric: "876", name: "Wallis and Futuna", region: "Oceania", subregion: "Polynesia", tld: [".wf"], callingCode: "+681", independent: false, unMember: false },
|
|
246
|
+
{ iso2: "WS", iso3: "WSM", isoNumeric: "882", name: "Samoa", region: "Oceania", subregion: "Polynesia", tld: [".ws"], callingCode: "+685", independent: true, unMember: true },
|
|
247
|
+
{ iso2: "YE", iso3: "YEM", isoNumeric: "887", name: "Yemen", region: "Asia", subregion: "Western Asia", tld: [".ye"], callingCode: "+967", independent: true, unMember: true },
|
|
248
|
+
{ iso2: "YT", iso3: "MYT", isoNumeric: "175", name: "Mayotte", region: "Africa", subregion: "Eastern Africa", tld: [".yt"], callingCode: "+262", independent: false, unMember: false },
|
|
249
|
+
{ iso2: "ZA", iso3: "ZAF", isoNumeric: "710", name: "South Africa", region: "Africa", subregion: "Southern Africa", tld: [".za"], callingCode: "+27", independent: true, unMember: true },
|
|
250
|
+
{ iso2: "ZM", iso3: "ZMB", isoNumeric: "894", name: "Zambia", region: "Africa", subregion: "Eastern Africa", tld: [".zm"], callingCode: "+260", independent: true, unMember: true },
|
|
251
|
+
{ iso2: "ZW", iso3: "ZWE", isoNumeric: "716", name: "Zimbabwe", region: "Africa", subregion: "Eastern Africa", tld: [".zw"], callingCode: "+263", independent: true, unMember: true }
|
|
252
|
+
];
|
|
253
|
+
var iso2Map = new Map(
|
|
254
|
+
countries.map((c) => [c.iso2, c])
|
|
255
|
+
);
|
|
256
|
+
var iso3Map = new Map(
|
|
257
|
+
countries.map((c) => [c.iso3, c])
|
|
258
|
+
);
|
|
259
|
+
var isoNumericMap = new Map(
|
|
260
|
+
countries.map((c) => [c.isoNumeric, c])
|
|
261
|
+
);
|
|
262
|
+
|
|
263
|
+
export { countries, iso2Map, iso3Map, isoNumericMap };
|
|
264
|
+
//# sourceMappingURL=chunk-7VNZ5TNZ.js.map
|
|
265
|
+
//# sourceMappingURL=chunk-7VNZ5TNZ.js.map
|