pay 3.0.12 → 3.0.16

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of pay might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5a5535971718b3a7b0ea0d09f565dc6a43677209da1700921d202c68639b80d1
4
- data.tar.gz: 8127f7d2b78d4bfc7cb473dc4ae4f447a311ebe19214a950d7836a67fc244a76
3
+ metadata.gz: 59b2532c5c7b00afccc1f337f22f89264a5638ce228011166f776c77487b2195
4
+ data.tar.gz: b67a36b2fded1ee0a28f6a32efe24c9f2d6a34611b20f6c1a4776d9424f42cfd
5
5
  SHA512:
6
- metadata.gz: 4547c7f4ca33877b128c2f5b5e2835c0b3aa80ae6dee8817c64f59428b8e108f0ed611bebad936e0e1b17cd568b505496af7f6ad66cd2dd8897c60d44f5530d1
7
- data.tar.gz: 022b0d2859f488310bfce2a14eb49796f68a5fece5d906b0228097ce217e00b57316564e339cfd87084d602d06cf30ec10f53eacdbfe8feb10ceefa7d1f68b42
6
+ metadata.gz: c9594441627345f0da762497bb91c465aa37c3c54979c43b47620c5361830add4bb7cf84db1d9e3fbd0bdd8b73997ec676e6ca044a8763a8b4f33757a679c965
7
+ data.tar.gz: e0e9918358210d2a8a7cc49e0172c45b0a48884b9d517a73cd19addb0e4c60d4301bb9e33c1deacb8f68941e5ea81f4541c1cb1474c981e8a250f316b59063c6
@@ -71,6 +71,14 @@ module Pay
71
71
  refunded? && !full_refund?
72
72
  end
73
73
 
74
+ def amount_with_currency
75
+ Pay::Currency.format(amount, currency: currency)
76
+ end
77
+
78
+ def amount_refunded_with_currency
79
+ Pay::Currency.format(amount_refunded, currency: currency)
80
+ end
81
+
74
82
  def charged_to
75
83
  case payment_method_type
76
84
  when "card"
@@ -23,12 +23,13 @@ module Pay
23
23
  delegate :email, to: :owner
24
24
  delegate_missing_to :pay_processor
25
25
 
26
- def self.processor_for(name)
26
+ def self.pay_processor_for(name)
27
27
  "Pay::#{name.to_s.classify}::Billable".constantize
28
28
  end
29
29
 
30
30
  def pay_processor
31
- @pay_processor ||= self.class.processor_for(processor).new(self)
31
+ return if processor.blank?
32
+ @pay_processor ||= self.class.pay_processor_for(processor).new(self)
32
33
  end
33
34
 
34
35
  def update_payment_method(payment_method_id)
@@ -65,6 +66,7 @@ module Pay
65
66
  end
66
67
 
67
68
  def customer_name
69
+ return owner.pay_customer_name if owner.respond_to?(:pay_customer_name) && owner.pay_customer_name.present?
68
70
  owner.respond_to?(:name) ? owner.name : [owner.try(:first_name), owner.try(:last_name)].compact.join(" ")
69
71
  end
70
72
 
@@ -8,12 +8,13 @@ module Pay
8
8
 
9
9
  delegate_missing_to :pay_processor
10
10
 
11
- def self.processor_for(name)
11
+ def self.pay_processor_for(name)
12
12
  "Pay::#{name.to_s.classify}::Merchant".constantize
13
13
  end
14
14
 
15
15
  def pay_processor
16
- @pay_processor ||= self.class.processor_for(processor).new(self)
16
+ return if processor.blank?
17
+ @pay_processor ||= self.class.pay_processor_for(processor).new(self)
17
18
  end
18
19
  end
19
20
  end
@@ -4,6 +4,7 @@ module Pay
4
4
 
5
5
  belongs_to :customer
6
6
 
7
+ store_accessor :data, :stripe_account
7
8
  store_accessor :data, :brand # Visa, Mastercard, Discover, PayPal
8
9
  store_accessor :data, :last4
9
10
  store_accessor :data, :exp_month
@@ -34,7 +34,7 @@
34
34
  <% else %>
35
35
  <div data-payment-intent-target="form" id="payment-elements">
36
36
  <!-- Instructions -->
37
- <h1 class="text-xl mt-2 mb-4 text-gray-700"><%=t "pay.requires_action.header", amount: number_to_currency(@payment.amount / 100.0) %></h1>
37
+ <h1 class="text-xl mt-2 mb-4 text-gray-700"><%=t "pay.requires_action.header", amount: @payment.amount_with_currency %></h1>
38
38
  <p class="mb-6"><%=t "pay.requires_action.description" %></p>
39
39
 
40
40
  <div data-payment-intent-target="cardFields" class="hidden">
@@ -49,7 +49,7 @@
49
49
 
50
50
  <!-- Pay Button -->
51
51
  <button data-payment-intent-target="button" data-action="click->payment-intent#confirmPayment" class="inline-block w-full px-4 py-3 mb-4 text-white rounded-lg bg-blue-400 hover:bg-blue-500">
52
- <%=t "pay.requires_action.button", amount: number_to_currency(@payment.amount / 100.0) %>
52
+ <%=t "pay.requires_action.button", amount: @payment.amount_with_currency %>
53
53
  </button>
54
54
  </div>
55
55
  <% end %>
@@ -5,7 +5,7 @@ Questions? Please reply to this email.<br/>
5
5
  ------------------------------------<br/>
6
6
  RECEIPT - SUBSCRIPTION<br/>
7
7
  <br/>
8
- Amount: USD <%= ActionController::Base.helpers.number_to_currency(params[:charge].amount / 100.0) %><br/>
8
+ Amount: <%= params[:charge].amount_with_currency %><br/>
9
9
  <br/>
10
10
  Charged to: <%= params[:charge].charged_to %><br/>
11
11
  Transaction ID: <%= params[:charge].id %><br/>
@@ -6,7 +6,7 @@ Questions? Please reply to this email.<br/>
6
6
  ------------------------------------<br/>
7
7
  RECEIPT - REFUND<br/>
8
8
  <br/>
9
- Amount: USD <%= ActionController::Base.helpers.number_to_currency(params[:charge].amount / 100.0) %><br/>
9
+ Amount: <%= params[:charge].amount_refunded_with_currency %><br/>
10
10
  <br/>
11
11
  Refunded to: <%= params[:charge].charged_to %><br/>
12
12
  Transaction ID: <%= params[:charge].id %><br/>
@@ -0,0 +1,2702 @@
1
+ {
2
+ "aed": {
3
+ "priority": 100,
4
+ "iso_code": "AED",
5
+ "name": "United Arab Emirates Dirham",
6
+ "unit": "د.إ",
7
+ "alternate_units": ["DH", "Dhs"],
8
+ "subunit": "Fils",
9
+ "subunit_to_unit": 100,
10
+ "unit_first": false,
11
+ "format": "%n %u",
12
+ "html_entity": "",
13
+ "separator": ".",
14
+ "delimiter": ",",
15
+ "iso_numeric": "784",
16
+ "smallest_denomination": 25
17
+ },
18
+ "afn": {
19
+ "priority": 100,
20
+ "iso_code": "AFN",
21
+ "name": "Afghan Afghani",
22
+ "unit": "؋",
23
+ "alternate_units": ["Af", "Afs"],
24
+ "subunit": "Pul",
25
+ "subunit_to_unit": 100,
26
+ "unit_first": false,
27
+ "format": "%n %u",
28
+ "html_entity": "",
29
+ "separator": ".",
30
+ "delimiter": ",",
31
+ "iso_numeric": "971",
32
+ "smallest_denomination": 100
33
+ },
34
+ "all": {
35
+ "priority": 100,
36
+ "iso_code": "ALL",
37
+ "name": "Albanian Lek",
38
+ "unit": "L",
39
+ "disambiguate_unit": "Lek",
40
+ "alternate_units": ["Lek"],
41
+ "subunit": "Qintar",
42
+ "subunit_to_unit": 100,
43
+ "unit_first": false,
44
+ "format": "%n %u",
45
+ "html_entity": "",
46
+ "separator": ".",
47
+ "delimiter": ",",
48
+ "iso_numeric": "008",
49
+ "smallest_denomination": 100
50
+ },
51
+ "amd": {
52
+ "priority": 100,
53
+ "iso_code": "AMD",
54
+ "name": "Armenian Dram",
55
+ "unit": "դր.",
56
+ "alternate_units": ["dram"],
57
+ "subunit": "Luma",
58
+ "subunit_to_unit": 100,
59
+ "unit_first": false,
60
+ "format": "%n %u",
61
+ "html_entity": "",
62
+ "separator": ".",
63
+ "delimiter": ",",
64
+ "iso_numeric": "051",
65
+ "smallest_denomination": 10
66
+ },
67
+ "ang": {
68
+ "priority": 100,
69
+ "iso_code": "ANG",
70
+ "name": "Netherlands Antillean Gulden",
71
+ "unit": "ƒ",
72
+ "alternate_units": ["NAƒ", "NAf", "f"],
73
+ "subunit": "Cent",
74
+ "subunit_to_unit": 100,
75
+ "unit_first": true,
76
+ "html_entity": "&#x0192;",
77
+ "separator": ",",
78
+ "delimiter": ".",
79
+ "iso_numeric": "532",
80
+ "smallest_denomination": 1
81
+ },
82
+ "aoa": {
83
+ "priority": 100,
84
+ "iso_code": "AOA",
85
+ "name": "Angolan Kwanza",
86
+ "unit": "Kz",
87
+ "alternate_units": [],
88
+ "subunit": "Cêntimo",
89
+ "subunit_to_unit": 100,
90
+ "unit_first": false,
91
+ "format": "%n %u",
92
+ "html_entity": "",
93
+ "separator": ".",
94
+ "delimiter": ",",
95
+ "iso_numeric": "973",
96
+ "smallest_denomination": 10
97
+ },
98
+ "ars": {
99
+ "priority": 100,
100
+ "iso_code": "ARS",
101
+ "name": "Argentine Peso",
102
+ "unit": "$",
103
+ "disambiguate_unit": "$m/n",
104
+ "alternate_units": ["$m/n", "m$n"],
105
+ "subunit": "Centavo",
106
+ "subunit_to_unit": 100,
107
+ "unit_first": true,
108
+ "html_entity": "$",
109
+ "separator": ",",
110
+ "delimiter": ".",
111
+ "iso_numeric": "032",
112
+ "smallest_denomination": 1
113
+ },
114
+ "aud": {
115
+ "priority": 4,
116
+ "iso_code": "AUD",
117
+ "name": "Australian Dollar",
118
+ "unit": "$",
119
+ "disambiguate_unit": "A$",
120
+ "alternate_units": ["A$"],
121
+ "subunit": "Cent",
122
+ "subunit_to_unit": 100,
123
+ "unit_first": true,
124
+ "html_entity": "$",
125
+ "separator": ".",
126
+ "delimiter": ",",
127
+ "iso_numeric": "036",
128
+ "smallest_denomination": 5
129
+ },
130
+ "awg": {
131
+ "priority": 100,
132
+ "iso_code": "AWG",
133
+ "name": "Aruban Florin",
134
+ "unit": "ƒ",
135
+ "alternate_units": ["Afl"],
136
+ "subunit": "Cent",
137
+ "subunit_to_unit": 100,
138
+ "unit_first": false,
139
+ "format": "%n %u",
140
+ "html_entity": "&#x0192;",
141
+ "separator": ".",
142
+ "delimiter": ",",
143
+ "iso_numeric": "533",
144
+ "smallest_denomination": 5
145
+ },
146
+ "azn": {
147
+ "priority": 100,
148
+ "iso_code": "AZN",
149
+ "name": "Azerbaijani Manat",
150
+ "unit": "₼",
151
+ "alternate_units": ["m", "man"],
152
+ "subunit": "Qəpik",
153
+ "subunit_to_unit": 100,
154
+ "unit_first": true,
155
+ "html_entity": "",
156
+ "separator": ".",
157
+ "delimiter": ",",
158
+ "iso_numeric": "944",
159
+ "smallest_denomination": 1
160
+ },
161
+ "bam": {
162
+ "priority": 100,
163
+ "iso_code": "BAM",
164
+ "name": "Bosnia and Herzegovina Convertible Mark",
165
+ "unit": "КМ",
166
+ "alternate_units": ["KM"],
167
+ "subunit": "Fening",
168
+ "subunit_to_unit": 100,
169
+ "unit_first": true,
170
+ "html_entity": "",
171
+ "separator": ".",
172
+ "delimiter": ",",
173
+ "iso_numeric": "977",
174
+ "smallest_denomination": 5
175
+ },
176
+ "bbd": {
177
+ "priority": 100,
178
+ "iso_code": "BBD",
179
+ "name": "Barbadian Dollar",
180
+ "unit": "$",
181
+ "disambiguate_unit": "Bds$",
182
+ "alternate_units": ["Bds$"],
183
+ "subunit": "Cent",
184
+ "subunit_to_unit": 100,
185
+ "unit_first": true,
186
+ "html_entity": "$",
187
+ "separator": ".",
188
+ "delimiter": ",",
189
+ "iso_numeric": "052",
190
+ "smallest_denomination": 1
191
+ },
192
+ "bdt": {
193
+ "priority": 100,
194
+ "iso_code": "BDT",
195
+ "name": "Bangladeshi Taka",
196
+ "unit": "৳",
197
+ "alternate_units": ["Tk"],
198
+ "subunit": "Paisa",
199
+ "subunit_to_unit": 100,
200
+ "unit_first": true,
201
+ "html_entity": "",
202
+ "separator": ".",
203
+ "delimiter": ",",
204
+ "iso_numeric": "050",
205
+ "smallest_denomination": 1
206
+ },
207
+ "bgn": {
208
+ "priority": 100,
209
+ "iso_code": "BGN",
210
+ "name": "Bulgarian Lev",
211
+ "unit": "лв.",
212
+ "alternate_units": ["lev", "leva", "лев", "лева"],
213
+ "subunit": "Stotinka",
214
+ "subunit_to_unit": 100,
215
+ "unit_first": false,
216
+ "format": "%n %u",
217
+ "html_entity": "",
218
+ "separator": ".",
219
+ "delimiter": ",",
220
+ "iso_numeric": "975",
221
+ "smallest_denomination": 1
222
+ },
223
+ "bhd": {
224
+ "priority": 100,
225
+ "iso_code": "BHD",
226
+ "name": "Bahraini Dinar",
227
+ "unit": "د.ب",
228
+ "alternate_units": ["BD"],
229
+ "subunit": "Fils",
230
+ "subunit_to_unit": 1000,
231
+ "unit_first": true,
232
+ "html_entity": "",
233
+ "separator": ".",
234
+ "delimiter": ",",
235
+ "iso_numeric": "048",
236
+ "smallest_denomination": 5
237
+ },
238
+ "bif": {
239
+ "priority": 100,
240
+ "iso_code": "BIF",
241
+ "name": "Burundian Franc",
242
+ "unit": "Fr",
243
+ "disambiguate_unit": "FBu",
244
+ "alternate_units": ["FBu"],
245
+ "subunit": "Centime",
246
+ "subunit_to_unit": 1,
247
+ "unit_first": false,
248
+ "format": "%n %u",
249
+ "html_entity": "",
250
+ "separator": ".",
251
+ "delimiter": ",",
252
+ "iso_numeric": "108",
253
+ "smallest_denomination": 100
254
+ },
255
+ "bmd": {
256
+ "priority": 100,
257
+ "iso_code": "BMD",
258
+ "name": "Bermudian Dollar",
259
+ "unit": "$",
260
+ "disambiguate_unit": "BD$",
261
+ "alternate_units": ["BD$"],
262
+ "subunit": "Cent",
263
+ "subunit_to_unit": 100,
264
+ "unit_first": true,
265
+ "html_entity": "$",
266
+ "separator": ".",
267
+ "delimiter": ",",
268
+ "iso_numeric": "060",
269
+ "smallest_denomination": 1
270
+ },
271
+ "bnd": {
272
+ "priority": 100,
273
+ "iso_code": "BND",
274
+ "name": "Brunei Dollar",
275
+ "unit": "$",
276
+ "disambiguate_unit": "BND",
277
+ "alternate_units": ["B$"],
278
+ "subunit": "Sen",
279
+ "subunit_to_unit": 100,
280
+ "unit_first": true,
281
+ "html_entity": "$",
282
+ "separator": ".",
283
+ "delimiter": ",",
284
+ "iso_numeric": "096",
285
+ "smallest_denomination": 1
286
+ },
287
+ "bob": {
288
+ "priority": 100,
289
+ "iso_code": "BOB",
290
+ "name": "Bolivian Boliviano",
291
+ "unit": "Bs.",
292
+ "alternate_units": ["Bs"],
293
+ "subunit": "Centavo",
294
+ "subunit_to_unit": 100,
295
+ "unit_first": true,
296
+ "html_entity": "",
297
+ "separator": ".",
298
+ "delimiter": ",",
299
+ "iso_numeric": "068",
300
+ "smallest_denomination": 10
301
+ },
302
+ "brl": {
303
+ "priority": 100,
304
+ "iso_code": "BRL",
305
+ "name": "Brazilian Real",
306
+ "unit": "R$",
307
+ "subunit": "Centavo",
308
+ "subunit_to_unit": 100,
309
+ "unit_first": true,
310
+ "html_entity": "R$",
311
+ "separator": ",",
312
+ "delimiter": ".",
313
+ "iso_numeric": "986",
314
+ "smallest_denomination": 5
315
+ },
316
+ "bsd": {
317
+ "priority": 100,
318
+ "iso_code": "BSD",
319
+ "name": "Bahamian Dollar",
320
+ "unit": "$",
321
+ "disambiguate_unit": "BSD",
322
+ "alternate_units": ["B$"],
323
+ "subunit": "Cent",
324
+ "subunit_to_unit": 100,
325
+ "unit_first": true,
326
+ "html_entity": "$",
327
+ "separator": ".",
328
+ "delimiter": ",",
329
+ "iso_numeric": "044",
330
+ "smallest_denomination": 1
331
+ },
332
+ "btn": {
333
+ "priority": 100,
334
+ "iso_code": "BTN",
335
+ "name": "Bhutanese Ngultrum",
336
+ "unit": "Nu.",
337
+ "alternate_units": ["Nu"],
338
+ "subunit": "Chertrum",
339
+ "subunit_to_unit": 100,
340
+ "unit_first": false,
341
+ "format": "%n %u",
342
+ "html_entity": "",
343
+ "separator": ".",
344
+ "delimiter": ",",
345
+ "iso_numeric": "064",
346
+ "smallest_denomination": 5
347
+ },
348
+ "bwp": {
349
+ "priority": 100,
350
+ "iso_code": "BWP",
351
+ "name": "Botswana Pula",
352
+ "unit": "P",
353
+ "alternate_units": [],
354
+ "subunit": "Thebe",
355
+ "subunit_to_unit": 100,
356
+ "unit_first": true,
357
+ "html_entity": "",
358
+ "separator": ".",
359
+ "delimiter": ",",
360
+ "iso_numeric": "072",
361
+ "smallest_denomination": 5
362
+ },
363
+ "byn": {
364
+ "priority": 100,
365
+ "iso_code": "BYN",
366
+ "name": "Belarusian Ruble",
367
+ "unit": "Br",
368
+ "disambiguate_unit": "BYN",
369
+ "alternate_units": ["бел. руб.", "б.р.", "руб.", "р."],
370
+ "subunit": "Kapeyka",
371
+ "subunit_to_unit": 100,
372
+ "unit_first": false,
373
+ "format": "%n %u",
374
+ "html_entity": "",
375
+ "separator": ",",
376
+ "delimiter": " ",
377
+ "iso_numeric": "933",
378
+ "smallest_denomination": 1
379
+ },
380
+ "byr": {
381
+ "priority": 50,
382
+ "iso_code": "BYR",
383
+ "name": "Belarusian Ruble",
384
+ "unit": "Br",
385
+ "disambiguate_unit": "BYR",
386
+ "alternate_units": ["бел. руб.", "б.р.", "руб.", "р."],
387
+ "subunit": null,
388
+ "subunit_to_unit": 1,
389
+ "unit_first": false,
390
+ "format": "%n %u",
391
+ "html_entity": "",
392
+ "separator": ",",
393
+ "delimiter": " ",
394
+ "iso_numeric": "974",
395
+ "smallest_denomination": 100
396
+ },
397
+ "bzd": {
398
+ "priority": 100,
399
+ "iso_code": "BZD",
400
+ "name": "Belize Dollar",
401
+ "unit": "$",
402
+ "disambiguate_unit": "BZ$",
403
+ "alternate_units": ["BZ$"],
404
+ "subunit": "Cent",
405
+ "subunit_to_unit": 100,
406
+ "unit_first": true,
407
+ "html_entity": "$",
408
+ "separator": ".",
409
+ "delimiter": ",",
410
+ "iso_numeric": "084",
411
+ "smallest_denomination": 1
412
+ },
413
+ "cad": {
414
+ "priority": 5,
415
+ "iso_code": "CAD",
416
+ "name": "Canadian Dollar",
417
+ "unit": "$",
418
+ "disambiguate_unit": "C$",
419
+ "alternate_units": ["C$", "CAD$"],
420
+ "subunit": "Cent",
421
+ "subunit_to_unit": 100,
422
+ "unit_first": true,
423
+ "html_entity": "$",
424
+ "separator": ".",
425
+ "delimiter": ",",
426
+ "iso_numeric": "124",
427
+ "smallest_denomination": 5
428
+ },
429
+ "cdf": {
430
+ "priority": 100,
431
+ "iso_code": "CDF",
432
+ "name": "Congolese Franc",
433
+ "unit": "Fr",
434
+ "disambiguate_unit": "FC",
435
+ "alternate_units": ["FC"],
436
+ "subunit": "Centime",
437
+ "subunit_to_unit": 100,
438
+ "unit_first": false,
439
+ "format": "%n %u",
440
+ "html_entity": "",
441
+ "separator": ".",
442
+ "delimiter": ",",
443
+ "iso_numeric": "976",
444
+ "smallest_denomination": 1
445
+ },
446
+ "chf": {
447
+ "priority": 100,
448
+ "iso_code": "CHF",
449
+ "name": "Swiss Franc",
450
+ "unit": "CHF",
451
+ "alternate_units": ["SFr", "Fr"],
452
+ "subunit": "Rappen",
453
+ "subunit_to_unit": 100,
454
+ "unit_first": true,
455
+ "format": "%u%n",
456
+ "html_entity": "",
457
+ "separator": ".",
458
+ "delimiter": ",",
459
+ "iso_numeric": "756",
460
+ "smallest_denomination": 5
461
+ },
462
+ "clf": {
463
+ "priority": 100,
464
+ "iso_code": "CLF",
465
+ "name": "Unidad de Fomento",
466
+ "unit": "UF",
467
+ "alternate_units": [],
468
+ "subunit": "Peso",
469
+ "subunit_to_unit": 10000,
470
+ "unit_first": true,
471
+ "html_entity": "&#x20B1;",
472
+ "separator": ",",
473
+ "delimiter": ".",
474
+ "iso_numeric": "990"
475
+ },
476
+ "clp": {
477
+ "priority": 100,
478
+ "iso_code": "CLP",
479
+ "name": "Chilean Peso",
480
+ "unit": "$",
481
+ "disambiguate_unit": "CLP",
482
+ "alternate_units": [],
483
+ "subunit": "Peso",
484
+ "subunit_to_unit": 1,
485
+ "unit_first": true,
486
+ "html_entity": "&#36;",
487
+ "separator": ",",
488
+ "delimiter": ".",
489
+ "iso_numeric": "152",
490
+ "smallest_denomination": 1
491
+ },
492
+ "cny": {
493
+ "priority": 100,
494
+ "iso_code": "CNY",
495
+ "name": "Chinese Renminbi Yuan",
496
+ "unit": "¥",
497
+ "alternate_units": ["CN¥", "元", "CN元"],
498
+ "subunit": "Fen",
499
+ "subunit_to_unit": 100,
500
+ "unit_first": true,
501
+ "html_entity": "¥",
502
+ "separator": ".",
503
+ "delimiter": ",",
504
+ "iso_numeric": "156",
505
+ "smallest_denomination": 1
506
+ },
507
+ "cop": {
508
+ "priority": 100,
509
+ "iso_code": "COP",
510
+ "name": "Colombian Peso",
511
+ "unit": "$",
512
+ "disambiguate_unit": "COL$",
513
+ "alternate_units": ["COL$"],
514
+ "subunit": "Centavo",
515
+ "subunit_to_unit": 100,
516
+ "unit_first": true,
517
+ "html_entity": "&#36;",
518
+ "separator": ",",
519
+ "delimiter": ".",
520
+ "iso_numeric": "170",
521
+ "smallest_denomination": 20
522
+ },
523
+ "crc": {
524
+ "priority": 100,
525
+ "iso_code": "CRC",
526
+ "name": "Costa Rican Colón",
527
+ "unit": "₡",
528
+ "alternate_units": ["¢"],
529
+ "subunit": "Céntimo",
530
+ "subunit_to_unit": 100,
531
+ "unit_first": true,
532
+ "html_entity": "&#x20A1;",
533
+ "separator": ",",
534
+ "delimiter": ".",
535
+ "iso_numeric": "188",
536
+ "smallest_denomination": 500
537
+ },
538
+ "cuc": {
539
+ "priority": 100,
540
+ "iso_code": "CUC",
541
+ "name": "Cuban Convertible Peso",
542
+ "unit": "$",
543
+ "disambiguate_unit": "CUC$",
544
+ "alternate_units": ["CUC$"],
545
+ "subunit": "Centavo",
546
+ "subunit_to_unit": 100,
547
+ "unit_first": false,
548
+ "format": "%n %u",
549
+ "html_entity": "",
550
+ "separator": ".",
551
+ "delimiter": ",",
552
+ "iso_numeric": "931",
553
+ "smallest_denomination": 1
554
+ },
555
+ "cup": {
556
+ "priority": 100,
557
+ "iso_code": "CUP",
558
+ "name": "Cuban Peso",
559
+ "unit": "$",
560
+ "disambiguate_unit": "$MN",
561
+ "alternate_units": ["$MN"],
562
+ "subunit": "Centavo",
563
+ "subunit_to_unit": 100,
564
+ "unit_first": true,
565
+ "html_entity": "&#x20B1;",
566
+ "separator": ".",
567
+ "delimiter": ",",
568
+ "iso_numeric": "192",
569
+ "smallest_denomination": 1
570
+ },
571
+ "cve": {
572
+ "priority": 100,
573
+ "iso_code": "CVE",
574
+ "name": "Cape Verdean Escudo",
575
+ "unit": "$",
576
+ "disambiguate_unit": "Esc",
577
+ "alternate_units": ["Esc"],
578
+ "subunit": "Centavo",
579
+ "subunit_to_unit": 100,
580
+ "unit_first": false,
581
+ "format": "%n %u",
582
+ "html_entity": "",
583
+ "separator": ".",
584
+ "delimiter": ",",
585
+ "iso_numeric": "132",
586
+ "smallest_denomination": 100
587
+ },
588
+ "czk": {
589
+ "priority": 100,
590
+ "iso_code": "CZK",
591
+ "name": "Czech Koruna",
592
+ "unit": "Kč",
593
+ "alternate_units": [],
594
+ "subunit": "Haléř",
595
+ "subunit_to_unit": 100,
596
+ "unit_first": false,
597
+ "format": "%n %u",
598
+ "html_entity": "",
599
+ "separator": ",",
600
+ "delimiter": " ",
601
+ "iso_numeric": "203",
602
+ "smallest_denomination": 100
603
+ },
604
+ "djf": {
605
+ "priority": 100,
606
+ "iso_code": "DJF",
607
+ "name": "Djiboutian Franc",
608
+ "unit": "Fdj",
609
+ "alternate_units": [],
610
+ "subunit": "Centime",
611
+ "subunit_to_unit": 1,
612
+ "unit_first": false,
613
+ "format": "%n %u",
614
+ "html_entity": "",
615
+ "separator": ".",
616
+ "delimiter": ",",
617
+ "iso_numeric": "262",
618
+ "smallest_denomination": 100
619
+ },
620
+ "dkk": {
621
+ "priority": 100,
622
+ "iso_code": "DKK",
623
+ "name": "Danish Krone",
624
+ "unit": "kr.",
625
+ "disambiguate_unit": "DKK",
626
+ "alternate_units": [",-"],
627
+ "subunit": "Øre",
628
+ "subunit_to_unit": 100,
629
+ "unit_first": false,
630
+ "format": "%n %u",
631
+ "html_entity": "",
632
+ "separator": ",",
633
+ "delimiter": ".",
634
+ "iso_numeric": "208",
635
+ "smallest_denomination": 50
636
+ },
637
+ "dop": {
638
+ "priority": 100,
639
+ "iso_code": "DOP",
640
+ "name": "Dominican Peso",
641
+ "unit": "$",
642
+ "disambiguate_unit": "RD$",
643
+ "alternate_units": ["RD$"],
644
+ "subunit": "Centavo",
645
+ "subunit_to_unit": 100,
646
+ "unit_first": true,
647
+ "html_entity": "&#x20B1;",
648
+ "separator": ".",
649
+ "delimiter": ",",
650
+ "iso_numeric": "214",
651
+ "smallest_denomination": 100
652
+ },
653
+ "dzd": {
654
+ "priority": 100,
655
+ "iso_code": "DZD",
656
+ "name": "Algerian Dinar",
657
+ "unit": "د.ج",
658
+ "alternate_units": ["DA"],
659
+ "subunit": "Centime",
660
+ "subunit_to_unit": 100,
661
+ "unit_first": false,
662
+ "format": "%n %u",
663
+ "html_entity": "",
664
+ "separator": ".",
665
+ "delimiter": ",",
666
+ "iso_numeric": "012",
667
+ "smallest_denomination": 100
668
+ },
669
+ "egp": {
670
+ "priority": 100,
671
+ "iso_code": "EGP",
672
+ "name": "Egyptian Pound",
673
+ "unit": "ج.م",
674
+ "alternate_units": ["LE", "E£", "L.E."],
675
+ "subunit": "Piastre",
676
+ "subunit_to_unit": 100,
677
+ "unit_first": true,
678
+ "html_entity": "&#x00A3;",
679
+ "separator": ".",
680
+ "delimiter": ",",
681
+ "iso_numeric": "818",
682
+ "smallest_denomination": 25
683
+ },
684
+ "ern": {
685
+ "priority": 100,
686
+ "iso_code": "ERN",
687
+ "name": "Eritrean Nakfa",
688
+ "unit": "Nfk",
689
+ "alternate_units": [],
690
+ "subunit": "Cent",
691
+ "subunit_to_unit": 100,
692
+ "unit_first": false,
693
+ "format": "%n %u",
694
+ "html_entity": "",
695
+ "separator": ".",
696
+ "delimiter": ",",
697
+ "iso_numeric": "232",
698
+ "smallest_denomination": 1
699
+ },
700
+ "etb": {
701
+ "priority": 100,
702
+ "iso_code": "ETB",
703
+ "name": "Ethiopian Birr",
704
+ "unit": "Br",
705
+ "disambiguate_unit": "ETB",
706
+ "alternate_units": [],
707
+ "subunit": "Santim",
708
+ "subunit_to_unit": 100,
709
+ "unit_first": false,
710
+ "format": "%n %u",
711
+ "html_entity": "",
712
+ "separator": ".",
713
+ "delimiter": ",",
714
+ "iso_numeric": "230",
715
+ "smallest_denomination": 1
716
+ },
717
+ "eur": {
718
+ "priority": 2,
719
+ "iso_code": "EUR",
720
+ "name": "Euro",
721
+ "unit": "€",
722
+ "alternate_units": [],
723
+ "subunit": "Cent",
724
+ "subunit_to_unit": 100,
725
+ "unit_first": true,
726
+ "html_entity": "&#x20AC;",
727
+ "separator": ",",
728
+ "delimiter": ".",
729
+ "iso_numeric": "978",
730
+ "smallest_denomination": 1
731
+ },
732
+ "fjd": {
733
+ "priority": 100,
734
+ "iso_code": "FJD",
735
+ "name": "Fijian Dollar",
736
+ "unit": "$",
737
+ "disambiguate_unit": "FJ$",
738
+ "alternate_units": ["FJ$"],
739
+ "subunit": "Cent",
740
+ "subunit_to_unit": 100,
741
+ "unit_first": false,
742
+ "format": "%n %u",
743
+ "html_entity": "$",
744
+ "separator": ".",
745
+ "delimiter": ",",
746
+ "iso_numeric": "242",
747
+ "smallest_denomination": 5
748
+ },
749
+ "fkp": {
750
+ "priority": 100,
751
+ "iso_code": "FKP",
752
+ "name": "Falkland Pound",
753
+ "unit": "£",
754
+ "disambiguate_unit": "FK£",
755
+ "alternate_units": ["FK£"],
756
+ "subunit": "Penny",
757
+ "subunit_to_unit": 100,
758
+ "unit_first": false,
759
+ "format": "%n %u",
760
+ "html_entity": "&#x00A3;",
761
+ "separator": ".",
762
+ "delimiter": ",",
763
+ "iso_numeric": "238",
764
+ "smallest_denomination": 1
765
+ },
766
+ "gbp": {
767
+ "priority": 3,
768
+ "iso_code": "GBP",
769
+ "name": "British Pound",
770
+ "unit": "£",
771
+ "alternate_units": [],
772
+ "subunit": "Penny",
773
+ "subunit_to_unit": 100,
774
+ "unit_first": true,
775
+ "html_entity": "&#x00A3;",
776
+ "separator": ".",
777
+ "delimiter": ",",
778
+ "iso_numeric": "826",
779
+ "smallest_denomination": 1
780
+ },
781
+ "gel": {
782
+ "priority": 100,
783
+ "iso_code": "GEL",
784
+ "name": "Georgian Lari",
785
+ "unit": "ლ",
786
+ "alternate_units": ["lari"],
787
+ "subunit": "Tetri",
788
+ "subunit_to_unit": 100,
789
+ "unit_first": false,
790
+ "format": "%n %u",
791
+ "html_entity": "",
792
+ "separator": ".",
793
+ "delimiter": ",",
794
+ "iso_numeric": "981",
795
+ "smallest_denomination": 1
796
+ },
797
+ "ghs": {
798
+ "priority": 100,
799
+ "iso_code": "GHS",
800
+ "name": "Ghanaian Cedi",
801
+ "unit": "₵",
802
+ "alternate_units": ["GH¢", "GH₵"],
803
+ "subunit": "Pesewa",
804
+ "subunit_to_unit": 100,
805
+ "unit_first": true,
806
+ "html_entity": "&#x20B5;",
807
+ "separator": ".",
808
+ "delimiter": ",",
809
+ "iso_numeric": "936",
810
+ "smallest_denomination": 1
811
+ },
812
+ "gip": {
813
+ "priority": 100,
814
+ "iso_code": "GIP",
815
+ "name": "Gibraltar Pound",
816
+ "unit": "£",
817
+ "disambiguate_unit": "GIP",
818
+ "alternate_units": [],
819
+ "subunit": "Penny",
820
+ "subunit_to_unit": 100,
821
+ "unit_first": true,
822
+ "html_entity": "&#x00A3;",
823
+ "separator": ".",
824
+ "delimiter": ",",
825
+ "iso_numeric": "292",
826
+ "smallest_denomination": 1
827
+ },
828
+ "gmd": {
829
+ "priority": 100,
830
+ "iso_code": "GMD",
831
+ "name": "Gambian Dalasi",
832
+ "unit": "D",
833
+ "alternate_units": [],
834
+ "subunit": "Butut",
835
+ "subunit_to_unit": 100,
836
+ "unit_first": false,
837
+ "format": "%n %u",
838
+ "html_entity": "",
839
+ "separator": ".",
840
+ "delimiter": ",",
841
+ "iso_numeric": "270",
842
+ "smallest_denomination": 1
843
+ },
844
+ "gnf": {
845
+ "priority": 100,
846
+ "iso_code": "GNF",
847
+ "name": "Guinean Franc",
848
+ "unit": "Fr",
849
+ "disambiguate_unit": "FG",
850
+ "alternate_units": ["FG", "GFr"],
851
+ "subunit": "Centime",
852
+ "subunit_to_unit": 1,
853
+ "unit_first": false,
854
+ "format": "%n %u",
855
+ "html_entity": "",
856
+ "separator": ".",
857
+ "delimiter": ",",
858
+ "iso_numeric": "324",
859
+ "smallest_denomination": 100
860
+ },
861
+ "gtq": {
862
+ "priority": 100,
863
+ "iso_code": "GTQ",
864
+ "name": "Guatemalan Quetzal",
865
+ "unit": "Q",
866
+ "alternate_units": [],
867
+ "subunit": "Centavo",
868
+ "subunit_to_unit": 100,
869
+ "unit_first": true,
870
+ "html_entity": "",
871
+ "separator": ".",
872
+ "delimiter": ",",
873
+ "iso_numeric": "320",
874
+ "smallest_denomination": 1
875
+ },
876
+ "gyd": {
877
+ "priority": 100,
878
+ "iso_code": "GYD",
879
+ "name": "Guyanese Dollar",
880
+ "unit": "$",
881
+ "disambiguate_unit": "G$",
882
+ "alternate_units": ["G$"],
883
+ "subunit": "Cent",
884
+ "subunit_to_unit": 100,
885
+ "unit_first": false,
886
+ "format": "%n %u",
887
+ "html_entity": "$",
888
+ "separator": ".",
889
+ "delimiter": ",",
890
+ "iso_numeric": "328",
891
+ "smallest_denomination": 100
892
+ },
893
+ "hkd": {
894
+ "priority": 100,
895
+ "iso_code": "HKD",
896
+ "name": "Hong Kong Dollar",
897
+ "unit": "$",
898
+ "disambiguate_unit": "HK$",
899
+ "alternate_units": ["HK$"],
900
+ "subunit": "Cent",
901
+ "subunit_to_unit": 100,
902
+ "unit_first": true,
903
+ "html_entity": "$",
904
+ "separator": ".",
905
+ "delimiter": ",",
906
+ "iso_numeric": "344",
907
+ "smallest_denomination": 10
908
+ },
909
+ "hnl": {
910
+ "priority": 100,
911
+ "iso_code": "HNL",
912
+ "name": "Honduran Lempira",
913
+ "unit": "L",
914
+ "disambiguate_unit": "HNL",
915
+ "alternate_units": [],
916
+ "subunit": "Centavo",
917
+ "subunit_to_unit": 100,
918
+ "unit_first": true,
919
+ "html_entity": "",
920
+ "separator": ".",
921
+ "delimiter": ",",
922
+ "iso_numeric": "340",
923
+ "smallest_denomination": 5
924
+ },
925
+ "hrk": {
926
+ "priority": 100,
927
+ "iso_code": "HRK",
928
+ "name": "Croatian Kuna",
929
+ "unit": "kn",
930
+ "alternate_units": [],
931
+ "subunit": "Lipa",
932
+ "subunit_to_unit": 100,
933
+ "unit_first": false,
934
+ "format": "%n %u",
935
+ "html_entity": "",
936
+ "separator": ",",
937
+ "delimiter": ".",
938
+ "iso_numeric": "191",
939
+ "smallest_denomination": 1
940
+ },
941
+ "htg": {
942
+ "priority": 100,
943
+ "iso_code": "HTG",
944
+ "name": "Haitian Gourde",
945
+ "unit": "G",
946
+ "alternate_units": [],
947
+ "subunit": "Centime",
948
+ "subunit_to_unit": 100,
949
+ "unit_first": false,
950
+ "format": "%n %u",
951
+ "html_entity": "",
952
+ "separator": ".",
953
+ "delimiter": ",",
954
+ "iso_numeric": "332",
955
+ "smallest_denomination": 5
956
+ },
957
+ "huf": {
958
+ "priority": 100,
959
+ "iso_code": "HUF",
960
+ "name": "Hungarian Forint",
961
+ "unit": "Ft",
962
+ "alternate_units": [],
963
+ "subunit": "",
964
+ "subunit_to_unit": 1,
965
+ "unit_first": false,
966
+ "format": "%n %u",
967
+ "html_entity": "",
968
+ "separator": ",",
969
+ "delimiter": " ",
970
+ "iso_numeric": "348",
971
+ "smallest_denomination": 5
972
+ },
973
+ "idr": {
974
+ "priority": 100,
975
+ "iso_code": "IDR",
976
+ "name": "Indonesian Rupiah",
977
+ "unit": "Rp",
978
+ "alternate_units": [],
979
+ "subunit": "Sen",
980
+ "subunit_to_unit": 100,
981
+ "unit_first": true,
982
+ "html_entity": "",
983
+ "separator": ",",
984
+ "delimiter": ".",
985
+ "iso_numeric": "360",
986
+ "smallest_denomination": 5000
987
+ },
988
+ "ils": {
989
+ "priority": 100,
990
+ "iso_code": "ILS",
991
+ "name": "Israeli New Sheqel",
992
+ "unit": "₪",
993
+ "alternate_units": ["ש״ח", "NIS"],
994
+ "subunit": "Agora",
995
+ "subunit_to_unit": 100,
996
+ "unit_first": true,
997
+ "html_entity": "&#x20AA;",
998
+ "separator": ".",
999
+ "delimiter": ",",
1000
+ "iso_numeric": "376",
1001
+ "smallest_denomination": 10
1002
+ },
1003
+ "inr": {
1004
+ "priority": 100,
1005
+ "iso_code": "INR",
1006
+ "name": "Indian Rupee",
1007
+ "unit": "₹",
1008
+ "alternate_units": ["Rs", "৳", "૱", "௹", "रु", "₨"],
1009
+ "subunit": "Paisa",
1010
+ "subunit_to_unit": 100,
1011
+ "unit_first": true,
1012
+ "html_entity": "&#x20b9;",
1013
+ "separator": ".",
1014
+ "delimiter": ",",
1015
+ "iso_numeric": "356",
1016
+ "smallest_denomination": 50
1017
+ },
1018
+ "iqd": {
1019
+ "priority": 100,
1020
+ "iso_code": "IQD",
1021
+ "name": "Iraqi Dinar",
1022
+ "unit": "ع.د",
1023
+ "alternate_units": [],
1024
+ "subunit": "Fils",
1025
+ "subunit_to_unit": 1000,
1026
+ "unit_first": false,
1027
+ "format": "%n %u",
1028
+ "html_entity": "",
1029
+ "separator": ".",
1030
+ "delimiter": ",",
1031
+ "iso_numeric": "368",
1032
+ "smallest_denomination": 50000
1033
+ },
1034
+ "irr": {
1035
+ "priority": 100,
1036
+ "iso_code": "IRR",
1037
+ "name": "Iranian Rial",
1038
+ "unit": "﷼",
1039
+ "alternate_units": [],
1040
+ "subunit": null,
1041
+ "subunit_to_unit": 100,
1042
+ "unit_first": true,
1043
+ "html_entity": "&#xFDFC;",
1044
+ "separator": ".",
1045
+ "delimiter": ",",
1046
+ "iso_numeric": "364",
1047
+ "smallest_denomination": 5000
1048
+ },
1049
+ "isk": {
1050
+ "priority": 100,
1051
+ "iso_code": "ISK",
1052
+ "name": "Icelandic Króna",
1053
+ "unit": "kr.",
1054
+ "alternate_units": ["Íkr"],
1055
+ "subunit": null,
1056
+ "subunit_to_unit": 1,
1057
+ "unit_first": false,
1058
+ "format": "%n %u",
1059
+ "html_entity": "",
1060
+ "separator": ",",
1061
+ "delimiter": ".",
1062
+ "iso_numeric": "352",
1063
+ "smallest_denomination": 1
1064
+ },
1065
+ "jmd": {
1066
+ "priority": 100,
1067
+ "iso_code": "JMD",
1068
+ "name": "Jamaican Dollar",
1069
+ "unit": "$",
1070
+ "disambiguate_unit": "J$",
1071
+ "alternate_units": ["J$"],
1072
+ "subunit": "Cent",
1073
+ "subunit_to_unit": 100,
1074
+ "unit_first": true,
1075
+ "html_entity": "$",
1076
+ "separator": ".",
1077
+ "delimiter": ",",
1078
+ "iso_numeric": "388",
1079
+ "smallest_denomination": 1
1080
+ },
1081
+ "jod": {
1082
+ "priority": 100,
1083
+ "iso_code": "JOD",
1084
+ "name": "Jordanian Dinar",
1085
+ "unit": "د.ا",
1086
+ "alternate_units": ["JD"],
1087
+ "subunit": "Fils",
1088
+ "subunit_to_unit": 1000,
1089
+ "unit_first": true,
1090
+ "html_entity": "",
1091
+ "separator": ".",
1092
+ "delimiter": ",",
1093
+ "iso_numeric": "400",
1094
+ "smallest_denomination": 5
1095
+ },
1096
+ "jpy": {
1097
+ "priority": 6,
1098
+ "iso_code": "JPY",
1099
+ "name": "Japanese Yen",
1100
+ "unit": "¥",
1101
+ "alternate_units": ["円", "圓"],
1102
+ "subunit": null,
1103
+ "subunit_to_unit": 1,
1104
+ "unit_first": true,
1105
+ "html_entity": "&#x00A5;",
1106
+ "separator": ".",
1107
+ "delimiter": ",",
1108
+ "iso_numeric": "392",
1109
+ "smallest_denomination": 1
1110
+ },
1111
+ "kes": {
1112
+ "priority": 100,
1113
+ "iso_code": "KES",
1114
+ "name": "Kenyan Shilling",
1115
+ "unit": "KSh",
1116
+ "alternate_units": ["Sh"],
1117
+ "subunit": "Cent",
1118
+ "subunit_to_unit": 100,
1119
+ "unit_first": true,
1120
+ "html_entity": "",
1121
+ "separator": ".",
1122
+ "delimiter": ",",
1123
+ "iso_numeric": "404",
1124
+ "smallest_denomination": 50
1125
+ },
1126
+ "kgs": {
1127
+ "priority": 100,
1128
+ "iso_code": "KGS",
1129
+ "name": "Kyrgyzstani Som",
1130
+ "unit": "som",
1131
+ "alternate_units": ["сом"],
1132
+ "subunit": "Tyiyn",
1133
+ "subunit_to_unit": 100,
1134
+ "unit_first": false,
1135
+ "format": "%n %u",
1136
+ "html_entity": "",
1137
+ "separator": ".",
1138
+ "delimiter": ",",
1139
+ "iso_numeric": "417",
1140
+ "smallest_denomination": 1
1141
+ },
1142
+ "khr": {
1143
+ "priority": 100,
1144
+ "iso_code": "KHR",
1145
+ "name": "Cambodian Riel",
1146
+ "unit": "៛",
1147
+ "alternate_units": [],
1148
+ "subunit": "Sen",
1149
+ "subunit_to_unit": 100,
1150
+ "unit_first": false,
1151
+ "format": "%n %u",
1152
+ "html_entity": "&#x17DB;",
1153
+ "separator": ".",
1154
+ "delimiter": ",",
1155
+ "iso_numeric": "116",
1156
+ "smallest_denomination": 5000
1157
+ },
1158
+ "kmf": {
1159
+ "priority": 100,
1160
+ "iso_code": "KMF",
1161
+ "name": "Comorian Franc",
1162
+ "unit": "Fr",
1163
+ "disambiguate_unit": "CF",
1164
+ "alternate_units": ["CF"],
1165
+ "subunit": "Centime",
1166
+ "subunit_to_unit": 1,
1167
+ "unit_first": false,
1168
+ "format": "%n %u",
1169
+ "html_entity": "",
1170
+ "separator": ".",
1171
+ "delimiter": ",",
1172
+ "iso_numeric": "174",
1173
+ "smallest_denomination": 100
1174
+ },
1175
+ "kpw": {
1176
+ "priority": 100,
1177
+ "iso_code": "KPW",
1178
+ "name": "North Korean Won",
1179
+ "unit": "₩",
1180
+ "alternate_units": [],
1181
+ "subunit": "Chŏn",
1182
+ "subunit_to_unit": 100,
1183
+ "unit_first": false,
1184
+ "format": "%n %u",
1185
+ "html_entity": "&#x20A9;",
1186
+ "separator": ".",
1187
+ "delimiter": ",",
1188
+ "iso_numeric": "408",
1189
+ "smallest_denomination": 1
1190
+ },
1191
+ "krw": {
1192
+ "priority": 100,
1193
+ "iso_code": "KRW",
1194
+ "name": "South Korean Won",
1195
+ "unit": "₩",
1196
+ "subunit": null,
1197
+ "subunit_to_unit": 1,
1198
+ "alternate_units": [],
1199
+ "unit_first": true,
1200
+ "html_entity": "&#x20A9;",
1201
+ "separator": ".",
1202
+ "delimiter": ",",
1203
+ "iso_numeric": "410",
1204
+ "smallest_denomination": 1
1205
+ },
1206
+ "kwd": {
1207
+ "priority": 100,
1208
+ "iso_code": "KWD",
1209
+ "name": "Kuwaiti Dinar",
1210
+ "unit": "د.ك",
1211
+ "alternate_units": ["K.D."],
1212
+ "subunit": "Fils",
1213
+ "subunit_to_unit": 1000,
1214
+ "unit_first": true,
1215
+ "html_entity": "",
1216
+ "separator": ".",
1217
+ "delimiter": ",",
1218
+ "iso_numeric": "414",
1219
+ "smallest_denomination": 5
1220
+ },
1221
+ "kyd": {
1222
+ "priority": 100,
1223
+ "iso_code": "KYD",
1224
+ "name": "Cayman Islands Dollar",
1225
+ "unit": "$",
1226
+ "disambiguate_unit": "CI$",
1227
+ "alternate_units": ["CI$"],
1228
+ "subunit": "Cent",
1229
+ "subunit_to_unit": 100,
1230
+ "unit_first": true,
1231
+ "html_entity": "$",
1232
+ "separator": ".",
1233
+ "delimiter": ",",
1234
+ "iso_numeric": "136",
1235
+ "smallest_denomination": 1
1236
+ },
1237
+ "kzt": {
1238
+ "priority": 100,
1239
+ "iso_code": "KZT",
1240
+ "name": "Kazakhstani Tenge",
1241
+ "unit": "₸",
1242
+ "alternate_units": [],
1243
+ "subunit": "Tiyn",
1244
+ "subunit_to_unit": 100,
1245
+ "unit_first": false,
1246
+ "format": "%n %u",
1247
+ "html_entity": "",
1248
+ "separator": ".",
1249
+ "delimiter": ",",
1250
+ "iso_numeric": "398",
1251
+ "smallest_denomination": 100
1252
+ },
1253
+ "lak": {
1254
+ "priority": 100,
1255
+ "iso_code": "LAK",
1256
+ "name": "Lao Kip",
1257
+ "unit": "₭",
1258
+ "alternate_units": ["₭N"],
1259
+ "subunit": "Att",
1260
+ "subunit_to_unit": 100,
1261
+ "unit_first": false,
1262
+ "format": "%n %u",
1263
+ "html_entity": "&#x20AD;",
1264
+ "separator": ".",
1265
+ "delimiter": ",",
1266
+ "iso_numeric": "418",
1267
+ "smallest_denomination": 10
1268
+ },
1269
+ "lbp": {
1270
+ "priority": 100,
1271
+ "iso_code": "LBP",
1272
+ "name": "Lebanese Pound",
1273
+ "unit": "ل.ل",
1274
+ "alternate_units": ["£", "L£"],
1275
+ "subunit": "Piastre",
1276
+ "subunit_to_unit": 100,
1277
+ "unit_first": true,
1278
+ "html_entity": "&#x00A3;",
1279
+ "separator": ".",
1280
+ "delimiter": ",",
1281
+ "iso_numeric": "422",
1282
+ "smallest_denomination": 25000
1283
+ },
1284
+ "lkr": {
1285
+ "priority": 100,
1286
+ "iso_code": "LKR",
1287
+ "name": "Sri Lankan Rupee",
1288
+ "unit": "₨",
1289
+ "disambiguate_unit": "SLRs",
1290
+ "alternate_units": ["රු", "ரூ", "SLRs", "/-"],
1291
+ "subunit": "Cent",
1292
+ "subunit_to_unit": 100,
1293
+ "unit_first": false,
1294
+ "format": "%n %u",
1295
+ "html_entity": "&#8360;",
1296
+ "separator": ".",
1297
+ "delimiter": ",",
1298
+ "iso_numeric": "144",
1299
+ "smallest_denomination": 100
1300
+ },
1301
+ "lrd": {
1302
+ "priority": 100,
1303
+ "iso_code": "LRD",
1304
+ "name": "Liberian Dollar",
1305
+ "unit": "$",
1306
+ "disambiguate_unit": "L$",
1307
+ "alternate_units": ["L$"],
1308
+ "subunit": "Cent",
1309
+ "subunit_to_unit": 100,
1310
+ "unit_first": false,
1311
+ "format": "%n %u",
1312
+ "html_entity": "$",
1313
+ "separator": ".",
1314
+ "delimiter": ",",
1315
+ "iso_numeric": "430",
1316
+ "smallest_denomination": 5
1317
+ },
1318
+ "lsl": {
1319
+ "priority": 100,
1320
+ "iso_code": "LSL",
1321
+ "name": "Lesotho Loti",
1322
+ "unit": "L",
1323
+ "disambiguate_unit": "M",
1324
+ "alternate_units": ["M"],
1325
+ "subunit": "Sente",
1326
+ "subunit_to_unit": 100,
1327
+ "unit_first": false,
1328
+ "format": "%n %u",
1329
+ "html_entity": "",
1330
+ "separator": ".",
1331
+ "delimiter": ",",
1332
+ "iso_numeric": "426",
1333
+ "smallest_denomination": 1
1334
+ },
1335
+ "lyd": {
1336
+ "priority": 100,
1337
+ "iso_code": "LYD",
1338
+ "name": "Libyan Dinar",
1339
+ "unit": "ل.د",
1340
+ "alternate_units": ["LD"],
1341
+ "subunit": "Dirham",
1342
+ "subunit_to_unit": 1000,
1343
+ "unit_first": false,
1344
+ "format": "%n %u",
1345
+ "html_entity": "",
1346
+ "separator": ".",
1347
+ "delimiter": ",",
1348
+ "iso_numeric": "434",
1349
+ "smallest_denomination": 50
1350
+ },
1351
+ "mad": {
1352
+ "priority": 100,
1353
+ "iso_code": "MAD",
1354
+ "name": "Moroccan Dirham",
1355
+ "unit": "د.م.",
1356
+ "alternate_units": [],
1357
+ "subunit": "Centime",
1358
+ "subunit_to_unit": 100,
1359
+ "unit_first": false,
1360
+ "format": "%n %u",
1361
+ "html_entity": "",
1362
+ "separator": ".",
1363
+ "delimiter": ",",
1364
+ "iso_numeric": "504",
1365
+ "smallest_denomination": 1
1366
+ },
1367
+ "mdl": {
1368
+ "priority": 100,
1369
+ "iso_code": "MDL",
1370
+ "name": "Moldovan Leu",
1371
+ "unit": "L",
1372
+ "alternate_units": ["lei"],
1373
+ "subunit": "Ban",
1374
+ "subunit_to_unit": 100,
1375
+ "unit_first": false,
1376
+ "format": "%n %u",
1377
+ "html_entity": "",
1378
+ "separator": ".",
1379
+ "delimiter": ",",
1380
+ "iso_numeric": "498",
1381
+ "smallest_denomination": 1
1382
+ },
1383
+ "mga": {
1384
+ "priority": 100,
1385
+ "iso_code": "MGA",
1386
+ "name": "Malagasy Ariary",
1387
+ "unit": "Ar",
1388
+ "alternate_units": [],
1389
+ "subunit": "Iraimbilanja",
1390
+ "subunit_to_unit": 5,
1391
+ "unit_first": true,
1392
+ "html_entity": "",
1393
+ "separator": ".",
1394
+ "delimiter": ",",
1395
+ "iso_numeric": "969",
1396
+ "smallest_denomination": 1
1397
+ },
1398
+ "mkd": {
1399
+ "priority": 100,
1400
+ "iso_code": "MKD",
1401
+ "name": "Macedonian Denar",
1402
+ "unit": "ден",
1403
+ "alternate_units": [],
1404
+ "subunit": "Deni",
1405
+ "subunit_to_unit": 100,
1406
+ "unit_first": false,
1407
+ "format": "%n %u",
1408
+ "html_entity": "",
1409
+ "separator": ".",
1410
+ "delimiter": ",",
1411
+ "iso_numeric": "807",
1412
+ "smallest_denomination": 100
1413
+ },
1414
+ "mmk": {
1415
+ "priority": 100,
1416
+ "iso_code": "MMK",
1417
+ "name": "Myanmar Kyat",
1418
+ "unit": "K",
1419
+ "disambiguate_unit": "MMK",
1420
+ "alternate_units": [],
1421
+ "subunit": "Pya",
1422
+ "subunit_to_unit": 100,
1423
+ "unit_first": false,
1424
+ "format": "%n %u",
1425
+ "html_entity": "",
1426
+ "separator": ".",
1427
+ "delimiter": ",",
1428
+ "iso_numeric": "104",
1429
+ "smallest_denomination": 50
1430
+ },
1431
+ "mnt": {
1432
+ "priority": 100,
1433
+ "iso_code": "MNT",
1434
+ "name": "Mongolian Tögrög",
1435
+ "unit": "₮",
1436
+ "alternate_units": [],
1437
+ "subunit": "Möngö",
1438
+ "subunit_to_unit": 100,
1439
+ "unit_first": false,
1440
+ "format": "%n %u",
1441
+ "html_entity": "&#x20AE;",
1442
+ "separator": ".",
1443
+ "delimiter": ",",
1444
+ "iso_numeric": "496",
1445
+ "smallest_denomination": 2000
1446
+ },
1447
+ "mop": {
1448
+ "priority": 100,
1449
+ "iso_code": "MOP",
1450
+ "name": "Macanese Pataca",
1451
+ "unit": "P",
1452
+ "alternate_units": ["MOP$"],
1453
+ "subunit": "Avo",
1454
+ "subunit_to_unit": 100,
1455
+ "unit_first": false,
1456
+ "format": "%n %u",
1457
+ "html_entity": "",
1458
+ "separator": ".",
1459
+ "delimiter": ",",
1460
+ "iso_numeric": "446",
1461
+ "smallest_denomination": 10
1462
+ },
1463
+ "mru": {
1464
+ "priority": 100,
1465
+ "iso_code": "MRU",
1466
+ "name": "Mauritanian Ouguiya",
1467
+ "unit": "UM",
1468
+ "alternate_units": [],
1469
+ "subunit": "Khoums",
1470
+ "subunit_to_unit": 5,
1471
+ "unit_first": false,
1472
+ "format": "%n %u",
1473
+ "html_entity": "",
1474
+ "separator": ".",
1475
+ "delimiter": ",",
1476
+ "iso_numeric": "929",
1477
+ "smallest_denomination": 1
1478
+ },
1479
+ "mur": {
1480
+ "priority": 100,
1481
+ "iso_code": "MUR",
1482
+ "name": "Mauritian Rupee",
1483
+ "unit": "₨",
1484
+ "alternate_units": [],
1485
+ "subunit": "Cent",
1486
+ "subunit_to_unit": 100,
1487
+ "unit_first": true,
1488
+ "html_entity": "&#x20A8;",
1489
+ "separator": ".",
1490
+ "delimiter": ",",
1491
+ "iso_numeric": "480",
1492
+ "smallest_denomination": 100
1493
+ },
1494
+ "mvr": {
1495
+ "priority": 100,
1496
+ "iso_code": "MVR",
1497
+ "name": "Maldivian Rufiyaa",
1498
+ "unit": "MVR",
1499
+ "alternate_units": ["MRF", "Rf", "/-", "ރ"],
1500
+ "subunit": "Laari",
1501
+ "subunit_to_unit": 100,
1502
+ "unit_first": false,
1503
+ "format": "%n %u",
1504
+ "html_entity": "",
1505
+ "separator": ".",
1506
+ "delimiter": ",",
1507
+ "iso_numeric": "462",
1508
+ "smallest_denomination": 1
1509
+ },
1510
+ "mwk": {
1511
+ "priority": 100,
1512
+ "iso_code": "MWK",
1513
+ "name": "Malawian Kwacha",
1514
+ "unit": "MK",
1515
+ "alternate_units": [],
1516
+ "subunit": "Tambala",
1517
+ "subunit_to_unit": 100,
1518
+ "unit_first": false,
1519
+ "format": "%n %u",
1520
+ "html_entity": "",
1521
+ "separator": ".",
1522
+ "delimiter": ",",
1523
+ "iso_numeric": "454",
1524
+ "smallest_denomination": 1
1525
+ },
1526
+ "mxn": {
1527
+ "priority": 100,
1528
+ "iso_code": "MXN",
1529
+ "name": "Mexican Peso",
1530
+ "unit": "$",
1531
+ "disambiguate_unit": "MEX$",
1532
+ "alternate_units": ["MEX$"],
1533
+ "subunit": "Centavo",
1534
+ "subunit_to_unit": 100,
1535
+ "unit_first": true,
1536
+ "html_entity": "$",
1537
+ "separator": ".",
1538
+ "delimiter": ",",
1539
+ "iso_numeric": "484",
1540
+ "smallest_denomination": 5
1541
+ },
1542
+ "myr": {
1543
+ "priority": 100,
1544
+ "iso_code": "MYR",
1545
+ "name": "Malaysian Ringgit",
1546
+ "unit": "RM",
1547
+ "alternate_units": [],
1548
+ "subunit": "Sen",
1549
+ "subunit_to_unit": 100,
1550
+ "unit_first": true,
1551
+ "html_entity": "",
1552
+ "separator": ".",
1553
+ "delimiter": ",",
1554
+ "iso_numeric": "458",
1555
+ "smallest_denomination": 5
1556
+ },
1557
+ "mzn": {
1558
+ "priority": 100,
1559
+ "iso_code": "MZN",
1560
+ "name": "Mozambican Metical",
1561
+ "unit": "MTn",
1562
+ "alternate_units": ["MZN"],
1563
+ "subunit": "Centavo",
1564
+ "subunit_to_unit": 100,
1565
+ "unit_first": true,
1566
+ "html_entity": "",
1567
+ "separator": ",",
1568
+ "delimiter": ".",
1569
+ "iso_numeric": "943",
1570
+ "smallest_denomination": 1
1571
+ },
1572
+ "nad": {
1573
+ "priority": 100,
1574
+ "iso_code": "NAD",
1575
+ "name": "Namibian Dollar",
1576
+ "unit": "$",
1577
+ "disambiguate_unit": "N$",
1578
+ "alternate_units": ["N$"],
1579
+ "subunit": "Cent",
1580
+ "subunit_to_unit": 100,
1581
+ "unit_first": false,
1582
+ "format": "%n %u",
1583
+ "html_entity": "$",
1584
+ "separator": ".",
1585
+ "delimiter": ",",
1586
+ "iso_numeric": "516",
1587
+ "smallest_denomination": 5
1588
+ },
1589
+ "ngn": {
1590
+ "priority": 100,
1591
+ "iso_code": "NGN",
1592
+ "name": "Nigerian Naira",
1593
+ "unit": "₦",
1594
+ "alternate_units": [],
1595
+ "subunit": "Kobo",
1596
+ "subunit_to_unit": 100,
1597
+ "unit_first": true,
1598
+ "html_entity": "&#x20A6;",
1599
+ "separator": ".",
1600
+ "delimiter": ",",
1601
+ "iso_numeric": "566",
1602
+ "smallest_denomination": 50
1603
+ },
1604
+ "nio": {
1605
+ "priority": 100,
1606
+ "iso_code": "NIO",
1607
+ "name": "Nicaraguan Córdoba",
1608
+ "unit": "C$",
1609
+ "disambiguate_unit": "NIO$",
1610
+ "alternate_units": [],
1611
+ "subunit": "Centavo",
1612
+ "subunit_to_unit": 100,
1613
+ "unit_first": true,
1614
+ "html_entity": "",
1615
+ "separator": ".",
1616
+ "delimiter": ",",
1617
+ "iso_numeric": "558",
1618
+ "smallest_denomination": 5
1619
+ },
1620
+ "nok": {
1621
+ "priority": 100,
1622
+ "iso_code": "NOK",
1623
+ "name": "Norwegian Krone",
1624
+ "unit": "kr",
1625
+ "disambiguate_unit": "NOK",
1626
+ "alternate_units": [",-"],
1627
+ "subunit": "Øre",
1628
+ "subunit_to_unit": 100,
1629
+ "unit_first": false,
1630
+ "format": "%n %u",
1631
+ "html_entity": "kr",
1632
+ "separator": ",",
1633
+ "delimiter": ".",
1634
+ "iso_numeric": "578",
1635
+ "smallest_denomination": 100
1636
+ },
1637
+ "npr": {
1638
+ "priority": 100,
1639
+ "iso_code": "NPR",
1640
+ "name": "Nepalese Rupee",
1641
+ "unit": "Rs.",
1642
+ "disambiguate_unit": "NPR",
1643
+ "alternate_units": ["Rs", "रू", "₨"],
1644
+ "subunit": "Paisa",
1645
+ "subunit_to_unit": 100,
1646
+ "unit_first": true,
1647
+ "html_entity": "&#x20A8;",
1648
+ "separator": ".",
1649
+ "delimiter": ",",
1650
+ "iso_numeric": "524",
1651
+ "smallest_denomination": 1
1652
+ },
1653
+ "nzd": {
1654
+ "priority": 100,
1655
+ "iso_code": "NZD",
1656
+ "name": "New Zealand Dollar",
1657
+ "unit": "$",
1658
+ "disambiguate_unit": "NZ$",
1659
+ "alternate_units": ["NZ$"],
1660
+ "subunit": "Cent",
1661
+ "subunit_to_unit": 100,
1662
+ "unit_first": true,
1663
+ "html_entity": "$",
1664
+ "separator": ".",
1665
+ "delimiter": ",",
1666
+ "iso_numeric": "554",
1667
+ "smallest_denomination": 10
1668
+ },
1669
+ "omr": {
1670
+ "priority": 100,
1671
+ "iso_code": "OMR",
1672
+ "name": "Omani Rial",
1673
+ "unit": "ر.ع.",
1674
+ "alternate_units": [],
1675
+ "subunit": "Baisa",
1676
+ "subunit_to_unit": 1000,
1677
+ "unit_first": true,
1678
+ "html_entity": "&#xFDFC;",
1679
+ "separator": ".",
1680
+ "delimiter": ",",
1681
+ "iso_numeric": "512",
1682
+ "smallest_denomination": 5
1683
+ },
1684
+ "pab": {
1685
+ "priority": 100,
1686
+ "iso_code": "PAB",
1687
+ "name": "Panamanian Balboa",
1688
+ "unit": "B/.",
1689
+ "alternate_units": [],
1690
+ "subunit": "Centésimo",
1691
+ "subunit_to_unit": 100,
1692
+ "unit_first": true,
1693
+ "html_entity": "",
1694
+ "separator": ".",
1695
+ "delimiter": ",",
1696
+ "iso_numeric": "590",
1697
+ "smallest_denomination": 1
1698
+ },
1699
+ "pen": {
1700
+ "priority": 100,
1701
+ "iso_code": "PEN",
1702
+ "name": "Peruvian Sol",
1703
+ "unit": "S/",
1704
+ "alternate_units": [],
1705
+ "subunit": "Céntimo",
1706
+ "subunit_to_unit": 100,
1707
+ "unit_first": true,
1708
+ "html_entity": "S/",
1709
+ "separator": ".",
1710
+ "delimiter": ",",
1711
+ "iso_numeric": "604",
1712
+ "smallest_denomination": 1
1713
+ },
1714
+ "pgk": {
1715
+ "priority": 100,
1716
+ "iso_code": "PGK",
1717
+ "name": "Papua New Guinean Kina",
1718
+ "unit": "K",
1719
+ "disambiguate_unit": "PGK",
1720
+ "alternate_units": [],
1721
+ "subunit": "Toea",
1722
+ "subunit_to_unit": 100,
1723
+ "unit_first": false,
1724
+ "format": "%n %u",
1725
+ "html_entity": "",
1726
+ "separator": ".",
1727
+ "delimiter": ",",
1728
+ "iso_numeric": "598",
1729
+ "smallest_denomination": 5
1730
+ },
1731
+ "php": {
1732
+ "priority": 100,
1733
+ "iso_code": "PHP",
1734
+ "name": "Philippine Peso",
1735
+ "unit": "₱",
1736
+ "alternate_units": ["PHP", "PhP", "P"],
1737
+ "subunit": "Centavo",
1738
+ "subunit_to_unit": 100,
1739
+ "unit_first": true,
1740
+ "html_entity": "&#x20B1;",
1741
+ "separator": ".",
1742
+ "delimiter": ",",
1743
+ "iso_numeric": "608",
1744
+ "smallest_denomination": 1
1745
+ },
1746
+ "pkr": {
1747
+ "priority": 100,
1748
+ "iso_code": "PKR",
1749
+ "name": "Pakistani Rupee",
1750
+ "unit": "₨",
1751
+ "disambiguate_unit": "PKR",
1752
+ "alternate_units": ["Rs"],
1753
+ "subunit": "Paisa",
1754
+ "subunit_to_unit": 100,
1755
+ "unit_first": true,
1756
+ "html_entity": "&#x20A8;",
1757
+ "separator": ".",
1758
+ "delimiter": ",",
1759
+ "iso_numeric": "586",
1760
+ "smallest_denomination": 100
1761
+ },
1762
+ "pln": {
1763
+ "priority": 100,
1764
+ "iso_code": "PLN",
1765
+ "name": "Polish Złoty",
1766
+ "unit": "zł",
1767
+ "alternate_units": [],
1768
+ "subunit": "Grosz",
1769
+ "subunit_to_unit": 100,
1770
+ "unit_first": false,
1771
+ "format": "%n %u",
1772
+ "html_entity": "z&#322;",
1773
+ "separator": ",",
1774
+ "delimiter": " ",
1775
+ "iso_numeric": "985",
1776
+ "smallest_denomination": 1
1777
+ },
1778
+ "pyg": {
1779
+ "priority": 100,
1780
+ "iso_code": "PYG",
1781
+ "name": "Paraguayan Guaraní",
1782
+ "unit": "₲",
1783
+ "alternate_units": [],
1784
+ "subunit": "Céntimo",
1785
+ "subunit_to_unit": 1,
1786
+ "unit_first": true,
1787
+ "html_entity": "&#x20B2;",
1788
+ "separator": ".",
1789
+ "delimiter": ",",
1790
+ "iso_numeric": "600",
1791
+ "smallest_denomination": 5000
1792
+ },
1793
+ "qar": {
1794
+ "priority": 100,
1795
+ "iso_code": "QAR",
1796
+ "name": "Qatari Riyal",
1797
+ "unit": "ر.ق",
1798
+ "alternate_units": ["QR"],
1799
+ "subunit": "Dirham",
1800
+ "subunit_to_unit": 100,
1801
+ "unit_first": false,
1802
+ "format": "%n %u",
1803
+ "html_entity": "&#xFDFC;",
1804
+ "separator": ".",
1805
+ "delimiter": ",",
1806
+ "iso_numeric": "634",
1807
+ "smallest_denomination": 1
1808
+ },
1809
+ "ron": {
1810
+ "priority": 100,
1811
+ "iso_code": "RON",
1812
+ "name": "Romanian Leu",
1813
+ "unit": "Lei",
1814
+ "alternate_units": [],
1815
+ "subunit": "Bani",
1816
+ "subunit_to_unit": 100,
1817
+ "unit_first": false,
1818
+ "format": "%n %u",
1819
+ "html_entity": "",
1820
+ "separator": ",",
1821
+ "delimiter": ".",
1822
+ "iso_numeric": "946",
1823
+ "smallest_denomination": 1
1824
+ },
1825
+ "rsd": {
1826
+ "priority": 100,
1827
+ "iso_code": "RSD",
1828
+ "name": "Serbian Dinar",
1829
+ "unit": "РСД",
1830
+ "alternate_units": ["RSD", "din", "дин"],
1831
+ "subunit": "Para",
1832
+ "subunit_to_unit": 100,
1833
+ "unit_first": true,
1834
+ "html_entity": "",
1835
+ "separator": ".",
1836
+ "delimiter": ",",
1837
+ "iso_numeric": "941",
1838
+ "smallest_denomination": 100
1839
+ },
1840
+ "rub": {
1841
+ "priority": 100,
1842
+ "iso_code": "RUB",
1843
+ "name": "Russian Ruble",
1844
+ "unit": "₽",
1845
+ "alternate_units": ["руб.", "р."],
1846
+ "subunit": "Kopeck",
1847
+ "subunit_to_unit": 100,
1848
+ "unit_first": false,
1849
+ "format": "%n %u",
1850
+ "html_entity": "&#x20BD;",
1851
+ "separator": ",",
1852
+ "delimiter": ".",
1853
+ "iso_numeric": "643",
1854
+ "smallest_denomination": 1
1855
+ },
1856
+ "rwf": {
1857
+ "priority": 100,
1858
+ "iso_code": "RWF",
1859
+ "name": "Rwandan Franc",
1860
+ "unit": "FRw",
1861
+ "alternate_units": ["RF", "R₣"],
1862
+ "subunit": "Centime",
1863
+ "subunit_to_unit": 1,
1864
+ "unit_first": false,
1865
+ "format": "%n %u",
1866
+ "html_entity": "",
1867
+ "separator": ".",
1868
+ "delimiter": ",",
1869
+ "iso_numeric": "646",
1870
+ "smallest_denomination": 100
1871
+ },
1872
+ "sar": {
1873
+ "priority": 100,
1874
+ "iso_code": "SAR",
1875
+ "name": "Saudi Riyal",
1876
+ "unit": "ر.س",
1877
+ "alternate_units": ["SR", "﷼"],
1878
+ "subunit": "Hallallah",
1879
+ "subunit_to_unit": 100,
1880
+ "unit_first": true,
1881
+ "html_entity": "&#xFDFC;",
1882
+ "separator": ".",
1883
+ "delimiter": ",",
1884
+ "iso_numeric": "682",
1885
+ "smallest_denomination": 5
1886
+ },
1887
+ "sbd": {
1888
+ "priority": 100,
1889
+ "iso_code": "SBD",
1890
+ "name": "Solomon Islands Dollar",
1891
+ "unit": "$",
1892
+ "disambiguate_unit": "SI$",
1893
+ "alternate_units": ["SI$"],
1894
+ "subunit": "Cent",
1895
+ "subunit_to_unit": 100,
1896
+ "unit_first": false,
1897
+ "format": "%n %u",
1898
+ "html_entity": "$",
1899
+ "separator": ".",
1900
+ "delimiter": ",",
1901
+ "iso_numeric": "090",
1902
+ "smallest_denomination": 10
1903
+ },
1904
+ "scr": {
1905
+ "priority": 100,
1906
+ "iso_code": "SCR",
1907
+ "name": "Seychellois Rupee",
1908
+ "unit": "₨",
1909
+ "disambiguate_unit": "SRe",
1910
+ "alternate_units": ["SRe", "SR"],
1911
+ "subunit": "Cent",
1912
+ "subunit_to_unit": 100,
1913
+ "unit_first": false,
1914
+ "format": "%n %u",
1915
+ "html_entity": "&#x20A8;",
1916
+ "separator": ".",
1917
+ "delimiter": ",",
1918
+ "iso_numeric": "690",
1919
+ "smallest_denomination": 1
1920
+ },
1921
+ "sdg": {
1922
+ "priority": 100,
1923
+ "iso_code": "SDG",
1924
+ "name": "Sudanese Pound",
1925
+ "unit": "£",
1926
+ "disambiguate_unit": "SDG",
1927
+ "alternate_units": [],
1928
+ "subunit": "Piastre",
1929
+ "subunit_to_unit": 100,
1930
+ "unit_first": true,
1931
+ "html_entity": "",
1932
+ "separator": ".",
1933
+ "delimiter": ",",
1934
+ "iso_numeric": "938",
1935
+ "smallest_denomination": 1
1936
+ },
1937
+ "sek": {
1938
+ "priority": 100,
1939
+ "iso_code": "SEK",
1940
+ "name": "Swedish Krona",
1941
+ "unit": "kr",
1942
+ "disambiguate_unit": "SEK",
1943
+ "alternate_units": [":-"],
1944
+ "subunit": "Öre",
1945
+ "subunit_to_unit": 100,
1946
+ "unit_first": false,
1947
+ "format": "%n %u",
1948
+ "html_entity": "",
1949
+ "separator": ",",
1950
+ "delimiter": " ",
1951
+ "iso_numeric": "752",
1952
+ "smallest_denomination": 100
1953
+ },
1954
+ "sgd": {
1955
+ "priority": 100,
1956
+ "iso_code": "SGD",
1957
+ "name": "Singapore Dollar",
1958
+ "unit": "$",
1959
+ "disambiguate_unit": "S$",
1960
+ "alternate_units": ["S$"],
1961
+ "subunit": "Cent",
1962
+ "subunit_to_unit": 100,
1963
+ "unit_first": true,
1964
+ "html_entity": "$",
1965
+ "separator": ".",
1966
+ "delimiter": ",",
1967
+ "iso_numeric": "702",
1968
+ "smallest_denomination": 1
1969
+ },
1970
+ "shp": {
1971
+ "priority": 100,
1972
+ "iso_code": "SHP",
1973
+ "name": "Saint Helenian Pound",
1974
+ "unit": "£",
1975
+ "disambiguate_unit": "SHP",
1976
+ "alternate_units": [],
1977
+ "subunit": "Penny",
1978
+ "subunit_to_unit": 100,
1979
+ "unit_first": false,
1980
+ "format": "%n %u",
1981
+ "html_entity": "&#x00A3;",
1982
+ "separator": ".",
1983
+ "delimiter": ",",
1984
+ "iso_numeric": "654",
1985
+ "smallest_denomination": 1
1986
+ },
1987
+ "skk": {
1988
+ "priority": 100,
1989
+ "iso_code": "SKK",
1990
+ "name": "Slovak Koruna",
1991
+ "unit": "Sk",
1992
+ "alternate_units": [],
1993
+ "subunit": "Halier",
1994
+ "subunit_to_unit": 100,
1995
+ "unit_first": true,
1996
+ "html_entity": "",
1997
+ "separator": ".",
1998
+ "delimiter": ",",
1999
+ "iso_numeric": "703",
2000
+ "smallest_denomination": 50
2001
+ },
2002
+ "sll": {
2003
+ "priority": 100,
2004
+ "iso_code": "SLL",
2005
+ "name": "Sierra Leonean Leone",
2006
+ "unit": "Le",
2007
+ "alternate_units": [],
2008
+ "subunit": "Cent",
2009
+ "subunit_to_unit": 100,
2010
+ "unit_first": false,
2011
+ "format": "%n %u",
2012
+ "html_entity": "",
2013
+ "separator": ".",
2014
+ "delimiter": ",",
2015
+ "iso_numeric": "694",
2016
+ "smallest_denomination": 1000
2017
+ },
2018
+ "sos": {
2019
+ "priority": 100,
2020
+ "iso_code": "SOS",
2021
+ "name": "Somali Shilling",
2022
+ "unit": "Sh",
2023
+ "alternate_units": ["Sh.So"],
2024
+ "subunit": "Cent",
2025
+ "subunit_to_unit": 100,
2026
+ "unit_first": false,
2027
+ "format": "%n %u",
2028
+ "html_entity": "",
2029
+ "separator": ".",
2030
+ "delimiter": ",",
2031
+ "iso_numeric": "706",
2032
+ "smallest_denomination": 1
2033
+ },
2034
+ "srd": {
2035
+ "priority": 100,
2036
+ "iso_code": "SRD",
2037
+ "name": "Surinamese Dollar",
2038
+ "unit": "$",
2039
+ "disambiguate_unit": "SRD",
2040
+ "alternate_units": [],
2041
+ "subunit": "Cent",
2042
+ "subunit_to_unit": 100,
2043
+ "unit_first": false,
2044
+ "format": "%n %u",
2045
+ "html_entity": "",
2046
+ "separator": ".",
2047
+ "delimiter": ",",
2048
+ "iso_numeric": "968",
2049
+ "smallest_denomination": 1
2050
+ },
2051
+ "ssp": {
2052
+ "priority": 100,
2053
+ "iso_code": "SSP",
2054
+ "name": "South Sudanese Pound",
2055
+ "unit": "£",
2056
+ "disambiguate_unit": "SSP",
2057
+ "alternate_units": [],
2058
+ "subunit": "piaster",
2059
+ "subunit_to_unit": 100,
2060
+ "unit_first": false,
2061
+ "format": "%n %u",
2062
+ "html_entity": "&#x00A3;",
2063
+ "separator": ".",
2064
+ "delimiter": ",",
2065
+ "iso_numeric": "728",
2066
+ "smallest_denomination": 5
2067
+ },
2068
+ "std": {
2069
+ "priority": 100,
2070
+ "iso_code": "STD",
2071
+ "name": "São Tomé and Príncipe Dobra",
2072
+ "unit": "Db",
2073
+ "alternate_units": [],
2074
+ "subunit": "Cêntimo",
2075
+ "subunit_to_unit": 100,
2076
+ "unit_first": false,
2077
+ "format": "%n %u",
2078
+ "html_entity": "",
2079
+ "separator": ".",
2080
+ "delimiter": ",",
2081
+ "iso_numeric": "678",
2082
+ "smallest_denomination": 10000
2083
+ },
2084
+ "svc": {
2085
+ "priority": 100,
2086
+ "iso_code": "SVC",
2087
+ "name": "Salvadoran Colón",
2088
+ "unit": "₡",
2089
+ "alternate_units": ["¢"],
2090
+ "subunit": "Centavo",
2091
+ "subunit_to_unit": 100,
2092
+ "unit_first": true,
2093
+ "html_entity": "&#x20A1;",
2094
+ "separator": ".",
2095
+ "delimiter": ",",
2096
+ "iso_numeric": "222",
2097
+ "smallest_denomination": 1
2098
+ },
2099
+ "syp": {
2100
+ "priority": 100,
2101
+ "iso_code": "SYP",
2102
+ "name": "Syrian Pound",
2103
+ "unit": "£S",
2104
+ "alternate_units": ["£", "ل.س", "LS", "الليرة السورية"],
2105
+ "subunit": "Piastre",
2106
+ "subunit_to_unit": 100,
2107
+ "unit_first": false,
2108
+ "format": "%n %u",
2109
+ "html_entity": "&#x00A3;",
2110
+ "separator": ".",
2111
+ "delimiter": ",",
2112
+ "iso_numeric": "760",
2113
+ "smallest_denomination": 100
2114
+ },
2115
+ "szl": {
2116
+ "priority": 100,
2117
+ "iso_code": "SZL",
2118
+ "name": "Swazi Lilangeni",
2119
+ "unit": "E",
2120
+ "disambiguate_unit": "SZL",
2121
+ "subunit": "Cent",
2122
+ "subunit_to_unit": 100,
2123
+ "unit_first": true,
2124
+ "html_entity": "",
2125
+ "separator": ".",
2126
+ "delimiter": ",",
2127
+ "iso_numeric": "748",
2128
+ "smallest_denomination": 1
2129
+ },
2130
+ "thb": {
2131
+ "priority": 100,
2132
+ "iso_code": "THB",
2133
+ "name": "Thai Baht",
2134
+ "unit": "฿",
2135
+ "alternate_units": [],
2136
+ "subunit": "Satang",
2137
+ "subunit_to_unit": 100,
2138
+ "unit_first": true,
2139
+ "html_entity": "&#x0E3F;",
2140
+ "separator": ".",
2141
+ "delimiter": ",",
2142
+ "iso_numeric": "764",
2143
+ "smallest_denomination": 1
2144
+ },
2145
+ "tjs": {
2146
+ "priority": 100,
2147
+ "iso_code": "TJS",
2148
+ "name": "Tajikistani Somoni",
2149
+ "unit": "ЅМ",
2150
+ "alternate_units": [],
2151
+ "subunit": "Diram",
2152
+ "subunit_to_unit": 100,
2153
+ "unit_first": false,
2154
+ "format": "%n %u",
2155
+ "html_entity": "",
2156
+ "separator": ".",
2157
+ "delimiter": ",",
2158
+ "iso_numeric": "972",
2159
+ "smallest_denomination": 1
2160
+ },
2161
+ "tmt": {
2162
+ "priority": 100,
2163
+ "iso_code": "TMT",
2164
+ "name": "Turkmenistani Manat",
2165
+ "unit": "T",
2166
+ "alternate_units": [],
2167
+ "subunit": "Tenge",
2168
+ "subunit_to_unit": 100,
2169
+ "unit_first": false,
2170
+ "format": "%n %u",
2171
+ "html_entity": "",
2172
+ "separator": ".",
2173
+ "delimiter": ",",
2174
+ "iso_numeric": "934",
2175
+ "smallest_denomination": 1
2176
+ },
2177
+ "tnd": {
2178
+ "priority": 100,
2179
+ "iso_code": "TND",
2180
+ "name": "Tunisian Dinar",
2181
+ "unit": "د.ت",
2182
+ "alternate_units": ["TD", "DT"],
2183
+ "subunit": "Millime",
2184
+ "subunit_to_unit": 1000,
2185
+ "unit_first": false,
2186
+ "format": "%n %u",
2187
+ "html_entity": "",
2188
+ "separator": ".",
2189
+ "delimiter": ",",
2190
+ "iso_numeric": "788",
2191
+ "smallest_denomination": 10
2192
+ },
2193
+ "top": {
2194
+ "priority": 100,
2195
+ "iso_code": "TOP",
2196
+ "name": "Tongan Paʻanga",
2197
+ "unit": "T$",
2198
+ "alternate_units": ["PT"],
2199
+ "subunit": "Seniti",
2200
+ "subunit_to_unit": 100,
2201
+ "unit_first": true,
2202
+ "html_entity": "",
2203
+ "separator": ".",
2204
+ "delimiter": ",",
2205
+ "iso_numeric": "776",
2206
+ "smallest_denomination": 1
2207
+ },
2208
+ "try": {
2209
+ "priority": 100,
2210
+ "iso_code": "TRY",
2211
+ "name": "Turkish Lira",
2212
+ "unit": "₺",
2213
+ "alternate_units": ["TL"],
2214
+ "subunit": "kuruş",
2215
+ "subunit_to_unit": 100,
2216
+ "unit_first": true,
2217
+ "html_entity": "&#8378;",
2218
+ "separator": ",",
2219
+ "delimiter": ".",
2220
+ "iso_numeric": "949",
2221
+ "smallest_denomination": 1
2222
+ },
2223
+ "ttd": {
2224
+ "priority": 100,
2225
+ "iso_code": "TTD",
2226
+ "name": "Trinidad and Tobago Dollar",
2227
+ "unit": "$",
2228
+ "disambiguate_unit": "TT$",
2229
+ "alternate_units": ["TT$"],
2230
+ "subunit": "Cent",
2231
+ "subunit_to_unit": 100,
2232
+ "unit_first": false,
2233
+ "format": "%n %u",
2234
+ "html_entity": "$",
2235
+ "separator": ".",
2236
+ "delimiter": ",",
2237
+ "iso_numeric": "780",
2238
+ "smallest_denomination": 1
2239
+ },
2240
+ "twd": {
2241
+ "priority": 100,
2242
+ "iso_code": "TWD",
2243
+ "name": "New Taiwan Dollar",
2244
+ "unit": "$",
2245
+ "disambiguate_unit": "NT$",
2246
+ "alternate_units": ["NT$"],
2247
+ "subunit": "Cent",
2248
+ "subunit_to_unit": 100,
2249
+ "unit_first": true,
2250
+ "html_entity": "$",
2251
+ "separator": ".",
2252
+ "delimiter": ",",
2253
+ "iso_numeric": "901",
2254
+ "smallest_denomination": 50
2255
+ },
2256
+ "tzs": {
2257
+ "priority": 100,
2258
+ "iso_code": "TZS",
2259
+ "name": "Tanzanian Shilling",
2260
+ "unit": "Sh",
2261
+ "alternate_units": [],
2262
+ "subunit": "Cent",
2263
+ "subunit_to_unit": 100,
2264
+ "unit_first": true,
2265
+ "html_entity": "",
2266
+ "separator": ".",
2267
+ "delimiter": ",",
2268
+ "iso_numeric": "834",
2269
+ "smallest_denomination": 5000
2270
+ },
2271
+ "uah": {
2272
+ "priority": 100,
2273
+ "iso_code": "UAH",
2274
+ "name": "Ukrainian Hryvnia",
2275
+ "unit": "₴",
2276
+ "alternate_units": [],
2277
+ "subunit": "Kopiyka",
2278
+ "subunit_to_unit": 100,
2279
+ "unit_first": false,
2280
+ "format": "%n %u",
2281
+ "html_entity": "&#x20B4;",
2282
+ "separator": ".",
2283
+ "delimiter": ",",
2284
+ "iso_numeric": "980",
2285
+ "smallest_denomination": 1
2286
+ },
2287
+ "ugx": {
2288
+ "priority": 100,
2289
+ "iso_code": "UGX",
2290
+ "name": "Ugandan Shilling",
2291
+ "unit": "USh",
2292
+ "alternate_units": [],
2293
+ "subunit": "Cent",
2294
+ "subunit_to_unit": 1,
2295
+ "unit_first": false,
2296
+ "format": "%n %u",
2297
+ "html_entity": "",
2298
+ "separator": ".",
2299
+ "delimiter": ",",
2300
+ "iso_numeric": "800",
2301
+ "smallest_denomination": 1000
2302
+ },
2303
+ "usd": {
2304
+ "priority": 1,
2305
+ "iso_code": "USD",
2306
+ "name": "United States Dollar",
2307
+ "unit": "$",
2308
+ "disambiguate_unit": "US$",
2309
+ "alternate_units": ["US$"],
2310
+ "subunit": "Cent",
2311
+ "subunit_to_unit": 100,
2312
+ "unit_first": true,
2313
+ "html_entity": "$",
2314
+ "separator": ".",
2315
+ "delimiter": ",",
2316
+ "iso_numeric": "840",
2317
+ "smallest_denomination": 1
2318
+ },
2319
+ "uyu": {
2320
+ "priority": 100,
2321
+ "iso_code": "UYU",
2322
+ "name": "Uruguayan Peso",
2323
+ "unit": "$U",
2324
+ "alternate_units": ["$U"],
2325
+ "subunit": "Centésimo",
2326
+ "subunit_to_unit": 100,
2327
+ "unit_first": true,
2328
+ "html_entity": "$U",
2329
+ "separator": ",",
2330
+ "delimiter": ".",
2331
+ "iso_numeric": "858",
2332
+ "smallest_denomination": 100
2333
+ },
2334
+ "uzs": {
2335
+ "priority": 100,
2336
+ "iso_code": "UZS",
2337
+ "name": "Uzbekistan Som",
2338
+ "unit": "so'm",
2339
+ "alternate_units": ["so‘m", "сўм", "сум", "s", "с"],
2340
+ "subunit": "Tiyin",
2341
+ "subunit_to_unit": 100,
2342
+ "unit_first": false,
2343
+ "format": "%n %u",
2344
+ "html_entity": "",
2345
+ "separator": ".",
2346
+ "delimiter": ",",
2347
+ "iso_numeric": "860",
2348
+ "smallest_denomination": 100
2349
+ },
2350
+ "ves": {
2351
+ "priority": 100,
2352
+ "iso_code": "VES",
2353
+ "name": "Venezuelan Bolívar Soberano",
2354
+ "unit": "Bs",
2355
+ "alternate_units": ["Bs.S"],
2356
+ "subunit": "Céntimo",
2357
+ "subunit_to_unit": 100,
2358
+ "unit_first": true,
2359
+ "html_entity": "",
2360
+ "separator": ",",
2361
+ "delimiter": ".",
2362
+ "iso_numeric": "928",
2363
+ "smallest_denomination": 1
2364
+ },
2365
+ "vnd": {
2366
+ "priority": 100,
2367
+ "iso_code": "VND",
2368
+ "name": "Vietnamese Đồng",
2369
+ "unit": "₫",
2370
+ "alternate_units": [],
2371
+ "subunit": "Hào",
2372
+ "subunit_to_unit": 1,
2373
+ "unit_first": false,
2374
+ "format": "%n %u",
2375
+ "html_entity": "&#x20AB;",
2376
+ "separator": ",",
2377
+ "delimiter": ".",
2378
+ "iso_numeric": "704",
2379
+ "smallest_denomination": 100
2380
+ },
2381
+ "vuv": {
2382
+ "priority": 100,
2383
+ "iso_code": "VUV",
2384
+ "name": "Vanuatu Vatu",
2385
+ "unit": "Vt",
2386
+ "alternate_units": [],
2387
+ "subunit": null,
2388
+ "subunit_to_unit": 1,
2389
+ "unit_first": true,
2390
+ "html_entity": "",
2391
+ "separator": ".",
2392
+ "delimiter": ",",
2393
+ "iso_numeric": "548",
2394
+ "smallest_denomination": 1
2395
+ },
2396
+ "wst": {
2397
+ "priority": 100,
2398
+ "iso_code": "WST",
2399
+ "name": "Samoan Tala",
2400
+ "unit": "T",
2401
+ "disambiguate_unit": "WS$",
2402
+ "alternate_units": ["WS$", "SAT", "ST"],
2403
+ "subunit": "Sene",
2404
+ "subunit_to_unit": 100,
2405
+ "unit_first": false,
2406
+ "format": "%n %u",
2407
+ "html_entity": "",
2408
+ "separator": ".",
2409
+ "delimiter": ",",
2410
+ "iso_numeric": "882",
2411
+ "smallest_denomination": 10
2412
+ },
2413
+ "xaf": {
2414
+ "priority": 100,
2415
+ "iso_code": "XAF",
2416
+ "name": "Central African Cfa Franc",
2417
+ "unit": "CFA",
2418
+ "disambiguate_unit": "FCFA",
2419
+ "alternate_units": ["FCFA"],
2420
+ "subunit": "Centime",
2421
+ "subunit_to_unit": 1,
2422
+ "unit_first": false,
2423
+ "format": "%n %u",
2424
+ "html_entity": "",
2425
+ "separator": ".",
2426
+ "delimiter": ",",
2427
+ "iso_numeric": "950",
2428
+ "smallest_denomination": 100
2429
+ },
2430
+ "xag": {
2431
+ "priority": 100,
2432
+ "iso_code": "XAG",
2433
+ "name": "Silver (Troy Ounce)",
2434
+ "unit": "oz t",
2435
+ "disambiguate_unit": "XAG",
2436
+ "alternate_units": [],
2437
+ "subunit": "oz",
2438
+ "subunit_to_unit": 1,
2439
+ "unit_first": false,
2440
+ "format": "%n %u",
2441
+ "html_entity": "",
2442
+ "separator": ".",
2443
+ "delimiter": ",",
2444
+ "iso_numeric": "961"
2445
+ },
2446
+ "xau": {
2447
+ "priority": 100,
2448
+ "iso_code": "XAU",
2449
+ "name": "Gold (Troy Ounce)",
2450
+ "unit": "oz t",
2451
+ "disambiguate_unit": "XAU",
2452
+ "alternate_units": [],
2453
+ "subunit": "oz",
2454
+ "subunit_to_unit": 1,
2455
+ "unit_first": false,
2456
+ "format": "%n %u",
2457
+ "html_entity": "",
2458
+ "separator": ".",
2459
+ "delimiter": ",",
2460
+ "iso_numeric": "959"
2461
+ },
2462
+ "xba": {
2463
+ "priority": 100,
2464
+ "iso_code": "XBA",
2465
+ "name": "European Composite Unit",
2466
+ "unit": "",
2467
+ "disambiguate_unit": "XBA",
2468
+ "alternate_units": [],
2469
+ "subunit": "",
2470
+ "subunit_to_unit": 1,
2471
+ "unit_first": false,
2472
+ "format": "%n %u",
2473
+ "html_entity": "",
2474
+ "separator": ".",
2475
+ "delimiter": ",",
2476
+ "iso_numeric": "955"
2477
+ },
2478
+ "xbb": {
2479
+ "priority": 100,
2480
+ "iso_code": "XBB",
2481
+ "name": "European Monetary Unit",
2482
+ "unit": "",
2483
+ "disambiguate_unit": "XBB",
2484
+ "alternate_units": [],
2485
+ "subunit": "",
2486
+ "subunit_to_unit": 1,
2487
+ "unit_first": false,
2488
+ "format": "%n %u",
2489
+ "html_entity": "",
2490
+ "separator": ".",
2491
+ "delimiter": ",",
2492
+ "iso_numeric": "956"
2493
+ },
2494
+ "xbc": {
2495
+ "priority": 100,
2496
+ "iso_code": "XBC",
2497
+ "name": "European Unit of Account 9",
2498
+ "unit": "",
2499
+ "disambiguate_unit": "XBC",
2500
+ "alternate_units": [],
2501
+ "subunit": "",
2502
+ "subunit_to_unit": 1,
2503
+ "unit_first": false,
2504
+ "format": "%n %u",
2505
+ "html_entity": "",
2506
+ "separator": ".",
2507
+ "delimiter": ",",
2508
+ "iso_numeric": "957"
2509
+ },
2510
+ "xbd": {
2511
+ "priority": 100,
2512
+ "iso_code": "XBD",
2513
+ "name": "European Unit of Account 17",
2514
+ "unit": "",
2515
+ "disambiguate_unit": "XBD",
2516
+ "alternate_units": [],
2517
+ "subunit": "",
2518
+ "subunit_to_unit": 1,
2519
+ "unit_first": false,
2520
+ "format": "%n %u",
2521
+ "html_entity": "",
2522
+ "separator": ".",
2523
+ "delimiter": ",",
2524
+ "iso_numeric": "958"
2525
+ },
2526
+ "xcd": {
2527
+ "priority": 100,
2528
+ "iso_code": "XCD",
2529
+ "name": "East Caribbean Dollar",
2530
+ "unit": "$",
2531
+ "disambiguate_unit": "EX$",
2532
+ "alternate_units": ["EC$"],
2533
+ "subunit": "Cent",
2534
+ "subunit_to_unit": 100,
2535
+ "unit_first": true,
2536
+ "html_entity": "$",
2537
+ "separator": ".",
2538
+ "delimiter": ",",
2539
+ "iso_numeric": "951",
2540
+ "smallest_denomination": 1
2541
+ },
2542
+ "xdr": {
2543
+ "priority": 100,
2544
+ "iso_code": "XDR",
2545
+ "name": "Special Drawing Rights",
2546
+ "unit": "SDR",
2547
+ "alternate_units": ["XDR"],
2548
+ "subunit": "",
2549
+ "subunit_to_unit": 1,
2550
+ "unit_first": false,
2551
+ "format": "%n %u",
2552
+ "html_entity": "$",
2553
+ "separator": ".",
2554
+ "delimiter": ",",
2555
+ "iso_numeric": "960"
2556
+ },
2557
+ "xof": {
2558
+ "priority": 100,
2559
+ "iso_code": "XOF",
2560
+ "name": "West African Cfa Franc",
2561
+ "unit": "Fr",
2562
+ "disambiguate_unit": "CFA",
2563
+ "alternate_units": ["CFA"],
2564
+ "subunit": "Centime",
2565
+ "subunit_to_unit": 1,
2566
+ "unit_first": false,
2567
+ "format": "%n %u",
2568
+ "html_entity": "",
2569
+ "separator": ".",
2570
+ "delimiter": ",",
2571
+ "iso_numeric": "952",
2572
+ "smallest_denomination": 100
2573
+ },
2574
+ "xpd": {
2575
+ "priority": 100,
2576
+ "iso_code": "XPD",
2577
+ "name": "Palladium",
2578
+ "unit": "oz t",
2579
+ "disambiguate_unit": "XPD",
2580
+ "alternate_units": [],
2581
+ "subunit": "oz",
2582
+ "subunit_to_unit": 1,
2583
+ "unit_first": false,
2584
+ "format": "%n %u",
2585
+ "html_entity": "",
2586
+ "separator": ".",
2587
+ "delimiter": ",",
2588
+ "iso_numeric": "964"
2589
+ },
2590
+ "xpf": {
2591
+ "priority": 100,
2592
+ "iso_code": "XPF",
2593
+ "name": "Cfp Franc",
2594
+ "unit": "Fr",
2595
+ "alternate_units": ["F"],
2596
+ "subunit": "Centime",
2597
+ "subunit_to_unit": 1,
2598
+ "unit_first": false,
2599
+ "format": "%n %u",
2600
+ "html_entity": "",
2601
+ "separator": ".",
2602
+ "delimiter": ",",
2603
+ "iso_numeric": "953",
2604
+ "smallest_denomination": 100
2605
+ },
2606
+ "xpt": {
2607
+ "priority": 100,
2608
+ "iso_code": "XPT",
2609
+ "name": "Platinum",
2610
+ "unit": "oz t",
2611
+ "alternate_units": [],
2612
+ "subunit": "",
2613
+ "subunit_to_unit": 1,
2614
+ "unit_first": false,
2615
+ "format": "%n %u",
2616
+ "html_entity": "",
2617
+ "separator": ".",
2618
+ "delimiter": ",",
2619
+ "iso_numeric": "962",
2620
+ "smallest_denomination": ""
2621
+ },
2622
+ "xts": {
2623
+ "priority": 100,
2624
+ "iso_code": "XTS",
2625
+ "name": "Codes specifically reserved for testing purposes",
2626
+ "unit": "",
2627
+ "alternate_units": [],
2628
+ "subunit": "",
2629
+ "subunit_to_unit": 1,
2630
+ "unit_first": false,
2631
+ "format": "%n %u",
2632
+ "html_entity": "",
2633
+ "separator": ".",
2634
+ "delimiter": ",",
2635
+ "iso_numeric": "963",
2636
+ "smallest_denomination": ""
2637
+ },
2638
+ "yer": {
2639
+ "priority": 100,
2640
+ "iso_code": "YER",
2641
+ "name": "Yemeni Rial",
2642
+ "unit": "﷼",
2643
+ "alternate_units": [],
2644
+ "subunit": "Fils",
2645
+ "subunit_to_unit": 100,
2646
+ "unit_first": false,
2647
+ "format": "%n %u",
2648
+ "html_entity": "&#xFDFC;",
2649
+ "separator": ".",
2650
+ "delimiter": ",",
2651
+ "iso_numeric": "886",
2652
+ "smallest_denomination": 100
2653
+ },
2654
+ "zar": {
2655
+ "priority": 100,
2656
+ "iso_code": "ZAR",
2657
+ "name": "South African Rand",
2658
+ "unit": "R",
2659
+ "alternate_units": [],
2660
+ "subunit": "Cent",
2661
+ "subunit_to_unit": 100,
2662
+ "unit_first": true,
2663
+ "html_entity": "&#x0052;",
2664
+ "separator": ".",
2665
+ "delimiter": ",",
2666
+ "iso_numeric": "710",
2667
+ "smallest_denomination": 10
2668
+ },
2669
+ "zmk": {
2670
+ "priority": 100,
2671
+ "iso_code": "ZMK",
2672
+ "name": "Zambian Kwacha",
2673
+ "unit": "ZK",
2674
+ "disambiguate_unit": "ZMK",
2675
+ "alternate_units": [],
2676
+ "subunit": "Ngwee",
2677
+ "subunit_to_unit": 100,
2678
+ "unit_first": false,
2679
+ "format": "%n %u",
2680
+ "html_entity": "",
2681
+ "separator": ".",
2682
+ "delimiter": ",",
2683
+ "iso_numeric": "894",
2684
+ "smallest_denomination": 5
2685
+ },
2686
+ "zmw": {
2687
+ "priority": 100,
2688
+ "iso_code": "ZMW",
2689
+ "name": "Zambian Kwacha",
2690
+ "unit": "K",
2691
+ "disambiguate_unit": "ZMW",
2692
+ "alternate_units": [],
2693
+ "subunit": "Ngwee",
2694
+ "subunit_to_unit": 100,
2695
+ "unit_first": true,
2696
+ "html_entity": "",
2697
+ "separator": ".",
2698
+ "delimiter": ",",
2699
+ "iso_numeric": "967",
2700
+ "smallest_denomination": 5
2701
+ }
2702
+ }