@revolugo/common 6.9.5 → 6.9.6-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +12 -7
- package/src/cancellation-policies.test.ts +12 -9
- package/src/cancellation-policies.ts +31 -26
- package/src/constants/countries.ts +0 -2515
- package/src/constants/currencies.ts +0 -1812
- package/src/constants/environment.ts +1 -0
- package/src/constants/hotel-offers.ts +2 -0
- package/src/constants/hotel.ts +3 -0
- package/src/constants/locales.ts +6 -0
- package/src/constants/measurement.ts +1 -0
- package/src/constants/time.ts +1 -0
- package/src/countries/constants.ts +2518 -0
- package/src/countries/index.ts +7 -0
- package/src/currencies/index.ts +1817 -0
- package/src/models/paginated-queries.ts +1 -0
- package/src/types/country.ts +1 -1
- package/src/types/elements/amenity.ts +266 -0
- package/src/types/elements/bed.ts +20 -0
- package/src/types/elements/booking-policy.ts +80 -0
- package/src/types/elements/booking.ts +236 -0
- package/src/types/elements/cancellation-policy.ts +20 -0
- package/src/types/elements/contact-person.ts +158 -0
- package/src/types/elements/currency.ts +3 -0
- package/src/types/elements/event-metadata.ts +38 -0
- package/src/types/elements/event.ts +14 -0
- package/src/types/elements/hotel-image.ts +44 -0
- package/src/types/elements/hotel-images.ts +47 -0
- package/src/types/elements/hotel-offer-request.ts +82 -0
- package/src/types/elements/hotel-offer.ts +200 -0
- package/src/types/elements/hotel-review-rating.ts +14 -0
- package/src/types/elements/hotel-room-offer-package-type.ts +8 -0
- package/src/types/elements/hotel-room-offer-request.ts +77 -0
- package/src/types/elements/hotel-room-offer-type.ts +6 -0
- package/src/types/elements/hotel-room-offer.ts +192 -0
- package/src/types/elements/hotel-room.ts +102 -0
- package/src/types/elements/hotel-rooming-list.ts +49 -0
- package/src/types/elements/hotel.ts +184 -0
- package/src/types/elements/index.ts +22 -0
- package/src/types/elements/invoice.ts +21 -0
- package/src/types/elements/payment-method.ts +159 -0
- package/src/types/elements/source-market.ts +247 -0
- package/src/types/elements/tag.ts +32 -0
- package/src/types/elements/tax.ts +52 -0
- package/src/types/elements/travel-times.ts +45 -0
- package/src/types/index.ts +1 -0
- package/src/utils/array-tools.ts +3 -2
- package/src/utils/case-transformers.ts +1 -0
- package/src/utils/colors.ts +4 -4
- package/src/utils/currency.ts +30 -18
- package/src/utils/dates.ts +6 -10
- package/src/utils/debounce.ts +2 -2
- package/src/utils/find-unique-keys.ts +2 -2
- package/src/utils/get-guest-count.ts +1 -0
- package/src/utils/index.ts +1 -1
- package/src/utils/lang-default-fallbacks.ts +1 -1
- package/src/utils/math.ts +3 -3
- package/src/utils/numbers.ts +8 -7
- package/src/utils/object-tools.ts +22 -2
- package/src/utils/poller.ts +1 -0
- package/src/utils/random.ts +12 -0
- package/src/utils/strings.ts +5 -2
- package/src/utils/validators.ts +1 -0
- package/src/utils/countries.ts +0 -4
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
import { Currency } from './currencies.ts'
|
|
2
|
-
|
|
3
|
-
import type { Country } from '../types/country.ts'
|
|
4
|
-
|
|
5
1
|
/* eslint-disable max-lines */
|
|
6
2
|
export enum CountryIso2Code {
|
|
7
3
|
AD = 'AD',
|
|
@@ -248,2514 +244,3 @@ export enum CountryIso2Code {
|
|
|
248
244
|
ZM = 'ZM',
|
|
249
245
|
ZW = 'ZW',
|
|
250
246
|
}
|
|
251
|
-
|
|
252
|
-
export const EU_COUNTRIES_ISO2_CODE = new Set<string>([
|
|
253
|
-
CountryIso2Code.AT,
|
|
254
|
-
CountryIso2Code.BE,
|
|
255
|
-
CountryIso2Code.BG,
|
|
256
|
-
CountryIso2Code.CY,
|
|
257
|
-
CountryIso2Code.CZ,
|
|
258
|
-
CountryIso2Code.DE,
|
|
259
|
-
CountryIso2Code.DK,
|
|
260
|
-
CountryIso2Code.EE,
|
|
261
|
-
CountryIso2Code.ES,
|
|
262
|
-
CountryIso2Code.FI,
|
|
263
|
-
CountryIso2Code.FR,
|
|
264
|
-
CountryIso2Code.GR,
|
|
265
|
-
CountryIso2Code.HR,
|
|
266
|
-
CountryIso2Code.HU,
|
|
267
|
-
CountryIso2Code.IE,
|
|
268
|
-
CountryIso2Code.IT,
|
|
269
|
-
CountryIso2Code.LT,
|
|
270
|
-
CountryIso2Code.LU,
|
|
271
|
-
CountryIso2Code.LV,
|
|
272
|
-
CountryIso2Code.MT,
|
|
273
|
-
CountryIso2Code.NL,
|
|
274
|
-
CountryIso2Code.PL,
|
|
275
|
-
CountryIso2Code.PT,
|
|
276
|
-
CountryIso2Code.RO,
|
|
277
|
-
CountryIso2Code.SE,
|
|
278
|
-
CountryIso2Code.SI,
|
|
279
|
-
CountryIso2Code.SK,
|
|
280
|
-
])
|
|
281
|
-
|
|
282
|
-
export const COUNTRIES: Record<string, Country> = {
|
|
283
|
-
AD: {
|
|
284
|
-
areaCodes: null,
|
|
285
|
-
currency: Currency.EUR,
|
|
286
|
-
dialCode: '376',
|
|
287
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AD.png',
|
|
288
|
-
iso2: 'AD',
|
|
289
|
-
name: 'Andorra',
|
|
290
|
-
priority: 0,
|
|
291
|
-
timezone: 'Europe/Andorra',
|
|
292
|
-
},
|
|
293
|
-
AE: {
|
|
294
|
-
areaCodes: null,
|
|
295
|
-
currency: Currency.AED,
|
|
296
|
-
dialCode: '971',
|
|
297
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AE.png',
|
|
298
|
-
iso2: 'AE',
|
|
299
|
-
name: 'United Arab Emirates (الإمارات العربية المتحدة)',
|
|
300
|
-
priority: 0,
|
|
301
|
-
timezone: 'Asia/Dubai',
|
|
302
|
-
},
|
|
303
|
-
AF: {
|
|
304
|
-
areaCodes: null,
|
|
305
|
-
currency: Currency.AFN,
|
|
306
|
-
dialCode: '93',
|
|
307
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AF.png',
|
|
308
|
-
iso2: 'AF',
|
|
309
|
-
name: 'Afghanistan (افغانستان)',
|
|
310
|
-
priority: 0,
|
|
311
|
-
timezone: 'Asia/Kabul',
|
|
312
|
-
},
|
|
313
|
-
AG: {
|
|
314
|
-
areaCodes: null,
|
|
315
|
-
currency: Currency.XCD,
|
|
316
|
-
dialCode: '1268',
|
|
317
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AG.png',
|
|
318
|
-
iso2: 'AG',
|
|
319
|
-
name: 'Antigua and Barbuda',
|
|
320
|
-
priority: 0,
|
|
321
|
-
timezone: 'America/Antigua',
|
|
322
|
-
},
|
|
323
|
-
AI: {
|
|
324
|
-
areaCodes: null,
|
|
325
|
-
currency: Currency.XCD,
|
|
326
|
-
dialCode: '1264',
|
|
327
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AI.png',
|
|
328
|
-
iso2: 'AI',
|
|
329
|
-
name: 'Anguilla',
|
|
330
|
-
priority: 0,
|
|
331
|
-
timezone: 'America/Anguilla',
|
|
332
|
-
},
|
|
333
|
-
AL: {
|
|
334
|
-
areaCodes: null,
|
|
335
|
-
currency: Currency.ALL,
|
|
336
|
-
dialCode: '355',
|
|
337
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AL.png',
|
|
338
|
-
iso2: 'AL',
|
|
339
|
-
name: 'Albania (Shqipëri)',
|
|
340
|
-
priority: 0,
|
|
341
|
-
timezone: 'Europe/Tirane',
|
|
342
|
-
},
|
|
343
|
-
AM: {
|
|
344
|
-
areaCodes: null,
|
|
345
|
-
currency: Currency.AMD,
|
|
346
|
-
dialCode: '374',
|
|
347
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AM.png',
|
|
348
|
-
iso2: 'AM',
|
|
349
|
-
name: 'Armenia (Հայաստան)',
|
|
350
|
-
priority: 0,
|
|
351
|
-
timezone: 'Asia/Yerevan',
|
|
352
|
-
},
|
|
353
|
-
AO: {
|
|
354
|
-
areaCodes: null,
|
|
355
|
-
currency: Currency.AOA,
|
|
356
|
-
dialCode: '244',
|
|
357
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AO.png',
|
|
358
|
-
iso2: 'AO',
|
|
359
|
-
name: 'Angola',
|
|
360
|
-
priority: 0,
|
|
361
|
-
timezone: 'Africa/Luanda',
|
|
362
|
-
},
|
|
363
|
-
AR: {
|
|
364
|
-
areaCodes: null,
|
|
365
|
-
currency: Currency.ARS,
|
|
366
|
-
dialCode: '54',
|
|
367
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AR.png',
|
|
368
|
-
iso2: 'AR',
|
|
369
|
-
name: 'Argentina',
|
|
370
|
-
priority: 0,
|
|
371
|
-
timezone: 'America/Argentina/Cordoba',
|
|
372
|
-
},
|
|
373
|
-
AS: {
|
|
374
|
-
areaCodes: null,
|
|
375
|
-
currency: Currency.USD,
|
|
376
|
-
dialCode: '1684',
|
|
377
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AS.png',
|
|
378
|
-
iso2: 'AS',
|
|
379
|
-
name: 'American Samoa',
|
|
380
|
-
priority: 0,
|
|
381
|
-
timezone: 'Etc/GMT+11',
|
|
382
|
-
},
|
|
383
|
-
AT: {
|
|
384
|
-
areaCodes: null,
|
|
385
|
-
currency: Currency.EUR,
|
|
386
|
-
dialCode: '43',
|
|
387
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AT.png',
|
|
388
|
-
iso2: 'AT',
|
|
389
|
-
name: 'Austria (Österreich)',
|
|
390
|
-
priority: 0,
|
|
391
|
-
timezone: 'Europe/Vienna',
|
|
392
|
-
},
|
|
393
|
-
AU: {
|
|
394
|
-
areaCodes: null,
|
|
395
|
-
currency: Currency.AUD,
|
|
396
|
-
dialCode: '61',
|
|
397
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AU.png',
|
|
398
|
-
iso2: 'AU',
|
|
399
|
-
name: 'Australia',
|
|
400
|
-
priority: 0,
|
|
401
|
-
timezone: 'Australia/Darwin',
|
|
402
|
-
},
|
|
403
|
-
AW: {
|
|
404
|
-
areaCodes: null,
|
|
405
|
-
currency: Currency.AWG,
|
|
406
|
-
dialCode: '297',
|
|
407
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AW.png',
|
|
408
|
-
iso2: 'AW',
|
|
409
|
-
name: 'Aruba',
|
|
410
|
-
priority: 0,
|
|
411
|
-
timezone: 'America/Aruba',
|
|
412
|
-
},
|
|
413
|
-
AX: {
|
|
414
|
-
areaCodes: null,
|
|
415
|
-
currency: Currency.EUR,
|
|
416
|
-
dialCode: '358',
|
|
417
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AX.png',
|
|
418
|
-
iso2: 'AX',
|
|
419
|
-
name: 'Åland Islands',
|
|
420
|
-
priority: 1,
|
|
421
|
-
timezone: 'Europe/Helsinki',
|
|
422
|
-
},
|
|
423
|
-
AZ: {
|
|
424
|
-
areaCodes: null,
|
|
425
|
-
currency: Currency.AZN,
|
|
426
|
-
dialCode: '994',
|
|
427
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AZ.png',
|
|
428
|
-
iso2: 'AZ',
|
|
429
|
-
name: 'Azerbaijan (Azərbaycan)',
|
|
430
|
-
priority: 0,
|
|
431
|
-
timezone: 'Asia/Baku',
|
|
432
|
-
},
|
|
433
|
-
BA: {
|
|
434
|
-
areaCodes: null,
|
|
435
|
-
currency: Currency.BAM,
|
|
436
|
-
dialCode: '387',
|
|
437
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BA.png',
|
|
438
|
-
iso2: 'BA',
|
|
439
|
-
name: 'Bosnia and Herzegovina (Босна и Херцеговина)',
|
|
440
|
-
priority: 0,
|
|
441
|
-
timezone: 'Europe/Sarajevo',
|
|
442
|
-
},
|
|
443
|
-
BB: {
|
|
444
|
-
areaCodes: null,
|
|
445
|
-
currency: Currency.BBD,
|
|
446
|
-
dialCode: '1246',
|
|
447
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BB.png',
|
|
448
|
-
iso2: 'BB',
|
|
449
|
-
name: 'Barbados',
|
|
450
|
-
priority: 0,
|
|
451
|
-
timezone: 'America/Barbados',
|
|
452
|
-
},
|
|
453
|
-
BD: {
|
|
454
|
-
areaCodes: null,
|
|
455
|
-
currency: Currency.BDT,
|
|
456
|
-
dialCode: '880',
|
|
457
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BD.png',
|
|
458
|
-
iso2: 'BD',
|
|
459
|
-
name: 'Bangladesh (বাংলাদেশ)',
|
|
460
|
-
priority: 0,
|
|
461
|
-
timezone: 'Asia/Dhaka',
|
|
462
|
-
},
|
|
463
|
-
BE: {
|
|
464
|
-
areaCodes: null,
|
|
465
|
-
currency: Currency.EUR,
|
|
466
|
-
dialCode: '32',
|
|
467
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BE.png',
|
|
468
|
-
iso2: 'BE',
|
|
469
|
-
name: 'Belgium (België)',
|
|
470
|
-
priority: 0,
|
|
471
|
-
timezone: 'Europe/Brussels',
|
|
472
|
-
},
|
|
473
|
-
BF: {
|
|
474
|
-
areaCodes: null,
|
|
475
|
-
currency: Currency.XOF,
|
|
476
|
-
dialCode: '226',
|
|
477
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BF.png',
|
|
478
|
-
iso2: 'BF',
|
|
479
|
-
name: 'Burkina Faso',
|
|
480
|
-
priority: 0,
|
|
481
|
-
timezone: 'Africa/Ouagadougou',
|
|
482
|
-
},
|
|
483
|
-
BG: {
|
|
484
|
-
areaCodes: null,
|
|
485
|
-
currency: Currency.BGN,
|
|
486
|
-
dialCode: '359',
|
|
487
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BG.png',
|
|
488
|
-
iso2: 'BG',
|
|
489
|
-
name: 'Bulgaria (България)',
|
|
490
|
-
priority: 0,
|
|
491
|
-
timezone: 'Europe/Sofia',
|
|
492
|
-
},
|
|
493
|
-
BH: {
|
|
494
|
-
areaCodes: null,
|
|
495
|
-
currency: Currency.BHD,
|
|
496
|
-
dialCode: '973',
|
|
497
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BH.png',
|
|
498
|
-
iso2: 'BH',
|
|
499
|
-
name: 'Bahrain (البحرين)',
|
|
500
|
-
priority: 0,
|
|
501
|
-
timezone: 'Asia/Bahrain',
|
|
502
|
-
},
|
|
503
|
-
BI: {
|
|
504
|
-
areaCodes: null,
|
|
505
|
-
currency: Currency.BIF,
|
|
506
|
-
dialCode: '257',
|
|
507
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BI.png',
|
|
508
|
-
iso2: 'BI',
|
|
509
|
-
name: 'Burundi (Uburundi)',
|
|
510
|
-
priority: 0,
|
|
511
|
-
timezone: 'Africa/Bujumbura',
|
|
512
|
-
},
|
|
513
|
-
BJ: {
|
|
514
|
-
areaCodes: null,
|
|
515
|
-
currency: Currency.XOF,
|
|
516
|
-
dialCode: '229',
|
|
517
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BJ.png',
|
|
518
|
-
iso2: 'BJ',
|
|
519
|
-
name: 'Benin (Bénin)',
|
|
520
|
-
priority: 0,
|
|
521
|
-
timezone: 'Africa/Porto-Novo',
|
|
522
|
-
},
|
|
523
|
-
BL: {
|
|
524
|
-
areaCodes: null,
|
|
525
|
-
currency: Currency.EUR,
|
|
526
|
-
dialCode: '590',
|
|
527
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BL.png',
|
|
528
|
-
iso2: 'BL',
|
|
529
|
-
name: 'Saint Barthélemy',
|
|
530
|
-
priority: 1,
|
|
531
|
-
timezone: 'America/St_Barthelemy',
|
|
532
|
-
},
|
|
533
|
-
BM: {
|
|
534
|
-
areaCodes: null,
|
|
535
|
-
currency: Currency.BMD,
|
|
536
|
-
dialCode: '1441',
|
|
537
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BM.png',
|
|
538
|
-
iso2: 'BM',
|
|
539
|
-
name: 'Bermuda',
|
|
540
|
-
priority: 0,
|
|
541
|
-
timezone: 'Atlantic/Bermuda',
|
|
542
|
-
},
|
|
543
|
-
BN: {
|
|
544
|
-
areaCodes: null,
|
|
545
|
-
currency: Currency.BND,
|
|
546
|
-
dialCode: '673',
|
|
547
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BN.png',
|
|
548
|
-
iso2: 'BN',
|
|
549
|
-
name: 'Brunei',
|
|
550
|
-
priority: 0,
|
|
551
|
-
timezone: 'Asia/Brunei',
|
|
552
|
-
},
|
|
553
|
-
BO: {
|
|
554
|
-
areaCodes: null,
|
|
555
|
-
currency: Currency.BOB,
|
|
556
|
-
dialCode: '591',
|
|
557
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BO.png',
|
|
558
|
-
iso2: 'BO',
|
|
559
|
-
name: 'Bolivia',
|
|
560
|
-
priority: 0,
|
|
561
|
-
timezone: 'America/La_Paz',
|
|
562
|
-
},
|
|
563
|
-
BQ: {
|
|
564
|
-
areaCodes: null,
|
|
565
|
-
currency: Currency.USD,
|
|
566
|
-
dialCode: '599',
|
|
567
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BQ.png',
|
|
568
|
-
iso2: 'BQ',
|
|
569
|
-
name: 'Caribbean Netherlands',
|
|
570
|
-
priority: 1,
|
|
571
|
-
timezone: 'America/Kralendijk',
|
|
572
|
-
},
|
|
573
|
-
BR: {
|
|
574
|
-
areaCodes: null,
|
|
575
|
-
currency: Currency.BRL,
|
|
576
|
-
dialCode: '55',
|
|
577
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BR.png',
|
|
578
|
-
iso2: 'BR',
|
|
579
|
-
name: 'Brazil (Brasil)',
|
|
580
|
-
priority: 0,
|
|
581
|
-
timezone: 'America/Cuiaba',
|
|
582
|
-
},
|
|
583
|
-
BS: {
|
|
584
|
-
areaCodes: null,
|
|
585
|
-
currency: Currency.BSD,
|
|
586
|
-
dialCode: '1242',
|
|
587
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BS.png',
|
|
588
|
-
iso2: 'BS',
|
|
589
|
-
name: 'Bahamas',
|
|
590
|
-
priority: 0,
|
|
591
|
-
timezone: 'America/Nassau',
|
|
592
|
-
},
|
|
593
|
-
BT: {
|
|
594
|
-
areaCodes: null,
|
|
595
|
-
currency: Currency.BTN,
|
|
596
|
-
dialCode: '975',
|
|
597
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BT.png',
|
|
598
|
-
iso2: 'BT',
|
|
599
|
-
name: 'Bhutan (འབྲུག)',
|
|
600
|
-
priority: 0,
|
|
601
|
-
timezone: 'Asia/Thimphu',
|
|
602
|
-
},
|
|
603
|
-
BW: {
|
|
604
|
-
areaCodes: null,
|
|
605
|
-
currency: Currency.BWP,
|
|
606
|
-
dialCode: '267',
|
|
607
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BW.png',
|
|
608
|
-
iso2: 'BW',
|
|
609
|
-
name: 'Botswana',
|
|
610
|
-
priority: 0,
|
|
611
|
-
timezone: 'Africa/Gaborone',
|
|
612
|
-
},
|
|
613
|
-
BY: {
|
|
614
|
-
areaCodes: null,
|
|
615
|
-
currency: Currency.BYN,
|
|
616
|
-
dialCode: '375',
|
|
617
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BY.png',
|
|
618
|
-
iso2: 'BY',
|
|
619
|
-
name: 'Belarus (Беларусь)',
|
|
620
|
-
priority: 0,
|
|
621
|
-
timezone: 'Europe/Minsk',
|
|
622
|
-
},
|
|
623
|
-
BZ: {
|
|
624
|
-
areaCodes: null,
|
|
625
|
-
currency: Currency.BZD,
|
|
626
|
-
dialCode: '501',
|
|
627
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BZ.png',
|
|
628
|
-
iso2: 'BZ',
|
|
629
|
-
name: 'Belize',
|
|
630
|
-
priority: 0,
|
|
631
|
-
timezone: 'America/Belize',
|
|
632
|
-
},
|
|
633
|
-
CA: {
|
|
634
|
-
areaCodes: [
|
|
635
|
-
'204',
|
|
636
|
-
'226',
|
|
637
|
-
'236',
|
|
638
|
-
'249',
|
|
639
|
-
'250',
|
|
640
|
-
'289',
|
|
641
|
-
'306',
|
|
642
|
-
'343',
|
|
643
|
-
'365',
|
|
644
|
-
'387',
|
|
645
|
-
'403',
|
|
646
|
-
'416',
|
|
647
|
-
'418',
|
|
648
|
-
'431',
|
|
649
|
-
'437',
|
|
650
|
-
'438',
|
|
651
|
-
'450',
|
|
652
|
-
'506',
|
|
653
|
-
'514',
|
|
654
|
-
'519',
|
|
655
|
-
'548',
|
|
656
|
-
'579',
|
|
657
|
-
'581',
|
|
658
|
-
'587',
|
|
659
|
-
'604',
|
|
660
|
-
'613',
|
|
661
|
-
'639',
|
|
662
|
-
'647',
|
|
663
|
-
'672',
|
|
664
|
-
'705',
|
|
665
|
-
'709',
|
|
666
|
-
'742',
|
|
667
|
-
'778',
|
|
668
|
-
'780',
|
|
669
|
-
'782',
|
|
670
|
-
'807',
|
|
671
|
-
'819',
|
|
672
|
-
'825',
|
|
673
|
-
'867',
|
|
674
|
-
'873',
|
|
675
|
-
'902',
|
|
676
|
-
'905',
|
|
677
|
-
],
|
|
678
|
-
currency: Currency.CAD,
|
|
679
|
-
dialCode: '1',
|
|
680
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CA.png',
|
|
681
|
-
iso2: 'CA',
|
|
682
|
-
name: 'Canada',
|
|
683
|
-
priority: 1,
|
|
684
|
-
timezone: 'America/Rankin_Inlet',
|
|
685
|
-
},
|
|
686
|
-
CC: {
|
|
687
|
-
areaCodes: null,
|
|
688
|
-
currency: Currency.AUD,
|
|
689
|
-
dialCode: '61',
|
|
690
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CC.png',
|
|
691
|
-
iso2: 'CC',
|
|
692
|
-
name: 'Cocos (Keeling) Islands',
|
|
693
|
-
priority: 1,
|
|
694
|
-
timezone: 'Indian/Cocos',
|
|
695
|
-
},
|
|
696
|
-
CD: {
|
|
697
|
-
areaCodes: null,
|
|
698
|
-
currency: Currency.CDF,
|
|
699
|
-
dialCode: '243',
|
|
700
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CD.png',
|
|
701
|
-
iso2: 'CD',
|
|
702
|
-
name: 'Congo (DRC) (Jamhuri ya Kidemokrasia ya Kongo)',
|
|
703
|
-
priority: 0,
|
|
704
|
-
timezone: 'Africa/Lubumbashi',
|
|
705
|
-
},
|
|
706
|
-
CF: {
|
|
707
|
-
areaCodes: null,
|
|
708
|
-
currency: Currency.XAF,
|
|
709
|
-
dialCode: '236',
|
|
710
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CF.png',
|
|
711
|
-
iso2: 'CF',
|
|
712
|
-
name: 'Central African Republic (République centrafricaine)',
|
|
713
|
-
priority: 0,
|
|
714
|
-
timezone: 'Africa/Bangui',
|
|
715
|
-
},
|
|
716
|
-
CG: {
|
|
717
|
-
areaCodes: null,
|
|
718
|
-
currency: Currency.XAF,
|
|
719
|
-
dialCode: '242',
|
|
720
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CG.png',
|
|
721
|
-
iso2: 'CG',
|
|
722
|
-
name: 'Congo (Republic) (Congo-Brazzaville)',
|
|
723
|
-
priority: 0,
|
|
724
|
-
timezone: 'Africa/Brazzaville',
|
|
725
|
-
},
|
|
726
|
-
CH: {
|
|
727
|
-
areaCodes: null,
|
|
728
|
-
currency: Currency.CHF,
|
|
729
|
-
dialCode: '41',
|
|
730
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CH.png',
|
|
731
|
-
iso2: 'CH',
|
|
732
|
-
name: 'Switzerland (Schweiz)',
|
|
733
|
-
priority: 0,
|
|
734
|
-
timezone: 'Europe/Zurich',
|
|
735
|
-
},
|
|
736
|
-
CI: {
|
|
737
|
-
areaCodes: null,
|
|
738
|
-
currency: Currency.XOF,
|
|
739
|
-
dialCode: '225',
|
|
740
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CI.png',
|
|
741
|
-
iso2: 'CI',
|
|
742
|
-
name: 'Côte d’Ivoire',
|
|
743
|
-
priority: 0,
|
|
744
|
-
timezone: 'Africa/Abidjan',
|
|
745
|
-
},
|
|
746
|
-
CK: {
|
|
747
|
-
areaCodes: null,
|
|
748
|
-
currency: Currency.NZD,
|
|
749
|
-
dialCode: '682',
|
|
750
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CK.png',
|
|
751
|
-
iso2: 'CK',
|
|
752
|
-
name: 'Cook Islands',
|
|
753
|
-
priority: 0,
|
|
754
|
-
timezone: 'Etc/GMT+11',
|
|
755
|
-
},
|
|
756
|
-
CL: {
|
|
757
|
-
areaCodes: null,
|
|
758
|
-
currency: Currency.CLP,
|
|
759
|
-
dialCode: '56',
|
|
760
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CL.png',
|
|
761
|
-
iso2: 'CL',
|
|
762
|
-
name: 'Chile',
|
|
763
|
-
priority: 0,
|
|
764
|
-
timezone: 'America/Santiago',
|
|
765
|
-
},
|
|
766
|
-
CM: {
|
|
767
|
-
areaCodes: null,
|
|
768
|
-
currency: Currency.XAF,
|
|
769
|
-
dialCode: '237',
|
|
770
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CM.png',
|
|
771
|
-
iso2: 'CM',
|
|
772
|
-
name: 'Cameroon (Cameroun)',
|
|
773
|
-
priority: 0,
|
|
774
|
-
timezone: 'Africa/Douala',
|
|
775
|
-
},
|
|
776
|
-
CN: {
|
|
777
|
-
areaCodes: null,
|
|
778
|
-
currency: Currency.CNY,
|
|
779
|
-
dialCode: '86',
|
|
780
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CN.png',
|
|
781
|
-
iso2: 'CN',
|
|
782
|
-
name: 'China (中国)',
|
|
783
|
-
priority: 0,
|
|
784
|
-
timezone: 'Asia/Shanghai',
|
|
785
|
-
},
|
|
786
|
-
CO: {
|
|
787
|
-
areaCodes: null,
|
|
788
|
-
currency: Currency.COP,
|
|
789
|
-
dialCode: '57',
|
|
790
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CO.png',
|
|
791
|
-
iso2: 'CO',
|
|
792
|
-
name: 'Colombia',
|
|
793
|
-
priority: 0,
|
|
794
|
-
timezone: 'America/Bogota',
|
|
795
|
-
},
|
|
796
|
-
CR: {
|
|
797
|
-
areaCodes: null,
|
|
798
|
-
currency: Currency.CRC,
|
|
799
|
-
dialCode: '506',
|
|
800
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CR.png',
|
|
801
|
-
iso2: 'CR',
|
|
802
|
-
name: 'Costa Rica',
|
|
803
|
-
priority: 0,
|
|
804
|
-
timezone: 'America/Costa_Rica',
|
|
805
|
-
},
|
|
806
|
-
CU: {
|
|
807
|
-
areaCodes: null,
|
|
808
|
-
currency: Currency.CUP,
|
|
809
|
-
dialCode: '53',
|
|
810
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CU.png',
|
|
811
|
-
iso2: 'CU',
|
|
812
|
-
name: 'Cuba',
|
|
813
|
-
priority: 0,
|
|
814
|
-
timezone: 'America/Havana',
|
|
815
|
-
},
|
|
816
|
-
CV: {
|
|
817
|
-
areaCodes: null,
|
|
818
|
-
currency: Currency.CVE,
|
|
819
|
-
dialCode: '238',
|
|
820
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CV.png',
|
|
821
|
-
iso2: 'CV',
|
|
822
|
-
name: 'Cape Verde (Kabu Verdi)',
|
|
823
|
-
priority: 0,
|
|
824
|
-
timezone: 'Atlantic/Cape_Verde',
|
|
825
|
-
},
|
|
826
|
-
CW: {
|
|
827
|
-
areaCodes: null,
|
|
828
|
-
currency: Currency.ANG,
|
|
829
|
-
dialCode: '599',
|
|
830
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CW.png',
|
|
831
|
-
iso2: 'CW',
|
|
832
|
-
name: 'Curaçao',
|
|
833
|
-
priority: 0,
|
|
834
|
-
timezone: 'America/Curacao',
|
|
835
|
-
},
|
|
836
|
-
CX: {
|
|
837
|
-
areaCodes: null,
|
|
838
|
-
currency: Currency.AUD,
|
|
839
|
-
dialCode: '61',
|
|
840
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CX.png',
|
|
841
|
-
iso2: 'CX',
|
|
842
|
-
name: 'Christmas Island',
|
|
843
|
-
priority: 2,
|
|
844
|
-
timezone: 'Indian/Christmas',
|
|
845
|
-
},
|
|
846
|
-
CY: {
|
|
847
|
-
areaCodes: null,
|
|
848
|
-
currency: Currency.EUR,
|
|
849
|
-
dialCode: '357',
|
|
850
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CY.png',
|
|
851
|
-
iso2: 'CY',
|
|
852
|
-
name: 'Cyprus (Κύπρος)',
|
|
853
|
-
priority: 0,
|
|
854
|
-
timezone: 'Asia/Nicosia',
|
|
855
|
-
},
|
|
856
|
-
CZ: {
|
|
857
|
-
areaCodes: null,
|
|
858
|
-
currency: Currency.CZK,
|
|
859
|
-
dialCode: '420',
|
|
860
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CZ.png',
|
|
861
|
-
iso2: 'CZ',
|
|
862
|
-
name: 'Czech Republic (Česká republika)',
|
|
863
|
-
priority: 0,
|
|
864
|
-
timezone: 'Europe/Prague',
|
|
865
|
-
},
|
|
866
|
-
DE: {
|
|
867
|
-
areaCodes: null,
|
|
868
|
-
currency: Currency.EUR,
|
|
869
|
-
dialCode: '49',
|
|
870
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/DE.png',
|
|
871
|
-
iso2: 'DE',
|
|
872
|
-
name: 'Germany (Deutschland)',
|
|
873
|
-
priority: 0,
|
|
874
|
-
timezone: 'Europe/Berlin',
|
|
875
|
-
},
|
|
876
|
-
DJ: {
|
|
877
|
-
areaCodes: null,
|
|
878
|
-
currency: Currency.DJF,
|
|
879
|
-
dialCode: '253',
|
|
880
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/DJ.png',
|
|
881
|
-
iso2: 'DJ',
|
|
882
|
-
name: 'Djibouti',
|
|
883
|
-
priority: 0,
|
|
884
|
-
timezone: 'Africa/Djibouti',
|
|
885
|
-
},
|
|
886
|
-
DK: {
|
|
887
|
-
areaCodes: null,
|
|
888
|
-
currency: Currency.DKK,
|
|
889
|
-
dialCode: '45',
|
|
890
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/DK.png',
|
|
891
|
-
iso2: 'DK',
|
|
892
|
-
name: 'Denmark (Danmark)',
|
|
893
|
-
priority: 0,
|
|
894
|
-
timezone: 'Europe/Copenhagen',
|
|
895
|
-
},
|
|
896
|
-
DM: {
|
|
897
|
-
areaCodes: null,
|
|
898
|
-
currency: Currency.XCD,
|
|
899
|
-
dialCode: '1767',
|
|
900
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/DM.png',
|
|
901
|
-
iso2: 'DM',
|
|
902
|
-
name: 'Dominica',
|
|
903
|
-
priority: 0,
|
|
904
|
-
timezone: 'America/Dominica',
|
|
905
|
-
},
|
|
906
|
-
DO: {
|
|
907
|
-
areaCodes: ['809', '829', '849'],
|
|
908
|
-
currency: Currency.DOP,
|
|
909
|
-
dialCode: '1',
|
|
910
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/DO.png',
|
|
911
|
-
iso2: 'DO',
|
|
912
|
-
name: 'Dominican Republic (República Dominicana)',
|
|
913
|
-
priority: 2,
|
|
914
|
-
timezone: 'America/Santo_Domingo',
|
|
915
|
-
},
|
|
916
|
-
DZ: {
|
|
917
|
-
areaCodes: null,
|
|
918
|
-
currency: Currency.DZD,
|
|
919
|
-
dialCode: '213',
|
|
920
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/DZ.png',
|
|
921
|
-
iso2: 'DZ',
|
|
922
|
-
name: 'Algeria (الجزائر)',
|
|
923
|
-
priority: 0,
|
|
924
|
-
timezone: 'Africa/Algiers',
|
|
925
|
-
},
|
|
926
|
-
EC: {
|
|
927
|
-
areaCodes: null,
|
|
928
|
-
currency: Currency.USD,
|
|
929
|
-
dialCode: '593',
|
|
930
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/EC.png',
|
|
931
|
-
iso2: 'EC',
|
|
932
|
-
name: 'Ecuador',
|
|
933
|
-
priority: 0,
|
|
934
|
-
timezone: 'America/Guayaquil',
|
|
935
|
-
},
|
|
936
|
-
EE: {
|
|
937
|
-
areaCodes: null,
|
|
938
|
-
currency: Currency.EUR,
|
|
939
|
-
dialCode: '372',
|
|
940
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/EE.png',
|
|
941
|
-
iso2: 'EE',
|
|
942
|
-
name: 'Estonia (Eesti)',
|
|
943
|
-
priority: 0,
|
|
944
|
-
timezone: 'Europe/Tallinn',
|
|
945
|
-
},
|
|
946
|
-
EG: {
|
|
947
|
-
areaCodes: null,
|
|
948
|
-
currency: Currency.EGP,
|
|
949
|
-
dialCode: '20',
|
|
950
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/EG.png',
|
|
951
|
-
iso2: 'EG',
|
|
952
|
-
name: 'Egypt (مصر)',
|
|
953
|
-
priority: 0,
|
|
954
|
-
timezone: 'Africa/Cairo',
|
|
955
|
-
},
|
|
956
|
-
EH: {
|
|
957
|
-
areaCodes: null,
|
|
958
|
-
currency: Currency.MAD,
|
|
959
|
-
dialCode: '212',
|
|
960
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/EH.png',
|
|
961
|
-
iso2: 'EH',
|
|
962
|
-
name: 'Western Sahara (الصحراء الغربية)',
|
|
963
|
-
priority: 1,
|
|
964
|
-
timezone: 'Africa/El_Aaiun',
|
|
965
|
-
},
|
|
966
|
-
ER: {
|
|
967
|
-
areaCodes: null,
|
|
968
|
-
currency: Currency.ERN,
|
|
969
|
-
dialCode: '291',
|
|
970
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/ER.png',
|
|
971
|
-
iso2: 'ER',
|
|
972
|
-
name: 'Eritrea',
|
|
973
|
-
priority: 0,
|
|
974
|
-
timezone: 'Africa/Asmara',
|
|
975
|
-
},
|
|
976
|
-
ES: {
|
|
977
|
-
areaCodes: null,
|
|
978
|
-
currency: Currency.EUR,
|
|
979
|
-
dialCode: '34',
|
|
980
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/ES.png',
|
|
981
|
-
iso2: 'ES',
|
|
982
|
-
name: 'Spain (España)',
|
|
983
|
-
priority: 0,
|
|
984
|
-
timezone: 'Europe/Madrid',
|
|
985
|
-
},
|
|
986
|
-
ET: {
|
|
987
|
-
areaCodes: null,
|
|
988
|
-
currency: Currency.ETB,
|
|
989
|
-
dialCode: '251',
|
|
990
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/ET.png',
|
|
991
|
-
iso2: 'ET',
|
|
992
|
-
name: 'Ethiopia',
|
|
993
|
-
priority: 0,
|
|
994
|
-
timezone: 'Africa/Addis_Ababa',
|
|
995
|
-
},
|
|
996
|
-
FI: {
|
|
997
|
-
areaCodes: null,
|
|
998
|
-
currency: Currency.EUR,
|
|
999
|
-
dialCode: '358',
|
|
1000
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/FI.png',
|
|
1001
|
-
iso2: 'FI',
|
|
1002
|
-
name: 'Finland (Suomi)',
|
|
1003
|
-
priority: 0,
|
|
1004
|
-
timezone: 'Europe/Helsinki',
|
|
1005
|
-
},
|
|
1006
|
-
FJ: {
|
|
1007
|
-
areaCodes: null,
|
|
1008
|
-
currency: Currency.FJD,
|
|
1009
|
-
dialCode: '679',
|
|
1010
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/FJ.png',
|
|
1011
|
-
iso2: 'FJ',
|
|
1012
|
-
name: 'Fiji',
|
|
1013
|
-
priority: 0,
|
|
1014
|
-
timezone: 'Pacific/Fiji',
|
|
1015
|
-
},
|
|
1016
|
-
FK: {
|
|
1017
|
-
areaCodes: null,
|
|
1018
|
-
currency: Currency.FKP,
|
|
1019
|
-
dialCode: '500',
|
|
1020
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/FK.png',
|
|
1021
|
-
iso2: 'FK',
|
|
1022
|
-
name: 'Falkland Islands (Islas Malvinas)',
|
|
1023
|
-
priority: 0,
|
|
1024
|
-
timezone: 'Atlantic/Stanley',
|
|
1025
|
-
},
|
|
1026
|
-
FM: {
|
|
1027
|
-
areaCodes: null,
|
|
1028
|
-
currency: Currency.USD,
|
|
1029
|
-
dialCode: '691',
|
|
1030
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/FM.png',
|
|
1031
|
-
iso2: 'FM',
|
|
1032
|
-
name: 'Micronesia',
|
|
1033
|
-
priority: 0,
|
|
1034
|
-
timezone: 'Etc/GMT-10',
|
|
1035
|
-
},
|
|
1036
|
-
FO: {
|
|
1037
|
-
areaCodes: null,
|
|
1038
|
-
currency: Currency.DKK,
|
|
1039
|
-
dialCode: '298',
|
|
1040
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/FO.png',
|
|
1041
|
-
iso2: 'FO',
|
|
1042
|
-
name: 'Faroe Islands (Føroyar)',
|
|
1043
|
-
priority: 0,
|
|
1044
|
-
timezone: 'Atlantic/Faroe',
|
|
1045
|
-
},
|
|
1046
|
-
FR: {
|
|
1047
|
-
areaCodes: null,
|
|
1048
|
-
currency: Currency.EUR,
|
|
1049
|
-
dialCode: '33',
|
|
1050
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/FR.png',
|
|
1051
|
-
iso2: 'FR',
|
|
1052
|
-
name: 'France',
|
|
1053
|
-
priority: 0,
|
|
1054
|
-
timezone: 'Europe/Paris',
|
|
1055
|
-
},
|
|
1056
|
-
GA: {
|
|
1057
|
-
areaCodes: null,
|
|
1058
|
-
currency: Currency.XAF,
|
|
1059
|
-
dialCode: '241',
|
|
1060
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GA.png',
|
|
1061
|
-
iso2: 'GA',
|
|
1062
|
-
name: 'Gabon',
|
|
1063
|
-
priority: 0,
|
|
1064
|
-
timezone: 'Africa/Libreville',
|
|
1065
|
-
},
|
|
1066
|
-
GB: {
|
|
1067
|
-
areaCodes: null,
|
|
1068
|
-
currency: Currency.GBP,
|
|
1069
|
-
dialCode: '44',
|
|
1070
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GB.png',
|
|
1071
|
-
iso2: 'GB',
|
|
1072
|
-
name: 'United Kingdom',
|
|
1073
|
-
priority: 0,
|
|
1074
|
-
timezone: 'Etc/GMT',
|
|
1075
|
-
},
|
|
1076
|
-
GD: {
|
|
1077
|
-
areaCodes: null,
|
|
1078
|
-
currency: Currency.XCD,
|
|
1079
|
-
dialCode: '1473',
|
|
1080
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GD.png',
|
|
1081
|
-
iso2: 'GD',
|
|
1082
|
-
name: 'Grenada',
|
|
1083
|
-
priority: 0,
|
|
1084
|
-
timezone: 'America/Grenada',
|
|
1085
|
-
},
|
|
1086
|
-
GE: {
|
|
1087
|
-
areaCodes: null,
|
|
1088
|
-
currency: Currency.GEL,
|
|
1089
|
-
dialCode: '995',
|
|
1090
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GE.png',
|
|
1091
|
-
iso2: 'GE',
|
|
1092
|
-
name: 'Georgia (საქართველო)',
|
|
1093
|
-
priority: 0,
|
|
1094
|
-
timezone: 'Asia/Tbilisi',
|
|
1095
|
-
},
|
|
1096
|
-
GF: {
|
|
1097
|
-
areaCodes: null,
|
|
1098
|
-
currency: Currency.EUR,
|
|
1099
|
-
dialCode: '594',
|
|
1100
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GF.png',
|
|
1101
|
-
iso2: 'GF',
|
|
1102
|
-
name: 'French Guiana (Guyane française)',
|
|
1103
|
-
priority: 0,
|
|
1104
|
-
timezone: 'America/Cayenne',
|
|
1105
|
-
},
|
|
1106
|
-
GG: {
|
|
1107
|
-
areaCodes: null,
|
|
1108
|
-
currency: Currency.GBP,
|
|
1109
|
-
dialCode: '44',
|
|
1110
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GG.png',
|
|
1111
|
-
iso2: 'GG',
|
|
1112
|
-
name: 'Guernsey',
|
|
1113
|
-
priority: 1,
|
|
1114
|
-
timezone: 'Europe/Guernsey',
|
|
1115
|
-
},
|
|
1116
|
-
GH: {
|
|
1117
|
-
areaCodes: null,
|
|
1118
|
-
currency: Currency.GHS,
|
|
1119
|
-
dialCode: '233',
|
|
1120
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GH.png',
|
|
1121
|
-
iso2: 'GH',
|
|
1122
|
-
name: 'Ghana (Gaana)',
|
|
1123
|
-
priority: 0,
|
|
1124
|
-
timezone: 'Africa/Accra',
|
|
1125
|
-
},
|
|
1126
|
-
GI: {
|
|
1127
|
-
areaCodes: null,
|
|
1128
|
-
currency: Currency.GIP,
|
|
1129
|
-
dialCode: '350',
|
|
1130
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GI.png',
|
|
1131
|
-
iso2: 'GI',
|
|
1132
|
-
name: 'Gibraltar',
|
|
1133
|
-
priority: 0,
|
|
1134
|
-
timezone: 'Europe/Gibraltar',
|
|
1135
|
-
},
|
|
1136
|
-
GL: {
|
|
1137
|
-
areaCodes: null,
|
|
1138
|
-
currency: Currency.DKK,
|
|
1139
|
-
dialCode: '299',
|
|
1140
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GL.png',
|
|
1141
|
-
iso2: 'GL',
|
|
1142
|
-
name: 'Greenland (Kalaallit Nunaat)',
|
|
1143
|
-
priority: 0,
|
|
1144
|
-
timezone: 'America/Godthab',
|
|
1145
|
-
},
|
|
1146
|
-
GM: {
|
|
1147
|
-
areaCodes: null,
|
|
1148
|
-
currency: Currency.GMD,
|
|
1149
|
-
dialCode: '220',
|
|
1150
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GM.png',
|
|
1151
|
-
iso2: 'GM',
|
|
1152
|
-
name: 'Gambia',
|
|
1153
|
-
priority: 0,
|
|
1154
|
-
timezone: 'Africa/Banjul',
|
|
1155
|
-
},
|
|
1156
|
-
GN: {
|
|
1157
|
-
areaCodes: null,
|
|
1158
|
-
currency: Currency.GNF,
|
|
1159
|
-
dialCode: '224',
|
|
1160
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GN.png',
|
|
1161
|
-
iso2: 'GN',
|
|
1162
|
-
name: 'Guinea (Guinée)',
|
|
1163
|
-
priority: 0,
|
|
1164
|
-
timezone: 'Africa/Conakry',
|
|
1165
|
-
},
|
|
1166
|
-
GP: {
|
|
1167
|
-
areaCodes: null,
|
|
1168
|
-
currency: Currency.EUR,
|
|
1169
|
-
dialCode: '590',
|
|
1170
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GP.png',
|
|
1171
|
-
iso2: 'GP',
|
|
1172
|
-
name: 'Guadeloupe',
|
|
1173
|
-
priority: 0,
|
|
1174
|
-
timezone: 'America/Guadeloupe',
|
|
1175
|
-
},
|
|
1176
|
-
GQ: {
|
|
1177
|
-
areaCodes: null,
|
|
1178
|
-
currency: Currency.XAF,
|
|
1179
|
-
dialCode: '240',
|
|
1180
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GQ.png',
|
|
1181
|
-
iso2: 'GQ',
|
|
1182
|
-
name: 'Equatorial Guinea (Guinea Ecuatorial)',
|
|
1183
|
-
priority: 0,
|
|
1184
|
-
timezone: 'Africa/Malabo',
|
|
1185
|
-
},
|
|
1186
|
-
GR: {
|
|
1187
|
-
areaCodes: null,
|
|
1188
|
-
currency: Currency.EUR,
|
|
1189
|
-
dialCode: '30',
|
|
1190
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GR.png',
|
|
1191
|
-
iso2: 'GR',
|
|
1192
|
-
name: 'Greece (Ελλάδα)',
|
|
1193
|
-
priority: 0,
|
|
1194
|
-
timezone: 'Europe/Athens',
|
|
1195
|
-
},
|
|
1196
|
-
GT: {
|
|
1197
|
-
areaCodes: null,
|
|
1198
|
-
currency: Currency.GTQ,
|
|
1199
|
-
dialCode: '502',
|
|
1200
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GT.png',
|
|
1201
|
-
iso2: 'GT',
|
|
1202
|
-
name: 'Guatemala',
|
|
1203
|
-
priority: 0,
|
|
1204
|
-
timezone: 'America/Guatemala',
|
|
1205
|
-
},
|
|
1206
|
-
GU: {
|
|
1207
|
-
areaCodes: null,
|
|
1208
|
-
currency: Currency.USD,
|
|
1209
|
-
dialCode: '1671',
|
|
1210
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GU.png',
|
|
1211
|
-
iso2: 'GU',
|
|
1212
|
-
name: 'Guam',
|
|
1213
|
-
priority: 0,
|
|
1214
|
-
timezone: 'Pacific/Guam',
|
|
1215
|
-
},
|
|
1216
|
-
GW: {
|
|
1217
|
-
areaCodes: null,
|
|
1218
|
-
currency: Currency.XOF,
|
|
1219
|
-
dialCode: '245',
|
|
1220
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GW.png',
|
|
1221
|
-
iso2: 'GW',
|
|
1222
|
-
name: 'Guinea-Bissau (Guiné Bissau)',
|
|
1223
|
-
priority: 0,
|
|
1224
|
-
timezone: 'Africa/Bissau',
|
|
1225
|
-
},
|
|
1226
|
-
GY: {
|
|
1227
|
-
areaCodes: null,
|
|
1228
|
-
currency: Currency.GYD,
|
|
1229
|
-
dialCode: '592',
|
|
1230
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GY.png',
|
|
1231
|
-
iso2: 'GY',
|
|
1232
|
-
name: 'Guyana',
|
|
1233
|
-
priority: 0,
|
|
1234
|
-
timezone: 'America/Guyana',
|
|
1235
|
-
},
|
|
1236
|
-
HK: {
|
|
1237
|
-
areaCodes: null,
|
|
1238
|
-
currency: Currency.HKD,
|
|
1239
|
-
dialCode: '852',
|
|
1240
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/HK.png',
|
|
1241
|
-
iso2: 'HK',
|
|
1242
|
-
name: 'Hong Kong (香港)',
|
|
1243
|
-
priority: 0,
|
|
1244
|
-
timezone: 'Asia/Hong_Kong',
|
|
1245
|
-
},
|
|
1246
|
-
HN: {
|
|
1247
|
-
areaCodes: null,
|
|
1248
|
-
currency: Currency.HNL,
|
|
1249
|
-
dialCode: '504',
|
|
1250
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/HN.png',
|
|
1251
|
-
iso2: 'HN',
|
|
1252
|
-
name: 'Honduras',
|
|
1253
|
-
priority: 0,
|
|
1254
|
-
timezone: 'America/Tegucigalpa',
|
|
1255
|
-
},
|
|
1256
|
-
HR: {
|
|
1257
|
-
areaCodes: null,
|
|
1258
|
-
currency: Currency.EUR,
|
|
1259
|
-
dialCode: '385',
|
|
1260
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/HR.png',
|
|
1261
|
-
iso2: 'HR',
|
|
1262
|
-
name: 'Croatia (Hrvatska)',
|
|
1263
|
-
priority: 0,
|
|
1264
|
-
timezone: 'Europe/Zagreb',
|
|
1265
|
-
},
|
|
1266
|
-
HT: {
|
|
1267
|
-
areaCodes: null,
|
|
1268
|
-
currency: Currency.HTG,
|
|
1269
|
-
dialCode: '509',
|
|
1270
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/HT.png',
|
|
1271
|
-
iso2: 'HT',
|
|
1272
|
-
name: 'Haiti',
|
|
1273
|
-
priority: 0,
|
|
1274
|
-
timezone: 'America/Port-au-Prince',
|
|
1275
|
-
},
|
|
1276
|
-
HU: {
|
|
1277
|
-
areaCodes: null,
|
|
1278
|
-
currency: Currency.HUF,
|
|
1279
|
-
dialCode: '36',
|
|
1280
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/HU.png',
|
|
1281
|
-
iso2: 'HU',
|
|
1282
|
-
name: 'Hungary (Magyarország)',
|
|
1283
|
-
priority: 0,
|
|
1284
|
-
timezone: 'Europe/Budapest',
|
|
1285
|
-
},
|
|
1286
|
-
ID: {
|
|
1287
|
-
areaCodes: null,
|
|
1288
|
-
currency: Currency.IDR,
|
|
1289
|
-
dialCode: '62',
|
|
1290
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/ID.png',
|
|
1291
|
-
iso2: 'ID',
|
|
1292
|
-
name: 'Indonesia',
|
|
1293
|
-
priority: 0,
|
|
1294
|
-
timezone: 'Asia/Makassar',
|
|
1295
|
-
},
|
|
1296
|
-
IE: {
|
|
1297
|
-
areaCodes: null,
|
|
1298
|
-
currency: Currency.EUR,
|
|
1299
|
-
dialCode: '353',
|
|
1300
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/IE.png',
|
|
1301
|
-
iso2: 'IE',
|
|
1302
|
-
name: 'Ireland',
|
|
1303
|
-
priority: 0,
|
|
1304
|
-
timezone: 'Europe/Dublin',
|
|
1305
|
-
},
|
|
1306
|
-
IL: {
|
|
1307
|
-
areaCodes: null,
|
|
1308
|
-
currency: Currency.ILS,
|
|
1309
|
-
dialCode: '972',
|
|
1310
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/IL.png',
|
|
1311
|
-
iso2: 'IL',
|
|
1312
|
-
name: 'Israel (ישראל)',
|
|
1313
|
-
priority: 0,
|
|
1314
|
-
timezone: 'Asia/Jerusalem',
|
|
1315
|
-
},
|
|
1316
|
-
IM: {
|
|
1317
|
-
areaCodes: null,
|
|
1318
|
-
currency: Currency.GBP,
|
|
1319
|
-
dialCode: '44',
|
|
1320
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/IM.png',
|
|
1321
|
-
iso2: 'IM',
|
|
1322
|
-
name: 'Isle of Man',
|
|
1323
|
-
priority: 2,
|
|
1324
|
-
timezone: 'Europe/Isle_of_Man',
|
|
1325
|
-
},
|
|
1326
|
-
IN: {
|
|
1327
|
-
areaCodes: null,
|
|
1328
|
-
currency: Currency.INR,
|
|
1329
|
-
dialCode: '91',
|
|
1330
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/IN.png',
|
|
1331
|
-
iso2: 'IN',
|
|
1332
|
-
name: 'India (भारत)',
|
|
1333
|
-
priority: 0,
|
|
1334
|
-
timezone: 'Asia/Kolkata',
|
|
1335
|
-
},
|
|
1336
|
-
IO: {
|
|
1337
|
-
areaCodes: null,
|
|
1338
|
-
currency: Currency.USD,
|
|
1339
|
-
dialCode: '246',
|
|
1340
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/IO.png',
|
|
1341
|
-
iso2: 'IO',
|
|
1342
|
-
name: 'British Indian Ocean Territory',
|
|
1343
|
-
priority: 0,
|
|
1344
|
-
timezone: 'Etc/GMT-5',
|
|
1345
|
-
},
|
|
1346
|
-
IQ: {
|
|
1347
|
-
areaCodes: null,
|
|
1348
|
-
currency: Currency.IQD,
|
|
1349
|
-
dialCode: '964',
|
|
1350
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/IQ.png',
|
|
1351
|
-
iso2: 'IQ',
|
|
1352
|
-
name: 'Iraq (العراق)',
|
|
1353
|
-
priority: 0,
|
|
1354
|
-
timezone: 'Asia/Baghdad',
|
|
1355
|
-
},
|
|
1356
|
-
IR: {
|
|
1357
|
-
areaCodes: null,
|
|
1358
|
-
currency: Currency.IRR,
|
|
1359
|
-
dialCode: '98',
|
|
1360
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/IR.png',
|
|
1361
|
-
iso2: 'IR',
|
|
1362
|
-
name: 'Iran (ایران)',
|
|
1363
|
-
priority: 0,
|
|
1364
|
-
timezone: 'Asia/Tehran',
|
|
1365
|
-
},
|
|
1366
|
-
IS: {
|
|
1367
|
-
areaCodes: null,
|
|
1368
|
-
currency: Currency.ISK,
|
|
1369
|
-
dialCode: '354',
|
|
1370
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/IS.png',
|
|
1371
|
-
iso2: 'IS',
|
|
1372
|
-
name: 'Iceland (Ísland)',
|
|
1373
|
-
priority: 0,
|
|
1374
|
-
timezone: 'Atlantic/Reykjavik',
|
|
1375
|
-
},
|
|
1376
|
-
IT: {
|
|
1377
|
-
areaCodes: null,
|
|
1378
|
-
currency: Currency.EUR,
|
|
1379
|
-
dialCode: '39',
|
|
1380
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/IT.png',
|
|
1381
|
-
iso2: 'IT',
|
|
1382
|
-
name: 'Italy (Italia)',
|
|
1383
|
-
priority: 0,
|
|
1384
|
-
timezone: 'Europe/Rome',
|
|
1385
|
-
},
|
|
1386
|
-
JE: {
|
|
1387
|
-
areaCodes: null,
|
|
1388
|
-
currency: Currency.GBP,
|
|
1389
|
-
dialCode: '44',
|
|
1390
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/JE.png',
|
|
1391
|
-
iso2: 'JE',
|
|
1392
|
-
name: 'Jersey',
|
|
1393
|
-
priority: 3,
|
|
1394
|
-
timezone: 'Europe/Jersey',
|
|
1395
|
-
},
|
|
1396
|
-
JM: {
|
|
1397
|
-
areaCodes: null,
|
|
1398
|
-
currency: Currency.JMD,
|
|
1399
|
-
dialCode: '1876',
|
|
1400
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/JM.png',
|
|
1401
|
-
iso2: 'JM',
|
|
1402
|
-
name: 'Jamaica',
|
|
1403
|
-
priority: 0,
|
|
1404
|
-
timezone: 'America/Jamaica',
|
|
1405
|
-
},
|
|
1406
|
-
JO: {
|
|
1407
|
-
areaCodes: null,
|
|
1408
|
-
currency: Currency.JOD,
|
|
1409
|
-
dialCode: '962',
|
|
1410
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/JO.png',
|
|
1411
|
-
iso2: 'JO',
|
|
1412
|
-
name: 'Jordan (الأردن)',
|
|
1413
|
-
priority: 0,
|
|
1414
|
-
timezone: 'Asia/Amman',
|
|
1415
|
-
},
|
|
1416
|
-
JP: {
|
|
1417
|
-
areaCodes: null,
|
|
1418
|
-
currency: Currency.JPY,
|
|
1419
|
-
dialCode: '81',
|
|
1420
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/JP.png',
|
|
1421
|
-
iso2: 'JP',
|
|
1422
|
-
name: 'Japan (日本)',
|
|
1423
|
-
priority: 0,
|
|
1424
|
-
timezone: 'Asia/Tokyo',
|
|
1425
|
-
},
|
|
1426
|
-
KE: {
|
|
1427
|
-
areaCodes: null,
|
|
1428
|
-
currency: Currency.KES,
|
|
1429
|
-
dialCode: '254',
|
|
1430
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/KE.png',
|
|
1431
|
-
iso2: 'KE',
|
|
1432
|
-
name: 'Kenya',
|
|
1433
|
-
priority: 0,
|
|
1434
|
-
timezone: 'Africa/Nairobi',
|
|
1435
|
-
},
|
|
1436
|
-
KG: {
|
|
1437
|
-
areaCodes: null,
|
|
1438
|
-
currency: Currency.KGS,
|
|
1439
|
-
dialCode: '996',
|
|
1440
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/KG.png',
|
|
1441
|
-
iso2: 'KG',
|
|
1442
|
-
name: 'Kyrgyzstan (Кыргызстан)',
|
|
1443
|
-
priority: 0,
|
|
1444
|
-
timezone: 'Asia/Bishkek',
|
|
1445
|
-
},
|
|
1446
|
-
KH: {
|
|
1447
|
-
areaCodes: null,
|
|
1448
|
-
currency: Currency.KHR,
|
|
1449
|
-
dialCode: '855',
|
|
1450
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/KH.png',
|
|
1451
|
-
iso2: 'KH',
|
|
1452
|
-
name: 'Cambodia (កម្ពុជា)',
|
|
1453
|
-
priority: 0,
|
|
1454
|
-
timezone: 'Asia/Phnom_Penh',
|
|
1455
|
-
},
|
|
1456
|
-
KI: {
|
|
1457
|
-
areaCodes: null,
|
|
1458
|
-
currency: Currency.AUD,
|
|
1459
|
-
dialCode: '686',
|
|
1460
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/KI.png',
|
|
1461
|
-
iso2: 'KI',
|
|
1462
|
-
name: 'Kiribati',
|
|
1463
|
-
priority: 0,
|
|
1464
|
-
timezone: 'Etc/GMT+11',
|
|
1465
|
-
},
|
|
1466
|
-
KM: {
|
|
1467
|
-
areaCodes: null,
|
|
1468
|
-
currency: Currency.KMF,
|
|
1469
|
-
dialCode: '269',
|
|
1470
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/KM.png',
|
|
1471
|
-
iso2: 'KM',
|
|
1472
|
-
name: 'Comoros (جزر القمر)',
|
|
1473
|
-
priority: 0,
|
|
1474
|
-
timezone: 'Indian/Comoro',
|
|
1475
|
-
},
|
|
1476
|
-
KN: {
|
|
1477
|
-
areaCodes: null,
|
|
1478
|
-
currency: Currency.XCD,
|
|
1479
|
-
dialCode: '1869',
|
|
1480
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/KN.png',
|
|
1481
|
-
iso2: 'KN',
|
|
1482
|
-
name: 'Saint Kitts and Nevis',
|
|
1483
|
-
priority: 0,
|
|
1484
|
-
timezone: 'America/St_Kitts',
|
|
1485
|
-
},
|
|
1486
|
-
KP: {
|
|
1487
|
-
areaCodes: null,
|
|
1488
|
-
currency: Currency.KPW,
|
|
1489
|
-
dialCode: '850',
|
|
1490
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/KP.png',
|
|
1491
|
-
iso2: 'KP',
|
|
1492
|
-
name: 'North Korea (조선 민주주의 인민 공화국)',
|
|
1493
|
-
priority: 0,
|
|
1494
|
-
timezone: 'Asia/Pyongyang',
|
|
1495
|
-
},
|
|
1496
|
-
KR: {
|
|
1497
|
-
areaCodes: null,
|
|
1498
|
-
currency: Currency.KRW,
|
|
1499
|
-
dialCode: '82',
|
|
1500
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/KR.png',
|
|
1501
|
-
iso2: 'KR',
|
|
1502
|
-
name: 'South Korea (대한민국)',
|
|
1503
|
-
priority: 0,
|
|
1504
|
-
timezone: 'Asia/Seoul',
|
|
1505
|
-
},
|
|
1506
|
-
KW: {
|
|
1507
|
-
areaCodes: null,
|
|
1508
|
-
currency: Currency.KWD,
|
|
1509
|
-
dialCode: '965',
|
|
1510
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/KW.png',
|
|
1511
|
-
iso2: 'KW',
|
|
1512
|
-
name: 'Kuwait (الكويت)',
|
|
1513
|
-
priority: 0,
|
|
1514
|
-
timezone: 'Asia/Kuwait',
|
|
1515
|
-
},
|
|
1516
|
-
KY: {
|
|
1517
|
-
areaCodes: null,
|
|
1518
|
-
currency: Currency.KYD,
|
|
1519
|
-
dialCode: '1345',
|
|
1520
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/KY.png',
|
|
1521
|
-
iso2: 'KY',
|
|
1522
|
-
name: 'Cayman Islands',
|
|
1523
|
-
priority: 0,
|
|
1524
|
-
timezone: 'Etc/GMT+5',
|
|
1525
|
-
},
|
|
1526
|
-
KZ: {
|
|
1527
|
-
areaCodes: null,
|
|
1528
|
-
currency: Currency.KZT,
|
|
1529
|
-
dialCode: '7',
|
|
1530
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/KZ.png',
|
|
1531
|
-
iso2: 'KZ',
|
|
1532
|
-
name: 'Kazakhstan (Казахстан)',
|
|
1533
|
-
priority: 1,
|
|
1534
|
-
timezone: 'Asia/Almaty',
|
|
1535
|
-
},
|
|
1536
|
-
LA: {
|
|
1537
|
-
areaCodes: null,
|
|
1538
|
-
currency: Currency.LAK,
|
|
1539
|
-
dialCode: '856',
|
|
1540
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/LA.png',
|
|
1541
|
-
iso2: 'LA',
|
|
1542
|
-
name: 'Laos (ລາວ)',
|
|
1543
|
-
priority: 0,
|
|
1544
|
-
timezone: 'Asia/Vientiane',
|
|
1545
|
-
},
|
|
1546
|
-
LB: {
|
|
1547
|
-
areaCodes: null,
|
|
1548
|
-
currency: Currency.LBP,
|
|
1549
|
-
dialCode: '961',
|
|
1550
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/LB.png',
|
|
1551
|
-
iso2: 'LB',
|
|
1552
|
-
name: 'Lebanon (لبنان)',
|
|
1553
|
-
priority: 0,
|
|
1554
|
-
timezone: 'Asia/Beirut',
|
|
1555
|
-
},
|
|
1556
|
-
LC: {
|
|
1557
|
-
areaCodes: null,
|
|
1558
|
-
currency: Currency.XCD,
|
|
1559
|
-
dialCode: '1758',
|
|
1560
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/LC.png',
|
|
1561
|
-
iso2: 'LC',
|
|
1562
|
-
name: 'Saint Lucia',
|
|
1563
|
-
priority: 0,
|
|
1564
|
-
timezone: 'America/St_Lucia',
|
|
1565
|
-
},
|
|
1566
|
-
LI: {
|
|
1567
|
-
areaCodes: null,
|
|
1568
|
-
currency: Currency.CHF,
|
|
1569
|
-
dialCode: '423',
|
|
1570
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/LI.png',
|
|
1571
|
-
iso2: 'LI',
|
|
1572
|
-
name: 'Liechtenstein',
|
|
1573
|
-
priority: 0,
|
|
1574
|
-
timezone: 'Europe/Vaduz',
|
|
1575
|
-
},
|
|
1576
|
-
LK: {
|
|
1577
|
-
areaCodes: null,
|
|
1578
|
-
currency: Currency.LKR,
|
|
1579
|
-
dialCode: '94',
|
|
1580
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/LK.png',
|
|
1581
|
-
iso2: 'LK',
|
|
1582
|
-
name: 'Sri Lanka (ශ්රී ලංකාව)',
|
|
1583
|
-
priority: 0,
|
|
1584
|
-
timezone: 'Asia/Colombo',
|
|
1585
|
-
},
|
|
1586
|
-
LR: {
|
|
1587
|
-
areaCodes: null,
|
|
1588
|
-
currency: Currency.LRD,
|
|
1589
|
-
dialCode: '231',
|
|
1590
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/LR.png',
|
|
1591
|
-
iso2: 'LR',
|
|
1592
|
-
name: 'Liberia',
|
|
1593
|
-
priority: 0,
|
|
1594
|
-
timezone: 'Africa/Monrovia',
|
|
1595
|
-
},
|
|
1596
|
-
LS: {
|
|
1597
|
-
areaCodes: null,
|
|
1598
|
-
currency: Currency.LSL,
|
|
1599
|
-
dialCode: '266',
|
|
1600
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/LS.png',
|
|
1601
|
-
iso2: 'LS',
|
|
1602
|
-
name: 'Lesotho',
|
|
1603
|
-
priority: 0,
|
|
1604
|
-
timezone: 'Africa/Maseru',
|
|
1605
|
-
},
|
|
1606
|
-
LT: {
|
|
1607
|
-
areaCodes: null,
|
|
1608
|
-
currency: Currency.EUR,
|
|
1609
|
-
dialCode: '370',
|
|
1610
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/LT.png',
|
|
1611
|
-
iso2: 'LT',
|
|
1612
|
-
name: 'Lithuania (Lietuva)',
|
|
1613
|
-
priority: 0,
|
|
1614
|
-
timezone: 'Europe/Vilnius',
|
|
1615
|
-
},
|
|
1616
|
-
LU: {
|
|
1617
|
-
areaCodes: null,
|
|
1618
|
-
currency: Currency.EUR,
|
|
1619
|
-
dialCode: '352',
|
|
1620
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/LU.png',
|
|
1621
|
-
iso2: 'LU',
|
|
1622
|
-
name: 'Luxembourg',
|
|
1623
|
-
priority: 0,
|
|
1624
|
-
timezone: 'Europe/Luxembourg',
|
|
1625
|
-
},
|
|
1626
|
-
LV: {
|
|
1627
|
-
areaCodes: null,
|
|
1628
|
-
currency: Currency.EUR,
|
|
1629
|
-
dialCode: '371',
|
|
1630
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/LV.png',
|
|
1631
|
-
iso2: 'LV',
|
|
1632
|
-
name: 'Latvia (Latvija)',
|
|
1633
|
-
priority: 0,
|
|
1634
|
-
timezone: 'Europe/Riga',
|
|
1635
|
-
},
|
|
1636
|
-
LY: {
|
|
1637
|
-
areaCodes: null,
|
|
1638
|
-
currency: Currency.LYD,
|
|
1639
|
-
dialCode: '218',
|
|
1640
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/LY.png',
|
|
1641
|
-
iso2: 'LY',
|
|
1642
|
-
name: 'Libya (ليبيا)',
|
|
1643
|
-
priority: 0,
|
|
1644
|
-
timezone: 'Africa/Tripoli',
|
|
1645
|
-
},
|
|
1646
|
-
MA: {
|
|
1647
|
-
areaCodes: null,
|
|
1648
|
-
currency: Currency.MAD,
|
|
1649
|
-
dialCode: '212',
|
|
1650
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MA.png',
|
|
1651
|
-
iso2: 'MA',
|
|
1652
|
-
name: 'Morocco (المغرب)',
|
|
1653
|
-
priority: 0,
|
|
1654
|
-
timezone: 'Africa/Casablanca',
|
|
1655
|
-
},
|
|
1656
|
-
MC: {
|
|
1657
|
-
areaCodes: null,
|
|
1658
|
-
currency: Currency.EUR,
|
|
1659
|
-
dialCode: '377',
|
|
1660
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MC.png',
|
|
1661
|
-
iso2: 'MC',
|
|
1662
|
-
name: 'Monaco',
|
|
1663
|
-
priority: 0,
|
|
1664
|
-
timezone: 'Europe/Paris',
|
|
1665
|
-
},
|
|
1666
|
-
MD: {
|
|
1667
|
-
areaCodes: null,
|
|
1668
|
-
currency: Currency.MDL,
|
|
1669
|
-
dialCode: '373',
|
|
1670
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MD.png',
|
|
1671
|
-
iso2: 'MD',
|
|
1672
|
-
name: 'Moldova (Republica Moldova)',
|
|
1673
|
-
priority: 0,
|
|
1674
|
-
timezone: 'Europe/Chisinau',
|
|
1675
|
-
},
|
|
1676
|
-
ME: {
|
|
1677
|
-
areaCodes: null,
|
|
1678
|
-
currency: Currency.EUR,
|
|
1679
|
-
dialCode: '382',
|
|
1680
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/ME.png',
|
|
1681
|
-
iso2: 'ME',
|
|
1682
|
-
name: 'Montenegro (Crna Gora)',
|
|
1683
|
-
priority: 0,
|
|
1684
|
-
timezone: 'Europe/Podgorica',
|
|
1685
|
-
},
|
|
1686
|
-
MF: {
|
|
1687
|
-
areaCodes: null,
|
|
1688
|
-
currency: Currency.EUR,
|
|
1689
|
-
dialCode: '590',
|
|
1690
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MF.png',
|
|
1691
|
-
iso2: 'MF',
|
|
1692
|
-
name: 'Saint Martin (Saint-Martin (partie française))',
|
|
1693
|
-
priority: 2,
|
|
1694
|
-
timezone: 'America/Marigot',
|
|
1695
|
-
},
|
|
1696
|
-
MG: {
|
|
1697
|
-
areaCodes: null,
|
|
1698
|
-
currency: Currency.MGA,
|
|
1699
|
-
dialCode: '261',
|
|
1700
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MG.png',
|
|
1701
|
-
iso2: 'MG',
|
|
1702
|
-
name: 'Madagascar (Madagasikara)',
|
|
1703
|
-
priority: 0,
|
|
1704
|
-
timezone: 'Indian/Antananarivo',
|
|
1705
|
-
},
|
|
1706
|
-
MH: {
|
|
1707
|
-
areaCodes: null,
|
|
1708
|
-
currency: Currency.USD,
|
|
1709
|
-
dialCode: '692',
|
|
1710
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MH.png',
|
|
1711
|
-
iso2: 'MH',
|
|
1712
|
-
name: 'Marshall Islands',
|
|
1713
|
-
priority: 0,
|
|
1714
|
-
timezone: 'Etc/GMT-11',
|
|
1715
|
-
},
|
|
1716
|
-
MK: {
|
|
1717
|
-
areaCodes: null,
|
|
1718
|
-
currency: Currency.MKD,
|
|
1719
|
-
dialCode: '389',
|
|
1720
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MK.png',
|
|
1721
|
-
iso2: 'MK',
|
|
1722
|
-
name: 'Macedonia (FYROM) (Македонија)',
|
|
1723
|
-
priority: 0,
|
|
1724
|
-
timezone: 'Europe/Skopje',
|
|
1725
|
-
},
|
|
1726
|
-
ML: {
|
|
1727
|
-
areaCodes: null,
|
|
1728
|
-
currency: Currency.XOF,
|
|
1729
|
-
dialCode: '223',
|
|
1730
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/ML.png',
|
|
1731
|
-
iso2: 'ML',
|
|
1732
|
-
name: 'Mali',
|
|
1733
|
-
priority: 0,
|
|
1734
|
-
timezone: 'Africa/Bamako',
|
|
1735
|
-
},
|
|
1736
|
-
MM: {
|
|
1737
|
-
areaCodes: null,
|
|
1738
|
-
currency: Currency.MMK,
|
|
1739
|
-
dialCode: '95',
|
|
1740
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MM.png',
|
|
1741
|
-
iso2: 'MM',
|
|
1742
|
-
name: 'Myanmar (Burma) (မြန်မာ)',
|
|
1743
|
-
priority: 0,
|
|
1744
|
-
timezone: 'Asia/Yangon',
|
|
1745
|
-
},
|
|
1746
|
-
MN: {
|
|
1747
|
-
areaCodes: null,
|
|
1748
|
-
currency: Currency.MNT,
|
|
1749
|
-
dialCode: '976',
|
|
1750
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MN.png',
|
|
1751
|
-
iso2: 'MN',
|
|
1752
|
-
name: 'Mongolia (Монгол)',
|
|
1753
|
-
priority: 0,
|
|
1754
|
-
timezone: 'Asia/Ulaanbaatar',
|
|
1755
|
-
},
|
|
1756
|
-
MO: {
|
|
1757
|
-
areaCodes: null,
|
|
1758
|
-
currency: Currency.MOP,
|
|
1759
|
-
dialCode: '853',
|
|
1760
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MO.png',
|
|
1761
|
-
iso2: 'MO',
|
|
1762
|
-
name: 'Macau (澳門)',
|
|
1763
|
-
priority: 0,
|
|
1764
|
-
timezone: 'Asia/Macau',
|
|
1765
|
-
},
|
|
1766
|
-
MP: {
|
|
1767
|
-
areaCodes: null,
|
|
1768
|
-
currency: Currency.USD,
|
|
1769
|
-
dialCode: '1670',
|
|
1770
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MP.png',
|
|
1771
|
-
iso2: 'MP',
|
|
1772
|
-
name: 'Northern Mariana Islands',
|
|
1773
|
-
priority: 0,
|
|
1774
|
-
timezone: 'Pacific/Saipan',
|
|
1775
|
-
},
|
|
1776
|
-
MQ: {
|
|
1777
|
-
areaCodes: null,
|
|
1778
|
-
currency: Currency.EUR,
|
|
1779
|
-
dialCode: '596',
|
|
1780
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MQ.png',
|
|
1781
|
-
iso2: 'MQ',
|
|
1782
|
-
name: 'Martinique',
|
|
1783
|
-
priority: 0,
|
|
1784
|
-
timezone: 'America/Martinique',
|
|
1785
|
-
},
|
|
1786
|
-
MR: {
|
|
1787
|
-
areaCodes: null,
|
|
1788
|
-
currency: Currency.MRU,
|
|
1789
|
-
dialCode: '222',
|
|
1790
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MR.png',
|
|
1791
|
-
iso2: 'MR',
|
|
1792
|
-
name: 'Mauritania (موريتانيا)',
|
|
1793
|
-
priority: 0,
|
|
1794
|
-
timezone: 'Africa/Nouakchott',
|
|
1795
|
-
},
|
|
1796
|
-
MS: {
|
|
1797
|
-
areaCodes: null,
|
|
1798
|
-
currency: Currency.XCD,
|
|
1799
|
-
dialCode: '1664',
|
|
1800
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MS.png',
|
|
1801
|
-
iso2: 'MS',
|
|
1802
|
-
name: 'Montserrat',
|
|
1803
|
-
priority: 0,
|
|
1804
|
-
timezone: 'America/Montserrat',
|
|
1805
|
-
},
|
|
1806
|
-
MT: {
|
|
1807
|
-
areaCodes: null,
|
|
1808
|
-
currency: Currency.EUR,
|
|
1809
|
-
dialCode: '356',
|
|
1810
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MT.png',
|
|
1811
|
-
iso2: 'MT',
|
|
1812
|
-
name: 'Malta',
|
|
1813
|
-
priority: 0,
|
|
1814
|
-
timezone: 'Europe/Malta',
|
|
1815
|
-
},
|
|
1816
|
-
MU: {
|
|
1817
|
-
areaCodes: null,
|
|
1818
|
-
currency: Currency.MUR,
|
|
1819
|
-
dialCode: '230',
|
|
1820
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MU.png',
|
|
1821
|
-
iso2: 'MU',
|
|
1822
|
-
name: 'Mauritius (Moris)',
|
|
1823
|
-
priority: 0,
|
|
1824
|
-
timezone: 'Indian/Mauritius',
|
|
1825
|
-
},
|
|
1826
|
-
MV: {
|
|
1827
|
-
areaCodes: null,
|
|
1828
|
-
currency: Currency.MVR,
|
|
1829
|
-
dialCode: '960',
|
|
1830
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MV.png',
|
|
1831
|
-
iso2: 'MV',
|
|
1832
|
-
name: 'Maldives',
|
|
1833
|
-
priority: 0,
|
|
1834
|
-
timezone: 'Indian/Maldives',
|
|
1835
|
-
},
|
|
1836
|
-
MW: {
|
|
1837
|
-
areaCodes: null,
|
|
1838
|
-
currency: Currency.MWK,
|
|
1839
|
-
dialCode: '265',
|
|
1840
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MW.png',
|
|
1841
|
-
iso2: 'MW',
|
|
1842
|
-
name: 'Malawi',
|
|
1843
|
-
priority: 0,
|
|
1844
|
-
timezone: 'Africa/Blantyre',
|
|
1845
|
-
},
|
|
1846
|
-
MX: {
|
|
1847
|
-
areaCodes: null,
|
|
1848
|
-
currency: Currency.MXN,
|
|
1849
|
-
dialCode: '52',
|
|
1850
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MX.png',
|
|
1851
|
-
iso2: 'MX',
|
|
1852
|
-
name: 'Mexico (México)',
|
|
1853
|
-
priority: 0,
|
|
1854
|
-
timezone: 'America/Mexico_City',
|
|
1855
|
-
},
|
|
1856
|
-
MY: {
|
|
1857
|
-
areaCodes: null,
|
|
1858
|
-
currency: Currency.MYR,
|
|
1859
|
-
dialCode: '60',
|
|
1860
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MY.png',
|
|
1861
|
-
iso2: 'MY',
|
|
1862
|
-
name: 'Malaysia',
|
|
1863
|
-
priority: 0,
|
|
1864
|
-
timezone: 'Asia/Kuching',
|
|
1865
|
-
},
|
|
1866
|
-
MZ: {
|
|
1867
|
-
areaCodes: null,
|
|
1868
|
-
currency: Currency.MZN,
|
|
1869
|
-
dialCode: '258',
|
|
1870
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MZ.png',
|
|
1871
|
-
iso2: 'MZ',
|
|
1872
|
-
name: 'Mozambique (Moçambique)',
|
|
1873
|
-
priority: 0,
|
|
1874
|
-
timezone: 'Africa/Maputo',
|
|
1875
|
-
},
|
|
1876
|
-
NA: {
|
|
1877
|
-
areaCodes: null,
|
|
1878
|
-
currency: Currency.NAD,
|
|
1879
|
-
dialCode: '264',
|
|
1880
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/NA.png',
|
|
1881
|
-
iso2: 'NA',
|
|
1882
|
-
name: 'Namibia (Namibië)',
|
|
1883
|
-
priority: 0,
|
|
1884
|
-
timezone: 'Africa/Windhoek',
|
|
1885
|
-
},
|
|
1886
|
-
NC: {
|
|
1887
|
-
areaCodes: null,
|
|
1888
|
-
currency: Currency.XPF,
|
|
1889
|
-
dialCode: '687',
|
|
1890
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/NC.png',
|
|
1891
|
-
iso2: 'NC',
|
|
1892
|
-
name: 'New Caledonia (Nouvelle-Calédonie)',
|
|
1893
|
-
priority: 0,
|
|
1894
|
-
timezone: 'Pacific/Noumea',
|
|
1895
|
-
},
|
|
1896
|
-
NE: {
|
|
1897
|
-
areaCodes: null,
|
|
1898
|
-
currency: Currency.XOF,
|
|
1899
|
-
dialCode: '227',
|
|
1900
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/NE.png',
|
|
1901
|
-
iso2: 'NE',
|
|
1902
|
-
name: 'Niger (Nijar)',
|
|
1903
|
-
priority: 0,
|
|
1904
|
-
timezone: 'Africa/Niamey',
|
|
1905
|
-
},
|
|
1906
|
-
NF: {
|
|
1907
|
-
areaCodes: null,
|
|
1908
|
-
currency: Currency.AUD,
|
|
1909
|
-
dialCode: '672',
|
|
1910
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/NF.png',
|
|
1911
|
-
iso2: 'NF',
|
|
1912
|
-
name: 'Norfolk Island',
|
|
1913
|
-
priority: 0,
|
|
1914
|
-
timezone: 'Pacific/Norfolk',
|
|
1915
|
-
},
|
|
1916
|
-
NG: {
|
|
1917
|
-
areaCodes: null,
|
|
1918
|
-
currency: Currency.NGN,
|
|
1919
|
-
dialCode: '234',
|
|
1920
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/NG.png',
|
|
1921
|
-
iso2: 'NG',
|
|
1922
|
-
name: 'Nigeria',
|
|
1923
|
-
priority: 0,
|
|
1924
|
-
timezone: 'Africa/Lagos',
|
|
1925
|
-
},
|
|
1926
|
-
NI: {
|
|
1927
|
-
areaCodes: null,
|
|
1928
|
-
currency: Currency.NIO,
|
|
1929
|
-
dialCode: '505',
|
|
1930
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/NI.png',
|
|
1931
|
-
iso2: 'NI',
|
|
1932
|
-
name: 'Nicaragua',
|
|
1933
|
-
priority: 0,
|
|
1934
|
-
timezone: 'America/Managua',
|
|
1935
|
-
},
|
|
1936
|
-
NL: {
|
|
1937
|
-
areaCodes: null,
|
|
1938
|
-
currency: Currency.EUR,
|
|
1939
|
-
dialCode: '31',
|
|
1940
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/NL.png',
|
|
1941
|
-
iso2: 'NL',
|
|
1942
|
-
name: 'Netherlands (Nederland)',
|
|
1943
|
-
priority: 0,
|
|
1944
|
-
timezone: 'Europe/Amsterdam',
|
|
1945
|
-
},
|
|
1946
|
-
NO: {
|
|
1947
|
-
areaCodes: null,
|
|
1948
|
-
currency: Currency.NOK,
|
|
1949
|
-
dialCode: '47',
|
|
1950
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/NO.png',
|
|
1951
|
-
iso2: 'NO',
|
|
1952
|
-
name: 'Norway (Norge)',
|
|
1953
|
-
priority: 0,
|
|
1954
|
-
timezone: 'Europe/Oslo',
|
|
1955
|
-
},
|
|
1956
|
-
NP: {
|
|
1957
|
-
areaCodes: null,
|
|
1958
|
-
currency: Currency.NPR,
|
|
1959
|
-
dialCode: '977',
|
|
1960
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/NP.png',
|
|
1961
|
-
iso2: 'NP',
|
|
1962
|
-
name: 'Nepal (नेपाल)',
|
|
1963
|
-
priority: 0,
|
|
1964
|
-
timezone: 'Asia/Kathmandu',
|
|
1965
|
-
},
|
|
1966
|
-
NR: {
|
|
1967
|
-
areaCodes: null,
|
|
1968
|
-
currency: Currency.AUD,
|
|
1969
|
-
dialCode: '674',
|
|
1970
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/NR.png',
|
|
1971
|
-
iso2: 'NR',
|
|
1972
|
-
name: 'Nauru',
|
|
1973
|
-
priority: 0,
|
|
1974
|
-
timezone: 'Pacific/Nauru',
|
|
1975
|
-
},
|
|
1976
|
-
NU: {
|
|
1977
|
-
areaCodes: null,
|
|
1978
|
-
currency: Currency.NZD,
|
|
1979
|
-
dialCode: '683',
|
|
1980
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/NU.png',
|
|
1981
|
-
iso2: 'NU',
|
|
1982
|
-
name: 'Niue',
|
|
1983
|
-
priority: 0,
|
|
1984
|
-
timezone: 'Pacific/Niue',
|
|
1985
|
-
},
|
|
1986
|
-
NZ: {
|
|
1987
|
-
areaCodes: null,
|
|
1988
|
-
currency: Currency.NZD,
|
|
1989
|
-
dialCode: '64',
|
|
1990
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/NZ.png',
|
|
1991
|
-
iso2: 'NZ',
|
|
1992
|
-
name: 'New Zealand',
|
|
1993
|
-
priority: 0,
|
|
1994
|
-
timezone: 'Pacific/Auckland',
|
|
1995
|
-
},
|
|
1996
|
-
OM: {
|
|
1997
|
-
areaCodes: null,
|
|
1998
|
-
currency: Currency.OMR,
|
|
1999
|
-
dialCode: '968',
|
|
2000
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/OM.png',
|
|
2001
|
-
iso2: 'OM',
|
|
2002
|
-
name: 'Oman (عُمان)',
|
|
2003
|
-
priority: 0,
|
|
2004
|
-
timezone: 'Asia/Muscat',
|
|
2005
|
-
},
|
|
2006
|
-
PA: {
|
|
2007
|
-
areaCodes: null,
|
|
2008
|
-
currency: Currency.PAB,
|
|
2009
|
-
dialCode: '507',
|
|
2010
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/PA.png',
|
|
2011
|
-
iso2: 'PA',
|
|
2012
|
-
name: 'Panama (Panamá)',
|
|
2013
|
-
priority: 0,
|
|
2014
|
-
timezone: 'America/Panama',
|
|
2015
|
-
},
|
|
2016
|
-
PE: {
|
|
2017
|
-
areaCodes: null,
|
|
2018
|
-
currency: Currency.PEN,
|
|
2019
|
-
dialCode: '51',
|
|
2020
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/PE.png',
|
|
2021
|
-
iso2: 'PE',
|
|
2022
|
-
name: 'Peru (Perú)',
|
|
2023
|
-
priority: 0,
|
|
2024
|
-
timezone: 'America/Lima',
|
|
2025
|
-
},
|
|
2026
|
-
PF: {
|
|
2027
|
-
areaCodes: null,
|
|
2028
|
-
currency: Currency.XPF,
|
|
2029
|
-
dialCode: '689',
|
|
2030
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/PF.png',
|
|
2031
|
-
iso2: 'PF',
|
|
2032
|
-
name: 'French Polynesia (Polynésie française)',
|
|
2033
|
-
priority: 0,
|
|
2034
|
-
timezone: 'Etc/GMT+9',
|
|
2035
|
-
},
|
|
2036
|
-
PG: {
|
|
2037
|
-
areaCodes: null,
|
|
2038
|
-
currency: Currency.PGK,
|
|
2039
|
-
dialCode: '675',
|
|
2040
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/PG.png',
|
|
2041
|
-
iso2: 'PG',
|
|
2042
|
-
name: 'Papua New Guinea',
|
|
2043
|
-
priority: 0,
|
|
2044
|
-
timezone: 'Pacific/Port_Moresby',
|
|
2045
|
-
},
|
|
2046
|
-
PH: {
|
|
2047
|
-
areaCodes: null,
|
|
2048
|
-
currency: Currency.PHP,
|
|
2049
|
-
dialCode: '63',
|
|
2050
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/PH.png',
|
|
2051
|
-
iso2: 'PH',
|
|
2052
|
-
name: 'Philippines',
|
|
2053
|
-
priority: 0,
|
|
2054
|
-
timezone: 'Asia/Manila',
|
|
2055
|
-
},
|
|
2056
|
-
PK: {
|
|
2057
|
-
areaCodes: null,
|
|
2058
|
-
currency: Currency.PKR,
|
|
2059
|
-
dialCode: '92',
|
|
2060
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/PK.png',
|
|
2061
|
-
iso2: 'PK',
|
|
2062
|
-
name: 'Pakistan (پاکستان)',
|
|
2063
|
-
priority: 0,
|
|
2064
|
-
timezone: 'Asia/Karachi',
|
|
2065
|
-
},
|
|
2066
|
-
PL: {
|
|
2067
|
-
areaCodes: null,
|
|
2068
|
-
currency: Currency.PLN,
|
|
2069
|
-
dialCode: '48',
|
|
2070
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/PL.png',
|
|
2071
|
-
iso2: 'PL',
|
|
2072
|
-
name: 'Poland (Polska)',
|
|
2073
|
-
priority: 0,
|
|
2074
|
-
timezone: 'Europe/Warsaw',
|
|
2075
|
-
},
|
|
2076
|
-
PM: {
|
|
2077
|
-
areaCodes: null,
|
|
2078
|
-
currency: Currency.EUR,
|
|
2079
|
-
dialCode: '508',
|
|
2080
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/PM.png',
|
|
2081
|
-
iso2: 'PM',
|
|
2082
|
-
name: 'Saint Pierre and Miquelon (Saint-Pierre-et-Miquelon)',
|
|
2083
|
-
priority: 0,
|
|
2084
|
-
timezone: 'America/Miquelon',
|
|
2085
|
-
},
|
|
2086
|
-
PR: {
|
|
2087
|
-
areaCodes: ['787', '939'],
|
|
2088
|
-
currency: Currency.USD,
|
|
2089
|
-
dialCode: '1',
|
|
2090
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/PR.png',
|
|
2091
|
-
iso2: 'PR',
|
|
2092
|
-
name: 'Puerto Rico',
|
|
2093
|
-
priority: 3,
|
|
2094
|
-
timezone: 'America/Puerto_Rico',
|
|
2095
|
-
},
|
|
2096
|
-
PS: {
|
|
2097
|
-
areaCodes: null,
|
|
2098
|
-
currency: Currency.ILS,
|
|
2099
|
-
dialCode: '970',
|
|
2100
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/PS.png',
|
|
2101
|
-
iso2: 'PS',
|
|
2102
|
-
name: 'Palestine (فلسطين)',
|
|
2103
|
-
priority: 0,
|
|
2104
|
-
timezone: 'Asia/Jerusalem',
|
|
2105
|
-
},
|
|
2106
|
-
PT: {
|
|
2107
|
-
areaCodes: null,
|
|
2108
|
-
currency: Currency.EUR,
|
|
2109
|
-
dialCode: '351',
|
|
2110
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/PT.png',
|
|
2111
|
-
iso2: 'PT',
|
|
2112
|
-
name: 'Portugal',
|
|
2113
|
-
priority: 0,
|
|
2114
|
-
timezone: 'Europe/Lisbon',
|
|
2115
|
-
},
|
|
2116
|
-
PW: {
|
|
2117
|
-
areaCodes: null,
|
|
2118
|
-
currency: Currency.USD,
|
|
2119
|
-
dialCode: '680',
|
|
2120
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/PW.png',
|
|
2121
|
-
iso2: 'PW',
|
|
2122
|
-
name: 'Palau',
|
|
2123
|
-
priority: 0,
|
|
2124
|
-
timezone: 'Etc/GMT-9',
|
|
2125
|
-
},
|
|
2126
|
-
PY: {
|
|
2127
|
-
areaCodes: null,
|
|
2128
|
-
currency: Currency.PYG,
|
|
2129
|
-
dialCode: '595',
|
|
2130
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/PY.png',
|
|
2131
|
-
iso2: 'PY',
|
|
2132
|
-
name: 'Paraguay',
|
|
2133
|
-
priority: 0,
|
|
2134
|
-
timezone: 'America/Asuncion',
|
|
2135
|
-
},
|
|
2136
|
-
QA: {
|
|
2137
|
-
areaCodes: null,
|
|
2138
|
-
currency: Currency.QAR,
|
|
2139
|
-
dialCode: '974',
|
|
2140
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/QA.png',
|
|
2141
|
-
iso2: 'QA',
|
|
2142
|
-
name: 'Qatar (قطر)',
|
|
2143
|
-
priority: 0,
|
|
2144
|
-
timezone: 'Asia/Qatar',
|
|
2145
|
-
},
|
|
2146
|
-
RE: {
|
|
2147
|
-
areaCodes: null,
|
|
2148
|
-
currency: Currency.EUR,
|
|
2149
|
-
dialCode: '262',
|
|
2150
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/RE.png',
|
|
2151
|
-
iso2: 'RE',
|
|
2152
|
-
name: 'Réunion (La Réunion)',
|
|
2153
|
-
priority: 0,
|
|
2154
|
-
timezone: 'Indian/Reunion',
|
|
2155
|
-
},
|
|
2156
|
-
RO: {
|
|
2157
|
-
areaCodes: null,
|
|
2158
|
-
currency: Currency.RON,
|
|
2159
|
-
dialCode: '40',
|
|
2160
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/RO.png',
|
|
2161
|
-
iso2: 'RO',
|
|
2162
|
-
name: 'Romania (România)',
|
|
2163
|
-
priority: 0,
|
|
2164
|
-
timezone: 'Europe/Bucharest',
|
|
2165
|
-
},
|
|
2166
|
-
RS: {
|
|
2167
|
-
areaCodes: null,
|
|
2168
|
-
currency: Currency.RSD,
|
|
2169
|
-
dialCode: '381',
|
|
2170
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/RS.png',
|
|
2171
|
-
iso2: 'RS',
|
|
2172
|
-
name: 'Serbia (Србија)',
|
|
2173
|
-
priority: 0,
|
|
2174
|
-
timezone: 'Europe/Belgrade',
|
|
2175
|
-
},
|
|
2176
|
-
RU: {
|
|
2177
|
-
areaCodes: null,
|
|
2178
|
-
currency: Currency.RUB,
|
|
2179
|
-
dialCode: '7',
|
|
2180
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/RU.png',
|
|
2181
|
-
iso2: 'RU',
|
|
2182
|
-
name: 'Russia (Россия)',
|
|
2183
|
-
priority: 0,
|
|
2184
|
-
timezone: 'Asia/Krasnoyarsk',
|
|
2185
|
-
},
|
|
2186
|
-
RW: {
|
|
2187
|
-
areaCodes: null,
|
|
2188
|
-
currency: Currency.RWF,
|
|
2189
|
-
dialCode: '250',
|
|
2190
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/RW.png',
|
|
2191
|
-
iso2: 'RW',
|
|
2192
|
-
name: 'Rwanda',
|
|
2193
|
-
priority: 0,
|
|
2194
|
-
timezone: 'Africa/Kigali',
|
|
2195
|
-
},
|
|
2196
|
-
SA: {
|
|
2197
|
-
areaCodes: null,
|
|
2198
|
-
currency: Currency.SAR,
|
|
2199
|
-
dialCode: '966',
|
|
2200
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SA.png',
|
|
2201
|
-
iso2: 'SA',
|
|
2202
|
-
name: 'Saudi Arabia (المملكة العربية السعودية)',
|
|
2203
|
-
priority: 0,
|
|
2204
|
-
timezone: 'Asia/Riyadh',
|
|
2205
|
-
},
|
|
2206
|
-
SB: {
|
|
2207
|
-
areaCodes: null,
|
|
2208
|
-
currency: Currency.SBD,
|
|
2209
|
-
dialCode: '677',
|
|
2210
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SB.png',
|
|
2211
|
-
iso2: 'SB',
|
|
2212
|
-
name: 'Solomon Islands',
|
|
2213
|
-
priority: 0,
|
|
2214
|
-
timezone: 'Pacific/Guadalcanal',
|
|
2215
|
-
},
|
|
2216
|
-
SC: {
|
|
2217
|
-
areaCodes: null,
|
|
2218
|
-
currency: Currency.SCR,
|
|
2219
|
-
dialCode: '248',
|
|
2220
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SC.png',
|
|
2221
|
-
iso2: 'SC',
|
|
2222
|
-
name: 'Seychelles',
|
|
2223
|
-
priority: 0,
|
|
2224
|
-
timezone: 'Indian/Mahe',
|
|
2225
|
-
},
|
|
2226
|
-
SD: {
|
|
2227
|
-
areaCodes: null,
|
|
2228
|
-
currency: Currency.SDG,
|
|
2229
|
-
dialCode: '249',
|
|
2230
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SD.png',
|
|
2231
|
-
iso2: 'SD',
|
|
2232
|
-
name: 'Sudan (السودان)',
|
|
2233
|
-
priority: 0,
|
|
2234
|
-
timezone: 'Africa/Khartoum',
|
|
2235
|
-
},
|
|
2236
|
-
SE: {
|
|
2237
|
-
areaCodes: null,
|
|
2238
|
-
currency: Currency.SEK,
|
|
2239
|
-
dialCode: '46',
|
|
2240
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SE.png',
|
|
2241
|
-
iso2: 'SE',
|
|
2242
|
-
name: 'Sweden (Sverige)',
|
|
2243
|
-
priority: 0,
|
|
2244
|
-
timezone: 'Europe/Stockholm',
|
|
2245
|
-
},
|
|
2246
|
-
SG: {
|
|
2247
|
-
areaCodes: null,
|
|
2248
|
-
currency: Currency.SGD,
|
|
2249
|
-
dialCode: '65',
|
|
2250
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SG.png',
|
|
2251
|
-
iso2: 'SG',
|
|
2252
|
-
name: 'Singapore',
|
|
2253
|
-
priority: 0,
|
|
2254
|
-
timezone: 'Asia/Singapore',
|
|
2255
|
-
},
|
|
2256
|
-
SH: {
|
|
2257
|
-
areaCodes: null,
|
|
2258
|
-
currency: Currency.SHP,
|
|
2259
|
-
dialCode: '290',
|
|
2260
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SH.png',
|
|
2261
|
-
iso2: 'SH',
|
|
2262
|
-
name: 'Saint Helena',
|
|
2263
|
-
priority: 0,
|
|
2264
|
-
timezone: 'Atlantic/St_Helena',
|
|
2265
|
-
},
|
|
2266
|
-
SI: {
|
|
2267
|
-
areaCodes: null,
|
|
2268
|
-
currency: Currency.EUR,
|
|
2269
|
-
dialCode: '386',
|
|
2270
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SI.png',
|
|
2271
|
-
iso2: 'SI',
|
|
2272
|
-
name: 'Slovenia (Slovenija)',
|
|
2273
|
-
priority: 0,
|
|
2274
|
-
timezone: 'Europe/Ljubljana',
|
|
2275
|
-
},
|
|
2276
|
-
SJ: {
|
|
2277
|
-
areaCodes: null,
|
|
2278
|
-
currency: Currency.NOK,
|
|
2279
|
-
dialCode: '47',
|
|
2280
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SJ.png',
|
|
2281
|
-
iso2: 'SJ',
|
|
2282
|
-
name: 'Svalbard and Jan Mayen',
|
|
2283
|
-
priority: 1,
|
|
2284
|
-
timezone: 'Arctic/Longyearbyen',
|
|
2285
|
-
},
|
|
2286
|
-
SK: {
|
|
2287
|
-
areaCodes: null,
|
|
2288
|
-
currency: Currency.EUR,
|
|
2289
|
-
dialCode: '421',
|
|
2290
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SK.png',
|
|
2291
|
-
iso2: 'SK',
|
|
2292
|
-
name: 'Slovakia (Slovensko)',
|
|
2293
|
-
priority: 0,
|
|
2294
|
-
timezone: 'Europe/Bratislava',
|
|
2295
|
-
},
|
|
2296
|
-
SL: {
|
|
2297
|
-
areaCodes: null,
|
|
2298
|
-
currency: Currency.SLL,
|
|
2299
|
-
dialCode: '232',
|
|
2300
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SL.png',
|
|
2301
|
-
iso2: 'SL',
|
|
2302
|
-
name: 'Sierra Leone',
|
|
2303
|
-
priority: 0,
|
|
2304
|
-
timezone: 'Africa/Freetown',
|
|
2305
|
-
},
|
|
2306
|
-
SM: {
|
|
2307
|
-
areaCodes: null,
|
|
2308
|
-
currency: Currency.EUR,
|
|
2309
|
-
dialCode: '378',
|
|
2310
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SM.png',
|
|
2311
|
-
iso2: 'SM',
|
|
2312
|
-
name: 'San Marino',
|
|
2313
|
-
priority: 0,
|
|
2314
|
-
timezone: 'Europe/San_Marino',
|
|
2315
|
-
},
|
|
2316
|
-
SN: {
|
|
2317
|
-
areaCodes: null,
|
|
2318
|
-
currency: Currency.XOF,
|
|
2319
|
-
dialCode: '221',
|
|
2320
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SN.png',
|
|
2321
|
-
iso2: 'SN',
|
|
2322
|
-
name: 'Senegal (Sénégal)',
|
|
2323
|
-
priority: 0,
|
|
2324
|
-
timezone: 'Africa/Dakar',
|
|
2325
|
-
},
|
|
2326
|
-
SO: {
|
|
2327
|
-
areaCodes: null,
|
|
2328
|
-
currency: Currency.SOS,
|
|
2329
|
-
dialCode: '252',
|
|
2330
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SO.png',
|
|
2331
|
-
iso2: 'SO',
|
|
2332
|
-
name: 'Somalia (Soomaaliya)',
|
|
2333
|
-
priority: 0,
|
|
2334
|
-
timezone: 'Africa/Mogadishu',
|
|
2335
|
-
},
|
|
2336
|
-
SR: {
|
|
2337
|
-
areaCodes: null,
|
|
2338
|
-
currency: Currency.SRD,
|
|
2339
|
-
dialCode: '597',
|
|
2340
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SR.png',
|
|
2341
|
-
iso2: 'SR',
|
|
2342
|
-
name: 'Suriname',
|
|
2343
|
-
priority: 0,
|
|
2344
|
-
timezone: 'America/Paramaribo',
|
|
2345
|
-
},
|
|
2346
|
-
SS: {
|
|
2347
|
-
areaCodes: null,
|
|
2348
|
-
currency: Currency.USD,
|
|
2349
|
-
dialCode: '211',
|
|
2350
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SS.png',
|
|
2351
|
-
iso2: 'SS',
|
|
2352
|
-
name: 'South Sudan (جنوب السودان)',
|
|
2353
|
-
priority: 0,
|
|
2354
|
-
timezone: 'Africa/Juba',
|
|
2355
|
-
},
|
|
2356
|
-
ST: {
|
|
2357
|
-
areaCodes: null,
|
|
2358
|
-
currency: Currency.STD,
|
|
2359
|
-
dialCode: '239',
|
|
2360
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/ST.png',
|
|
2361
|
-
iso2: 'ST',
|
|
2362
|
-
name: 'São Tomé and Príncipe (São Tomé e Príncipe)',
|
|
2363
|
-
priority: 0,
|
|
2364
|
-
timezone: 'Africa/Sao_Tome',
|
|
2365
|
-
},
|
|
2366
|
-
SV: {
|
|
2367
|
-
areaCodes: null,
|
|
2368
|
-
currency: Currency.USD,
|
|
2369
|
-
dialCode: '503',
|
|
2370
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SV.png',
|
|
2371
|
-
iso2: 'SV',
|
|
2372
|
-
name: 'El Salvador',
|
|
2373
|
-
priority: 0,
|
|
2374
|
-
timezone: 'America/El_Salvador',
|
|
2375
|
-
},
|
|
2376
|
-
SX: {
|
|
2377
|
-
areaCodes: null,
|
|
2378
|
-
currency: Currency.ANG,
|
|
2379
|
-
dialCode: '1721',
|
|
2380
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SX.png',
|
|
2381
|
-
iso2: 'SX',
|
|
2382
|
-
name: 'Sint Maarten',
|
|
2383
|
-
priority: 0,
|
|
2384
|
-
timezone: 'America/Lower_Princes',
|
|
2385
|
-
},
|
|
2386
|
-
SY: {
|
|
2387
|
-
areaCodes: null,
|
|
2388
|
-
currency: Currency.SYP,
|
|
2389
|
-
dialCode: '963',
|
|
2390
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SY.png',
|
|
2391
|
-
iso2: 'SY',
|
|
2392
|
-
name: 'Syria (سوريا)',
|
|
2393
|
-
priority: 0,
|
|
2394
|
-
timezone: 'Asia/Damascus',
|
|
2395
|
-
},
|
|
2396
|
-
SZ: {
|
|
2397
|
-
areaCodes: null,
|
|
2398
|
-
currency: Currency.SZL,
|
|
2399
|
-
dialCode: '268',
|
|
2400
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SZ.png',
|
|
2401
|
-
iso2: 'SZ',
|
|
2402
|
-
name: 'Swaziland',
|
|
2403
|
-
priority: 0,
|
|
2404
|
-
timezone: 'Africa/Mbabane',
|
|
2405
|
-
},
|
|
2406
|
-
TC: {
|
|
2407
|
-
areaCodes: null,
|
|
2408
|
-
currency: Currency.USD,
|
|
2409
|
-
dialCode: '1649',
|
|
2410
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TC.png',
|
|
2411
|
-
iso2: 'TC',
|
|
2412
|
-
name: 'Turks and Caicos Islands',
|
|
2413
|
-
priority: 0,
|
|
2414
|
-
timezone: 'America/Grand_Turk',
|
|
2415
|
-
},
|
|
2416
|
-
TD: {
|
|
2417
|
-
areaCodes: null,
|
|
2418
|
-
currency: Currency.XAF,
|
|
2419
|
-
dialCode: '235',
|
|
2420
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TD.png',
|
|
2421
|
-
iso2: 'TD',
|
|
2422
|
-
name: 'Chad (Tchad)',
|
|
2423
|
-
priority: 0,
|
|
2424
|
-
timezone: 'Africa/Ndjamena',
|
|
2425
|
-
},
|
|
2426
|
-
TG: {
|
|
2427
|
-
areaCodes: null,
|
|
2428
|
-
currency: Currency.XOF,
|
|
2429
|
-
dialCode: '228',
|
|
2430
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TG.png',
|
|
2431
|
-
iso2: 'TG',
|
|
2432
|
-
name: 'Togo',
|
|
2433
|
-
priority: 0,
|
|
2434
|
-
timezone: 'Africa/Lome',
|
|
2435
|
-
},
|
|
2436
|
-
TH: {
|
|
2437
|
-
areaCodes: null,
|
|
2438
|
-
currency: Currency.THB,
|
|
2439
|
-
dialCode: '66',
|
|
2440
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TH.png',
|
|
2441
|
-
iso2: 'TH',
|
|
2442
|
-
name: 'Thailand (ไทย)',
|
|
2443
|
-
priority: 0,
|
|
2444
|
-
timezone: 'Asia/Bangkok',
|
|
2445
|
-
},
|
|
2446
|
-
TJ: {
|
|
2447
|
-
areaCodes: null,
|
|
2448
|
-
currency: Currency.TJS,
|
|
2449
|
-
dialCode: '992',
|
|
2450
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TJ.png',
|
|
2451
|
-
iso2: 'TJ',
|
|
2452
|
-
name: 'Tajikistan',
|
|
2453
|
-
priority: 0,
|
|
2454
|
-
timezone: 'Asia/Dushanbe',
|
|
2455
|
-
},
|
|
2456
|
-
TK: {
|
|
2457
|
-
areaCodes: null,
|
|
2458
|
-
currency: Currency.NZD,
|
|
2459
|
-
dialCode: '690',
|
|
2460
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TK.png',
|
|
2461
|
-
iso2: 'TK',
|
|
2462
|
-
name: 'Tokelau',
|
|
2463
|
-
priority: 0,
|
|
2464
|
-
timezone: 'Pacific/Fakaofo',
|
|
2465
|
-
},
|
|
2466
|
-
TL: {
|
|
2467
|
-
areaCodes: null,
|
|
2468
|
-
currency: Currency.USD,
|
|
2469
|
-
dialCode: '670',
|
|
2470
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TL.png',
|
|
2471
|
-
iso2: 'TL',
|
|
2472
|
-
name: 'Timor-Leste',
|
|
2473
|
-
priority: 0,
|
|
2474
|
-
timezone: 'Asia/Dili',
|
|
2475
|
-
},
|
|
2476
|
-
TM: {
|
|
2477
|
-
areaCodes: null,
|
|
2478
|
-
currency: Currency.TMT,
|
|
2479
|
-
dialCode: '993',
|
|
2480
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TM.png',
|
|
2481
|
-
iso2: 'TM',
|
|
2482
|
-
name: 'Turkmenistan',
|
|
2483
|
-
priority: 0,
|
|
2484
|
-
timezone: 'Asia/Ashgabat',
|
|
2485
|
-
},
|
|
2486
|
-
TN: {
|
|
2487
|
-
areaCodes: null,
|
|
2488
|
-
currency: Currency.TND,
|
|
2489
|
-
dialCode: '216',
|
|
2490
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TN.png',
|
|
2491
|
-
iso2: 'TN',
|
|
2492
|
-
name: 'Tunisia (تونس)',
|
|
2493
|
-
priority: 0,
|
|
2494
|
-
timezone: 'Africa/Tunis',
|
|
2495
|
-
},
|
|
2496
|
-
TO: {
|
|
2497
|
-
areaCodes: null,
|
|
2498
|
-
currency: Currency.TOP,
|
|
2499
|
-
dialCode: '676',
|
|
2500
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TO.png',
|
|
2501
|
-
iso2: 'TO',
|
|
2502
|
-
name: 'Tonga',
|
|
2503
|
-
priority: 0,
|
|
2504
|
-
timezone: 'Pacific/Tongatapu',
|
|
2505
|
-
},
|
|
2506
|
-
TR: {
|
|
2507
|
-
areaCodes: null,
|
|
2508
|
-
currency: Currency.TRY,
|
|
2509
|
-
dialCode: '90',
|
|
2510
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TR.png',
|
|
2511
|
-
iso2: 'TR',
|
|
2512
|
-
name: 'Turkey (Türkiye)',
|
|
2513
|
-
priority: 0,
|
|
2514
|
-
timezone: 'Europe/Istanbul',
|
|
2515
|
-
},
|
|
2516
|
-
TT: {
|
|
2517
|
-
areaCodes: null,
|
|
2518
|
-
currency: Currency.TTD,
|
|
2519
|
-
dialCode: '1868',
|
|
2520
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TT.png',
|
|
2521
|
-
iso2: 'TT',
|
|
2522
|
-
name: 'Trinidad and Tobago',
|
|
2523
|
-
priority: 0,
|
|
2524
|
-
timezone: 'America/Port_of_Spain',
|
|
2525
|
-
},
|
|
2526
|
-
TV: {
|
|
2527
|
-
areaCodes: null,
|
|
2528
|
-
currency: Currency.AUD,
|
|
2529
|
-
dialCode: '688',
|
|
2530
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TV.png',
|
|
2531
|
-
iso2: 'TV',
|
|
2532
|
-
name: 'Tuvalu',
|
|
2533
|
-
priority: 0,
|
|
2534
|
-
timezone: 'Etc/GMT-12',
|
|
2535
|
-
},
|
|
2536
|
-
TW: {
|
|
2537
|
-
areaCodes: null,
|
|
2538
|
-
currency: Currency.TWD,
|
|
2539
|
-
dialCode: '886',
|
|
2540
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TW.png',
|
|
2541
|
-
iso2: 'TW',
|
|
2542
|
-
name: 'Taiwan (台灣)',
|
|
2543
|
-
priority: 0,
|
|
2544
|
-
timezone: 'Asia/Taipei',
|
|
2545
|
-
},
|
|
2546
|
-
TZ: {
|
|
2547
|
-
areaCodes: null,
|
|
2548
|
-
currency: Currency.TZS,
|
|
2549
|
-
dialCode: '255',
|
|
2550
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TZ.png',
|
|
2551
|
-
iso2: 'TZ',
|
|
2552
|
-
name: 'Tanzania',
|
|
2553
|
-
priority: 0,
|
|
2554
|
-
timezone: 'Africa/Dar_es_Salaam',
|
|
2555
|
-
},
|
|
2556
|
-
UA: {
|
|
2557
|
-
areaCodes: null,
|
|
2558
|
-
currency: Currency.UAH,
|
|
2559
|
-
dialCode: '380',
|
|
2560
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/UA.png',
|
|
2561
|
-
iso2: 'UA',
|
|
2562
|
-
name: 'Ukraine (Україна)',
|
|
2563
|
-
priority: 0,
|
|
2564
|
-
timezone: 'Europe/Kiev',
|
|
2565
|
-
},
|
|
2566
|
-
UG: {
|
|
2567
|
-
areaCodes: null,
|
|
2568
|
-
currency: Currency.UGX,
|
|
2569
|
-
dialCode: '256',
|
|
2570
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/UG.png',
|
|
2571
|
-
iso2: 'UG',
|
|
2572
|
-
name: 'Uganda',
|
|
2573
|
-
priority: 0,
|
|
2574
|
-
timezone: 'Africa/Kampala',
|
|
2575
|
-
},
|
|
2576
|
-
US: {
|
|
2577
|
-
areaCodes: null,
|
|
2578
|
-
currency: Currency.USD,
|
|
2579
|
-
dialCode: '1',
|
|
2580
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/US.png',
|
|
2581
|
-
iso2: 'US',
|
|
2582
|
-
name: 'United States',
|
|
2583
|
-
priority: 0,
|
|
2584
|
-
timezone: 'America/Chicago',
|
|
2585
|
-
},
|
|
2586
|
-
UY: {
|
|
2587
|
-
areaCodes: null,
|
|
2588
|
-
currency: Currency.UYU,
|
|
2589
|
-
dialCode: '598',
|
|
2590
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/UY.png',
|
|
2591
|
-
iso2: 'UY',
|
|
2592
|
-
name: 'Uruguay',
|
|
2593
|
-
priority: 0,
|
|
2594
|
-
timezone: 'America/Montevideo',
|
|
2595
|
-
},
|
|
2596
|
-
UZ: {
|
|
2597
|
-
areaCodes: null,
|
|
2598
|
-
currency: Currency.UZS,
|
|
2599
|
-
dialCode: '998',
|
|
2600
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/UZ.png',
|
|
2601
|
-
iso2: 'UZ',
|
|
2602
|
-
name: 'Uzbekistan (Oʻzbekiston)',
|
|
2603
|
-
priority: 0,
|
|
2604
|
-
timezone: 'Asia/Samarkand',
|
|
2605
|
-
},
|
|
2606
|
-
VA: {
|
|
2607
|
-
areaCodes: null,
|
|
2608
|
-
currency: Currency.EUR,
|
|
2609
|
-
dialCode: '39',
|
|
2610
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/VA.png',
|
|
2611
|
-
iso2: 'VA',
|
|
2612
|
-
name: 'Vatican City (Città del Vaticano)',
|
|
2613
|
-
priority: 1,
|
|
2614
|
-
timezone: 'Europe/Rome',
|
|
2615
|
-
},
|
|
2616
|
-
VC: {
|
|
2617
|
-
areaCodes: null,
|
|
2618
|
-
currency: Currency.XCD,
|
|
2619
|
-
dialCode: '1784',
|
|
2620
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/VC.png',
|
|
2621
|
-
iso2: 'VC',
|
|
2622
|
-
name: 'Saint Vincent and the Grenadines',
|
|
2623
|
-
priority: 0,
|
|
2624
|
-
timezone: 'America/St_Vincent',
|
|
2625
|
-
},
|
|
2626
|
-
VE: {
|
|
2627
|
-
areaCodes: null,
|
|
2628
|
-
currency: Currency.VES,
|
|
2629
|
-
dialCode: '58',
|
|
2630
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/VE.png',
|
|
2631
|
-
iso2: 'VE',
|
|
2632
|
-
name: 'Venezuela',
|
|
2633
|
-
priority: 0,
|
|
2634
|
-
timezone: 'America/Caracas',
|
|
2635
|
-
},
|
|
2636
|
-
VG: {
|
|
2637
|
-
areaCodes: null,
|
|
2638
|
-
currency: Currency.USD,
|
|
2639
|
-
dialCode: '1284',
|
|
2640
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/VG.png',
|
|
2641
|
-
iso2: 'VG',
|
|
2642
|
-
name: 'British Virgin Islands',
|
|
2643
|
-
priority: 0,
|
|
2644
|
-
timezone: 'America/Tortola',
|
|
2645
|
-
},
|
|
2646
|
-
VI: {
|
|
2647
|
-
areaCodes: null,
|
|
2648
|
-
currency: Currency.USD,
|
|
2649
|
-
dialCode: '1340',
|
|
2650
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/VI.png',
|
|
2651
|
-
iso2: 'VI',
|
|
2652
|
-
name: 'U.S. Virgin Islands',
|
|
2653
|
-
priority: 0,
|
|
2654
|
-
timezone: 'America/St_Thomas',
|
|
2655
|
-
},
|
|
2656
|
-
VN: {
|
|
2657
|
-
areaCodes: null,
|
|
2658
|
-
currency: Currency.VND,
|
|
2659
|
-
dialCode: '84',
|
|
2660
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/VN.png',
|
|
2661
|
-
iso2: 'VN',
|
|
2662
|
-
name: 'Vietnam (Việt Nam)',
|
|
2663
|
-
priority: 0,
|
|
2664
|
-
timezone: 'Asia/Ho_Chi_Minh',
|
|
2665
|
-
},
|
|
2666
|
-
VU: {
|
|
2667
|
-
areaCodes: null,
|
|
2668
|
-
currency: Currency.VUV,
|
|
2669
|
-
dialCode: '678',
|
|
2670
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/VU.png',
|
|
2671
|
-
iso2: 'VU',
|
|
2672
|
-
name: 'Vanuatu',
|
|
2673
|
-
priority: 0,
|
|
2674
|
-
timezone: 'Pacific/Efate',
|
|
2675
|
-
},
|
|
2676
|
-
WF: {
|
|
2677
|
-
areaCodes: null,
|
|
2678
|
-
currency: Currency.XPF,
|
|
2679
|
-
dialCode: '681',
|
|
2680
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/WF.png',
|
|
2681
|
-
iso2: 'WF',
|
|
2682
|
-
name: 'Wallis and Futuna (Wallis-et-Futuna)',
|
|
2683
|
-
priority: 0,
|
|
2684
|
-
timezone: 'Pacific/Wallis',
|
|
2685
|
-
},
|
|
2686
|
-
WS: {
|
|
2687
|
-
areaCodes: null,
|
|
2688
|
-
currency: Currency.WST,
|
|
2689
|
-
dialCode: '685',
|
|
2690
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/WS.png',
|
|
2691
|
-
iso2: 'WS',
|
|
2692
|
-
name: 'Samoa',
|
|
2693
|
-
priority: 0,
|
|
2694
|
-
timezone: 'Pacific/Apia',
|
|
2695
|
-
},
|
|
2696
|
-
XK: {
|
|
2697
|
-
areaCodes: null,
|
|
2698
|
-
currency: Currency.EUR,
|
|
2699
|
-
dialCode: '383',
|
|
2700
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/XK.png',
|
|
2701
|
-
iso2: 'XK',
|
|
2702
|
-
name: 'Kosovo',
|
|
2703
|
-
priority: 0,
|
|
2704
|
-
timezone: 'Europe/Rome',
|
|
2705
|
-
},
|
|
2706
|
-
YE: {
|
|
2707
|
-
areaCodes: null,
|
|
2708
|
-
currency: Currency.YER,
|
|
2709
|
-
dialCode: '967',
|
|
2710
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/YE.png',
|
|
2711
|
-
iso2: 'YE',
|
|
2712
|
-
name: 'Yemen (اليمن)',
|
|
2713
|
-
priority: 0,
|
|
2714
|
-
timezone: 'Asia/Aden',
|
|
2715
|
-
},
|
|
2716
|
-
YT: {
|
|
2717
|
-
areaCodes: null,
|
|
2718
|
-
currency: Currency.EUR,
|
|
2719
|
-
dialCode: '262',
|
|
2720
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/YT.png',
|
|
2721
|
-
iso2: 'YT',
|
|
2722
|
-
name: 'Mayotte',
|
|
2723
|
-
priority: 1,
|
|
2724
|
-
timezone: 'Indian/Mayotte',
|
|
2725
|
-
},
|
|
2726
|
-
ZA: {
|
|
2727
|
-
areaCodes: null,
|
|
2728
|
-
currency: Currency.ZAR,
|
|
2729
|
-
dialCode: '27',
|
|
2730
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/ZA.png',
|
|
2731
|
-
iso2: 'ZA',
|
|
2732
|
-
name: 'South Africa',
|
|
2733
|
-
priority: 0,
|
|
2734
|
-
timezone: 'Africa/Johannesburg',
|
|
2735
|
-
},
|
|
2736
|
-
ZM: {
|
|
2737
|
-
areaCodes: null,
|
|
2738
|
-
currency: Currency.ZMK,
|
|
2739
|
-
dialCode: '260',
|
|
2740
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/ZM.png',
|
|
2741
|
-
iso2: 'ZM',
|
|
2742
|
-
name: 'Zambia',
|
|
2743
|
-
priority: 0,
|
|
2744
|
-
timezone: 'Africa/Lusaka',
|
|
2745
|
-
},
|
|
2746
|
-
ZW: {
|
|
2747
|
-
areaCodes: null,
|
|
2748
|
-
currency: Currency.ZWL,
|
|
2749
|
-
dialCode: '263',
|
|
2750
|
-
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/ZW.png',
|
|
2751
|
-
iso2: 'ZW',
|
|
2752
|
-
name: 'Zimbabwe',
|
|
2753
|
-
priority: 0,
|
|
2754
|
-
timezone: 'Africa/Harare',
|
|
2755
|
-
},
|
|
2756
|
-
}
|
|
2757
|
-
/* eslint-enable max-lines */
|
|
2758
|
-
|
|
2759
|
-
export const ISO_COUNTRIES = Object.values(COUNTRIES).map(
|
|
2760
|
-
country => country.iso2,
|
|
2761
|
-
)
|