@acorex/core 16.0.2 → 17.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (311) hide show
  1. package/common/README.md +3 -0
  2. package/common/countries/countries.data.d.ts +2 -0
  3. package/common/countries/country.d.ts +13 -0
  4. package/common/index.d.ts +2 -0
  5. package/config/README.md +3 -0
  6. package/config/index.d.ts +2 -0
  7. package/config/lib/configs.d.ts +6 -0
  8. package/config/lib/configs.service.d.ts +12 -0
  9. package/date-time/README.md +3 -0
  10. package/date-time/index.d.ts +10 -0
  11. package/date-time/lib/calendar.service.d.ts +27 -0
  12. package/date-time/lib/dateTime.config.d.ts +12 -0
  13. package/date-time/lib/datetime.class.d.ts +138 -0
  14. package/date-time/lib/datetime.module.d.ts +8 -0
  15. package/date-time/lib/datetime.pipe.d.ts +12 -0
  16. package/date-time/lib/formatters/datetime-formatter.d.ts +19 -0
  17. package/date-time/lib/formatters/timeleft-formatter.d.ts +16 -0
  18. package/date-time/lib/georgian.calendar.d.ts +21 -0
  19. package/date-time/lib/holidays.loader.d.ts +21 -0
  20. package/date-time/lib/jalali.calendar.d.ts +40 -0
  21. package/esm2022/common/acorex-core-common.mjs +5 -0
  22. package/esm2022/common/countries/countries.data.mjs +2625 -0
  23. package/esm2022/common/countries/country.mjs +2 -0
  24. package/esm2022/common/index.mjs +3 -0
  25. package/esm2022/config/acorex-core-config.mjs +5 -0
  26. package/esm2022/config/index.mjs +3 -0
  27. package/esm2022/config/lib/configs.mjs +7 -0
  28. package/esm2022/config/lib/configs.service.mjs +27 -0
  29. package/esm2022/date-time/acorex-core-date-time.mjs +5 -0
  30. package/esm2022/date-time/index.mjs +11 -0
  31. package/esm2022/date-time/lib/calendar.service.mjs +100 -0
  32. package/esm2022/date-time/lib/dateTime.config.mjs +50 -0
  33. package/esm2022/date-time/lib/datetime.class.mjs +337 -0
  34. package/esm2022/date-time/lib/datetime.module.mjs +27 -0
  35. package/esm2022/date-time/lib/datetime.pipe.mjs +29 -0
  36. package/esm2022/date-time/lib/formatters/datetime-formatter.mjs +32 -0
  37. package/esm2022/date-time/lib/formatters/timeleft-formatter.mjs +91 -0
  38. package/esm2022/date-time/lib/georgian.calendar.mjs +203 -0
  39. package/esm2022/date-time/lib/holidays.loader.mjs +13 -0
  40. package/esm2022/date-time/lib/jalali.calendar.mjs +440 -0
  41. package/esm2022/events/acorex-core-events.mjs +5 -0
  42. package/esm2022/events/index.mjs +3 -0
  43. package/esm2022/events/lib/event.service.mjs +43 -0
  44. package/esm2022/events/lib/event.type.mjs +6 -0
  45. package/esm2022/file/acorex-core-file.mjs +5 -0
  46. package/esm2022/file/index.mjs +7 -0
  47. package/esm2022/file/lib/file-download-ref.class.mjs +12 -0
  48. package/esm2022/file/lib/file-download-result.class.mjs +45 -0
  49. package/esm2022/file/lib/file-size-formatter.mjs +24 -0
  50. package/esm2022/file/lib/file-upload-ref.class.mjs +12 -0
  51. package/esm2022/file/lib/file.module.mjs +20 -0
  52. package/esm2022/file/lib/file.service.mjs +103 -0
  53. package/esm2022/format/acorex-core-format.mjs +5 -0
  54. package/esm2022/format/index.mjs +8 -0
  55. package/esm2022/format/lib/format.config.mjs +3 -0
  56. package/esm2022/format/lib/format.module.mjs +64 -0
  57. package/esm2022/format/lib/format.pipe.mjs +37 -0
  58. package/esm2022/format/lib/format.service.mjs +95 -0
  59. package/esm2022/format/lib/format.types.mjs +2 -0
  60. package/esm2022/format/lib/formatters/number-formatter.mjs +74 -0
  61. package/esm2022/format/lib/formatters/string-formatter.mjs +15 -0
  62. package/esm2022/image/acorex-core-image.mjs +5 -0
  63. package/esm2022/image/index.mjs +2 -0
  64. package/esm2022/image/lib/image.service.mjs +43 -0
  65. package/esm2022/index.mjs +2 -44
  66. package/esm2022/memorize/acorex-core-memorize.mjs +5 -0
  67. package/esm2022/memorize/index.mjs +2 -0
  68. package/esm2022/memorize/lib/memorize.decorator.mjs +19 -0
  69. package/esm2022/pipes/acorex-core-pipes.mjs +5 -0
  70. package/esm2022/pipes/index.mjs +2 -0
  71. package/esm2022/pipes/lib/safe/safe.pipe.mjs +38 -0
  72. package/esm2022/platform/acorex-core-platform.mjs +5 -0
  73. package/esm2022/platform/index.mjs +2 -0
  74. package/esm2022/platform/lib/platform.service.mjs +225 -0
  75. package/esm2022/storage/acorex-core-storage.mjs +5 -0
  76. package/esm2022/storage/cookie-storage.service.mjs +202 -0
  77. package/esm2022/storage/index.mjs +5 -0
  78. package/esm2022/storage/local-storage.service.mjs +58 -0
  79. package/esm2022/storage/session-storage.service.mjs +22 -0
  80. package/esm2022/storage/storage.interface.mjs +2 -0
  81. package/esm2022/translation/acorex-core-translation.mjs +5 -0
  82. package/esm2022/translation/index.mjs +9 -0
  83. package/esm2022/translation/lib/translation-scope.resolver.mjs +11 -0
  84. package/esm2022/translation/lib/translation.config.mjs +20 -0
  85. package/esm2022/translation/lib/translation.loader.mjs +14 -0
  86. package/esm2022/translation/lib/translation.module.mjs +40 -0
  87. package/esm2022/translation/lib/translation.service.mjs +173 -0
  88. package/esm2022/translation/lib/translation.types.mjs +2 -0
  89. package/esm2022/translation/lib/translator.directive.mjs +28 -0
  90. package/esm2022/translation/lib/translator.pipe.mjs +23 -0
  91. package/esm2022/types/acorex-core-types.mjs +5 -0
  92. package/esm2022/types/index.mjs +2 -0
  93. package/esm2022/utils/acorex-core-utils.mjs +5 -0
  94. package/esm2022/utils/index.mjs +6 -0
  95. package/esm2022/utils/lib/auto-unsubscribe.mjs +36 -0
  96. package/esm2022/utils/lib/color-util.mjs +111 -0
  97. package/esm2022/utils/lib/drawing-util.mjs +35 -0
  98. package/esm2022/utils/lib/html-util.mjs +39 -0
  99. package/esm2022/utils/lib/string-util.mjs +19 -0
  100. package/esm2022/validation/acorex-core-validation.mjs +5 -0
  101. package/esm2022/validation/index.mjs +18 -0
  102. package/esm2022/validation/lib/rules/between-rule.mjs +31 -0
  103. package/esm2022/validation/lib/rules/callback-rule.mjs +29 -0
  104. package/esm2022/validation/lib/rules/equal-rule.mjs +26 -0
  105. package/esm2022/validation/lib/rules/greater-than.mjs +29 -0
  106. package/esm2022/validation/lib/rules/length-rule.mjs +26 -0
  107. package/esm2022/validation/lib/rules/less-than-rule.mjs +29 -0
  108. package/esm2022/validation/lib/rules/maxlength-rule.mjs +27 -0
  109. package/esm2022/validation/lib/rules/minlength-rule.mjs +26 -0
  110. package/esm2022/validation/lib/rules/regex-rule.mjs +49 -0
  111. package/esm2022/validation/lib/rules/required-rule.mjs +36 -0
  112. package/esm2022/validation/lib/validation.config.mjs +33 -0
  113. package/esm2022/validation/lib/validation.module.mjs +84 -0
  114. package/esm2022/validation/lib/validation.service.mjs +98 -0
  115. package/esm2022/validation/lib/validation.types.mjs +3 -0
  116. package/events/README.md +3 -0
  117. package/events/index.d.ts +2 -0
  118. package/{lib/services → events/lib}/event.service.d.ts +8 -0
  119. package/events/lib/event.type.d.ts +5 -0
  120. package/fesm2022/acorex-core-common.mjs +2631 -0
  121. package/fesm2022/acorex-core-common.mjs.map +1 -0
  122. package/fesm2022/acorex-core-config.mjs +39 -0
  123. package/fesm2022/acorex-core-config.mjs.map +1 -0
  124. package/fesm2022/acorex-core-date-time.mjs +1305 -0
  125. package/fesm2022/acorex-core-date-time.mjs.map +1 -0
  126. package/fesm2022/acorex-core-events.mjs +56 -0
  127. package/fesm2022/acorex-core-events.mjs.map +1 -0
  128. package/fesm2022/acorex-core-file.mjs +214 -0
  129. package/fesm2022/acorex-core-file.mjs.map +1 -0
  130. package/fesm2022/acorex-core-format.mjs +282 -0
  131. package/fesm2022/acorex-core-format.mjs.map +1 -0
  132. package/fesm2022/acorex-core-image.mjs +50 -0
  133. package/fesm2022/acorex-core-image.mjs.map +1 -0
  134. package/fesm2022/acorex-core-memorize.mjs +26 -0
  135. package/fesm2022/acorex-core-memorize.mjs.map +1 -0
  136. package/fesm2022/acorex-core-pipes.mjs +44 -0
  137. package/fesm2022/acorex-core-pipes.mjs.map +1 -0
  138. package/fesm2022/acorex-core-platform.mjs +232 -0
  139. package/fesm2022/acorex-core-platform.mjs.map +1 -0
  140. package/fesm2022/acorex-core-storage.mjs +285 -0
  141. package/fesm2022/acorex-core-storage.mjs.map +1 -0
  142. package/fesm2022/acorex-core-translation.mjs +293 -0
  143. package/fesm2022/acorex-core-translation.mjs.map +1 -0
  144. package/fesm2022/acorex-core-types.mjs +6 -0
  145. package/fesm2022/acorex-core-types.mjs.map +1 -0
  146. package/fesm2022/acorex-core-utils.mjs +247 -0
  147. package/fesm2022/acorex-core-utils.mjs.map +1 -0
  148. package/fesm2022/acorex-core-validation.mjs +488 -0
  149. package/fesm2022/acorex-core-validation.mjs.map +1 -0
  150. package/fesm2022/acorex-core.mjs +2 -2309
  151. package/fesm2022/acorex-core.mjs.map +1 -1
  152. package/file/README.md +3 -0
  153. package/file/index.d.ts +6 -0
  154. package/file/lib/file-download-ref.class.d.ts +6 -0
  155. package/file/lib/file-download-result.class.d.ts +8 -0
  156. package/file/lib/file-size-formatter.d.ts +16 -0
  157. package/file/lib/file-upload-ref.class.d.ts +5 -0
  158. package/file/lib/file.module.d.ts +7 -0
  159. package/file/lib/file.service.d.ts +18 -0
  160. package/format/README.md +3 -0
  161. package/format/index.d.ts +7 -0
  162. package/format/lib/format.config.d.ts +5 -0
  163. package/format/lib/format.module.d.ts +18 -0
  164. package/format/lib/format.pipe.d.ts +12 -0
  165. package/format/lib/format.service.d.ts +43 -0
  166. package/format/lib/format.types.d.ts +4 -0
  167. package/format/lib/formatters/number-formatter.d.ts +23 -0
  168. package/format/lib/formatters/string-formatter.d.ts +14 -0
  169. package/image/README.md +3 -0
  170. package/image/index.d.ts +1 -0
  171. package/image/lib/image.service.d.ts +11 -0
  172. package/index.d.ts +1 -43
  173. package/memorize/README.md +3 -0
  174. package/memorize/index.d.ts +1 -0
  175. package/memorize/lib/memorize.decorator.d.ts +1 -0
  176. package/package.json +98 -5
  177. package/pipes/README.md +3 -0
  178. package/pipes/index.d.ts +1 -0
  179. package/pipes/lib/safe/safe.pipe.d.ts +10 -0
  180. package/platform/README.md +3 -0
  181. package/platform/index.d.ts +1 -0
  182. package/{lib/platform → platform/lib}/platform.service.d.ts +14 -6
  183. package/storage/README.md +3 -0
  184. package/storage/cookie-storage.service.d.ts +104 -0
  185. package/storage/index.d.ts +4 -0
  186. package/storage/local-storage.service.d.ts +16 -0
  187. package/storage/session-storage.service.d.ts +10 -0
  188. package/storage/storage.interface.d.ts +14 -0
  189. package/translation/README.md +3 -0
  190. package/translation/index.d.ts +8 -0
  191. package/translation/lib/translation-scope.resolver.d.ts +2 -0
  192. package/translation/lib/translation.config.d.ts +14 -0
  193. package/translation/lib/translation.loader.d.ts +14 -0
  194. package/translation/lib/translation.module.d.ts +8 -0
  195. package/translation/lib/translation.service.d.ts +31 -0
  196. package/translation/lib/translation.types.d.ts +10 -0
  197. package/translation/lib/translator.directive.d.ts +12 -0
  198. package/translation/lib/translator.pipe.d.ts +12 -0
  199. package/types/README.md +3 -0
  200. package/types/index.d.ts +2 -0
  201. package/utils/README.md +3 -0
  202. package/utils/index.d.ts +5 -0
  203. package/utils/lib/auto-unsubscribe.d.ts +12 -0
  204. package/utils/lib/color-util.d.ts +24 -0
  205. package/utils/lib/drawing-util.d.ts +18 -0
  206. package/utils/lib/html-util.d.ts +5 -0
  207. package/utils/lib/string-util.d.ts +6 -0
  208. package/validation/README.md +3 -0
  209. package/validation/index.d.ts +14 -0
  210. package/validation/lib/rules/between-rule.d.ts +18 -0
  211. package/validation/lib/rules/callback-rule.d.ts +23 -0
  212. package/validation/lib/rules/equal-rule.d.ts +17 -0
  213. package/validation/lib/rules/greater-than.d.ts +17 -0
  214. package/validation/lib/rules/length-rule.d.ts +17 -0
  215. package/validation/lib/rules/less-than-rule.d.ts +17 -0
  216. package/validation/lib/rules/maxlength-rule.d.ts +16 -0
  217. package/validation/lib/rules/minlength-rule.d.ts +16 -0
  218. package/validation/lib/rules/regex-rule.d.ts +17 -0
  219. package/validation/lib/rules/required-rule.d.ts +16 -0
  220. package/validation/lib/validation.config.d.ts +15 -0
  221. package/validation/lib/validation.module.d.ts +17 -0
  222. package/validation/lib/validation.service.d.ts +35 -0
  223. package/validation/lib/validation.types.d.ts +21 -0
  224. package/esm2022/lib/classes/base-page.class.mjs +0 -26
  225. package/esm2022/lib/classes/color.class.mjs +0 -49
  226. package/esm2022/lib/classes/datetime.class.mjs +0 -323
  227. package/esm2022/lib/classes/menu.class.mjs +0 -35
  228. package/esm2022/lib/classes/navigator.class.mjs +0 -2
  229. package/esm2022/lib/classes/popup.class.mjs +0 -2
  230. package/esm2022/lib/classes/promise.class.mjs +0 -21
  231. package/esm2022/lib/classes/sectionlist.class.mjs +0 -2
  232. package/esm2022/lib/classes/select.class.mjs +0 -8
  233. package/esm2022/lib/core.module.mjs +0 -27
  234. package/esm2022/lib/error/error.class.mjs +0 -2
  235. package/esm2022/lib/error/error.module.mjs +0 -19
  236. package/esm2022/lib/error/error.service.mjs +0 -22
  237. package/esm2022/lib/events/keyboard.mjs +0 -2
  238. package/esm2022/lib/http/http-error.class.mjs +0 -2
  239. package/esm2022/lib/http/http-events.interceptor.mjs +0 -3
  240. package/esm2022/lib/http/http-request.class.mjs +0 -2
  241. package/esm2022/lib/http/http-result.class.mjs +0 -25
  242. package/esm2022/lib/http/http.module.mjs +0 -35
  243. package/esm2022/lib/http/http.service.mjs +0 -148
  244. package/esm2022/lib/locale/en.json +0 -255
  245. package/esm2022/lib/locale/fa.json +0 -245
  246. package/esm2022/lib/pipe/datetime.pipe.mjs +0 -25
  247. package/esm2022/lib/pipe/htmlToText.pipe.mjs +0 -25
  248. package/esm2022/lib/platform/index.mjs +0 -2
  249. package/esm2022/lib/platform/platform.service.mjs +0 -152
  250. package/esm2022/lib/services/config.mjs +0 -29
  251. package/esm2022/lib/services/event.service.mjs +0 -34
  252. package/esm2022/lib/services/navigator.service.mjs +0 -10
  253. package/esm2022/lib/services/storage.service.mjs +0 -16
  254. package/esm2022/lib/translator/translator.mjs +0 -26
  255. package/esm2022/lib/translator/translator.module.mjs +0 -25
  256. package/esm2022/lib/translator/translator.pipe.mjs +0 -24
  257. package/esm2022/lib/translator/translator.service.mjs +0 -21
  258. package/esm2022/lib/utils/array/array-util.mjs +0 -133
  259. package/esm2022/lib/utils/html/html-util.mjs +0 -200
  260. package/esm2022/lib/utils/html/html.module.mjs +0 -19
  261. package/esm2022/lib/utils/math/math-util.mjs +0 -6
  262. package/esm2022/lib/utils/object/object-util.mjs +0 -83
  263. package/esm2022/lib/utils/render/on-demand-preload-strategy.service.mjs +0 -21
  264. package/esm2022/lib/utils/render/render.service.mjs +0 -109
  265. package/esm2022/lib/utils/render/rendering.module.mjs +0 -35
  266. package/esm2022/lib/utils/scroll/scroll.directive.mjs +0 -56
  267. package/esm2022/lib/utils/scroll/scroll.module.mjs +0 -19
  268. package/esm2022/lib/utils/separator/separator.module.mjs +0 -19
  269. package/esm2022/lib/utils/separator/separator.pipe.mjs +0 -33
  270. package/lib/classes/base-page.class.d.ts +0 -13
  271. package/lib/classes/color.class.d.ts +0 -17
  272. package/lib/classes/datetime.class.d.ts +0 -63
  273. package/lib/classes/menu.class.d.ts +0 -34
  274. package/lib/classes/navigator.class.d.ts +0 -5
  275. package/lib/classes/popup.class.d.ts +0 -12
  276. package/lib/classes/promise.class.d.ts +0 -7
  277. package/lib/classes/sectionlist.class.d.ts +0 -8
  278. package/lib/classes/select.class.d.ts +0 -7
  279. package/lib/core.module.d.ts +0 -9
  280. package/lib/error/error.class.d.ts +0 -4
  281. package/lib/error/error.module.d.ts +0 -7
  282. package/lib/error/error.service.d.ts +0 -13
  283. package/lib/events/keyboard.d.ts +0 -2
  284. package/lib/http/http-error.class.d.ts +0 -7
  285. package/lib/http/http-events.interceptor.d.ts +0 -10
  286. package/lib/http/http-request.class.d.ts +0 -14
  287. package/lib/http/http-result.class.d.ts +0 -11
  288. package/lib/http/http.module.d.ts +0 -10
  289. package/lib/http/http.service.d.ts +0 -23
  290. package/lib/pipe/datetime.pipe.d.ts +0 -8
  291. package/lib/pipe/htmlToText.pipe.d.ts +0 -7
  292. package/lib/platform/index.d.ts +0 -1
  293. package/lib/services/config.d.ts +0 -9
  294. package/lib/services/navigator.service.d.ts +0 -8
  295. package/lib/services/storage.service.d.ts +0 -7
  296. package/lib/translator/translator.d.ts +0 -9
  297. package/lib/translator/translator.module.d.ts +0 -8
  298. package/lib/translator/translator.pipe.d.ts +0 -8
  299. package/lib/translator/translator.service.d.ts +0 -8
  300. package/lib/utils/array/array-util.d.ts +0 -6
  301. package/lib/utils/html/html-util.d.ts +0 -62
  302. package/lib/utils/html/html.module.d.ts +0 -8
  303. package/lib/utils/math/math-util.d.ts +0 -3
  304. package/lib/utils/object/object-util.d.ts +0 -7
  305. package/lib/utils/render/on-demand-preload-strategy.service.d.ts +0 -10
  306. package/lib/utils/render/render.service.d.ts +0 -18
  307. package/lib/utils/render/rendering.module.d.ts +0 -8
  308. package/lib/utils/scroll/scroll.directive.d.ts +0 -18
  309. package/lib/utils/scroll/scroll.module.d.ts +0 -8
  310. package/lib/utils/separator/separator.module.d.ts +0 -8
  311. package/lib/utils/separator/separator.pipe.d.ts +0 -8
@@ -0,0 +1,2631 @@
1
+ const COUNTRIES =
2
+ // version: 1.2.0
3
+ [
4
+ {
5
+ name: 'Afghanistan',
6
+ regions: ['asia'],
7
+ code: 'af',
8
+ iso2code: '+93',
9
+ format: '0000 000 000 00 000',
10
+ bkPosition: {
11
+ x: '-96px',
12
+ y: '-26px',
13
+ },
14
+ },
15
+ {
16
+ name: 'Albania',
17
+ regions: ['europe'],
18
+ code: 'al',
19
+ iso2code: '+355',
20
+ format: '0000 000 000 00 000',
21
+ bkPosition: {
22
+ x: '-168px',
23
+ y: '-26px',
24
+ },
25
+ },
26
+ {
27
+ name: 'Algeria',
28
+ regions: ['africa', 'north-africa'],
29
+ code: 'dz',
30
+ iso2code: '+213',
31
+ format: '0000 000 000 00 000',
32
+ bkPosition: {
33
+ x: '-264px',
34
+ y: '-98px',
35
+ },
36
+ },
37
+ {
38
+ name: 'Andorra',
39
+ regions: ['europe'],
40
+ code: 'ad',
41
+ iso2code: '+376',
42
+ format: '0000 000 000 00 000',
43
+ bkPosition: {
44
+ x: '-48px',
45
+ y: '-26px',
46
+ },
47
+ },
48
+ {
49
+ name: 'Angola',
50
+ regions: ['africa'],
51
+ code: 'ao',
52
+ iso2code: '+244',
53
+ format: '0000 000 000 00 000',
54
+ bkPosition: {
55
+ x: '-240px',
56
+ y: '-26px',
57
+ },
58
+ },
59
+ {
60
+ name: 'Antigua and Barbuda',
61
+ regions: ['america', 'carribean'],
62
+ code: 'ag',
63
+ iso2code: '+1268',
64
+ format: '0000 000 000 00 000',
65
+ bkPosition: {
66
+ x: '-120px',
67
+ y: '-26px',
68
+ },
69
+ },
70
+ {
71
+ name: 'Argentina',
72
+ regions: ['america', 'south-america'],
73
+ code: 'ar',
74
+ iso2code: '+54',
75
+ format: '(00) 00000000',
76
+ orderPriority: 0,
77
+ areaCodes: [
78
+ '11',
79
+ '221',
80
+ '223',
81
+ '261',
82
+ '264',
83
+ '2652',
84
+ '280',
85
+ '2905',
86
+ '291',
87
+ '2920',
88
+ '2966',
89
+ '299',
90
+ '341',
91
+ '342',
92
+ '343',
93
+ '351',
94
+ '376',
95
+ '379',
96
+ '381',
97
+ '3833',
98
+ '385',
99
+ '387',
100
+ '388',
101
+ ],
102
+ bkPosition: {
103
+ x: '-288px',
104
+ y: '-26px',
105
+ },
106
+ },
107
+ {
108
+ name: 'Armenia',
109
+ regions: ['asia', 'ex-ussr'],
110
+ code: 'am',
111
+ iso2code: '+374',
112
+ format: '00 000000',
113
+ bkPosition: {
114
+ x: '-192px',
115
+ y: '-26px',
116
+ },
117
+ },
118
+ {
119
+ name: 'Aruba',
120
+ regions: ['america', 'carribean'],
121
+ code: 'aw',
122
+ iso2code: '+297',
123
+ format: '0000 000 000 00 000',
124
+ bkPosition: {
125
+ x: '-384px',
126
+ y: '-26px',
127
+ },
128
+ },
129
+ {
130
+ name: 'Australia',
131
+ regions: ['oceania'],
132
+ code: 'au',
133
+ iso2code: '+61',
134
+ format: '(00) 0000 0000',
135
+ orderPriority: 0,
136
+ areaCodes: ['2', '3', '4', '7', '8', '02', '03', '04', '07', '08'],
137
+ bkPosition: {
138
+ x: '-360px',
139
+ y: '-26px',
140
+ },
141
+ },
142
+ {
143
+ name: 'Austria',
144
+ regions: ['europe', 'eu-union'],
145
+ code: 'at',
146
+ iso2code: '+43',
147
+ format: '0000 000 000 00 000',
148
+ bkPosition: {
149
+ x: '-336px',
150
+ y: '-26px',
151
+ },
152
+ },
153
+ {
154
+ name: 'Azerbaijan',
155
+ regions: ['asia', 'ex-ussr'],
156
+ code: 'az',
157
+ iso2code: '+994',
158
+ format: '(00) 000 00 00',
159
+ bkPosition: {
160
+ x: '-24px',
161
+ y: '-50px',
162
+ },
163
+ },
164
+ {
165
+ name: 'Bahamas',
166
+ regions: ['america', 'carribean'],
167
+ code: 'bs',
168
+ iso2code: '+1242',
169
+ format: '0000 000 000 00 000',
170
+ bkPosition: {
171
+ x: '-384px',
172
+ y: '-50px',
173
+ },
174
+ },
175
+ {
176
+ name: 'Bahrain',
177
+ regions: ['middle-east'],
178
+ code: 'bh',
179
+ iso2code: '+973',
180
+ format: '0000 000 000 00 000',
181
+ bkPosition: {
182
+ x: '-192px',
183
+ y: '-50px',
184
+ },
185
+ },
186
+ {
187
+ name: 'Bangladesh',
188
+ regions: ['asia'],
189
+ code: 'bd',
190
+ iso2code: '+880',
191
+ format: '0000 000 000 00 000',
192
+ bkPosition: {
193
+ x: '-96px',
194
+ y: '-50px',
195
+ },
196
+ },
197
+ {
198
+ name: 'Barbados',
199
+ regions: ['america', 'carribean'],
200
+ code: 'bb',
201
+ iso2code: '+1246',
202
+ format: '0000 000 000 00 000',
203
+ bkPosition: {
204
+ x: '-72px',
205
+ y: '-50px',
206
+ },
207
+ },
208
+ {
209
+ name: 'Belarus',
210
+ regions: ['europe', 'ex-ussr'],
211
+ code: 'by',
212
+ iso2code: '+375',
213
+ format: '(00) 000 00 00',
214
+ bkPosition: {
215
+ x: '-48px',
216
+ y: '-74px',
217
+ },
218
+ },
219
+ {
220
+ name: 'Belgium',
221
+ regions: ['europe', 'eu-union'],
222
+ code: 'be',
223
+ iso2code: '+32',
224
+ format: '000 00 00 00',
225
+ bkPosition: {
226
+ x: '-120px',
227
+ y: '-50px',
228
+ },
229
+ },
230
+ {
231
+ name: 'Belize',
232
+ regions: ['america', 'central-america'],
233
+ code: 'bz',
234
+ iso2code: '+501',
235
+ format: '0000 000 000 00 000',
236
+ bkPosition: {
237
+ x: '-72px',
238
+ y: '-74px',
239
+ },
240
+ },
241
+ {
242
+ name: 'Benin',
243
+ regions: ['africa'],
244
+ code: 'bj',
245
+ iso2code: '+229',
246
+ format: '0000 000 000 00 000',
247
+ bkPosition: {
248
+ x: '-240px',
249
+ y: '-50px',
250
+ },
251
+ },
252
+ {
253
+ name: 'Bhutan',
254
+ regions: ['asia'],
255
+ code: 'bt',
256
+ iso2code: '+975',
257
+ format: '0000 000 000 00 000',
258
+ bkPosition: {
259
+ x: '0',
260
+ y: '-74px',
261
+ },
262
+ },
263
+ {
264
+ name: 'Bolivia',
265
+ regions: ['america', 'south-america'],
266
+ code: 'bo',
267
+ iso2code: '+591',
268
+ format: '0000 000 000 00 000',
269
+ bkPosition: {
270
+ x: '-336px',
271
+ y: '-50px',
272
+ },
273
+ },
274
+ {
275
+ name: 'Bosnia and Herzegovina',
276
+ regions: ['europe', 'ex-yugos'],
277
+ code: 'ba',
278
+ iso2code: '+387',
279
+ format: '0000 000 000 00 000',
280
+ bkPosition: {
281
+ x: '-48px',
282
+ y: '-50px',
283
+ },
284
+ },
285
+ {
286
+ name: 'Botswana',
287
+ regions: ['africa'],
288
+ code: 'bw',
289
+ iso2code: '+267',
290
+ format: '0000 000 000 00 000',
291
+ bkPosition: {
292
+ x: '-24px',
293
+ y: '-74px',
294
+ },
295
+ },
296
+ {
297
+ name: 'Brazil',
298
+ regions: ['america', 'south-america'],
299
+ code: 'br',
300
+ iso2code: '+55',
301
+ format: '(00) 000000000',
302
+ bkPosition: {
303
+ x: '-360px',
304
+ y: '-50px',
305
+ },
306
+ },
307
+ {
308
+ name: 'British Indian Ocean Territory',
309
+ regions: ['asia'],
310
+ code: 'io',
311
+ iso2code: '+246',
312
+ format: '0000 000 000 00 000',
313
+ },
314
+ {
315
+ name: 'Brunei',
316
+ regions: ['asia'],
317
+ code: 'bn',
318
+ iso2code: '+673',
319
+ format: '0000 000 000 00 000',
320
+ bkPosition: {
321
+ x: '-312px',
322
+ y: '-50px',
323
+ },
324
+ },
325
+ {
326
+ name: 'Bulgaria',
327
+ regions: ['europe', 'eu-union'],
328
+ code: 'bg',
329
+ iso2code: '+359',
330
+ format: '0000 000 000 00 000',
331
+ bkPosition: {
332
+ x: '-168px',
333
+ y: '-50px',
334
+ },
335
+ },
336
+ {
337
+ name: 'Burkina Faso',
338
+ regions: ['africa'],
339
+ code: 'bf',
340
+ iso2code: '+226',
341
+ format: '0000 000 000 00 000',
342
+ bkPosition: {
343
+ x: '-144px',
344
+ y: '-50px',
345
+ },
346
+ },
347
+ {
348
+ name: 'Burundi',
349
+ regions: ['africa'],
350
+ code: 'bi',
351
+ iso2code: '+257',
352
+ format: '0000 000 000 00 000',
353
+ bkPosition: {
354
+ x: '-216px',
355
+ y: '-50px',
356
+ },
357
+ },
358
+ {
359
+ name: 'Cambodia',
360
+ regions: ['asia'],
361
+ code: 'kh',
362
+ iso2code: '+855',
363
+ format: '0000 000 000 00 000',
364
+ bkPosition: {
365
+ x: '-312px',
366
+ y: '-170px',
367
+ },
368
+ },
369
+ {
370
+ name: 'Cameroon',
371
+ regions: ['africa'],
372
+ code: 'cm',
373
+ iso2code: '+237',
374
+ format: '0000 000 000 00 000',
375
+ bkPosition: {
376
+ x: '-312px',
377
+ y: '-74px',
378
+ },
379
+ },
380
+ {
381
+ name: 'Canada',
382
+ regions: ['america', 'north-america'],
383
+ code: 'ca',
384
+ iso2code: '+1',
385
+ format: '(000) 000-0000',
386
+ orderPriority: 1,
387
+ areaCodes: [
388
+ '204',
389
+ '226',
390
+ '236',
391
+ '249',
392
+ '250',
393
+ '289',
394
+ '306',
395
+ '343',
396
+ '365',
397
+ '387',
398
+ '403',
399
+ '416',
400
+ '418',
401
+ '431',
402
+ '437',
403
+ '438',
404
+ '450',
405
+ '506',
406
+ '514',
407
+ '519',
408
+ '548',
409
+ '579',
410
+ '581',
411
+ '587',
412
+ '604',
413
+ '613',
414
+ '639',
415
+ '647',
416
+ '672',
417
+ '705',
418
+ '709',
419
+ '742',
420
+ '778',
421
+ '780',
422
+ '782',
423
+ '807',
424
+ '819',
425
+ '825',
426
+ '867',
427
+ '873',
428
+ '902',
429
+ '905',
430
+ ],
431
+ bkPosition: {
432
+ x: '-96px',
433
+ y: '-74px',
434
+ },
435
+ },
436
+ {
437
+ name: 'Cape Verde',
438
+ regions: ['africa'],
439
+ code: 'cv',
440
+ iso2code: '+238',
441
+ format: '0000 000 000 00 000',
442
+ bkPosition: {
443
+ x: '-24px',
444
+ y: '-98px',
445
+ },
446
+ },
447
+ {
448
+ name: 'Caribbean Netherlands',
449
+ regions: ['america', 'carribean'],
450
+ code: 'bq',
451
+ iso2code: '+599',
452
+ format: '0000 000 000 00 000',
453
+ orderPriority: 1,
454
+ },
455
+ {
456
+ name: 'Central African Republic',
457
+ regions: ['africa'],
458
+ code: 'cf',
459
+ iso2code: '+236',
460
+ format: '0000 000 000 00 000',
461
+ bkPosition: {
462
+ x: '-168px',
463
+ y: '-74px',
464
+ },
465
+ },
466
+ {
467
+ name: 'Chad',
468
+ regions: ['africa'],
469
+ code: 'td',
470
+ iso2code: '+235',
471
+ format: '0000 000 000 00 000',
472
+ bkPosition: {
473
+ x: '-168px',
474
+ y: '-314px',
475
+ },
476
+ },
477
+ {
478
+ name: 'Chile',
479
+ regions: ['america', 'south-america'],
480
+ code: 'cl',
481
+ iso2code: '+56',
482
+ format: '0000 000 000 00 000',
483
+ bkPosition: {
484
+ x: '-288px',
485
+ y: '-74px',
486
+ },
487
+ },
488
+ {
489
+ name: 'China',
490
+ regions: ['asia'],
491
+ code: 'cn',
492
+ iso2code: '+86',
493
+ format: '00-000000000',
494
+ bkPosition: {
495
+ x: '-336px',
496
+ y: '-74px',
497
+ },
498
+ },
499
+ {
500
+ name: 'Colombia',
501
+ regions: ['america', 'south-america'],
502
+ code: 'co',
503
+ iso2code: '+57',
504
+ format: '000 000 0000',
505
+ bkPosition: {
506
+ x: '-360px',
507
+ y: '-74px',
508
+ },
509
+ },
510
+ {
511
+ name: 'Comoros',
512
+ regions: ['africa'],
513
+ code: 'km',
514
+ iso2code: '+269',
515
+ format: '0000 000 000 00 000',
516
+ bkPosition: {
517
+ x: '-360px',
518
+ y: '-170px',
519
+ },
520
+ },
521
+ {
522
+ name: 'Congo',
523
+ regions: ['africa'],
524
+ code: 'cd',
525
+ iso2code: '+243',
526
+ format: '0000 000 000 00 000',
527
+ bkPosition: {
528
+ x: '-144px',
529
+ y: '-74px',
530
+ },
531
+ },
532
+ {
533
+ name: 'Congo',
534
+ regions: ['africa'],
535
+ code: 'cg',
536
+ iso2code: '+242',
537
+ format: '0000 000 000 00 000',
538
+ bkPosition: {
539
+ x: '-192px',
540
+ y: '-74px',
541
+ },
542
+ },
543
+ {
544
+ name: 'Costa Rica',
545
+ regions: ['america', 'central-america'],
546
+ code: 'cr',
547
+ iso2code: '+506',
548
+ format: '0000-0000',
549
+ bkPosition: {
550
+ x: '-384px',
551
+ y: '-74px',
552
+ },
553
+ },
554
+ {
555
+ name: 'Côte d’Ivoire',
556
+ regions: ['africa'],
557
+ code: 'ci',
558
+ iso2code: '+225',
559
+ format: '00 00 00 00',
560
+ bkPosition: {
561
+ x: '-240px',
562
+ y: '-74px',
563
+ },
564
+ },
565
+ {
566
+ name: 'Croatia',
567
+ regions: ['europe', 'eu-union', 'ex-yugos'],
568
+ code: 'hr',
569
+ iso2code: '+385',
570
+ format: '0000 000 000 00 000',
571
+ bkPosition: {
572
+ x: '-264px',
573
+ y: '-146px',
574
+ },
575
+ },
576
+ {
577
+ name: 'Cuba',
578
+ regions: ['america', 'carribean'],
579
+ code: 'cu',
580
+ iso2code: '+53',
581
+ format: '0000 000 000 00 000',
582
+ bkPosition: {
583
+ x: '0',
584
+ y: '-98px',
585
+ },
586
+ },
587
+ {
588
+ name: 'Curaçao',
589
+ regions: ['america', 'carribean'],
590
+ code: 'cw',
591
+ iso2code: '+599',
592
+ format: '0000 000 000 00 000',
593
+ orderPriority: 0,
594
+ bkPosition: {
595
+ x: '-48px',
596
+ y: '-98px',
597
+ },
598
+ },
599
+ {
600
+ name: 'Cyprus',
601
+ regions: ['europe', 'eu-union'],
602
+ code: 'cy',
603
+ iso2code: '+357',
604
+ format: '00 000000',
605
+ bkPosition: {
606
+ x: '-96px',
607
+ y: '-98px',
608
+ },
609
+ },
610
+ {
611
+ name: 'Czech Republic',
612
+ regions: ['europe', 'eu-union'],
613
+ code: 'cz',
614
+ iso2code: '+420',
615
+ format: '000 000 000',
616
+ bkPosition: {
617
+ x: '-120px',
618
+ y: '-98px',
619
+ },
620
+ },
621
+ {
622
+ name: 'Denmark',
623
+ regions: ['europe', 'eu-union', 'baltic'],
624
+ code: 'dk',
625
+ iso2code: '+45',
626
+ format: '00 00 00 00',
627
+ bkPosition: {
628
+ x: '-192px',
629
+ y: '-98px',
630
+ },
631
+ },
632
+ {
633
+ name: 'Djibouti',
634
+ regions: ['africa'],
635
+ code: 'dj',
636
+ iso2code: '+253',
637
+ format: '0000 000 000 00 000',
638
+ bkPosition: {
639
+ x: '-168px',
640
+ y: '-98px',
641
+ },
642
+ },
643
+ {
644
+ name: 'Dominica',
645
+ regions: ['america', 'carribean'],
646
+ code: 'dm',
647
+ iso2code: '+1767',
648
+ format: '0000 000 000 00 000',
649
+ bkPosition: {
650
+ x: '-216px',
651
+ y: '-98px',
652
+ },
653
+ },
654
+ {
655
+ name: 'Dominican Republic',
656
+ regions: ['america', 'carribean'],
657
+ code: 'do',
658
+ iso2code: '+1',
659
+ format: '0000 000 000 00 000',
660
+ orderPriority: 2,
661
+ areaCodes: ['809', '829', '849'],
662
+ bkPosition: {
663
+ x: '-240px',
664
+ y: '-98px',
665
+ },
666
+ },
667
+ {
668
+ name: 'Ecuador',
669
+ regions: ['america', 'south-america'],
670
+ code: 'ec',
671
+ iso2code: '+593',
672
+ format: '0000 000 000 00 000',
673
+ bkPosition: {
674
+ x: '-288px',
675
+ y: '-98px',
676
+ },
677
+ },
678
+ {
679
+ name: 'Egypt',
680
+ regions: ['africa', 'north-africa'],
681
+ code: 'eg',
682
+ iso2code: '+20',
683
+ format: '0000 000 000 00 000',
684
+ bkPosition: {
685
+ x: '-336px',
686
+ y: '-98px',
687
+ },
688
+ },
689
+ {
690
+ name: 'El Salvador',
691
+ regions: ['america', 'central-america'],
692
+ code: 'sv',
693
+ iso2code: '+503',
694
+ format: '0000-0000',
695
+ bkPosition: {
696
+ x: '-72px',
697
+ y: '-314px',
698
+ },
699
+ },
700
+ {
701
+ name: 'Equatorial Guinea',
702
+ regions: ['africa'],
703
+ code: 'gq',
704
+ iso2code: '+240',
705
+ format: '0000 000 000 00 000',
706
+ bkPosition: {
707
+ x: '-48px',
708
+ y: '-146px',
709
+ },
710
+ },
711
+ {
712
+ name: 'Eritrea',
713
+ regions: ['africa'],
714
+ code: 'er',
715
+ iso2code: '+291',
716
+ format: '0000 000 000 00 000',
717
+ bkPosition: {
718
+ x: '-384px',
719
+ y: '-98px',
720
+ },
721
+ },
722
+ {
723
+ name: 'Estonia',
724
+ regions: ['europe', 'eu-union', 'ex-ussr', 'baltic'],
725
+ code: 'ee',
726
+ iso2code: '+372',
727
+ format: '0000 000000',
728
+ bkPosition: {
729
+ x: '-312px',
730
+ y: '-98px',
731
+ },
732
+ },
733
+ {
734
+ name: 'Ethiopia',
735
+ regions: ['africa'],
736
+ code: 'et',
737
+ iso2code: '+251',
738
+ format: '0000 000 000 00 000',
739
+ bkPosition: {
740
+ x: '-24px',
741
+ y: '-122px',
742
+ },
743
+ },
744
+ {
745
+ name: 'Fiji',
746
+ regions: ['oceania'],
747
+ code: 'fj',
748
+ iso2code: '+679',
749
+ format: '0000 000 000 00 000',
750
+ bkPosition: {
751
+ x: '-96px',
752
+ y: '-122px',
753
+ },
754
+ },
755
+ {
756
+ name: 'Finland',
757
+ regions: ['europe', 'eu-union', 'baltic'],
758
+ code: 'fi',
759
+ iso2code: '+358',
760
+ format: '00 000 00 00',
761
+ bkPosition: {
762
+ x: '-72px',
763
+ y: '-122px',
764
+ },
765
+ },
766
+ {
767
+ name: 'France',
768
+ regions: ['europe', 'eu-union'],
769
+ code: 'fr',
770
+ iso2code: '+33',
771
+ format: '0 00 00 00 00',
772
+ bkPosition: {
773
+ x: '-192px',
774
+ y: '-122px',
775
+ },
776
+ },
777
+ {
778
+ name: 'French Guiana',
779
+ regions: ['america', 'south-america'],
780
+ code: 'gf',
781
+ iso2code: '+594',
782
+ format: '0000 000 000 00 000',
783
+ },
784
+ {
785
+ name: 'French Polynesia',
786
+ regions: ['oceania'],
787
+ code: 'pf',
788
+ iso2code: '+689',
789
+ format: '0000 000 000 00 000',
790
+ bkPosition: {
791
+ x: '-72px',
792
+ y: '-266px',
793
+ },
794
+ },
795
+ {
796
+ name: 'Gabon',
797
+ regions: ['africa'],
798
+ code: 'ga',
799
+ iso2code: '+241',
800
+ format: '0000 000 000 00 000',
801
+ bkPosition: {
802
+ x: '-216px',
803
+ y: '-122px',
804
+ },
805
+ },
806
+ {
807
+ name: 'Gambia',
808
+ regions: ['africa'],
809
+ code: 'gm',
810
+ iso2code: '+220',
811
+ format: '0000 000 000 00 000',
812
+ bkPosition: {
813
+ x: '0',
814
+ y: '-146px',
815
+ },
816
+ },
817
+ {
818
+ name: 'Georgia',
819
+ regions: ['asia', 'ex-ussr'],
820
+ code: 'ge',
821
+ iso2code: '+995',
822
+ format: '0000 000 000 00 000',
823
+ bkPosition: {
824
+ x: '-288px',
825
+ y: '-122px',
826
+ },
827
+ },
828
+ {
829
+ name: 'Germany',
830
+ regions: ['europe', 'eu-union', 'baltic'],
831
+ code: 'de',
832
+ iso2code: '+49',
833
+ format: '0000 00000000',
834
+ bkPosition: {
835
+ x: '-144px',
836
+ y: '-98px',
837
+ },
838
+ },
839
+ {
840
+ name: 'Ghana',
841
+ regions: ['africa'],
842
+ code: 'gh',
843
+ iso2code: '+233',
844
+ format: '0000 000 000 00 000',
845
+ bkPosition: {
846
+ x: '-336px',
847
+ y: '-122px',
848
+ },
849
+ },
850
+ {
851
+ name: 'Greece',
852
+ regions: ['europe', 'eu-union'],
853
+ code: 'gr',
854
+ iso2code: '+30',
855
+ format: '0000 000 000 00 000',
856
+ bkPosition: {
857
+ x: '-72px',
858
+ y: '-146px',
859
+ },
860
+ },
861
+ {
862
+ name: 'Grenada',
863
+ regions: ['america', 'carribean'],
864
+ code: 'gd',
865
+ iso2code: '+1473',
866
+ format: '0000 000 000 00 000',
867
+ bkPosition: {
868
+ x: '-264px',
869
+ y: '-122px',
870
+ },
871
+ },
872
+ {
873
+ name: 'Guadeloupe',
874
+ regions: ['america', 'carribean'],
875
+ code: 'gp',
876
+ iso2code: '+590',
877
+ format: '0000 000 000 00 000',
878
+ orderPriority: 0,
879
+ },
880
+ {
881
+ name: 'Guam',
882
+ regions: ['oceania'],
883
+ code: 'gu',
884
+ iso2code: '+1671',
885
+ format: '0000 000 000 00 000',
886
+ bkPosition: {
887
+ x: '-144px',
888
+ y: '-146px',
889
+ },
890
+ },
891
+ {
892
+ name: 'Guatemala',
893
+ regions: ['america', 'central-america'],
894
+ code: 'gt',
895
+ iso2code: '+502',
896
+ format: '0000-0000',
897
+ bkPosition: {
898
+ x: '-120px',
899
+ y: '-146px',
900
+ },
901
+ },
902
+ {
903
+ name: 'Guinea',
904
+ regions: ['africa'],
905
+ code: 'gn',
906
+ iso2code: '+224',
907
+ format: '0000 000 000 00 000',
908
+ bkPosition: {
909
+ x: '-24px',
910
+ y: '-146px',
911
+ },
912
+ },
913
+ {
914
+ name: 'Guinea-Bissau',
915
+ regions: ['africa'],
916
+ code: 'gw',
917
+ iso2code: '+245',
918
+ format: '0000 000 000 00 000',
919
+ bkPosition: {
920
+ x: '-168px',
921
+ y: '-146px',
922
+ },
923
+ },
924
+ {
925
+ name: 'Guyana',
926
+ regions: ['america', 'south-america'],
927
+ code: 'gy',
928
+ iso2code: '+592',
929
+ format: '0000 000 000 00 000',
930
+ bkPosition: {
931
+ x: '-192px',
932
+ y: '-146px',
933
+ },
934
+ },
935
+ {
936
+ name: 'Haiti',
937
+ regions: ['america', 'carribean'],
938
+ code: 'ht',
939
+ iso2code: '+509',
940
+ format: '0000-0000',
941
+ bkPosition: {
942
+ x: '-288px',
943
+ y: '-146px',
944
+ },
945
+ },
946
+ {
947
+ name: 'Honduras',
948
+ regions: ['america', 'central-america'],
949
+ code: 'hn',
950
+ iso2code: '+504',
951
+ format: '0000 000 000 00 000',
952
+ bkPosition: {
953
+ x: '-240px',
954
+ y: '-146px',
955
+ },
956
+ },
957
+ {
958
+ name: 'Hong Kong',
959
+ regions: ['asia'],
960
+ code: 'hk',
961
+ iso2code: '+852',
962
+ format: '0000 0000',
963
+ bkPosition: {
964
+ x: '-216px',
965
+ y: '-146px',
966
+ },
967
+ },
968
+ {
969
+ name: 'Hungary',
970
+ regions: ['europe', 'eu-union'],
971
+ code: 'hu',
972
+ iso2code: '+36',
973
+ format: '0000 000 000 00 000',
974
+ bkPosition: {
975
+ x: '-312px',
976
+ y: '-146px',
977
+ },
978
+ },
979
+ {
980
+ name: 'Iceland',
981
+ regions: ['europe'],
982
+ code: 'is',
983
+ iso2code: '+354',
984
+ format: '000 0000',
985
+ bkPosition: {
986
+ x: '-120px',
987
+ y: '-170px',
988
+ },
989
+ },
990
+ {
991
+ name: 'India',
992
+ regions: ['asia'],
993
+ code: 'in',
994
+ iso2code: '+91',
995
+ format: '00000-00000',
996
+ bkPosition: {
997
+ x: '-48px',
998
+ y: '-170px',
999
+ },
1000
+ },
1001
+ {
1002
+ name: 'Indonesia',
1003
+ regions: ['asia'],
1004
+ code: 'id',
1005
+ iso2code: '+62',
1006
+ format: '0000 000 000 00 000',
1007
+ bkPosition: {
1008
+ x: '-360px',
1009
+ y: '-146px',
1010
+ },
1011
+ },
1012
+ {
1013
+ name: 'Iran',
1014
+ regions: ['middle-east'],
1015
+ code: 'ir',
1016
+ iso2code: '+98',
1017
+ format: '000 000 0000',
1018
+ bkPosition: {
1019
+ x: '-96px',
1020
+ y: '-170px',
1021
+ },
1022
+ },
1023
+ {
1024
+ name: 'Iraq',
1025
+ regions: ['middle-east'],
1026
+ code: 'iq',
1027
+ iso2code: '+964',
1028
+ format: '0000 000 000 00 000',
1029
+ bkPosition: {
1030
+ x: '-72px',
1031
+ y: '-170px',
1032
+ },
1033
+ },
1034
+ {
1035
+ name: 'Ireland',
1036
+ regions: ['europe', 'eu-union'],
1037
+ code: 'ie',
1038
+ iso2code: '+353',
1039
+ format: '00 0000000',
1040
+ bkPosition: {
1041
+ x: '-384px',
1042
+ y: '-146px',
1043
+ },
1044
+ },
1045
+ {
1046
+ name: 'Israel',
1047
+ regions: ['middle-east'],
1048
+ code: 'il',
1049
+ iso2code: '+972',
1050
+ format: '000 000 0000',
1051
+ bkPosition: {
1052
+ x: '0',
1053
+ y: '-170px',
1054
+ },
1055
+ },
1056
+ {
1057
+ name: 'Italy',
1058
+ regions: ['europe', 'eu-union'],
1059
+ code: 'it',
1060
+ iso2code: '+39',
1061
+ format: '000 0000000',
1062
+ orderPriority: 0,
1063
+ bkPosition: {
1064
+ x: '-144px',
1065
+ y: '-170px',
1066
+ },
1067
+ },
1068
+ {
1069
+ name: 'Jamaica',
1070
+ regions: ['america', 'carribean'],
1071
+ code: 'jm',
1072
+ iso2code: '+1876',
1073
+ format: '0000 000 000 00 000',
1074
+ bkPosition: {
1075
+ x: '-192px',
1076
+ y: '-170px',
1077
+ },
1078
+ },
1079
+ {
1080
+ name: 'Japan',
1081
+ regions: ['asia'],
1082
+ code: 'jp',
1083
+ iso2code: '+81',
1084
+ format: '00 0000 0000',
1085
+ bkPosition: {
1086
+ x: '-240px',
1087
+ y: '-170px',
1088
+ },
1089
+ },
1090
+ {
1091
+ name: 'Jordan',
1092
+ regions: ['middle-east'],
1093
+ code: 'jo',
1094
+ iso2code: '+962',
1095
+ format: '0000 000 000 00 000',
1096
+ bkPosition: {
1097
+ x: '-216px',
1098
+ y: '-170px',
1099
+ },
1100
+ },
1101
+ {
1102
+ name: 'Kazakhstan',
1103
+ regions: ['asia', 'ex-ussr'],
1104
+ code: 'kz',
1105
+ iso2code: '+7',
1106
+ format: '000 000-00-00',
1107
+ orderPriority: 1,
1108
+ areaCodes: ['310', '311', '312', '313', '315', '318', '321', '324', '325', '326', '327', '336', '7172', '73622'],
1109
+ bkPosition: {
1110
+ x: '-96px',
1111
+ y: '-194px',
1112
+ },
1113
+ },
1114
+ {
1115
+ name: 'Kenya',
1116
+ regions: ['africa'],
1117
+ code: 'ke',
1118
+ iso2code: '+254',
1119
+ format: '0000 000 000 00 000',
1120
+ bkPosition: {
1121
+ x: '-264px',
1122
+ y: '-170px',
1123
+ },
1124
+ },
1125
+ {
1126
+ name: 'Kiribati',
1127
+ regions: ['oceania'],
1128
+ code: 'ki',
1129
+ iso2code: '+686',
1130
+ format: '0000 000 000 00 000',
1131
+ bkPosition: {
1132
+ x: '-336px',
1133
+ y: '-170px',
1134
+ },
1135
+ },
1136
+ {
1137
+ name: 'Kosovo',
1138
+ regions: ['europe', 'ex-yugos'],
1139
+ code: 'xk',
1140
+ iso2code: '+383',
1141
+ format: '0000 000 000 00 000',
1142
+ },
1143
+ {
1144
+ name: 'Kuwait',
1145
+ regions: ['middle-east'],
1146
+ code: 'kw',
1147
+ iso2code: '+965',
1148
+ format: '0000 000 000 00 000',
1149
+ bkPosition: {
1150
+ x: '-48px',
1151
+ y: '-194px',
1152
+ },
1153
+ },
1154
+ {
1155
+ name: 'Kyrgyzstan',
1156
+ regions: ['asia', 'ex-ussr'],
1157
+ code: 'kg',
1158
+ iso2code: '+996',
1159
+ format: '000 000 000',
1160
+ bkPosition: {
1161
+ x: '-288px',
1162
+ y: '-170px',
1163
+ },
1164
+ },
1165
+ {
1166
+ name: 'Laos',
1167
+ regions: ['asia'],
1168
+ code: 'la',
1169
+ iso2code: '+856',
1170
+ format: '0000 000 000 00 000',
1171
+ bkPosition: {
1172
+ x: '-120px',
1173
+ y: '-194px',
1174
+ },
1175
+ },
1176
+ {
1177
+ name: 'Latvia',
1178
+ regions: ['europe', 'eu-union', 'ex-ussr', 'baltic'],
1179
+ code: 'lv',
1180
+ iso2code: '+371',
1181
+ format: '00 000 000',
1182
+ bkPosition: {
1183
+ x: '-336px',
1184
+ y: '-194px',
1185
+ },
1186
+ },
1187
+ {
1188
+ name: 'Lebanon',
1189
+ regions: ['middle-east'],
1190
+ code: 'lb',
1191
+ iso2code: '+961',
1192
+ format: '0000 000 000 00 000',
1193
+ bkPosition: {
1194
+ x: '-144px',
1195
+ y: '-194px',
1196
+ },
1197
+ },
1198
+ {
1199
+ name: 'Lesotho',
1200
+ regions: ['africa'],
1201
+ code: 'ls',
1202
+ iso2code: '+266',
1203
+ format: '0000 000 000 00 000',
1204
+ bkPosition: {
1205
+ x: '-264px',
1206
+ y: '-194px',
1207
+ },
1208
+ },
1209
+ {
1210
+ name: 'Liberia',
1211
+ regions: ['africa'],
1212
+ code: 'lr',
1213
+ iso2code: '+231',
1214
+ format: '0000 000 000 00 000',
1215
+ bkPosition: {
1216
+ x: '-240px',
1217
+ y: '-194px',
1218
+ },
1219
+ },
1220
+ {
1221
+ name: 'Libya',
1222
+ regions: ['africa', 'north-africa'],
1223
+ code: 'ly',
1224
+ iso2code: '+218',
1225
+ format: '0000 000 000 00 000',
1226
+ bkPosition: {
1227
+ x: '-360px',
1228
+ y: '-194px',
1229
+ },
1230
+ },
1231
+ {
1232
+ name: 'Liechtenstein',
1233
+ regions: ['europe'],
1234
+ code: 'li',
1235
+ iso2code: '+423',
1236
+ format: '0000 000 000 00 000',
1237
+ bkPosition: {
1238
+ x: '-192px',
1239
+ y: '-194px',
1240
+ },
1241
+ },
1242
+ {
1243
+ name: 'Lithuania',
1244
+ regions: ['europe', 'eu-union', 'ex-ussr', 'baltic'],
1245
+ code: 'lt',
1246
+ iso2code: '+370',
1247
+ format: '0000 000 000 00 000',
1248
+ bkPosition: {
1249
+ x: '-288px',
1250
+ y: '-194px',
1251
+ },
1252
+ },
1253
+ {
1254
+ name: 'Luxembourg',
1255
+ regions: ['europe', 'eu-union'],
1256
+ code: 'lu',
1257
+ iso2code: '+352',
1258
+ format: '0000 000 000 00 000',
1259
+ bkPosition: {
1260
+ x: '-312px',
1261
+ y: '-194px',
1262
+ },
1263
+ },
1264
+ {
1265
+ name: 'Macau',
1266
+ regions: ['asia'],
1267
+ code: 'mo',
1268
+ iso2code: '+853',
1269
+ format: '0000 000 000 00 000',
1270
+ bkPosition: {
1271
+ x: '-240px',
1272
+ y: '-218px',
1273
+ },
1274
+ },
1275
+ {
1276
+ name: 'Macedonia',
1277
+ regions: ['europe', 'ex-yugos'],
1278
+ code: 'mk',
1279
+ iso2code: '+389',
1280
+ format: '0000 000 000 00 000',
1281
+ bkPosition: {
1282
+ x: '-144px',
1283
+ y: '-218px',
1284
+ },
1285
+ },
1286
+ {
1287
+ name: 'Madagascar',
1288
+ regions: ['africa'],
1289
+ code: 'mg',
1290
+ iso2code: '+261',
1291
+ format: '0000 000 000 00 000',
1292
+ bkPosition: {
1293
+ x: '-96px',
1294
+ y: '-218px',
1295
+ },
1296
+ },
1297
+ {
1298
+ name: 'Malawi',
1299
+ regions: ['africa'],
1300
+ code: 'mw',
1301
+ iso2code: '+265',
1302
+ format: '0000 000 000 00 000',
1303
+ bkPosition: {
1304
+ x: '-24px',
1305
+ y: '-242px',
1306
+ },
1307
+ },
1308
+ {
1309
+ name: 'Malaysia',
1310
+ regions: ['asia'],
1311
+ code: 'my',
1312
+ iso2code: '+60',
1313
+ format: '00-0000-0000',
1314
+ bkPosition: {
1315
+ x: '-72px',
1316
+ y: '-242px',
1317
+ },
1318
+ },
1319
+ {
1320
+ name: 'Maldives',
1321
+ regions: ['asia'],
1322
+ code: 'mv',
1323
+ iso2code: '+960',
1324
+ format: '0000 000 000 00 000',
1325
+ bkPosition: {
1326
+ x: '0',
1327
+ y: '-242px',
1328
+ },
1329
+ },
1330
+ {
1331
+ name: 'Mali',
1332
+ regions: ['africa'],
1333
+ code: 'ml',
1334
+ iso2code: '+223',
1335
+ format: '0000 000 000 00 000',
1336
+ bkPosition: {
1337
+ x: '-168px',
1338
+ y: '-218px',
1339
+ },
1340
+ },
1341
+ {
1342
+ name: 'Malta',
1343
+ regions: ['europe', 'eu-union'],
1344
+ code: 'mt',
1345
+ iso2code: '+356',
1346
+ format: '0000 000 000 00 000',
1347
+ bkPosition: {
1348
+ x: '-360px',
1349
+ y: '-218px',
1350
+ },
1351
+ },
1352
+ {
1353
+ name: 'Marshall Islands',
1354
+ regions: ['oceania'],
1355
+ code: 'mh',
1356
+ iso2code: '+692',
1357
+ format: '0000 000 000 00 000',
1358
+ bkPosition: {
1359
+ x: '-120px',
1360
+ y: '-218px',
1361
+ },
1362
+ },
1363
+ {
1364
+ name: 'Martinique',
1365
+ regions: ['america', 'carribean'],
1366
+ code: 'mq',
1367
+ iso2code: '+596',
1368
+ format: '0000 000 000 00 000',
1369
+ bkPosition: {
1370
+ x: '-288px',
1371
+ y: '-218px',
1372
+ },
1373
+ },
1374
+ {
1375
+ name: 'Mauritania',
1376
+ regions: ['africa'],
1377
+ code: 'mr',
1378
+ iso2code: '+222',
1379
+ format: '0000 000 000 00 000',
1380
+ bkPosition: {
1381
+ x: '-312px',
1382
+ y: '-218px',
1383
+ },
1384
+ },
1385
+ {
1386
+ name: 'Mauritius',
1387
+ regions: ['africa'],
1388
+ code: 'mu',
1389
+ iso2code: '+230',
1390
+ format: '0000 000 000 00 000',
1391
+ bkPosition: {
1392
+ x: '-384px',
1393
+ y: '-218px',
1394
+ },
1395
+ },
1396
+ {
1397
+ name: 'Mexico',
1398
+ regions: ['america', 'central-america'],
1399
+ code: 'mx',
1400
+ iso2code: '+52',
1401
+ format: '000 000 0000',
1402
+ orderPriority: 0,
1403
+ areaCodes: ['55', '81', '33', '656', '664', '998', '774', '229'],
1404
+ bkPosition: {
1405
+ x: '-48px',
1406
+ y: '-242px',
1407
+ },
1408
+ },
1409
+ {
1410
+ name: 'Micronesia',
1411
+ regions: ['oceania'],
1412
+ code: 'fm',
1413
+ iso2code: '+691',
1414
+ format: '0000 000 000 00 000',
1415
+ bkPosition: {
1416
+ x: '-144px',
1417
+ y: '-122px',
1418
+ },
1419
+ },
1420
+ {
1421
+ name: 'Moldova',
1422
+ regions: ['europe'],
1423
+ code: 'md',
1424
+ iso2code: '+373',
1425
+ format: '(00) 00-00-00',
1426
+ bkPosition: {
1427
+ x: '-24px',
1428
+ y: '-218px',
1429
+ },
1430
+ },
1431
+ {
1432
+ name: 'Monaco',
1433
+ regions: ['europe'],
1434
+ code: 'mc',
1435
+ iso2code: '+377',
1436
+ format: '0000 000 000 00 000',
1437
+ bkPosition: {
1438
+ x: '0',
1439
+ y: '-218px',
1440
+ },
1441
+ },
1442
+ {
1443
+ name: 'Mongolia',
1444
+ regions: ['asia'],
1445
+ code: 'mn',
1446
+ iso2code: '+976',
1447
+ format: '0000 000 000 00 000',
1448
+ bkPosition: {
1449
+ x: '-216px',
1450
+ y: '-218px',
1451
+ },
1452
+ },
1453
+ {
1454
+ name: 'Montenegro',
1455
+ regions: ['europe', 'ex-yugos'],
1456
+ code: 'me',
1457
+ iso2code: '+382',
1458
+ format: '0000 000 000 00 000',
1459
+ bkPosition: {
1460
+ x: '-48px',
1461
+ y: '-218px',
1462
+ },
1463
+ },
1464
+ {
1465
+ name: 'Morocco',
1466
+ regions: ['africa', 'north-africa'],
1467
+ code: 'ma',
1468
+ iso2code: '+212',
1469
+ format: '0000 000 000 00 000',
1470
+ bkPosition: {
1471
+ x: '-384px',
1472
+ y: '-194px',
1473
+ },
1474
+ },
1475
+ {
1476
+ name: 'Mozambique',
1477
+ regions: ['africa'],
1478
+ code: 'mz',
1479
+ iso2code: '+258',
1480
+ format: '0000 000 000 00 000',
1481
+ bkPosition: {
1482
+ x: '-96px',
1483
+ y: '-242px',
1484
+ },
1485
+ },
1486
+ {
1487
+ name: 'Myanmar',
1488
+ regions: ['asia'],
1489
+ code: 'mm',
1490
+ iso2code: '+95',
1491
+ format: '0000 000 000 00 000',
1492
+ bkPosition: {
1493
+ x: '-192px',
1494
+ y: '-218px',
1495
+ },
1496
+ },
1497
+ {
1498
+ name: 'Namibia',
1499
+ regions: ['africa'],
1500
+ code: 'na',
1501
+ iso2code: '+264',
1502
+ format: '0000 000 000 00 000',
1503
+ bkPosition: {
1504
+ x: '-120px',
1505
+ y: '-242px',
1506
+ },
1507
+ },
1508
+ {
1509
+ name: 'Nauru',
1510
+ regions: ['africa'],
1511
+ code: 'nr',
1512
+ iso2code: '+674',
1513
+ format: '0000 000 000 00 000',
1514
+ bkPosition: {
1515
+ x: '-336px',
1516
+ y: '-242px',
1517
+ },
1518
+ },
1519
+ {
1520
+ name: 'Nepal',
1521
+ regions: ['asia'],
1522
+ code: 'np',
1523
+ iso2code: '+977',
1524
+ format: '0000 000 000 00 000',
1525
+ bkPosition: {
1526
+ x: '-312px',
1527
+ y: '-242px',
1528
+ },
1529
+ },
1530
+ {
1531
+ name: 'Netherlands',
1532
+ regions: ['europe', 'eu-union'],
1533
+ code: 'nl',
1534
+ iso2code: '+31',
1535
+ format: '00 00000000',
1536
+ bkPosition: {
1537
+ x: '-264px',
1538
+ y: '-242px',
1539
+ },
1540
+ },
1541
+ {
1542
+ name: 'New Caledonia',
1543
+ regions: ['oceania'],
1544
+ code: 'nc',
1545
+ iso2code: '+687',
1546
+ format: '0000 000 000 00 000',
1547
+ bkPosition: {
1548
+ x: '-144px',
1549
+ y: '-242px',
1550
+ },
1551
+ },
1552
+ {
1553
+ name: 'New Zealand',
1554
+ regions: ['oceania'],
1555
+ code: 'nz',
1556
+ iso2code: '+64',
1557
+ format: '000-000-0000',
1558
+ bkPosition: {
1559
+ x: '-384px',
1560
+ y: '-242px',
1561
+ },
1562
+ },
1563
+ {
1564
+ name: 'Nicaragua',
1565
+ regions: ['america', 'central-america'],
1566
+ code: 'ni',
1567
+ iso2code: '+505',
1568
+ format: '0000 000 000 00 000',
1569
+ bkPosition: {
1570
+ x: '-240px',
1571
+ y: '-242px',
1572
+ },
1573
+ },
1574
+ {
1575
+ name: 'Niger',
1576
+ regions: ['africa'],
1577
+ code: 'ne',
1578
+ iso2code: '+227',
1579
+ format: '0000 000 000 00 000',
1580
+ bkPosition: {
1581
+ x: '-168px',
1582
+ y: '-242px',
1583
+ },
1584
+ },
1585
+ {
1586
+ name: 'Nigeria',
1587
+ regions: ['africa'],
1588
+ code: 'ng',
1589
+ iso2code: '+234',
1590
+ format: '0000 000 000 00 000',
1591
+ bkPosition: {
1592
+ x: '-216px',
1593
+ y: '-242px',
1594
+ },
1595
+ },
1596
+ {
1597
+ name: 'North Korea',
1598
+ regions: ['asia'],
1599
+ code: 'kp',
1600
+ iso2code: '+850',
1601
+ format: '0000 000 000 00 000',
1602
+ bkPosition: {
1603
+ x: '0',
1604
+ y: '-194px',
1605
+ },
1606
+ },
1607
+ {
1608
+ name: 'Norway',
1609
+ regions: ['europe', 'baltic'],
1610
+ code: 'no',
1611
+ iso2code: '+47',
1612
+ format: '000 00 000',
1613
+ bkPosition: {
1614
+ x: '-288px',
1615
+ y: '-242px',
1616
+ },
1617
+ },
1618
+ {
1619
+ name: 'Oman',
1620
+ regions: ['middle-east'],
1621
+ code: 'om',
1622
+ iso2code: '+968',
1623
+ format: '0000 000 000 00 000',
1624
+ bkPosition: {
1625
+ x: '0',
1626
+ y: '-266px',
1627
+ },
1628
+ },
1629
+ {
1630
+ name: 'Pakistan',
1631
+ regions: ['asia'],
1632
+ code: 'pk',
1633
+ iso2code: '+92',
1634
+ format: '000-0000000',
1635
+ bkPosition: {
1636
+ x: '-192px',
1637
+ y: '-266px',
1638
+ },
1639
+ },
1640
+ {
1641
+ name: 'Palau',
1642
+ regions: ['oceania'],
1643
+ code: 'pw',
1644
+ iso2code: '+680',
1645
+ format: '0000 000 000 00 000',
1646
+ bkPosition: {
1647
+ x: '-336px',
1648
+ y: '-266px',
1649
+ },
1650
+ },
1651
+ {
1652
+ name: 'Palestine',
1653
+ regions: ['middle-east'],
1654
+ code: 'ps',
1655
+ iso2code: '+970',
1656
+ format: '0000 000 000 00 000',
1657
+ bkPosition: {
1658
+ x: '-288px',
1659
+ y: '-266px',
1660
+ },
1661
+ },
1662
+ {
1663
+ name: 'Panama',
1664
+ regions: ['america', 'central-america'],
1665
+ code: 'pa',
1666
+ iso2code: '+507',
1667
+ format: '0000 000 000 00 000',
1668
+ bkPosition: {
1669
+ x: '-24px',
1670
+ y: '-266px',
1671
+ },
1672
+ },
1673
+ {
1674
+ name: 'Papua New Guinea',
1675
+ regions: ['oceania'],
1676
+ code: 'pg',
1677
+ iso2code: '+675',
1678
+ format: '0000 000 000 00 000',
1679
+ bkPosition: {
1680
+ x: '-96px',
1681
+ y: '-266px',
1682
+ },
1683
+ },
1684
+ {
1685
+ name: 'Paraguay',
1686
+ regions: ['america', 'south-america'],
1687
+ code: 'py',
1688
+ iso2code: '+595',
1689
+ format: '0000 000 000 00 000',
1690
+ bkPosition: {
1691
+ x: '-360px',
1692
+ y: '-266px',
1693
+ },
1694
+ },
1695
+ {
1696
+ name: 'Peru',
1697
+ regions: ['america', 'south-america'],
1698
+ code: 'pe',
1699
+ iso2code: '+51',
1700
+ format: '0000 000 000 00 000',
1701
+ bkPosition: {
1702
+ x: '-48px',
1703
+ y: '-266px',
1704
+ },
1705
+ },
1706
+ {
1707
+ name: 'Philippines',
1708
+ regions: ['asia'],
1709
+ code: 'ph',
1710
+ iso2code: '+63',
1711
+ format: '0000 0000000',
1712
+ bkPosition: {
1713
+ x: '-120px',
1714
+ y: '-266px',
1715
+ },
1716
+ },
1717
+ {
1718
+ name: 'Poland',
1719
+ regions: ['europe', 'eu-union', 'baltic'],
1720
+ code: 'pl',
1721
+ iso2code: '+48',
1722
+ format: '000-000-000',
1723
+ bkPosition: {
1724
+ x: '-216px',
1725
+ y: '-266px',
1726
+ },
1727
+ },
1728
+ {
1729
+ name: 'Portugal',
1730
+ regions: ['europe', 'eu-union'],
1731
+ code: 'pt',
1732
+ iso2code: '+351',
1733
+ format: '0000 000 000 00 000',
1734
+ bkPosition: {
1735
+ x: '-312px',
1736
+ y: '-266px',
1737
+ },
1738
+ },
1739
+ {
1740
+ name: 'Puerto Rico',
1741
+ regions: ['america', 'carribean'],
1742
+ code: 'pr',
1743
+ iso2code: '+1',
1744
+ format: '0000 000 000 00 000',
1745
+ orderPriority: 3,
1746
+ areaCodes: ['787', '939'],
1747
+ bkPosition: {
1748
+ x: '-264px',
1749
+ y: '-266px',
1750
+ },
1751
+ },
1752
+ {
1753
+ name: 'Qatar',
1754
+ regions: ['middle-east'],
1755
+ code: 'qa',
1756
+ iso2code: '+974',
1757
+ format: '0000 000 000 00 000',
1758
+ bkPosition: {
1759
+ x: '-384px',
1760
+ y: '-266px',
1761
+ },
1762
+ },
1763
+ {
1764
+ name: 'Réunion',
1765
+ regions: ['africa'],
1766
+ code: 're',
1767
+ iso2code: '+262',
1768
+ format: '0000 000 000 00 000',
1769
+ },
1770
+ {
1771
+ name: 'Romania',
1772
+ regions: ['europe', 'eu-union'],
1773
+ code: 'ro',
1774
+ iso2code: '+40',
1775
+ format: '0000 000 000 00 000',
1776
+ bkPosition: {
1777
+ x: '0',
1778
+ y: '-290px',
1779
+ },
1780
+ },
1781
+ {
1782
+ name: 'Russia',
1783
+ regions: ['europe', 'asia', 'ex-ussr', 'baltic'],
1784
+ code: 'ru',
1785
+ iso2code: '+7',
1786
+ format: '(000) 000-00-00',
1787
+ orderPriority: 0,
1788
+ bkPosition: {
1789
+ x: '-48px',
1790
+ y: '-290px',
1791
+ },
1792
+ },
1793
+ {
1794
+ name: 'Rwanda',
1795
+ regions: ['africa'],
1796
+ code: 'rw',
1797
+ iso2code: '+250',
1798
+ format: '0000 000 000 00 000',
1799
+ bkPosition: {
1800
+ x: '-72px',
1801
+ y: '-290px',
1802
+ },
1803
+ },
1804
+ {
1805
+ name: 'Saint Kitts and Nevis',
1806
+ regions: ['america', 'carribean'],
1807
+ code: 'kn',
1808
+ iso2code: '+1869',
1809
+ format: '0000 000 000 00 000',
1810
+ bkPosition: {
1811
+ x: '-384px',
1812
+ y: '-170px',
1813
+ },
1814
+ },
1815
+ {
1816
+ name: 'Saint Lucia',
1817
+ regions: ['america', 'carribean'],
1818
+ code: 'lc',
1819
+ iso2code: '+1758',
1820
+ format: '0000 000 000 00 000',
1821
+ bkPosition: {
1822
+ x: '-168px',
1823
+ y: '-194px',
1824
+ },
1825
+ },
1826
+ {
1827
+ name: 'Saint Vincent and the Grenadines',
1828
+ regions: ['america', 'carribean'],
1829
+ code: 'vc',
1830
+ iso2code: '+1784',
1831
+ format: '0000 000 000 00 000',
1832
+ bkPosition: {
1833
+ x: '-264px',
1834
+ y: '-338px',
1835
+ },
1836
+ },
1837
+ {
1838
+ name: 'Samoa',
1839
+ regions: ['oceania'],
1840
+ code: 'ws',
1841
+ iso2code: '+685',
1842
+ format: '0000 000 000 00 000',
1843
+ },
1844
+ {
1845
+ name: 'San Marino',
1846
+ regions: ['europe'],
1847
+ code: 'sm',
1848
+ iso2code: '+378',
1849
+ format: '0000 000 000 00 000',
1850
+ bkPosition: {
1851
+ x: '-336px',
1852
+ y: '-290px',
1853
+ },
1854
+ },
1855
+ {
1856
+ name: 'São Tomé and Príncipe',
1857
+ regions: ['africa'],
1858
+ code: 'st',
1859
+ iso2code: '+239',
1860
+ format: '0000 000 000 00 000',
1861
+ bkPosition: {
1862
+ x: '-48px',
1863
+ y: '-314px',
1864
+ },
1865
+ },
1866
+ {
1867
+ name: 'Saudi Arabia',
1868
+ regions: ['middle-east'],
1869
+ code: 'sa',
1870
+ iso2code: '+966',
1871
+ format: '0000 000 000 00 000',
1872
+ bkPosition: {
1873
+ x: '-96px',
1874
+ y: '-290px',
1875
+ },
1876
+ },
1877
+ {
1878
+ name: 'Senegal',
1879
+ regions: ['africa'],
1880
+ code: 'sn',
1881
+ iso2code: '+221',
1882
+ format: '0000 000 000 00 000',
1883
+ bkPosition: {
1884
+ x: '-360px',
1885
+ y: '-290px',
1886
+ },
1887
+ },
1888
+ {
1889
+ name: 'Serbia',
1890
+ regions: ['europe', 'ex-yugos'],
1891
+ code: 'rs',
1892
+ iso2code: '+381',
1893
+ format: '0000 000 000 00 000',
1894
+ bkPosition: {
1895
+ x: '-24px',
1896
+ y: '-290px',
1897
+ },
1898
+ },
1899
+ {
1900
+ name: 'Seychelles',
1901
+ regions: ['africa'],
1902
+ code: 'sc',
1903
+ iso2code: '+248',
1904
+ format: '0000 000 000 00 000',
1905
+ bkPosition: {
1906
+ x: '-144px',
1907
+ y: '-290px',
1908
+ },
1909
+ },
1910
+ {
1911
+ name: 'Sierra Leone',
1912
+ regions: ['africa'],
1913
+ code: 'sl',
1914
+ iso2code: '+232',
1915
+ format: '0000 000 000 00 000',
1916
+ bkPosition: {
1917
+ x: '-312px',
1918
+ y: '-290px',
1919
+ },
1920
+ },
1921
+ {
1922
+ name: 'Singapore',
1923
+ regions: ['asia'],
1924
+ code: 'sg',
1925
+ iso2code: '+65',
1926
+ format: '0000-0000',
1927
+ bkPosition: {
1928
+ x: '-216px',
1929
+ y: '-290px',
1930
+ },
1931
+ },
1932
+ {
1933
+ name: 'Slovakia',
1934
+ regions: ['europe', 'eu-union'],
1935
+ code: 'sk',
1936
+ iso2code: '+421',
1937
+ format: '0000 000 000 00 000',
1938
+ bkPosition: {
1939
+ x: '-288px',
1940
+ y: '-290px',
1941
+ },
1942
+ },
1943
+ {
1944
+ name: 'Slovenia',
1945
+ regions: ['europe', 'eu-union', 'ex-yugos'],
1946
+ code: 'si',
1947
+ iso2code: '+386',
1948
+ format: '0000 000 000 00 000',
1949
+ bkPosition: {
1950
+ x: '-264px',
1951
+ y: '-290px',
1952
+ },
1953
+ },
1954
+ {
1955
+ name: 'Solomon Islands',
1956
+ regions: ['oceania'],
1957
+ code: 'sb',
1958
+ iso2code: '+677',
1959
+ format: '0000 000 000 00 000',
1960
+ bkPosition: {
1961
+ x: '-120px',
1962
+ y: '-290px',
1963
+ },
1964
+ },
1965
+ {
1966
+ name: 'Somalia',
1967
+ regions: ['africa'],
1968
+ code: 'so',
1969
+ iso2code: '+252',
1970
+ format: '0000 000 000 00 000',
1971
+ bkPosition: {
1972
+ x: '-384px',
1973
+ y: '-290px',
1974
+ },
1975
+ },
1976
+ {
1977
+ name: 'South Africa',
1978
+ regions: ['africa'],
1979
+ code: 'za',
1980
+ iso2code: '+27',
1981
+ format: '0000 000 000 00 000',
1982
+ },
1983
+ {
1984
+ name: 'South Korea',
1985
+ regions: ['asia'],
1986
+ code: 'kr',
1987
+ iso2code: '+82',
1988
+ format: '000 0000 0000',
1989
+ bkPosition: {
1990
+ x: '-24px',
1991
+ y: '-194px',
1992
+ },
1993
+ },
1994
+ {
1995
+ name: 'South Sudan',
1996
+ regions: ['africa', 'north-africa'],
1997
+ code: 'ss',
1998
+ iso2code: '+211',
1999
+ format: '0000 000 000 00 000',
2000
+ bkPosition: {
2001
+ x: '-24px',
2002
+ y: '-314px',
2003
+ },
2004
+ },
2005
+ {
2006
+ name: 'Spain',
2007
+ regions: ['europe', 'eu-union'],
2008
+ code: 'es',
2009
+ iso2code: '+34',
2010
+ format: '000 000 000',
2011
+ bkPosition: {
2012
+ x: '0',
2013
+ y: '-122px',
2014
+ },
2015
+ },
2016
+ {
2017
+ name: 'Sri Lanka',
2018
+ regions: ['asia'],
2019
+ code: 'lk',
2020
+ iso2code: '+94',
2021
+ format: '0000 000 000 00 000',
2022
+ bkPosition: {
2023
+ x: '-216px',
2024
+ y: '-194px',
2025
+ },
2026
+ },
2027
+ {
2028
+ name: 'Sudan',
2029
+ regions: ['africa'],
2030
+ code: 'sd',
2031
+ iso2code: '+249',
2032
+ format: '0000 000 000 00 000',
2033
+ bkPosition: {
2034
+ x: '-168px',
2035
+ y: '-290px',
2036
+ },
2037
+ },
2038
+ {
2039
+ name: 'Suriname',
2040
+ regions: ['america', 'south-america'],
2041
+ code: 'sr',
2042
+ iso2code: '+597',
2043
+ format: '0000 000 000 00 000',
2044
+ bkPosition: {
2045
+ x: '0',
2046
+ y: '-314px',
2047
+ },
2048
+ },
2049
+ {
2050
+ name: 'Swaziland',
2051
+ regions: ['africa'],
2052
+ code: 'sz',
2053
+ iso2code: '+268',
2054
+ format: '0000 000 000 00 000',
2055
+ bkPosition: {
2056
+ x: '-120px',
2057
+ y: '-314px',
2058
+ },
2059
+ },
2060
+ {
2061
+ name: 'Sweden',
2062
+ regions: ['europe', 'eu-union', 'baltic'],
2063
+ code: 'se',
2064
+ iso2code: '+46',
2065
+ format: '(000) 000-000',
2066
+ bkPosition: {
2067
+ x: '-192px',
2068
+ y: '-290px',
2069
+ },
2070
+ },
2071
+ {
2072
+ name: 'Switzerland',
2073
+ regions: ['europe'],
2074
+ code: 'ch',
2075
+ iso2code: '+41',
2076
+ format: '00 000 00 00',
2077
+ bkPosition: {
2078
+ x: '-216px',
2079
+ y: '-74px',
2080
+ },
2081
+ },
2082
+ {
2083
+ name: 'Syria',
2084
+ regions: ['middle-east'],
2085
+ code: 'sy',
2086
+ iso2code: '+963',
2087
+ format: '0000 000 000 00 000',
2088
+ bkPosition: {
2089
+ x: '-96px',
2090
+ y: '-314px',
2091
+ },
2092
+ },
2093
+ {
2094
+ name: 'Taiwan',
2095
+ regions: ['asia'],
2096
+ code: 'tw',
2097
+ iso2code: '+886',
2098
+ format: '0000 000 000 00 000',
2099
+ bkPosition: {
2100
+ x: '-72px',
2101
+ y: '-338px',
2102
+ },
2103
+ },
2104
+ {
2105
+ name: 'Tajikistan',
2106
+ regions: ['asia', 'ex-ussr'],
2107
+ code: 'tj',
2108
+ iso2code: '+992',
2109
+ format: '0000 000 000 00 000',
2110
+ bkPosition: {
2111
+ x: '-264px',
2112
+ y: '-314px',
2113
+ },
2114
+ },
2115
+ {
2116
+ name: 'Tanzania',
2117
+ regions: ['africa'],
2118
+ code: 'tz',
2119
+ iso2code: '+255',
2120
+ format: '0000 000 000 00 000',
2121
+ bkPosition: {
2122
+ x: '-96px',
2123
+ y: '-338px',
2124
+ },
2125
+ },
2126
+ {
2127
+ name: 'Thailand',
2128
+ regions: ['asia'],
2129
+ code: 'th',
2130
+ iso2code: '+66',
2131
+ format: '0000 000 000 00 000',
2132
+ bkPosition: {
2133
+ x: '-240px',
2134
+ y: '-314px',
2135
+ },
2136
+ },
2137
+ {
2138
+ name: 'Timor-Leste',
2139
+ regions: ['asia'],
2140
+ code: 'tl',
2141
+ iso2code: '+670',
2142
+ format: '0000 000 000 00 000',
2143
+ bkPosition: {
2144
+ x: '-312px',
2145
+ y: '-314px',
2146
+ },
2147
+ },
2148
+ {
2149
+ name: 'Togo',
2150
+ regions: ['africa'],
2151
+ code: 'tg',
2152
+ iso2code: '+228',
2153
+ format: '0000 000 000 00 000',
2154
+ bkPosition: {
2155
+ x: '-216px',
2156
+ y: '-314px',
2157
+ },
2158
+ },
2159
+ {
2160
+ name: 'Tonga',
2161
+ regions: ['oceania'],
2162
+ code: 'to',
2163
+ iso2code: '+676',
2164
+ format: '0000 000 000 00 000',
2165
+ bkPosition: {
2166
+ x: '-384px',
2167
+ y: '-314px',
2168
+ },
2169
+ },
2170
+ {
2171
+ name: 'Trinidad and Tobago',
2172
+ regions: ['america', 'carribean'],
2173
+ code: 'tt',
2174
+ iso2code: '+1868',
2175
+ format: '0000 000 000 00 000',
2176
+ bkPosition: {
2177
+ x: '-24px',
2178
+ y: '-338px',
2179
+ },
2180
+ },
2181
+ {
2182
+ name: 'Tunisia',
2183
+ regions: ['africa', 'north-africa'],
2184
+ code: 'tn',
2185
+ iso2code: '+216',
2186
+ format: '0000 000 000 00 000',
2187
+ bkPosition: {
2188
+ x: '-360px',
2189
+ y: '-314px',
2190
+ },
2191
+ },
2192
+ {
2193
+ name: 'Turkey',
2194
+ regions: ['europe'],
2195
+ code: 'tr',
2196
+ iso2code: '+90',
2197
+ format: '000 000 00 00',
2198
+ bkPosition: {
2199
+ x: '0:',
2200
+ y: '-338px',
2201
+ },
2202
+ },
2203
+ {
2204
+ name: 'Turkmenistan',
2205
+ regions: ['asia', 'ex-ussr'],
2206
+ code: 'tm',
2207
+ iso2code: '+993',
2208
+ format: '0000 000 000 00 000',
2209
+ bkPosition: {
2210
+ x: '-336px',
2211
+ y: '-314px',
2212
+ },
2213
+ },
2214
+ {
2215
+ name: 'Tuvalu',
2216
+ regions: ['asia'],
2217
+ code: 'tv',
2218
+ iso2code: '+688',
2219
+ format: '0000 000 000 00 000',
2220
+ bkPosition: {
2221
+ x: '-48px',
2222
+ y: '-338px',
2223
+ },
2224
+ },
2225
+ {
2226
+ name: 'Uganda',
2227
+ regions: ['africa'],
2228
+ code: 'ug',
2229
+ iso2code: '+256',
2230
+ format: '0000 000 000 00 000',
2231
+ bkPosition: {
2232
+ x: '-144px',
2233
+ y: '-338px',
2234
+ },
2235
+ },
2236
+ {
2237
+ name: 'Ukraine',
2238
+ regions: ['europe', 'ex-ussr'],
2239
+ code: 'ua',
2240
+ iso2code: '+380',
2241
+ format: '(00) 000 00 00',
2242
+ bkPosition: {
2243
+ x: '-120px',
2244
+ y: '-338px',
2245
+ },
2246
+ },
2247
+ {
2248
+ name: 'United Arab Emirates',
2249
+ regions: ['middle-east'],
2250
+ code: 'ae',
2251
+ iso2code: '+971',
2252
+ format: '0000 000 000 00 000',
2253
+ bkPosition: {
2254
+ x: '-72px',
2255
+ y: '-26px',
2256
+ },
2257
+ },
2258
+ {
2259
+ name: 'United Kingdom',
2260
+ regions: ['europe', 'eu-union'],
2261
+ code: 'gb',
2262
+ iso2code: '+44',
2263
+ format: '0000 000000',
2264
+ bkPosition: {
2265
+ x: '-240px',
2266
+ y: '-122px',
2267
+ },
2268
+ },
2269
+ {
2270
+ name: 'United States',
2271
+ regions: ['america', 'north-america'],
2272
+ code: 'us',
2273
+ iso2code: '+1',
2274
+ format: '(000) 000-0000',
2275
+ orderPriority: 0,
2276
+ areaCodes: [
2277
+ '907',
2278
+ '205',
2279
+ '251',
2280
+ '256',
2281
+ '334',
2282
+ '479',
2283
+ '501',
2284
+ '870',
2285
+ '480',
2286
+ '520',
2287
+ '602',
2288
+ '623',
2289
+ '928',
2290
+ '209',
2291
+ '213',
2292
+ '310',
2293
+ '323',
2294
+ '408',
2295
+ '415',
2296
+ '510',
2297
+ '530',
2298
+ '559',
2299
+ '562',
2300
+ '619',
2301
+ '626',
2302
+ '650',
2303
+ '661',
2304
+ '707',
2305
+ '714',
2306
+ '760',
2307
+ '805',
2308
+ '818',
2309
+ '831',
2310
+ '858',
2311
+ '909',
2312
+ '916',
2313
+ '925',
2314
+ '949',
2315
+ '951',
2316
+ '303',
2317
+ '719',
2318
+ '970',
2319
+ '203',
2320
+ '860',
2321
+ '202',
2322
+ '302',
2323
+ '239',
2324
+ '305',
2325
+ '321',
2326
+ '352',
2327
+ '386',
2328
+ '407',
2329
+ '561',
2330
+ '727',
2331
+ '772',
2332
+ '813',
2333
+ '850',
2334
+ '863',
2335
+ '904',
2336
+ '941',
2337
+ '954',
2338
+ '229',
2339
+ '404',
2340
+ '478',
2341
+ '706',
2342
+ '770',
2343
+ '912',
2344
+ '808',
2345
+ '319',
2346
+ '515',
2347
+ '563',
2348
+ '641',
2349
+ '712',
2350
+ '208',
2351
+ '217',
2352
+ '309',
2353
+ '312',
2354
+ '618',
2355
+ '630',
2356
+ '708',
2357
+ '773',
2358
+ '815',
2359
+ '847',
2360
+ '219',
2361
+ '260',
2362
+ '317',
2363
+ '574',
2364
+ '765',
2365
+ '812',
2366
+ '316',
2367
+ '620',
2368
+ '785',
2369
+ '913',
2370
+ '270',
2371
+ '502',
2372
+ '606',
2373
+ '859',
2374
+ '225',
2375
+ '318',
2376
+ '337',
2377
+ '504',
2378
+ '985',
2379
+ '413',
2380
+ '508',
2381
+ '617',
2382
+ '781',
2383
+ '978',
2384
+ '301',
2385
+ '410',
2386
+ '207',
2387
+ '231',
2388
+ '248',
2389
+ '269',
2390
+ '313',
2391
+ '517',
2392
+ '586',
2393
+ '616',
2394
+ '734',
2395
+ '810',
2396
+ '906',
2397
+ '989',
2398
+ '218',
2399
+ '320',
2400
+ '507',
2401
+ '612',
2402
+ '651',
2403
+ '763',
2404
+ '952',
2405
+ '314',
2406
+ '417',
2407
+ '573',
2408
+ '636',
2409
+ '660',
2410
+ '816',
2411
+ '228',
2412
+ '601',
2413
+ '662',
2414
+ '406',
2415
+ '252',
2416
+ '336',
2417
+ '704',
2418
+ '828',
2419
+ '910',
2420
+ '919',
2421
+ '701',
2422
+ '308',
2423
+ '402',
2424
+ '603',
2425
+ '201',
2426
+ '609',
2427
+ '732',
2428
+ '856',
2429
+ '908',
2430
+ '973',
2431
+ '505',
2432
+ '575',
2433
+ '702',
2434
+ '775',
2435
+ '212',
2436
+ '315',
2437
+ '516',
2438
+ '518',
2439
+ '585',
2440
+ '607',
2441
+ '631',
2442
+ '716',
2443
+ '718',
2444
+ '845',
2445
+ '914',
2446
+ '216',
2447
+ '330',
2448
+ '419',
2449
+ '440',
2450
+ '513',
2451
+ '614',
2452
+ '740',
2453
+ '937',
2454
+ '405',
2455
+ '580',
2456
+ '918',
2457
+ '503',
2458
+ '541',
2459
+ '215',
2460
+ '412',
2461
+ '570',
2462
+ '610',
2463
+ '717',
2464
+ '724',
2465
+ '814',
2466
+ '401',
2467
+ '803',
2468
+ '843',
2469
+ '864',
2470
+ '605',
2471
+ '423',
2472
+ '615',
2473
+ '731',
2474
+ '865',
2475
+ '901',
2476
+ '931',
2477
+ '210',
2478
+ '214',
2479
+ '254',
2480
+ '281',
2481
+ '325',
2482
+ '361',
2483
+ '409',
2484
+ '432',
2485
+ '512',
2486
+ '713',
2487
+ '806',
2488
+ '817',
2489
+ '830',
2490
+ '903',
2491
+ '915',
2492
+ '936',
2493
+ '940',
2494
+ '956',
2495
+ '972',
2496
+ '979',
2497
+ '435',
2498
+ '801',
2499
+ '276',
2500
+ '434',
2501
+ '540',
2502
+ '703',
2503
+ '757',
2504
+ '804',
2505
+ '802',
2506
+ '206',
2507
+ '253',
2508
+ '360',
2509
+ '425',
2510
+ '509',
2511
+ '262',
2512
+ '414',
2513
+ '608',
2514
+ '715',
2515
+ '920',
2516
+ '304',
2517
+ '307',
2518
+ ],
2519
+ bkPosition: {
2520
+ x: '-168px',
2521
+ y: '-338px',
2522
+ },
2523
+ },
2524
+ {
2525
+ name: 'Uruguay',
2526
+ regions: ['america', 'south-america'],
2527
+ code: 'uy',
2528
+ iso2code: '+598',
2529
+ format: '0000 000 000 00 000',
2530
+ bkPosition: {
2531
+ x: '-192px',
2532
+ y: '-338px',
2533
+ },
2534
+ },
2535
+ {
2536
+ name: 'Uzbekistan',
2537
+ regions: ['asia', 'ex-ussr'],
2538
+ code: 'uz',
2539
+ iso2code: '+998',
2540
+ format: '00 000 00 00',
2541
+ bkPosition: {
2542
+ x: '-216px',
2543
+ y: '-338px',
2544
+ },
2545
+ },
2546
+ {
2547
+ name: 'Vanuatu',
2548
+ regions: ['oceania'],
2549
+ code: 'vu',
2550
+ iso2code: '+678',
2551
+ format: '0000 000 000 00 000',
2552
+ bkPosition: {
2553
+ x: '-384px',
2554
+ y: '-338px',
2555
+ },
2556
+ },
2557
+ {
2558
+ name: 'Vatican City',
2559
+ regions: ['europe'],
2560
+ code: 'va',
2561
+ iso2code: '+39',
2562
+ format: '00 0000 0000',
2563
+ orderPriority: 1,
2564
+ bkPosition: {
2565
+ x: '-240px',
2566
+ y: '-338px',
2567
+ },
2568
+ },
2569
+ {
2570
+ name: 'Venezuela',
2571
+ regions: ['america', 'south-america'],
2572
+ code: 've',
2573
+ iso2code: '+58',
2574
+ format: '0000 000 000 00 000',
2575
+ bkPosition: {
2576
+ x: '-288px',
2577
+ y: '-338px',
2578
+ },
2579
+ },
2580
+ {
2581
+ name: 'Vietnam',
2582
+ regions: ['asia'],
2583
+ code: 'vn',
2584
+ iso2code: '+84',
2585
+ format: '0000 000 000 00 000',
2586
+ bkPosition: {
2587
+ x: '-360px',
2588
+ y: '-338px',
2589
+ },
2590
+ },
2591
+ {
2592
+ name: 'Yemen',
2593
+ regions: ['middle-east'],
2594
+ code: 'ye',
2595
+ iso2code: '+967',
2596
+ format: '0000 000 000 00 000',
2597
+ bkPosition: {
2598
+ x: '-48px',
2599
+ y: '-362px',
2600
+ },
2601
+ },
2602
+ {
2603
+ name: 'Zambia',
2604
+ regions: ['africa'],
2605
+ code: 'zm',
2606
+ iso2code: '+260',
2607
+ format: '0000 000 000 00 000',
2608
+ bkPosition: {
2609
+ x: '-120px',
2610
+ y: '-362px',
2611
+ },
2612
+ },
2613
+ {
2614
+ name: 'Zimbabwe',
2615
+ regions: ['africa'],
2616
+ code: 'zw',
2617
+ iso2code: '+263',
2618
+ format: '0000 000 000 00 000',
2619
+ bkPosition: {
2620
+ x: '-143px',
2621
+ y: '-362px',
2622
+ },
2623
+ },
2624
+ ];
2625
+
2626
+ /**
2627
+ * Generated bundle index. Do not edit.
2628
+ */
2629
+
2630
+ export { COUNTRIES };
2631
+ //# sourceMappingURL=acorex-core-common.mjs.map