iso 0.1.1 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.travis.yml +12 -0
- data/Gemfile +4 -4
- data/Gemfile.lock +122 -47
- data/README.md +13 -4
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/data/iso-3166-1.yml +1 -0
- data/data/iso-639-1.yml +3 -1
- data/data/un-m49.yml +503 -0
- data/iso.gemspec +39 -34
- data/lib/iso.rb +5 -4
- data/lib/iso/region.rb +2 -1
- data/lib/iso/subtag.rb +4 -1
- data/lib/iso/tag.rb +1 -1
- data/lib/iso/un/region.rb +23 -0
- data/locales/en.yml +37 -0
- data/locales/fr.yml +1 -0
- data/spec/lib/iso/language_spec.rb +10 -10
- data/spec/lib/iso/region_spec.rb +6 -6
- data/spec/lib/iso/subtag_spec.rb +28 -12
- data/spec/lib/iso/tag_spec.rb +39 -22
- data/spec/lib/iso/un/region_spec.rb +38 -0
- data/spec/spec_helper.rb +1 -0
- metadata +67 -47
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 558bcfa4f7b09fb9923abbe4997c243ee681b743a20a7d695f0aa4457ee5135b
|
4
|
+
data.tar.gz: bd8b0da68f0b3c51b1308f24eb6f508e18881da5e30ae6d84798a182e27de468
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: d738aa1638623fe31de25b7447c60f0b7b6b31be726ccf45de2ba35f384384e6630f764d6a522b07d1f0cd5906649db8d50135b857126427e183f1ea554f0f4f
|
7
|
+
data.tar.gz: c8e9dffb223db36ab7a986d548784bad36d5576eaac1c49dfaf0b3182b9763e6e4b6f8c5ab1d371dd559f0ab56e98c79eab2e672529275bf59bfa20918315d7c
|
data/.travis.yml
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
before_install:
|
2
|
+
- gem install bundler
|
3
|
+
language: ruby
|
4
|
+
rvm:
|
5
|
+
- 2.6
|
6
|
+
- 2.5
|
7
|
+
- 2.4
|
8
|
+
- 2.3
|
9
|
+
notifications:
|
10
|
+
slack:
|
11
|
+
if: branch = master
|
12
|
+
secure: dPiP4+6xO6L9/RfXyivr2X2UohSD8CDdnnY57BvNgGVvFtQ2LUP9s1mDxj7gbBGhRZJzTMZlM/PU7bT9O9JCJPcpUs4dWg748KZ0ZGOslnv8yfzNbRh9U5OzyEjch2PFkEhpQPnuVCiof+ahjfxQQSkokpsbNa9DLlDmUapXFPY=
|
data/Gemfile
CHANGED
@@ -3,10 +3,10 @@ source "http://rubygems.org"
|
|
3
3
|
gem "i18n"
|
4
4
|
|
5
5
|
group :development do
|
6
|
-
gem "rspec", "~>
|
7
|
-
gem "rdoc", "~>
|
8
|
-
gem "bundler", "~>
|
9
|
-
gem "jeweler", "~>
|
6
|
+
gem "rspec", "~> 3.9"
|
7
|
+
gem "rdoc", "~> 6.2"
|
8
|
+
gem "bundler", "~> 2.0"
|
9
|
+
gem "jeweler", "~> 2.3"
|
10
10
|
gem "guard-rspec"
|
11
11
|
gem "localeapp"
|
12
12
|
end
|
data/Gemfile.lock
CHANGED
@@ -1,62 +1,137 @@
|
|
1
1
|
GEM
|
2
2
|
remote: http://rubygems.org/
|
3
3
|
specs:
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
4
|
+
addressable (2.4.0)
|
5
|
+
builder (3.2.3)
|
6
|
+
coderay (1.1.2)
|
7
|
+
concurrent-ruby (1.1.5)
|
8
|
+
descendants_tracker (0.0.4)
|
9
|
+
thread_safe (~> 0.3, >= 0.3.1)
|
10
|
+
diff-lcs (1.3)
|
11
|
+
domain_name (0.5.20190701)
|
12
|
+
unf (>= 0.0.5, < 1.0.0)
|
13
|
+
faraday (0.9.2)
|
14
|
+
multipart-post (>= 1.2, < 3)
|
15
|
+
ffi (1.11.3)
|
16
|
+
formatador (0.2.5)
|
17
|
+
git (1.5.0)
|
18
|
+
github_api (0.16.0)
|
19
|
+
addressable (~> 2.4.0)
|
20
|
+
descendants_tracker (~> 0.0.4)
|
21
|
+
faraday (~> 0.8, < 0.10)
|
22
|
+
hashie (>= 3.4)
|
23
|
+
mime-types (>= 1.16, < 3.0)
|
24
|
+
oauth2 (~> 1.0)
|
25
|
+
gli (2.19.0)
|
26
|
+
guard (2.16.1)
|
27
|
+
formatador (>= 0.2.4)
|
28
|
+
listen (>= 2.7, < 4.0)
|
29
|
+
lumberjack (>= 1.0.12, < 2.0)
|
30
|
+
nenv (~> 0.1)
|
31
|
+
notiffany (~> 0.0)
|
32
|
+
pry (>= 0.9.12)
|
33
|
+
shellany (~> 0.0)
|
34
|
+
thor (>= 0.18.1)
|
35
|
+
guard-compat (1.2.1)
|
36
|
+
guard-rspec (4.7.3)
|
37
|
+
guard (~> 2.1)
|
38
|
+
guard-compat (~> 1.1)
|
39
|
+
rspec (>= 2.99.0, < 4.0)
|
40
|
+
hashie (4.0.0)
|
41
|
+
highline (2.0.3)
|
42
|
+
http-accept (1.7.0)
|
43
|
+
http-cookie (1.0.3)
|
44
|
+
domain_name (~> 0.5)
|
45
|
+
i18n (1.7.0)
|
46
|
+
concurrent-ruby (~> 1.0)
|
47
|
+
jeweler (2.3.9)
|
48
|
+
builder
|
49
|
+
bundler
|
16
50
|
git (>= 1.2.5)
|
51
|
+
github_api (~> 0.16.0)
|
52
|
+
highline (>= 1.6.15)
|
53
|
+
nokogiri (>= 1.5.10)
|
54
|
+
psych
|
17
55
|
rake
|
18
56
|
rdoc
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
rb-
|
24
|
-
|
57
|
+
semver2
|
58
|
+
json (2.3.1)
|
59
|
+
jwt (2.2.1)
|
60
|
+
listen (3.2.0)
|
61
|
+
rb-fsevent (~> 0.10, >= 0.10.3)
|
62
|
+
rb-inotify (~> 0.9, >= 0.9.10)
|
63
|
+
localeapp (3.1.2)
|
25
64
|
gli
|
26
|
-
i18n
|
27
|
-
json
|
28
|
-
rest-client
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
65
|
+
i18n (>= 0.7, < 2)
|
66
|
+
json (>= 1.7.7)
|
67
|
+
rest-client (>= 1.8.0)
|
68
|
+
lumberjack (1.0.13)
|
69
|
+
method_source (0.9.2)
|
70
|
+
mime-types (2.99.3)
|
71
|
+
mini_portile2 (2.4.0)
|
72
|
+
multi_json (1.14.1)
|
73
|
+
multi_xml (0.6.0)
|
74
|
+
multipart-post (2.1.1)
|
75
|
+
nenv (0.3.0)
|
76
|
+
netrc (0.11.0)
|
77
|
+
nokogiri (1.10.10)
|
78
|
+
mini_portile2 (~> 2.4.0)
|
79
|
+
notiffany (0.1.3)
|
80
|
+
nenv (~> 0.1)
|
81
|
+
shellany (~> 0.0)
|
82
|
+
oauth2 (1.4.2)
|
83
|
+
faraday (>= 0.8, < 2.0)
|
84
|
+
jwt (>= 1.0, < 3.0)
|
85
|
+
multi_json (~> 1.3)
|
86
|
+
multi_xml (~> 0.5)
|
87
|
+
rack (>= 1.2, < 3)
|
88
|
+
pry (0.12.2)
|
89
|
+
coderay (~> 1.1.0)
|
90
|
+
method_source (~> 0.9.0)
|
91
|
+
psych (3.1.0)
|
92
|
+
rack (2.2.3)
|
93
|
+
rake (13.0.1)
|
94
|
+
rb-fsevent (0.10.3)
|
95
|
+
rb-inotify (0.10.0)
|
96
|
+
ffi (~> 1.0)
|
97
|
+
rdoc (6.2.0)
|
98
|
+
rest-client (2.1.0)
|
99
|
+
http-accept (>= 1.7.0, < 2.0)
|
100
|
+
http-cookie (>= 1.0.2, < 2.0)
|
101
|
+
mime-types (>= 1.16, < 4.0)
|
102
|
+
netrc (~> 0.8)
|
103
|
+
rspec (3.9.0)
|
104
|
+
rspec-core (~> 3.9.0)
|
105
|
+
rspec-expectations (~> 3.9.0)
|
106
|
+
rspec-mocks (~> 3.9.0)
|
107
|
+
rspec-core (3.9.0)
|
108
|
+
rspec-support (~> 3.9.0)
|
109
|
+
rspec-expectations (3.9.0)
|
110
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
111
|
+
rspec-support (~> 3.9.0)
|
112
|
+
rspec-mocks (3.9.0)
|
113
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
114
|
+
rspec-support (~> 3.9.0)
|
115
|
+
rspec-support (3.9.0)
|
116
|
+
semver2 (3.4.2)
|
117
|
+
shellany (0.0.1)
|
118
|
+
thor (0.20.3)
|
119
|
+
thread_safe (0.3.6)
|
120
|
+
unf (0.1.4)
|
121
|
+
unf_ext
|
122
|
+
unf_ext (0.0.7.6)
|
51
123
|
|
52
124
|
PLATFORMS
|
53
125
|
ruby
|
54
126
|
|
55
127
|
DEPENDENCIES
|
56
|
-
bundler (~>
|
128
|
+
bundler (~> 2.0)
|
57
129
|
guard-rspec
|
58
130
|
i18n
|
59
|
-
jeweler (~>
|
131
|
+
jeweler (~> 2.3)
|
60
132
|
localeapp
|
61
|
-
rdoc (~>
|
62
|
-
rspec (~>
|
133
|
+
rdoc (~> 6.2)
|
134
|
+
rspec (~> 3.9)
|
135
|
+
|
136
|
+
BUNDLED WITH
|
137
|
+
2.0.2
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# iso
|
2
2
|
|
3
|
-
[![Build Status](https://
|
3
|
+
[![Build Status](https://travis-ci.org/Locale/iso.svg?branch=master)](https://travis-ci.org/Locale/iso)
|
4
4
|
|
5
5
|
This project is a ruby implementation of ISO 639-1 alpha2 and ISO 3166-1. It includes definitions of all two letter language and region codes.
|
6
6
|
|
@@ -26,7 +26,16 @@ Regions are defined by **ISO 3166-1**; that is the 2 letter uppercase region cod
|
|
26
26
|
|
27
27
|
=> #<ISO::Region:0x007fe2ba070e50
|
28
28
|
@code="MX",
|
29
|
-
@name="Mexico">
|
29
|
+
@name="Mexico">
|
30
|
+
|
31
|
+
Regions can also be defined by the **UN M49** standard; that is the 3 digit region code.
|
32
|
+
|
33
|
+
> ISO::UN::Region.find('419')
|
34
|
+
|
35
|
+
=> #<ISO::Region:0x007fe2ba43db50
|
36
|
+
@code="419",
|
37
|
+
@name="Latin America and the Caribbean">
|
38
|
+
|
30
39
|
|
31
40
|
## Tags
|
32
41
|
|
@@ -46,8 +55,8 @@ The combination of a language and a region is called a Tag :
|
|
46
55
|
|
47
56
|
You can check if a Tag is valid like so :
|
48
57
|
|
49
|
-
|
50
|
-
|
58
|
+
> ISO::Tag.new('pt-BR').valid? => true
|
59
|
+
> ISO::Tag.new('lolcat').valid? => false
|
51
60
|
|
52
61
|
## I18n
|
53
62
|
|
data/Rakefile
CHANGED
@@ -20,7 +20,7 @@ Jeweler::Tasks.new do |gem|
|
|
20
20
|
gem.summary = %Q{A ruby implementation of ISO}
|
21
21
|
gem.description = %Q{A subset of the ISO spec implemented in ruby}
|
22
22
|
gem.email = "chris@tigrish.com"
|
23
|
-
gem.authors = ["Christopher Dell"]
|
23
|
+
gem.authors = ["Christopher Dell", "Thibault Dalban"]
|
24
24
|
# dependencies defined in Gemfile
|
25
25
|
end
|
26
26
|
Jeweler::RubygemsDotOrgTasks.new
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.4.0
|
data/data/iso-3166-1.yml
CHANGED
data/data/iso-639-1.yml
CHANGED
@@ -49,8 +49,10 @@ cu:
|
|
49
49
|
cv:
|
50
50
|
cy:
|
51
51
|
plural_rule_names:
|
52
|
+
- zero
|
52
53
|
- one
|
53
54
|
- two
|
55
|
+
- few
|
54
56
|
- many
|
55
57
|
- other
|
56
58
|
da:
|
@@ -94,6 +96,7 @@ hr:
|
|
94
96
|
ht:
|
95
97
|
hu:
|
96
98
|
plural_rule_names:
|
99
|
+
- one
|
97
100
|
- other
|
98
101
|
hy:
|
99
102
|
hz:
|
@@ -164,7 +167,6 @@ ml:
|
|
164
167
|
mn:
|
165
168
|
mr:
|
166
169
|
ms:
|
167
|
-
ms:
|
168
170
|
mt:
|
169
171
|
my:
|
170
172
|
plural_rule_names:
|
data/data/un-m49.yml
ADDED
@@ -0,0 +1,503 @@
|
|
1
|
+
'002':
|
2
|
+
'004':
|
3
|
+
iso_code: AF
|
4
|
+
'005':
|
5
|
+
'008':
|
6
|
+
iso_code: AL
|
7
|
+
'009':
|
8
|
+
'011':
|
9
|
+
'012':
|
10
|
+
iso_code: DZ
|
11
|
+
'013':
|
12
|
+
'014':
|
13
|
+
'015':
|
14
|
+
'016':
|
15
|
+
iso_code: AS
|
16
|
+
'017':
|
17
|
+
'018':
|
18
|
+
'019':
|
19
|
+
'020':
|
20
|
+
iso_code: AD
|
21
|
+
'021':
|
22
|
+
'024':
|
23
|
+
iso_code: AO
|
24
|
+
'028':
|
25
|
+
iso_code: AG
|
26
|
+
'029':
|
27
|
+
'030':
|
28
|
+
'031':
|
29
|
+
iso_code: AZ
|
30
|
+
'032':
|
31
|
+
iso_code: AR
|
32
|
+
'034':
|
33
|
+
'035':
|
34
|
+
'036':
|
35
|
+
iso_code: AU
|
36
|
+
'039':
|
37
|
+
'040':
|
38
|
+
iso_code: AT
|
39
|
+
'044':
|
40
|
+
iso_code: BS
|
41
|
+
'048':
|
42
|
+
iso_code: BH
|
43
|
+
'050':
|
44
|
+
iso_code: BD
|
45
|
+
'051':
|
46
|
+
iso_code: AM
|
47
|
+
'052':
|
48
|
+
iso_code: BB
|
49
|
+
'053':
|
50
|
+
'054':
|
51
|
+
'056':
|
52
|
+
iso_code: BE
|
53
|
+
'057':
|
54
|
+
'060':
|
55
|
+
iso_code: BM
|
56
|
+
'061':
|
57
|
+
'064':
|
58
|
+
iso_code: BT
|
59
|
+
'068':
|
60
|
+
iso_code: BO
|
61
|
+
'070':
|
62
|
+
iso_code: BA
|
63
|
+
'072':
|
64
|
+
iso_code: BW
|
65
|
+
'076':
|
66
|
+
iso_code: BR
|
67
|
+
'084':
|
68
|
+
iso_code: BZ
|
69
|
+
'090':
|
70
|
+
iso_code: SB
|
71
|
+
'092':
|
72
|
+
iso_code: VG
|
73
|
+
'096':
|
74
|
+
iso_code: BN
|
75
|
+
'100':
|
76
|
+
iso_code: BG
|
77
|
+
'104':
|
78
|
+
iso_code: MM
|
79
|
+
'108':
|
80
|
+
iso_code: BI
|
81
|
+
'112':
|
82
|
+
iso_code: BY
|
83
|
+
'116':
|
84
|
+
iso_code: KH
|
85
|
+
'120':
|
86
|
+
iso_code: CM
|
87
|
+
'124':
|
88
|
+
iso_code: CA
|
89
|
+
'132':
|
90
|
+
iso_code: CV
|
91
|
+
'136':
|
92
|
+
iso_code: KY
|
93
|
+
'140':
|
94
|
+
iso_code: CF
|
95
|
+
'142':
|
96
|
+
'143':
|
97
|
+
'144':
|
98
|
+
iso_code: LK
|
99
|
+
'145':
|
100
|
+
'148':
|
101
|
+
iso_code: TD
|
102
|
+
'150':
|
103
|
+
'151':
|
104
|
+
'152':
|
105
|
+
iso_code: CL
|
106
|
+
'154':
|
107
|
+
'155':
|
108
|
+
'156':
|
109
|
+
iso_code: CN
|
110
|
+
'170':
|
111
|
+
iso_code: CO
|
112
|
+
'174':
|
113
|
+
iso_code: KM
|
114
|
+
'175':
|
115
|
+
iso_code: YT
|
116
|
+
'178':
|
117
|
+
iso_code: CG
|
118
|
+
'180':
|
119
|
+
iso_code: CD
|
120
|
+
'184':
|
121
|
+
iso_code: CK
|
122
|
+
'188':
|
123
|
+
iso_code: CR
|
124
|
+
'191':
|
125
|
+
iso_code: HR
|
126
|
+
'192':
|
127
|
+
iso_code: CU
|
128
|
+
'196':
|
129
|
+
iso_code: CY
|
130
|
+
'203':
|
131
|
+
iso_code: CZ
|
132
|
+
'204':
|
133
|
+
iso_code: BJ
|
134
|
+
'208':
|
135
|
+
iso_code: DK
|
136
|
+
'212':
|
137
|
+
iso_code: DM
|
138
|
+
'214':
|
139
|
+
iso_code: DO
|
140
|
+
'218':
|
141
|
+
iso_code: EC
|
142
|
+
'222':
|
143
|
+
iso_code: SV
|
144
|
+
'226':
|
145
|
+
iso_code: GQ
|
146
|
+
'231':
|
147
|
+
iso_code: ET
|
148
|
+
'232':
|
149
|
+
iso_code: ER
|
150
|
+
'233':
|
151
|
+
iso_code: EE
|
152
|
+
'234':
|
153
|
+
iso_code: FO
|
154
|
+
'238':
|
155
|
+
iso_code: FK
|
156
|
+
'242':
|
157
|
+
iso_code: FJ
|
158
|
+
'246':
|
159
|
+
iso_code: FI
|
160
|
+
'248':
|
161
|
+
'250':
|
162
|
+
iso_code: FR
|
163
|
+
'254':
|
164
|
+
iso_code: GF
|
165
|
+
'258':
|
166
|
+
iso_code: PF
|
167
|
+
'262':
|
168
|
+
iso_code: DJ
|
169
|
+
'266':
|
170
|
+
iso_code: GA
|
171
|
+
'268':
|
172
|
+
iso_code: GE
|
173
|
+
'270':
|
174
|
+
iso_code: GM
|
175
|
+
'275':
|
176
|
+
iso_code: PS
|
177
|
+
'276':
|
178
|
+
iso_code: DE
|
179
|
+
'288':
|
180
|
+
iso_code: GH
|
181
|
+
'292':
|
182
|
+
iso_code: GI
|
183
|
+
'296':
|
184
|
+
iso_code: KI
|
185
|
+
'300':
|
186
|
+
iso_code: GR
|
187
|
+
'304':
|
188
|
+
iso_code: GL
|
189
|
+
'308':
|
190
|
+
iso_code: GD
|
191
|
+
'312':
|
192
|
+
iso_code: GP
|
193
|
+
'316':
|
194
|
+
iso_code: GU
|
195
|
+
'320':
|
196
|
+
iso_code: GT
|
197
|
+
'324':
|
198
|
+
iso_code: GN
|
199
|
+
'328':
|
200
|
+
iso_code: GY
|
201
|
+
'332':
|
202
|
+
iso_code: HT
|
203
|
+
'336':
|
204
|
+
iso_code: VE
|
205
|
+
'340':
|
206
|
+
iso_code: HN
|
207
|
+
'344':
|
208
|
+
'348':
|
209
|
+
iso_code: HU
|
210
|
+
'352':
|
211
|
+
iso_code: IS
|
212
|
+
'356':
|
213
|
+
iso_code: IN
|
214
|
+
'360':
|
215
|
+
iso_code: ID
|
216
|
+
'364':
|
217
|
+
iso_code: IR
|
218
|
+
'368':
|
219
|
+
iso_code: IQ
|
220
|
+
'372':
|
221
|
+
iso_code: IE
|
222
|
+
'376':
|
223
|
+
iso_code: IL
|
224
|
+
'380':
|
225
|
+
iso_code: IT
|
226
|
+
'384':
|
227
|
+
iso_code: CI
|
228
|
+
'388':
|
229
|
+
iso_code: JM
|
230
|
+
'392':
|
231
|
+
iso_code: JP
|
232
|
+
'398':
|
233
|
+
iso_code: KZ
|
234
|
+
'400':
|
235
|
+
iso_code: JO
|
236
|
+
'404':
|
237
|
+
iso_code: KE
|
238
|
+
'408':
|
239
|
+
iso_code: KP
|
240
|
+
'410':
|
241
|
+
iso_code: KR
|
242
|
+
'414':
|
243
|
+
iso_code: KW
|
244
|
+
'417':
|
245
|
+
iso_code: KG
|
246
|
+
'418':
|
247
|
+
iso_code: LA
|
248
|
+
'419':
|
249
|
+
'422':
|
250
|
+
iso_code: LB
|
251
|
+
'426':
|
252
|
+
iso_code: LS
|
253
|
+
'428':
|
254
|
+
iso_code: LV
|
255
|
+
'430':
|
256
|
+
iso_code: LR
|
257
|
+
'434':
|
258
|
+
iso_code: LY
|
259
|
+
'438':
|
260
|
+
iso_code: LI
|
261
|
+
'440':
|
262
|
+
iso_code: LT
|
263
|
+
'442':
|
264
|
+
iso_code: LU
|
265
|
+
'446':
|
266
|
+
'450':
|
267
|
+
iso_code: MG
|
268
|
+
'454':
|
269
|
+
iso_code: MW
|
270
|
+
'458':
|
271
|
+
iso_code: MY
|
272
|
+
'462':
|
273
|
+
iso_code: MV
|
274
|
+
'466':
|
275
|
+
iso_code: ML
|
276
|
+
'470':
|
277
|
+
iso_code: MT
|
278
|
+
'474':
|
279
|
+
iso_code: MQ
|
280
|
+
'478':
|
281
|
+
iso_code: MR
|
282
|
+
'480':
|
283
|
+
iso_code: MU
|
284
|
+
'484':
|
285
|
+
iso_code: MX
|
286
|
+
'492':
|
287
|
+
iso_code: MC
|
288
|
+
'496':
|
289
|
+
iso_code: MN
|
290
|
+
'498':
|
291
|
+
iso_code: MD
|
292
|
+
'499':
|
293
|
+
iso_code: ME
|
294
|
+
'500':
|
295
|
+
iso_code: MS
|
296
|
+
'504':
|
297
|
+
iso_code: MA
|
298
|
+
'508':
|
299
|
+
iso_code: MZ
|
300
|
+
'512':
|
301
|
+
iso_code: OM
|
302
|
+
'516':
|
303
|
+
iso_code: NA
|
304
|
+
'520':
|
305
|
+
iso_code: NR
|
306
|
+
'524':
|
307
|
+
iso_code: NP
|
308
|
+
'528':
|
309
|
+
iso_code: NL
|
310
|
+
'531':
|
311
|
+
iso_code: CW
|
312
|
+
'533':
|
313
|
+
iso_code: AW
|
314
|
+
'534':
|
315
|
+
iso_code: SX
|
316
|
+
'535':
|
317
|
+
'540':
|
318
|
+
iso_code: NC
|
319
|
+
'548':
|
320
|
+
iso_code: VU
|
321
|
+
'554':
|
322
|
+
iso_code: NZ
|
323
|
+
'558':
|
324
|
+
iso_code: NI
|
325
|
+
'562':
|
326
|
+
iso_code: NE
|
327
|
+
'566':
|
328
|
+
iso_code: NG
|
329
|
+
'570':
|
330
|
+
iso_code: NU
|
331
|
+
'574':
|
332
|
+
iso_code: NF
|
333
|
+
'578':
|
334
|
+
iso_code: 'NO'
|
335
|
+
'580':
|
336
|
+
iso_code: MP
|
337
|
+
'583':
|
338
|
+
iso_code: FM
|
339
|
+
'584':
|
340
|
+
iso_code: MH
|
341
|
+
'585':
|
342
|
+
iso_code: PW
|
343
|
+
'586':
|
344
|
+
iso_code: PK
|
345
|
+
'591':
|
346
|
+
iso_code: PA
|
347
|
+
'598':
|
348
|
+
iso_code: PG
|
349
|
+
'600':
|
350
|
+
iso_code: PY
|
351
|
+
'604':
|
352
|
+
iso_code: PE
|
353
|
+
'608':
|
354
|
+
iso_code: PH
|
355
|
+
'612':
|
356
|
+
iso_code: PN
|
357
|
+
'616':
|
358
|
+
iso_code: PL
|
359
|
+
'620':
|
360
|
+
iso_code: PT
|
361
|
+
'624':
|
362
|
+
iso_code: GW
|
363
|
+
'626':
|
364
|
+
iso_code: TL
|
365
|
+
'630':
|
366
|
+
iso_code: PR
|
367
|
+
'634':
|
368
|
+
iso_code: QA
|
369
|
+
'638':
|
370
|
+
'642':
|
371
|
+
iso_code: RO
|
372
|
+
'643':
|
373
|
+
iso_code: RU
|
374
|
+
'646':
|
375
|
+
iso_code: RW
|
376
|
+
'652':
|
377
|
+
iso_code: BL
|
378
|
+
'654':
|
379
|
+
iso_code: SH
|
380
|
+
'659':
|
381
|
+
iso_code: KN
|
382
|
+
'660':
|
383
|
+
iso_code: AI
|
384
|
+
'662':
|
385
|
+
iso_code: LC
|
386
|
+
'663':
|
387
|
+
iso_code: MF
|
388
|
+
'666':
|
389
|
+
iso_code: PM
|
390
|
+
'670':
|
391
|
+
iso_code: VC
|
392
|
+
'674':
|
393
|
+
iso_code: SM
|
394
|
+
'678':
|
395
|
+
iso_code: ST
|
396
|
+
'680':
|
397
|
+
'682':
|
398
|
+
iso_code: SA
|
399
|
+
'686':
|
400
|
+
iso_code: SN
|
401
|
+
'688':
|
402
|
+
iso_code: RS
|
403
|
+
'690':
|
404
|
+
iso_code: SC
|
405
|
+
'694':
|
406
|
+
iso_code: SL
|
407
|
+
'702':
|
408
|
+
iso_code: SG
|
409
|
+
'703':
|
410
|
+
iso_code: SK
|
411
|
+
'704':
|
412
|
+
iso_code: VN
|
413
|
+
'705':
|
414
|
+
iso_code: SI
|
415
|
+
'706':
|
416
|
+
iso_code: SO
|
417
|
+
'710':
|
418
|
+
iso_code: ZA
|
419
|
+
'716':
|
420
|
+
iso_code: ZW
|
421
|
+
'724':
|
422
|
+
iso_code: ES
|
423
|
+
'728':
|
424
|
+
iso_code: SS
|
425
|
+
'729':
|
426
|
+
iso_code: SD
|
427
|
+
'732':
|
428
|
+
iso_code: EH
|
429
|
+
'740':
|
430
|
+
iso_code: SR
|
431
|
+
'744':
|
432
|
+
iso_code: SJ
|
433
|
+
'748':
|
434
|
+
iso_code: SZ
|
435
|
+
'752':
|
436
|
+
iso_code: SE
|
437
|
+
'756':
|
438
|
+
iso_code: CH
|
439
|
+
'760':
|
440
|
+
iso_code: SY
|
441
|
+
'762':
|
442
|
+
iso_code: TJ
|
443
|
+
'764':
|
444
|
+
iso_code: TH
|
445
|
+
'768':
|
446
|
+
iso_code: TG
|
447
|
+
'772':
|
448
|
+
iso_code: TK
|
449
|
+
'776':
|
450
|
+
iso_code: TO
|
451
|
+
'780':
|
452
|
+
iso_code: TT
|
453
|
+
'784':
|
454
|
+
iso_code: AE
|
455
|
+
'788':
|
456
|
+
iso_code: TN
|
457
|
+
'792':
|
458
|
+
iso_code: TR
|
459
|
+
'795':
|
460
|
+
iso_code: TM
|
461
|
+
'796':
|
462
|
+
iso_code: TC
|
463
|
+
'798':
|
464
|
+
iso_code: TV
|
465
|
+
'800':
|
466
|
+
iso_code: UG
|
467
|
+
'804':
|
468
|
+
iso_code: UA
|
469
|
+
'807':
|
470
|
+
iso_code: MK
|
471
|
+
'818':
|
472
|
+
iso_code: EG
|
473
|
+
'826':
|
474
|
+
iso_code: GB
|
475
|
+
'830':
|
476
|
+
'831':
|
477
|
+
iso_code: GG
|
478
|
+
'832':
|
479
|
+
iso_code: JE
|
480
|
+
'833':
|
481
|
+
iso_code: IM
|
482
|
+
'834':
|
483
|
+
iso_code: TZ
|
484
|
+
'840':
|
485
|
+
iso_code: US
|
486
|
+
'850':
|
487
|
+
iso_code: VG
|
488
|
+
'854':
|
489
|
+
iso_code: BF
|
490
|
+
'858':
|
491
|
+
iso_code: UY
|
492
|
+
'860':
|
493
|
+
iso_code: UZ
|
494
|
+
'862':
|
495
|
+
iso_code: VE
|
496
|
+
'876':
|
497
|
+
iso_code: WS
|
498
|
+
'882':
|
499
|
+
iso_code: WS
|
500
|
+
'887':
|
501
|
+
iso_code: YE
|
502
|
+
'894':
|
503
|
+
iso_code: ZM
|