@usssa/component-library 1.0.0-alpha.7 → 1.0.0-alpha.71

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.
Files changed (734) hide show
  1. package/README.md +5 -2
  2. package/dist/component-library/App.vue +9 -0
  3. package/dist/component-library/assets/files.png +0 -0
  4. package/dist/component-library/assets/logo.svg +19 -0
  5. package/dist/component-library/assets/no-result.png +0 -0
  6. package/dist/component-library/assets/quasar-logo-vertical.svg +15 -0
  7. package/dist/component-library/boot/.gitkeep +0 -0
  8. package/dist/component-library/boot/google-maps.js +11 -0
  9. package/{src → dist/component-library}/components/core/UAvatar.vue +21 -2
  10. package/{src → dist/component-library}/components/core/UBannerStd.vue +8 -6
  11. package/dist/component-library/components/core/UBreadCrumbs.vue +67 -0
  12. package/{src → dist/component-library}/components/core/UBtnIcon.vue +24 -14
  13. package/{src → dist/component-library}/components/core/UBtnStd.vue +35 -31
  14. package/dist/component-library/components/core/UBtnToggle.vue +68 -0
  15. package/{src → dist/component-library}/components/core/UCheckboxStd.vue +25 -8
  16. package/{src → dist/component-library}/components/core/UChip.vue +30 -4
  17. package/dist/component-library/components/core/UDialogStd.vue +242 -0
  18. package/dist/component-library/components/core/UDrawer.vue +215 -0
  19. package/dist/component-library/components/core/UInnerLoader.vue +58 -0
  20. package/dist/component-library/components/core/UInputAddressLookup.vue +466 -0
  21. package/dist/component-library/components/core/UInputPhoneStd.vue +295 -0
  22. package/{src → dist/component-library}/components/core/UInputTextStd.vue +111 -84
  23. package/dist/component-library/components/core/UInputTypeaheadAdvanceSearch.vue +59 -0
  24. package/dist/component-library/components/core/UMenuButtonStd.vue +274 -0
  25. package/dist/component-library/components/core/UMenuDropdown.vue +75 -0
  26. package/dist/component-library/components/core/UMenuDropdownAdvancedSearch.vue +299 -0
  27. package/dist/component-library/components/core/UMenuItem.vue +133 -0
  28. package/dist/component-library/components/core/UMenuSearch.vue +682 -0
  29. package/{src → dist/component-library}/components/core/UMultiSelectStd.vue +29 -38
  30. package/dist/component-library/components/core/UPagination.vue +104 -0
  31. package/dist/component-library/components/core/URadioBtn.vue +116 -0
  32. package/{src → dist/component-library}/components/core/URadioStd.vue +7 -3
  33. package/{src → dist/component-library}/components/core/USelectStd.vue +66 -51
  34. package/dist/component-library/components/core/UTabBtnStd.vue +176 -0
  35. package/dist/component-library/components/core/UTable/UTable.vue +93 -0
  36. package/dist/component-library/components/core/UTable/UTd.vue +63 -0
  37. package/dist/component-library/components/core/UTable/UTh.vue +48 -0
  38. package/dist/component-library/components/core/UTable/UTr.vue +20 -0
  39. package/dist/component-library/components/core/UTableStd.vue +797 -0
  40. package/{src → dist/component-library}/components/core/UTabsStd.vue +17 -5
  41. package/{src → dist/component-library}/components/core/UToggleStd.vue +30 -20
  42. package/dist/component-library/components/core/UToolbar.vue +94 -0
  43. package/{src → dist/component-library}/components/core/UTooltip.vue +20 -1
  44. package/dist/component-library/components/core/UUploader.vue +494 -0
  45. package/dist/component-library/components/index.js +75 -0
  46. package/dist/component-library/composables/useNotify.js +79 -0
  47. package/dist/component-library/composables/useOverlayLoader.js +23 -0
  48. package/dist/component-library/css/app.sass +159 -0
  49. package/dist/component-library/css/colors.sass +101 -0
  50. package/dist/component-library/css/media.sass +1 -0
  51. package/dist/component-library/css/quasar.variables.sass +119 -0
  52. package/dist/component-library/css/typography.sass +0 -0
  53. package/dist/component-library/css/vars/colors.variables.sass +126 -0
  54. package/dist/component-library/utils/data.ts +146 -0
  55. package/dist/spa/assets/AdvancedSearch.de59bb9d.js +29 -0
  56. package/dist/spa/assets/Avatar.7cf79270.js +9 -0
  57. package/dist/spa/assets/AvatarGroup.eb5af39d.js +9 -0
  58. package/dist/spa/assets/BadgeStd.184a1b2a.js +6 -0
  59. package/dist/spa/assets/BannerPage.c968ad8a.js +10 -0
  60. package/dist/spa/assets/BreadCrumbs.55acbd3f.js +12 -0
  61. package/dist/spa/assets/BtnIcon.dba0a485.js +10 -0
  62. package/dist/spa/assets/BtnStd.f05051b4.js +11 -0
  63. package/dist/spa/assets/BtnToggle.6c9c8151.js +15 -0
  64. package/dist/spa/assets/CheckBox.cdc44310.js +7 -0
  65. package/dist/spa/assets/Chip.4600dd74.js +15 -0
  66. package/dist/spa/assets/ComponentBase.12832350.js +1 -0
  67. package/dist/spa/assets/Dialog.9166896f.js +34 -0
  68. package/dist/spa/assets/Drawer.97a89461.js +9 -0
  69. package/dist/spa/assets/ErrorNotFound.2590a73e.js +1 -0
  70. package/dist/spa/assets/IndexPage.b88ccb65.js +1 -0
  71. package/dist/spa/assets/InnerLoader.f7ebfa9a.js +9 -0
  72. package/dist/spa/assets/InputAddressLookup.0436a51c.js +8 -0
  73. package/dist/spa/assets/InputPhone.e5884440.js +23 -0
  74. package/dist/spa/assets/InputText.edb91c55.js +20 -0
  75. package/dist/spa/assets/InputTypeaheadAdvanceSearch-fcfeae79.css +1 -0
  76. package/dist/spa/assets/InputTypeaheadAdvanceSearch.4717bbba.js +28 -0
  77. package/dist/spa/assets/KFOkCnqEu92Fr1MmgVxIIzQ-34e9582c.woff +0 -0
  78. package/dist/spa/assets/KFOlCnqEu92Fr1MmEU9fBBc--9ce7f3ac.woff +0 -0
  79. package/dist/spa/assets/KFOlCnqEu92Fr1MmSU5fBBc--bf14c7d7.woff +0 -0
  80. package/dist/spa/assets/KFOlCnqEu92Fr1MmWUlfBBc--e0fd57c0.woff +0 -0
  81. package/dist/spa/assets/KFOlCnqEu92Fr1MmYUtfBBc--f6537e32.woff +0 -0
  82. package/dist/spa/assets/KFOmCnqEu92Fr1Mu4mxM-f2abf7fb.woff +0 -0
  83. package/dist/spa/assets/MainLayout.357afcde.js +1 -0
  84. package/dist/spa/assets/MenuButton.87cc297d.js +30 -0
  85. package/dist/spa/assets/MenuDropdown-8577dac0.css +1 -0
  86. package/dist/spa/assets/MenuDropdown.95e39a63.js +6 -0
  87. package/dist/spa/assets/MenuItem.cd415f5e.js +7 -0
  88. package/dist/spa/assets/MultiSelectStd.ab5f68f2.js +17 -0
  89. package/dist/spa/assets/NotifyPage.a8a23aa7.js +17 -0
  90. package/dist/spa/assets/OverlayLoader.6ca7eedc.js +17 -0
  91. package/dist/spa/assets/Pagination.8d22767d.js +8 -0
  92. package/dist/spa/assets/QBtnDropdown.16a8ed64.js +1 -0
  93. package/dist/spa/assets/QBtnGroup.fe8403c7.js +1 -0
  94. package/dist/spa/assets/QCheckbox.9b7a1560.js +1 -0
  95. package/dist/spa/assets/QInnerLoading.0dd667f1.js +1 -0
  96. package/dist/spa/assets/QInput.50fc7274.js +1 -0
  97. package/dist/spa/assets/QItemLabel.76302e79.js +1 -0
  98. package/dist/spa/assets/QLayout.e447a044.js +1 -0
  99. package/dist/spa/assets/QList.05f5e5f4.js +1 -0
  100. package/dist/spa/assets/QPage.48d09174.js +1 -0
  101. package/dist/spa/assets/QRadio.e8cb7e78.js +1 -0
  102. package/dist/spa/assets/QResizeObserver.b1614200.js +1 -0
  103. package/dist/spa/assets/QScrollObserver.d587f1b8.js +1 -0
  104. package/dist/spa/assets/QSelect.fe2d93ab.js +1 -0
  105. package/dist/spa/assets/QSpinnerFacebook.58c9b43e.js +1 -0
  106. package/dist/spa/assets/QSpinnerGears.52cf4e8a.js +1 -0
  107. package/dist/spa/assets/QTabPanels.f5f8c6c0.js +1 -0
  108. package/dist/spa/assets/Radio.78b405a0.js +7 -0
  109. package/dist/spa/assets/RadioBtn.6b75781c.js +10 -0
  110. package/dist/spa/assets/SelectStd.31c84d23.js +25 -0
  111. package/dist/spa/assets/TabButtonPage-baa27375.css +1 -0
  112. package/dist/spa/assets/TabButtonPage.272c1d85.js +7 -0
  113. package/dist/spa/assets/TablePage.8f8d75c7.js +43 -0
  114. package/dist/spa/assets/TabsPage.f93ec4e1.js +9 -0
  115. package/dist/spa/assets/TogglePage.ad3af356.js +9 -0
  116. package/dist/spa/assets/Toolbar.efb14aff.js +6 -0
  117. package/dist/spa/assets/TooltipPage.5016a519.js +8 -0
  118. package/dist/spa/assets/UAvatar.ebe4476e.js +1 -0
  119. package/dist/spa/assets/UAvatar.vue_vue_type_style_index_0_lang-32508bf5.css +1 -0
  120. package/dist/spa/assets/UBadgeStd.ff9500bf.js +1 -0
  121. package/dist/spa/assets/UBtnIcon.fed8e2d3.js +1 -0
  122. package/dist/spa/assets/UBtnIcon.vue_vue_type_style_index_0_lang-56a6b988.css +1 -0
  123. package/dist/spa/assets/UBtnStd.baa23914.js +1 -0
  124. package/dist/spa/assets/UBtnStd.vue_vue_type_style_index_0_lang-c784b5c5.css +1 -0
  125. package/dist/spa/assets/UBtnToggle.vue_vue_type_style_index_0_lang-95ab84d9.css +1 -0
  126. package/dist/spa/assets/UBtnToggle.vue_vue_type_style_index_0_lang.b6e311b1.js +1 -0
  127. package/dist/spa/assets/UCheckboxStd.981cde7b.js +1 -0
  128. package/dist/spa/assets/UChip.3c562a29.js +1 -0
  129. package/dist/spa/assets/UDialogStd.vue_vue_type_style_index_0_lang-239a8687.css +1 -0
  130. package/dist/spa/assets/UDialogStd.vue_vue_type_style_index_0_lang.6781eb15.js +1 -0
  131. package/dist/spa/assets/UDrawer.vue_vue_type_style_index_0_lang-d4123556.css +1 -0
  132. package/dist/spa/assets/UDrawer.vue_vue_type_style_index_0_lang.3137cbdf.js +1 -0
  133. package/dist/spa/assets/UInnerLoader.vue_vue_type_style_index_0_scoped_true_lang-59151377.css +1 -0
  134. package/dist/spa/assets/UInputPhoneStd.e419407f.js +1 -0
  135. package/dist/spa/assets/UInputPhoneStd.vue_vue_type_style_index_0_lang-a3b35f3a.css +1 -0
  136. package/dist/spa/assets/UInputPhoneStd.vue_vue_type_style_index_0_lang.7744db79.js +1 -0
  137. package/dist/spa/assets/UMenuButtonStd.4850f84a.js +1 -0
  138. package/dist/spa/assets/UMenuButtonStd.vue_vue_type_style_index_0_lang-1b7d9814.css +1 -0
  139. package/dist/spa/assets/UMenuDropdown.a7476524.js +1 -0
  140. package/dist/spa/assets/UMenuDropdown.vue_vue_type_style_index_0_lang-46f87e45.css +1 -0
  141. package/dist/spa/assets/UMenuDropdownAdvancedSearch.7152fb37.js +1 -0
  142. package/dist/spa/assets/UMenuItem.02d90275.js +1 -0
  143. package/dist/spa/assets/UMenuItem.vue_vue_type_style_index_0_lang-60a38094.css +1 -0
  144. package/dist/spa/assets/UMenuItem.vue_vue_type_style_index_0_lang.c2f17c3c.js +1 -0
  145. package/dist/spa/assets/UMultiSelectStd.db798609.js +1 -0
  146. package/dist/spa/assets/UPagination.1f398543.js +1 -0
  147. package/dist/spa/assets/UPagination.vue_vue_type_style_index_0_lang-899d1a61.css +1 -0
  148. package/dist/spa/assets/UPagination.vue_vue_type_style_index_0_lang.3b1981d4.js +1 -0
  149. package/dist/spa/assets/URadioStd.d5242739.js +1 -0
  150. package/dist/spa/assets/USelectStd.37ad092f.js +1 -0
  151. package/dist/spa/assets/UTabBtnStd.c36b985f.js +1 -0
  152. package/dist/spa/assets/UTableStd.vue_vue_type_style_index_0_lang-8e0e60d8.css +1 -0
  153. package/dist/spa/assets/UTableStd.vue_vue_type_style_index_0_lang.1445b586.js +1 -0
  154. package/dist/spa/assets/UTooltip-efa029a7.css +1 -0
  155. package/dist/spa/assets/UTooltip.6c9e5509.js +1 -0
  156. package/dist/spa/assets/UUploader.vue_vue_type_style_index_0_lang-2ae7b445.css +1 -0
  157. package/dist/spa/assets/UUploader.vue_vue_type_style_index_0_lang.742209ec.js +1 -0
  158. package/dist/spa/assets/Uploader.f9bba02b.js +18 -0
  159. package/dist/spa/assets/ad-5d1a748c.svg +150 -0
  160. package/dist/spa/assets/ad-bf25de34.svg +148 -0
  161. package/dist/spa/assets/ae-3bc52a4a.svg +6 -0
  162. package/dist/spa/assets/ae-ad238db3.svg +6 -0
  163. package/dist/spa/assets/af-442967f4.svg +81 -0
  164. package/dist/spa/assets/af-efdbd7fb.svg +81 -0
  165. package/dist/spa/assets/ag-00232b7b.svg +14 -0
  166. package/dist/spa/assets/ag-13128213.svg +14 -0
  167. package/dist/spa/assets/ai-06aeb7cf.svg +29 -0
  168. package/dist/spa/assets/ai-859fb00e.svg +29 -0
  169. package/dist/spa/assets/al-55b3378b.svg +5 -0
  170. package/dist/spa/assets/al-57743b2d.svg +5 -0
  171. package/dist/spa/assets/am-57edcffa.svg +5 -0
  172. package/dist/spa/assets/am-efb6cdaa.svg +5 -0
  173. package/dist/spa/assets/ao-4321af76.svg +13 -0
  174. package/dist/spa/assets/ao-7d6acaf8.svg +13 -0
  175. package/dist/spa/assets/aq-454424bf.svg +5 -0
  176. package/dist/spa/assets/aq-733794b7.svg +5 -0
  177. package/dist/spa/assets/ar-77870402.svg +32 -0
  178. package/dist/spa/assets/ar-d6beeaa2.svg +32 -0
  179. package/dist/spa/assets/arab-cf7dc267.svg +109 -0
  180. package/dist/spa/assets/arab-e6c1aa2e.svg +109 -0
  181. package/dist/spa/assets/as-40fbde21.svg +73 -0
  182. package/dist/spa/assets/as-71f068fd.svg +72 -0
  183. package/dist/spa/assets/at-9ad44039.svg +4 -0
  184. package/dist/spa/assets/at-c0e5cb3c.svg +4 -0
  185. package/dist/spa/assets/au-1e6796ab.svg +8 -0
  186. package/dist/spa/assets/au-cbb2206c.svg +8 -0
  187. package/dist/spa/assets/aw-6cabd939.svg +186 -0
  188. package/dist/spa/assets/aw-e3a9f113.svg +186 -0
  189. package/dist/spa/assets/ax-1f2bddd3.svg +18 -0
  190. package/dist/spa/assets/ax-4702b3f0.svg +18 -0
  191. package/dist/spa/assets/az-270a8348.svg +8 -0
  192. package/dist/spa/assets/az-33ad245b.svg +8 -0
  193. package/dist/spa/assets/ba-07eced7b.svg +12 -0
  194. package/dist/spa/assets/ba-b321fe9b.svg +12 -0
  195. package/dist/spa/assets/bb-46cfd88a.svg +6 -0
  196. package/dist/spa/assets/bb-9db91e5b.svg +6 -0
  197. package/dist/spa/assets/bd-1aabb4a7.svg +4 -0
  198. package/dist/spa/assets/bd-90f8f20e.svg +4 -0
  199. package/dist/spa/assets/be-ba60828a.svg +7 -0
  200. package/dist/spa/assets/be-d6aff6fa.svg +7 -0
  201. package/dist/spa/assets/bf-606b17ad.svg +7 -0
  202. package/dist/spa/assets/bf-62cdc2bd.svg +7 -0
  203. package/dist/spa/assets/bg-4943a69e.svg +5 -0
  204. package/dist/spa/assets/bg-b6d979fc.svg +5 -0
  205. package/dist/spa/assets/bh-102fe27e.svg +4 -0
  206. package/dist/spa/assets/bh-7a519f58.svg +4 -0
  207. package/dist/spa/assets/bi-5ef1a56b.svg +15 -0
  208. package/dist/spa/assets/bi-9508881d.svg +15 -0
  209. package/dist/spa/assets/bj-0a46cbae.svg +14 -0
  210. package/dist/spa/assets/bj-2cbd6426.svg +14 -0
  211. package/dist/spa/assets/bl-025f596f.svg +7 -0
  212. package/dist/spa/assets/bl-d511eb84.svg +5 -0
  213. package/dist/spa/assets/bm-2cbe2ec8.svg +97 -0
  214. package/dist/spa/assets/bm-45607c46.svg +97 -0
  215. package/dist/spa/assets/bn-03fb1b01.svg +36 -0
  216. package/dist/spa/assets/bn-9b051c56.svg +36 -0
  217. package/dist/spa/assets/bo-9936b5b0.svg +674 -0
  218. package/dist/spa/assets/bo-e4882f15.svg +674 -0
  219. package/dist/spa/assets/bq-23881e6c.svg +5 -0
  220. package/dist/spa/assets/bq-83723941.svg +5 -0
  221. package/dist/spa/assets/br-45531de3.svg +45 -0
  222. package/dist/spa/assets/br-a2e451e4.svg +45 -0
  223. package/dist/spa/assets/bs-1f179c39.svg +13 -0
  224. package/dist/spa/assets/bs-58cdb6c9.svg +13 -0
  225. package/dist/spa/assets/bt-04653c4c.svg +89 -0
  226. package/dist/spa/assets/bt-95eb672d.svg +89 -0
  227. package/dist/spa/assets/bv-342b164c.svg +13 -0
  228. package/dist/spa/assets/bv-d972d58c.svg +13 -0
  229. package/dist/spa/assets/bw-180bfa4e.svg +7 -0
  230. package/dist/spa/assets/bw-6c89aad0.svg +7 -0
  231. package/dist/spa/assets/by-62959532.svg +18 -0
  232. package/dist/spa/assets/by-b5007565.svg +18 -0
  233. package/dist/spa/assets/bz-7d9d2ef3.svg +145 -0
  234. package/dist/spa/assets/bz-c5182369.svg +145 -0
  235. package/dist/spa/assets/ca-5e8736c4.svg +4 -0
  236. package/dist/spa/assets/ca-6f183784.svg +4 -0
  237. package/dist/spa/assets/cc-51906da2.svg +19 -0
  238. package/dist/spa/assets/cc-6ab691df.svg +19 -0
  239. package/dist/spa/assets/cd-64c360bd.svg +12 -0
  240. package/dist/spa/assets/cd-ad93c1af.svg +5 -0
  241. package/dist/spa/assets/cefta-0c277cae.svg +13 -0
  242. package/dist/spa/assets/cefta-bfefb0f6.svg +13 -0
  243. package/dist/spa/assets/cf-1b58dc20.svg +15 -0
  244. package/dist/spa/assets/cf-2e16b1cf.svg +15 -0
  245. package/dist/spa/assets/cg-628dcfc7.svg +12 -0
  246. package/dist/spa/assets/cg-9accb522.svg +12 -0
  247. package/dist/spa/assets/ch-ac676cd3.svg +9 -0
  248. package/dist/spa/assets/ch-be4b8257.svg +9 -0
  249. package/dist/spa/assets/ci-4ecfea70.svg +7 -0
  250. package/dist/spa/assets/ci-c3f20b8e.svg +7 -0
  251. package/dist/spa/assets/ck-b17c039f.svg +9 -0
  252. package/dist/spa/assets/ck-e5457495.svg +9 -0
  253. package/dist/spa/assets/cl-b1ef63f1.svg +13 -0
  254. package/dist/spa/assets/cl-bcf0ccdf.svg +13 -0
  255. package/dist/spa/assets/cm-0899a610.svg +15 -0
  256. package/dist/spa/assets/cm-c9a327dc.svg +15 -0
  257. package/dist/spa/assets/cn-981da9bd.svg +11 -0
  258. package/dist/spa/assets/cn-b63401f4.svg +11 -0
  259. package/dist/spa/assets/co-596558a2.svg +7 -0
  260. package/dist/spa/assets/co-6bab3c96.svg +7 -0
  261. package/dist/spa/assets/cp-7dfc8de4.svg +7 -0
  262. package/dist/spa/assets/cp-bd880fc5.svg +7 -0
  263. package/dist/spa/assets/cr-4775ef01.svg +7 -0
  264. package/dist/spa/assets/cr-b70b33c4.svg +7 -0
  265. package/dist/spa/assets/cu-0234085b.svg +13 -0
  266. package/dist/spa/assets/cu-15013e0b.svg +13 -0
  267. package/dist/spa/assets/cv-1f908f34.svg +13 -0
  268. package/dist/spa/assets/cv-2fa67e0a.svg +13 -0
  269. package/dist/spa/assets/cw-c845d0ca.svg +14 -0
  270. package/dist/spa/assets/cw-f4df53da.svg +14 -0
  271. package/dist/spa/assets/cx-55f4387a.svg +15 -0
  272. package/dist/spa/assets/cx-ae25f09c.svg +15 -0
  273. package/dist/spa/assets/cy-591e4d4e.svg +6 -0
  274. package/dist/spa/assets/cy-c74cf841.svg +6 -0
  275. package/dist/spa/assets/cz-5a462b5f.svg +5 -0
  276. package/dist/spa/assets/cz-d601fcc2.svg +5 -0
  277. package/dist/spa/assets/data.f2552e6f.js +1 -0
  278. package/dist/spa/assets/de-c02c7eec.svg +5 -0
  279. package/dist/spa/assets/de-efd480af.svg +5 -0
  280. package/dist/spa/assets/dg-25d279ba.svg +130 -0
  281. package/dist/spa/assets/dg-6f80e54a.svg +130 -0
  282. package/dist/spa/assets/dj-2a22d382.svg +13 -0
  283. package/dist/spa/assets/dj-84b1dd7e.svg +13 -0
  284. package/dist/spa/assets/dk-4d7c9c44.svg +5 -0
  285. package/dist/spa/assets/dk-d2847c0b.svg +5 -0
  286. package/dist/spa/assets/dm-3eb04b16.svg +152 -0
  287. package/dist/spa/assets/dm-e7be9ce0.svg +152 -0
  288. package/dist/spa/assets/do-277d6b3c.svg +121 -0
  289. package/dist/spa/assets/do-db682b45.svg +123 -0
  290. package/dist/spa/assets/dz-73f56cc7.svg +5 -0
  291. package/dist/spa/assets/dz-9ea0cf93.svg +5 -0
  292. package/dist/spa/assets/eac-0c899038.svg +48 -0
  293. package/dist/spa/assets/eac-efa22f50.svg +48 -0
  294. package/dist/spa/assets/ec-0d21faad.svg +138 -0
  295. package/dist/spa/assets/ec-da347b6c.svg +138 -0
  296. package/dist/spa/assets/ee-25642310.svg +5 -0
  297. package/dist/spa/assets/ee-9fbc0f51.svg +5 -0
  298. package/dist/spa/assets/eg-c5997f42.svg +38 -0
  299. package/dist/spa/assets/eg-dde2f9b7.svg +38 -0
  300. package/dist/spa/assets/eh-a957f2ae.svg +16 -0
  301. package/dist/spa/assets/eh-cc2bf737.svg +11 -0
  302. package/dist/spa/assets/er-1e5d7569.svg +13 -0
  303. package/dist/spa/assets/er-fb5f4394.svg +8 -0
  304. package/dist/spa/assets/es-1d6bfb57.svg +547 -0
  305. package/dist/spa/assets/es-28172513.svg +544 -0
  306. package/dist/spa/assets/es-ct-11229703.svg +4 -0
  307. package/dist/spa/assets/es-ct-95f4033c.svg +4 -0
  308. package/dist/spa/assets/es-ga-4bbb0eb3.svg +187 -0
  309. package/dist/spa/assets/es-ga-5642a44f.svg +187 -0
  310. package/dist/spa/assets/es-pv-70a6e0fb.svg +5 -0
  311. package/dist/spa/assets/es-pv-f608b2f3.svg +5 -0
  312. package/dist/spa/assets/et-43d5922f.svg +14 -0
  313. package/dist/spa/assets/et-e3751fb4.svg +14 -0
  314. package/dist/spa/assets/eu-019d50bf.svg +28 -0
  315. package/dist/spa/assets/eu-67040ccd.svg +28 -0
  316. package/dist/spa/assets/fi-012edd98.svg +5 -0
  317. package/dist/spa/assets/fi-f4064089.svg +5 -0
  318. package/dist/spa/assets/files-d47aa854.png +0 -0
  319. package/dist/spa/assets/fj-2c027e36.svg +120 -0
  320. package/dist/spa/assets/fj-8db000da.svg +123 -0
  321. package/dist/spa/assets/fk-8b68c7b9.svg +89 -0
  322. package/dist/spa/assets/fk-d7a1f432.svg +90 -0
  323. package/dist/spa/assets/flUhRq6tzZclQEJ-Vdg-IuiaDsNa-fd84f88b.woff +0 -0
  324. package/dist/spa/assets/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ-4a4dbc62.woff2 +0 -0
  325. package/dist/spa/assets/fm-23db3e9f.svg +11 -0
  326. package/dist/spa/assets/fm-3113102b.svg +11 -0
  327. package/dist/spa/assets/fo-40e76821.svg +12 -0
  328. package/dist/spa/assets/fo-ec85991b.svg +12 -0
  329. package/dist/spa/assets/format.93f46e0e.js +1 -0
  330. package/dist/spa/assets/fr-5cdc5047.svg +5 -0
  331. package/dist/spa/assets/fr-8cdacc8d.svg +5 -0
  332. package/dist/spa/assets/ga-cb2951db.svg +7 -0
  333. package/dist/spa/assets/ga-f7b775c4.svg +7 -0
  334. package/dist/spa/assets/gb-c8be1e72.svg +7 -0
  335. package/dist/spa/assets/gb-c9024642.svg +7 -0
  336. package/dist/spa/assets/gb-eng-2dd36838.svg +5 -0
  337. package/dist/spa/assets/gb-eng-53797ba9.svg +5 -0
  338. package/dist/spa/assets/gb-nir-a34747d6.svg +132 -0
  339. package/dist/spa/assets/gb-nir-fa653b48.svg +131 -0
  340. package/dist/spa/assets/gb-sct-19ed371e.svg +4 -0
  341. package/dist/spa/assets/gb-sct-7b55bce7.svg +4 -0
  342. package/dist/spa/assets/gb-wls-3a95845d.svg +9 -0
  343. package/dist/spa/assets/gb-wls-d3c5b996.svg +9 -0
  344. package/dist/spa/assets/gd-05f835f1.svg +27 -0
  345. package/dist/spa/assets/gd-ecf92e0e.svg +27 -0
  346. package/dist/spa/assets/ge-3821d90a.svg +6 -0
  347. package/dist/spa/assets/ge-86bad43b.svg +6 -0
  348. package/dist/spa/assets/gf-7643aaa7.svg +5 -0
  349. package/dist/spa/assets/gf-cb5464e2.svg +5 -0
  350. package/dist/spa/assets/gg-ca797ce5.svg +9 -0
  351. package/dist/spa/assets/gg-ea806b48.svg +9 -0
  352. package/dist/spa/assets/gh-53c55ca4.svg +6 -0
  353. package/dist/spa/assets/gh-5797d82d.svg +6 -0
  354. package/dist/spa/assets/gi-19c80ad2.svg +32 -0
  355. package/dist/spa/assets/gi-9fde3a8d.svg +32 -0
  356. package/dist/spa/assets/gl-15a60b07.svg +4 -0
  357. package/dist/spa/assets/gl-debe7773.svg +4 -0
  358. package/dist/spa/assets/gm-2aa3fad4.svg +14 -0
  359. package/dist/spa/assets/gm-726e760b.svg +9 -0
  360. package/dist/spa/assets/gn-8d20e686.svg +7 -0
  361. package/dist/spa/assets/gn-ee01e7dd.svg +7 -0
  362. package/dist/spa/assets/google-maps-09de8f0f.css +1 -0
  363. package/dist/spa/assets/google-maps.b98ab36f.js +19 -0
  364. package/dist/spa/assets/gp-5f0e3566.svg +5 -0
  365. package/dist/spa/assets/gp-ee9d78d0.svg +5 -0
  366. package/dist/spa/assets/gq-26bda313.svg +23 -0
  367. package/dist/spa/assets/gq-b8d96a07.svg +23 -0
  368. package/dist/spa/assets/gr-a184070f.svg +16 -0
  369. package/dist/spa/assets/gr-a4519d98.svg +16 -0
  370. package/dist/spa/assets/gs-ba7c7e0d.svg +133 -0
  371. package/dist/spa/assets/gs-e1a62dac.svg +132 -0
  372. package/dist/spa/assets/gt-60de265e.svg +204 -0
  373. package/dist/spa/assets/gt-6a60b637.svg +204 -0
  374. package/dist/spa/assets/gu-2301db56.svg +23 -0
  375. package/dist/spa/assets/gu-e5cb4dff.svg +23 -0
  376. package/dist/spa/assets/gw-6b81a234.svg +13 -0
  377. package/dist/spa/assets/gw-8838eee6.svg +15 -0
  378. package/dist/spa/assets/gy-4564fd57.svg +9 -0
  379. package/dist/spa/assets/gy-5bd7a7b3.svg +9 -0
  380. package/dist/spa/assets/hk-cb99edfd.svg +8 -0
  381. package/dist/spa/assets/hk-d9d142b2.svg +8 -0
  382. package/dist/spa/assets/hm-6c716b74.svg +8 -0
  383. package/dist/spa/assets/hm-b57fb521.svg +8 -0
  384. package/dist/spa/assets/hn-545c93c9.svg +18 -0
  385. package/dist/spa/assets/hn-67130fa0.svg +18 -0
  386. package/dist/spa/assets/hr-969d4f47.svg +58 -0
  387. package/dist/spa/assets/hr-a661f42b.svg +56 -0
  388. package/dist/spa/assets/ht-2d5cc356.svg +116 -0
  389. package/dist/spa/assets/ht-d4bab839.svg +116 -0
  390. package/dist/spa/assets/hu-9e6bc6d7.svg +7 -0
  391. package/dist/spa/assets/hu-ffc4edd5.svg +7 -0
  392. package/dist/spa/assets/ic-4e5a5e63.svg +7 -0
  393. package/dist/spa/assets/ic-9a584e04.svg +7 -0
  394. package/dist/spa/assets/id-5cd3acc4.svg +4 -0
  395. package/dist/spa/assets/id-b8cd30f2.svg +4 -0
  396. package/dist/spa/assets/ie-860168f5.svg +7 -0
  397. package/dist/spa/assets/ie-f82568d7.svg +7 -0
  398. package/dist/spa/assets/il-04a099ac.svg +14 -0
  399. package/dist/spa/assets/il-8cf0b4af.svg +14 -0
  400. package/dist/spa/assets/im-14dd48d6.svg +36 -0
  401. package/dist/spa/assets/im-6f212528.svg +36 -0
  402. package/dist/spa/assets/in-455c32f2.svg +25 -0
  403. package/dist/spa/assets/in-91185efa.svg +25 -0
  404. package/dist/spa/assets/index-62169f89.css +5 -0
  405. package/dist/spa/assets/index.fbe934e4.js +21 -0
  406. package/dist/spa/assets/io-0561beab.svg +130 -0
  407. package/dist/spa/assets/io-563ebc69.svg +130 -0
  408. package/dist/spa/assets/iq-4ab12323.svg +10 -0
  409. package/dist/spa/assets/iq-b6c0c264.svg +10 -0
  410. package/dist/spa/assets/ir-83523f8f.svg +219 -0
  411. package/dist/spa/assets/ir-cb363e09.svg +219 -0
  412. package/dist/spa/assets/is-4ef2de6f.svg +12 -0
  413. package/dist/spa/assets/is-e1e1c200.svg +12 -0
  414. package/dist/spa/assets/it-03086f2e.svg +7 -0
  415. package/dist/spa/assets/it-9fa88118.svg +7 -0
  416. package/dist/spa/assets/je-15a1bfeb.svg +62 -0
  417. package/dist/spa/assets/je-dbdfee3f.svg +62 -0
  418. package/dist/spa/assets/jm-43b63284.svg +8 -0
  419. package/dist/spa/assets/jm-f837df1a.svg +8 -0
  420. package/dist/spa/assets/jo-0ec98db3.svg +16 -0
  421. package/dist/spa/assets/jo-e3a570d5.svg +16 -0
  422. package/dist/spa/assets/jp-2bd3a486.svg +11 -0
  423. package/dist/spa/assets/jp-bfea80ba.svg +11 -0
  424. package/dist/spa/assets/ke-699163d8.svg +23 -0
  425. package/dist/spa/assets/ke-e19798c3.svg +23 -0
  426. package/dist/spa/assets/kg-177caf2d.svg +15 -0
  427. package/dist/spa/assets/kg-1afbc240.svg +15 -0
  428. package/dist/spa/assets/kh-65671aad.svg +61 -0
  429. package/dist/spa/assets/kh-706c89a1.svg +61 -0
  430. package/dist/spa/assets/ki-7d34b300.svg +36 -0
  431. package/dist/spa/assets/ki-7f62d1b7.svg +36 -0
  432. package/dist/spa/assets/km-5816e126.svg +16 -0
  433. package/dist/spa/assets/km-81e1befb.svg +16 -0
  434. package/dist/spa/assets/kn-0832acb7.svg +14 -0
  435. package/dist/spa/assets/kn-dc5eff37.svg +14 -0
  436. package/dist/spa/assets/kp-3ebcde57.svg +15 -0
  437. package/dist/spa/assets/kp-c0815d9c.svg +15 -0
  438. package/dist/spa/assets/kr-7a6cd5b5.svg +24 -0
  439. package/dist/spa/assets/kr-b6296bfd.svg +17 -0
  440. package/dist/spa/assets/kw-172a4281.svg +13 -0
  441. package/dist/spa/assets/kw-adea2b13.svg +13 -0
  442. package/dist/spa/assets/ky-cedf3c90.svg +103 -0
  443. package/dist/spa/assets/ky-ea74f388.svg +103 -0
  444. package/dist/spa/assets/kz-bf7d31b6.svg +36 -0
  445. package/dist/spa/assets/kz-ff45b584.svg +36 -0
  446. package/dist/spa/assets/la-da591b98.svg +12 -0
  447. package/dist/spa/assets/la-db27f2de.svg +12 -0
  448. package/dist/spa/assets/lb-251c575c.svg +15 -0
  449. package/dist/spa/assets/lb-4c0ca1b7.svg +15 -0
  450. package/dist/spa/assets/lc-99645e00.svg +8 -0
  451. package/dist/spa/assets/lc-f967e635.svg +8 -0
  452. package/dist/spa/assets/li-42289cca.svg +43 -0
  453. package/dist/spa/assets/li-6dbe6c67.svg +43 -0
  454. package/dist/spa/assets/lk-11a11427.svg +22 -0
  455. package/dist/spa/assets/lk-7cacc04f.svg +22 -0
  456. package/dist/spa/assets/lr-144dca7c.svg +14 -0
  457. package/dist/spa/assets/lr-69f2ce4b.svg +14 -0
  458. package/dist/spa/assets/ls-83d2e415.svg +8 -0
  459. package/dist/spa/assets/ls-a9f631a2.svg +8 -0
  460. package/dist/spa/assets/lt-8ef0e9cb.svg +7 -0
  461. package/dist/spa/assets/lt-dc040199.svg +7 -0
  462. package/dist/spa/assets/lu-02b43c1a.svg +5 -0
  463. package/dist/spa/assets/lu-a0a530e3.svg +5 -0
  464. package/dist/spa/assets/lv-15d4e812.svg +6 -0
  465. package/dist/spa/assets/lv-f4e0567e.svg +6 -0
  466. package/dist/spa/assets/ly-47d96b6e.svg +13 -0
  467. package/dist/spa/assets/ly-66bc7151.svg +13 -0
  468. package/dist/spa/assets/ma-28cfcdec.svg +4 -0
  469. package/dist/spa/assets/ma-8f1a0be2.svg +4 -0
  470. package/dist/spa/assets/mc-690c23fe.svg +6 -0
  471. package/dist/spa/assets/mc-c3aaba7e.svg +6 -0
  472. package/dist/spa/assets/md-72e632c4.svg +70 -0
  473. package/dist/spa/assets/md-969c6b9c.svg +71 -0
  474. package/dist/spa/assets/me-2d8a2d92.svg +116 -0
  475. package/dist/spa/assets/me-60100433.svg +118 -0
  476. package/dist/spa/assets/mf-137b371d.svg +5 -0
  477. package/dist/spa/assets/mf-65d7d1af.svg +5 -0
  478. package/dist/spa/assets/mg-59246c21.svg +7 -0
  479. package/dist/spa/assets/mg-f16ffe66.svg +7 -0
  480. package/dist/spa/assets/mh-96d7c0b9.svg +7 -0
  481. package/dist/spa/assets/mh-e0445f99.svg +8 -0
  482. package/dist/spa/assets/mk-22488dc8.svg +5 -0
  483. package/dist/spa/assets/mk-8faba052.svg +5 -0
  484. package/dist/spa/assets/ml-34021383.svg +7 -0
  485. package/dist/spa/assets/ml-49e84081.svg +7 -0
  486. package/dist/spa/assets/mm-c0b2e23a.svg +12 -0
  487. package/dist/spa/assets/mm-ea2756fc.svg +10 -0
  488. package/dist/spa/assets/mn-adf2695f.svg +14 -0
  489. package/dist/spa/assets/mn-ec89ba7f.svg +14 -0
  490. package/dist/spa/assets/mo-72c3a2b0.svg +9 -0
  491. package/dist/spa/assets/mo-cfdee80e.svg +9 -0
  492. package/dist/spa/assets/mp-075ddcdb.svg +86 -0
  493. package/dist/spa/assets/mp-732180a3.svg +86 -0
  494. package/dist/spa/assets/mq-94315e14.svg +5 -0
  495. package/dist/spa/assets/mq-e58f7279.svg +5 -0
  496. package/dist/spa/assets/mr-4ccf1997.svg +6 -0
  497. package/dist/spa/assets/mr-7f3c3ca0.svg +6 -0
  498. package/dist/spa/assets/ms-497011d5.svg +29 -0
  499. package/dist/spa/assets/ms-4c60b890.svg +25 -0
  500. package/dist/spa/assets/mt-796f6bfa.svg +58 -0
  501. package/dist/spa/assets/mt-98fb7512.svg +56 -0
  502. package/dist/spa/assets/mu-3a73b077.svg +8 -0
  503. package/dist/spa/assets/mu-51f86810.svg +8 -0
  504. package/dist/spa/assets/mv-5546d527.svg +6 -0
  505. package/dist/spa/assets/mv-ecc358a3.svg +6 -0
  506. package/dist/spa/assets/mw-81a7fe8f.svg +10 -0
  507. package/dist/spa/assets/mw-fbc58ca2.svg +15 -0
  508. package/dist/spa/assets/mx-0a06e057.svg +382 -0
  509. package/dist/spa/assets/mx-25aed782.svg +377 -0
  510. package/dist/spa/assets/my-da82a094.svg +26 -0
  511. package/dist/spa/assets/my-f0de0c63.svg +18 -0
  512. package/dist/spa/assets/mz-207c2ddc.svg +21 -0
  513. package/dist/spa/assets/mz-b77277e6.svg +21 -0
  514. package/dist/spa/assets/na-caa43fcd.svg +16 -0
  515. package/dist/spa/assets/na-eee4a9b1.svg +16 -0
  516. package/dist/spa/assets/nc-7a04d17c.svg +12 -0
  517. package/dist/spa/assets/nc-f8b9e240.svg +13 -0
  518. package/dist/spa/assets/ne-4b91653d.svg +6 -0
  519. package/dist/spa/assets/ne-c92686fc.svg +6 -0
  520. package/dist/spa/assets/nf-1d8411d2.svg +11 -0
  521. package/dist/spa/assets/nf-298cf95f.svg +9 -0
  522. package/dist/spa/assets/ng-a41dbb75.svg +6 -0
  523. package/dist/spa/assets/ng-b7a2a45a.svg +6 -0
  524. package/dist/spa/assets/ni-979c81b0.svg +129 -0
  525. package/dist/spa/assets/ni-f3892526.svg +129 -0
  526. package/dist/spa/assets/nl-8f691f17.svg +5 -0
  527. package/dist/spa/assets/nl-d99b87e8.svg +5 -0
  528. package/dist/spa/assets/no-55fc1564.svg +7 -0
  529. package/dist/spa/assets/no-ceea17af.svg +7 -0
  530. package/dist/spa/assets/no-result-1473e903.png +0 -0
  531. package/dist/spa/assets/np-09078387.svg +13 -0
  532. package/dist/spa/assets/np-18044dd9.svg +18 -0
  533. package/dist/spa/assets/nr-c0fc69e7.svg +12 -0
  534. package/dist/spa/assets/nr-f1de4b06.svg +12 -0
  535. package/dist/spa/assets/nu-835c94f3.svg +10 -0
  536. package/dist/spa/assets/nu-93e802ac.svg +10 -0
  537. package/dist/spa/assets/nz-794a2c8c.svg +36 -0
  538. package/dist/spa/assets/nz-9e6e1d5e.svg +36 -0
  539. package/dist/spa/assets/om-bd5e4e78.svg +115 -0
  540. package/dist/spa/assets/om-fd3c723f.svg +115 -0
  541. package/dist/spa/assets/pa-0a61ba05.svg +13 -0
  542. package/dist/spa/assets/pa-6181586e.svg +14 -0
  543. package/dist/spa/assets/pc-502e1da5.svg +33 -0
  544. package/dist/spa/assets/pc-540c3f0b.svg +33 -0
  545. package/dist/spa/assets/pe-c9852484.svg +4 -0
  546. package/dist/spa/assets/pe-e9dd299d.svg +4 -0
  547. package/dist/spa/assets/pf-2e2af3a6.svg +18 -0
  548. package/dist/spa/assets/pf-7568f177.svg +19 -0
  549. package/dist/spa/assets/pg-39b3e01c.svg +9 -0
  550. package/dist/spa/assets/pg-7a1f4e7a.svg +16 -0
  551. package/dist/spa/assets/ph-37c54f47.svg +6 -0
  552. package/dist/spa/assets/ph-4cccf403.svg +6 -0
  553. package/dist/spa/assets/pk-490b17d5.svg +15 -0
  554. package/dist/spa/assets/pk-d4949a03.svg +15 -0
  555. package/dist/spa/assets/pl-369bb3e1.svg +6 -0
  556. package/dist/spa/assets/pl-698cda1f.svg +6 -0
  557. package/dist/spa/assets/plugin-vue_export-helper.21dcd24c.js +1 -0
  558. package/dist/spa/assets/pm-10cc79ca.svg +5 -0
  559. package/dist/spa/assets/pm-498e2e96.svg +5 -0
  560. package/dist/spa/assets/pn-2abb59c8.svg +53 -0
  561. package/dist/spa/assets/pn-e4bc9080.svg +53 -0
  562. package/dist/spa/assets/position-engine.8d40bcd7.js +1 -0
  563. package/dist/spa/assets/pr-044ecbaa.svg +13 -0
  564. package/dist/spa/assets/pr-968c343f.svg +13 -0
  565. package/dist/spa/assets/ps-20efb813.svg +15 -0
  566. package/dist/spa/assets/ps-3045c52b.svg +15 -0
  567. package/dist/spa/assets/pt-55239976.svg +57 -0
  568. package/dist/spa/assets/pt-9c5ea4ae.svg +57 -0
  569. package/dist/spa/assets/pw-77185a59.svg +11 -0
  570. package/dist/spa/assets/pw-a61ab9d9.svg +11 -0
  571. package/dist/spa/assets/py-20b8e698.svg +157 -0
  572. package/dist/spa/assets/py-ce36335f.svg +156 -0
  573. package/dist/spa/assets/qa-d151a4cb.svg +4 -0
  574. package/dist/spa/assets/qa-fb955ef3.svg +4 -0
  575. package/dist/spa/assets/re-7b5a5202.svg +5 -0
  576. package/dist/spa/assets/re-a5347d1a.svg +7 -0
  577. package/dist/spa/assets/ro-17a3a747.svg +7 -0
  578. package/dist/spa/assets/ro-b56a867a.svg +7 -0
  579. package/dist/spa/assets/rs-840a9b00.svg +292 -0
  580. package/dist/spa/assets/rs-f1704888.svg +296 -0
  581. package/dist/spa/assets/rtl.6c6ec198.js +1 -0
  582. package/dist/spa/assets/ru-7100aaae.svg +5 -0
  583. package/dist/spa/assets/ru-b89b2309.svg +5 -0
  584. package/dist/spa/assets/rw-9512100a.svg +13 -0
  585. package/dist/spa/assets/rw-ada409bb.svg +13 -0
  586. package/dist/spa/assets/sa-07dd2814.svg +25 -0
  587. package/dist/spa/assets/sa-81db5d62.svg +25 -0
  588. package/dist/spa/assets/sb-b34eabf3.svg +13 -0
  589. package/dist/spa/assets/sb-d089e4d9.svg +13 -0
  590. package/dist/spa/assets/sc-30cdbe42.svg +7 -0
  591. package/dist/spa/assets/sc-4363a818.svg +7 -0
  592. package/dist/spa/assets/sd-25b3fa24.svg +13 -0
  593. package/dist/spa/assets/sd-61d673be.svg +13 -0
  594. package/dist/spa/assets/se-73e67d57.svg +4 -0
  595. package/dist/spa/assets/se-b3b5071e.svg +4 -0
  596. package/dist/spa/assets/sg-25de9044.svg +13 -0
  597. package/dist/spa/assets/sg-4aa6c197.svg +13 -0
  598. package/dist/spa/assets/sh-559acea1.svg +7 -0
  599. package/dist/spa/assets/sh-ac-0f40c2bc.svg +690 -0
  600. package/dist/spa/assets/sh-ac-16e23419.svg +689 -0
  601. package/dist/spa/assets/sh-ccb1ab63.svg +7 -0
  602. package/dist/spa/assets/sh-hl-406181ee.svg +164 -0
  603. package/dist/spa/assets/sh-hl-68d0949b.svg +164 -0
  604. package/dist/spa/assets/sh-ta-279da87c.svg +76 -0
  605. package/dist/spa/assets/sh-ta-4ac8d5d3.svg +76 -0
  606. package/dist/spa/assets/si-4d8dd01a.svg +18 -0
  607. package/dist/spa/assets/si-c73e4b63.svg +18 -0
  608. package/dist/spa/assets/sj-880802e4.svg +7 -0
  609. package/dist/spa/assets/sj-b60dad0e.svg +7 -0
  610. package/dist/spa/assets/sk-933c0e9f.svg +9 -0
  611. package/dist/spa/assets/sk-e82f6617.svg +9 -0
  612. package/dist/spa/assets/sl-d0c384b0.svg +7 -0
  613. package/dist/spa/assets/sl-feb8b966.svg +12 -0
  614. package/dist/spa/assets/sm-3c448abb.svg +75 -0
  615. package/dist/spa/assets/sm-e6a39dc7.svg +73 -0
  616. package/dist/spa/assets/sn-2c7a8737.svg +8 -0
  617. package/dist/spa/assets/sn-6437db13.svg +8 -0
  618. package/dist/spa/assets/so-249e1acb.svg +11 -0
  619. package/dist/spa/assets/so-cdd8759b.svg +11 -0
  620. package/dist/spa/assets/sr-5194a6af.svg +6 -0
  621. package/dist/spa/assets/sr-81b54581.svg +6 -0
  622. package/dist/spa/assets/ss-2f87b259.svg +8 -0
  623. package/dist/spa/assets/ss-f7ac7017.svg +8 -0
  624. package/dist/spa/assets/st-73d3798d.svg +16 -0
  625. package/dist/spa/assets/st-880c17f9.svg +16 -0
  626. package/dist/spa/assets/sv-94e59678.svg +594 -0
  627. package/dist/spa/assets/sv-fc3bb719.svg +594 -0
  628. package/dist/spa/assets/sx-514cc8e6.svg +56 -0
  629. package/dist/spa/assets/sx-7937e634.svg +56 -0
  630. package/dist/spa/assets/sy-097f5f00.svg +6 -0
  631. package/dist/spa/assets/sy-9f4f226b.svg +6 -0
  632. package/dist/spa/assets/sz-cc06803f.svg +34 -0
  633. package/dist/spa/assets/sz-f2832775.svg +34 -0
  634. package/dist/spa/assets/tc-542bbd6b.svg +50 -0
  635. package/dist/spa/assets/tc-83c26721.svg +50 -0
  636. package/dist/spa/assets/td-19a278fb.svg +7 -0
  637. package/dist/spa/assets/td-f5c38f02.svg +7 -0
  638. package/dist/spa/assets/tf-0bf7174a.svg +15 -0
  639. package/dist/spa/assets/tf-9249adfa.svg +15 -0
  640. package/dist/spa/assets/tg-33598cd0.svg +14 -0
  641. package/dist/spa/assets/tg-ec624b49.svg +14 -0
  642. package/dist/spa/assets/th-329cc0d5.svg +7 -0
  643. package/dist/spa/assets/th-bb8a18d6.svg +7 -0
  644. package/dist/spa/assets/tj-29eb9e2b.svg +26 -0
  645. package/dist/spa/assets/tj-93a976af.svg +22 -0
  646. package/dist/spa/assets/tk-4c433207.svg +5 -0
  647. package/dist/spa/assets/tk-8040c00b.svg +5 -0
  648. package/dist/spa/assets/tl-09c763aa.svg +13 -0
  649. package/dist/spa/assets/tl-caf45b73.svg +13 -0
  650. package/dist/spa/assets/tm-257cc21c.svg +204 -0
  651. package/dist/spa/assets/tm-b6616048.svg +205 -0
  652. package/dist/spa/assets/tn-8e0274e5.svg +4 -0
  653. package/dist/spa/assets/tn-bddf1a6c.svg +4 -0
  654. package/dist/spa/assets/to-8f2f476b.svg +10 -0
  655. package/dist/spa/assets/to-b351703f.svg +10 -0
  656. package/dist/spa/assets/tr-256a1d6a.svg +8 -0
  657. package/dist/spa/assets/tr-d83c3693.svg +8 -0
  658. package/dist/spa/assets/tt-04c13dcd.svg +5 -0
  659. package/dist/spa/assets/tt-4be02a2c.svg +7 -0
  660. package/dist/spa/assets/tv-7415f816.svg +9 -0
  661. package/dist/spa/assets/tv-d94fa5f1.svg +9 -0
  662. package/dist/spa/assets/tw-931757f0.svg +34 -0
  663. package/dist/spa/assets/tw-c04cf00d.svg +32 -0
  664. package/dist/spa/assets/tz-0c1241a5.svg +15 -0
  665. package/dist/spa/assets/tz-fd317aba.svg +13 -0
  666. package/dist/spa/assets/ua-2d869c23.svg +6 -0
  667. package/dist/spa/assets/ua-fd9ad29b.svg +6 -0
  668. package/dist/spa/assets/ug-1c2dc80a.svg +30 -0
  669. package/dist/spa/assets/ug-cfbbc57e.svg +30 -0
  670. package/dist/spa/assets/um-32796aeb.svg +9 -0
  671. package/dist/spa/assets/um-60a63330.svg +9 -0
  672. package/dist/spa/assets/un-1bbe9b9f.svg +16 -0
  673. package/dist/spa/assets/un-8cf05f44.svg +16 -0
  674. package/dist/spa/assets/us-633325cb.svg +9 -0
  675. package/dist/spa/assets/us-e7be4240.svg +9 -0
  676. package/dist/spa/assets/use-dark.f9e4c52e.js +1 -0
  677. package/dist/spa/assets/use-tick.25cd130f.js +1 -0
  678. package/dist/spa/assets/use-timeout.68aa88bf.js +1 -0
  679. package/dist/spa/assets/uy-47656c0b.svg +28 -0
  680. package/dist/spa/assets/uy-560c003d.svg +28 -0
  681. package/dist/spa/assets/uz-62ce6f10.svg +30 -0
  682. package/dist/spa/assets/uz-8f09f1fe.svg +30 -0
  683. package/dist/spa/assets/va-3de11ade.svg +190 -0
  684. package/dist/spa/assets/va-78d508db.svg +190 -0
  685. package/dist/spa/assets/vc-31d13bf0.svg +8 -0
  686. package/dist/spa/assets/vc-4e0a8644.svg +8 -0
  687. package/dist/spa/assets/ve-5712f1c6.svg +26 -0
  688. package/dist/spa/assets/ve-9052562f.svg +26 -0
  689. package/dist/spa/assets/vg-7cd2b24c.svg +59 -0
  690. package/dist/spa/assets/vg-f56ce78b.svg +59 -0
  691. package/dist/spa/assets/vi-91e6caf9.svg +28 -0
  692. package/dist/spa/assets/vi-990cfac9.svg +28 -0
  693. package/dist/spa/assets/vn-23550372.svg +11 -0
  694. package/dist/spa/assets/vn-7b590ecf.svg +11 -0
  695. package/dist/spa/assets/vu-03137169.svg +21 -0
  696. package/dist/spa/assets/vu-f7bd4168.svg +21 -0
  697. package/dist/spa/assets/wf-ad34db05.svg +5 -0
  698. package/dist/spa/assets/wf-da8ca66e.svg +5 -0
  699. package/dist/spa/assets/ws-48d15d76.svg +7 -0
  700. package/dist/spa/assets/ws-6b1a7ebc.svg +7 -0
  701. package/dist/spa/assets/xk-b73926fa.svg +5 -0
  702. package/dist/spa/assets/xk-e5bdc61c.svg +5 -0
  703. package/dist/spa/assets/xx-5f776f5b.svg +4 -0
  704. package/dist/spa/assets/xx-84717c7a.svg +4 -0
  705. package/dist/spa/assets/ye-4ad43705.svg +7 -0
  706. package/dist/spa/assets/ye-8ff200c9.svg +7 -0
  707. package/dist/spa/assets/yt-5a57b00a.svg +5 -0
  708. package/dist/spa/assets/yt-f6ed4975.svg +5 -0
  709. package/dist/spa/assets/za-004caac0.svg +17 -0
  710. package/dist/spa/assets/za-1755a5e1.svg +17 -0
  711. package/dist/spa/assets/zm-32fbded9.svg +27 -0
  712. package/dist/spa/assets/zm-65843e27.svg +27 -0
  713. package/dist/spa/assets/zw-bc95d191.svg +21 -0
  714. package/dist/spa/assets/zw-de8ce588.svg +21 -0
  715. package/dist/spa/favicon.ico +0 -0
  716. package/dist/spa/icons/caret-down.svg +5 -0
  717. package/dist/spa/icons/chevron-left.svg +5 -0
  718. package/dist/spa/icons/chevron-right.svg +5 -0
  719. package/dist/spa/icons/favicon-128x128.png +0 -0
  720. package/dist/spa/icons/favicon-16x16.png +0 -0
  721. package/dist/spa/icons/favicon-32x32.png +0 -0
  722. package/dist/spa/icons/favicon-96x96.png +0 -0
  723. package/dist/spa/icons/logo-s.svg +13 -0
  724. package/dist/spa/icons/logo.svg +19 -0
  725. package/dist/spa/icons/visa.svg +4 -0
  726. package/dist/spa/images/logo.svg +19 -0
  727. package/dist/spa/index.html +3 -0
  728. package/dist/spa/js/maps.js +40 -0
  729. package/package.json +12 -6
  730. package/src/components/core/UTabBtnStd.vue +0 -153
  731. package/src/components/index.js +0 -24
  732. /package/{src → dist/component-library}/components/ComponentLink.vue +0 -0
  733. /package/{src → dist/component-library}/components/core/UAvatarGroup.vue +0 -0
  734. /package/{src → dist/component-library}/components/core/UBadgeStd.vue +0 -0
@@ -0,0 +1,138 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-ec" viewBox="0 0 640 480">
2
+ <g fill-rule="evenodd" stroke-width="1pt">
3
+ <path fill="#ffe800" d="M0 0h640v480H0z"/>
4
+ <path fill="#00148e" d="M0 240h640v240H0z"/>
5
+ <path fill="#da0010" d="M0 360h640v120H0z"/>
6
+ </g>
7
+ <g fill-rule="evenodd">
8
+ <path d="M269.6 290.8 197 367.3l-1.2-1.6 72.4-76.5 1.2 1.6zm50.4 12.5-94.8 100-1.6-1.6 94.7-100z"/>
9
+ <path fill="gray" stroke="#000" stroke-width="4.1" d="M478.4 60.2v88.6l17.7 88.6 17.7-88.6V60.2z" transform="matrix(-.07 -.07 -.1 .1 265 429.6)"/>
10
+ <path fill="gray" stroke="#000" stroke-width="4.1" d="M478.4 60.2v88.6l17.7 88.6 17.7-88.6V60.2z" transform="matrix(-.07 -.07 -.1 .1 240.6 390.5)"/>
11
+ </g>
12
+ <path fill="#ffdf00" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M301.2 272.8s-17.7 336.6 53.1 336.6S460.6 574 460.6 574l-.8-185z" transform="matrix(.45 0 0 .64 72.4 -59.8)"/>
13
+ <path fill="#0000c4" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M344.5 304.2c0 17.7-7.9 269.8 27.5 269.8s88.6-17.7 88.6-17.7l-.8-167.3z" transform="matrix(.45 0 0 .64 72.4 -59.8)"/>
14
+ <path fill="#e10000" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M367.5 321.2c0 17.7 4.5 217.4 40 217.4h53.1l-.8-149.6z" transform="matrix(.45 0 0 .64 72.4 -59.8)"/>
15
+ <path fill-rule="evenodd" d="m206.2 116 72.4 76.5 1.3-1.6-72.4-76.5z"/>
16
+ <path fill="#ffdf00" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M301.2 272.8S265.8 609.4 372 609.4c88.5 0 88.5-53.1 106.2-53.1l-17.7-124z" transform="matrix(.58 0 0 .62 9.6 -10.2)"/>
17
+ <g stroke="#000">
18
+ <path fill="none" stroke-width="2.3" d="M269.6 155.2c1.1 0 28.3-94 119-147.2" transform="matrix(.4 -.03 -.05 .35 135.1 147.4)"/>
19
+ <path fill="#005b00" fill-rule="evenodd" stroke-width="1pt" d="M421.4-20.3c0 18.1-4.6 31.7-11.4 45.3-5.6-18.1-9-27.2-9-45.3s6.8-35.1 12.4-48.7c2.3 12.4 8 30.5 8 48.7z" transform="matrix(.14 -.22 .3 .14 175.9 257.4)"/>
20
+ <path fill="red" fill-rule="evenodd" stroke-width="1pt" d="M454.2-169.3c0 4-3.8 7.4-8.5 7.4s-8.5-3.3-8.5-7.4 3.8-7.3 8.5-7.3 8.5 3.3 8.5 7.3z" transform="matrix(.18 -.1 .1 .17 177.6 256.7)"/>
21
+ <path fill="#005b00" fill-rule="evenodd" stroke-width="1pt" d="M421.4-20.3c0 18.1-4.6 31.7-11.4 45.3-5.6-18.1-9-27.2-9-45.3s6.8-35.1 12.4-48.7c2.3 12.4 8 30.5 8 48.7z" transform="matrix(.18 .12 -.13 .33 181 96.4)"/>
22
+ <path fill="#005b00" fill-rule="evenodd" stroke-width="1pt" d="M421.4-20.3c0 18.1-4.6 31.7-11.4 45.3-5.6-18.1-9-27.2-9-45.3s6.8-35.1 12.4-48.7c2.3 12.4 8 30.5 8 48.7z" transform="matrix(.17 -.03 -.03 .33 179.3 159.3)"/>
23
+ <path fill="#005b00" fill-rule="evenodd" stroke-width="1pt" d="M421.4-20.3c0 18.1-4.6 31.7-11.4 45.3-5.6-18.1-9-27.2-9-45.3s6.8-35.1 12.4-48.7c2.3 12.4 8 30.5 8 48.7z" transform="matrix(.06 .25 -.17 .2 228 45.5)"/>
24
+ <path fill="#005b00" fill-rule="evenodd" stroke-width="1pt" d="M421.4-20.3c0 18.1-4.6 31.7-11.4 45.3-5.6-18.1-9-27.2-9-45.3s6.8-35.1 12.4-48.7c2.3 12.4 8 30.5 8 48.7z" transform="matrix(.2 -.2 .2 .24 150.3 241)"/>
25
+ <path fill="#005b00" fill-rule="evenodd" stroke-width="1pt" d="M421.4-20.3c0 18.1-4.6 31.7-11.4 45.3-5.6-18.1-9-27.2-9-45.3s6.8-35.1 12.4-48.7c2.3 12.4 8 30.5 8 48.7z" transform="matrix(.22 -.22 .25 .2 135.6 282.1)"/>
26
+ <path fill="#005b00" fill-rule="evenodd" stroke-width="1pt" d="M421.4-20.3c0 18.1-4.6 31.7-11.4 45.3-5.6-18.1-9-27.2-9-45.3s6.8-35.1 12.4-48.7c2.3 12.4 8 30.5 8 48.7z" transform="matrix(.26 .1 -.2 .32 130.8 147.7)"/>
27
+ <path fill="#005b00" fill-rule="evenodd" stroke-width="1pt" d="M421.4-20.3c0 18.1-4.6 31.7-11.4 45.3-5.6-18.1-9-27.2-9-45.3s6.8-35.1 12.4-48.7c2.3 12.4 8 30.5 8 48.7z" transform="matrix(.15 .2 -.32 .22 178.5 103.3)"/>
28
+ <path fill="#005b00" fill-rule="evenodd" stroke-width="1pt" d="M421.4-20.3c0 18.1-4.6 31.7-11.4 45.3-5.6-18.1-9-27.2-9-45.3s6.8-35.1 12.4-48.7c2.3 12.4 8 30.5 8 48.7z" transform="matrix(.08 .1 -.14 .16 250.7 102.6)"/>
29
+ <path fill="#005b00" fill-rule="evenodd" stroke-width="1pt" d="M421.4-20.3c0 18.1-4.6 31.7-11.4 45.3-5.6-18.1-9-27.2-9-45.3s6.8-35.1 12.4-48.7c2.3 12.4 8 30.5 8 48.7z" transform="matrix(.1 0 -.08 .17 238 136.4)"/>
30
+ <path fill="#005b00" fill-rule="evenodd" stroke-width="1pt" d="M421.4-20.3c0 18.1-4.6 31.7-11.4 45.3-5.6-18.1-9-27.2-9-45.3s6.8-35.1 12.4-48.7c2.3 12.4 8 30.5 8 48.7z" transform="matrix(0 .14 -.14 .08 287.4 81.1)"/>
31
+ <path fill="#005b00" fill-rule="evenodd" stroke-width="1pt" d="M421.4-20.3c0 18.1-4.6 31.7-11.4 45.3-5.6-18.1-9-27.2-9-45.3s6.8-35.1 12.4-48.7c2.3 12.4 8 30.5 8 48.7z" transform="matrix(.07 .1 -.25 .15 220.7 115.6)"/>
32
+ <path fill="#005b00" fill-rule="evenodd" stroke-width="1pt" d="M421.4-20.3c0 18.1-4.6 31.7-11.4 45.3-5.6-18.1-9-27.2-9-45.3s6.8-35.1 12.4-48.7c2.3 12.4 8 30.5 8 48.7z" transform="matrix(.13 .22 -.33 .2 207 70.1)"/>
33
+ <path fill="none" stroke-width="2.4" d="M269.6 155.2c1.1 0 28.3-94 119-147.2" transform="matrix(.35 -.2 .14 .28 111.8 227.8)"/>
34
+ <path fill="red" fill-rule="evenodd" stroke-width="1pt" d="M454.2-169.3c0 4-3.8 7.4-8.5 7.4s-8.5-3.3-8.5-7.4 3.8-7.3 8.5-7.3 8.5 3.3 8.5 7.3z" transform="matrix(.18 -.1 .1 .17 200.3 224.6)"/>
35
+ <path fill="red" fill-rule="evenodd" stroke-width="1pt" d="M454.2-169.3c0 4-3.8 7.4-8.5 7.4s-8.5-3.3-8.5-7.4 3.8-7.3 8.5-7.3 8.5 3.3 8.5 7.3z" transform="matrix(.18 -.1 .1 .17 211.1 218.3)"/>
36
+ <path fill="red" fill-rule="evenodd" stroke-width="1pt" d="M454.2-169.3c0 4-3.8 7.4-8.5 7.4s-8.5-3.3-8.5-7.4 3.8-7.3 8.5-7.3 8.5 3.3 8.5 7.3z" transform="matrix(.2 -.1 .07 .13 166.8 232.7)"/>
37
+ <path fill="red" fill-rule="evenodd" stroke-width="1pt" d="M454.2-169.3c0 4-3.8 7.4-8.5 7.4s-8.5-3.3-8.5-7.4 3.8-7.3 8.5-7.3 8.5 3.3 8.5 7.3z" transform="matrix(.2 -.1 .07 .13 170 231.3)"/>
38
+ <path fill="red" fill-rule="evenodd" stroke-width="1pt" d="M454.2-169.3c0 4-3.8 7.4-8.5 7.4s-8.5-3.3-8.5-7.4 3.8-7.3 8.5-7.3 8.5 3.3 8.5 7.3z" transform="matrix(.2 -.1 .07 .13 168.1 234.3)"/>
39
+ <path fill="red" fill-rule="evenodd" stroke-width=".3" d="M252.7 167.3c.4.8 0 1.8-1 2.3s-2 .2-2.4-.7 0-1.8 1-2.3 2-.2 2.3.7z"/>
40
+ <path fill="red" fill-rule="evenodd" stroke-width=".3" d="M255 164.9c.3.8 0 1.8-1 2.3s-2 .2-2.5-.6 0-1.9 1-2.4 2-.1 2.4.7z"/>
41
+ <path fill="red" fill-rule="evenodd" stroke-width=".3" d="M255.5 166c.4.8 0 1.9-1 2.3s-2 .2-2.4-.6 0-1.8 1-2.3 2-.2 2.4.6z"/>
42
+ </g>
43
+ <path fill="#0000c4" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M336.6 308.3c0 17.7-35.4 212.6 53.2 265.7 35.4 17.7 88.5-17.7 88.5 0l-17.7-141.7z" transform="matrix(.58 0 0 .62 9.6 -10.2)"/>
44
+ <path fill="#e10000" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M372 343.7c0 17.7-17.7 159.4 35.5 194.9 35.4 35.4 124 25.8 124 25.8l-70.9-132.1z" transform="matrix(.58 0 0 .62 9.6 -10.2)"/>
45
+ <path fill-rule="evenodd" d="m183.8 158 94.8 100 1.7-1.6-94.8-99.9z"/>
46
+ <path fill="#cececc" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="m460.6 184.3 17.7 35.4v17.7c-.8-1.3 0 17.7-17.7 17.7S443 219.7 443 219.7s-17.7 35.4-17.7 70.9 17.7 53.1 17.7 53.1-2.6-36.7 17.7-35.4c20.4 1.2 17.7 17.7 17.7 17.7v35.4h17.8V219.7l17.7-35.4-27.2-53.2-26 53.1z" transform="matrix(.14 -.14 .1 .1 86.3 192.2)"/>
47
+ <path fill="#cececc" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="m557.8 95.7-26.3 70.8 17.7 53.2-35.4-17.7 35.4 53.1v35.5H567V255l35.5-53.1-35.5 17.7 17.8-53.2-26.9-70.8z" transform="matrix(.1 -.16 .14 .1 114 183.8)"/>
48
+ <path fill="#e10000" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M422.5 137c0 2-2 3.7-4.3 3.7s-4.4-1.7-4.4-3.7 2-3.8 4.4-3.8 4.3 1.7 4.3 3.8zm-6.2 7.9c0 35.8 20.9 187.8 22.6 191.5.1 4.5-4.8 6.4-7.1.9-6.6-17.4-20.8-160-21.3-193.3-.3-13.7 3.7-14.8 8.3-14.5 3.7.2 8.3 3.7 8.3 7.9 0 5-5.8 8.7-10.8 7.5z" transform="matrix(.4 0 0 .3 43.8 69.8)"/>
49
+ <path fill="#0000c4" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M422.5 137c0 2-2 3.7-4.3 3.7s-4.4-1.7-4.4-3.7 2-3.8 4.4-3.8 4.3 1.7 4.3 3.8zm-6.2 7.9c31.5 61.4 48.7 166.7 50.4 170.5.1 4.4-4.8 6.4-7.1.8-2.5-3.3-12.7-100.2-49.1-172.2-.3-13.7 3.7-14.8 8.3-14.5 3.7.2 8.3 3.7 8.3 7.9 0 5-5.8 8.7-10.8 7.5z" transform="matrix(.38 .1 -.15 .3 76 38.2)"/>
50
+ <path fill="#e10000" fill-rule="evenodd" stroke="#000" stroke-width=".7" d="M186.7 151.5c0 1-1 2-2.2 2-1.2 0-2.2-1-2.2-2s1-1.8 2.2-1.8c1.2 0 2.1.8 2.1 1.8zm-3.2 4c0 17.9 10.5 93.9 11.3 95.8 0 2.2-2.3 3.2-3.5.4-3.3-8.7-10.4-80-10.7-96.6-.1-6.9 1.9-7.4 4.2-7.3 1.9.1 4.1 1.9 4.1 4 0 2.4-2.9 4.3-5.4 3.7z"/>
51
+ <path fill="#0000c4" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M422.5 137c0 2-2 3.7-4.3 3.7s-4.4-1.7-4.4-3.7 2-3.8 4.4-3.8 4.3 1.7 4.3 3.8zm-6.2 7.9c31.5 61.4 48.7 166.7 50.4 170.5.1 4.4-4.8 6.4-7.1.8-2.5-3.3-12.7-100.2-49.1-172.2-.3-13.7 3.7-14.8 8.3-14.5 3.7.2 8.3 3.7 8.3 7.9 0 5-5.8 8.7-10.8 7.5z" transform="matrix(.48 .15 -.2 .48 16.7 31.6)"/>
52
+ <g fill-rule="evenodd">
53
+ <path d="m370.4 290.8 72.5 76.5 1.3-1.6-72.5-76.5zM320 303.3l94.8 100 1.6-1.6-94.7-100z"/>
54
+ <path fill="gray" stroke="#000" stroke-width="4.1" d="M478.4 60.2v88.6l17.7 88.6 17.7-88.6V60.2z" transform="matrix(.07 -.07 .1 .1 375 429.6)"/>
55
+ <path fill="gray" stroke="#000" stroke-width="4.1" d="M478.4 60.2v88.6l17.7 88.6 17.7-88.6V60.2z" transform="matrix(.07 -.07 .1 .1 399.4 390.5)"/>
56
+ </g>
57
+ <g fill-rule="evenodd" stroke-width="1pt">
58
+ <path fill="#ffdf00" stroke="#000" d="M301.2 272.8s-17.7 336.6 53.1 336.6S460.6 574 460.6 574l-.8-185z" transform="matrix(-.45 0 0 .64 567.6 -59.8)"/>
59
+ <path fill="#0000c4" stroke="#000" d="M344.5 304.2c0 17.7-7.9 269.8 27.5 269.8s88.6-17.7 88.6-17.7l-.8-167.3z" transform="matrix(-.45 0 0 .64 567.6 -59.8)"/>
60
+ <path fill="#e10000" stroke="#000" d="M367.5 321.2c0 17.7 4.5 217.4 40 217.4h53.1l-.8-149.6z" transform="matrix(-.45 0 0 .64 567.6 -59.8)"/>
61
+ <path d="m433.8 116-72.4 76.5-1.3-1.6 72.4-76.5z"/>
62
+ <g fill="#005b00" stroke="#000">
63
+ <path d="M428.2-17s81.5 90.7 111 154.1c29.4 63.5 54.4 156.3 54.4 156.3s2.2-86-36.3-163C505.2 32.8 425.9-12.5 428.2-17z" transform="matrix(.16 -.07 .08 .35 309.5 211)"/>
64
+ <path d="M428.2-17s81.5 90.7 111 154.1c29.4 63.5 54.4 156.3 54.4 156.3s2.2-86-36.3-163C505.2 32.8 425.9-12.5 428.2-17z" transform="matrix(.2 -.05 .07 .4 291.5 182.6)"/>
65
+ <path d="M428.2-17s81.5 90.7 111 154.1c29.4 63.5 54.4 156.3 54.4 156.3s2.2-86-36.3-163C505.2 32.8 425.9-12.5 428.2-17z" transform="matrix(.23 .14 -.03 .4 296.5 69.4)"/>
66
+ <path d="M428.2-17s81.5 90.7 111 154.1c29.4 63.5 54.4 156.3 54.4 156.3s2.2-86-36.3-163C505.2 32.8 425.9-12.5 428.2-17z" transform="matrix(.25 .03 .02 .44 274.4 115)"/>
67
+ <path d="M428.2-17s81.5 90.7 111 154.1c29.4 63.5 54.4 156.3 54.4 156.3s2.2-86-36.3-163C505.2 32.8 425.9-12.5 428.2-17z" transform="matrix(.18 .17 -.04 .35 330 67)"/>
68
+ <path d="M428.2-17s81.5 90.7 111 154.1c29.4 63.5 54.4 156.3 54.4 156.3s2.2-86-36.3-163C505.2 32.8 425.9-12.5 428.2-17z" transform="matrix(.23 0 .03 .4 280.6 141.9)"/>
69
+ <path d="M428.2-17s81.5 90.7 111 154.1c29.4 63.5 54.4 156.3 54.4 156.3s2.2-86-36.3-163C505.2 32.8 425.9-12.5 428.2-17z" transform="matrix(.2 -.07 .07 .38 290.1 196.8)"/>
70
+ <path d="M428.2-17s81.5 90.7 111 154.1c29.4 63.5 54.4 156.3 54.4 156.3s2.2-86-36.3-163C505.2 32.8 425.9-12.5 428.2-17z" transform="matrix(.2 -.03 .05 .4 292.7 166.8)"/>
71
+ <path d="M428.2-17s81.5 90.7 111 154.1c29.4 63.5 54.4 156.3 54.4 156.3s2.2-86-36.3-163C505.2 32.8 425.9-12.5 428.2-17z" transform="matrix(.22 .15 -.05 .38 305 65.5)"/>
72
+ <path d="M428.2-17s81.5 90.7 111 154.1c29.4 63.5 54.4 156.3 54.4 156.3s2.2-86-36.3-163C505.2 32.8 425.9-12.5 428.2-17z" transform="matrix(.24 .05 0 .44 278.9 97.7)"/>
73
+ <path d="M428.2-17s81.5 90.7 111 154.1c29.4 63.5 54.4 156.3 54.4 156.3s2.2-86-36.3-163C505.2 32.8 425.9-12.5 428.2-17z" transform="matrix(.17 .17 -.06 .33 339 70)"/>
74
+ <path d="M428.2-17s81.5 90.7 111 154.1c29.4 63.5 54.4 156.3 54.4 156.3s2.2-86-36.3-163C505.2 32.8 425.9-12.5 428.2-17z" transform="matrix(.24 .02 0 .4 276.4 128)"/>
75
+ </g>
76
+ <path fill="#ffdf00" stroke="#000" d="M301.2 272.8S265.8 609.4 372 609.4c88.5 0 88.5-53.1 106.2-53.1l-17.7-124z" transform="matrix(-.58 0 0 .62 630.4 -10.2)"/>
77
+ <path fill="#0000c4" stroke="#000" d="M336.6 308.3c0 17.7-35.4 212.6 53.2 265.7 35.4 17.7 88.5-17.7 88.5 0l-17.7-141.7z" transform="matrix(-.58 0 0 .62 630.4 -10.2)"/>
78
+ <path fill="#e10000" stroke="#000" d="M372 343.7c0 17.7-17.7 159.4 35.5 194.9 35.4 35.4 124 25.8 124 25.8l-70.9-132.1z" transform="matrix(-.58 0 0 .62 630.4 -10.2)"/>
79
+ <path d="m456.2 158-94.8 100-1.7-1.6 94.8-99.9z"/>
80
+ <path fill="#cececc" stroke="#000" d="m460.6 184.3 17.7 35.4v17.7c-.8-1.3 0 17.7-17.7 17.7S443 219.7 443 219.7s-17.7 35.4-17.7 70.9 17.7 53.1 17.7 53.1-2.6-36.7 17.7-35.4c20.4 1.2 17.7 17.7 17.7 17.7v35.4h17.8V219.7l17.7-35.4-27.2-53.2-26 53.1z" transform="matrix(-.14 -.14 -.1 .1 553.7 192.2)"/>
81
+ <path fill="#cececc" stroke="#000" d="m557.8 95.7-26.3 70.8 17.7 53.2-35.4-17.7 35.4 53.1v35.5H567V255l35.5-53.1-35.5 17.7 17.8-53.2-26.9-70.8z" transform="matrix(-.1 -.16 -.14 .1 526 183.8)"/>
82
+ <path fill="#e10000" stroke="#000" d="M422.5 137c0 2-2 3.7-4.3 3.7s-4.4-1.7-4.4-3.7 2-3.8 4.4-3.8 4.3 1.7 4.3 3.8zm-6.2 7.9c0 35.8 20.9 187.8 22.6 191.5.1 4.5-4.8 6.4-7.1.9-6.6-17.4-20.8-160-21.3-193.3-.3-13.7 3.7-14.8 8.3-14.5 3.7.2 8.3 3.7 8.3 7.9 0 5-5.8 8.7-10.8 7.5z" transform="matrix(-.4 0 0 .3 596.3 69.8)"/>
83
+ <path fill="#0000c4" stroke="#000" d="M422.5 137c0 2-2 3.7-4.3 3.7s-4.4-1.7-4.4-3.7 2-3.8 4.4-3.8 4.3 1.7 4.3 3.8zm-6.2 7.9c31.5 61.4 48.7 166.7 50.4 170.5.1 4.4-4.8 6.4-7.1.8-2.5-3.3-12.7-100.2-49.1-172.2-.3-13.7 3.7-14.8 8.3-14.5 3.7.2 8.3 3.7 8.3 7.9 0 5-5.8 8.7-10.8 7.5z" transform="matrix(-.38 .1 .15 .3 564 38.2)"/>
84
+ <path fill="#e10000" stroke="#000" stroke-width=".7" d="M453.4 151.5c0 1 1 2 2.1 2 1.2 0 2.2-1 2.2-2s-1-1.8-2.2-1.8c-1.2 0-2.1.8-2.1 1.8zm3 4a1152 1152 0 0 1-11.2 95.8c0 2.2 2.3 3.2 3.5.4 3.3-8.7 10.4-80 10.7-96.6.1-6.9-1.9-7.4-4.2-7.3-1.9.1-4.1 1.9-4.1 4 0 2.4 2.9 4.3 5.4 3.7z"/>
85
+ <path fill="#0000c4" stroke="#000" d="M422.5 137c0 2-2 3.7-4.3 3.7s-4.4-1.7-4.4-3.7 2-3.8 4.4-3.8 4.3 1.7 4.3 3.8zm-6.2 7.9c31.5 61.4 48.7 166.7 50.4 170.5.1 4.4-4.8 6.4-7.1.8-2.5-3.3-12.7-100.2-49.1-172.2-.3-13.7 3.7-14.8 8.3-14.5 3.7.2 8.3 3.7 8.3 7.9 0 5-5.8 8.7-10.8 7.5z" transform="matrix(-.48 .15 .2 .48 623.3 31.6)"/>
86
+ </g>
87
+ <g fill-rule="evenodd" stroke="#000" stroke-width="1pt">
88
+ <path fill="#e10000" d="M478.4 698a53.3 53.3 0 0 0 53.1 0V556.3h-35.4c17.7 53.1 17.7 106.3-17.8 141.7z" transform="matrix(.58 0 0 .62 9.6 -10.2)"/>
89
+ <path fill="#0000c4" d="M513.8 609.5c0 88.5-42.5 108.2-42.5 126 17.7 0 29.5-8.3 42.5-19.7 17.7-17.8 19.4-107.7 17.7-106.3z" transform="matrix(.35 0 0 .7 123.5 -90)"/>
90
+ <path fill="#0000c4" d="M478.4 609.5c-.9 51.7-44.8 99.6-36.5 110.2 9.4 9.5 36.5-21.7 71.9-4 17.7-17.7 19.4-107.6 17.7-106.3z" transform="matrix(.35 0 0 .7 123.5 -90)"/>
91
+ <path fill="#ffdf00" d="M513.8 609.5c0 88.5-40.7 94.4-40.7 118 17.7 0 40.6-12.9 40.7-11.7 17.7-17.8 19.4-107.7 17.7-106.3z" transform="matrix(.35 0 0 .46 112.5 51)"/>
92
+ <path fill="#ffdf00" d="M478.4 609.5c-.9 51.7-43.8 95.7-35.5 106.3 9.5 9.4 35.5-17.8 70.9 0 17.7-17.8 19.4-107.7 17.7-106.3z" transform="matrix(.35 0 0 .46 112.5 51)"/>
93
+ <path fill="#e10000" d="M478.4 698a53.3 53.3 0 0 0 53.1 0V556.3h-35.4c17.7 53.1 17.7 106.3-17.8 141.7z" transform="matrix(-.58 0 0 .62 630.4 -10.2)"/>
94
+ <path fill="#0000c4" d="M513.8 609.5c0 88.5-42.5 108.2-42.5 126 17.7 0 29.5-8.3 42.5-19.7 17.7-17.8 19.4-107.7 17.7-106.3z" transform="matrix(-.35 0 0 .7 516.5 -90)"/>
95
+ <path fill="#0000c4" d="M478.4 609.5c-.9 51.7-44.8 99.6-36.5 110.2 9.4 9.5 36.5-21.7 71.9-4 17.7-17.7 19.4-107.6 17.7-106.3z" transform="matrix(-.35 0 0 .7 516.5 -90)"/>
96
+ <path fill="#ffdf00" d="M513.8 609.5c0 88.5-40.7 94.4-40.7 118 17.7 0 40.6-12.9 40.7-11.7 17.7-17.8 19.4-107.7 17.7-106.3z" transform="matrix(-.35 0 0 .46 527.5 51)"/>
97
+ <path fill="#ffdf00" d="M478.4 609.5c-.9 51.7-43.8 95.7-35.5 106.3 9.5 9.4 35.5-17.8 70.9 0 17.7-17.8 19.4-107.7 17.7-106.3z" transform="matrix(-.35 0 0 .46 527.5 51)"/>
98
+ </g>
99
+ <g fill-rule="evenodd" stroke="#000">
100
+ <path fill="#908f8a" stroke-width="4.5" d="m198.6 78-89.7 35.4 89.7 35.4 44.8-17.7 22.4 17.7 22.4 35.4 22.5-35.4 22.4-17.7H1535V95.7H333l-22.4-17.8c0-17.7 4.7-35.4 22.5-35.4h89.6c0-17.7-44.8-53.1-134.5-53.1-89.6 0-134.5 35.4-134.5 53.1h89.7c17.7 0 22.4 17.7 22.4 35.5l-22.4 17.7z" transform="matrix(.12 0 0 .22 217.8 324.4)"/>
101
+ <path fill="#b74d00" stroke-width="1.8" d="M204.3 95.7H541v17.7H204.4zm0-17.8H541v17.8H204.4zm0-17.7H541V78H204.4zm0-17.7H541v17.7H204.4zm0-17.7H541v17.7H204.4zm0-17.8H541v17.8H204.4zm0-17.6H541V7H204.4z" transform="matrix(.28 0 0 .27 216 334.6)"/>
102
+ <path fill="#908f8a" stroke-width="3.3" d="m423.2 60.2 137.8 124h19.7L443 60.3h-19.7z" transform="matrix(.25 0 0 .27 171.9 315.2)"/>
103
+ <path fill="#908f8a" stroke-width="3.3" d="m423.2 60.2 137.8 124h19.7L443 60.3h-19.7z" transform="matrix(.25 0 0 -.27 171.9 382.2)"/>
104
+ <path fill="#908f8a" stroke-width="3.1" d="M425.2 60.2v124h17.7v-124z" transform="matrix(.28 0 0 .27 159.6 315.2)"/>
105
+ <path fill="#908f8a" stroke-width="3.3" d="m423.2 60.2 137.8 124h19.7L443 60.3h-19.7z" transform="matrix(.25 0 0 .27 216.2 315.2)"/>
106
+ <path fill="#908f8a" stroke-width="3.3" d="m423.2 60.2 137.8 124h19.7L443 60.3h-19.7z" transform="matrix(.25 0 0 -.27 216.2 382.2)"/>
107
+ <path fill="#908f8a" stroke-width="3.1" d="M425.2 60.2v124h17.7v-124z" transform="matrix(.28 0 0 .27 238.4 315.2)"/>
108
+ <path fill="#908f8a" stroke-width="3.1" d="M425.2 60.2v124h17.7v-124z" transform="matrix(.28 0 0 .27 204 315.2)"/>
109
+ <path fill="#908f8a" stroke-width="3.1" d="M425.2 60.2v124h17.7v-124z" transform="matrix(.28 0 0 .27 194 315.2)"/>
110
+ </g>
111
+ <g fill="#ffdf00" fill-rule="evenodd" stroke="#000" stroke-width="1pt">
112
+ <path d="M655.5 396.9c0 88-55.6 159.4-124 159.4s-124-71.4-124-159.4 55.5-159.5 124-159.5 124 71.4 124 159.4zm-17.7 0c0 78.2-47.6 141.7-106.3 141.7-58.7 0-106.3-63.5-106.3-141.7 0-78.3 47.6-141.8 106.3-141.8 58.7 0 106.3 63.5 106.3 141.8z" transform="matrix(.58 0 0 .62 9.6 -10.2)"/>
113
+ <path d="M579.8 250c-14.9-8.1-31.2-12.6-48.3-12.6s-33.4 4.5-48.3 12.5l7 16.4a82.8 82.8 0 0 1 82.7 0z" transform="matrix(.58 0 0 .62 9.6 -10.2)"/>
114
+ <path d="M579.8 250c-14.9-8.1-31.2-12.6-48.3-12.6s-33.4 4.5-48.3 12.5l7 16.4a82.8 82.8 0 0 1 82.7 0z" transform="matrix(.58 0 0 -.62 9.8 479.3)"/>
115
+ </g>
116
+ <path fill="#a7cfff" fill-rule="evenodd" d="M379.6 235.9c0 48.5-27.7 87.8-61.7 87.8s-61.6-39.3-61.6-87.8 27.6-88 61.6-88 61.7 39.4 61.7 88"/>
117
+ <path fill="#afff7b" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M637.8 396.9c1.1 26.6-4.6 39.6-11.9 67.3-1.9 3-11-6.5-16.4-11.2s-7.8 4.2-14.6-3c-6.7-7.4-11 2-16-4.2s-51.3-7-51.3-7.6c4.6-2.2 28.2.2 24.4-11.1-4.3-11.8-31-.4-34.6-15.4-2.5-15-53.6-15.6-57.3-19.2 1.5 5.6 39.8 8 38.9 22.5-.9 6-37.7 7.7-41.3 12.7-3 6.3 29-1.7 30.1 6 0 3.2-4.7 0-21.3 5-8.4 2.5 15.4 10.3 6.4 14.6-9 4.3-28.3 6.2-27.5 8 3 9 44.7 19.6 40.6 21.1-14.8 6.6-22.6 10.9-29.7 14.7a167.9 167.9 0 0 1-31.1-100.2c31.7-11.4 25-13.8 83.6-13.8s78 2.3 129 13.8z" transform="matrix(.58 0 0 .62 9.6 -10.2)"/>
118
+ <path fill="#fff" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M637.8 396.9c-8 0-16.4 3.4-25 3.4-8.7 0-17.5-3.5-26.5-3.5s-19.3 4.6-28.5 4.6c-9.3 0-17.4-4.5-26.7-4.5s-18.6 3.4-27.8 3.4-18.3-3.5-27.2-3.5-17.7 3.5-26.2 3.5-16.8-3.5-24.7-3.5c0-19.5 3-38.1 8.4-55.1 27 2 11-15.7 27-15.7a33 33 0 0 1 25.3 9.8c2.4 0 14.4-11.4 27.9-9.8 13.4 1.6 8.5 27.3 26.4 28.6 9 6.8 14.3 11.1 26.7 13.9 17.7 1.6 68.4-2.5 68.7-.2a188.2 188.2 0 0 1 2.2 28.6z" transform="matrix(.58 0 0 .62 9.6 -10.2)"/>
119
+ <path fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M549.9 474c0-5.7 13.5-9.5 13.5-18.6s-12-9.3-12.4-17.8c-.2-3.5 10.3-7 14.9-7.4s8.5 7.4 8.5 9.1-4.7-4.2-8.6-4.3-12.3.6-12.3 2.3c0 3.4 14.8 7.6 13.7 19-1.1 11.2-12.7 14.6-12.7 18s5 12.8 5 12.8-9.7-7.5-9.7-13.2z" transform="matrix(.2 0 0 .48 217.2 59.5)"/>
120
+ <path fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M549.9 474c0-5.7 13.5-9.5 13.5-18.6s-12-9.3-12.4-17.8c-1-4 11.8-6.6 16.4-6.9s10 8 10 9.6-5.4-5.2-9.3-5.3-14.6.6-14.6 2.3c0 3.4 14.8 7.6 13.7 19-1.1 11.2-12.7 14.6-12.7 18s5 12.8 5 12.8-9.7-7.5-9.7-13.2z" transform="matrix(-.2 0 0 .48 445.8 59.1)"/>
121
+ <path fill-rule="evenodd" d="M333 264.9c0 1.3-.7 2.4-1.5 2.4s-1.4-1.1-1.4-2.5.6-2.4 1.4-2.4c.8 0 1.5 1.1 1.5 2.5m17 9h.4v19.5h-.5zm4.1-1.6h.5V292h-.5z"/>
122
+ <path fill-rule="evenodd" d="M352.6 281.2v-.5l4 .7v.5z"/>
123
+ <path fill="#b74d00" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M497.3 478s26 11.4 31.7 18.2c5.6 6.8 3.4 6.8 3.4 6.8l57.7 2.3c0-3.4 10.2-3.4 12.5-11.4 2.3-7.9 2.3-10.2 2.3-10.2l-18.1 5.7 1-10.2H572l-2.3 10.2-34-1.1L538 461l-6.8 1.1-1 26c-1.2 0-31.8-7.9-33-10.1z" transform="matrix(.58 0 0 .62 7 -9.5)"/>
124
+ <path fill="#fede00" fill-rule="evenodd" stroke="#fede00" stroke-width="1pt" d="M440.5 316.3s37.7-11.2 92.1-10.4 92.1 12.8 91.3 12.8-10.4-18.4-10.4-18.4-38.4-10.5-81.7-11.3c-43.2-.8-80.9 8-80 8.8z" transform="matrix(.58 0 0 .62 9.6 -10.2)"/>
125
+ <path fill="#38a9f9" fill-rule="evenodd" d="m306 169.8 13.6-.2.2 7.9-13.6.3zm-31.2 4.3L270 182l16.2-2-1.3-7.7-10.1 2zm13.7-3 13.6-1.1.6 7.8-13.5 1.2zm48.9-.7-13.5-1-.5 8 13.5.8zm29.2 5 4.9 9.6-14.6-3.6 1.6-7.7 8 1.6zm-11.8-3-13.4-1.7-1 7.8 13.5 1.8z"/>
126
+ <path fill="#ffdf00" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="m532.6 323.5-2.5-13.5-7.6 11.5 2.8-13.5-11.3 7.7 7.6-11.3-13.4 2.8 11.5-7.6-13.5-2.5 13.5-2.6-11.5-7.6 13.4 2.8-7.7-11.3 11.4 7.7-2.8-13.5 7.6 11.5 2.5-13.5 2.6 13.5 7.5-11.5-2.7 13.5 11.3-7.7-7.7 11.3 13.5-2.8-11.5 7.6 13.5 2.6-13.5 2.5 11.5 7.6-13.5-2.8 7.7 11.3L540 308l2.8 13.5-7.6-11.5z" transform="matrix(.58 0 0 .62 9.6 -10.2)"/>
127
+ <path fill="#ffdf00" fill-rule="evenodd" stroke="#000" stroke-width="1pt" d="M547 293.9c0 9.3-6.6 16.8-14.8 16.8s-14.8-7.5-14.8-16.8S524 277 532.2 277s14.8 7.6 14.8 17z" transform="matrix(.57 0 0 .5 18.3 21.8)"/>
128
+ <path fill-rule="evenodd" d="M320.7 170.6c0 .5-1.3 1-2.8 1s-2.8-.5-2.8-1 1.2-1 2.8-1 2.8.4 2.8 1m6 0c0 .5-.9 1-2 1s-2.2-.5-2.2-1c0-.6 1-1 2.1-1s2.1.4 2.1 1"/>
129
+ <path fill="none" stroke="#000" stroke-width="1pt" d="m529.4 297.9.8.8c-1.9-2-1-1.2 1.6 3.2 2.4-.5 3.1-1.4 4.8-2.4" transform="matrix(.56 -.18 .17 .6 -26.7 90.6)"/>
130
+ <path fill="none" stroke="#000" stroke-width="1pt" d="m527.8 304.3.8.8c-1.9-2-1-1 3.2 1.6 4 .5 8.1-1.2 10.5-4" transform="matrix(.58 0 0 .62 8.7 -10.2)"/>
131
+ <path fill="#b7e1ff" fill-rule="evenodd" d="M281.4 194.8s1 8-5.1 18c-6 9.9-5.1 6.4-5.1 6.4s2.8 5.5 2.3 5.5-4.7-5-4.7-5l-5 5.5s4.6-8.5 4.1-8.5-1.4-3-1.4-3l3.7-1.5s5.6-10.4 5.6-9.9-16.7 11.4-16.7 11.4zm3.7 3c-.5 0 2.3 8 4.7 12 2.3 4 2.3 8.9 2.3 8.9l7.9 4-10.2-15.4 6.5 2.4zm0 20.9s5.6 6 6 8 .5 6.4.5 6.4l-2.3-5-3.3 4.5s2.4-7 1.9-7.5-3.7 2.5-3.7 2.5 1.4-4 1.4-4.4 0-3-.5-4.5m-27.9 13.9c1.9-1.5 5.6-2.5 5.6-2.5s-2.3 4-2.8 4-1.8 0-2.8-1.5m64.1-21.8s12.1 7.4 12.1 7.9-7.9-3.5-7.9-3.5zm-21.8-15.5c1 .5 17.7 14.4 17.2 14.4s-7.4-4-7.4-3.4v3.4l-3.8-7.9-.9 3zm4.2 22.4 4.6 9.4 4.7-1s-8.8-8.4-9.3-8.4m14.4-6 .5 9s2.7 2.5 2.7 2-2.7-10.5-3.2-11"/>
132
+ <path fill="#984000" fill-rule="evenodd" d="M182.6 89.5s21-11.6 44.9-20.2a303.8 303.8 0 0 1 54.2-14.4c7 0 19.2 17.8 21.2 17.8s10.1-5 20.3-5 16.1 8 18.2 8h18.2c2 0-6.1-19.8 0-18.8 3 .5 28.8 4.5 52.8 12.2 24 7.8 58 21.6 58 21.6S414.9 98 400 95.9c-2 1 0 13-3 7.7-4.6-1-21.7-3.7-24.7-3.7s-8.7 3.4-16.8 5.4c-8 2-18.2 5-18.2 5l13.2 20.7-16.2 8s-10.1-23.8-14.2-23.8-6 16.8-11.1 15.8c-5-1-7-15.8-11.1-19.8-4-3.9-25.4-5.4-33.5-7.3-8-2-21.1-3.5-28.2-5.5-7-2-14.2 5-17.2 5s4-6 1-7-5 3-7 3-23.3-4-25.3-5 5-4.9 3-4.9z"/>
133
+ <path fill="gray" fill-rule="evenodd" stroke="#772600" stroke-width="3.7" d="M463-65c0 21.2-20.6 38.4-45.9 38.4S371.3-43.8 371.3-65s20.5-38.3 45.8-38.3S463-86.1 463-65z" transform="matrix(.22 0 0 .26 231.6 96.5)"/>
134
+ <path fill="#984000" fill-rule="evenodd" stroke="#772600" stroke-width="5.3" d="M284.7-60c6.7-6.6 15-16.6 36.7-16.6 5-1.7 5-11.7 16.6-11.7 11.7 0 8.3 10 16.7 13.4 8.3 3.3 76.6-3.4 76.6-3.4s6.6 5 6.6 11.7-5 11.6-6.6 11.6-68.3-5-73.3-3.3c-5 1.7-8.3 3.3-20 3.3-11.6 0-15-11.6-23.3-11.6s-16.6-1.7-30 6.7z" transform="matrix(.27 0 0 .32 205.4 100.7)"/>
135
+ <path fill="none" stroke="#772600" stroke-width="3.5" d="M487.9-76.6h26.6c9.6.1 12.9 3 21.7 3.3h23.3c8.5-.3 13-2.3 21.6-3.3 14.5-.2 9.6-1.3 6.7-10-2.6-6.5-3-9.6-6.7-13.3-1.4-8-4.6-10.8-5-20-1.5-7-4.3-11.7-1.6-20 3.8 5.7 5.3 8 15 8.4 10 0 13.9-.3 20 3.3 4.6 4.9 10.8 3.3 20 3.3 7.6 1.4 8.9 5.3 14.9 8.3 7.1 4 11.7 5 21.6 5 8 1.5 15 2.6 20 5 4.3 5.1 11 6.4 20 6.7 5 0 9-.5 13.3-1.7 7.7.4 15.5 0 25 0 6.2 7.2 7.6 9.9 18.3 10 7.4 5.2 13.6 6 20 8.3h25c9 .7 11.8 4.4 20 6.7a200.9 200.9 0 0 0 21.6 8.3 108 108 0 0 0 21.7 1.7c6.1 3.2 13.6 3.4 18.3 6.6 6.9 1.5 16.3 3.3 21.6 5 8.8 1.2 12.2 4 20 5 6.7 2-2.2 3.6-6.7 5-9.8-.3-10.5-4-20-5-5-2.9-12.6-2.5-20-5h-1.6c6.6 4 13 6.5 10 13.4-8.5 0-15.4-1.1-23.3-1.7-8.4-1.6-12.2-3.3-21.6-3.3 9.4-2.3 11.8.2 18.3 3.3 2.4 8-2.8 5-11.7 5-7.6-2.7-12.2-6-21.6-6.7h-20c9.9.4 12 4.1 18.3 8.4.5 2.6-.1 2.4-5 3.3-5.2-4.5-11.9-6-20-8.3-7.9-.3-16.2-1-23.3-3.4-4.9-.3-4.1-6.1 6.7 3.4 6.5 3.8 8.8 7 8.3 10-8.6-2.2-12.8-5.6-18.3-8.4a61.3 61.3 0 0 0-23.3-3.3c-8.6-2.3.9-3.6 6.6 5 12.4 8.8-1.6 5-6.6 3.3-7.5-2.1-15.3-5.2-21.7-6.6-5-1.5-9.4-2.9-15-3.4 8.7.8 11.6 3.9 15 10 8.8 6-.4 3.1-8.3 1.7-5-4.4-11.5-6.7-15-11.7-8.3-4.1-8.6-9-3.3 1.7 1.3 3.4 1 10.8 1.6 11.7-6.1-6.7-4.8-8.4-11.6-8.4-4.7-3.2-11.5-5.7-15-10-6.4-.6-6.8-2.9-13.3-5 5.3 6.3 12.4 12.5 16.6 18.4 7.6 4.2 9.7 8 15 11.6 2.1 3.7 8 6.7 1.7 1.7-7.2-7-12.5-8.7-23.3-13.3-6.2-5-8.4-7-15-11.7-9-2.9-5.5-4.5 0 5 6.3 5.8 11.1 12.2 16.6 16.7a67.8 67.8 0 0 0 15 13.3c1.5 2.2 6 2.6 0 3.3-5-4.6-12.4-7.5-18.3-11.7-8.3-2.3-12.2-6.6-18.3-11.6-4-5.9-10.4-10.4-15-15-9.6-3.8 1.9 3.6 5 8.3 2.1 6.1 4.8 11 6.6 16.7 2.8 5.5-8.4-1.3-11.6-3.3a57 57 0 0 0-21.7-8.4 298 298 0 0 0-20-3.3c-7.5-2 4.1 4.8 8.4 11.7 8.4 7.9-8.3 1.4-13.3 0a125 125 0 0 0-25-1.7c-10.7.6-3 2 0 6.6 3.3 2.6 5.6 8 5 10-7-1-13-3-21.7-3.3-7 2.3-15.3 1.7-23.3 1.7-.3 4.2 1.5.6 5 5 5.8 2.3 9.6 5.1 8.4 8.3h-48.3c-5.3 1.4 1.1.7 5 6.7-2.2 5.4-5 3.3-11.7 3.3-4.5-1.8-13.6-2.6-18.3-5-4.7 0-4.3-1.2-8.3-1.7 14 10 7 7.5 15 15 1.3.5 4.5 1.7 1.6 1.7M371.3 73.3c-1 0-3.2-5.4-6.6-10-2.4-6-5.4-2.6-8.4-11.7.4-9.4.7-11 0-20-6.8-4.8-9.7-6.2-15-15-8.4-7 1.3-19 2.9-27.8-7.4-1.6-11 11.5-22.3 16.2-8.2 5.5-1-11.4-5-21.2-2.7-13.9-10.8 7-13.8 12.9-5.5 3.7-7.2 8.5-15 1.6 0-5.1 4.9-19.5 2.8-22.3-7.8 3.9-18 15.5-26.1 17.3-8.2-1.7 1.7-14.8 1.7-24.5-3-1-14.7 25.8-19.5 26s-2.7-26-5-25.4c-3.5 5-10.6 15.4-15.5 19-9.5-1.3 1.4-17.5 2.8-23.5 1.6-7.2-8.9 13.8-14.5 15.1-4.1 3.6-12.2 6-15 6.7 3.2-6.2 19-18.7 18-22.3-9.3.3-23.4 12.5-31.3 14-5.2 0-12.4 1.7-13.3 1.6.4-8 19.4-14.6 22.4-19.5-9.3 1.5-27.2 9.7-32.4 16.2-6.2 1.3-14 3-20 0 .9-7.5 14.9-22 18-26.8-8.5 3.7-12.7 6.6-21.7 8.3-1.7 1.7-6.5 5.3-5 1.7 2.7-7 6.7-10 10-15-7.5 1.4-10.3 5.7-18.3 10-5.1.2-19.7 14.9-24.6 15.1a69.1 69.1 0 0 1-28.3 13.3c-7.6 1.4-11.3 3-15 6.7 3.8-6.7 9.6-13 15-16.6a29.8 29.8 0 0 1 15-13.4c1.9-2.3 7.1-2.9 1.6-3.3-4.7 4.2-12.7 9-16.6 11.7-5.1 3.2-11 6.4-13.4 5 2.7-7.2 7.5-9 11.7-15 8.8-5.6 0-2-6.7 0-4.3 3.8-12 6.7-18.3 10-7 1.8-11.7 6-20 8.3 0 2.4 2.4-4.3 3.4-6.7 6.8-7.4 8.6-9.5 16.6-11.6 2-2.9 4.4-1.7-1.6-1.7-4.6 4-10.8 6.2-16.7 10-5.9 1.3-13.6 1.7-21.6 1.7-10.4 1.2-9.5 2 0-3.4 5.3-5 9.7-3.7 10-10-6.3 4.6-14 8-21.7 11.7-6.4.2-8.1 1.7-15 1.7 3.3-3.4 5.3-7.7 10-10 7-7.7-4.4-1.5-6.7 0h-25c-4.4 5.6-.2 0 3.4-3.4 4.3-2.2 8.8-5.1 8.3-6.6-5 4.3-10.7 6.3-15 10-4.6 1.4-10 2-10 3.3 3.7-5.3 9.6-8.6 13.4-13.3 5.6-1.2 10.4-3 11.6-5h-23.3 16.6c8.5 0 15.7-.8 23.4-1.7 13.2-2.2-1.2-3.3-8.4-3.3-1.3-2.6 4.2-4 10-5C-6.7-69-.4-71.1 5-73.3a45.2 45.2 0 0 0 13.3-6.6c-5 .2-5 1.4-10 1.6 7.5-.5 12.8-1.6 21.7-1.6a239 239 0 0 0 21.6-8.3c3-3.6 4.2-3.4-3.3-3.4 6.7-2.1 16.2-3.2 21.6-5a94 94 0 0 0 20-6.6c4.9-3.3 7.7-7.2 13.3-10 6.5 4.4 6.6 5 18.3 5 9.4-.1 15.2-2.4 20-6.7 7.2-2 8.5-5.4 16.7-6.6a134 134 0 0 0 23.3 1.6c8-2.1 15.7-6 21.6-10 5.1-2.5 11.2-6.1 16.7-8.3 6 3.1 10.8 5.6 18.3 6.7 7.7-1.2 11.8-5 18.3-6.7a28 28 0 0 1 15-8.3c9.7-4.8 9 1.5 13.3 6.6 5 5.2 11.4 2.7 18.3 5 3.9 6 6.7 10 11.7 13.3 3.9 4.8 8.5 6 16.7 6.7 3 4 .6 6.8 6.6 8.3 2.4 2.6 6.5 3.6 10 5" transform="matrix(.27 0 0 .32 205.4 104.9)"/>
136
+ <path fill="none" stroke="#782600" stroke-width="3.1" d="M468.7 30.8v.8c0-2.3 0-1 1.7 3.4.6 3.6-.8 3.2-2.5 5.8-.3 3.7-.8 6.4-.8 10.8-.6 3.6-2.6 7-4.2 10-1.6 3.1-8.5 4.9-8.3 9.2-4 1.1-4.1-1.5-4.2-5.9-2.4-2.7-3.2-6.4-5-10-1-3.4-3.4-6-5-10-2.4-3.7-4.5-4.8-6.6-9.1-.9-2-.7-4.6-2.5-5.8-2.7-3.5-4.5-4-9.2-4.2-3.6.8-5 2.4-8.3 3.3-2.6.9-7.6.6-10.8 1.7-.8 1.3 1.6 2 2.5 5-2.2 1.8-3 4.9-4.2 7.5-2 2.5-3.3 3.7-4.2 7.5 1.4 2.3.2 5.4-1.6 7.5-.6 3.8-2.5 5.9-3.4 9.1-2.6 1.9-3.6 3.6-5.8 6.7-1.9 2.7-3.6 2.5-8.3 2.5-3.7-1-4.2-3-7.5-4.2-.3-1-.6-1.3-1.7-1.6" transform="matrix(.27 0 0 .32 205.4 104.9)"/>
137
+ <path fill="#812e00" fill-rule="evenodd" d="M307.6 125.5s-.4 5-3.6 8.3-9.8 7.1-9.8 7.1 8.9-4.2 9.8-3.3c1 1-5.7 8.3-5.7 8.3s8.7-7.7 9.8-7.7 3.6 7.5 4.6 7.3c.9-.2-2-9.5-1.6-11 .4-1.4 0-9.3 0-9.3l-3.4.3zm20.5-.6s-.4 5.3-3.6 8.8-9.8 7.6-9.8 7.6 8.9-4.5 9.8-3.5c1 1-5.7 8.8-5.7 8.8s8.7-8.2 9.8-8.2 3.6 8 4.6 7.8c.9-.2-2-10.2-1.6-11.7.4-1.6 0-10 0-10zm-28.7-48c0 .9-1 1.7-2.1 1.7s-2.2-.8-2.2-1.8 1-1.8 2.2-1.8 2.1.8 2.1 1.8z"/>
138
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-ee" viewBox="0 0 640 480">
2
+ <path fill="#1791ff" d="M0 0h640v160H0z"/>
3
+ <path fill="#000001" d="M0 160h640v160H0z"/>
4
+ <path fill="#fff" d="M0 320h640v160H0z"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-ee" viewBox="0 0 512 512">
2
+ <path fill="#1791ff" d="M0 0h512v170.7H0z"/>
3
+ <path fill="#000001" d="M0 170.7h512v170.6H0z"/>
4
+ <path fill="#fff" d="M0 341.3h512V512H0z"/>
5
+ </svg>
@@ -0,0 +1,38 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="flag-icons-eg" viewBox="0 0 640 480">
2
+ <path fill="#000001" d="M0 320h640v160H0z"/>
3
+ <path fill="#fff" d="M0 160h640v160H0z"/>
4
+ <path fill="#ce1126" d="M0 0h640v160H0z"/>
5
+ <g fill="#fff" stroke="#c09300" transform="translate(-40)scale(.8)">
6
+ <path stroke-linejoin="round" stroke-width="1.3" d="m450.8 302.4 68.5 63.6-4.9-115.5c-.7-17.5-15.9-13.5-27-7.2-11.1 7.2-24 7.2-37.4 2.5-13.5 4.7-26.3 4.7-37.4-2.5-11-6.3-26.3-10.3-27 7.2L380.7 366z"/>
7
+ <path id="eg-a" fill="#c09300" stroke="none" d="m393.5 246.5-4.8 112.3-8 7.2 4.9-115.5a24 24 0 0 1 7.9-4m9.6 8-4 94-8 8.2 4.8-108.5c1.6 1.6 6.3 5.5 7.2 6.3m8.7 7.2-3.1 78.4-6.5 6.3 4-89.4c1.6 1.5 4.8 3.8 5.6 4.7m9.5 4-3.1 66.8-6.3 5.1 3.1-74.3c1.6.7 4.7 2.4 6.3 2.4m8.8 0-2.3 55.7-6.5 6.3 2.5-61.3c1.5 0 5.6 0 6.3-.7"/>
8
+ <use xlink:href="#eg-a" width="100%" height="100%" transform="matrix(-1 0 0 1 900 0)"/>
9
+ <path fill="#c09300" stroke-width="1.1" d="m453.2 315 9.6 43.8-3.2 3.2-3.3-2.5-5.4-39 2.3 39-3.2 4-3.1-4 2.3-39-5.5 39-3.3 2.5-3.2-3.2 9.6-43.7h6.4z"/>
10
+ <g id="eg-b" fill="none" stroke-linejoin="round" stroke-width="1.3">
11
+ <path fill="#fff" stroke-width="1.2" d="m428.5 295.8-19.1 67.7 26.3 4 11.1-50.9z"/>
12
+ <path d="m422.2 319 2.3 5.5 12.4-11.8"/>
13
+ <path d="m430.8 305 2.6 24.3 7.9-10.4m-3.2 4 4.3 15m1.7-5.5-8.7 13.2m2.7 13.2-2.8-13.2-2.4-13.4-5.9 7.9-2.5-9.1-8.2 8.4 4.1 15.2 5.8-9.4 3.1 9.6 6-9.2"/>
14
+ <path d="m415 362 5.3-7.5 3.4 11.5 4.8-8 3.1 9.6"/>
15
+ </g>
16
+ <use xlink:href="#eg-b" width="100%" height="100%" transform="matrix(-1 0 0 1 900 0)"/>
17
+ <g stroke-linecap="round" stroke-linejoin="round" stroke-width="1.3">
18
+ <path stroke-width="2.4" d="M450 393.8c20 0 39-1.6 50.2-4.7 4.7-.9 4.7-3.3 4.7-6.5 4.8-1.6 2.4-7.2 5.7-7.2-3.4 1-4-5.5-8-4.7 0-5.6-5.7-6.3-10.4-4.7-9.5 3.1-26.3 3.9-42.2 3.9-16-.8-32.6-.8-42.2-4-4.7-1.5-10.3-.8-10.3 4.8-4-.8-4.7 5.6-8 4.7 3.3 0 .8 5.7 5.6 7.2 0 3.2 0 5.6 4.8 6.5 11 3.1 30.2 4.7 50.1 4.7"/>
19
+ <path d="M422.9 363.5c6.4.9 13.6 1.6 19.2.9 3.2 0 5.5 5.5-.9 6.3-5.5.7-14.3 0-19-.8a231 231 0 0 1-18.4-4c-5.6-2.4-1.6-7 1.6-6.4a105.3 105.3 0 0 0 17.5 4m54.2 0c-6.4.9-13.6 1.6-19 .9-3.4 0-5.7 5.5.7 6.3 5.6.7 14.3 0 19-.8 4-.8 12.8-2.3 18.4-4 5.6-2.4 1.6-7-1.6-6.4a105.2 105.2 0 0 1-17.5 4"/>
20
+ <path d="M403 360.4c-4.8-.9-7 4.7-5.5 7.9.7-1.6 4-1.6 4.7-3.2.9-2.4-.7-2.4.9-4.7zm19.2 14.7c0-3.2 3.1-2.8 3.1-6 0-1.5-.8-4-2.4-4a3.4 3.4 0 0 0-3.2 3.2c-.7 3.1 2.5 3.6 2.5 6.8m22.7-9.1c4.7 0 4.2 6.3 2 9.5 0-2.3-4-3.2-4-4.8 0-2.4 3.6-2.4 2-4.7m52-5.6c4.9-.9 7.2 4.7 5.6 7.9-.7-1.6-4-1.6-4.7-3.2-.9-2.4.7-2.4-.9-4.7M478 375c0-3.2-3.2-2.8-3.2-6 0-1.5.8-4 2.4-4a3.4 3.4 0 0 1 3.2 3.2c.7 3.1-2.5 3.6-2.5 6.8zm-23-9c-4.7 0-4.2 6.3-2 9.5 0-2.3 4-3.2 4-4.8 0-2.4-3.6-2.4-2-4.7"/>
21
+ <path stroke-width=".9" d="M404.7 362c1.6 0 4 .7 4.7 1.6zm7.9 2.4c.8 0 4 .7 5.5 1.6zm28.6 3.2c-1.5 0-4.7 0-5.5.7l5.5-.8zm-8.7 0c-.9-.9-4-.9-5.6 0zm62.8-5.6a8 8 0 0 0-4.7 1.6zm-7.8 2.4c-1 0-4 .7-5.6 1.6zm-28.7 3.2c1.5 0 4.7 0 5.6.7l-5.6-.8zm8.7 0c.9-.9 4-.9 5.6 0z"/>
22
+ <g fill="#c09300" stroke="none">
23
+ <path d="M403.3 374.6c-.5-.1-.8-.6-.6-1 .1-.7.6-1 1-.8.4 0 .9.6.9.8l-.4.7-.2.1c0 .2-.4.2-.7.2m55 3.9c-.2 0-.6-.5-.6-.7 0-.4.6-1 1-1l.8.4c.3.3.3.9-.1 1.2-.2.2-.8.2-1.1 0zm.3 2.5c-.4-.2-.5-.4-.6-.8 0-.5 0-.6.5-.9l.4-.2.4.2c.4.2.7.4.7.8 0 .3-.3.6-.7.8-.3.2-.4.2-.7 0z"/>
24
+ <path d="M407.8 370c-.4 0-.9.4-1.2.6-.6.1-1.4.5-2 0-.6-.1-1.4 0-1.5.8.1.7 1 1 1.6.6.4-.5 1.5-.9 1.7 0-.5.8-.4 1.7-.8 2.4 0 .5-.3.9-.5 1.3-.5 0-1 0-1.4.3a2 2 0 0 0-1.6.8c-.4.6-.8 1.2-.9 2 .1.6 1 .8 1.6.9l2 .6 3.2.9c1.6.5 3.2.7 4.8 1.1l.5.1c.7.2 1-.5 1-1l1-3.6c.2-.5.5-1.5-.4-1.3-.5.3-1 .8-1.6.8-.9 0-.4 1 0 1.3 0 .6-.2 1.3-.5 1.8-.6.3-1.2 0-1.8-.2-.5 0-1.7-.3-1.2-1l.5-1.8c.3-.6.3-1.3.5-2-.4-.7-1 .3-1.5.4-.4.2-1.6.3-1 1 .6.4.2 1.1 0 1.7 0 .7-.8 1-1.4.7-.6 0-1.5-.5-1-1.1l.5-1.8.7-2c0-.7.3-1.2.6-1.8 0-.7.5-1.3.5-2 0-.3-.2-.4-.4-.4zm-3.7 7.3a.3.3 0 0 1 .3 0c.2.2.2.4 0 .6l-.3.2c-.5 0-.6-.1-.6-.3 0-.1 0-.2.3-.3a1.4 1.4 0 0 1 .4-.2zm-1 5c-.5-.4-.4-.7.3-1.3.4-.2.5-.2.9.1.6.5.6.8 0 1.3-.2.2-.3.2-.5.2-.3 0-.4 0-.7-.2zm3 1a.9.9 0 0 1-.6-1.1c.2-.4.3-.5.9-.5.7 0 .8.1.9.7 0 .4 0 .5-.3.7a1 1 0 0 1-.8.2zm89.2 0c-.2-.1-.3-.2-.3-.5 0-.4.2-.7.8-.9.6-.3 1-.3 1.2.2.3.6.3.8-.1 1.2-.2.3-.3.3-.8.3s-.6 0-.8-.2zm-85 1.2c-.4 0-.6-.4-.6-.8 0-.3 0-.4.2-.6l.6-.2.6.1c.5.4.6.8.3 1.2-.3.4-.6.4-1.2.3zm21.8 1-.2-.3c0-.6 0-1.1.2-1.7.1-.5 0-1 .2-1.5l.4-2.8c0-.5 0-1 .2-1.4.1-.8 0-1.5.2-2.2 0-.3.3-1 .6-.6.4.6.9 1 1.4 1.5.4.3 0 .7-.3.8-.4.1-.5.6-.5 1l-.2 1.2c0 .7 0 1.3-.2 2l-.1 1.8-.2 1.2c0 .4 0 .9-.4 1.1-.3.2-.8.2-1-.1zm29.7-9.8-1.3 1.2c-.6.5.5.7.6 1.1.2.6.2 1.2.2 1.8.2.6.3 1.1.2 1.7 0 .7-.8.5-1.2.9-.5.2-.7.7-1 1a4.2 4.2 0 0 0-.4 1.6c0 .5-.3 1 0 1.4l.1.2h.5l1.5-.1c1.2-.2 2.5-.2 3.7-.3l2.2-.2c.6.1.9-.5.9-1-.4-.7-.1-1.4-.4-2-.2-.8-.1-1.5-.2-2.2 0-.6-.7-.8-1-.4-.4.4-1 .5-1.2.9-.3.6.6.6.8 1l.1 1.5c.1.6-.5.6-1 .7-.5.2-1.2.3-1.5-.3-.2-.5-.2-1-.2-1.5 0-1-.3-1.8-.3-2.7 0-1-.3-2.1-.3-3.2 0-.5-.1-1.2-.8-1.1m-.6 8.2h.3v.8l-.3.1a3.3 3.3 0 0 1-.4.1 2.5 2.5 0 0 1-.2 0c-.2-.2-.2-.5.1-.8zm-30-9.2c-.3 0-.8.7-1.2.6-.9.1-.8 1-.1 1.3v.8c.1.8-.4 1.5-.3 2.3 0 .8-.3 1.7-.3 2.6-.3.9-.3 1.8-.4 2.7-.1.8-.7.5-1.2.3v-1c.1-.9-.5-1.1-1.2-1.2-.7 0-1-.5-.8-1.1.3-.4 1-.3 1.5-.3 1 .2.9-1.1.4-1.6-.4-.6-1.2-1-1.4-1.6 0-.8-.5-1.7-1.2-2.1-1.1-.1-2 .8-2.3 1.8-.5 0-1 .2-1.4.4-.7.2-1.7 1.4-.7 1.9.5.1 2.2.5 1.4 1.2-.4.8-1.2.8-1.9.6-.7 0-1.5-.4-1.5-1.2-.1-.8-.1-1.6-.4-2.3-.2-.8-1.1-.6-1.2.2-.7.5-.6 1.4-.1 2 .3.7 0 1.6-.3 2.2-.2 1-1.2 1-1.9 1.2-.3.2-1.6 0-1.1.7a4 4 0 0 0 2.4.3c.8 0 1.5-.7 2-1.4.5-.5 1.4-.2 2.2-.2.7 0 1.5.5 2.3.1.2-.5 1.2-1.5 1.5-.5 0 .9.7 1.3 1.5 1.2.9 0 .5.6.5 1.2 0 .9.7 1.4 1.5 1.8h.8c.7-.3 1.5-.6 1.8-1.4.3-.7.3-1.5.5-2.2.2-1.1.4-2.3.4-3.4.3-1 .2-2.1.4-3.2l.3-2.3c0-.5-.2-.5-.5-.4m-6.7 4.1c.1 0 .2.2.2.5 0 .4.2.7.5.8v.3l-.8.2c-.5 0-.9-.2-1.2-.5l-.2-.2.3-.2.5-.5c.3-.3.5-.4.7-.4m66-7.9a8.4 8.4 0 0 0-1.7.3c-1 0-1.5 1-.5 1.6.6 1.5 1.5-.4 2.5-.2 1.4.2 1.5 1.8 1.8 3 0 1.1.4 2.2.7 3.3 1 1.1-.7 1.8-1.4 1-.6-.7-2-1.5-2.7-.6-.9.4-1 1.6-1.7 2-1.2.3-1.3-1.2-2-1.8-.6-.9-1.7-1-2.6-1.2-.4-.9-.2-2.4-1-3-.8.3-2.2 1.7-1 2.4 1 1-.5 1.4-1 2-.8.9-1 2-1 3-1.3.7-1.5-.8-1.7-1.7 0-1.1-1-.8-1.7-.4-1 .4-1.4 1.3-2 2v2c.2.9 1.2.5 1.8.4 1-.4 1.4.7.6 1.3-.6.6-2.2.3-2 1.4h1.6c1-.3 2.2-1.1 2.3-2.3.2-1 1.7-.9 2.5-1.1 1-.3 2.3-.4 2.6 1 .7.7 2.2 1.5 3 .5a2.4 2.4 0 0 0 1.1-2.3c-.1-.8 1.3-.8 1.7-.3.5.8 2.1.6 2.9 0 .8-.5 1-1.6 2.2-1.6l5.4-1.5c1.4-.3-.2-1.2-.6-1.8-1-.5-2 1.7-3.2.6-1-.7-.9-2-1.2-3.1-.3-1.4-.2-3-1.2-4-.6-.7-1.6-.9-2.5-.9m-6.8 9.5c.1 0 .3 0 .5.2.4.2.7.6.7 1 0 .2 0 .2-.3.3l-.5.2c-.2 0-.7-.3-.7-.5v-.4c-.2-.4-.2-.4 0-.6zm6.5.4c.4 0 .6 0 .8.3.1.4 0 .6-.4.8l-.5.2-.4-.3c-.2-.1-.3-.2-.3-.4 0-.3.4-.6.8-.7zm-9 0c.2 0 .3 0 .4.2.2.2.3.3.3.6v.6c0 .3 0 .2-.6.2s-.7 0-.7-.6c0-.4 0-.5.3-.7.1-.2.3-.2.4-.2zm-5.4 1.5a.6.6 0 0 1 .4.4c0 .3 0 .5-.2.6-.3.1-.8.2-1 0a.6.6 0 0 1 0-.1c-.2-.1-.2-.2 0-.3v-.1l.2-.3a.5.5 0 0 1 .6-.2m9.2 1.2.5.1v.6h-1.2l-.1-.2c0-.2 0-.3.2-.4zm-17.1 4.8c-.1 0-.3-.1-.1-.2.1-.3.5-.4.8-.6a3.4 3.4 0 0 0 1.4-1c0-.4.4-.6.4-1l-.1-1.4a1.8 1.8 0 0 0-.8-1c-.3-.1-.7-.2-.8-.6 0-.3.3-.6.4-.9l.6-1.2c.3-.3.7 0 .8.2l.5 1c.3.3.5.6.6 1 .2.4.4.7.4 1l.2 1.3c0 .5 0 1.1-.2 1.6l-.6.8c-.3.3-.6.6-1 .7-.3.1-.5.4-.9.4H468zm-6.9.4c-.2-.2-.3-.3-.3-.6s0-.3.3-.6c.4-.4.6-.4 1.4 0 .7.4 1 .4 1 .1.1-.2.5-.5 1-.5a.8.8 0 0 1 .5.2c.2.2.3.3.3.7 0 .5 0 .5-.3.8-.3.2-.3.2-.7.2a.9.9 0 0 1-.8-.6c0-.2 0-.3-.2-.1l-.2.1c-.2 0-.6.3-.8.5l-.5.1c-.4 0-.4 0-.7-.3m-19.8-8.9c-.7 0-1.4.6-1.5 1.3.2.7.8 1.5.4 2.2.3 1-.8 1.4-1.5.9-.4-1-.6-2-1.3-3-.8-.2-1.1 1.1-1.7 1.6.3.7 1.1 1.4 1.2 2.3.2 1-.4 2-1.1 2.4-.7.7-1.7.5-2.5.6-1 .6.7.8 1.2.8 1 .1 2.1 0 3-.8.7-.3.6-1.7 1.5-1.8l4.8.3c.8.2 2.1-.1 2.7.5 0 1 1 1.8 1.9 2.2.5.2 1-.5 1.5-.6 1-.3.7-1.5 1.3-2h5c.2 0 .3-.5.6-.7l-.2-1.9c-.3-.8 0-1.8-.5-2.5-.9-.2-1.6.5-2.4.6-1 .4-1.7 1.3-1.8 2.3-.5.9-1.4-.2-1-1l-.1-1c-.5-.5-1.4-.3-2.1-.4l-3-.2c-1 0-1.9.1-2.7-.1-1 0-1-1-1-1.8a1 1 0 0 0-.7-.2m2 3.7 1 .1h1.3c1 .2 2 .2 3 .2.2 0 .4.2.6.4v2c0 .3 0 .7-.2.8a.7.7 0 0 1-.2.2 1 1 0 0 1-.7-.5v-1.4a1.3 1.3 0 0 0-.7-.3l-2.6-.1-2-.1c-.3-.1-.7 0-.9-.4-.2-.2.1-.6.4-.7a2.3 2.3 0 0 1 1-.2m11.3.3c.1 0 .2 0 .2.3l.2.5c0 .1 0 .2-.2.2-.5.2-1 .2-1.2 0 0-.1 0-.5.2-.6z"/>
25
+ </g>
26
+ </g>
27
+ <path stroke-width="1.1" d="M450 327.2c32.6-25 29.8-61.8 29.8-61.8l-2.5.2c-6.9 0-23.2-4-27-8.9-4 4.5-20.8 9-27.6 9l-2.5-.3s-2.9 36.7 29.8 61.8z"/>
28
+ <path stroke-width=".9" d="M477.2 268h-.8c-6.2 0-20.6-3.1-26.2-7.9-5.8 4.4-20.5 8-26.6 8a4.7 4.7 0 0 1-.8-.1 73.1 73.1 0 0 0 2.6 18.7 71 71 0 0 0 24.6 37.1 71.2 71.2 0 0 0 24.6-37.2 73.1 73.1 0 0 0 2.6-18.6z"/>
29
+ <path fill="#c09300" stroke="none" d="M439.4 265a62.2 62.2 0 0 1-16.6 3l.1 4.1a72.8 72.8 0 0 0 2.5 14.5 71 71 0 0 0 14 26.8zm20.6 0v49.2a71.1 71.1 0 0 0 14.6-27.6 73 73 0 0 0 2.5-14.5l.1-4h-.8c-3.8 0-10.4-1.2-16.4-3.2z"/>
30
+ <g stroke-width="1.3">
31
+ <path stroke-width="1.2" d="M462.3 253c.7.1-.9-3.5-.9-3.5 1.8 1.8 8.4 2.3 8.4 2.3-4-1.8-8-15.1-7.5-25.8.4-10.6-1.5-14.8-3-16.4-2-2-8.5-3.8-12.7-4-2.5-.1-2 1.8-2 1.8-4.5-1.1-9-1.6-11-.2-1.8 1.2-2.2 7.5-.8 6.4 3.3-2.7 6.2-.2 8.2 2.7 1.8 2.5 1.7 9.7-.9 18.2a60 60 0 0 1-10 17.7c4 0 9.6-3.5 9.6-3.5l-1.3 5.5c4.2-2 7.5-5.1 7.5-5.1l4 4.2c1.3-1.8 4-4.2 4-4.2s3.3 3.5 8.4 4z"/>
32
+ <path fill="none" d="M446.1 227.6s-2.2 16.4-6.4 21m10-21.5s-1 16.7-3.8 22m6.9-21.3s0 18.2 1 21.3m3-20.4s.8 15.3 4.6 20.8"/>
33
+ <path fill="#c09300" stroke-width=".3" d="M442 219.6a8 8 0 0 0-1-3.3c-2-3-4.9-5.4-8.2-2.7 0 0 1.1-3.5 3.6-3.6 1.8-.1 6.1 1.4 9.9 7.8 0 0-2.8-.6-3.5 0-1.2 1-.7 1.8-.7 1.8z"/>
34
+ <path fill="#c09300" stroke-width=".3" d="M432.4 209.3c.3-1 .7-1.8 1.3-2.1 2-1.4 6.4-1 10.9.2 0 0-.4-1.9 2-1.8 4.2.2 10.6 2 12.6 4a7.9 7.9 0 0 1 1.5 2.4c-1-1.4-3.8-1.3-4.5-1.2-1 .1-1.7 0-3.1.4-.7.2-1.7.4-2.3.8-.4.4-.8 1.6-1.4 1.6-1 0-1-.2-1.3-.5-.3-.5-.5-1.1-.9-1-1 .1-2.8-.7-5-2.5-2.3-1.8-3.2-2.2-6-2-3 .2-3.8 1.9-3.8 1.9z"/>
35
+ <circle cx="448.8" cy="210.7" r="1.2" stroke="none"/>
36
+ </g>
37
+ </g>
38
+ </svg>
@@ -0,0 +1,38 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="flag-icons-eg" viewBox="0 0 512 512">
2
+ <path fill="#000001" d="M0 341.3h512V512H0z"/>
3
+ <path fill="#fff" d="M0 170.7h512v170.6H0z"/>
4
+ <path fill="#ce1126" d="M0 0h512v170.7H0z"/>
5
+ <g fill="#fff" stroke="#c09300" transform="translate(-128)scale(.85333)">
6
+ <path stroke-linejoin="round" stroke-width="1.3" d="m450.8 302.4 68.5 63.6-4.9-115.5c-.7-17.5-15.9-13.5-27-7.2-11.1 7.2-24 7.2-37.4 2.5-13.5 4.7-26.3 4.7-37.4-2.5-11-6.3-26.3-10.3-27 7.2L380.7 366z"/>
7
+ <path id="eg-a" fill="#c09300" stroke="none" d="m393.5 246.5-4.8 112.3-8 7.2 4.9-115.5a24 24 0 0 1 7.9-4m9.6 8-4 94-8 8.2 4.8-108.5c1.6 1.6 6.3 5.5 7.2 6.3m8.7 7.2-3.1 78.4-6.5 6.3 4-89.4c1.6 1.5 4.8 3.8 5.6 4.7m9.5 4-3.1 66.8-6.3 5.1 3.1-74.3c1.6.7 4.7 2.4 6.3 2.4m8.8 0-2.3 55.7-6.5 6.3 2.5-61.3c1.5 0 5.6 0 6.3-.7"/>
8
+ <use xlink:href="#eg-a" width="100%" height="100%" transform="matrix(-1 0 0 1 900 0)"/>
9
+ <path fill="#c09300" stroke-width="1.1" d="m453.2 315 9.6 43.8-3.2 3.2-3.3-2.5-5.4-39 2.3 39-3.2 4-3.1-4 2.3-39-5.5 39-3.3 2.5-3.2-3.2 9.6-43.7h6.4z"/>
10
+ <g id="eg-b" fill="none" stroke-linejoin="round" stroke-width="1.3">
11
+ <path fill="#fff" stroke-width="1.2" d="m428.5 295.8-19.1 67.7 26.3 4 11.1-50.9z"/>
12
+ <path d="m422.2 319 2.3 5.5 12.4-11.8"/>
13
+ <path d="m430.8 305 2.6 24.3 7.9-10.4m-3.2 4 4.3 15m1.7-5.5-8.7 13.2m2.7 13.2-2.8-13.2-2.4-13.4-5.9 7.9-2.5-9.1-8.2 8.4 4.1 15.2 5.8-9.4 3.1 9.6 6-9.2"/>
14
+ <path d="m415 362 5.3-7.5 3.4 11.5 4.8-8 3.1 9.6"/>
15
+ </g>
16
+ <use xlink:href="#eg-b" width="100%" height="100%" transform="matrix(-1 0 0 1 900 0)"/>
17
+ <g stroke-linecap="round" stroke-linejoin="round" stroke-width="1.3">
18
+ <path stroke-width="2.4" d="M450 393.8c20 0 39-1.6 50.2-4.7 4.7-.9 4.7-3.3 4.7-6.5 4.8-1.6 2.4-7.2 5.7-7.2-3.4 1-4-5.5-8-4.7 0-5.6-5.7-6.3-10.4-4.7-9.5 3.1-26.3 3.9-42.2 3.9-16-.8-32.6-.8-42.2-4-4.7-1.5-10.3-.8-10.3 4.8-4-.8-4.7 5.6-8 4.7 3.3 0 .8 5.7 5.6 7.2 0 3.2 0 5.6 4.8 6.5 11 3.1 30.2 4.7 50.1 4.7"/>
19
+ <path d="M422.9 363.5c6.4.9 13.6 1.6 19.2.9 3.2 0 5.5 5.5-.9 6.3-5.5.7-14.3 0-19-.8a231 231 0 0 1-18.4-4c-5.6-2.4-1.6-7 1.6-6.4a105.3 105.3 0 0 0 17.5 4m54.2 0c-6.4.9-13.6 1.6-19 .9-3.4 0-5.7 5.5.7 6.3 5.6.7 14.3 0 19-.8 4-.8 12.8-2.3 18.4-4 5.6-2.4 1.6-7-1.6-6.4a105.2 105.2 0 0 1-17.5 4"/>
20
+ <path d="M403 360.4c-4.8-.9-7 4.7-5.5 7.9.7-1.6 4-1.6 4.7-3.2.9-2.4-.7-2.4.9-4.7zm19.2 14.7c0-3.2 3.1-2.8 3.1-6 0-1.5-.8-4-2.4-4a3.4 3.4 0 0 0-3.2 3.2c-.7 3.1 2.5 3.6 2.5 6.8m22.7-9.1c4.7 0 4.2 6.3 2 9.5 0-2.3-4-3.2-4-4.8 0-2.4 3.6-2.4 2-4.7m52-5.6c4.9-.9 7.2 4.7 5.6 7.9-.7-1.6-4-1.6-4.7-3.2-.9-2.4.7-2.4-.9-4.7M478 375c0-3.2-3.2-2.8-3.2-6 0-1.5.8-4 2.4-4a3.4 3.4 0 0 1 3.2 3.2c.7 3.1-2.5 3.6-2.5 6.8zm-23-9c-4.7 0-4.2 6.3-2 9.5 0-2.3 4-3.2 4-4.8 0-2.4-3.6-2.4-2-4.7"/>
21
+ <path stroke-width=".9" d="M404.7 362c1.6 0 4 .7 4.7 1.6zm7.9 2.4c.8 0 4 .7 5.5 1.6zm28.6 3.2c-1.5 0-4.7 0-5.5.7l5.5-.8zm-8.7 0c-.9-.9-4-.9-5.6 0zm62.8-5.6a8 8 0 0 0-4.7 1.6zm-7.8 2.4c-1 0-4 .7-5.6 1.6zm-28.7 3.2c1.5 0 4.7 0 5.6.7l-5.6-.8zm8.7 0c.9-.9 4-.9 5.6 0z"/>
22
+ <g fill="#c09300" stroke="none">
23
+ <path d="M403.3 374.6c-.5-.1-.8-.6-.6-1 .1-.7.6-1 1-.8.4 0 .9.6.9.8l-.4.7-.2.1c0 .2-.4.2-.7.2m55 3.9c-.2 0-.6-.5-.6-.7 0-.4.6-1 1-1l.8.4c.3.3.3.9-.1 1.2-.2.2-.8.2-1.1 0zm.3 2.5c-.4-.2-.5-.4-.6-.8 0-.5 0-.6.5-.9l.4-.2.4.2c.4.2.7.4.7.8 0 .3-.3.6-.7.8-.3.2-.4.2-.7 0z"/>
24
+ <path d="M407.8 370c-.4 0-.9.4-1.2.6-.6.1-1.4.5-2 0-.6-.1-1.4 0-1.5.8.1.7 1 1 1.6.6.4-.5 1.5-.9 1.7 0-.5.8-.4 1.7-.8 2.4 0 .5-.3.9-.5 1.3-.5 0-1 0-1.4.3a2 2 0 0 0-1.6.8c-.4.6-.8 1.2-.9 2 .1.6 1 .8 1.6.9l2 .6 3.2.9c1.6.5 3.2.7 4.8 1.1l.5.1c.7.2 1-.5 1-1l1-3.6c.2-.5.5-1.5-.4-1.3-.5.3-1 .8-1.6.8-.9 0-.4 1 0 1.3 0 .6-.2 1.3-.5 1.8-.6.3-1.2 0-1.8-.2-.5 0-1.7-.3-1.2-1l.5-1.8c.3-.6.3-1.3.5-2-.4-.7-1 .3-1.5.4-.4.2-1.6.3-1 1 .6.4.2 1.1 0 1.7 0 .7-.8 1-1.4.7-.6 0-1.5-.5-1-1.1l.5-1.8.7-2c0-.7.3-1.2.6-1.8 0-.7.5-1.3.5-2 0-.3-.2-.4-.4-.4zm-3.7 7.3a.3.3 0 0 1 .3 0c.2.2.2.4 0 .6l-.3.2c-.5 0-.6-.1-.6-.3 0-.1 0-.2.3-.3a1.4 1.4 0 0 1 .4-.2zm-1 5c-.5-.4-.4-.7.3-1.3.4-.2.5-.2.9.1.6.5.6.8 0 1.3-.2.2-.3.2-.5.2-.3 0-.4 0-.7-.2zm3 1a.9.9 0 0 1-.6-1.1c.2-.4.3-.5.9-.5.7 0 .8.1.9.7 0 .4 0 .5-.3.7a1 1 0 0 1-.8.2zm89.2 0c-.2-.1-.3-.2-.3-.5 0-.4.2-.7.8-.9.6-.3 1-.3 1.2.2.3.6.3.8-.1 1.2-.2.3-.3.3-.8.3s-.6 0-.8-.2zm-85 1.2c-.4 0-.6-.4-.6-.8 0-.3 0-.4.2-.6l.6-.2.6.1c.5.4.6.8.3 1.2-.3.4-.6.4-1.2.3zm21.8 1-.2-.3c0-.6 0-1.1.2-1.7.1-.5 0-1 .2-1.5l.4-2.8c0-.5 0-1 .2-1.4.1-.8 0-1.5.2-2.2 0-.3.3-1 .6-.6.4.6.9 1 1.4 1.5.4.3 0 .7-.3.8-.4.1-.5.6-.5 1l-.2 1.2c0 .7 0 1.3-.2 2l-.1 1.8-.2 1.2c0 .4 0 .9-.4 1.1-.3.2-.8.2-1-.1zm29.7-9.8-1.3 1.2c-.6.5.5.7.6 1.1.2.6.2 1.2.2 1.8.2.6.3 1.1.2 1.7 0 .7-.8.5-1.2.9-.5.2-.7.7-1 1a4.2 4.2 0 0 0-.4 1.6c0 .5-.3 1 0 1.4l.1.2h.5l1.5-.1c1.2-.2 2.5-.2 3.7-.3l2.2-.2c.6.1.9-.5.9-1-.4-.7-.1-1.4-.4-2-.2-.8-.1-1.5-.2-2.2 0-.6-.7-.8-1-.4-.4.4-1 .5-1.2.9-.3.6.6.6.8 1l.1 1.5c.1.6-.5.6-1 .7-.5.2-1.2.3-1.5-.3-.2-.5-.2-1-.2-1.5 0-1-.3-1.8-.3-2.7 0-1-.3-2.1-.3-3.2 0-.5-.1-1.2-.8-1.1m-.6 8.2h.3v.8l-.3.1a3.3 3.3 0 0 1-.4.1 2.5 2.5 0 0 1-.2 0c-.2-.2-.2-.5.1-.8zm-30-9.2c-.3 0-.8.7-1.2.6-.9.1-.8 1-.1 1.3v.8c.1.8-.4 1.5-.3 2.3 0 .8-.3 1.7-.3 2.6-.3.9-.3 1.8-.4 2.7-.1.8-.7.5-1.2.3v-1c.1-.9-.5-1.1-1.2-1.2-.7 0-1-.5-.8-1.1.3-.4 1-.3 1.5-.3 1 .2.9-1.1.4-1.6-.4-.6-1.2-1-1.4-1.6 0-.8-.5-1.7-1.2-2.1-1.1-.1-2 .8-2.3 1.8-.5 0-1 .2-1.4.4-.7.2-1.7 1.4-.7 1.9.5.1 2.2.5 1.4 1.2-.4.8-1.2.8-1.9.6-.7 0-1.5-.4-1.5-1.2-.1-.8-.1-1.6-.4-2.3-.2-.8-1.1-.6-1.2.2-.7.5-.6 1.4-.1 2 .3.7 0 1.6-.3 2.2-.2 1-1.2 1-1.9 1.2-.3.2-1.6 0-1.1.7a4 4 0 0 0 2.4.3c.8 0 1.5-.7 2-1.4.5-.5 1.4-.2 2.2-.2.7 0 1.5.5 2.3.1.2-.5 1.2-1.5 1.5-.5 0 .9.7 1.3 1.5 1.2.9 0 .5.6.5 1.2 0 .9.7 1.4 1.5 1.8h.8c.7-.3 1.5-.6 1.8-1.4.3-.7.3-1.5.5-2.2.2-1.1.4-2.3.4-3.4.3-1 .2-2.1.4-3.2l.3-2.3c0-.5-.2-.5-.5-.4m-6.7 4.1c.1 0 .2.2.2.5 0 .4.2.7.5.8v.3l-.8.2c-.5 0-.9-.2-1.2-.5l-.2-.2.3-.2.5-.5c.3-.3.5-.4.7-.4m66-7.9a8.4 8.4 0 0 0-1.7.3c-1 0-1.5 1-.5 1.6.6 1.5 1.5-.4 2.5-.2 1.4.2 1.5 1.8 1.8 3 0 1.1.4 2.2.7 3.3 1 1.1-.7 1.8-1.4 1-.6-.7-2-1.5-2.7-.6-.9.4-1 1.6-1.7 2-1.2.3-1.3-1.2-2-1.8-.6-.9-1.7-1-2.6-1.2-.4-.9-.2-2.4-1-3-.8.3-2.2 1.7-1 2.4 1 1-.5 1.4-1 2-.8.9-1 2-1 3-1.3.7-1.5-.8-1.7-1.7 0-1.1-1-.8-1.7-.4-1 .4-1.4 1.3-2 2v2c.2.9 1.2.5 1.8.4 1-.4 1.4.7.6 1.3-.6.6-2.2.3-2 1.4h1.6c1-.3 2.2-1.1 2.3-2.3.2-1 1.7-.9 2.5-1.1 1-.3 2.3-.4 2.6 1 .7.7 2.2 1.5 3 .5a2.4 2.4 0 0 0 1.1-2.3c-.1-.8 1.3-.8 1.7-.3.5.8 2.1.6 2.9 0 .8-.5 1-1.6 2.2-1.6l5.4-1.5c1.4-.3-.2-1.2-.6-1.8-1-.5-2 1.7-3.2.6-1-.7-.9-2-1.2-3.1-.3-1.4-.2-3-1.2-4-.6-.7-1.6-.9-2.5-.9m-6.8 9.5c.1 0 .3 0 .5.2.4.2.7.6.7 1 0 .2 0 .2-.3.3l-.5.2c-.2 0-.7-.3-.7-.5v-.4c-.2-.4-.2-.4 0-.6zm6.5.4c.4 0 .6 0 .8.3.1.4 0 .6-.4.8l-.5.2-.4-.3c-.2-.1-.3-.2-.3-.4 0-.3.4-.6.8-.7zm-9 0c.2 0 .3 0 .4.2.2.2.3.3.3.6v.6c0 .3 0 .2-.6.2s-.7 0-.7-.6c0-.4 0-.5.3-.7.1-.2.3-.2.4-.2zm-5.4 1.5a.6.6 0 0 1 .4.4c0 .3 0 .5-.2.6-.3.1-.8.2-1 0a.6.6 0 0 1 0-.1c-.2-.1-.2-.2 0-.3v-.1l.2-.3a.5.5 0 0 1 .6-.2m9.2 1.2.5.1v.6h-1.2l-.1-.2c0-.2 0-.3.2-.4zm-17.1 4.8c-.1 0-.3-.1-.1-.2.1-.3.5-.4.8-.6a3.4 3.4 0 0 0 1.4-1c0-.4.4-.6.4-1l-.1-1.4a1.8 1.8 0 0 0-.8-1c-.3-.1-.7-.2-.8-.6 0-.3.3-.6.4-.9l.6-1.2c.3-.3.7 0 .8.2l.5 1c.3.3.5.6.6 1 .2.4.4.7.4 1l.2 1.3c0 .5 0 1.1-.2 1.6l-.6.8c-.3.3-.6.6-1 .7-.3.1-.5.4-.9.4H468zm-6.9.4c-.2-.2-.3-.3-.3-.6s0-.3.3-.6c.4-.4.6-.4 1.4 0 .7.4 1 .4 1 .1.1-.2.5-.5 1-.5a.8.8 0 0 1 .5.2c.2.2.3.3.3.7 0 .5 0 .5-.3.8-.3.2-.3.2-.7.2a.9.9 0 0 1-.8-.6c0-.2 0-.3-.2-.1l-.2.1c-.2 0-.6.3-.8.5l-.5.1c-.4 0-.4 0-.7-.3m-19.8-8.9c-.7 0-1.4.6-1.5 1.3.2.7.8 1.5.4 2.2.3 1-.8 1.4-1.5.9-.4-1-.6-2-1.3-3-.8-.2-1.1 1.1-1.7 1.6.3.7 1.1 1.4 1.2 2.3.2 1-.4 2-1.1 2.4-.7.7-1.7.5-2.5.6-1 .6.7.8 1.2.8 1 .1 2.1 0 3-.8.7-.3.6-1.7 1.5-1.8l4.8.3c.8.2 2.1-.1 2.7.5 0 1 1 1.8 1.9 2.2.5.2 1-.5 1.5-.6 1-.3.7-1.5 1.3-2h5c.2 0 .3-.5.6-.7l-.2-1.9c-.3-.8 0-1.8-.5-2.5-.9-.2-1.6.5-2.4.6-1 .4-1.7 1.3-1.8 2.3-.5.9-1.4-.2-1-1l-.1-1c-.5-.5-1.4-.3-2.1-.4l-3-.2c-1 0-1.9.1-2.7-.1-1 0-1-1-1-1.8a1 1 0 0 0-.7-.2m2 3.7 1 .1h1.3c1 .2 2 .2 3 .2.2 0 .4.2.6.4v2c0 .3 0 .7-.2.8a.7.7 0 0 1-.2.2 1 1 0 0 1-.7-.5v-1.4a1.3 1.3 0 0 0-.7-.3l-2.6-.1-2-.1c-.3-.1-.7 0-.9-.4-.2-.2.1-.6.4-.7a2.3 2.3 0 0 1 1-.2m11.3.3c.1 0 .2 0 .2.3l.2.5c0 .1 0 .2-.2.2-.5.2-1 .2-1.2 0 0-.1 0-.5.2-.6z"/>
25
+ </g>
26
+ </g>
27
+ <path stroke-width="1.1" d="M450 327.2c32.6-25 29.8-61.8 29.8-61.8l-2.5.2c-6.9 0-23.2-4-27-8.9-4 4.5-20.8 9-27.6 9l-2.5-.3s-2.9 36.7 29.8 61.8z"/>
28
+ <path stroke-width=".9" d="M477.2 268h-.8c-6.2 0-20.6-3.1-26.2-7.9-5.8 4.4-20.5 8-26.6 8a4.7 4.7 0 0 1-.8-.1 73.1 73.1 0 0 0 2.6 18.7 71 71 0 0 0 24.6 37.1 71.2 71.2 0 0 0 24.6-37.2 73.1 73.1 0 0 0 2.6-18.6z"/>
29
+ <path fill="#c09300" stroke="none" d="M439.4 265a62.2 62.2 0 0 1-16.6 3l.1 4.1a72.8 72.8 0 0 0 2.5 14.5 71 71 0 0 0 14 26.8zm20.6 0v49.2a71.1 71.1 0 0 0 14.6-27.6 73 73 0 0 0 2.5-14.5l.1-4h-.8c-3.8 0-10.4-1.2-16.4-3.2z"/>
30
+ <g stroke-width="1.3">
31
+ <path stroke-width="1.2" d="M462.3 253c.7.1-.9-3.5-.9-3.5 1.8 1.8 8.4 2.3 8.4 2.3-4-1.8-8-15.1-7.5-25.8.4-10.6-1.5-14.8-3-16.4-2-2-8.5-3.8-12.7-4-2.5-.1-2 1.8-2 1.8-4.5-1.1-9-1.6-11-.2-1.8 1.2-2.2 7.5-.8 6.4 3.3-2.7 6.2-.2 8.2 2.7 1.8 2.5 1.7 9.7-.9 18.2a60 60 0 0 1-10 17.7c4 0 9.6-3.5 9.6-3.5l-1.3 5.5c4.2-2 7.5-5.1 7.5-5.1l4 4.2c1.3-1.8 4-4.2 4-4.2s3.3 3.5 8.4 4z"/>
32
+ <path fill="none" d="M446.1 227.6s-2.2 16.4-6.4 21m10-21.5s-1 16.7-3.8 22m6.9-21.3s0 18.2 1 21.3m3-20.4s.8 15.3 4.6 20.8"/>
33
+ <path fill="#c09300" stroke-width=".3" d="M442 219.6a8 8 0 0 0-1-3.3c-2-3-4.9-5.4-8.2-2.7 0 0 1.1-3.5 3.6-3.6 1.8-.1 6.1 1.4 9.9 7.8 0 0-2.8-.6-3.5 0-1.2 1-.7 1.8-.7 1.8z"/>
34
+ <path fill="#c09300" stroke-width=".3" d="M432.4 209.3c.3-1 .7-1.8 1.3-2.1 2-1.4 6.4-1 10.9.2 0 0-.4-1.9 2-1.8 4.2.2 10.6 2 12.6 4a7.9 7.9 0 0 1 1.5 2.4c-1-1.4-3.8-1.3-4.5-1.2-1 .1-1.7 0-3.1.4-.7.2-1.7.4-2.3.8-.4.4-.8 1.6-1.4 1.6-1 0-1-.2-1.3-.5-.3-.5-.5-1.1-.9-1-1 .1-2.8-.7-5-2.5-2.3-1.8-3.2-2.2-6-2-3 .2-3.8 1.9-3.8 1.9z"/>
35
+ <circle cx="448.8" cy="210.7" r="1.2" stroke="none"/>
36
+ </g>
37
+ </g>
38
+ </svg>
@@ -0,0 +1,16 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-eh" viewBox="0 0 640 480">
2
+ <defs>
3
+ <clipPath id="eh-a">
4
+ <path fill-opacity=".7" d="M-158.7 0H524v512h-682.7z"/>
5
+ </clipPath>
6
+ </defs>
7
+ <g fill-rule="evenodd" clip-path="url(#eh-a)" transform="translate(148.8)scale(.94)">
8
+ <path fill="#000001" d="M-158.3 0h680.9v255.3h-680.9z"/>
9
+ <path fill="#007a3d" d="M-158.3 255.3h680.9v255.3h-680.9z"/>
10
+ <path fill="#fff" d="M-158.3 148.9h680.9v212.8h-680.9z"/>
11
+ <path fill="#c4111b" d="m-158.3 0 340.4 255.3-340.4 255.3Z"/>
12
+ <circle cx="352.3" cy="255.3" r="68.1" fill="#c4111b"/>
13
+ <circle cx="377.9" cy="255.3" r="68.1" fill="#fff"/>
14
+ <path fill="#c4111b" d="m334 296.5 29.1-20.7 28.8 21-10.8-34 29-20.9-35.7-.2-11-34-11.2 33.9-35.7-.2 28.7 21.2-11.1 34z"/>
15
+ </g>
16
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-eh" viewBox="0 0 512 512">
2
+ <path fill="#000001" d="M0 0h512v256H0z"/>
3
+ <path fill="#007a3d" d="M0 256h512v256H0z"/>
4
+ <path fill="#fff" d="M0 149.3h512v213.3H0z"/>
5
+ <path fill="#c4111b" d="m0 0 256 256L0 512Z"/>
6
+ <g stroke-width="1.7" transform="translate(-135 -6.5)scale(1.02539)">
7
+ <circle cx="512" cy="256" r="68.3" fill="#c4111b"/>
8
+ <circle cx="537.6" cy="256" r="68.3" fill="#fff"/>
9
+ <path fill="#c4111b" d="m493.7 297.3 29-20.8 29 21.2-10.8-34.2 29-21-35.8-.2-11-34-11.3 33.9-35.7-.1 28.7 21.2z"/>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-er" viewBox="0 0 512 512">
2
+ <defs>
3
+ <clipPath id="er-a">
4
+ <path fill-opacity=".7" d="M0 0h512v512H0z"/>
5
+ </clipPath>
6
+ </defs>
7
+ <g fill-rule="evenodd" clip-path="url(#er-a)">
8
+ <path fill="#be0027" d="M-48 0h591.5v512H-48z"/>
9
+ <path fill="#b4d7f4" d="m-48 512 591.5-.3V256z"/>
10
+ <path fill="#239e46" d="m-48 0 591.5.3V256z"/>
11
+ <path fill="#f3e295" d="M148.8 351.4c-8.7 2.4-13.7 9.2-13.6 15.6l42.8-.2c.4-6.9-5.2-13.2-13.8-15.7 42-.8 78.4-16.6 85-26.6-6.5-2.9-14.1 1.7-19.5.6 12.8-5.9 51.2-30.8 45-57.4a62.3 62.3 0 0 1-25.8 30.3c14.3-21.8 34-44.5 17-62 .8 10.2-6.6 21.4-9.8 22.2 8.3-23 16.3-52-1.8-71 2.4 6.9 1.5 26.3-1.8 27.2-1-15.7-3.7-48.6-20.2-48.1 5.3 4.6 7.5 17.4 7.7 30.2-3.8-8.8-8-15.4-17.2-22a96.1 96.1 0 0 0-33.7-34.3 36.1 36.1 0 0 0 17.1 29.2c-7.5-.5-15-14.7-23-15.1-6.4-.3-11.4 5.8-21.9 2.3 1.2 3.4 6 5 7 7.5-2.1 1.5-7.5-.2-11.9-2.5 6.1 8.2 15.5 13 23.5 11.4 9.5-1.8 19.7-.8 29.4 4.7a51.6 51.6 0 0 1-18.4.5c5.7 5.7 9.4 9.5 19.2 9.4 8.8 0 13.4-4.6 15.6-1.8 5.5 6.5 9.2 13 13.8 20.6-10.2 1.2-7.1-11.4-18.4-17.9-6.3 13.2 7.3 28.7 16.6 35.2 0 9.9 1.5 18 5.7 25.6 2.8 5.3 6.5 10.7 5.1 22.7-5.5-4-11-17.7-9-28.5-7 1.9-9.6 14-6.4 20.2 2.5 4.7 4.1 13.7 1.3 17.7-2.8 3.7-3 3.3-3 11.3 0 4.8-2.6 10.5-7 14.4 1-3.3 2-9.2 1-12.8-3.5 5.9-12.1 11.9-14.8 18.2-2.7 6.3-3.4 17.2-16.3 19.7-16.7 3.3-22.5 6.2-33.2 10.6-1.2-8.1 2.4-25.1 9.2-24.1 6.7 1.2 26.8-7 19.6-24-1.4 5.4-6.2 10.6-11.3 10.9 5.5-7.2 15.4-14.7 10.6-26.7a34.5 34.5 0 0 1-13.3 14.7c6.9-13.1.8-17-7.3-6.3-3 4.2-5 12.6-6.9 23.2-3.2-8.6-3-20-6.8-29.2-4-10 5.3-12.7 9.6-11.9 10.6 2.9 28.4 2.9 27-14.7-4.5 6-12.6 7.8-21.3 5.7 9.8-7.2 17.5-20.5 6.6-27.5a25.2 25.2 0 0 1-13.7 19.5 41 41 0 0 1-.3-20.1c-4.3 4.5-7.4 13.8-9.9 24.5a81.8 81.8 0 0 1 3.3-23.8c2.2-8.3 7.8-2.9 16.3-2.3 8.2.5 19.5-4 17.4-15.2-2.8 4.4-8.6 6.1-14.5 5.7 7.1-4.3 19.4-12 12.7-23.6-2.9 4.4-3.8 8.2-12 9.6 2.1-5 2.5-12 8.9-14.7-11.4-2.3-17.9 5.2-21.2 16.8-1.4-8-3-11-3.3-17 6.2-6.8 6.8-20.2-6.5-23.1-.8 6.8-.5 8.5 1 14-6.3-3.6-15-5.7-21-.4 4 4.3 10.2 8 19.7 3.4-2.3 7.3-8.1 6-16.1 3.2 4.9 9.2 11 10.9 17.9 9.8 3.5 9.4 3.7 16.5-6.7 30.2.4-8.5-.2-14.8-7-21.7-5.7-5.7-10.4.3-1.4 12.9A38.7 38.7 0 0 1 127 200c-1.8 10.1-.2 22 5.4 28.8-2.7 2.8-5.7-.3-10.1-7.2 1.6 22.2 11.1 26.4 23.9 21.5.3 12.2.3 23.5 1 38.2a61.3 61.3 0 0 0-22-20.6c-1.7 6 4.5 13.7 8 18-5.3-1-16.7-9.7-16.7-9.7-1.2 9.9 11.6 19 19.9 23.1-9.7-.4-14-4-20.3-10 .1 27.4 29.7 22.6 35.3 18.4l2.5 42.6c-8.4-1.4-7.7-4-14.9-4.6-19.9-.8-35.7-23.9-40.9-40.9-1.5 2.8-.3 5.7-1.7 9.2-3.2-8.4-7.3-19.1-12.9-24.1 1.4 4.8 1.6 9.8 1.1 18.8-1.9-5.9-3.7-7.7-3.8-14.6.1-5.3 5.1-9.2 4.9-16.7-.2-5.4-5.2-17.2-6-26.4-2.4 9.5-3.9 19.4-7.6 25.2 1.9-10 1.3-17 4.4-23.7 3.6-7.2 6.6-13.5 4.2-20.7-2.3 2.8-1.5 5.3-7.2 12-1.3-7.3 7.4-19 15.8-23.8 6-3 13.4-14.3 8.6-22-5.6 4-8.1 9.5-16 18.7 5.6-22 20.2-27.7 37.7-27.8 4 0 11.7-1.4 14-6.5-5 1.9-10.9 2.1-16 1 3.7-5.4 11.7-4.7 19.1-4.8 5.8 0 14.9-.8 18.6-9a42 42 0 0 1-25.2 1.5c11.1-5.8 28.5-6.4 37.4-14-10.2-7.5-35.6 1.9-51.6 12.9 4.5-4.1 11.6-11.4 15.5-17.3-8.8-4.2-31 20.4-38.6 35-7.2 4-10.1 10.5-13 15 4-13.1 4.3-22.6 7.5-33.3-24.8 8.5-14.5 54.5-19.9 65.5.6-12.2.1-27.8-4.9-35.8-7.6 5.8-8.3 40.2-1 68.9-2.7-7.7-7.6-14.9-9.1-24.2-11.4 20.7 6.6 45 21.6 64.3a95.7 95.7 0 0 1-29.8-29.2c2 37 40.7 44.7 46.7 53.8-8.2-3.8-23.7-11.3-30.4-3.4a80.2 80.2 0 0 1 26.3 9.9c10 12.5 29 18 62 19.4"/>
12
+ </g>
13
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-er" viewBox="0 0 640 480">
2
+ <g fill-rule="evenodd">
3
+ <path fill="#be0027" d="M0 0h640v480H0z"/>
4
+ <path fill="#b4d7f4" d="m0 480 640-.3V240z"/>
5
+ <path fill="#239e46" d="m0 0 640 .3V240z"/>
6
+ <path fill="#f3e295" d="M186.2 360.4c-10.7 3-16.8 11.3-16.7 19.1l52.8-.2c.4-8.4-6.5-16.2-17-19.3 51.6-1 96.4-20.4 104.6-32.8-8-3.5-17.4 2.1-24 .8 15.7-7.3 63-37.9 55.3-70.7-6 18.2-24 33.3-31.8 37.4 17.7-26.8 41.8-54.8 20.9-76.4 1 12.5-8 26.3-12 27.4 10.3-28.4 20-64-2.1-87.4 2.9 8.5 1.7 32.4-2.3 33.5-1.2-19.3-4.5-59.8-24.8-59.3 6.4 5.8 9.2 21.4 9.4 37.2a57.5 57.5 0 0 0-21.1-27 118.3 118.3 0 0 0-41.5-42.2c1.8 12.7 3.3 22.7 21 35.9-9.2-.6-18.4-18.1-28.3-18.6-7.9-.4-14 7.1-26.9 2.8 1.4 4.2 7.4 6.1 8.7 9.2-2.8 2-9.3-.3-14.7-3 7.5 10 19 16 28.8 14 11.7-2.2 24.2-1 36.2 5.8a63 63 0 0 1-22.5.6c6.9 7 11.5 11.7 23.6 11.6 10.7 0 16.4-5.8 19.1-2.2 6.8 8 11.3 16 17 25.4-12.5 1.3-8.7-14.1-22.6-22-7.9 16 9 35.2 20.3 43.2a65 65 0 0 0 7.1 31.5c3.5 6.5 8 13.2 6.3 27.9-6.9-5-13.5-21.8-11-35.1-8.6 2.3-12 17.4-8 25 3 5.7 5 16.8 1.6 21.7-3.4 4.6-3.7 4-3.7 14 .1 5.8-3.2 12.8-8.5 17.7a35.5 35.5 0 0 0 1.1-15.8c-4.2 7.2-14.9 14.6-18.2 22.4-3.3 7.7-4.1 21.2-20 24.3-20.6 4-27.7 7.6-40.8 13-1.5-10 2.9-31 11.3-29.7 8.1 1.4 33-8.6 24-29.5-1.7 6.6-7.5 13-13.9 13.3 6.9-8.8 19-18 13.1-32.8a42.6 42.6 0 0 1-16.3 18c8.4-16 1-21-9-7.6-3.8 5.1-6.1 15.4-8.5 28.5-4-10.6-3.7-24.6-8.4-36-4.8-12.3 6.5-15.5 11.8-14.5 13 3.5 34.9 3.5 33.3-18.1-5.7 7.3-15.5 9.5-26.2 7 12-8.8 21.4-25.3 8-34a31 31 0 0 1-16.9 24.1 50.8 50.8 0 0 1-.3-24.8c-5.2 5.6-9 17-12.1 30.2-.3-13 2.2-22.3 4-29.3 2.8-10.1 9.6-3.5 20-2.8 10.2.6 24-5 21.4-18.7-3.4 5.5-10.5 7.6-17.7 7 8.7-5.3 23.8-14.6 15.5-29-3.5 5.4-4.6 10-14.7 11.7 2.6-6 3-14.7 11-18-14-2.9-22 6.3-26.2 20.7-1.6-10-3.6-13.6-4-21 7.6-8.3 8.4-24.8-8-28.4a35 35 0 0 0 1.2 17.4c-7.7-4.6-18.5-7.1-25.8-.7 5 5.3 12.5 10 24.2 4.2-2.8 9-10 7.5-19.8 4 6 11.3 13.6 13.3 22 12 4.4 11.6 4.6 20.4-8.3 37.2.6-10.4-.1-18.2-8.4-26.7-7.2-7-13 .3-1.8 15.8-6.8-5-14.4-15-16.7-25.1-2.2 12.4-.2 27.1 6.7 35.4-3.3 3.5-7-.4-12.5-9 2 27.4 13.7 32.7 29.4 26.6.4 15 .4 28.9 1.3 47-9.1-13.2-20.7-23-27.1-25.4-2 7.3 5.5 17 9.8 22.3-6.5-1.4-20.5-12-20.5-12-1.4 12.1 14.3 23.4 24.5 28.4-12-.5-17.3-5-25-12.4.2 33.8 36.6 27.9 43.5 22.7l3 52.5c-10.3-1.8-9.5-5-18.3-5.7-24.5-1-43.9-29.4-50.3-50.3-1.9 3.4-.4 7-2.1 11.3-4-10.3-9-23.6-15.9-29.8 1.8 6 2 12.1 1.4 23.3-2.4-7.2-4.5-9.5-4.7-18 .1-6.5 6.3-11.3 6-20.5-.3-6.7-6.4-21.3-7.3-32.5-3 11.6-4.8 23.8-9.4 31 2.3-12.4 1.6-21 5.4-29.3 4.4-8.7 8.1-16.6 5.2-25.4-2.8 3.4-1.9 6.5-9 14.8-1.5-9 9.2-23.5 19.6-29.3 7.3-3.8 16.5-17.6 10.5-27-6.9 5-10 11.6-19.7 23 7-27 25-34.2 46.5-34.3 4.7 0 14.3-1.7 17-8-6 2.3-13.2 2.6-19.6 1.4 4.7-6.9 14.4-6 23.6-6 7.1 0 18.3-1 22.8-11.2a50.8 50.8 0 0 1-31 1.9c13.7-7 35-7.8 46-17.1-12.5-9.3-43.7 2.2-63.4 15.7 5.5-5 14.2-14 19-21.2-10.8-5.2-38 25-47.4 43-9 5-12.5 13-16 18.5 4.7-16.1 5.2-27.8 9.2-41C80 138 92.6 194.6 86 208.2c.8-15 .1-34.1-6-44-9.4 7.2-10.2 49.5-1.4 84.7-3.2-9.4-9.2-18.2-11.1-29.7-14 25.4 8.2 55.5 26.7 79.2-14-7.3-27.7-22.9-36.8-36 2.5 45.6 50 55 57.4 66.2-10-4.7-29.1-13.9-37.3-4.2a99 99 0 0 1 32.3 12.1c12.4 15.4 35.7 22.2 76.4 23.9"/>
7
+ </g>
8
+ </svg>