@julseb-lib/react 0.0.63 → 0.0.65

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 (1348) hide show
  1. package/README.md +5 -5
  2. package/dist/@julseb-lib-react.cjs.js +1 -0
  3. package/dist/@julseb-lib-react.es.js +207 -0
  4. package/dist/@julseb-lib-react.umd.js +4148 -0
  5. package/dist/index-CaOLbx-Z.cjs +4142 -0
  6. package/dist/index-Cf_pM6lO.js +23319 -0
  7. package/dist/index.d.ts +1 -1
  8. package/dist/lib/Mixins.tsx +985 -0
  9. package/dist/lib/Variables.ts +296 -0
  10. package/dist/lib/components/Accordion/Accordion.tsx +86 -0
  11. package/dist/lib/components/Accordion/AccordionButton.tsx +72 -0
  12. package/dist/lib/components/Accordion/AccordionContent.tsx +27 -0
  13. package/dist/lib/components/Accordion/AccordionItem.tsx +70 -0
  14. package/dist/lib/components/Accordion/index.ts +4 -0
  15. package/dist/lib/components/Accordion/styles.tsx +165 -0
  16. package/dist/lib/components/Accordion/subtypes.ts +22 -0
  17. package/dist/lib/components/Accordion/types.ts +33 -0
  18. package/dist/lib/components/Alert/Alert.tsx +118 -0
  19. package/dist/lib/components/Alert/index.ts +3 -0
  20. package/dist/lib/components/Alert/styles.tsx +39 -0
  21. package/dist/lib/components/Alert/types.ts +33 -0
  22. package/dist/lib/components/Aside/Aside.tsx +42 -0
  23. package/dist/lib/components/Aside/index.ts +3 -0
  24. package/dist/lib/components/Aside/styles.tsx +46 -0
  25. package/dist/lib/components/Aside/types.ts +8 -0
  26. package/dist/lib/components/Autocomplete/Autocomplete.tsx +352 -0
  27. package/dist/lib/components/Autocomplete/index.ts +3 -0
  28. package/dist/lib/components/Autocomplete/styles.tsx +13 -0
  29. package/dist/lib/components/Autocomplete/types.ts +42 -0
  30. package/dist/lib/components/Avatar/Avatar.tsx +143 -0
  31. package/dist/lib/components/Avatar/AvatarFunction.tsx +136 -0
  32. package/dist/lib/components/Avatar/index.ts +3 -0
  33. package/dist/lib/components/Avatar/styles.tsx +117 -0
  34. package/dist/lib/components/Avatar/types.ts +86 -0
  35. package/dist/lib/components/BackToTop/BackToTop.tsx +101 -0
  36. package/dist/lib/components/BackToTop/index.ts +3 -0
  37. package/dist/lib/components/BackToTop/styles.tsx +35 -0
  38. package/dist/lib/components/BackToTop/types.ts +8 -0
  39. package/dist/lib/components/Badge/Badge.tsx +94 -0
  40. package/dist/lib/components/Badge/index.ts +3 -0
  41. package/dist/lib/components/Badge/styles.tsx +41 -0
  42. package/dist/lib/components/Badge/types.ts +34 -0
  43. package/dist/lib/components/Breadcrumbs/BreadcrumbItem.tsx +42 -0
  44. package/dist/lib/components/Breadcrumbs/Breadcrumbs.tsx +52 -0
  45. package/dist/lib/components/Breadcrumbs/BreadcrumbsFn.tsx +76 -0
  46. package/dist/lib/components/Breadcrumbs/index.ts +3 -0
  47. package/dist/lib/components/Breadcrumbs/styles.tsx +64 -0
  48. package/dist/lib/components/Breadcrumbs/subtypes.ts +12 -0
  49. package/dist/lib/components/Breadcrumbs/types.ts +31 -0
  50. package/dist/lib/components/Burger/Burger.tsx +59 -0
  51. package/dist/lib/components/Burger/index.ts +3 -0
  52. package/dist/lib/components/Burger/styles.tsx +93 -0
  53. package/dist/lib/components/Burger/types.ts +13 -0
  54. package/dist/lib/components/Button/Button.tsx +134 -0
  55. package/dist/lib/components/Button/index.ts +3 -0
  56. package/dist/lib/components/Button/styles.tsx +32 -0
  57. package/dist/lib/components/Button/subtypes.ts +12 -0
  58. package/dist/lib/components/Button/types.ts +72 -0
  59. package/dist/lib/components/ButtonGroup/ButtonGroup.tsx +158 -0
  60. package/dist/lib/components/ButtonGroup/ButtonGroupButton.tsx +89 -0
  61. package/dist/lib/components/ButtonGroup/ButtonGroupToggle.tsx +99 -0
  62. package/dist/lib/components/ButtonGroup/index.ts +3 -0
  63. package/dist/lib/components/ButtonGroup/styles.tsx +91 -0
  64. package/dist/lib/components/ButtonGroup/subtypes.ts +42 -0
  65. package/dist/lib/components/ButtonGroup/types.ts +36 -0
  66. package/dist/lib/components/ButtonIcon/ButtonFunction.tsx +95 -0
  67. package/dist/lib/components/ButtonIcon/ButtonIcon.tsx +139 -0
  68. package/dist/lib/components/ButtonIcon/index.ts +3 -0
  69. package/dist/lib/components/ButtonIcon/styles.tsx +31 -0
  70. package/dist/lib/components/ButtonIcon/subtypes.ts +12 -0
  71. package/dist/lib/components/ButtonIcon/types.ts +90 -0
  72. package/dist/lib/components/Card/Card.tsx +133 -0
  73. package/dist/lib/components/Card/index.ts +3 -0
  74. package/dist/lib/components/Card/styles.tsx +75 -0
  75. package/dist/lib/components/Card/types.ts +29 -0
  76. package/dist/lib/components/CodeContainer/CodeContainer.tsx +135 -0
  77. package/dist/lib/components/CodeContainer/index.ts +3 -0
  78. package/dist/lib/components/CodeContainer/styles.tsx +65 -0
  79. package/dist/lib/components/CodeContainer/types.ts +235 -0
  80. package/dist/lib/components/ComponentsMixins/ComponentsMixins.tsx +441 -0
  81. package/dist/lib/components/ComponentsMixins/hooks/useKeyboardNavigation.tsx +81 -0
  82. package/dist/lib/components/ComponentsMixins/index.ts +5 -0
  83. package/dist/lib/components/ComponentsMixins/types.ts +37 -0
  84. package/dist/lib/components/Cover/Cover.tsx +72 -0
  85. package/dist/lib/components/Cover/index.ts +3 -0
  86. package/dist/lib/components/Cover/styles.tsx +80 -0
  87. package/dist/lib/components/Cover/types.ts +14 -0
  88. package/dist/lib/components/Datepicker/Calendar.tsx +395 -0
  89. package/dist/lib/components/Datepicker/Datepicker.tsx +254 -0
  90. package/dist/lib/components/Datepicker/data.ts +33 -0
  91. package/dist/lib/components/Datepicker/index.ts +3 -0
  92. package/dist/lib/components/Datepicker/styles.tsx +456 -0
  93. package/dist/lib/components/Datepicker/types.ts +68 -0
  94. package/dist/lib/components/DragList/DragList.tsx +127 -0
  95. package/dist/lib/components/DragList/DragListItem.tsx +191 -0
  96. package/dist/lib/components/DragList/index.ts +4 -0
  97. package/dist/lib/components/DragList/styles.tsx +75 -0
  98. package/dist/lib/components/DragList/types.ts +65 -0
  99. package/dist/lib/components/Drawer/Drawer.tsx +110 -0
  100. package/dist/lib/components/Drawer/index.ts +3 -0
  101. package/dist/lib/components/Drawer/styles.tsx +136 -0
  102. package/dist/lib/components/Drawer/types.ts +28 -0
  103. package/dist/lib/components/Dropdown/Dropdown.tsx +89 -0
  104. package/dist/lib/components/Dropdown/DropdownContainer.tsx +39 -0
  105. package/dist/lib/components/Dropdown/DropdownItem.tsx +97 -0
  106. package/dist/lib/components/Dropdown/index.ts +5 -0
  107. package/dist/lib/components/Dropdown/styles.tsx +156 -0
  108. package/dist/lib/components/Dropdown/types.ts +71 -0
  109. package/dist/lib/components/Fade/Fade.tsx +42 -0
  110. package/dist/lib/components/Fade/index.ts +3 -0
  111. package/dist/lib/components/Fade/styles.tsx +19 -0
  112. package/dist/lib/components/Fade/types.ts +5 -0
  113. package/dist/lib/components/Fallback/Fallback.tsx +37 -0
  114. package/dist/lib/components/Fallback/index.ts +3 -0
  115. package/dist/lib/components/Fieldset/Fieldset.tsx +107 -0
  116. package/dist/lib/components/Fieldset/index.ts +3 -0
  117. package/dist/lib/components/Fieldset/styles.tsx +50 -0
  118. package/dist/lib/components/Fieldset/types.ts +34 -0
  119. package/dist/lib/components/Flexbox/Flexbox.tsx +69 -0
  120. package/dist/lib/components/Flexbox/index.ts +3 -0
  121. package/dist/lib/components/Flexbox/styles.tsx +34 -0
  122. package/dist/lib/components/Flexbox/types.ts +27 -0
  123. package/dist/lib/components/Footer/Footer.tsx +106 -0
  124. package/dist/lib/components/Footer/FooterLink.tsx +31 -0
  125. package/dist/lib/components/Footer/FooterLogo.tsx +30 -0
  126. package/dist/lib/components/Footer/index.ts +3 -0
  127. package/dist/lib/components/Footer/styles.tsx +126 -0
  128. package/dist/lib/components/Footer/subtypes.ts +14 -0
  129. package/dist/lib/components/Footer/types.ts +76 -0
  130. package/dist/lib/components/Form/Form.tsx +148 -0
  131. package/dist/lib/components/Form/index.ts +3 -0
  132. package/dist/lib/components/Form/styles.tsx +24 -0
  133. package/dist/lib/components/Form/types.ts +32 -0
  134. package/dist/lib/components/FullBleed/FullBleed.tsx +45 -0
  135. package/dist/lib/components/FullBleed/index.ts +3 -0
  136. package/dist/lib/components/FullBleed/styles.tsx +32 -0
  137. package/dist/lib/components/FullBleed/types.ts +9 -0
  138. package/dist/lib/components/Grid/Grid.tsx +66 -0
  139. package/dist/lib/components/Grid/index.ts +3 -0
  140. package/dist/lib/components/Grid/styles.tsx +31 -0
  141. package/dist/lib/components/Grid/types.ts +24 -0
  142. package/dist/lib/components/Header/Header.tsx +212 -0
  143. package/dist/lib/components/Header/HeaderBurger.tsx +59 -0
  144. package/dist/lib/components/Header/HeaderLogo.tsx +65 -0
  145. package/dist/lib/components/Header/HeaderNav.tsx +82 -0
  146. package/dist/lib/components/Header/HeaderNavLink.tsx +32 -0
  147. package/dist/lib/components/Header/HeaderSearch.tsx +83 -0
  148. package/dist/lib/components/Header/index.ts +3 -0
  149. package/dist/lib/components/Header/styles.tsx +352 -0
  150. package/dist/lib/components/Header/subtypes.ts +86 -0
  151. package/dist/lib/components/Header/types.ts +91 -0
  152. package/dist/lib/components/Helmet/Helmet.tsx +67 -0
  153. package/dist/lib/components/Helmet/index.ts +3 -0
  154. package/dist/lib/components/Helmet/types.ts +17 -0
  155. package/dist/lib/components/Highlight/Highlight.tsx +45 -0
  156. package/dist/lib/components/Highlight/index.ts +3 -0
  157. package/dist/lib/components/Highlight/types.ts +11 -0
  158. package/dist/lib/components/Hr/Hr.tsx +50 -0
  159. package/dist/lib/components/Hr/index.ts +3 -0
  160. package/dist/lib/components/Hr/styles.tsx +29 -0
  161. package/dist/lib/components/Hr/types.ts +12 -0
  162. package/dist/lib/components/Icon/Icon.tsx +42 -0
  163. package/dist/lib/components/Icon/index.ts +3 -0
  164. package/dist/lib/components/Icon/styles.tsx +21 -0
  165. package/dist/lib/components/Icon/types.ts +13 -0
  166. package/dist/lib/components/IconMenu/IconMenu.tsx +157 -0
  167. package/dist/lib/components/IconMenu/IconMenuItem.tsx +74 -0
  168. package/dist/lib/components/IconMenu/index.ts +4 -0
  169. package/dist/lib/components/IconMenu/styles.tsx +116 -0
  170. package/dist/lib/components/IconMenu/types.ts +56 -0
  171. package/dist/lib/components/Image/Image.tsx +106 -0
  172. package/dist/lib/components/Image/ImageFunction.tsx +53 -0
  173. package/dist/lib/components/Image/index.ts +3 -0
  174. package/dist/lib/components/Image/styles.tsx +87 -0
  175. package/dist/lib/components/Image/types.ts +48 -0
  176. package/dist/lib/components/Input/Input.tsx +189 -0
  177. package/dist/lib/components/Input/index.ts +3 -0
  178. package/dist/lib/components/Input/styles.tsx +41 -0
  179. package/dist/lib/components/Input/subtypes.ts +186 -0
  180. package/dist/lib/components/Input/templates/ColorInput.tsx +40 -0
  181. package/dist/lib/components/Input/templates/DateInput.tsx +127 -0
  182. package/dist/lib/components/Input/templates/FileInput.tsx +61 -0
  183. package/dist/lib/components/Input/templates/PasswordInput.tsx +197 -0
  184. package/dist/lib/components/Input/templates/SearchInput.tsx +140 -0
  185. package/dist/lib/components/Input/templates/SelectInput.tsx +116 -0
  186. package/dist/lib/components/Input/templates/TextInput.tsx +116 -0
  187. package/dist/lib/components/Input/templates/TextareaInput.tsx +43 -0
  188. package/dist/lib/components/Input/templates/TimeInput.tsx +126 -0
  189. package/dist/lib/components/Input/types.ts +24 -0
  190. package/dist/lib/components/InputCheck/InputCheck.tsx +138 -0
  191. package/dist/lib/components/InputCheck/index.ts +3 -0
  192. package/dist/lib/components/InputCheck/styles.tsx +284 -0
  193. package/dist/lib/components/InputCheck/types.ts +35 -0
  194. package/dist/lib/components/InputComponents/components/InputAndListContainer.tsx +51 -0
  195. package/dist/lib/components/InputComponents/components/InputButton.tsx +62 -0
  196. package/dist/lib/components/InputComponents/components/InputContainer.tsx +70 -0
  197. package/dist/lib/components/InputComponents/components/InputIcon.tsx +51 -0
  198. package/dist/lib/components/InputComponents/components/InputLeftContainer.tsx +29 -0
  199. package/dist/lib/components/InputComponents/components/InputPrefix.tsx +31 -0
  200. package/dist/lib/components/InputComponents/components/InputRightContainer.tsx +35 -0
  201. package/dist/lib/components/InputComponents/components/InputSuffix.tsx +31 -0
  202. package/dist/lib/components/InputComponents/components/InputValidationHelper.tsx +98 -0
  203. package/dist/lib/components/InputComponents/components/InputValidationIcon.tsx +66 -0
  204. package/dist/lib/components/InputComponents/components/InputWrapper.tsx +46 -0
  205. package/dist/lib/components/InputComponents/components/ListInput.tsx +51 -0
  206. package/dist/lib/components/InputComponents/components/ListInputItem.tsx +56 -0
  207. package/dist/lib/components/InputComponents/index.ts +15 -0
  208. package/dist/lib/components/InputComponents/styles.tsx +738 -0
  209. package/dist/lib/components/InputComponents/types.ts +289 -0
  210. package/dist/lib/components/InputContainer/HelperBottom.tsx +96 -0
  211. package/dist/lib/components/InputContainer/InputContainer.tsx +132 -0
  212. package/dist/lib/components/InputContainer/index.ts +3 -0
  213. package/dist/lib/components/InputContainer/styles.tsx +89 -0
  214. package/dist/lib/components/InputContainer/subtypes.ts +10 -0
  215. package/dist/lib/components/InputContainer/types.ts +25 -0
  216. package/dist/lib/components/InputCounter/InputCounter.tsx +287 -0
  217. package/dist/lib/components/InputCounter/index.ts +3 -0
  218. package/dist/lib/components/InputCounter/styles.tsx +53 -0
  219. package/dist/lib/components/InputCounter/subtypes.ts +9 -0
  220. package/dist/lib/components/InputCounter/types.ts +51 -0
  221. package/dist/lib/components/InputImage/EmptyContainer.tsx +41 -0
  222. package/dist/lib/components/InputImage/HoverContainer.tsx +48 -0
  223. package/dist/lib/components/InputImage/InputImage.tsx +151 -0
  224. package/dist/lib/components/InputImage/index.ts +3 -0
  225. package/dist/lib/components/InputImage/styles.tsx +115 -0
  226. package/dist/lib/components/InputImage/subtypes.ts +30 -0
  227. package/dist/lib/components/InputImage/types.ts +25 -0
  228. package/dist/lib/components/InputPhone/InputPhone.tsx +386 -0
  229. package/dist/lib/components/InputPhone/index.ts +3 -0
  230. package/dist/lib/components/InputPhone/styles.tsx +219 -0
  231. package/dist/lib/components/InputPhone/types.ts +35 -0
  232. package/dist/lib/components/InputPhone/utils/countries.ts +648 -0
  233. package/dist/lib/components/InputPhone/utils/flags/ac.svg +76 -0
  234. package/dist/lib/components/InputPhone/utils/flags/ad.svg +150 -0
  235. package/dist/lib/components/InputPhone/utils/flags/ae.svg +6 -0
  236. package/dist/lib/components/InputPhone/utils/flags/af.svg +81 -0
  237. package/dist/lib/components/InputPhone/utils/flags/ag.svg +14 -0
  238. package/dist/lib/components/InputPhone/utils/flags/ai.svg +758 -0
  239. package/dist/lib/components/InputPhone/utils/flags/al.svg +5 -0
  240. package/dist/lib/components/InputPhone/utils/flags/am.svg +5 -0
  241. package/dist/lib/components/InputPhone/utils/flags/ao.svg +13 -0
  242. package/dist/lib/components/InputPhone/utils/flags/aq.svg +5 -0
  243. package/dist/lib/components/InputPhone/utils/flags/ar.svg +32 -0
  244. package/dist/lib/components/InputPhone/utils/flags/as.svg +72 -0
  245. package/dist/lib/components/InputPhone/utils/flags/at.svg +6 -0
  246. package/dist/lib/components/InputPhone/utils/flags/au.svg +8 -0
  247. package/dist/lib/components/InputPhone/utils/flags/aw.svg +186 -0
  248. package/dist/lib/components/InputPhone/utils/flags/ax.svg +18 -0
  249. package/dist/lib/components/InputPhone/utils/flags/az.svg +8 -0
  250. package/dist/lib/components/InputPhone/utils/flags/ba.svg +12 -0
  251. package/dist/lib/components/InputPhone/utils/flags/bb.svg +6 -0
  252. package/dist/lib/components/InputPhone/utils/flags/bd.svg +4 -0
  253. package/dist/lib/components/InputPhone/utils/flags/be.svg +7 -0
  254. package/dist/lib/components/InputPhone/utils/flags/bf.svg +7 -0
  255. package/dist/lib/components/InputPhone/utils/flags/bg.svg +7 -0
  256. package/dist/lib/components/InputPhone/utils/flags/bh.svg +4 -0
  257. package/dist/lib/components/InputPhone/utils/flags/bi.svg +15 -0
  258. package/dist/lib/components/InputPhone/utils/flags/bj.svg +14 -0
  259. package/dist/lib/components/InputPhone/utils/flags/bl.svg +7 -0
  260. package/dist/lib/components/InputPhone/utils/flags/bm.svg +97 -0
  261. package/dist/lib/components/InputPhone/utils/flags/bn.svg +36 -0
  262. package/dist/lib/components/InputPhone/utils/flags/bo.svg +676 -0
  263. package/dist/lib/components/InputPhone/utils/flags/bq.svg +5 -0
  264. package/dist/lib/components/InputPhone/utils/flags/br.svg +45 -0
  265. package/dist/lib/components/InputPhone/utils/flags/bs.svg +13 -0
  266. package/dist/lib/components/InputPhone/utils/flags/bt.svg +89 -0
  267. package/dist/lib/components/InputPhone/utils/flags/bv.svg +13 -0
  268. package/dist/lib/components/InputPhone/utils/flags/bw.svg +7 -0
  269. package/dist/lib/components/InputPhone/utils/flags/by.svg +20 -0
  270. package/dist/lib/components/InputPhone/utils/flags/bz.svg +145 -0
  271. package/dist/lib/components/InputPhone/utils/flags/ca.svg +4 -0
  272. package/dist/lib/components/InputPhone/utils/flags/cc.svg +19 -0
  273. package/dist/lib/components/InputPhone/utils/flags/cd.svg +5 -0
  274. package/dist/lib/components/InputPhone/utils/flags/cefta.svg +13 -0
  275. package/dist/lib/components/InputPhone/utils/flags/cf.svg +15 -0
  276. package/dist/lib/components/InputPhone/utils/flags/cg.svg +12 -0
  277. package/dist/lib/components/InputPhone/utils/flags/ch.svg +9 -0
  278. package/dist/lib/components/InputPhone/utils/flags/ci.svg +7 -0
  279. package/dist/lib/components/InputPhone/utils/flags/ck.svg +9 -0
  280. package/dist/lib/components/InputPhone/utils/flags/cl.svg +13 -0
  281. package/dist/lib/components/InputPhone/utils/flags/cm.svg +15 -0
  282. package/dist/lib/components/InputPhone/utils/flags/cn.svg +11 -0
  283. package/dist/lib/components/InputPhone/utils/flags/co.svg +7 -0
  284. package/dist/lib/components/InputPhone/utils/flags/cp.svg +7 -0
  285. package/dist/lib/components/InputPhone/utils/flags/cr.svg +7 -0
  286. package/dist/lib/components/InputPhone/utils/flags/cu.svg +13 -0
  287. package/dist/lib/components/InputPhone/utils/flags/cv.svg +13 -0
  288. package/dist/lib/components/InputPhone/utils/flags/cw.svg +14 -0
  289. package/dist/lib/components/InputPhone/utils/flags/cx.svg +15 -0
  290. package/dist/lib/components/InputPhone/utils/flags/cy.svg +6 -0
  291. package/dist/lib/components/InputPhone/utils/flags/cz.svg +5 -0
  292. package/dist/lib/components/InputPhone/utils/flags/de.svg +5 -0
  293. package/dist/lib/components/InputPhone/utils/flags/dg.svg +129 -0
  294. package/dist/lib/components/InputPhone/utils/flags/dj.svg +13 -0
  295. package/dist/lib/components/InputPhone/utils/flags/dk.svg +5 -0
  296. package/dist/lib/components/InputPhone/utils/flags/dm.svg +152 -0
  297. package/dist/lib/components/InputPhone/utils/flags/do.svg +6745 -0
  298. package/dist/lib/components/InputPhone/utils/flags/dz.svg +5 -0
  299. package/dist/lib/components/InputPhone/utils/flags/ea.svg +544 -0
  300. package/dist/lib/components/InputPhone/utils/flags/ec.svg +138 -0
  301. package/dist/lib/components/InputPhone/utils/flags/ee.svg +7 -0
  302. package/dist/lib/components/InputPhone/utils/flags/eg.svg +38 -0
  303. package/dist/lib/components/InputPhone/utils/flags/eh.svg +16 -0
  304. package/dist/lib/components/InputPhone/utils/flags/er.svg +8 -0
  305. package/dist/lib/components/InputPhone/utils/flags/es-ct.svg +4 -0
  306. package/dist/lib/components/InputPhone/utils/flags/es-ga.svg +187 -0
  307. package/dist/lib/components/InputPhone/utils/flags/es.svg +544 -0
  308. package/dist/lib/components/InputPhone/utils/flags/et.svg +14 -0
  309. package/dist/lib/components/InputPhone/utils/flags/eu.svg +28 -0
  310. package/dist/lib/components/InputPhone/utils/flags/fi.svg +5 -0
  311. package/dist/lib/components/InputPhone/utils/flags/fj.svg +120 -0
  312. package/dist/lib/components/InputPhone/utils/flags/fk.svg +90 -0
  313. package/dist/lib/components/InputPhone/utils/flags/fm.svg +11 -0
  314. package/dist/lib/components/InputPhone/utils/flags/fo.svg +12 -0
  315. package/dist/lib/components/InputPhone/utils/flags/fr.svg +7 -0
  316. package/dist/lib/components/InputPhone/utils/flags/ga.svg +7 -0
  317. package/dist/lib/components/InputPhone/utils/flags/gb-eng.svg +5 -0
  318. package/dist/lib/components/InputPhone/utils/flags/gb-nir.svg +132 -0
  319. package/dist/lib/components/InputPhone/utils/flags/gb-sct.svg +4 -0
  320. package/dist/lib/components/InputPhone/utils/flags/gb-wls.svg +9 -0
  321. package/dist/lib/components/InputPhone/utils/flags/gb.svg +7 -0
  322. package/dist/lib/components/InputPhone/utils/flags/gd.svg +27 -0
  323. package/dist/lib/components/InputPhone/utils/flags/ge.svg +6 -0
  324. package/dist/lib/components/InputPhone/utils/flags/gf.svg +7 -0
  325. package/dist/lib/components/InputPhone/utils/flags/gg.svg +9 -0
  326. package/dist/lib/components/InputPhone/utils/flags/gh.svg +6 -0
  327. package/dist/lib/components/InputPhone/utils/flags/gi.svg +32 -0
  328. package/dist/lib/components/InputPhone/utils/flags/gl.svg +4 -0
  329. package/dist/lib/components/InputPhone/utils/flags/gm.svg +14 -0
  330. package/dist/lib/components/InputPhone/utils/flags/gn.svg +7 -0
  331. package/dist/lib/components/InputPhone/utils/flags/gp.svg +7 -0
  332. package/dist/lib/components/InputPhone/utils/flags/gq.svg +23 -0
  333. package/dist/lib/components/InputPhone/utils/flags/gr.svg +16 -0
  334. package/dist/lib/components/InputPhone/utils/flags/gs.svg +133 -0
  335. package/dist/lib/components/InputPhone/utils/flags/gt.svg +220 -0
  336. package/dist/lib/components/InputPhone/utils/flags/gu.svg +23 -0
  337. package/dist/lib/components/InputPhone/utils/flags/gw.svg +13 -0
  338. package/dist/lib/components/InputPhone/utils/flags/gy.svg +9 -0
  339. package/dist/lib/components/InputPhone/utils/flags/hk.svg +30 -0
  340. package/dist/lib/components/InputPhone/utils/flags/hm.svg +8 -0
  341. package/dist/lib/components/InputPhone/utils/flags/hn.svg +18 -0
  342. package/dist/lib/components/InputPhone/utils/flags/hr.svg +58 -0
  343. package/dist/lib/components/InputPhone/utils/flags/ht.svg +116 -0
  344. package/dist/lib/components/InputPhone/utils/flags/hu.svg +7 -0
  345. package/dist/lib/components/InputPhone/utils/flags/ic.svg +7 -0
  346. package/dist/lib/components/InputPhone/utils/flags/id.svg +4 -0
  347. package/dist/lib/components/InputPhone/utils/flags/ie.svg +7 -0
  348. package/dist/lib/components/InputPhone/utils/flags/il.svg +14 -0
  349. package/dist/lib/components/InputPhone/utils/flags/im.svg +36 -0
  350. package/dist/lib/components/InputPhone/utils/flags/in.svg +25 -0
  351. package/dist/lib/components/InputPhone/utils/flags/io.svg +129 -0
  352. package/dist/lib/components/InputPhone/utils/flags/iq.svg +10 -0
  353. package/dist/lib/components/InputPhone/utils/flags/ir.svg +219 -0
  354. package/dist/lib/components/InputPhone/utils/flags/is.svg +12 -0
  355. package/dist/lib/components/InputPhone/utils/flags/it.svg +7 -0
  356. package/dist/lib/components/InputPhone/utils/flags/je.svg +45 -0
  357. package/dist/lib/components/InputPhone/utils/flags/jm.svg +8 -0
  358. package/dist/lib/components/InputPhone/utils/flags/jo.svg +16 -0
  359. package/dist/lib/components/InputPhone/utils/flags/jp.svg +11 -0
  360. package/dist/lib/components/InputPhone/utils/flags/ke.svg +23 -0
  361. package/dist/lib/components/InputPhone/utils/flags/kg.svg +15 -0
  362. package/dist/lib/components/InputPhone/utils/flags/kh.svg +61 -0
  363. package/dist/lib/components/InputPhone/utils/flags/ki.svg +36 -0
  364. package/dist/lib/components/InputPhone/utils/flags/km.svg +16 -0
  365. package/dist/lib/components/InputPhone/utils/flags/kn.svg +14 -0
  366. package/dist/lib/components/InputPhone/utils/flags/kp.svg +15 -0
  367. package/dist/lib/components/InputPhone/utils/flags/kr.svg +24 -0
  368. package/dist/lib/components/InputPhone/utils/flags/kw.svg +13 -0
  369. package/dist/lib/components/InputPhone/utils/flags/ky.svg +109 -0
  370. package/dist/lib/components/InputPhone/utils/flags/kz.svg +23 -0
  371. package/dist/lib/components/InputPhone/utils/flags/la.svg +12 -0
  372. package/dist/lib/components/InputPhone/utils/flags/lb.svg +15 -0
  373. package/dist/lib/components/InputPhone/utils/flags/lc.svg +8 -0
  374. package/dist/lib/components/InputPhone/utils/flags/li.svg +43 -0
  375. package/dist/lib/components/InputPhone/utils/flags/lk.svg +22 -0
  376. package/dist/lib/components/InputPhone/utils/flags/lr.svg +14 -0
  377. package/dist/lib/components/InputPhone/utils/flags/ls.svg +8 -0
  378. package/dist/lib/components/InputPhone/utils/flags/lt.svg +7 -0
  379. package/dist/lib/components/InputPhone/utils/flags/lu.svg +5 -0
  380. package/dist/lib/components/InputPhone/utils/flags/lv.svg +6 -0
  381. package/dist/lib/components/InputPhone/utils/flags/ly.svg +13 -0
  382. package/dist/lib/components/InputPhone/utils/flags/ma.svg +4 -0
  383. package/dist/lib/components/InputPhone/utils/flags/mc.svg +6 -0
  384. package/dist/lib/components/InputPhone/utils/flags/md.svg +70 -0
  385. package/dist/lib/components/InputPhone/utils/flags/me.svg +116 -0
  386. package/dist/lib/components/InputPhone/utils/flags/mf.svg +7 -0
  387. package/dist/lib/components/InputPhone/utils/flags/mg.svg +7 -0
  388. package/dist/lib/components/InputPhone/utils/flags/mh.svg +7 -0
  389. package/dist/lib/components/InputPhone/utils/flags/mk.svg +5 -0
  390. package/dist/lib/components/InputPhone/utils/flags/ml.svg +7 -0
  391. package/dist/lib/components/InputPhone/utils/flags/mm.svg +12 -0
  392. package/dist/lib/components/InputPhone/utils/flags/mn.svg +14 -0
  393. package/dist/lib/components/InputPhone/utils/flags/mo.svg +9 -0
  394. package/dist/lib/components/InputPhone/utils/flags/mp.svg +86 -0
  395. package/dist/lib/components/InputPhone/utils/flags/mq.svg +7 -0
  396. package/dist/lib/components/InputPhone/utils/flags/mr.svg +6 -0
  397. package/dist/lib/components/InputPhone/utils/flags/ms.svg +33 -0
  398. package/dist/lib/components/InputPhone/utils/flags/mt.svg +49 -0
  399. package/dist/lib/components/InputPhone/utils/flags/mu.svg +8 -0
  400. package/dist/lib/components/InputPhone/utils/flags/mv.svg +6 -0
  401. package/dist/lib/components/InputPhone/utils/flags/mw.svg +10 -0
  402. package/dist/lib/components/InputPhone/utils/flags/mx.svg +382 -0
  403. package/dist/lib/components/InputPhone/utils/flags/my.svg +7 -0
  404. package/dist/lib/components/InputPhone/utils/flags/mz.svg +21 -0
  405. package/dist/lib/components/InputPhone/utils/flags/na.svg +16 -0
  406. package/dist/lib/components/InputPhone/utils/flags/nc.svg +13 -0
  407. package/dist/lib/components/InputPhone/utils/flags/ne.svg +6 -0
  408. package/dist/lib/components/InputPhone/utils/flags/nf.svg +9 -0
  409. package/dist/lib/components/InputPhone/utils/flags/ng.svg +6 -0
  410. package/dist/lib/components/InputPhone/utils/flags/ni.svg +129 -0
  411. package/dist/lib/components/InputPhone/utils/flags/nl.svg +5 -0
  412. package/dist/lib/components/InputPhone/utils/flags/no.svg +7 -0
  413. package/dist/lib/components/InputPhone/utils/flags/np.svg +14 -0
  414. package/dist/lib/components/InputPhone/utils/flags/nr.svg +12 -0
  415. package/dist/lib/components/InputPhone/utils/flags/nu.svg +10 -0
  416. package/dist/lib/components/InputPhone/utils/flags/nz.svg +36 -0
  417. package/dist/lib/components/InputPhone/utils/flags/om.svg +115 -0
  418. package/dist/lib/components/InputPhone/utils/flags/pa.svg +14 -0
  419. package/dist/lib/components/InputPhone/utils/flags/pe.svg +244 -0
  420. package/dist/lib/components/InputPhone/utils/flags/pf.svg +19 -0
  421. package/dist/lib/components/InputPhone/utils/flags/pg.svg +9 -0
  422. package/dist/lib/components/InputPhone/utils/flags/ph.svg +6 -0
  423. package/dist/lib/components/InputPhone/utils/flags/pk.svg +15 -0
  424. package/dist/lib/components/InputPhone/utils/flags/pl.svg +6 -0
  425. package/dist/lib/components/InputPhone/utils/flags/pm.svg +7 -0
  426. package/dist/lib/components/InputPhone/utils/flags/pn.svg +53 -0
  427. package/dist/lib/components/InputPhone/utils/flags/pr.svg +13 -0
  428. package/dist/lib/components/InputPhone/utils/flags/ps.svg +15 -0
  429. package/dist/lib/components/InputPhone/utils/flags/pt.svg +57 -0
  430. package/dist/lib/components/InputPhone/utils/flags/pw.svg +11 -0
  431. package/dist/lib/components/InputPhone/utils/flags/py.svg +157 -0
  432. package/dist/lib/components/InputPhone/utils/flags/qa.svg +4 -0
  433. package/dist/lib/components/InputPhone/utils/flags/re.svg +7 -0
  434. package/dist/lib/components/InputPhone/utils/flags/ro.svg +7 -0
  435. package/dist/lib/components/InputPhone/utils/flags/rs.svg +292 -0
  436. package/dist/lib/components/InputPhone/utils/flags/ru.svg +7 -0
  437. package/dist/lib/components/InputPhone/utils/flags/rw.svg +13 -0
  438. package/dist/lib/components/InputPhone/utils/flags/sa.svg +26 -0
  439. package/dist/lib/components/InputPhone/utils/flags/sb.svg +13 -0
  440. package/dist/lib/components/InputPhone/utils/flags/sc.svg +7 -0
  441. package/dist/lib/components/InputPhone/utils/flags/sd.svg +13 -0
  442. package/dist/lib/components/InputPhone/utils/flags/se.svg +4 -0
  443. package/dist/lib/components/InputPhone/utils/flags/sg.svg +13 -0
  444. package/dist/lib/components/InputPhone/utils/flags/sh.svg +76 -0
  445. package/dist/lib/components/InputPhone/utils/flags/si.svg +18 -0
  446. package/dist/lib/components/InputPhone/utils/flags/sj.svg +7 -0
  447. package/dist/lib/components/InputPhone/utils/flags/sk.svg +9 -0
  448. package/dist/lib/components/InputPhone/utils/flags/sl.svg +7 -0
  449. package/dist/lib/components/InputPhone/utils/flags/sm.svg +75 -0
  450. package/dist/lib/components/InputPhone/utils/flags/sn.svg +8 -0
  451. package/dist/lib/components/InputPhone/utils/flags/so.svg +11 -0
  452. package/dist/lib/components/InputPhone/utils/flags/sr.svg +6 -0
  453. package/dist/lib/components/InputPhone/utils/flags/ss.svg +8 -0
  454. package/dist/lib/components/InputPhone/utils/flags/st.svg +16 -0
  455. package/dist/lib/components/InputPhone/utils/flags/sv.svg +594 -0
  456. package/dist/lib/components/InputPhone/utils/flags/sx.svg +56 -0
  457. package/dist/lib/components/InputPhone/utils/flags/sy.svg +6 -0
  458. package/dist/lib/components/InputPhone/utils/flags/sz.svg +34 -0
  459. package/dist/lib/components/InputPhone/utils/flags/ta.svg +76 -0
  460. package/dist/lib/components/InputPhone/utils/flags/tc.svg +50 -0
  461. package/dist/lib/components/InputPhone/utils/flags/td.svg +7 -0
  462. package/dist/lib/components/InputPhone/utils/flags/tf.svg +15 -0
  463. package/dist/lib/components/InputPhone/utils/flags/tg.svg +14 -0
  464. package/dist/lib/components/InputPhone/utils/flags/th.svg +7 -0
  465. package/dist/lib/components/InputPhone/utils/flags/tj.svg +22 -0
  466. package/dist/lib/components/InputPhone/utils/flags/tk.svg +5 -0
  467. package/dist/lib/components/InputPhone/utils/flags/tl.svg +13 -0
  468. package/dist/lib/components/InputPhone/utils/flags/tm.svg +205 -0
  469. package/dist/lib/components/InputPhone/utils/flags/tn.svg +13 -0
  470. package/dist/lib/components/InputPhone/utils/flags/to.svg +10 -0
  471. package/dist/lib/components/InputPhone/utils/flags/tr.svg +8 -0
  472. package/dist/lib/components/InputPhone/utils/flags/tt.svg +5 -0
  473. package/dist/lib/components/InputPhone/utils/flags/tv.svg +9 -0
  474. package/dist/lib/components/InputPhone/utils/flags/tw.svg +34 -0
  475. package/dist/lib/components/InputPhone/utils/flags/tz.svg +13 -0
  476. package/dist/lib/components/InputPhone/utils/flags/ua.svg +6 -0
  477. package/dist/lib/components/InputPhone/utils/flags/ug.svg +30 -0
  478. package/dist/lib/components/InputPhone/utils/flags/um.svg +15 -0
  479. package/dist/lib/components/InputPhone/utils/flags/un.svg +16 -0
  480. package/dist/lib/components/InputPhone/utils/flags/us.svg +10 -0
  481. package/dist/lib/components/InputPhone/utils/flags/uy.svg +28 -0
  482. package/dist/lib/components/InputPhone/utils/flags/uz.svg +30 -0
  483. package/dist/lib/components/InputPhone/utils/flags/va.svg +479 -0
  484. package/dist/lib/components/InputPhone/utils/flags/vc.svg +8 -0
  485. package/dist/lib/components/InputPhone/utils/flags/ve.svg +26 -0
  486. package/dist/lib/components/InputPhone/utils/flags/vg.svg +63 -0
  487. package/dist/lib/components/InputPhone/utils/flags/vi.svg +28 -0
  488. package/dist/lib/components/InputPhone/utils/flags/vn.svg +11 -0
  489. package/dist/lib/components/InputPhone/utils/flags/vu.svg +21 -0
  490. package/dist/lib/components/InputPhone/utils/flags/wf.svg +7 -0
  491. package/dist/lib/components/InputPhone/utils/flags/ws.svg +7 -0
  492. package/dist/lib/components/InputPhone/utils/flags/xk.svg +8 -0
  493. package/dist/lib/components/InputPhone/utils/flags/xx.svg +4 -0
  494. package/dist/lib/components/InputPhone/utils/flags/ye.svg +7 -0
  495. package/dist/lib/components/InputPhone/utils/flags/yt.svg +7 -0
  496. package/dist/lib/components/InputPhone/utils/flags/za.svg +17 -0
  497. package/dist/lib/components/InputPhone/utils/flags/zm.svg +27 -0
  498. package/dist/lib/components/InputPhone/utils/flags/zw.svg +21 -0
  499. package/dist/lib/components/InputPin/InputPin.tsx +138 -0
  500. package/dist/lib/components/InputPin/index.ts +3 -0
  501. package/dist/lib/components/InputPin/styles.tsx +70 -0
  502. package/dist/lib/components/InputPin/subtypes.ts +11 -0
  503. package/dist/lib/components/InputPin/types.ts +31 -0
  504. package/dist/lib/components/InputSlider/InputSlider.tsx +184 -0
  505. package/dist/lib/components/InputSlider/Slider.tsx +52 -0
  506. package/dist/lib/components/InputSlider/index.ts +3 -0
  507. package/dist/lib/components/InputSlider/styles.tsx +292 -0
  508. package/dist/lib/components/InputSlider/types.ts +14 -0
  509. package/dist/lib/components/Key/Key.tsx +45 -0
  510. package/dist/lib/components/Key/index.ts +3 -0
  511. package/dist/lib/components/Key/styles.tsx +29 -0
  512. package/dist/lib/components/Key/types.ts +11 -0
  513. package/dist/lib/components/LibIcon/LibIcon.tsx +35 -0
  514. package/dist/lib/components/LibIcon/index.ts +3 -0
  515. package/dist/lib/components/LibIcon/types.ts +9 -0
  516. package/dist/lib/components/Link/Link.tsx +68 -0
  517. package/dist/lib/components/Link/index.ts +3 -0
  518. package/dist/lib/components/Link/types.ts +9 -0
  519. package/dist/lib/components/Linkify/Linkify.tsx +51 -0
  520. package/dist/lib/components/Linkify/index.ts +3 -0
  521. package/dist/lib/components/Linkify/types.ts +8 -0
  522. package/dist/lib/components/ListGroup/ListGroup.tsx +113 -0
  523. package/dist/lib/components/ListGroup/ListGroupItem.tsx +164 -0
  524. package/dist/lib/components/ListGroup/ListGroupTitle.tsx +56 -0
  525. package/dist/lib/components/ListGroup/index.ts +5 -0
  526. package/dist/lib/components/ListGroup/styles.tsx +179 -0
  527. package/dist/lib/components/ListGroup/types.ts +114 -0
  528. package/dist/lib/components/Loader/Loader.tsx +35 -0
  529. package/dist/lib/components/Loader/index.ts +3 -0
  530. package/dist/lib/components/Loader/styles.tsx +140 -0
  531. package/dist/lib/components/Loader/templates/LoaderFour.tsx +24 -0
  532. package/dist/lib/components/Loader/templates/LoaderOne.tsx +24 -0
  533. package/dist/lib/components/Loader/templates/LoaderThree.tsx +29 -0
  534. package/dist/lib/components/Loader/templates/LoaderTwo.tsx +24 -0
  535. package/dist/lib/components/Loader/types.ts +25 -0
  536. package/dist/lib/components/Main/Main.tsx +45 -0
  537. package/dist/lib/components/Main/index.ts +3 -0
  538. package/dist/lib/components/Main/styles.tsx +61 -0
  539. package/dist/lib/components/Main/types.ts +19 -0
  540. package/dist/lib/components/MarkdownContainer/MarkdownContainer.tsx +35 -0
  541. package/dist/lib/components/MarkdownContainer/index.ts +3 -0
  542. package/dist/lib/components/MarkdownContainer/styles.tsx +17 -0
  543. package/dist/lib/components/MarkdownContainer/types.ts +9 -0
  544. package/dist/lib/components/MarkdownEditor/MarkdownEditor.tsx +196 -0
  545. package/dist/lib/components/MarkdownEditor/MdEditorButtons/EditorButtonTitles.tsx +77 -0
  546. package/dist/lib/components/MarkdownEditor/MdEditorButtons/EditorButtons.tsx +75 -0
  547. package/dist/lib/components/MarkdownEditor/MdEditorButtons/MarkdownButtons.tsx +54 -0
  548. package/dist/lib/components/MarkdownEditor/MdEditorInput.tsx +98 -0
  549. package/dist/lib/components/MarkdownEditor/index.ts +3 -0
  550. package/dist/lib/components/MarkdownEditor/markdown-buttons.tsx +182 -0
  551. package/dist/lib/components/MarkdownEditor/styles.tsx +187 -0
  552. package/dist/lib/components/MarkdownEditor/subtypes.ts +55 -0
  553. package/dist/lib/components/MarkdownEditor/types.ts +59 -0
  554. package/dist/lib/components/Masonry/Masonry.tsx +67 -0
  555. package/dist/lib/components/Masonry/index.ts +3 -0
  556. package/dist/lib/components/Masonry/styles.tsx +24 -0
  557. package/dist/lib/components/Masonry/types.ts +10 -0
  558. package/dist/lib/components/Masonry/utils.ts +30 -0
  559. package/dist/lib/components/Messaging/Message.tsx +106 -0
  560. package/dist/lib/components/Messaging/MessageForm.tsx +144 -0
  561. package/dist/lib/components/Messaging/MessagesContainer.tsx +29 -0
  562. package/dist/lib/components/Messaging/MessagesList.tsx +136 -0
  563. package/dist/lib/components/Messaging/Messaging.tsx +123 -0
  564. package/dist/lib/components/Messaging/index.ts +7 -0
  565. package/dist/lib/components/Messaging/styles.tsx +177 -0
  566. package/dist/lib/components/Messaging/types.ts +131 -0
  567. package/dist/lib/components/Modal/Modal.tsx +127 -0
  568. package/dist/lib/components/Modal/index.ts +3 -0
  569. package/dist/lib/components/Modal/styles.tsx +62 -0
  570. package/dist/lib/components/Modal/types.ts +38 -0
  571. package/dist/lib/components/PageLayout/PageLayout.tsx +80 -0
  572. package/dist/lib/components/PageLayout/index.ts +3 -0
  573. package/dist/lib/components/PageLayout/types.ts +47 -0
  574. package/dist/lib/components/PageLoading/PageLoading.tsx +64 -0
  575. package/dist/lib/components/PageLoading/index.ts +3 -0
  576. package/dist/lib/components/PageLoading/styles.tsx +24 -0
  577. package/dist/lib/components/PageLoading/types.ts +15 -0
  578. package/dist/lib/components/Pagination/Pagination.tsx +265 -0
  579. package/dist/lib/components/Pagination/PaginationButton.tsx +51 -0
  580. package/dist/lib/components/Pagination/index.ts +4 -0
  581. package/dist/lib/components/Pagination/styles.tsx +72 -0
  582. package/dist/lib/components/Pagination/types.ts +61 -0
  583. package/dist/lib/components/Paginator/Paginator.tsx +162 -0
  584. package/dist/lib/components/Paginator/index.ts +3 -0
  585. package/dist/lib/components/Paginator/styles.tsx +36 -0
  586. package/dist/lib/components/Paginator/types.ts +16 -0
  587. package/dist/lib/components/ProgressBar/ProgressBar.tsx +68 -0
  588. package/dist/lib/components/ProgressBar/index.ts +3 -0
  589. package/dist/lib/components/ProgressBar/styles.tsx +55 -0
  590. package/dist/lib/components/ProgressBar/types.ts +13 -0
  591. package/dist/lib/components/ProgressCircle/Circle.tsx +30 -0
  592. package/dist/lib/components/ProgressCircle/ProgressCircle.tsx +93 -0
  593. package/dist/lib/components/ProgressCircle/ProgressCircleFn.tsx +48 -0
  594. package/dist/lib/components/ProgressCircle/Value.tsx +31 -0
  595. package/dist/lib/components/ProgressCircle/clean-percentage.ts +7 -0
  596. package/dist/lib/components/ProgressCircle/index.ts +3 -0
  597. package/dist/lib/components/ProgressCircle/styles.tsx +55 -0
  598. package/dist/lib/components/ProgressCircle/subtypes.ts +11 -0
  599. package/dist/lib/components/ProgressCircle/types.ts +31 -0
  600. package/dist/lib/components/Rating/Rating.tsx +177 -0
  601. package/dist/lib/components/Rating/index.ts +3 -0
  602. package/dist/lib/components/Rating/styles.tsx +52 -0
  603. package/dist/lib/components/Rating/types.ts +24 -0
  604. package/dist/lib/components/ResetScroll/ResetScroll.tsx +22 -0
  605. package/dist/lib/components/ResetScroll/index.ts +3 -0
  606. package/dist/lib/components/Section/Section.tsx +30 -0
  607. package/dist/lib/components/Section/index.ts +3 -0
  608. package/dist/lib/components/Section/styles.tsx +24 -0
  609. package/dist/lib/components/Section/types.ts +7 -0
  610. package/dist/lib/components/Select/Select.tsx +284 -0
  611. package/dist/lib/components/Select/SelectButton.tsx +58 -0
  612. package/dist/lib/components/Select/index.ts +3 -0
  613. package/dist/lib/components/Select/styles.tsx +22 -0
  614. package/dist/lib/components/Select/subtypes.ts +32 -0
  615. package/dist/lib/components/Select/types.ts +33 -0
  616. package/dist/lib/components/Skeleton/Skeleton.tsx +60 -0
  617. package/dist/lib/components/Skeleton/SkeletonCard.tsx +78 -0
  618. package/dist/lib/components/Skeleton/SkeletonShine.tsx +26 -0
  619. package/dist/lib/components/Skeleton/index.ts +5 -0
  620. package/dist/lib/components/Skeleton/styles.tsx +102 -0
  621. package/dist/lib/components/Skeleton/subtypes.ts +16 -0
  622. package/dist/lib/components/Skeleton/types.ts +39 -0
  623. package/dist/lib/components/Slideshow/Slideshow.tsx +218 -0
  624. package/dist/lib/components/Slideshow/SlideshowButton.tsx +99 -0
  625. package/dist/lib/components/Slideshow/SlideshowPagination.tsx +84 -0
  626. package/dist/lib/components/Slideshow/index.ts +3 -0
  627. package/dist/lib/components/Slideshow/styles.tsx +361 -0
  628. package/dist/lib/components/Slideshow/subtypes.ts +22 -0
  629. package/dist/lib/components/Slideshow/types.ts +99 -0
  630. package/dist/lib/components/SrOnly/SrOnly.tsx +23 -0
  631. package/dist/lib/components/SrOnly/index.ts +3 -0
  632. package/dist/lib/components/SrOnly/styles.tsx +21 -0
  633. package/dist/lib/components/SrOnly/types.ts +5 -0
  634. package/dist/lib/components/Stepper/Step.tsx +118 -0
  635. package/dist/lib/components/Stepper/Stepper.tsx +96 -0
  636. package/dist/lib/components/Stepper/index.ts +4 -0
  637. package/dist/lib/components/Stepper/styles.tsx +115 -0
  638. package/dist/lib/components/Stepper/types.ts +48 -0
  639. package/dist/lib/components/Sticky/Sticky.tsx +30 -0
  640. package/dist/lib/components/Sticky/index.ts +3 -0
  641. package/dist/lib/components/Sticky/styles.tsx +15 -0
  642. package/dist/lib/components/Sticky/types.ts +7 -0
  643. package/dist/lib/components/Table/TBody.tsx +17 -0
  644. package/dist/lib/components/Table/THead.tsx +17 -0
  645. package/dist/lib/components/Table/Table.tsx +124 -0
  646. package/dist/lib/components/Table/Td.tsx +26 -0
  647. package/dist/lib/components/Table/Tr.tsx +17 -0
  648. package/dist/lib/components/Table/index.ts +7 -0
  649. package/dist/lib/components/Table/styles.tsx +114 -0
  650. package/dist/lib/components/Table/types.ts +52 -0
  651. package/dist/lib/components/Tabs/TabButton.tsx +50 -0
  652. package/dist/lib/components/Tabs/TabItem.tsx +34 -0
  653. package/dist/lib/components/Tabs/Tabs.tsx +137 -0
  654. package/dist/lib/components/Tabs/TabsButtonsContainer.tsx +46 -0
  655. package/dist/lib/components/Tabs/TabsContainer.tsx +23 -0
  656. package/dist/lib/components/Tabs/index.ts +7 -0
  657. package/dist/lib/components/Tabs/styles.tsx +178 -0
  658. package/dist/lib/components/Tabs/types.ts +60 -0
  659. package/dist/lib/components/Tag/Tag.tsx +97 -0
  660. package/dist/lib/components/Tag/index.ts +3 -0
  661. package/dist/lib/components/Tag/styles.tsx +41 -0
  662. package/dist/lib/components/Tag/types.ts +43 -0
  663. package/dist/lib/components/Text/Text.tsx +69 -0
  664. package/dist/lib/components/Text/index.ts +3 -0
  665. package/dist/lib/components/Text/styles.tsx +230 -0
  666. package/dist/lib/components/Text/subtypes.ts +15 -0
  667. package/dist/lib/components/Text/templates/Blockquote.tsx +34 -0
  668. package/dist/lib/components/Text/templates/Dl.tsx +34 -0
  669. package/dist/lib/components/Text/templates/Em.tsx +34 -0
  670. package/dist/lib/components/Text/templates/H1.tsx +36 -0
  671. package/dist/lib/components/Text/templates/H2.tsx +36 -0
  672. package/dist/lib/components/Text/templates/H3.tsx +36 -0
  673. package/dist/lib/components/Text/templates/H4.tsx +36 -0
  674. package/dist/lib/components/Text/templates/H5.tsx +36 -0
  675. package/dist/lib/components/Text/templates/H6.tsx +34 -0
  676. package/dist/lib/components/Text/templates/Ol.tsx +34 -0
  677. package/dist/lib/components/Text/templates/P.tsx +34 -0
  678. package/dist/lib/components/Text/templates/Small.tsx +34 -0
  679. package/dist/lib/components/Text/templates/Strong.tsx +34 -0
  680. package/dist/lib/components/Text/templates/Ul.tsx +34 -0
  681. package/dist/lib/components/Text/types.ts +28 -0
  682. package/dist/lib/components/TextIcon/TextIcon.tsx +104 -0
  683. package/dist/lib/components/TextIcon/index.ts +3 -0
  684. package/dist/lib/components/TextIcon/styles.tsx +38 -0
  685. package/dist/lib/components/TextIcon/types.ts +21 -0
  686. package/dist/lib/components/TextIcon/utils.ts +57 -0
  687. package/dist/lib/components/Timepicker/Timepicker.tsx +295 -0
  688. package/dist/lib/components/Timepicker/index.ts +3 -0
  689. package/dist/lib/components/Timepicker/styles.tsx +34 -0
  690. package/dist/lib/components/Timepicker/types.ts +69 -0
  691. package/dist/lib/components/Toast/Toast.tsx +210 -0
  692. package/dist/lib/components/Toast/Toaster.tsx +168 -0
  693. package/dist/lib/components/Toast/index.ts +3 -0
  694. package/dist/lib/components/Toast/styles.tsx +249 -0
  695. package/dist/lib/components/Toast/types.ts +32 -0
  696. package/dist/lib/components/Tooltip/Tooltip.tsx +120 -0
  697. package/dist/lib/components/Tooltip/index.ts +3 -0
  698. package/dist/lib/components/Tooltip/styles.tsx +151 -0
  699. package/dist/lib/components/Tooltip/types.ts +22 -0
  700. package/dist/lib/components/Truncate/Truncate.tsx +113 -0
  701. package/dist/lib/components/Truncate/index.ts +3 -0
  702. package/dist/lib/components/Truncate/styles.tsx +37 -0
  703. package/dist/lib/components/Truncate/types.ts +7 -0
  704. package/dist/lib/components/Video/Video.tsx +66 -0
  705. package/dist/lib/components/Video/index.ts +3 -0
  706. package/dist/lib/components/Video/styles.tsx +24 -0
  707. package/dist/lib/components/Video/types.ts +22 -0
  708. package/dist/lib/components/Wrapper/Wrapper.tsx +43 -0
  709. package/dist/lib/components/Wrapper/index.ts +3 -0
  710. package/dist/lib/components/Wrapper/styles.tsx +29 -0
  711. package/dist/lib/components/Wrapper/types.ts +9 -0
  712. package/dist/lib/components/Youtube/Youtube.tsx +44 -0
  713. package/dist/lib/components/Youtube/index.ts +3 -0
  714. package/dist/lib/components/Youtube/styles.tsx +20 -0
  715. package/dist/lib/components/Youtube/types.ts +11 -0
  716. package/dist/lib/context/Theme.context.tsx +106 -0
  717. package/dist/lib/context/Toaster/Toaster.context.tsx +131 -0
  718. package/dist/lib/context/Toaster/index.ts +5 -0
  719. package/dist/lib/context/Toaster/toast.reducer.ts +36 -0
  720. package/dist/lib/hooks/index.ts +17 -0
  721. package/dist/lib/hooks/useClickOutside.tsx +37 -0
  722. package/dist/lib/hooks/useCopyToClipboard.tsx +33 -0
  723. package/dist/lib/hooks/useDebounce.tsx +21 -0
  724. package/dist/lib/hooks/useExportData.tsx +55 -0
  725. package/dist/lib/hooks/useFetch.tsx +25 -0
  726. package/dist/lib/hooks/useForm.tsx +28 -0
  727. package/dist/lib/hooks/useIsOverflow.ts +44 -0
  728. package/dist/lib/hooks/useKeyPress.tsx +95 -0
  729. package/dist/lib/hooks/useMaxWidth.tsx +28 -0
  730. package/dist/lib/hooks/useMergeRefs.ts +33 -0
  731. package/dist/lib/hooks/useMinWidth.tsx +28 -0
  732. package/dist/lib/hooks/usePaginatedData.tsx +37 -0
  733. package/dist/lib/hooks/usePagination.tsx +112 -0
  734. package/dist/lib/hooks/useTouchScreen.tsx +21 -0
  735. package/dist/lib/hooks/useTranslation.tsx +30 -0
  736. package/dist/lib/icons/ArrowUp.tsx +32 -0
  737. package/dist/lib/icons/Bold.tsx +32 -0
  738. package/dist/lib/icons/Calendar.tsx +40 -0
  739. package/dist/lib/icons/CaretDown.tsx +32 -0
  740. package/dist/lib/icons/Check.tsx +32 -0
  741. package/dist/lib/icons/CheckCircle.tsx +38 -0
  742. package/dist/lib/icons/ChevronDown.tsx +32 -0
  743. package/dist/lib/icons/ChevronLeft.tsx +32 -0
  744. package/dist/lib/icons/ChevronRight.tsx +32 -0
  745. package/dist/lib/icons/ChevronUp.tsx +32 -0
  746. package/dist/lib/icons/Clipboard.tsx +32 -0
  747. package/dist/lib/icons/Clock.tsx +35 -0
  748. package/dist/lib/icons/Close.tsx +32 -0
  749. package/dist/lib/icons/CloseCircle.tsx +38 -0
  750. package/dist/lib/icons/Code.tsx +32 -0
  751. package/dist/lib/icons/CodeBlock.tsx +42 -0
  752. package/dist/lib/icons/Comment.tsx +42 -0
  753. package/dist/lib/icons/Drag.tsx +32 -0
  754. package/dist/lib/icons/Edit.tsx +38 -0
  755. package/dist/lib/icons/EditorCode.tsx +36 -0
  756. package/dist/lib/icons/EditorLive.tsx +36 -0
  757. package/dist/lib/icons/EditorPreview.tsx +36 -0
  758. package/dist/lib/icons/Hide.tsx +32 -0
  759. package/dist/lib/icons/Image.tsx +42 -0
  760. package/dist/lib/icons/Italic.tsx +32 -0
  761. package/dist/lib/icons/Link.tsx +36 -0
  762. package/dist/lib/icons/Minus.tsx +29 -0
  763. package/dist/lib/icons/OrderedList.tsx +32 -0
  764. package/dist/lib/icons/Plus.tsx +32 -0
  765. package/dist/lib/icons/Quote.tsx +32 -0
  766. package/dist/lib/icons/Search.tsx +38 -0
  767. package/dist/lib/icons/Send.tsx +32 -0
  768. package/dist/lib/icons/Separator.tsx +32 -0
  769. package/dist/lib/icons/Show.tsx +38 -0
  770. package/dist/lib/icons/Star.tsx +32 -0
  771. package/dist/lib/icons/StarFull.tsx +32 -0
  772. package/dist/lib/icons/Strikethrough.tsx +32 -0
  773. package/dist/lib/icons/Underline.tsx +36 -0
  774. package/dist/lib/icons/UnorderedList.tsx +32 -0
  775. package/dist/lib/icons/index.ts +41 -0
  776. package/dist/lib/icons/styles.tsx +19 -0
  777. package/dist/lib/icons/types.ts +11 -0
  778. package/dist/lib/index.css +1422 -0
  779. package/dist/lib/index.ts +159 -0
  780. package/dist/lib/lib-utils/append-styles.ts +9 -0
  781. package/dist/lib/lib-utils/colors-maps.ts +176 -0
  782. package/dist/lib/lib-utils/get-highlighted-text.tsx +31 -0
  783. package/dist/lib/lib-utils/get-icon-size-from-font.ts +27 -0
  784. package/dist/lib/lib-utils/index.ts +11 -0
  785. package/dist/lib/lib-utils/round-icon-size.ts +7 -0
  786. package/dist/lib/lib-utils/transfom-search-keys.ts +15 -0
  787. package/dist/lib/modules-declare.d.ts +18 -0
  788. package/dist/lib/utils/StyleSheetManager.tsx +32 -0
  789. package/dist/lib/utils/index.ts +6 -0
  790. package/dist/lib/utils/lib-tokens.json +860 -0
  791. package/dist/lib/utils/linkify-text.tsx +28 -0
  792. package/dist/lib/utils/options-markdown.ts +133 -0
  793. package/dist/lib/utils/set-default-theme.ts +14 -0
  794. package/dist/styles-BzlWff0X.cjs +7 -0
  795. package/dist/styles-D2xrGFT_.js +15 -0
  796. package/package.json +67 -57
  797. package/dist/index-6bd365ef.js +0 -23566
  798. package/dist/index-bf31844d.cjs +0 -4144
  799. package/dist/lib/Mixins.d.ts +0 -256
  800. package/dist/lib/Variables.d.ts +0 -248
  801. package/dist/lib/components/Accordion/Accordion.d.ts +0 -23
  802. package/dist/lib/components/Accordion/AccordionButton.d.ts +0 -2
  803. package/dist/lib/components/Accordion/AccordionContent.d.ts +0 -2
  804. package/dist/lib/components/Accordion/AccordionItem.d.ts +0 -14
  805. package/dist/lib/components/Accordion/index.d.ts +0 -2
  806. package/dist/lib/components/Accordion/styles.d.ts +0 -6
  807. package/dist/lib/components/Accordion/subtypes.d.ts +0 -11
  808. package/dist/lib/components/Accordion/types.d.ts +0 -21
  809. package/dist/lib/components/Alert/Alert.d.ts +0 -18
  810. package/dist/lib/components/Alert/index.d.ts +0 -1
  811. package/dist/lib/components/Alert/styles.d.ts +0 -10
  812. package/dist/lib/components/Alert/types.d.ts +0 -20
  813. package/dist/lib/components/Aside/Aside.d.ts +0 -12
  814. package/dist/lib/components/Aside/index.d.ts +0 -1
  815. package/dist/lib/components/Aside/styles.d.ts +0 -6
  816. package/dist/lib/components/Aside/types.d.ts +0 -5
  817. package/dist/lib/components/Autocomplete/Autocomplete.d.ts +0 -2
  818. package/dist/lib/components/Autocomplete/index.d.ts +0 -1
  819. package/dist/lib/components/Autocomplete/styles.d.ts +0 -3
  820. package/dist/lib/components/Autocomplete/types.d.ts +0 -32
  821. package/dist/lib/components/Avatar/Avatar.d.ts +0 -22
  822. package/dist/lib/components/Avatar/AvatarFunction.d.ts +0 -5
  823. package/dist/lib/components/Avatar/index.d.ts +0 -1
  824. package/dist/lib/components/Avatar/styles.d.ts +0 -22
  825. package/dist/lib/components/Avatar/types.d.ts +0 -63
  826. package/dist/lib/components/BackToTop/BackToTop.d.ts +0 -11
  827. package/dist/lib/components/BackToTop/index.d.ts +0 -1
  828. package/dist/lib/components/BackToTop/styles.d.ts +0 -9
  829. package/dist/lib/components/BackToTop/types.d.ts +0 -5
  830. package/dist/lib/components/Badge/Badge.d.ts +0 -19
  831. package/dist/lib/components/Badge/index.d.ts +0 -1
  832. package/dist/lib/components/Badge/styles.d.ts +0 -10
  833. package/dist/lib/components/Badge/types.d.ts +0 -23
  834. package/dist/lib/components/Breadcrumbs/BreadcrumbItem.d.ts +0 -2
  835. package/dist/lib/components/Breadcrumbs/Breadcrumbs.d.ts +0 -24
  836. package/dist/lib/components/Breadcrumbs/BreadcrumbsFn.d.ts +0 -2
  837. package/dist/lib/components/Breadcrumbs/index.d.ts +0 -1
  838. package/dist/lib/components/Breadcrumbs/styles.d.ts +0 -10
  839. package/dist/lib/components/Breadcrumbs/subtypes.d.ts +0 -6
  840. package/dist/lib/components/Breadcrumbs/types.d.ts +0 -19
  841. package/dist/lib/components/Burger/Burger.d.ts +0 -16
  842. package/dist/lib/components/Burger/index.d.ts +0 -1
  843. package/dist/lib/components/Burger/styles.d.ts +0 -9
  844. package/dist/lib/components/Burger/types.d.ts +0 -10
  845. package/dist/lib/components/Button/Button.d.ts +0 -27
  846. package/dist/lib/components/Button/index.d.ts +0 -1
  847. package/dist/lib/components/Button/styles.d.ts +0 -3
  848. package/dist/lib/components/Button/subtypes.d.ts +0 -7
  849. package/dist/lib/components/Button/types.d.ts +0 -48
  850. package/dist/lib/components/ButtonGroup/ButtonGroup.d.ts +0 -48
  851. package/dist/lib/components/ButtonGroup/ButtonGroupButton.d.ts +0 -2
  852. package/dist/lib/components/ButtonGroup/ButtonGroupToggle.d.ts +0 -2
  853. package/dist/lib/components/ButtonGroup/index.d.ts +0 -1
  854. package/dist/lib/components/ButtonGroup/styles.d.ts +0 -19
  855. package/dist/lib/components/ButtonGroup/subtypes.d.ts +0 -16
  856. package/dist/lib/components/ButtonGroup/types.d.ts +0 -22
  857. package/dist/lib/components/ButtonIcon/ButtonFunction.d.ts +0 -2
  858. package/dist/lib/components/ButtonIcon/ButtonIcon.d.ts +0 -30
  859. package/dist/lib/components/ButtonIcon/index.d.ts +0 -1
  860. package/dist/lib/components/ButtonIcon/styles.d.ts +0 -3
  861. package/dist/lib/components/ButtonIcon/subtypes.d.ts +0 -7
  862. package/dist/lib/components/ButtonIcon/types.d.ts +0 -55
  863. package/dist/lib/components/Card/Card.d.ts +0 -36
  864. package/dist/lib/components/Card/index.d.ts +0 -1
  865. package/dist/lib/components/Card/styles.d.ts +0 -33
  866. package/dist/lib/components/Card/types.d.ts +0 -14
  867. package/dist/lib/components/CodeContainer/CodeContainer.d.ts +0 -19
  868. package/dist/lib/components/CodeContainer/index.d.ts +0 -1
  869. package/dist/lib/components/CodeContainer/styles.d.ts +0 -10
  870. package/dist/lib/components/CodeContainer/types.d.ts +0 -36
  871. package/dist/lib/components/ComponentsMixins/ComponentsMixins.d.ts +0 -4
  872. package/dist/lib/components/ComponentsMixins/hooks/useKeyboardNavigation.d.ts +0 -14
  873. package/dist/lib/components/ComponentsMixins/index.d.ts +0 -3
  874. package/dist/lib/components/ComponentsMixins/types.d.ts +0 -20
  875. package/dist/lib/components/Cover/Cover.d.ts +0 -15
  876. package/dist/lib/components/Cover/index.d.ts +0 -1
  877. package/dist/lib/components/Cover/styles.d.ts +0 -15
  878. package/dist/lib/components/Cover/types.d.ts +0 -9
  879. package/dist/lib/components/Datepicker/Calendar.d.ts +0 -6
  880. package/dist/lib/components/Datepicker/Datepicker.d.ts +0 -80
  881. package/dist/lib/components/Datepicker/data.d.ts +0 -25
  882. package/dist/lib/components/Datepicker/index.d.ts +0 -1
  883. package/dist/lib/components/Datepicker/styles.d.ts +0 -29
  884. package/dist/lib/components/Datepicker/types.d.ts +0 -52
  885. package/dist/lib/components/DragList/DragList.d.ts +0 -32
  886. package/dist/lib/components/DragList/DragListItem.d.ts +0 -29
  887. package/dist/lib/components/DragList/index.d.ts +0 -2
  888. package/dist/lib/components/DragList/styles.d.ts +0 -14
  889. package/dist/lib/components/DragList/types.d.ts +0 -42
  890. package/dist/lib/components/Drawer/Drawer.d.ts +0 -23
  891. package/dist/lib/components/Drawer/index.d.ts +0 -1
  892. package/dist/lib/components/Drawer/styles.d.ts +0 -17
  893. package/dist/lib/components/Drawer/types.d.ts +0 -16
  894. package/dist/lib/components/Dropdown/Dropdown.d.ts +0 -18
  895. package/dist/lib/components/Dropdown/DropdownContainer.d.ts +0 -22
  896. package/dist/lib/components/Dropdown/DropdownItem.d.ts +0 -20
  897. package/dist/lib/components/Dropdown/index.d.ts +0 -3
  898. package/dist/lib/components/Dropdown/styles.d.ts +0 -15
  899. package/dist/lib/components/Dropdown/types.d.ts +0 -40
  900. package/dist/lib/components/Fade/Fade.d.ts +0 -10
  901. package/dist/lib/components/Fade/index.d.ts +0 -1
  902. package/dist/lib/components/Fade/styles.d.ts +0 -2
  903. package/dist/lib/components/Fade/types.d.ts +0 -3
  904. package/dist/lib/components/Fallback/Fallback.d.ts +0 -18
  905. package/dist/lib/components/Fallback/index.d.ts +0 -1
  906. package/dist/lib/components/Fieldset/Fieldset.d.ts +0 -25
  907. package/dist/lib/components/Fieldset/index.d.ts +0 -1
  908. package/dist/lib/components/Fieldset/styles.d.ts +0 -18
  909. package/dist/lib/components/Fieldset/types.d.ts +0 -17
  910. package/dist/lib/components/Flexbox/Flexbox.d.ts +0 -21
  911. package/dist/lib/components/Flexbox/index.d.ts +0 -1
  912. package/dist/lib/components/Flexbox/styles.d.ts +0 -15
  913. package/dist/lib/components/Flexbox/types.d.ts +0 -14
  914. package/dist/lib/components/Footer/Footer.d.ts +0 -28
  915. package/dist/lib/components/Footer/FooterLink.d.ts +0 -2
  916. package/dist/lib/components/Footer/FooterLogo.d.ts +0 -2
  917. package/dist/lib/components/Footer/index.d.ts +0 -1
  918. package/dist/lib/components/Footer/styles.d.ts +0 -17
  919. package/dist/lib/components/Footer/subtypes.d.ts +0 -7
  920. package/dist/lib/components/Footer/types.d.ts +0 -48
  921. package/dist/lib/components/Form/Form.d.ts +0 -15
  922. package/dist/lib/components/Form/index.d.ts +0 -1
  923. package/dist/lib/components/Form/styles.d.ts +0 -6
  924. package/dist/lib/components/Form/types.d.ts +0 -21
  925. package/dist/lib/components/FullBleed/FullBleed.d.ts +0 -13
  926. package/dist/lib/components/FullBleed/index.d.ts +0 -1
  927. package/dist/lib/components/FullBleed/styles.d.ts +0 -7
  928. package/dist/lib/components/FullBleed/types.d.ts +0 -6
  929. package/dist/lib/components/Grid/Grid.d.ts +0 -20
  930. package/dist/lib/components/Grid/index.d.ts +0 -1
  931. package/dist/lib/components/Grid/styles.d.ts +0 -14
  932. package/dist/lib/components/Grid/types.d.ts +0 -13
  933. package/dist/lib/components/Header/Header.d.ts +0 -25
  934. package/dist/lib/components/Header/HeaderBurger.d.ts +0 -2
  935. package/dist/lib/components/Header/HeaderLogo.d.ts +0 -2
  936. package/dist/lib/components/Header/HeaderNav.d.ts +0 -2
  937. package/dist/lib/components/Header/HeaderNavLink.d.ts +0 -2
  938. package/dist/lib/components/Header/HeaderSearch.d.ts +0 -2
  939. package/dist/lib/components/Header/index.d.ts +0 -1
  940. package/dist/lib/components/Header/styles.d.ts +0 -25
  941. package/dist/lib/components/Header/subtypes.d.ts +0 -43
  942. package/dist/lib/components/Header/types.d.ts +0 -67
  943. package/dist/lib/components/Helmet/Helmet.d.ts +0 -17
  944. package/dist/lib/components/Helmet/index.d.ts +0 -1
  945. package/dist/lib/components/Helmet/types.d.ts +0 -14
  946. package/dist/lib/components/Highlight/Highlight.d.ts +0 -15
  947. package/dist/lib/components/Highlight/index.d.ts +0 -1
  948. package/dist/lib/components/Highlight/types.d.ts +0 -8
  949. package/dist/lib/components/Hr/Hr.d.ts +0 -15
  950. package/dist/lib/components/Hr/index.d.ts +0 -1
  951. package/dist/lib/components/Hr/styles.d.ts +0 -8
  952. package/dist/lib/components/Hr/types.d.ts +0 -9
  953. package/dist/lib/components/Icon/Icon.d.ts +0 -14
  954. package/dist/lib/components/Icon/index.d.ts +0 -1
  955. package/dist/lib/components/Icon/styles.d.ts +0 -7
  956. package/dist/lib/components/Icon/types.d.ts +0 -10
  957. package/dist/lib/components/IconMenu/IconMenu.d.ts +0 -33
  958. package/dist/lib/components/IconMenu/IconMenuItem.d.ts +0 -38
  959. package/dist/lib/components/IconMenu/index.d.ts +0 -2
  960. package/dist/lib/components/IconMenu/styles.d.ts +0 -18
  961. package/dist/lib/components/IconMenu/types.d.ts +0 -33
  962. package/dist/lib/components/Image/Image.d.ts +0 -17
  963. package/dist/lib/components/Image/ImageFunction.d.ts +0 -2
  964. package/dist/lib/components/Image/index.d.ts +0 -1
  965. package/dist/lib/components/Image/styles.d.ts +0 -20
  966. package/dist/lib/components/Image/types.d.ts +0 -32
  967. package/dist/lib/components/Input/Input.d.ts +0 -53
  968. package/dist/lib/components/Input/index.d.ts +0 -1
  969. package/dist/lib/components/Input/styles.d.ts +0 -3
  970. package/dist/lib/components/Input/subtypes.d.ts +0 -85
  971. package/dist/lib/components/Input/templates/ColorInput.d.ts +0 -3
  972. package/dist/lib/components/Input/templates/DateInput.d.ts +0 -5
  973. package/dist/lib/components/Input/templates/FileInput.d.ts +0 -3
  974. package/dist/lib/components/Input/templates/PasswordInput.d.ts +0 -2
  975. package/dist/lib/components/Input/templates/SearchInput.d.ts +0 -2
  976. package/dist/lib/components/Input/templates/SelectInput.d.ts +0 -6
  977. package/dist/lib/components/Input/templates/TextInput.d.ts +0 -3
  978. package/dist/lib/components/Input/templates/TextareaInput.d.ts +0 -4
  979. package/dist/lib/components/Input/templates/TimeInput.d.ts +0 -5
  980. package/dist/lib/components/Input/types.d.ts +0 -2
  981. package/dist/lib/components/InputCheck/InputCheck.d.ts +0 -18
  982. package/dist/lib/components/InputCheck/index.d.ts +0 -1
  983. package/dist/lib/components/InputCheck/styles.d.ts +0 -16
  984. package/dist/lib/components/InputCheck/types.d.ts +0 -25
  985. package/dist/lib/components/InputComponents/components/InputAndListContainer.d.ts +0 -12
  986. package/dist/lib/components/InputComponents/components/InputButton.d.ts +0 -17
  987. package/dist/lib/components/InputComponents/components/InputContainer.d.ts +0 -19
  988. package/dist/lib/components/InputComponents/components/InputIcon.d.ts +0 -15
  989. package/dist/lib/components/InputComponents/components/InputLeftContainer.d.ts +0 -10
  990. package/dist/lib/components/InputComponents/components/InputPrefix.d.ts +0 -10
  991. package/dist/lib/components/InputComponents/components/InputRightContainer.d.ts +0 -12
  992. package/dist/lib/components/InputComponents/components/InputSuffix.d.ts +0 -10
  993. package/dist/lib/components/InputComponents/components/InputValidationHelper.d.ts +0 -9
  994. package/dist/lib/components/InputComponents/components/InputValidationIcon.d.ts +0 -10
  995. package/dist/lib/components/InputComponents/components/InputWrapper.d.ts +0 -15
  996. package/dist/lib/components/InputComponents/components/ListInput.d.ts +0 -14
  997. package/dist/lib/components/InputComponents/components/ListInputItem.d.ts +0 -15
  998. package/dist/lib/components/InputComponents/index.d.ts +0 -13
  999. package/dist/lib/components/InputComponents/styles.d.ts +0 -50
  1000. package/dist/lib/components/InputComponents/types.d.ts +0 -191
  1001. package/dist/lib/components/InputContainer/HelperBottom.d.ts +0 -3
  1002. package/dist/lib/components/InputContainer/InputContainer.d.ts +0 -21
  1003. package/dist/lib/components/InputContainer/index.d.ts +0 -1
  1004. package/dist/lib/components/InputContainer/styles.d.ts +0 -10
  1005. package/dist/lib/components/InputContainer/subtypes.d.ts +0 -2
  1006. package/dist/lib/components/InputContainer/types.d.ts +0 -16
  1007. package/dist/lib/components/InputCounter/InputCounter.d.ts +0 -2
  1008. package/dist/lib/components/InputCounter/index.d.ts +0 -1
  1009. package/dist/lib/components/InputCounter/styles.d.ts +0 -10
  1010. package/dist/lib/components/InputCounter/subtypes.d.ts +0 -4
  1011. package/dist/lib/components/InputCounter/types.d.ts +0 -37
  1012. package/dist/lib/components/InputImage/EmptyContainer.d.ts +0 -2
  1013. package/dist/lib/components/InputImage/HoverContainer.d.ts +0 -2
  1014. package/dist/lib/components/InputImage/InputImage.d.ts +0 -41
  1015. package/dist/lib/components/InputImage/index.d.ts +0 -1
  1016. package/dist/lib/components/InputImage/styles.d.ts +0 -18
  1017. package/dist/lib/components/InputImage/subtypes.d.ts +0 -6
  1018. package/dist/lib/components/InputImage/types.d.ts +0 -21
  1019. package/dist/lib/components/InputPhone/InputPhone.d.ts +0 -46
  1020. package/dist/lib/components/InputPhone/index.d.ts +0 -1
  1021. package/dist/lib/components/InputPhone/styles.d.ts +0 -19
  1022. package/dist/lib/components/InputPhone/types.d.ts +0 -21
  1023. package/dist/lib/components/InputPhone/utils/countries.d.ts +0 -2
  1024. package/dist/lib/components/InputPin/InputPin.d.ts +0 -41
  1025. package/dist/lib/components/InputPin/index.d.ts +0 -1
  1026. package/dist/lib/components/InputPin/styles.d.ts +0 -3
  1027. package/dist/lib/components/InputPin/subtypes.d.ts +0 -6
  1028. package/dist/lib/components/InputPin/types.d.ts +0 -20
  1029. package/dist/lib/components/InputSlider/InputSlider.d.ts +0 -28
  1030. package/dist/lib/components/InputSlider/Slider.d.ts +0 -11
  1031. package/dist/lib/components/InputSlider/index.d.ts +0 -1
  1032. package/dist/lib/components/InputSlider/styles.d.ts +0 -13
  1033. package/dist/lib/components/InputSlider/types.d.ts +0 -10
  1034. package/dist/lib/components/Key/Key.d.ts +0 -14
  1035. package/dist/lib/components/Key/index.d.ts +0 -1
  1036. package/dist/lib/components/Key/styles.d.ts +0 -6
  1037. package/dist/lib/components/Key/types.d.ts +0 -8
  1038. package/dist/lib/components/LibIcon/LibIcon.d.ts +0 -11
  1039. package/dist/lib/components/LibIcon/index.d.ts +0 -1
  1040. package/dist/lib/components/LibIcon/types.d.ts +0 -6
  1041. package/dist/lib/components/Link/Link.d.ts +0 -9
  1042. package/dist/lib/components/Link/index.d.ts +0 -1
  1043. package/dist/lib/components/Link/types.d.ts +0 -5
  1044. package/dist/lib/components/Linkify/Linkify.d.ts +0 -11
  1045. package/dist/lib/components/Linkify/index.d.ts +0 -1
  1046. package/dist/lib/components/Linkify/types.d.ts +0 -5
  1047. package/dist/lib/components/ListGroup/ListGroup.d.ts +0 -31
  1048. package/dist/lib/components/ListGroup/ListGroupItem.d.ts +0 -22
  1049. package/dist/lib/components/ListGroup/ListGroupTitle.d.ts +0 -2
  1050. package/dist/lib/components/ListGroup/index.d.ts +0 -3
  1051. package/dist/lib/components/ListGroup/styles.d.ts +0 -20
  1052. package/dist/lib/components/ListGroup/types.d.ts +0 -73
  1053. package/dist/lib/components/Loader/Loader.d.ts +0 -14
  1054. package/dist/lib/components/Loader/index.d.ts +0 -1
  1055. package/dist/lib/components/Loader/styles.d.ts +0 -11
  1056. package/dist/lib/components/Loader/templates/LoaderFour.d.ts +0 -2
  1057. package/dist/lib/components/Loader/templates/LoaderOne.d.ts +0 -2
  1058. package/dist/lib/components/Loader/templates/LoaderThree.d.ts +0 -2
  1059. package/dist/lib/components/Loader/templates/LoaderTwo.d.ts +0 -2
  1060. package/dist/lib/components/Loader/types.d.ts +0 -16
  1061. package/dist/lib/components/Main/Main.d.ts +0 -13
  1062. package/dist/lib/components/Main/index.d.ts +0 -1
  1063. package/dist/lib/components/Main/styles.d.ts +0 -7
  1064. package/dist/lib/components/Main/types.d.ts +0 -14
  1065. package/dist/lib/components/MarkdownContainer/MarkdownContainer.d.ts +0 -10
  1066. package/dist/lib/components/MarkdownContainer/index.d.ts +0 -1
  1067. package/dist/lib/components/MarkdownContainer/styles.d.ts +0 -22
  1068. package/dist/lib/components/MarkdownContainer/types.d.ts +0 -5
  1069. package/dist/lib/components/MarkdownEditor/MarkdownEditor.d.ts +0 -65
  1070. package/dist/lib/components/MarkdownEditor/MdEditorButtons/EditorButtonTitles.d.ts +0 -2
  1071. package/dist/lib/components/MarkdownEditor/MdEditorButtons/EditorButtons.d.ts +0 -2
  1072. package/dist/lib/components/MarkdownEditor/MdEditorButtons/MarkdownButtons.d.ts +0 -2
  1073. package/dist/lib/components/MarkdownEditor/MdEditorInput.d.ts +0 -2
  1074. package/dist/lib/components/MarkdownEditor/index.d.ts +0 -1
  1075. package/dist/lib/components/MarkdownEditor/markdown-buttons.d.ts +0 -15
  1076. package/dist/lib/components/MarkdownEditor/styles.d.ts +0 -45
  1077. package/dist/lib/components/MarkdownEditor/subtypes.d.ts +0 -23
  1078. package/dist/lib/components/MarkdownEditor/types.d.ts +0 -45
  1079. package/dist/lib/components/Masonry/Masonry.d.ts +0 -13
  1080. package/dist/lib/components/Masonry/index.d.ts +0 -1
  1081. package/dist/lib/components/Masonry/styles.d.ts +0 -8
  1082. package/dist/lib/components/Masonry/types.d.ts +0 -7
  1083. package/dist/lib/components/Masonry/utils.d.ts +0 -3
  1084. package/dist/lib/components/Messaging/Message.d.ts +0 -30
  1085. package/dist/lib/components/Messaging/MessageForm.d.ts +0 -15
  1086. package/dist/lib/components/Messaging/MessagesContainer.d.ts +0 -10
  1087. package/dist/lib/components/Messaging/MessagesList.d.ts +0 -14
  1088. package/dist/lib/components/Messaging/Messaging.d.ts +0 -25
  1089. package/dist/lib/components/Messaging/index.d.ts +0 -5
  1090. package/dist/lib/components/Messaging/styles.d.ts +0 -8
  1091. package/dist/lib/components/Messaging/types.d.ts +0 -85
  1092. package/dist/lib/components/Modal/Modal.d.ts +0 -27
  1093. package/dist/lib/components/Modal/index.d.ts +0 -1
  1094. package/dist/lib/components/Modal/styles.d.ts +0 -4
  1095. package/dist/lib/components/Modal/types.d.ts +0 -25
  1096. package/dist/lib/components/PageLayout/PageLayout.d.ts +0 -18
  1097. package/dist/lib/components/PageLayout/index.d.ts +0 -1
  1098. package/dist/lib/components/PageLayout/types.d.ts +0 -39
  1099. package/dist/lib/components/PageLoading/PageLoading.d.ts +0 -14
  1100. package/dist/lib/components/PageLoading/index.d.ts +0 -1
  1101. package/dist/lib/components/PageLoading/styles.d.ts +0 -5
  1102. package/dist/lib/components/PageLoading/types.d.ts +0 -8
  1103. package/dist/lib/components/Pagination/Pagination.d.ts +0 -29
  1104. package/dist/lib/components/Pagination/PaginationButton.d.ts +0 -13
  1105. package/dist/lib/components/Pagination/index.d.ts +0 -2
  1106. package/dist/lib/components/Pagination/styles.d.ts +0 -6
  1107. package/dist/lib/components/Pagination/types.d.ts +0 -43
  1108. package/dist/lib/components/Paginator/Paginator.d.ts +0 -19
  1109. package/dist/lib/components/Paginator/index.d.ts +0 -1
  1110. package/dist/lib/components/Paginator/styles.d.ts +0 -4
  1111. package/dist/lib/components/Paginator/types.d.ts +0 -26
  1112. package/dist/lib/components/ProgressBar/ProgressBar.d.ts +0 -13
  1113. package/dist/lib/components/ProgressBar/index.d.ts +0 -1
  1114. package/dist/lib/components/ProgressBar/styles.d.ts +0 -5
  1115. package/dist/lib/components/ProgressBar/types.d.ts +0 -8
  1116. package/dist/lib/components/ProgressCircle/Circle.d.ts +0 -2
  1117. package/dist/lib/components/ProgressCircle/ProgressCircle.d.ts +0 -17
  1118. package/dist/lib/components/ProgressCircle/ProgressCircleFn.d.ts +0 -2
  1119. package/dist/lib/components/ProgressCircle/Value.d.ts +0 -2
  1120. package/dist/lib/components/ProgressCircle/clean-percentage.d.ts +0 -1
  1121. package/dist/lib/components/ProgressCircle/index.d.ts +0 -1
  1122. package/dist/lib/components/ProgressCircle/styles.d.ts +0 -10
  1123. package/dist/lib/components/ProgressCircle/subtypes.d.ts +0 -3
  1124. package/dist/lib/components/ProgressCircle/types.d.ts +0 -23
  1125. package/dist/lib/components/Rating/Rating.d.ts +0 -21
  1126. package/dist/lib/components/Rating/index.d.ts +0 -1
  1127. package/dist/lib/components/Rating/styles.d.ts +0 -7
  1128. package/dist/lib/components/Rating/types.d.ts +0 -24
  1129. package/dist/lib/components/ResetScroll/ResetScroll.d.ts +0 -5
  1130. package/dist/lib/components/ResetScroll/index.d.ts +0 -1
  1131. package/dist/lib/components/Section/Section.d.ts +0 -11
  1132. package/dist/lib/components/Section/index.d.ts +0 -1
  1133. package/dist/lib/components/Section/styles.d.ts +0 -5
  1134. package/dist/lib/components/Section/types.d.ts +0 -4
  1135. package/dist/lib/components/Select/Select.d.ts +0 -42
  1136. package/dist/lib/components/Select/SelectButton.d.ts +0 -2
  1137. package/dist/lib/components/Select/index.d.ts +0 -1
  1138. package/dist/lib/components/Select/styles.d.ts +0 -4
  1139. package/dist/lib/components/Select/subtypes.d.ts +0 -12
  1140. package/dist/lib/components/Select/types.d.ts +0 -19
  1141. package/dist/lib/components/Skeleton/Skeleton.d.ts +0 -19
  1142. package/dist/lib/components/Skeleton/SkeletonCard.d.ts +0 -21
  1143. package/dist/lib/components/Skeleton/SkeletonShine.d.ts +0 -11
  1144. package/dist/lib/components/Skeleton/index.d.ts +0 -3
  1145. package/dist/lib/components/Skeleton/styles.d.ts +0 -11
  1146. package/dist/lib/components/Skeleton/subtypes.d.ts +0 -11
  1147. package/dist/lib/components/Skeleton/types.d.ts +0 -25
  1148. package/dist/lib/components/Slideshow/Slideshow.d.ts +0 -44
  1149. package/dist/lib/components/Slideshow/SlideshowButton.d.ts +0 -2
  1150. package/dist/lib/components/Slideshow/SlideshowPagination.d.ts +0 -2
  1151. package/dist/lib/components/Slideshow/index.d.ts +0 -1
  1152. package/dist/lib/components/Slideshow/styles.d.ts +0 -33
  1153. package/dist/lib/components/Slideshow/subtypes.d.ts +0 -11
  1154. package/dist/lib/components/Slideshow/types.d.ts +0 -88
  1155. package/dist/lib/components/SrOnly/SrOnly.d.ts +0 -10
  1156. package/dist/lib/components/SrOnly/index.d.ts +0 -1
  1157. package/dist/lib/components/SrOnly/styles.d.ts +0 -2
  1158. package/dist/lib/components/SrOnly/types.d.ts +0 -3
  1159. package/dist/lib/components/Stepper/Step.d.ts +0 -23
  1160. package/dist/lib/components/Stepper/Stepper.d.ts +0 -31
  1161. package/dist/lib/components/Stepper/index.d.ts +0 -2
  1162. package/dist/lib/components/Stepper/styles.d.ts +0 -13
  1163. package/dist/lib/components/Stepper/types.d.ts +0 -29
  1164. package/dist/lib/components/Sticky/Sticky.d.ts +0 -11
  1165. package/dist/lib/components/Sticky/index.d.ts +0 -1
  1166. package/dist/lib/components/Sticky/styles.d.ts +0 -5
  1167. package/dist/lib/components/Sticky/types.d.ts +0 -4
  1168. package/dist/lib/components/Table/TBody.d.ts +0 -9
  1169. package/dist/lib/components/Table/THead.d.ts +0 -9
  1170. package/dist/lib/components/Table/Table.d.ts +0 -15
  1171. package/dist/lib/components/Table/Td.d.ts +0 -10
  1172. package/dist/lib/components/Table/Tr.d.ts +0 -9
  1173. package/dist/lib/components/Table/index.d.ts +0 -5
  1174. package/dist/lib/components/Table/styles.d.ts +0 -9
  1175. package/dist/lib/components/Table/types.d.ts +0 -26
  1176. package/dist/lib/components/Tabs/TabButton.d.ts +0 -14
  1177. package/dist/lib/components/Tabs/TabItem.d.ts +0 -11
  1178. package/dist/lib/components/Tabs/Tabs.d.ts +0 -24
  1179. package/dist/lib/components/Tabs/TabsButtonsContainer.d.ts +0 -12
  1180. package/dist/lib/components/Tabs/TabsContainer.d.ts +0 -10
  1181. package/dist/lib/components/Tabs/index.d.ts +0 -5
  1182. package/dist/lib/components/Tabs/styles.d.ts +0 -13
  1183. package/dist/lib/components/Tabs/types.d.ts +0 -34
  1184. package/dist/lib/components/Tag/Tag.d.ts +0 -20
  1185. package/dist/lib/components/Tag/index.d.ts +0 -1
  1186. package/dist/lib/components/Tag/styles.d.ts +0 -11
  1187. package/dist/lib/components/Tag/types.d.ts +0 -29
  1188. package/dist/lib/components/Text/Text.d.ts +0 -15
  1189. package/dist/lib/components/Text/index.d.ts +0 -1
  1190. package/dist/lib/components/Text/styles.d.ts +0 -16
  1191. package/dist/lib/components/Text/subtypes.d.ts +0 -9
  1192. package/dist/lib/components/Text/templates/Blockquote.d.ts +0 -2
  1193. package/dist/lib/components/Text/templates/Dl.d.ts +0 -2
  1194. package/dist/lib/components/Text/templates/Em.d.ts +0 -2
  1195. package/dist/lib/components/Text/templates/H1.d.ts +0 -2
  1196. package/dist/lib/components/Text/templates/H2.d.ts +0 -2
  1197. package/dist/lib/components/Text/templates/H3.d.ts +0 -2
  1198. package/dist/lib/components/Text/templates/H4.d.ts +0 -2
  1199. package/dist/lib/components/Text/templates/H5.d.ts +0 -2
  1200. package/dist/lib/components/Text/templates/H6.d.ts +0 -2
  1201. package/dist/lib/components/Text/templates/Ol.d.ts +0 -2
  1202. package/dist/lib/components/Text/templates/P.d.ts +0 -2
  1203. package/dist/lib/components/Text/templates/Small.d.ts +0 -2
  1204. package/dist/lib/components/Text/templates/Strong.d.ts +0 -2
  1205. package/dist/lib/components/Text/templates/Ul.d.ts +0 -2
  1206. package/dist/lib/components/Text/types.d.ts +0 -16
  1207. package/dist/lib/components/TextIcon/TextIcon.d.ts +0 -30
  1208. package/dist/lib/components/TextIcon/index.d.ts +0 -1
  1209. package/dist/lib/components/TextIcon/styles.d.ts +0 -10
  1210. package/dist/lib/components/TextIcon/types.d.ts +0 -13
  1211. package/dist/lib/components/TextIcon/utils.d.ts +0 -2
  1212. package/dist/lib/components/Timepicker/Timepicker.d.ts +0 -32
  1213. package/dist/lib/components/Timepicker/index.d.ts +0 -1
  1214. package/dist/lib/components/Timepicker/styles.d.ts +0 -8
  1215. package/dist/lib/components/Timepicker/types.d.ts +0 -39
  1216. package/dist/lib/components/Toast/Toast.d.ts +0 -30
  1217. package/dist/lib/components/Toast/Toaster.d.ts +0 -36
  1218. package/dist/lib/components/Toast/index.d.ts +0 -1
  1219. package/dist/lib/components/Toast/styles.d.ts +0 -18
  1220. package/dist/lib/components/Toast/types.d.ts +0 -14
  1221. package/dist/lib/components/Tooltip/Tooltip.d.ts +0 -18
  1222. package/dist/lib/components/Tooltip/index.d.ts +0 -1
  1223. package/dist/lib/components/Tooltip/styles.d.ts +0 -12
  1224. package/dist/lib/components/Tooltip/types.d.ts +0 -12
  1225. package/dist/lib/components/Truncate/Truncate.d.ts +0 -11
  1226. package/dist/lib/components/Truncate/index.d.ts +0 -1
  1227. package/dist/lib/components/Truncate/styles.d.ts +0 -7
  1228. package/dist/lib/components/Truncate/types.d.ts +0 -4
  1229. package/dist/lib/components/Video/Video.d.ts +0 -13
  1230. package/dist/lib/components/Video/index.d.ts +0 -1
  1231. package/dist/lib/components/Video/styles.d.ts +0 -7
  1232. package/dist/lib/components/Video/types.d.ts +0 -8
  1233. package/dist/lib/components/Wrapper/Wrapper.d.ts +0 -13
  1234. package/dist/lib/components/Wrapper/index.d.ts +0 -1
  1235. package/dist/lib/components/Wrapper/styles.d.ts +0 -6
  1236. package/dist/lib/components/Wrapper/types.d.ts +0 -6
  1237. package/dist/lib/components/Youtube/Youtube.d.ts +0 -11
  1238. package/dist/lib/components/Youtube/index.d.ts +0 -1
  1239. package/dist/lib/components/Youtube/styles.d.ts +0 -6
  1240. package/dist/lib/components/Youtube/types.d.ts +0 -6
  1241. package/dist/lib/context/Theme.context.d.ts +0 -22
  1242. package/dist/lib/context/Toaster/Toaster.context.d.ts +0 -39
  1243. package/dist/lib/context/Toaster/index.d.ts +0 -1
  1244. package/dist/lib/context/Toaster/toast.reducer.d.ts +0 -11
  1245. package/dist/lib/hooks/index.d.ts +0 -15
  1246. package/dist/lib/hooks/useClickOutside.d.ts +0 -10
  1247. package/dist/lib/hooks/useCopyToClipboard.d.ts +0 -8
  1248. package/dist/lib/hooks/useDebounce.d.ts +0 -7
  1249. package/dist/lib/hooks/useExportData.d.ts +0 -8
  1250. package/dist/lib/hooks/useFetch.d.ts +0 -11
  1251. package/dist/lib/hooks/useForm.d.ts +0 -13
  1252. package/dist/lib/hooks/useIsOverflow.d.ts +0 -11
  1253. package/dist/lib/hooks/useKeyPress.d.ts +0 -7
  1254. package/dist/lib/hooks/useMaxWidth.d.ts +0 -6
  1255. package/dist/lib/hooks/useMergeRefs.d.ts +0 -7
  1256. package/dist/lib/hooks/useMinWidth.d.ts +0 -6
  1257. package/dist/lib/hooks/usePaginatedData.d.ts +0 -12
  1258. package/dist/lib/hooks/usePagination.d.ts +0 -21
  1259. package/dist/lib/hooks/useTouchScreen.d.ts +0 -5
  1260. package/dist/lib/hooks/useTranslation.d.ts +0 -12
  1261. package/dist/lib/icons/ArrowUp.d.ts +0 -2
  1262. package/dist/lib/icons/Bold.d.ts +0 -2
  1263. package/dist/lib/icons/Calendar.d.ts +0 -2
  1264. package/dist/lib/icons/CaretDown.d.ts +0 -2
  1265. package/dist/lib/icons/Check.d.ts +0 -2
  1266. package/dist/lib/icons/CheckCircle.d.ts +0 -2
  1267. package/dist/lib/icons/ChevronDown.d.ts +0 -2
  1268. package/dist/lib/icons/ChevronLeft.d.ts +0 -2
  1269. package/dist/lib/icons/ChevronRight.d.ts +0 -2
  1270. package/dist/lib/icons/ChevronUp.d.ts +0 -2
  1271. package/dist/lib/icons/Clipboard.d.ts +0 -2
  1272. package/dist/lib/icons/Clock.d.ts +0 -2
  1273. package/dist/lib/icons/Close.d.ts +0 -2
  1274. package/dist/lib/icons/CloseCircle.d.ts +0 -2
  1275. package/dist/lib/icons/Code.d.ts +0 -2
  1276. package/dist/lib/icons/CodeBlock.d.ts +0 -2
  1277. package/dist/lib/icons/Comment.d.ts +0 -2
  1278. package/dist/lib/icons/Drag.d.ts +0 -2
  1279. package/dist/lib/icons/Edit.d.ts +0 -2
  1280. package/dist/lib/icons/EditorCode.d.ts +0 -2
  1281. package/dist/lib/icons/EditorLive.d.ts +0 -2
  1282. package/dist/lib/icons/EditorPreview.d.ts +0 -2
  1283. package/dist/lib/icons/Hide.d.ts +0 -2
  1284. package/dist/lib/icons/Image.d.ts +0 -2
  1285. package/dist/lib/icons/Italic.d.ts +0 -2
  1286. package/dist/lib/icons/Link.d.ts +0 -2
  1287. package/dist/lib/icons/Minus.d.ts +0 -2
  1288. package/dist/lib/icons/OrderedList.d.ts +0 -2
  1289. package/dist/lib/icons/Plus.d.ts +0 -2
  1290. package/dist/lib/icons/Quote.d.ts +0 -2
  1291. package/dist/lib/icons/Search.d.ts +0 -2
  1292. package/dist/lib/icons/Send.d.ts +0 -2
  1293. package/dist/lib/icons/Separator.d.ts +0 -2
  1294. package/dist/lib/icons/Show.d.ts +0 -2
  1295. package/dist/lib/icons/Star.d.ts +0 -2
  1296. package/dist/lib/icons/StarFull.d.ts +0 -2
  1297. package/dist/lib/icons/Strikethrough.d.ts +0 -2
  1298. package/dist/lib/icons/Underline.d.ts +0 -2
  1299. package/dist/lib/icons/UnorderedList.d.ts +0 -2
  1300. package/dist/lib/icons/index.d.ts +0 -39
  1301. package/dist/lib/icons/styles.d.ts +0 -6
  1302. package/dist/lib/icons/types.d.ts +0 -8
  1303. package/dist/lib/index.d.ts +0 -90
  1304. package/dist/lib/lib-utils/append-styles.d.ts +0 -1
  1305. package/dist/lib/lib-utils/colors-maps.d.ts +0 -9
  1306. package/dist/lib/lib-utils/get-highlighted-text.d.ts +0 -3
  1307. package/dist/lib/lib-utils/get-icon-size-from-font.d.ts +0 -2
  1308. package/dist/lib/lib-utils/index.d.ts +0 -7
  1309. package/dist/lib/lib-utils/round-icon-size.d.ts +0 -1
  1310. package/dist/lib/lib-utils/transfom-search-keys.d.ts +0 -1
  1311. package/dist/lib/types/component-items.d.ts +0 -438
  1312. package/dist/lib/types/components-props.d.ts +0 -79
  1313. package/dist/lib/types/generate-int-range.d.ts +0 -7
  1314. package/dist/lib/types/global.d.ts +0 -350
  1315. package/dist/lib/types/index.d.ts +0 -5
  1316. package/dist/lib/types/require-at-least-one.d.ts +0 -3
  1317. package/dist/lib/types/theme.d.ts +0 -2
  1318. package/dist/lib/types/type-values.d.ts +0 -2285
  1319. package/dist/lib/utils/StyleSheetManager.d.ts +0 -4
  1320. package/dist/lib/utils/index.d.ts +0 -4
  1321. package/dist/lib/utils/linkify-text.d.ts +0 -2
  1322. package/dist/lib/utils/options-markdown.d.ts +0 -4
  1323. package/dist/lib/utils/set-default-theme.d.ts +0 -6
  1324. package/dist/styles-3686a5c6.js +0 -19
  1325. package/dist/styles-9e4aa8e9.cjs +0 -7
  1326. package/dist/tsx-library-julseb.cjs.js +0 -1
  1327. package/dist/tsx-library-julseb.es.js +0 -213
  1328. package/dist/tsx-library-julseb.umd.js +0 -4150
  1329. package/dist/types/component-items.d.ts +0 -438
  1330. package/dist/types/component-items.js +0 -2
  1331. package/dist/types/generate-int-range.d.ts +0 -7
  1332. package/dist/types/generate-int-range.js +0 -3
  1333. package/dist/types/global.d.ts +0 -350
  1334. package/dist/types/global.js +0 -2
  1335. package/dist/types/index.d.ts +0 -5
  1336. package/dist/types/index.js +0 -6
  1337. package/dist/types/require-at-least-one.d.ts +0 -3
  1338. package/dist/types/require-at-least-one.js +0 -1
  1339. package/dist/types/type-values.d.ts +0 -2285
  1340. package/dist/types/type-values.js +0 -2151
  1341. /package/dist/{types → lib/types}/component-items.ts +0 -0
  1342. /package/dist/{types → lib/types}/components-props.ts +0 -0
  1343. /package/dist/{types → lib/types}/generate-int-range.ts +0 -0
  1344. /package/dist/{types → lib/types}/global.ts +0 -0
  1345. /package/dist/{types → lib/types}/index.ts +0 -0
  1346. /package/dist/{types → lib/types}/require-at-least-one.ts +0 -0
  1347. /package/dist/{types → lib/types}/theme.ts +0 -0
  1348. /package/dist/{types → lib/types}/type-values.ts +0 -0
@@ -0,0 +1,109 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="flag-icons-ky" viewBox="0 0 640 480">
2
+ <path fill="#006" d="M0 0h640v480H0z"/>
3
+ <path fill="#012169" d="M0 0h320v240H0z"/>
4
+ <path fill="#fff" d="m37.5 0 122 90.5L281 0h39v31l-120 89.5 120 89V240h-40l-120-89.5L40.5 240H0v-30l119.5-89L0 32V0z"/>
5
+ <path fill="#c8102e" d="M212 140.5 320 220v20l-135.5-99.5zm-92 10 3 17.5-96 72H0zM320 0v1.5l-124.5 94 1-22L295 0zM0 0l119.5 88h-30L0 21z"/>
6
+ <path fill="#fff" d="M120.5 0v240h80V0zM0 80v80h320V80z"/>
7
+ <path fill="#c8102e" d="M0 96.5v48h320v-48zM136.5 0v240h48V0z"/>
8
+ <g stroke="#fff" stroke-linejoin="round" stroke-width="9.6" transform="translate(-306.8 -21.2) scale(.87136)">
9
+ <use xlink:href="#a" width="100%" height="100%"/>
10
+ <use xlink:href="#b" width="100%" height="100%"/>
11
+ <use xlink:href="#c" width="100%" height="100%"/>
12
+ <use xlink:href="#d" width="100%" height="100%"/>
13
+ <use xlink:href="#e" width="100%" height="100%"/>
14
+ <use xlink:href="#f" width="100%" height="100%"/>
15
+ <use xlink:href="#g" width="100%" height="100%"/>
16
+ </g>
17
+ <g stroke="#000" stroke-width="1.4" transform="translate(-306.8 -21.2) scale(.87136)">
18
+ <g id="b" fill="#fcea83">
19
+ <path d="M754.4 449.6c2.9 7.6 23.5 17.7 47.5 4.8 16.3-9.2 26.8-22 36.9-45 2.8-5.8 4.3-13-2.4-17.3-5.3-3.9-14-8.2-17.8-12-1.9-2-3.8-3.4-5.2-4.8 1 1 1.9 1.9 2.8 3.3 9.6 11.5-.4 28.3-11 38.4-7.7 7.2-21.5 24.9-41.7 8.1-4.3-3.8-14.4 12-9 24.5zM1045.8 449.6c-3.4 7.6-24 17.7-47.5 4.8-16.2-9.2-26.8-22-37.3-45-2.4-5.8-3.9-13 2.8-17.3 5.3-3.9 14-8.2 17.8-12 1.9-2 3.3-3.4 5.2-4.8-1 1-1.9 1.9-2.8 3.3-9.6 11.5.4 28.3 10.5 38.4 7.7 7.2 22 24.9 42.2 8.1 4.3-3.8 13.9 12 9 24.5z"/>
20
+ <path d="M900.1 490.8c38.3 0 97.3-17.3 129-77.7 5.2-10 0-15.3-6.3-18.6a73 73 0 0 1-19.2-14c7.7 7.7 6.2 13 1 21.6-24.5 40.8-58 61.4-104.5 61.4s-80-20.6-104.5-61.4c-5.2-8.6-6.7-13.9.5-21.5a66 66 0 0 1-19.2 13.9c-6.2 3.3-11.5 8.6-6.2 18.6 31.6 60.4 91 77.7 129.4 77.7z"/>
21
+ </g>
22
+ <g id="c" fill="#c8102e">
23
+ <path d="M811.4 409.8c-1-4.8-7.1-2.9-9 2.9a68.4 68.4 0 0 1-6.8-10.6c-5.7-8.6-6.7-14.4 1.5-22.5 3.8-3.8 11.5-8.2 16.7-3.4 11 9.1 5.3 24-2.4 33.6zM988.3 409.8c1-4.8 7.7-2.9 9.6 2.9 2.4-3.4 4.8-6.7 6.7-10.6 5.7-8.6 6.7-14.4-2-22.5-3.3-3.8-11-8.2-16.7-3.4-10.6 9.1-5.3 24 2.4 33.6zM754.4 449.6c-4.8-7.2-8.6-26-9.6-30.7-1.4-4.3-1.9-8.2 3.4-10 5.3-2 10 4.7 12.4 10.5 2.4 5.7 6.3 14.3 10.6 24.9-10.6-6.2-19.2-2-16.8 5.3zM1045.8 449.6c4.3-7.2 8.1-26 9.6-30.7 1-4.3 1.9-8.2-3.4-10-5.3-2-10 4.7-12.4 10.5-2.4 5.7-6.3 14.3-10.6 24.9 10.6-6.2 18.7-2 16.8 5.3z"/>
24
+ </g>
25
+ <g fill="#00493d" stroke="none">
26
+ <path d="m782.2 406.4-3.8 2c-1 .4-1 1.4-1 1.9h-.5L775 406h.5c0 .4.5 1 1.4.4l8.2-4.3c1-.5 1-1 .5-1.4l.4-.5 2.4 4.8h-.4c-.5-.5-1-1-2-.5l-3.3 2 1.4 2.8 3.9-1.4c1-.5.4-1.5.4-2h.5l2 4.4c-.5-.5-1-1-2-.5l-8.1 4.3c-1 .5-1 1-.5 1.4l-.5.5-2.4-4.3.5-.5c.5.5 1 1 2 .5l3.8-2zM790.4 412.7c1-.5 1-1 .4-2h.5l4.8 7.2-3.3 2.4v-.4c1.9-1.5 1.9-3.4 1.4-3.9s-1-1-1-1.4c-.4 0-.4-.5-1.4.5l-3.4 2.4c.5.4 1 1.9 3.4.4h.5l-5.3 3.9v-.5c2.4-2 1.4-3.4 1-3.8l-3.4 2.4c-1 .4-1 1-1 1.4.5 0 .5.5 1 1 .5 1 2 1.9 4.3 1l.5.4-3.8 1.4-4.8-7.6h.5c.4.4 1 1 1.9.4zM798 430.9l-3.3 2.8c-.5.5-.5 1.5 0 2h-.5l-3.4-3.4.5-.5c.5.5 1 1 2 0l6.2-6.2c1-.5 1-1 .4-2l3.4 4c-.5-.6-1.4-.6-2 0l-2.8 2.8 2.4 2.4 2.9-2.4c1-1 .5-1.4 0-2l.5-.4 3.3 3.8h-.5c-.4 0-1-.4-1.9.5l-6.2 5.8c-1 1-1 1.4-.5 1.9v.5l-3.3-3.9c.4 0 1.4.5 1.9 0l3.3-3.3zM805.2 441l1.5 1.4 1.9-4.3s-1.5.4-3.9 1.9l.5 1-.5.4-1-1c-.4.5-.9.5-1.4 1-1.4 1-1 1.5-.4 2v.4l-2.4-2.4h.4l2-.5 9.5-5.2.5.4s-.5.5-4.8 10.1c0 1-.4 1.4 0 2.4l-3.8-3.3.5-.5c.5 1 1.4 1 1.9 0 0-.5.5-1.5.5-2l-1.5-1.4.5-.5zM809 450.5l.5-.5c.5.5 1 .5 2 0l6.2-8.1-.5-.5c-1-.5-2.4-.5-3.8 1v-.5l1.9-2.4 7.2 5.3-2.4 2.8h-.5c1.4-1.4 1-3.3 0-3.8v-.5l-6.2 8.2c-1 .5-.5 1.4 0 1.9h-.5z"/>
27
+ <path d="m821.5 452.4-2.4 3.4c-.5 1 0 1.4.5 2l-.5.4-3.8-2.9v-.5c1 .5 1.4.5 1.9-.4l5.3-7.2c.4-1 0-1.5-.5-2l.5-.4 3.8 2.8v.5c-1-.5-1.4-.5-2 .5L822 452l2.9 1.9 2.4-3.4c.4-1 0-1.4-.5-1.9l.5-.5 3.8 2.9v.5c-.5-.5-1.4-.5-2 .5l-4.7 7.6c-1 .5-.5 1 0 1.5v.4l-4.3-2.8h.5c.4 0 1 0 1.4-.5l2.4-3.8zM831.1 465.9l.5-.5c.5.5 1.4.5 1.9-.5l3.8-8.1c.5-1 0-1.5-.5-2l8.2 3.9-2 3.8-.4-.5c1.4-1.9 0-3.8-.5-4.3-.5 0-1-.5-1.4-.5-.5 0-.5 0-1 1-.5.5-1.9 3.3-1.9 3.3.5.5 1.4 1.5 3.4-1h.4l-2.8 5.8-.5-.4c1.4-3-.5-3.4-1-3.4l-1.9 3.8c-.5 1 0 1.5.5 1.5v.5zM845 472.6c-1.4-1-1.4-3.9 0-6.7 1-3 2.9-5.3 4.8-4.4 1.4.5 1 3.4 0 6.3-1.5 3.3-3.4 5.2-4.8 4.8h-.5c3.4 1.4 5.8-.5 7.2-3.9 1.4-2.8 1-6.2-2-7.6-2.8-1.5-5.7.4-7.1 3.8-1.4 3.4-1 6.7 2 7.7zM859.8 473.5l2-5.7c.4-1 0-1.5-.5-2l2.4.5v.5c-.5 0-1 0-1.5 1l-1.9 5.7c-1 2.4-2.4 4.3-5.2 3.4-2-.5-3.4-2.9-2.4-5.3l2.4-6.2c.4-1 0-1.5-.5-2v-.4l4.3 1.9v.5c-.5-.5-1.4-.5-1.4.5L855 472c-.5 1.9-.5 3.8 1 4.3 1.4.5 2.8-.5 3.7-2.9zM864.2 467.3c0-.5 0-.5-.5-.5l3.3.5 3 9.1 1.4-5.8c.4-1 0-1.4-.5-1.9l2.8.5-.4.5c-.5 0-1 0-1.5 1l-2.4 10.5h-.4l-3.9-11.5-2.4 7.7c0 1.4.5 1.4 1 1.9v.5l-2.9-1v-.5c.5.5 1.4 0 1.4-1l2.4-8.6zM880.5 476.9c-1 4.3-3 5.3-3.9 5.3h-1s-.4-.5 0-1l1.5-9.6c.5-.5.5-1 1-.5h1c.9 0 1.8 2 1.4 5.8l1.4.5c1-4.8-1-6.8-3.4-7.2-1.9-.5-4.8-1-4.8-1v.5c.5.5 1.5.5 1 2l-1.4 8.5c-.5 1-1 1.5-1.5 1.5h-.4l4.7 1c2.4.4 4.8 0 5.8-5.3zM884.8 473c0-1-1-1.4-1.5-1.4v-.5l8.7 1-.5 3.8c0-2.4-1.5-3.3-2.4-3.3-.5-.5-1-.5-1.5-.5-.4 0-.4 0-.4 1.4l-.5 3.9c.5 0 1.9.4 2.9-2.4l-.5 6.2h-.5c0-2.9-1.4-2.9-2-2.9l-.4 4.3c0 1 0 1 .5 1l1 .5c1.4 0 2.8-.5 3.8-3.4h.5l-1 3.8-9.1-1c1 0 1.4-.4 2-1.3zM900.6 478.8c0 4.3-1.5 5.7-2.9 5.7-.5-.4-.5-.4-1-.4l-.4-.5.5-10c0-.6 0-.6.4-.6h1c1 0 2.4 1.5 2.4 5.8h1.9c0-4.8-2.4-6.2-4.8-6.2-2-.5-4.8-.5-4.8-.5v.5c.5 0 1.5.4 1.5 1.4l-.5 9.1c0 1-.5 1.4-1 1.4v.5h4.3c2.4 0 4.8-1 5.3-6.2h-2zM914.5 482.6c0 1 .5 1 1.4 1v.5l-5.3.4c.5-.4 1.5-1 1.5-1.9l-1-9c-.5-1-1-1-1.9-1v-.5l5.3-.5c-.5.5-1.5 1-1 2zM919.3 483.6v-.5c.5 0 1-.5 1-1.4l-2-10h-.5c-1 .4-1.9 1.3-1.4 3.3h-.5l-.5-3.4 8.7-1.4.4 3.3h-.4c0-1.9-1.5-2.4-3-2.4h-.4l2 10c0 1 .4 1.5 1.4 1.5v.5zM939.9 474l-2-5.7c0-1-.9-1-1.4-1v-.5l2.4-1v.5c-.5.5-.5.5-.5 1.5l2 6.2c.4 2 .4 4.8-2.4 5.8-2 .4-4.3-.5-4.8-3.4l-2-6.2c-.4-1-.9-1-1.4-1l-.5-.5 4.8-1.4v.5c-.4.5-1 1-.4 1.9l1.4 6.2c.5 2 2 2.9 3.3 2.9 1.5-.5 2-2.4 1.5-4.8zM945.2 470.6c2.3-1 1.9-2.3 1.4-3.8-.5-1.4-1.4-2.4-2.4-1.9-.5 0-1 .5-.5 1l1.5 4.7.4.5 1 3.9c.5 1 1.4 1 2 .4v.5l-4.4 2-.5-.5c1-.5 1-1 1-2l-3.4-8.1c-.5-1.4-1-1-1.9-1v-.4l4.8-2c2-.4 3.8 0 4.8 2 .5 2.4-.5 3.8-2.4 4.8-.5 0-1 .4-1 .4z"/>
28
+ <path d="M957.1 472c-1.4.6-3.3-1.4-4.8-4.7-1.4-2.9-1.4-5.8 0-6.2 1.5-.5 3.4 1.4 4.8 4.3 1.5 2.9 1.5 5.7 0 6.7 3-1 3.9-4.3 2.4-7.7-1.4-2.9-4.3-4.8-7.2-3.8a5.6 5.6 0 0 0-2.4 7.7c1.5 3.3 4.4 5.2 7.2 3.8zM957.6 458.7h-.9l2.8-2 8.7 4.8-3-5.2c-.4-1-1.4-1-1.8-1v-.5l2.4-1c-.5.6-1 1 0 2l4.8 9.6-.5.5-10.6-5.8 3.9 7.2c.4 1 1.4 1 1.9.5v.5l-2.4 1.4v-.5c.5-.5.5-1 0-1.9l-3.8-7.7-1.5-1zM979.2 460.1v-.5c0-.5.5-1 0-1.9l-5.8-8.1h-.5c-1 .4-1.4 2.4 0 3.8l-.4.5-2-3.4 7.2-4.8 2 3c-1.5-1.5-3-1.5-3.9-1l-.5.4 5.8 8.2c.5 1 1.4 1 2 .5v.4z"/>
29
+ <path d="m984.5 448.6 2.8 3.4c.5.4 1.5.4 2 0v.4l-3.9 3.4v-.5c.5-.5.5-1 0-1.9l-5.7-7.2c-.5-1-1-.5-2-.5l3.9-3.3v.5c0 .4-.5 1 0 1.9l2.4 2.8 2.8-1.9-2.3-3.3c-.5-1-1.5-.5-2-.5l3.9-3.4v.5c-.5.5-.5 1 0 2l5.7 7.1c.5.5 1 .5 1.5 0l.4.5-3.8 3.4-.5-.5c.5-.5 1-1 .5-2l-2.9-3.3zM988.8 438.5c-.5-.4-1.5-.4-2 0v-.4l6.3-5.8 2.9 2.9h-.5c-1.5-2-3.4-1-4.3-.5 0 .5-.5.5-1 1 0 0 0 .4.5 1.4l2.9 2.9c.4-.5 1.9-1.5 0-3.9h.4l3.9 4.4v.4c-2.4-2.4-3.4-1-3.9-.4l3 2.8c.4 1 .9 1 .9 1l1.4-1.4c.5-.5 1-2 0-4.8h.5l1.9 3.3-6.2 6.2-.5-.4c.5-.5 1-1 0-2zM1000.3 425.1c-.5.5-.5 1.5.4 2 1 .9 2 .9 3.9 0 1-.5 2.8-1 4.3.4 2.4 2.4 1.4 4.3 1 5.3-.5.5-1.5 1-2 1.4-.5 0-.5 0-.5.5v.5l-3.3-2.9h.5c1.9 1 3.8 1.4 4.8 0 1-1 0-2-.5-2.4-1-1-2-1-3.4 0-1.4.5-3.3.5-4.8-.5-1.9-1.9-1.9-3.3-1-4.8l2-1.4c.5 0 .5 0 0-1l3.4 2.4h-.5c-2.4-1-3.9-.4-4.3.5zM1004.6 421.3c-1-.5-1.5 0-2 .5h-.4l5.3-7.7 3.3 2.4-.5.5a3.3 3.3 0 0 0-4.3 0c0 .5-.5 1-.5 1.4-.4 0-.4.5.5 1 .5.5 3.4 2.4 3.4 2.4.5-.5 1.4-1.5-.5-3.4v-.5l4.8 3.9c-2.9-1.5-3.4 0-3.8.4l3.3 2.4c1 .5 1.4.5 1.4.5 0-.5.5-1 1-1.4.5-1 1-2.4-1-4.3l.5-.5 2.4 2.9-4.8 7.2h-.5c.5-1 .5-1.5-.4-2.4zM1017.5 412.7l-1.4 2.4c-2-2-2.9-3.4-2.9-3.4l4.3 1h1c.5 0 1.4.4 1.9.4 1.4.5 1 1 .5 2h.5l2.4-4.4c-1 1-1.5.5-2.4.5-10.1-1.9-11-2.4-11-2.4v.5l7.6 8.6c.5.5.5 1.5.5 2h.5l1.4-2.4-.5-.5c-.5 1-1 1.4-1.9 0l-1-1 1.5-3.3zM1014.6 402.1c-.4.5-.4 1.5 1 2 1.4.4 2 0 3.4-1s2.8-2 4.7-1c3 1.5 2.4 3.9 2 4.8l-1.5 2v.9l-3.8-2c2.4.5 4.3 0 4.8-1.4.5-1-.5-1.9-1-2.4-1-.4-1.9 0-3.3 1-1.5 1.4-3 2-4.8 1-2-1-2.9-2.4-2-3.9 0-1 1-1.4 1.5-1.9 0-.5 0-.5-.5-1v-.4l3.9 1.9h-.5c-2.4-.5-3.9.5-3.9 1.4z"/>
30
+ </g>
31
+ </g>
32
+ <g stroke="#000" stroke-width="1.4" transform="translate(-306.8 -21.2) scale(.87136)">
33
+ <g id="d" fill="#073163">
34
+ <path fill="#fff" d="M863.2 232.5c-6.2 1.4-10.5 1.9-16.3-3.4-3.8-3.8-2.9-10.5 1-13 4.3-2.8 8.1-4.7 13.4-3.3 5.3 1.5 19.2 14.4 15.8 14.9-3.4 0-8.6 3.3-13.9 4.8zM878 209.5c2-1.5 4.4-2.4 10.6-3 5.8-.4 10-.4 11.5 4 2 5.2 3.4 11.4 7.2 14.3-2.4 1.4-14.4 2.9-18.7.5-5.7-2.9-7.2-14-10.5-15.8zM919.3 210c1.9-1.5 4.3-1.5 10.5-1s8.6 1 10 5.3c1.5 4.8 0 11 3 15.3-3 1-12.5 1-15.9-2.4-5.2-3.8-4.8-14.9-7.6-17.3z"/>
35
+ <path d="M948 212.8c-4.3-1-7.2-1.4-9 0 2.3 2.9.4 14.4 5.2 18.2 3.3 2.4 12 3 13.9-2.4 2.4-4.8 2.4-12-10-15.8zM898.7 208c1.4-1.4 4.3-1.9 10-1.9 6.3 0 10 1 12 4.8 2 4.8 1.4 11 4.8 14.9-1.4 1.9-14.4 1.9-18.2-1-5.3-3.4-5.8-14.4-8.6-16.8zM858 212.3c0-2.4 3.3-2.8 12-3.3 8.5-1 9-.5 11.9 5.7 1.4 3.4 3.3 9.1 7.2 11-10.6 2.5-14 3.9-19.7.5a29.2 29.2 0 0 1-10-10.5c-.5-1.4-.5-2.9-1.5-3.4z"/>
36
+ </g>
37
+ <g fill="#f9d050" stroke-width=".6">
38
+ <g id="f">
39
+ <path d="M881 163.5c-10.1-7.7-22.1-14.9-33.1-16.3a280 280 0 0 1 32.6 25.4"/>
40
+ <path d="M886.7 156.3c-12-8.2-25.9-17.3-39.3-18.2a124 124 0 0 1 33 27.8M902 142.9a93 93 0 0 1 23.5-32.2c-4.8 10.1-10 30.7-12.5 38.9"/>
41
+ <path d="M912.6 140.5A48.4 48.4 0 0 1 937 115a101.2 101.2 0 0 0-18.2 35"/>
42
+ <path d="M916.9 150a84.5 84.5 0 0 1 37.8-31.6c-12 12-29.7 34-34 42.7M923.6 160.6c8.6-4.8 25.9-12.5 38.3-10-7.6 2.8-30.6 13.3-40.7 23"/>
43
+ <path d="M921.7 157.2c8.1-8.6 23-21.5 38.8-26.8-11.5 11-36 36-39.3 39.8M898.7 152c-5.8-17.8-14.4-34.5-27.3-39.8a130.9 130.9 0 0 1 21 48.9M887.6 151.5c-9.5-11.5-22.5-23-37.3-25.4a90.1 90.1 0 0 1 33 38.8"/>
44
+ <path d="M893 151c-12-21.6-21.2-25.4-26.4-29.7 4.3 8.1 14.8 29.7 21 38.8"/>
45
+ <path fill="none" d="M869 149.6a57.7 57.7 0 0 1 17.2 16.7"/>
46
+ <path d="M869 159.6c2.8 2.4 8.1 5.3 12.9 9.6M926 166.8c4.8-3.8 15.3-10 20.6-12M922.6 163.5c4.8-6.3 14.4-14.9 17.8-17.8M936 133.7a286.9 286.9 0 0 0-18.2 22.6M923.6 129.4a157 157 0 0 0-12 21.1M885.7 130.4c2.9 7.7 8.2 20.6 10 25.9M881.4 138.5c2 3 5.8 9.6 7.2 14.4"/>
47
+ </g>
48
+ <g id="g">
49
+ <path d="M897.7 136.1c0-4.3 2.9-9 5.8-9 3.3 0 5.7 5.7 5.7 9 0 3.9-2.9 7.2-5.7 7.2-3 0-5.8-2.8-5.8-7.2z"/>
50
+ <path d="M891.5 140c.5-4.8 3.8-8.6 6.7-8.2 2.9.5 4.3 6.3 3.8 9.6-.5 3.8-3.8 6.7-6.2 6.2-2.4 0-4.8-3.3-4.3-7.6zM904.4 141.4c-1-4.3 1-9 3.9-9.6 2.8-.4 5.7 4.3 6.2 8.2 1 3.8-1.5 7.6-3.9 7.6-2.3.5-5.7-1.9-6.2-6.2z"/>
51
+ <path d="M897.2 145.2c0-4.7 2.9-9 5.8-9 3.3 0 5.7 5.2 5.7 9 0 3.9-2.8 7.2-5.7 7.2-2.9 0-5.8-2.8-5.8-7.2z"/>
52
+ <path d="M888.6 147.6c0-4.3 3.4-9 6.2-9 3 0 5.8 5.7 5.8 9 0 3.9-3.4 7.2-5.8 7.2-2.8 0-6.2-2.8-6.2-7.2zM906.3 145.7c0-4.3 3-9 5.8-9 3.3 0 5.7 5.7 5.7 9 0 3.9-2.8 7.2-5.7 7.2-2.9 0-5.8-2.9-5.8-7.2z"/>
53
+ <path d="M904.4 149.6c0-4.8 3.4-9.1 6.2-9.1 3 0 5.8 5.2 5.8 9 0 3.9-2.9 7.3-5.8 7.3-2.8 0-6.2-3-6.2-7.2z"/>
54
+ <path d="M896.8 153.9c0-4.8 2.8-9.1 5.7-9.1 3.4 0 5.8 5.7 5.8 9 0 4-3 7.3-5.8 7.3-2.9 0-5.8-3-5.8-7.2zM884.8 153.9c0-4.8 2.4-9.1 4.8-9.1s4.3 5.7 4.3 9c0 4-2.4 7.3-4.3 7.3-2.4 0-4.8-3-4.8-7.2zM911.6 153c0-4.4 2.4-8.7 4.8-8.7s4.8 5.3 4.8 8.6c0 4.3-2.9 7.2-4.8 7.2-2.4 0-4.8-2.9-4.8-7.2z"/>
55
+ <path d="M914.5 161c1-4.7 3.8-8.6 5.7-8 2 .4 2.4 6.1 1.5 9.5-.5 4.3-3.4 6.7-5.3 6.2-2-.4-2.9-3.8-2-7.6z"/>
56
+ <path d="M905.4 159.6c.5-4.3 3.3-8.6 5.7-8.1 2.9 0 4.3 5.7 3.9 9-.5 4.4-3 7.3-5.3 6.8-2.4 0-4.8-3.4-4.3-7.7zM892 161c-1.5-4.7-4.4-8-6.3-7.6-1.9.5-2.4 6.2-1.4 9.6 1 3.8 3.8 6.2 5.7 5.7 1.5-.4 3-3.8 2-7.6z"/>
57
+ <path d="M888.6 160.1c0-4.3 2.4-8.6 4.8-8.6 2.9 0 4.8 5.3 4.8 8.6 0 4.3-2.4 7.2-4.8 7.2-2 0-4.8-2.9-4.8-7.2z"/>
58
+ <path d="M895.8 162c0-4.8 2.9-9 5.7-9 3.4 0 5.8 5.2 5.8 9 0 3.9-2.9 7.2-5.8 7.2-2.8 0-5.7-2.9-5.7-7.2zM898.2 109.3c-1 3.8-4.3 7.2-2 12.5-4.2-1.5-8-2-11.4 1.9 4.3-.5 8.1 1 10 3.8-3.8-.5-5.7 1.5-6.7 3.9 3.4-1 6.7-2 8.2-1.5-1.5 1.5-3.9 3.8-4.3 5.8 2.8-2.4 6.2-2 8.1-3.4-1.4 3.4 1.4 6.7 3.8 10-.4-4.7 2.4-8 1-10.5 4.3 1 4.8 4.8 11 4.8-2.4-1.4-3.8-6.2-6.7-6.2 1.4-.5 7.2-1 8.2 0-1-2-4.4-3.8-6.3-3.8 2-2 5.3-5.8 7.7-6.8-3.4.5-8.6 1-10.5 3.9 4.7-3.9 3.8-11 9-12-2.8-.5-7.1 1.4-10.5 4.8 1.5-2.9 1.5-6.7 3.4-7.7-3.9 1-8.2 5.8-9.6 8.2a18 18 0 0 0-2.4-7.7z"/>
59
+ <path d="M900.6 117c0 1.4 0 4.3-.5 5.2M906.8 116.5c-1 1-2.9 4.3-2.9 7.2"/>
60
+ <path fill="none" d="M909.7 122.2a7.6 7.6 0 0 0-3.4 4.4"/>
61
+ </g>
62
+ </g>
63
+ <g id="e" fill="#059334">
64
+ <path d="M858.9 169.7c-3.4 0-6.2-1.4-8.2-3.8-3.3-4.4-12.4-6.3-16.3-2.4-1.4 1-3.3 1-4.7 1.4-2.4 0-5.3 2.4-4.4 7.2 2-1.5 2.4 0 3.9 0 1-.5.5.5.5 1.4 0 2.4 5.2 7.2 10 6.7 5.3 0 7.7 2 8.6 3 1.5 1.3.5.9 1.5 3.3 1.4 1.4 1.9 1.9-.5 3.8a9.7 9.7 0 0 0 0 14.9c6.2 4.7 22 12 39.8-2 17.2-13.4 44-5.7 46-1 2.4 4.9 3.3 7.7 3.8 10.1.5 2 2.9 3.9 6.3 3.4 3.3 0 7.1 1.4 9 2.9 2.5 1.4 5.8 1 4.9-3.4-2-13.4-10.1-15.3-11-21.5 4.7.4 8 .4 10-1.5 1.4-1.9 3.3-5.3 5.3-6.2 1.4-1 1.4-2-.5-1.5-2.4.5-3.8 1.5-8.2 1-22-2.4-83.8-19.2-95.8-15.8z"/>
65
+ <path fill="#000" d="M956.7 186a34.8 34.8 0 0 0-9.2 9.6c-4.7 6.2-19.1 12.4-36.9 12.4-17.2 0-27.7-2.8-35.4-9a60.6 60.6 0 0 0-10.6-6.8c-5.2-2.4-6.2-7.7-4.8-12-1.4 2.4-2.3 4.8-5.2 4.3-2 0-5.8 0-4.8 2-.5-1-.5-2.4-1-3l-1-.9c1.5 1 4.9-1.9 7.3-1.9 1.9.5 4.3-1.9 3.8-4.8l-1.4-6.2c3.8-2 54.1 7.2 64.2 8.1 10 .5 38.8 4.8 35 8.2z"/>
66
+ <path d="M865.6 167.8c4.8-4.8 10.5-7.2 16.3-5.8h1.4c3-2.4 9.6-2.9 13.5-1h1.9c5.7-1.9 16.7 0 20.6 3.9l1.4 1c13-1 20.6 4.7 29.7 13.9 1 1 2.4 2.8 4.8 3.3 2.9.5 3.4 2 1 3.4a37.8 37.8 0 0 0-10 9c-4.4 5.8-18.3 11.6-35.6 11.6-16.7 0-26.8-3-34.5-8.7-4.3-3.3-7.6-5.2-10-6.7-2.9-1-6.7-4.8-5.3-8.6 1-3.8-1.4-8.6-3.3-13.4 1.4-1 5.2-2.4 7.1-1.4z"/>
67
+ <g fill="#00493d">
68
+ <path d="M950.4 179.8c-9-9.2-16.7-14.9-29.7-14 0 .5 0 2-.5 3a66.3 66.3 0 0 1 23.5 17.7c2-2 5.3-4.3 6.7-6.7zM919.3 164.9c-3.9-3.8-14.9-5.8-20.6-3.8 0 1.9 0 4.8-1 6.7 3.4 1.4 6.2 4.8 9.1 8.1 2-.5 6.7-1.9 9.1-2.4a44 44 0 0 0 3.4-8.6zM896.8 161c-3.9-1.9-10.6-1.4-13.5 1-1 2-1.4 5.8-1.4 7.7 2 0 4.8 1.4 5.7 2.4 3-1 6.8-2.9 8.2-4.3.5-2 1.4-4.8 1-6.7zM865.6 167.8c4.8-4.8 10.5-7.2 16.3-5.8-1 1.5-1.4 4.3-1.4 7.2-5.3-.5-12 1-14.9 2.9z"/>
69
+ <path d="M941.8 187.4a64.2 64.2 0 0 0-22-16.8c0 .5-1 2.4-1.5 3.9 2.9 4.3 8.6 13.9 11 19.2 2.4-1 9.1-3.9 12.5-6.3zM905.4 198a179 179 0 0 0 1.4-19.7c2.4-.5 7.2-1.9 9.1-2.4 2.4 3.9 8.2 14 10.6 18.7-5.8 1.4-15.4 3.8-21.1 3.4zM888.6 175c2.4-1 5.8-3 8.1-4.8 2 1.4 5.8 4.8 7.2 6.7 0 4.3-1.4 16.8-1.9 21-3.8 0-10-.9-13.4-2.8.5-7.2 1-15.3 0-20.1zM864.6 180.7c.5-1 1-4.3 1-5.7 3.8-2.4 13.4-4.8 20.6-1 .5 4.8 0 16.8-.5 19.7a96.4 96.4 0 0 0-21-13z"/>
70
+ </g>
71
+ <g fill="none">
72
+ <path fill="#000" stroke="none" d="M840.7 172c-1 0-1.5-2.8-3.4-2.8-.5 0-1.9.5-2.4 0 0 1 .5 2 1 2.4.5 1.4 2.9.5 4.8.5z"/>
73
+ <path d="M840.7 180.2c5.7 0 6.7-7.2 9.6-7.6M844 180.7c4.3 2 7.7-8.1 11-7.7M835.4 168.3c1.4 0 2.4-2 4.8.4 1 1 2.4 1.5 3.4 1.5M842.6 175.4c-2 3-5.3 4.8-7.2 3.9M834.4 163.5c-1.4 1-2.3 2.8-3.3 4.3M829.7 170.6v2.4"/>
74
+ </g>
75
+ </g>
76
+ </g>
77
+ <g stroke-width="1.4" transform="translate(-306.8 -21.2) scale(.87136)">
78
+ <path id="a" fill="#fff" d="M989.7 233v93.4c0 81-38.3 108.8-89.6 130.8-51.3-22-90-49.8-90-130.8v-93.5h179.6z"/>
79
+ <path fill="#c8102e" d="M900.1 312c4.3 0 11-3.8 16.8-9.6 6.2-6.7 16.8-9 27.8 0 11 9.1 17.7 5.3 23.5 0 5.7-5.2 10.5-7.2 21.5-7.2V233H810v62.3c11 0 15.8 2 21.6 7.2 5.7 5.3 12.4 9.1 23.5 0 11.5-9 21.5-6.7 28.2 0 5.3 5.8 12 9.6 16.8 9.6z"/>
80
+ <g fill="#0b50a0">
81
+ <path d="M900.1 360c5.8 0 17.3-6.3 20.1-7.7 10.6-6.3 18.2-.5 24.5 2.4 6.7 2.8 19.1 6.2 26.8 0 7.7-6.3 12-5.8 17.3-5.8 1-7.2 1-14.4 1-22.5v-5.8c-6.8-1.4-10.1.5-17.3 6.8-7.2 6.2-15.4 4.8-26 1-10-4.4-20-12-30.1 0a24.2 24.2 0 0 1-16.3 8c-7.2 0-13.4-4.7-16.3-8-10.5-12-20.1-4.4-30.2 0-10.5 3.8-19.2 5.2-26.3-1-6.7-6.3-10.1-8.2-17.3-6.8v5.8c0 8.1.5 15.3 1.4 22.5 5.3 0 9.2-.5 16.8 5.8 7.7 6.2 20.6 2.8 26.9 0 6.7-2.9 14.3-8.7 24.9-2.4 2.9 1.4 13.9 7.6 20.1 7.6zM900.1 380.6a51 51 0 0 0 23.5-7.2c9.6-5.3 16.3-3 25.9 1.9 10 4.8 18.2 3.3 24 0 2.8-2 5.2-5.8 11.4-4.3-2.8 12-7.2 22.5-12.4 31.1a32.5 32.5 0 0 1-25-1.9c-10-4.8-22.5-7.7-29.2-3.4a36 36 0 0 1-18.2 5.8c-5.3 0-12-2-18.2-5.8-6.7-4.3-19.2-1.4-29.2 3.4a32.5 32.5 0 0 1-25 2c-5.2-8.7-9.5-19.3-12.4-31.2 6.2-1.5 8.6 2.4 11.5 4.3a23.9 23.9 0 0 0 23.5 0c10-4.8 16.7-7.2 26.3-2a51 51 0 0 0 23.5 7.3zM900.1 457.2a191.9 191.9 0 0 0 51.3-29.7c-3.9-1.4-6.2-.5-9.6-2.9-3.4-2.4-13.4-3.3-22 1.5a39 39 0 0 1-39.3 0c-8.7-4.8-18.7-3.9-22-1.5-3.4 2.4-5.8 1.5-9.7 3a184.7 184.7 0 0 0 51.3 29.6z"/>
82
+ </g>
83
+ <g stroke="#000">
84
+ <path fill="#f9d050" d="M887.6 256.4c.5 1-.4 3.4 0 4.3 1 2 1 3 2.4 3.9h3.4c10.5 0 23-4.3 33.5-4.3 10.1 0 16.3 3.3 22 3.3 3.4 0 6.3-2.4 6.3-4.8s-3.8-3.8-12-3.8c-11.5 0-17.7 2.9-27.3 2.9-14.4 0-16.8-5.3-16.8-7.7 0-2.4 2.4-5.7 10.1-5.7 2.4 0 4.3-.5 5.3-1.5.5-1 1.9-2.9 4.8-4.3 3.3-2 10 0 13.4-2.4 0 2-2.9 4.8-5.3 5.8 4.8-1.5 10-1.5 11 2.4-2.4-1.5-6.2-.5-7.6 0-2 .4-2.9 1-4.8 1.4 1.9-.5 2.9 3.3 5.7 3.3-2.8 2.4-7.6 2.4-12.4.5-1.5-.5-5.3-1.9-7.7-1.9-4.8 0-7.7 1-7.7 2.9 0 2.4 3 3.8 11.5 3.8 8.7 0 13.5-2.4 26.4-2.4-1-1.4.5-2.9-1.4-4.3 4.8 0 10 1.4 12 4.8-.5-3.4 2.3-6.2 1.4-9.1 2.9.5 5.3 3.3 5.7 5.7 0-1.4 2-1.4 2-2.8a7.4 7.4 0 0 1 3.8 7.6c1.4-2.4 2.9-1.4 3.8-4.3 1 2 .5 7.7-2.9 9.6 3-2 7.2-2 10.1 1.4-2.9-.4-4.3 1-5.7 1.5A44.4 44.4 0 0 1 948 267c-7.6-.5-8.6-2-13.4-2 2.9.5 8.6 6.3 14 6.3 3.3 0 5.7 0 7.1-.5 1.4-.5 3.8 0 5.7 1 1.5 1.4 4.4 2.8 6.3 2.4-.5 1.9-1.5 2.8-2.9 3.3 2.4 1.5 1 2.4 3.4 4.3-1 0-2 1-3.4.5 1.4 1.4 1.4 3.4 2.9 4.3-.5 0-2 .5-2.9 0 1.4 2 0 4.3 1.4 5.3 1.5 2-1.4 4.3-3.8 2.4.5 1.4-1 2.9-2.4 2.4s-2.4-2-2-2.4c0-.5 0-.5.6-1-1 1.5-2.9 1.5-3.9 1-.4-.5-1-1-1-1.4-3.3 1-4.7-2-4.2-3.4.4-1.4 3.3-2 4.3-1.4 1 .4 1.9 1 2.9 0 1-.5 1.4-1.5 1.4-2.4 0-1.5-1.4-5.8-7.7-5.3-7.2.5-18.7-1.4-24.4-3.4-.5-.4-1-.4-1.5-1 0 2-1.9 3-1.9 4.9 0 2.4 1 4.3 3.9 5.2-1.5 2.4-3.9 2-4.8.5 0 1.5-2 2.4-2 4.3-.4-1-1-1.4-1.4-2.4-1.4 3.4-5.3 5.3-7.2 4.4-2.4 1.9-5.2 1.4-6.2-.5-1.4 1-3.4 1-4.3 0 0 1.4-1 1-1.5 2.9 0 1-1.9 1.4-2.8 1-1-.6-1.5-2.5-.5-3.4-1.4 1-2.9 1-3.8 0 0-1 0-2.4 1-3h.9c-1-.4-2.4 0-3.4-.4-1-1-1-2-.5-2.9.5-.5 2-1.4 3-.5l.4.5c0-1 .5-1.9 1-1.9 1-.5 2.3-.5 3.8 1 1 1.4 1.9 1.4 4.8 1 2.4 0 6.2-2.5 9-4.9-8-1.4-3.3-6.7-.9-8.6-1.9-.5-4.8-.5-6.7.5-10 5.3-20.6 11.5-27.3 9.6a6 6 0 0 0 1 2.8c-1.5 0-4.4 0-5.3-1.4-.5 1-1.4 3.4-.5 5.3-1-1-3.8-2-5.3-2.4 1 1 0 2.9.5 4.3-1.4-1.4-3.8-2.4-4.8-1.4s-2.9 1.4-4.3 1a7.5 7.5 0 0 1-3.8 2.8c0-1 0-2.4-.5-2.9-.5 1.5-2 3.4-3.8 4.3 0-1 0-2.4-.5-3.3 0 1.9-3.8 2.9-4.3 4.3.5-1.4.5-2.9.5-3.8a7.3 7.3 0 0 1-4.8 3.3c.4-1 1-2 .4-2.9-.4 2-3.3 3-5.7 2.4 0 1-2 2.4-4.3 1-1.5-.5-2.4-2-1.5-2.9-1.9 0-3.8-1.9-2.8-3.3 0-.5.4-1 .4-1.5-1.4-1-1.9-2.9-.4-4.3.4-.5 1.9-.5 2.8-.5 0-3.8 3.4-3.8 4.8-1 1 1.5 3.9 3.9 6.3 3.4 1 0 1.4-.5 2.4-.5a43 43 0 0 0 12-6.2c.4-1.4.4-2.4.4-3.3-1.9 1-3.8 1.9-4.8 3.3v-1.4c-1.4 0-3.8-.5-4.8-.5.5-.5 1-2.9 2-3.4-2.4.5-4.8 0-6.8-.4 1-1 1-2.4 1.5-3.9-1 .5-3.4-.4-5.3 0 .5-1.4 1-3.3 2.4-3.8-2 .5-4.3 0-6.7-1 2 0 2.9-2.4 4.3-2.4-3.8 0-4.8-1.9-6.7-2.8 1.4.4 2.4-1 3.8-1-1.4-.5-3.8-2.9-2.8-4.3-.5.5-1 1.4-2 2-1 .4-2.8 0-4.3-1.5-1-2-.5-4.3 1.5-4.8a2.3 2.3 0 0 1-1.5-3.9c.5-1 2.4-2.3 3.4-1l1.4 2c-.5-1-.5-2.9-.5-4.3.5-1.4 1.5-1.4 3-2 1.3 0 2.3 1.5 2.3 3 0 1.4.5 2.3 1 4.3l.4-2c0-1.9 2.4-1.4 3.9-1 1.4.6 1.9 3.4 0 4.9-1 1-.5 2.4.5 3.3 3.3 5.3 9 9.6 13.9 10.1 0-2 1-3.8 2.4-5.3 0-1 .4-2.4 1-3.3.4-2.9 1.8-4.3 3.7-3.4-.4-.5-1-1-1-1.4-1.4-1.5-2.8-3.9-1.8-5.8 1-1.9 3.8-1.4 4.8-.4-.5-3 2.8-5.3 2.8-6.8.5 1.5 1.5 3.4 1 4.8.5-1.9 3.8-4.3 6.2-5.2-1 1.4 2 3.8 1.5 5.2 1-2.4 4.8-3.8 7.6-3.8-1 1-1 2.9-1 3.8 1.5 0 4-.4 4.9-1.9 0 2-1 3.9-2 4.8.5-.5 2.4-.5 3.9-.5-1.5 1.5-1 3-2.4 3.9 1.9-1 4.3-1 4.8 1 1 1.4-.5 3.8-1.5 5.2-1 .5-1.9 1.4-2.4 1.4z"/>
85
+ <g fill="none">
86
+ <path d="M858 262.2c-3.4 1.4-4.4 4.8-4.9 6.7"/>
87
+ <path d="M857.5 265.5c-4.8 3-6.8 5.3-5.8 10.6M859.8 280c3-1 4.8-2 7.2-6.3"/>
88
+ <path d="M865.6 275.6c-1 2 0 5.3-1.4 6.7a8.8 8.8 0 0 0 4.8-6.7"/>
89
+ <path d="M866.6 280.9c1.9-1 4.8-3.9 6.2-7.2-.5 1.4 0 3.8-1 5.3 2.4-2.4 3.4-3.9 3.9-6.3l.4 2c1-1 2-2 2-3.9M878 272.2v2.4c2-1.4 2.5-3.3 2.5-5.7"/>
90
+ <path d="M880 271.8c2.9-2 3.3-4.8 3.3-9.1M883.3 267.5c2-1.5 2.4-2.4 2.4-6.8M879.5 247.8c-1 0-2 .5-2 2 0 .9-1.4 2.3-1.4 3.8-.4 1.9-1.4 2.4-2.8 1.9-1.5-1-1.5-1-1.5-2.4 0-2 2.4-2.4 2.4-4.3.5-1 1-2.4 1.5-2.4-2.4 1.4-5.8.4-6.3-2.4"/>
91
+ <path d="M883.8 249.2c-1 .5-2-1-3.3-.4-.5 0-2 .4-2.4 0"/>
92
+ <path d="M877.1 251.6c.5.5 2.9 1.5 5.3.5-2 .5-3.4-1.9-1.5-3.3M872.8 246.8c-2 0-3.4 1.5-2.9 3 .5 1.4 2.4 1.4 3.8.4M869.4 270.8c.5-.5 1-1.4 1-2 1 0 2-.4 2.4-.9 1.9 0 3.3-1.4 3.8-2.8 1 0 1.5-2.4 2-3.4.4.5 1.4 0 1.9-2 1 .6 2.4 0 2.8-1.4M863.7 255c0 .5-1 1.4-2 2 .5.9 0 3.3-.9 3.7.5 1 0 2.4-.5 3.4 0 .5.5 2 .5 2.4M865.6 245.4c-1 2.4-.5 5.3 1.4 5.8"/>
93
+ <path d="M866.6 253c-.5 2.5-.5 5.8-1 7.3-.5 1-1.4 4.3 2.4 5.2 4.3 1 6.7.5 9.1-6.7M884.3 277.5c0 .5-.5 1.5-1.4 1.5M887.6 276.6c0 1-1 2.4-1.4 2.8M891 275.6c0 1 0 2.4-1 2.9M861.8 245.9c.4 0 1 1 1.4 1.9-1.4-1-2.9 1.4-2 2.9M860.3 254l-1.9 1.5M858.9 258.3c-.5 0-1 .5-1.4.5M835.9 249.7c0-.5 0-.5.5-1M831.6 248.3c-.5 0-.5 0-1-.5M832 255h1M830.1 252.1a5 5 0 0 0-2.8-1.4M856.5 269.9c-3.4 2.8-4.8 5.2-5.3 8.6M859.8 272.2a11 11 0 0 1-3.8 4.4M841.2 286.6a11 11 0 0 1-9.6-1.4c-.5-.5-1-.5-1.5-1M855.5 280c-.4 1.8-1 4.2-1.9 4.7 3.9-2 7.2-4.8 7.7-9.1M827.7 289c1.5-.5 3 .5 3.9-.5M911.1 273.2c1 .5 2.4 1 2.9 1.4.5-1 2.4-2.4 3.8-2.8M877.1 283.3c-.5-2 .5-4.3 3.4-5.3M858.4 291.4c.5-1 .5-2.4 1-3.3M837.3 292.9c-.5 1-1.4 1.9-1.4 2.8M830.1 293.8s0-.5.5-.5c1-.4 2.4-1.4 2.9-2.4M895.3 287.1c-1 .5-1.4 0-1.9-.5M894.8 289.5s-.4.5-1 .5M897.2 291.9c-.5.5-1 1-1.4 1M911.1 292.9c1-.5 1.5-1.5 2-3.4M904.9 292.4c1.4-.5 2.4-1.5 3.8-2.9M918.3 288.5c0-1 0-1.9.5-2.8M953.8 292.9c-1-1-1-2.4.5-3.4 1-.5 1.4-1 2.4-1.4"/>
94
+ <path d="M924.5 276c-7.6-3.3-7.1-7.6-13.4-7.1M958.6 291c.5.4 0 1.9 0 2.3M962.9 291c-.5 1.4-.5 1.9-.5 3.3M926 245.9h-4M885.7 262.2c0 1 1.5 2.9 5.3 2.9-.5 0-1-.5-1-.5M887.6 256.4c-.4.5-1 0-1 0-.9-1 .6-2.8 2-3.8-1.4.5-2.4.5-3.4.5-1 2.9-3.8 4.3-5.7 2.4-.5 1.9-2.9 4.3-4.8 3.8-2-1-2.4-2.4-2-3.8-2.3 2.8-5.2 1-6.1 0-.5-1 0-3.4 1-6.3"/>
95
+ </g>
96
+ <path stroke="none" d="M918.3 274.6c-1.4 1-2.9 0-4.3 1.5-1 1 .5 1.4 1.4 1.4-.4 1.5-.4 2 2 2-1 1.4 1.9 1.9 1.4 3.8a4.6 4.6 0 0 0 1-4.8c-.5-1.5-3-2.4-1.5-3.9z"/>
97
+ <g fill="#073163" stroke="none">
98
+ <path d="M874.7 259.3c-2-1-2.4-2.4-2-3.8-.4 1-1.3 1.4-2.3 1.4-2 4.3-4.3 8.2-7.2 8.2-3.4.4-2.9 3.8-.5 3.8 5.3 1 7.7-1 12-9.6zM827.3 247.8c1.4-1.4.4-2.9-.5-3.3-1.5-.5-4.3 0-5.8 2.3 1.5-.4 3-.4 3.4.5.5 1 1.4 2 2.9.5zM829.7 239.2c3.3 0 4.3.5 4.7 1.9.5 1-.4 2.4-1.4 2.4-1.4 0-2.9-1-2.4-1.4.5-1 .5-2.4-1-3zM839.2 246.8c2.4.5 3.4-1 2-2.8-.5-1.5-2-2.4-4.4-2 2.4 1.5 0 3.9 2.4 4.8zM821.5 255a4 4 0 0 0 4.8 2c1.4-.6 2-2 1.4-3-1-1.4-2.4-1.9-2.8 0-1 2-2.4 1.5-3.4 1zM828.7 284.2c-1-1.9-3.8-1.9-6.2 0 1-.5 2.8 0 3.3 1s1.5 1 2 1c.4-.5 1.4-1 .9-2zM832.5 281.4c0-2.4-3.3-3-5.2-2 1 0 2.4 1 2.4 2 .4 1 1.4 1.4 1.9 1.4 1-.5 1.4-1 1-1.4zM827.7 290c-2.8-.5-4.3 2.9-4.3 5.2.5-1.4 2-2.3 3.4-1.9 1.4 0 1.9-.4 1.9-1.4.5-1 0-1.4-1-2zM828.2 298.1c1 .5 2-.5 2.4-1.9 0-1 2-1 2.4-.5 1 .5 1 2.4-.5 3.4-1 .5-3.3 1-4.3-1zM894.8 283.7c-1-.4-3.3-1.4-5.2 0 1.4-.4 2.4.5 2.8 1.5 0 1 1.5 1.4 2 .5.4-.5 1-1.5.4-2zM890.5 287.1c-1.9-1-4.3 1.4-4.8 3.4a7 7 0 0 1 3.4-1.5c1 .5 1.9 0 1.9-1 .5-.4.5-.9-.5-.9zM893 291c-1.5 0-3.4 1.9-3.4 3.8.4-1 1.4-1.5 2.4-1 1 0 2.4-.5 2.4-1.4 0-1-.5-1.5-1.5-1.5zM897.2 294.8c-1-.5-2.4 0-2.4 1.4s0 2.9-.4 3.4c1-1 1.9-1.5 2.8-2 .5-.4 1-1.9 0-2.8zM951.4 290.5c-1-1-2.4-.5-2.9.4-.5 1-1 3.4 0 5.3 0-1 1-2.4 2-2.4 1.4-.5 1.8-2.4.9-3.3zM954.3 292.4c-2 1-2 4.3-.5 6.2 0-1 .5-2.4 1.4-2.9 1.5 0 2-1.9 1.5-2.8-1-1-2-.5-2.4-.5zM960 294.3c-1-.5-2 .5-2 1.4-.4 1.5.6 3.4 2 4.3 0-1 .5-1.9 1-2.4 1.4-1 1-2.8-1-3.3zM964.3 293.8c-1 0-1.9 1.4-1 2.9.5 1 1.5 1.4 3.4 1-.5 0-1.4-1.5-1-2 .5-1 0-1.9-1.4-1.9z"/>
99
+ </g>
100
+ </g>
101
+ <g id="h">
102
+ <path fill="#f9d050" d="m831.1 383.4 24-73.8 24 73.8-62.9-45.5H894Z"/>
103
+ <path fill="#024919" d="m835.9 376.7 49.8-36.4h-61.3l49.3 36.4-18.6-58.4z"/>
104
+ </g>
105
+ <use xlink:href="#h" width="100%" height="100%" x="90.1"/>
106
+ <use xlink:href="#h" width="100%" height="100%" x="45" y="52.2"/>
107
+ <path fill="none" stroke="#000" d="M989.7 233v93.4c0 81-38.3 108.8-89.6 130.8-51.3-22-90-49.8-90-130.8v-93.5h179.6z"/>
108
+ </g>
109
+ </svg>
@@ -0,0 +1,23 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-kz" viewBox="0 0 640 480">
2
+ <g fill-rule="evenodd">
3
+ <path fill="#00abc2" d="M0 0h640v480H0z"/>
4
+ <g fill="#ffec2d">
5
+ <path d="M60.2 467c3.3 3.2 2.2 8.5 11.3 7.8 13.8 0 14.2-8.4 14.2-14.3S65 446.4 64 437.7c-1-8.7 4.8-11 9.6-11 4.7 0 8 2.7 8 5.1S79.4 435 76 435s1.5-1.7-1.4-3-4.8 2-4.8 4c0 2.2 7.2 2.8 12 1.3 1 4.7 1.4 5-5.3 13 4.8-3.1 5.2-3.8 10.5-2-5.3-4.6-1.3-13.8-1.2-16.1s-1-5.1-3-6.5c-3.9-3.5-12.2-3.7-17.2-1.4-7.3 3.2-7.7 12.8-5.8 16L80 460.7c1.4 2.4 2 9.2-6.6 9.5-9 .7-12.2-11.6-13.8-15.7-2.1 4.5-4.5 16.8-13.6 16.1-8.6-.3-10.2-7-8.8-9.5l20.7-21c2-3.2 1.6-12.8-5.7-16-5-2.3-13.3-2-17.1 1.4-2.2 1.4-3.4 4.1-3.2 6.5s4.1 11.5-1.1 16c5.2-1.7 5.7-1 10.5 2-6.7-7.9-6.2-8.2-5.3-13 4.8 1.6 12 1 12-1.1s-2-5.6-4.9-4.2c-2.8 1.4 2 3.1-1.4 3.1-3.3 0-5.7-.7-5.7-3s3.3-5.3 8.1-5.3 10.5 2.4 9.5 11.1-22 18.1-22 24c0 6 1.4 13.1 15.2 13.1 9 .7 10.1-4.6 13.4-7.8z"/>
6
+ <path d="M59.1 343.3c3.3-3.2 6-12.6 15-12 13.8 0 19 7.7 19 13.6 0 5.9-28 54-29 62.7-1 8.7 4.8 11.1 9.5 11.1 4.8 0 8.1-2.7 8.1-5.2s-2.4-3-5.7-3 1.4 1.7-1.4 3-4.8-2-4.8-4.1c0-2.1 7.2-2.8 12-1.2.9-4.7 1.3-5-5.3-13 4.8 3 5.2 3.8 10.5 2-5.3 4.6-1.4 13.7-1.2 16s-1 5.2-3.1 6.6c-3.8 3.5-12.2 3.6-17.2 1.4-7.2-3.3-7.6-12.8-5.7-16L87 346.6c1.5-2.4-2.3-10.4-10.9-10.7-9-.7-12.1 8.8-13.7 12.9l12.3-1s.5 2 0 3.2a110 110 0 0 0-12.3 1.6l-.5 6.2h6l-.4 2.8s-5.1-.4-5.6 0c-.5.3-1 6.2-1 6.2s-1 .4-2 .4-2-.4-2-.4-.4-5.9-.9-6.2c-.5-.4-5.6 0-5.6 0l-.5-2.8H56l-.5-6.2s-6-1.2-12.3-1.6c-.4-1.2 0-3.1 0-3.1l12.3.9c-1.6-4.1-4.7-13.6-13.7-13-8.6.4-12.4 8.4-11 10.8L58 405.2c1.9 3.1 1.5 12.7-5.7 16-5 2.2-13.4 2-17.2-1.4-2.1-1.4-3.3-4.2-3.1-6.5s4-11.6-1.2-16c5.3 1.7 5.8 1 10.5-2.1-6.6 8-6.2 8.3-5.2 13 4.7-1.6 11.9-1 11.9 1.2 0 2-2 5.5-4.8 4.1-2.8-1.4 2-3-1.4-3-3.3 0-5.7.6-5.7 3s3.3 5.2 8 5.2 10.5-2.4 9.6-11c-1-8.7-29-57-29-62.8 0-6 5.2-13.5 19-13.5 9-.7 12.3 8.7 15.5 11.9z"/>
7
+ <path d="M59.1 319.4c3.3 3.2 6 12.6 15 12 13.8 0 19-7.7 19-13.6 0-5.9-28-54-29-62.7-1-8.7 4.8-11.1 9.5-11.1 4.8 0 8.1 2.7 8.1 5.2s-2.4 3-5.7 3 1.4-1.6-1.4-3-4.8 2-4.8 4.1c0 2.1 7.2 2.8 12 1.2.9 4.7 1.3 5-5.3 13 4.8-3 5.2-3.8 10.5-2-5.3-4.6-1.4-13.7-1.2-16s-1-5.2-3.1-6.6c-3.8-3.4-12.2-3.6-17.2-1.4-7.2 3.3-7.6 12.8-5.7 16L87 316c1.5 2.4-2.3 10.4-10.9 10.7-9 .7-12.1-8.8-13.7-12.9l12.3 1s.5-2 0-3.2a110 110 0 0 1-12.3-1.6l-.5-6.2h6l-.4-2.8s-5.1.4-5.6 0c-.5-.3-1-6.2-1-6.2s-1-.4-2-.4-2 .4-2 .4-.4 5.9-.9 6.2c-.5.4-5.6 0-5.6 0l-.5 2.8H56l-.5 6.2s-6 1.2-12.3 1.6c-.4 1.2 0 3.1 0 3.1l12.3-.9c-1.6 4.1-4.7 13.6-13.7 13-8.6-.4-12.4-8.4-11-10.8L58 257.5c1.9-3.2 1.5-12.7-5.7-16-5-2.2-13.4-2-17.2 1.4-2.1 1.4-3.3 4.2-3.1 6.5s4 11.5-1.2 16c5.3-1.7 5.8-1 10.5 2.1-6.6-8-6.2-8.3-5.2-13 4.7 1.6 11.9 1 11.9-1.2 0-2-2-5.5-4.8-4.1-2.8 1.4 2 3-1.4 3-3.3 0-5.7-.6-5.7-3s3.3-5.2 8-5.2 10.5 2.4 9.6 11c-1 8.7-29 57-29 62.8 0 6 5.2 13.5 19 13.5 9 .7 12.3-8.7 15.5-11.9z"/>
8
+ <path d="M59.1 160.6c3.3-3.2 6-12.6 15-12 13.8 0 19 7.7 19 13.6 0 5.9-28 54-29 62.8-1 8.6 4.8 11 9.5 11 4.8 0 8.1-2.7 8.1-5.1s-2.4-3.2-5.7-3.2 1.4 1.8-1.4 3.2-4.8-2.1-4.8-4.2c0-2 7.2-2.8 12-1.2.9-4.7 1.3-5-5.3-13 4.8 3.1 5.2 3.8 10.5 2-5.3 4.6-1.4 13.8-1.2 16s-1 5.2-3.1 6.6c-3.8 3.5-12.2 3.6-17.2 1.4-7.2-3.3-7.6-12.8-5.7-16L87 164c1.5-2.4-2.3-10.4-10.9-10.7-9-.7-12.1 8.8-13.7 12.9l12.3-1s.5 2 0 3.2c-6.4.4-12.3 1.6-12.3 1.6l-.5 6.2h6l-.4 2.8s-5.1-.3-5.6 0-1 6.3-1 6.3-1 .3-2 .3-2-.3-2-.3-.4-6-.9-6.3c-.5-.3-5.6 0-5.6 0l-.5-2.8H56l-.5-6.2s-6-1.2-12.3-1.6c-.4-1.2 0-3.1 0-3.1l12.3.9c-1.6-4.1-4.7-13.6-13.7-13-8.6.4-12.4 8.4-11 10.8L58 222.5c1.9 3.2 1.5 12.7-5.7 16-5 2.2-13.4 2-17.2-1.4-2.1-1.4-3.3-4.2-3.1-6.5s4-11.5-1.2-16c5.3 1.7 5.8 1 10.5-2.1-6.6 8-6.2 8.3-5.2 13 4.7-1.6 11.9-.9 11.9 1.2 0 2-2 5.5-4.8 4.1-2.8-1.3 2-3-1.4-3-3.3 0-5.7.6-5.7 3s3.3 5.2 8 5.2 10.5-2.4 9.6-11c-1-8.7-29-56.9-29-62.8 0-5.9 5.2-13.5 19-13.5 9-.7 12.3 8.7 15.5 12z"/>
9
+ <path d="M59.1 136.7c3.3 3.2 6 12.7 15 12 13.8 0 19-7.7 19-13.6 0-5.9-28-54-29-62.7-1-8.7 4.8-11.1 9.5-11.1 4.8 0 8.1 2.8 8.1 5.2s-2.4 3.1-5.7 3.1 1.4-1.7-1.4-3.1-4.8 2-4.8 4.1c0 2.1 7.2 2.8 12 1.2.9 4.7 1.3 5-5.3 13 4.8-3 5.2-3.8 10.5-2-5.3-4.5-1.4-13.7-1.2-16s-1-5.2-3.1-6.6c-3.8-3.4-12.2-3.6-17.2-1.3-7.2 3.2-7.6 12.8-5.7 15.9L87 133.4c1.5 2.4-2.3 10.4-10.9 10.8-9 .6-12.1-8.8-13.7-13l12.3 1s.5-2 0-3.2a111.5 111.5 0 0 1-12.3-1.5l-.5-6.3h6l-.4-2.8s-5.1.4-5.6 0c-.5-.3-1-6.2-1-6.2s-1-.4-2-.4-2 .4-2 .4-.4 5.9-.9 6.2c-.5.4-5.6 0-5.6 0l-.5 2.8H56l-.5 6.3s-6 1.1-12.3 1.5c-.4 1.3 0 3.2 0 3.2l12.3-1c-1.6 4.2-4.7 13.6-13.7 13-8.6-.4-12.4-8.4-11-10.8L58 74.8c1.9-3.1 1.5-12.7-5.7-16-5-2.2-13.4-2-17.2 1.4-2.1 1.4-3.3 4.2-3.1 6.5s4 11.6-1.2 16c5.3-1.7 5.8-1 10.5 2.1-6.6-8-6.2-8.3-5.2-13 4.8 1.6 11.9 1 11.9-1.2 0-2-2-5.5-4.8-4.1-2.8 1.4 2 3.1-1.4 3.1-3.3 0-5.7-.7-5.7-3.1s3.3-5.2 8-5.2 10.6 2.4 9.6 11c-1 8.7-29 57-29 62.8 0 6 5.2 13.6 19 13.6 9 .7 12.3-8.8 15.5-12z"/>
10
+ <path d="M60.2 13c3.3-3.2 2.2-8.5 11.3-7.8 13.8 0 14.2 8.4 14.2 14.3S65 33.6 64 42.3c-1 8.7 4.8 11 9.6 11 4.7 0 8-2.7 8-5.1S79.4 45 76 45s1.5 1.7-1.4 3-4.8-2-4.8-4c0-2.2 7.2-2.9 12-1.3 1-4.7 1.4-5-5.3-13 4.8 3.1 5.2 3.8 10.5 2-5.3 4.6-1.3 13.8-1.2 16.1s-1 5.1-3 6.5c-4 3.7-12.3 3.7-17.3 1.5-7.3-3.2-7.7-12.8-5.8-16L80 19.3c1.4-2.4 2-9.2-6.6-9.5-9-.7-12.2 11.6-13.8 15.7C57.5 21 55.1 8.6 46 9.3c-8.6.3-10.2 7-8.8 9.5l20.7 21c2 3.2 1.6 12.8-5.7 16-5 2.3-13.3 2.1-17.1-1.4-2.2-1.4-3.4-4.1-3.2-6.5s4.1-11.5-1.1-16c5.2 1.7 5.7 1 10.4-2-6.6 7.9-6.1 8.2-5.2 13 4.8-1.6 12-1 12 1.1s-2 5.6-4.9 4.2c-2.8-1.4 2-3.1-1.4-3.1-3.3 0-5.7.7-5.7 3s3.3 5.3 8.1 5.3 10.5-2.4 9.5-11.1-22-18.1-22-24c0-6 1.4-13.1 15.2-13.1 9-.7 10.1 4.6 13.4 7.8z"/>
11
+ </g>
12
+ <g fill="#ffec2d" transform="translate(-194.7 8.3) scale(1.0673)">
13
+ <rect width="170.2" height="161.3" x="425.9" y="104.5" rx="85.1" ry="80.7"/>
14
+ <path d="M507 56.4c-.8 0-4.6 26.8-6 32.8-1.4 13.5 18 13 14.8-.5L507 56.3zm6.8 259.8c.7 0 6.5-26.5 8.4-32.4 2.3-13.3-17.1-14-15-.4l6.6 32.8zM378.2 184.6c0 .7 27.9 6.3 34.1 8.1 14 2.3 15-16 .6-14l-34.7 6zm271.7 3.2c0-.7-28.2-5.3-34.5-6.9-14.1-1.7-14.2 16.6 0 14.1l34.5-7.2zM406.8 99.6c-.5.5 17.9 21.3 21.6 26.4 9.6 10 22.3-4 9.6-10.8l-31.2-15.5zm211.1 171c.5-.5-19.7-19.7-23.9-24.4-10.5-9.2-21.8 5.7-8.6 11.5l32.5 13zm-169-200c-.6.3 8 26.1 9.4 32.2 4.8 12.7 22.2 4.4 13.2-6.5L449 70.6zM572 303c.7-.3-6-26.6-6.9-32.7-3.9-13-21.8-6-13.7 5.6l20.7 27zm30.3-214.4c-.6-.5-22.8 16.6-28.2 20-10.7 9 3.8 21.2 11.2 9.3l17-29.3zm-183 193.7c.5.5 24-15 29.6-18.1 11.3-8.2-2.2-21.4-10.5-10l-19 28.1zm-35-144.1c-.3.6 24 14.7 29.3 18.4 12.5 6.5 19.8-10.5 5.5-13.2l-34.8-5.2zM638 236.6c.3-.6-23-16.3-28-20.3-12-7.4-20.5 9.1-6.4 12.7l34.4 7.6zM557.4 63.7c-.7-.2-14.6 23.4-18.3 28.5a7.8 7.8 0 0 0 14 4.7l4.3-33.2zM463.5 308c.7.3 16.3-22.4 20.3-27.3 7.3-11.6-10.4-19-13.7-5.6l-6.6 32.9zM386 238.7c.3.6 28-6 34.5-7 13.6-3.8 6-20.6-6-12.8L386 238.7zM638.1 136c-.2-.6-28.3 4.1-34.8 4.7-14 2.9-7.5 20.2 5 13.2l29.8-17.9z"/>
15
+ <path d="M534.6 58.1c-.7-.1-10.1 25.4-12.9 31-4.1 13 15 16.2 14.7 2.4L534.7 58zM486.1 314c.7.2 12-24.7 15.2-30.2 5-12.6-13.8-17-14.5-3.3L486 314zm-9.7-253.4c-.7.2 1.9 27.2 1.9 33.4 1.9 13.3 20.6 8.7 14.4-3.7l-16.3-29.7zm68 251.9c.7-.1 0-27.2.5-33.4-.9-13.5-20-10.1-14.6 2.7l14 30.7zM428.2 83c-.6.4 12.7 24.3 15.2 30 7.2 11.7 22.7.7 11.8-8.6l-27-21.4zM593 290.9c.6-.4-11-25.2-13-31-6.3-12.1-22.5-2.1-12.4 7.8l25.4 23.2zM393 116.6c-.4.6 21.1 18.4 25.6 23 11.1 8.4 21.4-7.2 7.8-12.1L393 116.6zm234.2 139.7c.4-.6-19.7-19.8-23.9-24.6-10.4-9.1-21.8 5.8-8.6 11.6l32.5 13zm-249.6-97.8c-.2.7 26.3 10.8 32.1 13.7 13.4 4.5 17.7-13.4 3.1-13.8l-35.2.1zM645 216.3c.3-.6-25.4-12.4-31-15.7-13-5.4-18.7 12.2-4.2 13.6l35.2 2.1zM376.7 210c.1.6 28.7.2 35.2.7 14.2-.7 10.8-18.8-2.8-13.9L376.7 210zm270.2-45c0-.7-28.6-2.2-35-3.1-14.3-.2-12.2 18.1 1.7 14l33.3-11zm-245.7 98.4c.4.6 26-11.6 32-13.9 12.4-6.5 1-21.4-8.9-11.3l-23.1 25.2zm222.3-152.3c-.4-.6-26.7 9.9-33 11.8-12.9 5.7-2.6 21.3 8 11.9l25-23.7zM442.8 298.8c.6.3 18.9-20.5 23.5-24.9 8.7-10.7-8-20-12.9-7l-10.6 31.9zM582.5 75c-.5-.4-20.3 19.1-25.2 23.2-9.4 10.1 6.6 20.5 12.4 7.9L582.4 75z"/>
16
+ <g transform="matrix(2.1824 0 0 2.0629 -405 -272.6)">
17
+ <path d="M360.1 247.9c.7 2.5.8 16.5 14.9 30 14 13.4 38 16.4 38 16.4s.1 1.9-1.6 2c-1.7.2-9.9-1.5-14-2.8-4-1.2-7.6-3.4-8-3.3-.5.2-1.3 1.6-2.5 1.4s-7-6.2-9.6-7.8a80.6 80.6 0 0 1-13.7-15.3c-2.8-4.5-3.5-7.5-4.4-7.5s-4.2 2.2-4.2 2.2-3-4.5-5.6-11.7c-2.7-7.2-2.4-11.4-1.8-11.7.7-.3.7 5.3 2.7 10.4 2 5.2 4.8 6.8 4.8 6.8s-1.8-2.7-3.2-9.4-2-13.2-1-15.2 1.9-2.6 2-2.5c.2.2-1.7 3.1-.4 10.8s4.8 14.2 5.6 13.9c.8-.3-.5-1.9-1-6.4s.5-7.3 1.6-7.7c.5-.4 1.3 5 1.4 7.4zm-9.8 12.8c-2.7-2.5-6.9-11.2-7.8-10.8-1 .5 6.8 13 7 14 .2 1.2 1.9 4.6.6 4.1s-10.6-10.3-9.5-8.4 8.1 10.5 7.7 11-5.8-4.8-6-4.1c-.1.6 5.3 5.8 5.2 6.4s-3.5-3.3-3.5-2.5 3.5 4.7 3.5 5.3-3-2.8-2-1c.9 2 3.5 3.7 3.4 4.3s-2.2-.8-2.2-.5c0 .3 3.9 1.7 4.8 2.8 1 1.1 7.4 8.5 12.2 12.2s18.6 10.2 19.6 10.2c.9 0 2.3-2 2-2.8-.3-.8-13.8-5.4-17.5-8.8-3.8-3.4-13-11.6-13.8-12-.7-.5-2.8-.3-2.8-.8s2.7.3 2.5 0c-.1-.3-3.7-1.9-3.6-2.2.2-.3 2.5.6 2.5.3s-4.2-2.6-4-3.1c.1-.5 3.1 1.4 3.1 1 0-.2-4-3-3.9-3.5.1-.5 3.1 2.2 3 1.6s-2.4-4-2.4-4.4c0-.5 3.6 3.4 4 2.6.2-.7-1.3-7.2-1.2-7.3s2.7 1.4 3.1.5c.5-1-1.8-2.3-4-4.1zm46.1 49.2c-1.9.3-2.8-.4-1.7-2 1.5 0 5.5-1.3 6.9-1.9s2.9-1.4 4.1-2.5c1.2-1.3 2 .7 1.3 1.8-.5.7-2.8 2-4.5 2.7-2.5.8-4.7 2-6.1 1.9zm12.5-5.1c-1.3-1.4-.2-2.4 1.7-3.5 2.8-1.5 2-3.6 5.6-5.3 1.6-1 24-10 31.3-14.8s27.8-20.3 33.3-31c5.4-10.6 2.8-11.4 3.6-11.8.7-.5 1.5 1.5 1.4 3.9-.2 2.3-2 9.3-1.4 10s8.2-5.5 11.4-13 5.6-15.3 7.1-15.3c1.6 0-2.6 12.8-5.3 17.8-2.6 5-5.7 7.5-5 8.6.8 1 8.6-5.5 11.3-10.3 2.6-4.9 5.1-9.2 5.6-8.3a34 34 0 0 1-6.7 16.1c-4.2 4.8-9.2 8.3-8.4 9 .7.8 6.4 1.6 12.3-2.4 6-4.1 6.6-10 7.3-9.7.8.3-.7 8.4-6.4 13.4s-13.2 5.5-13 6.6c.4 1 16.3-4.6 16-3.3-.3 1.2-20.6 9.2-20.8 10 0 .6 3.5.8 9-.5 5.4-1.2 10.6-5.5 11.3-4.5.2 1.4-3.9 4.8-10.1 6.4-6.3 1.6-9.4 3.7-9.6 4.2-.1.5 11.2-1.4 11.2-.8s-14.8 3.5-14.9 4.3c-.2.7 14-2.9 13.8-2-.4.7-19.3 6.3-19.1 6.6.1.4 15.8-3.4 15.5-2.8-.4.7-26.4 8-26.6 8.5-.2.4 23-5.2 22.8-4.7s-12 3.4-12 3.7c0 .3 9.5-1.5 9.3-1-.1.4-24 6.5-24.5 7.4-.5 1 12.4-2.5 12.2-.7s-27.7 11-27.8 9.3c-.2-1.7 16.7-6 16.6-6.5-.2-.5-9.7 1-9.9.1-.1-1 6.3-3 5.8-3.4-.5-.5-5.3 1.4-4.9.3.5-1.1 9.6-5.3 9.4-5.6-.1-.3-3.3 1-3 0 .4-1.1 19.7-6.7 19.4-7.4-.3-.6-8.9 1.4-9.7 1.6-.3-.6 12-5.2 11.8-6-.4-.7-6.6 2.7-7 1.8-.2-1 10.9-5.3 10.2-6s-5.7 1.8-6.4 1.1 10.5-8.4 8.8-8.6c-1.7-.1-3.8 2.4-4 .8.2-2 8.7-5.3 6.8-6.9-3-.9-13.1.7-17.3 3.2s-18.2 16.4-21.6 18.6c-3.4 2.1-15 7-17.2 8-3.4 1.2-4 3-7.5 4.8-6.3 1.7-6.2 3.6-9.2 4.7-1.1.3-12.4 5.7-12.5 5.3zm-15.8 7c-1.9 1-3.6 3.4-2.5 4.4.6 1.2 2.5-2.7 4-2.5l8 .4c4.3.3 6.4-.9 8.8-.7s7.7-1.3 10.2-1.3 3 .3 3.2-.8c.3-1-7.8-.3-11.4-.4-3.6-.2-8.1.7-10.8.7-2.5-.1-6.8-.9-9.5.2z"/>
18
+ <rect width="3.4" height="3" x="401.7" y="309.1" rx="1.7" ry="1.5"/>
19
+ <path d="M445 307.7c1.7-.3 6.3 1.3 9.5 2 5.8 2.3 16.6 1.2 16.6 2.3s-.7 2.4-3.2 2.6-8.8-1-8.6-1 5 2.3 3.6 2.9-5.5-1.3-6.2-.8 3.8 1.4 3 1.7c-.6.3-3.7-.4-4.7-.3-1 .2.8 1.3-.4 1.7-1.2.5-3.2-.6-4-.3-.9.3 1.8 2 .6 2.2-1.2.2-4-.8-5.6-1-1.6 0 1.5 1.6.5 1.8-1 .1-3.8-1.3-4.5-1.3s0 2-1 2-2.2-1.7-2.8-1.7 0 2-1 2-1.4-2.1-2.2-2c-1 .2 0 2.7-1.4 2.5-1.3-.1-1.5-2.6-2.6-2.5-1 .2.2 2.5-.8 2.5s-1.2-2.3-2.2-2.5c-1-.1-.6 2.2-1.2 2.2s-1.2-2.2-1.6-2.2c-.3 0 0 2.2-1.2 2s-1.2-2.4-1.5-2.3c-.4.2-.4 1.8-1.2 1.8s-.9-1.6-1.2-1.4c-.4.1-1.6 2.1-2.4 1.8-.9-.3.2-1.9-.2-1.9s-1.4 1.1-2 1 0-1.4-.2-1.4-1.7.8-2.4.8-2.6 1-3.1.1c-.5-1 1.3-1 1.7-1.9.3-.9-1-3.6.4-4.5 1.3-1 5.6 1.3 12-.3 11.6-3.1 20.6-6.7 21.5-6.6z"/>
20
+ </g>
21
+ </g>
22
+ </g>
23
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-la" viewBox="0 0 640 480">
2
+ <defs>
3
+ <clipPath id="a">
4
+ <path fill-opacity=".7" d="M0 0h640v480H0z"/>
5
+ </clipPath>
6
+ </defs>
7
+ <g fill-rule="evenodd" clip-path="url(#a)">
8
+ <path fill="#ce1126" d="M-40 0h720v480H-40z"/>
9
+ <path fill="#002868" d="M-40 119.3h720v241.4H-40z"/>
10
+ <path fill="#fff" d="M423.4 240a103.4 103.4 0 1 1-206.8 0 103.4 103.4 0 1 1 206.8 0z"/>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,15 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-lb" viewBox="0 0 640 480">
2
+ <defs>
3
+ <clipPath id="a">
4
+ <path fill-opacity=".7" d="M-85.3 0h682.6v512H-85.3z"/>
5
+ </clipPath>
6
+ </defs>
7
+ <g clip-path="url(#a)" transform="translate(80) scale(.9375)">
8
+ <g fill-rule="evenodd" stroke-width="1pt">
9
+ <path fill="#EE161F" d="M-128 384h768v128h-768zm0-384h768v128h-768z"/>
10
+ <path fill="#fff" d="M-128 128h768v256h-768z"/>
11
+ </g>
12
+ <path fill="#00A850" d="M252.1 130c-7.8 15.5-13 15.5-26 26-5.2 5.1-13 7.7-2.6 13-10.5 5.1-15.7 7.7-20.9 18.1l2.6 2.6s10-4.8 10.4-2.6c1.8 2.1-13 10-14.9 11.3l-11 7c-13.1 10.3-21 7.7-28.7 23.3l26-2.6c5.2 18.2-13 20.8-26 28.6l-20.9 13c5.3 18.2 20.9 7.8 33.9 2.6l2.6 2.6v5.2l-26 13s-30.8 17.6-31.3 18.2c-.2 1 0 5.2 0 5.2 10.4 2.6 26 5.2 36.5 0 13-5.2 15.6-10.4 31.2-10.4a100.6 100.6 0 0 1-52 20.8v10.4c15.6 0 26 0 39-2.6l33.8-10.4c7.8 0 15.7 7.8 13 15.6-7.7 28.6-39 23.4-49.4 46.8L213 369c10.4-5.2 20.8-10.3 33.8-7.7 15.6 5.2 15.6 15.6 36.4 20.8l-5.2-13c5.2 2.6 10.4 2.6 15.7 5.2 13 5.2 15.6 10.4 31.2 7.8-13-15.6-15.6-13-26-23.4-10.4-15.6-15.7-39 0-41.6l18.2 5.2c18.2 2.6 18.2-2.6 44.2 7.8 15.7 5.2 20.9 13 39 7.8-7.7-18.2-36.3-31.2-54.6-36.4 20.9-13 15.6 5.2 44.3-2.6v-5.2C369.3 278 361.4 265 332.8 265l44.3-5.2v-5.2s-43.7-11.4-44.7-11.9c.3-1.3 1.4-3.3 4.3-4.5 8.3 5.4 33.3 4.8 34.8 4.7-.8-6.4-12.7-11.7-23-16.9 0 0-44.7-27.5-44.9-29.9.9-7 18.3 1.1 37 6.5-5.2-10.4-15.6-15.6-26-18.2l15.6-2.6c-10.4-23.4-36.4-20.8-52-31.2-10.5-7.8-10.5-13-26.1-20.7z"/>
13
+ <path fill="#fff" fill-rule="evenodd" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.2" d="M224 303c1.9-6.1 4.4-11.6-7.2-16.9-11.6-5.3 5.8 21.1 7.2 17zm13.7-12.3c-2.3.3-3.6 8.8 1.1 11.2 5.2.8 1-11.1-1.1-11.2zm13.5-1c-2.4.8-2.5 12.8 6 10.6 8.6-2.1 0-11.5-6-10.5zM267 259c1.8-3-.1-15-7.4-10-7.4 5.1 5 10.8 7.4 10zm-16-10c2.3-.9 2.5-8.3-4-6.3-6.3 1.9 2.3 7.8 4 6.3zm-14.4 2.9s-4.5-6.2-8-4.9c-4.3 4.2 8.3 5 8 4.9zM187 271.7c1.9.2 16-2.3 20.9-7.8 4.9-5.5-25.1 2.3-25.1 2.4 0 .1 2.8 4.9 4.2 5.4zm141.1-35c.7-1.3-7.5-7.1-12.4-4.8-1.3 4.3 12.4 5.7 12.4 4.8zm-27.8-14c1.6-2.2-3.5-11.3-13.7-6.2-10.2 5 10.7 9.8 13.7 6.3zm-32.1-5.3s2.5-8.2 8.6-6.6c7 5.3-8.3 6.9-8.6 6.6zm-6-6.2c-1-2.3-7.3-1-14.6 3.9-7.4 4.7 16.8 1.4 14.6-4zm18.7-22.1s6.5-3 8.5 0c2.7 4.3-8.6 0-8.5 0zm-5.5-2.9c-1.3-2.6-8.5-2.9-8.3 1-1.2 3 9.4 2.4 8.3-1zm-17.2 0c-.7-1.5-11 0-14 6.2 5 2.4 16.3-2.3 14-6.2zm-22 6.3s-13.4 8.3-14.3 14.3c.4 5.2 16.8-9.4 16.8-9.4s1.4-5.8-2.4-4.9zm-14.9-7.5c.4-1.7 6.7-5.6 7.2-5.3.5 1.7-5.1 6.3-7.2 5.3zm4.3 31.6c.3-2.5-16-2.3-9.9 5.2 5.2 6.3 11-4.1 9.9-5.2zm-15 10.7c-.8-1.6-2-6-4.2-6.4-1.9 0-11.7 2-12.5 3.6-.4 1.3 4.1 9.4 5.6 9.6 1.8.7 10.9-6 11.2-6.8zm88.4 55.2c.5-1.8 17.3-7.5 23-2 6.8 9.3-23.4 5-23 2zm46 10.9c3.7-6.2-11.3-13.6-17.6-6.5 2.2 8.5 14.6 11.6 17.6 6.5z"/>
14
+ </g>
15
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-lc" viewBox="0 0 640 480">
2
+ <g fill-rule="evenodd">
3
+ <path fill="#65cfff" d="M0 0h640v480H0z"/>
4
+ <path fill="#fff" d="m318.9 42 162.7 395.3-322.6.9L318.9 42z"/>
5
+ <path d="m319 96.5 140.8 340-279 .8L319 96.5z"/>
6
+ <path fill="#ffce00" d="m318.9 240.1 162.7 197.6-322.6.5 159.9-198.1z"/>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,43 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="flag-icons-li" viewBox="0 0 640 480">
2
+ <path fill="#002b7f" d="M0 0h640v240H0z"/>
3
+ <path fill="#ce1126" d="M0 240h640v240H0z"/>
4
+ <g fill="#ffd83d" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" transform="scale(.8)">
5
+ <g id="a">
6
+ <path stroke="none" d="m216.4 122.3-1.9 62.5h-63.4c-7.8-15.2-14.2-28-14.2-45.5 0-14.6 11.5-26.2 28-26.2 17.5 0 36.8 5.9 51.5 9.2z"/>
7
+ <g stroke-width="1.5">
8
+ <path d="M144.5 125.2v36m5-39.7v48m5.2-50.5v57.2m5-58.4v44.9m5.1-45.1v45.3m5.1-47v47m5.1-47v47m5.1-46.5v47m5.1-46.5v46.9m5.1-44v47m5-46.5v52.9m5.2-52.9v47m5-47v47"/>
9
+ <path fill="#000" d="M176.4 118c10.8 1.7 34.4 12.8 31.7 27.7-3.8 21.2-16.2 12.7-32.6 9.7l-12.4 4.1c-4.5 4.5-11 8.7-15.4 3.2h-7.4v28.8h81.4V122z"/>
10
+ </g>
11
+ <circle cx="212.8" cy="113" r="4.9"/>
12
+ <circle cx="201.7" cy="110.3" r="4.9"/>
13
+ <circle cx="190.4" cy="107.5" r="4.9"/>
14
+ <circle cx="179.1" cy="105.6" r="4.9"/>
15
+ <circle cx="167.8" cy="104.5" r="4.9"/>
16
+ <circle cx="156.8" cy="105.1" r="4.9"/>
17
+ <circle cx="146.2" cy="108.7" r="4.9"/>
18
+ <circle cx="137.3" cy="115.3" r="4.9"/>
19
+ <circle cx="131" cy="124.4" r="4.9"/>
20
+ <circle cx="127.9" cy="135.2" r="4.9"/>
21
+ <circle cx="128" cy="146.3" r="4.9"/>
22
+ <circle cx="130.2" cy="157.2" r="4.9"/>
23
+ <path d="m215 119.5-.5 6.5c-12.3-2-29.7-8.8-46-8.8-15 0-26.6 6-26.6 21.2 0 14.9 6.3 28.5 14.7 42.3l-8.7 4c-7.8-15-14.3-28-14.3-45.4 0-14.6 11.5-29 31.3-29 17.5 0 35.4 6 50.1 9.2z"/>
24
+ </g>
25
+ <use xlink:href="#a" width="100%" height="100%" transform="matrix(-1 0 0 1 444 0)"/>
26
+ <path d="m222 53.1-5.2 9.7 5.2 9.6 5.1-9.6L222 53zm0 24.4-5.2 9.6 5.2 9.7 5-9.8-5.1-9.6zM203.6 75l8.1 5.1 8.1-5.1-8-5.2-8.2 5.2zm20.5 0 8.1 5.1 8.2-5.1-8.2-5.2-8 5.2z"/>
27
+ <circle cx="222" cy="75.1" r="3.9"/>
28
+ <circle cx="222" cy="100" r="10.5"/>
29
+ <path fill="none" stroke-width="1.5" d="M219.3 89.9v6.6a62.5 62.5 0 0 0-7.4.8m20.2 0a62.1 62.1 0 0 0-7.5-.8v-6.6m-12.8 12.7a61.4 61.4 0 0 1 10.2-.9c3.4 0 6.8.3 10 .9"/>
30
+ <path d="M211.8 117.7c-1 17-3 34.5-9.7 47.1l10.8-4.4c3.8-14.3 4.6-32.8 5.7-41.6l-6.8-1.1zm20.4 0-6.9 1.1c1.2 8.8 2 27.3 5.7 41.6l10.8 4.4c-6.6-12.6-8.6-30-9.6-47.1z"/>
31
+ <path d="M222 154.7c-13 0-22.5 6-23 21.6-3.2-5.6-16.5-23-29-20.7-7.4 1.4-14 11.7-12.8 23.4-6.2-17.6-24.1-20.5-37.3-10 11.7 9.5 16.9 37.8 26.7 50h150.7c9.8-12.2 15-40.5 26.7-50-13.1-10.5-31.1-7.6-37.2 10 1-11.7-5.5-22-13-23.4-12.4-2.3-25.7 15.1-28.9 20.7-.5-15.5-10-21.6-23-21.6z"/>
32
+ <g stroke-width="1.5">
33
+ <path fill="#000" d="M297.1 219c0 5.6-33.6 11.7-75.1 11.7s-75.2-6-75.2-11.7c0-5.5 33.7-8.5 75.2-8.5 41.4 0 75.1 3 75.1 8.5z"/>
34
+ <circle cx="222" cy="114.4" r="3.5"/>
35
+ <circle cx="222" cy="122" r="3.7"/>
36
+ <circle cx="222" cy="130.2" r="4.1"/>
37
+ <circle cx="222" cy="139.3" r="4.7"/>
38
+ <circle cx="222" cy="149.4" r="5.1"/>
39
+ <path fill="#000" stroke="none" d="M220 159.2c-.6 0-1.1.5-1 1.4l.6 4.3c.2 1.5 1 1 1.3 0 .2-1.2.1-2 .2-4.1 0-1.1-.6-1.6-1.2-1.6zm4 0c-.6 0-1.1.5-1.1 1.6 0 2.1 0 2.9.2 4 .2 1.2 1 1.6 1.3 0l.5-4.2c.2-1-.4-1.4-.9-1.4zm-7.7.6a1 1 0 0 0-1 1c0 1 .3 2.3.4 3.8.2 1.5 1.3 1 1.4 0 0-.8.2-2.2 0-3.9 0-.6-.2-.9-.6-1a.8.8 0 0 0-.2 0zm11.1 0c-.3 0-.6.3-.7 1a20.1 20.1 0 0 0 .2 3.8c0 1 1.2 1.5 1.3 0 0-1.5.4-2.7.4-3.7 0-.6-.5-1-1-1.1a.8.8 0 0 0-.2 0zm-15.4 1.7c-.5.1-1 .7-.8 1.3.3 1.3.6 2.7.6 4 0 1.1.9.7 1 0a59.8 59.8 0 0 0 .1-4c0-1-.5-1.4-1-1.3zm19.6 0c-.3.1-.6.5-.6 1.3l.2 4c0 .7 1 1.1 1 0 0-1.3.2-2.7.5-4 .2-.6-.3-1.2-.7-1.3a.6.6 0 0 0-.3 0zm-59 .2c-.6 0-1 .7-.6 1.5.6 1.4 1.3 2.2 1.9 3.6.5 1.3 1.4.5 1.1-.4l-1.4-3.7c-.3-.7-.7-1-1-1zm98.8 0c-.4 0-.7.3-1 1-.9 1.9-1.2 2.8-1.5 3.7-.2 1 .6 1.7 1.2.4l1.8-3.6c.4-.8 0-1.5-.5-1.5zm-94.8 0c-.5.2-.7.7-.5 1.3.6 1.2 1.3 2.5 1.8 3.8.4 1.1 1.4.8 1-.2l-1-3.7c-.4-1-1-1.3-1.3-1.2zm90.5 0c-.4.1-.8.5-1 1.2-.7 2-.8 2.6-1.1 3.7-.4 1 .6 1.3 1 .2l1.8-3.8c.2-.6 0-1.1-.4-1.3a.6.6 0 0 0-.3 0zm-85.5 1c-.6.1-1 .9-.6 1.9.4 1.2 1 2.3 1.6 3.7.6 1.4 1.5 1.1 1.3.2-.3-.9-.5-2.3-1.2-4.5-.3-1-.7-1.4-1.1-1.3zm80.8 0c-.4 0-.9.3-1.2 1.3-.6 2.2-1 3.6-1.1 4.5-.3 1 .7 1.2 1.2-.2.6-1.4 1.2-2.5 1.6-3.7.4-1 0-1.8-.5-1.9zm-93.2.7c-.6 0-1 1-.7 1.7.5 1 .9 1.4 1.4 2.6.6 1.2 1.2.3 1-.5-.3-.8-.6-1.7-.8-2.8-.2-.8-.6-1-1-1zm105.6 0c-.4 0-.7.2-1 1l-.7 2.8c-.2.8.4 1.7 1 .5.5-1.2.8-1.5 1.4-2.6.3-.7-.2-1.6-.7-1.7zm-67 2.8c-.7 0-1.3.8-1 1.5.2 1.2.8 2.2 1.1 3.7.4 1.3 1.3.7 1.2-.2a28.7 28.7 0 0 0-.5-4c-.2-.7-.5-1-.9-1zm28.4 0c-.3 0-.7.3-.8 1a28.7 28.7 0 0 0-.6 4c0 .9.9 1.5 1.2.2l1.2-3.7c.2-.7-.4-1.5-1-1.5zm-14.2 1.2c-.8 0-.9 1-.9 1.7a12.3 12.3 0 0 1-2 6.4c-1 1.2-2.3.9-3.5.2a22.3 22.3 0 0 1-3.3-2.2c-1.4-1-2.4-.4-.8 1.9 4.6 6.6 9.6 12.2 9.6 23 0 1.3.3 1.7.9 1.7s.8-.4.8-1.8c0-10.7 5-16.3 9.6-23 1.6-2.2.6-2.8-.7-1.8a21 21 0 0 1-3.3 2.2c-1.3.7-2.6 1-3.5-.2a12.3 12.3 0 0 1-2-6.4c-.1-.7-.2-1.7-1-1.7zm-35.3-1.6a.6.6 0 0 0-.2 0c-.3.1-.4.4-.3 1l1.1 3.9c.3 1 1.4.7 1.2-.5l-.6-3.1c-.2-.8-.8-1.3-1.2-1.3zm70.6 0c-.5 0-1 .5-1.2 1.3-.4 1.4-.4 1.8-.6 3-.3 1.3.9 1.5 1.1.6l1.2-4c0-.5-.1-.8-.4-.9a.6.6 0 0 0-.2 0zm-91.6.4c-.6 0-1 .8-.4 1.8.6 1.2 1.7 2.6 2.2 3.5.5.8 1.4.2.8-.8-.6-1-.8-2.3-1.6-3.8a1 1 0 0 0-1-.7zm112.5 0c-.3 0-.7.2-1 .7-.7 1.5-1 2.7-1.5 3.8-.6 1 .2 1.6.7.8.5-.9 1.6-2.3 2.2-3.5.6-1 .2-1.8-.4-1.8zM134 169.5c-.6 0-.8 1.2-.2 2a19.2 19.2 0 0 0 2.6 2.7c.8.8 1-.2.6-1l-1.8-2.7c-.5-.7-.9-1-1.2-1zm175.9 0c-.3 0-.7.3-1.1 1l-1.9 2.7c-.4.8-.2 1.8.7 1a19 19 0 0 0 2.6-2.7c.6-.8.4-2-.3-2zm-170.8 1c-.6 0-1 .4-.5 1.3l1.9 3.8c.5 1 2 1.3 1.4-.2l-1.3-3.8c-.3-.7-1-1-1.5-1zm165.8 0c-.6 0-1.3.4-1.6 1.1l-1.2 3.8c-.6 1.5.9 1.2 1.4.2.5-1 1.3-2.5 1.8-3.8.5-.9.1-1.3-.4-1.3zm-175.6.4c-.8 0-.8.7-.1 1.2.9.7 2 1.4 3 2.3 1.3 1 1.7 0 1-.8-.6-.8-1.2-1.6-2.9-2.5-.4-.2-.7-.2-1-.2zm185.3 0c-.2 0-.6 0-1 .2-1.6.9-2.3 1.7-3 2.5-.6.9-.1 1.8 1.1.8 1-.9 2.2-1.6 3-2.3.8-.5.7-1.2 0-1.2zm-109.6.7c-.5 0-.8.5-.7 1.2l1 3.6c.2 1.1 1.5 1.1 1.3 0-.2-1-.3-2.3-.7-3.9-.1-.6-.4-.9-.8-1a.6.6 0 0 0-.1 0zm33.8 0c-.3 0-.6.3-.8 1-.4 1.5-.5 2.8-.7 3.9-.2 1 1.1 1 1.3-.1l1-3.6c.2-.7-.2-1.2-.6-1.2a.6.6 0 0 0-.2 0zm-64-2c-.3 0-.5.7-.2 1.7a26 26 0 0 1 1.6 9c-.3 1.2-1 1.3-1.9 1a18.8 18.8 0 0 1-2.8-1.7c-.8-.5-1.7.1-.5 1.1 6 5 10.3 10.7 12 17.6.2 1.4 1.1 1.6.9 0-1.4-8.7-1.7-15.9.4-20.3.8-1.7 0-3.3-1.2-.6-.9 1.8-2.2 2.5-3.3 1a47.9 47.9 0 0 1-4-7.7c-.2-.7-.5-1-.8-1.1a.3.3 0 0 0-.1 0zm94.1 0c-.3 0-.6.4-.8 1-.7 2-2.9 6.2-4 7.8s-2.4.8-3.2-1c-1.3-2.7-2-1.1-1.3.6 2.1 4.4 1.8 11.6.5 20.3-.3 1.6.6 1.4 1 0a32.4 32.4 0 0 1 11.8-17.6c1.2-1 .3-1.6-.5-1a18 18 0 0 1-2.8 1.5c-1 .4-1.6.3-1.9-1-.2-1.2.2-3.9 1.7-9 .2-.8 0-1.5-.3-1.6a.3.3 0 0 0-.2 0zM144.4 172c-.5 0-1 .4-.7 1.2.4 1.4 1.2 2.8 1.5 3.6.3.9 1.2.5 1-.7l-.5-3.1c0-.6-.7-1-1.3-1zm155.1 0c-.6 0-1.2.4-1.3 1l-.4 3.1c-.2 1.2.7 1.6 1 .7.2-.8 1-2.2 1.4-3.6.3-.8-.1-1.2-.7-1.2zm-136.3-1.7c-.6-.1-.7 1.5-.2 2.2l2.8 3.1c.8 1 1.3.1.8-.7l-2.6-3.8c-.3-.5-.6-.8-.8-.8zm117.5 0c-.2 0-.5.3-.8.8l-2.6 3.8c-.5.8 0 1.7.9.7l2.7-3.1c.5-.7.5-2.3-.2-2.2zm-132 4c-.4 0-.7.2-.5 1 .2 1.2.5 2 .8 3.1.3 1 1 .9 1-.1l-.3-3.2a1.1 1.1 0 0 0-1-.9zm146.5 0a1 1 0 0 0-1 .8l-.3 3.2c0 1 .8 1.2 1 .1l.9-3c.2-.9-.2-1.2-.6-1.2zm-133.4 1.4c-.6 0-1.1.7-.4 1.6 1.1 1.5 2.4 2.5 2.9 3 .4.6 1.5.4.8-.7l-2.3-3.5c-.2-.4-.6-.5-1-.4zm120 0c-.2 0-.5.1-.6.4l-2.4 3.5c-.7 1.1.4 1.3.9.8.4-.6 1.7-1.6 2.9-3.1.7-1 .1-1.6-.5-1.6a.9.9 0 0 0-.2 0zm-140.7 4.1c-.4 0-.6.4 0 1.3a17 17 0 0 1 3.3 6.4c.1 1.4-.5 1.4-1.1 1.4-1.9 0-2.8-1.4-4.4-1.8-1.7-.3-2 .5-.8 1.4a53.4 53.4 0 0 1 14.7 13.8c1 1.9 2.3 2.5 1.6.8a23.7 23.7 0 0 1-2.4-12.6c.5-2.8 1.2-4.6 1.1-6.2 0-1.5-1-1.4-1.3 0l-1 2.8c-.4.5-1.8.8-3-.9a48 48 0 0 0-5.6-5.8c-.3-.3-.7-.5-1-.6zm161.7 0c-.3 0-.7.2-1.1.6a48.2 48.2 0 0 0-5.5 5.8c-1.3 1.7-2.7 1.4-3 1a12 12 0 0 1-1-2.9c-.4-1.4-1.3-1.5-1.4 0 0 1.6.6 3.4 1.1 6.2s0 7.2-2.3 12.6c-.8 1.7.6 1 1.6-.8a53 53 0 0 1 14.6-13.8c1.2-.9 1-1.7-.7-1.4-1.7.4-2.6 1.8-4.4 1.8-.6 0-1.3 0-1.2-1.4.1-1.3 1.8-4.4 3.3-6.4.6-1 .5-1.3 0-1.3z"/>
40
+ <path d="m150.1 212.7 2 6.1m2-7.3 1.8 6.2m2.6-7 1.2 6.4m2.8-7.1 1.3 6.3m3.8-6.8 1 6.4m4.5-6.4 1.1 6.3m4.3-8.1.8 6.4m4.2-6.1.8 6.4m4.1-7 .8 6.4m4-7 .5 6.5m4.8-6.5.4 6.5m4.4-6.8.3 6.5m4.9-6.8.3 6.4m5.7-6.6.3 6.5m79 .2-2 6.1m-2-7.3-1.7 6.2m-2.6-7-1.2 6.4m-2.8-7.1-1.3 6.3m-4-6.8-1 6.4m-4.4-6.4-1.1 6.4m-4.2-8.2-.8 6.4m-4.3-6.1-.8 6.4m-4-7-.9 6.4m-4-7-.5 6.5m-4.8-6.5-.4 6.5m-4.3-6.8-.3 6.5m-5-6.8-.2 6.4m-5.8-6.6-.2 6.5m-7.2-7v7.2"/>
41
+ </g>
42
+ </g>
43
+ </svg>
@@ -0,0 +1,22 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="flag-icons-lk" viewBox="0 0 640 480">
2
+ <path fill="#ffb700" d="M0 0h640v480H0z"/>
3
+ <path fill="#ff5b00" d="m26.7 240 88-213.3h88v426.6h-88z"/>
4
+ <path fill="#005641" d="M26.7 26.7h88v426.6h-88z"/>
5
+ <path fill="#8d2029" d="M229.3 26.7H616v426.6H229.3z"/>
6
+ <path id="a" fill="#ffb700" stroke="#000" stroke-width="1.1" d="M579.3 408.6s3.6 7.3 7.6 10.4c6 4.4 18 4 23.3 9.3 6.1 6.1-.5 14.2-.5 15l.4 4.2s-4.2 0-6 .3c-2.6.4-3.6 2.6-8.6 2.3-12.3-.8-11.8-12-12.5-21.5-.6-3.6-2-8.4-2.9-12-.7-3-.8-8-.8-8z"/>
7
+ <use xlink:href="#a" width="100%" height="100%" transform="matrix(-1 0 0 1 845.3 0)"/>
8
+ <use xlink:href="#a" width="100%" height="100%" transform="matrix(1 0 0 -1 0 480)"/>
9
+ <use xlink:href="#a" width="100%" height="100%" transform="rotate(180 422.7 240)"/>
10
+ <g transform="translate(0 -76)">
11
+ <use xlink:href="#b" width="100%" height="100%" stroke="#000" stroke-width="5.6"/>
12
+ <g id="b" fill="#ffb700">
13
+ <path d="m363.5 415.8 2.3-1.4 1 1.4c1.3 1.8 5 1.7 7.4 0l1.9-1.5 1.6 1.4c2 1.9 5.8 1.9 8.3 0 1.7-1.2 2-1.3 3-.3.7.6 2.7 1.2 4.4 1.5 3.2.4 3.2.4 5-2.4 1.6-2.3 1.8-3.2 1.5-5.5a59.4 59.4 0 0 1-.6-5.3c-.2-2.6-.1-2.6 3.6-4a50.5 50.5 0 0 0 5.4-2c1.5-.9 5.7-5.8 5.7-6.8 0-.2-1.6-.6-3.6-.8-8-1-9.3-5.2-4.1-13 8.3-13 13.4-25.5 13.4-33.4 0-3.6.3-4.8.7-4 1.9 3.1-1.5 16.4-6.5 26l-2 3.8 1.9-.4c1-.3 7.4-3 14-6 18.2-8.2 24.4-9.8 36.2-9.3 9.9.4 14 2.3 21 9.6 3.7 4 7.3 6.7 13.8 10.8 13.8 8.6 14.4 9.4 15.1 19.6.7 10.3.3 10.9-7.5 12.6-6.7 1.5-10.9 4.6-12 9-.6 2.2.7 2.3 4 .1l2.5-1.6 1.1 1.6c1.5 2.1 4.5 2.1 7 0l2-1.5 2 1.5c3 2.5 7 1.9 8.2-1.2.2-.5.8-.4 2 .7 2.3 2 8 2.8 8.6 1.2.2-.6-.2-2-1-3.2-3.3-5-4.4-7.3-4.4-10 0-3.8 1-5.7 5.4-8.7 5.2-3.8 6.8-8.6 2.8-8.6-2.4 0-4.9-2.2-6.5-5.7-3.2-7.2-2.5-15.2 2.3-28.6a57.6 57.6 0 0 0 5.4-25.2c0-7.4-.2-8.6-1.8-12.7a45.4 45.4 0 0 0-4.6-8.1l-2.8-3.7 3.5-3c10.8-8.9 8.6-23.5-4.4-29.1-4-1.8-5-1.9-12-1.9-4 0-10.5.6-14 1.3a98.2 98.2 0 0 1-14.2 1.2c-6.8 0-8-.2-10.6-1.6-2.7-1.4-3.2-2.1-3.7-5.5a2 2 0 0 0-1.1-1.5c-1-.3-5.2 3.4-5.8 5-.4.9-.6.8-1.5-.3a13.4 13.4 0 0 1-2-3.6c-1-3.3.3-5.7 4.2-7.6l3-1.4-1.8-1.1c-3.6-2.3-9.8-.7-12 3-.7 1-1.4 2-1.6 2-.2 0-1.4-1-2.6-2.3-4.7-4.6-3.1-11.4 3.2-13.4 3.3-1.1 6.3-.3 6.9 2 1 3.3 3.8-1.1 3.3-5.2-.3-2.7-.3-2.8 1.6-2.8 2.6 0 8 3.4 9.8 6 2 3.1 1.8 8-.4 11.6l-1.7 2.8 2.3-.4c3.2-.7 6.4-2.7 8-5.2a12 12 0 0 0 .4-10.4c-1.5-2.7-1.3-3.1.9-2.2 3.6 1.5 5.6 3.2 7 6.1 1.4 2.6 1.5 3.2.8 6a17 17 0 0 1-2.2 4.8c-1.2 1.6-1.3 1.9-.3 1.9 1.8 0 5.4-1.7 6.7-3 .7-.8 1.7-2.5 2.2-4l1-2.5 1 2c1.5 2.7 4.5 5.2 8.1 6.8 3.9 1.6 5.5 1.7 3.5.2-1.4-1-4-8.5-3.1-9.2a51 51 0 0 1 11.7 9c5.7 5.1 9.3 6.8 14.5 6.8 6.7 0 10.6-5.8 7.6-11.3-1.7-3.2-5.6-3.7-8-1-1 1.3-1.3 2.3-1 3.7.4 1.6.3 1.8-1.2 1.8-2 0-5.8-2.5-12.6-8.2a102 102 0 0 0-32.1-18.7 70.4 70.4 0 0 0-24.3-1.3c-6.4 1.2-14 4.9-18.2 8.8-7.3 7-7.4 16.3-.3 24.8l2 2.4-1.3 2.2a9.3 9.3 0 0 0 .4 10.4c1 1.4 2 2.5 2.3 2.5.2 0 .4-.9.5-2 .2-2.7 1.4-4.5 3.4-5.2 1.8-.7 3-.3 11.2 3 8.7 3.4 23 3.6 38.2.6a42.6 42.6 0 0 1 20 .2c7.2 3 8.8 10.7 3.6 16.5-2.3 2.6-4.4 3.6-11.7 5.6a54.3 54.3 0 0 1-19.5 1.5c-10.8-.1-14.7.1-19 1-4.9 1-7.8 1.1-21.8.8l-16.3-.4 1.8 1.4a22 22 0 0 0 3.1 2.3c1.3.7 1.2.8-.6 1.5-1 .4-3.4.7-5.3.7h-3.3l-.4 2.8a10 10 0 0 0 0 4c.4 1 .2 1.2-.8.8-.7-.3-2.6-.8-4.3-1.1a26.7 26.7 0 0 1-5-1.6c-1.9-1-2.1-1-2.8.3-.6 1-6.2 5.2-7 5.2a26.7 26.7 0 0 0-2.2-7.5c-1-2.1-1.9-4.5-2.2-5.2-.3-1.1-.5-1.2-1-.3-.3.5-.7 2-1 3.2a15.5 15.5 0 0 1-1.8 4.6l-1.5 2.2-1-1.9c-1-2-2.6-4.2-3.2-4.2-.2 0-.5.6-.7 1.5-.5 1.6-4.4 6.3-5.4 6.3-.3 0-.6-1.3-.6-3 0-1.5-.3-2.9-.7-2.9-.4 0-.7.5-.7 1 0 1.2-3.3 5-4.5 5-.4 0-1.2.4-1.7 1-1.2 1.3-2.2 1.1-1.7-.4a9 9 0 0 0-.4-3.8l-1-3.2c-.2-.5-1.4-.3-4 .5-4 1.3-5.4 1-3.3-.6.8-.6 2-2.7 2.6-4.6.7-2 1.7-3.7 2.2-3.9.7-.2.7 0-.2 1.2a5.7 5.7 0 0 0-1.1 2.6c0 .5-.5 1.8-1 2.9-.6 1-1 2-.9 2.1s1.7-.5 3.5-1.3l3.2-1.6v1.4c0 .8.4 2.8.9 4.5l.9 3 2.2-1c2.2-1 4.3-4.6 4.3-7.5 0-1.4.8-1.2 1.2.3 0 .4.6 2.1 1 3.7l1 2.8 1.5-1.8c.9-1 1.9-3 2.3-4.3.8-2.4 2-3.5 2-1.7 0 1.2 3.4 5.8 4 5.4.4-.2 1-1.9 1.5-3.8 1-4 2.5-6.6 3.5-6 .4.2.5.6.3 1-.2.2.6 2.8 1.8 5.6a2557.7 2557.7 0 0 1 2.6 6.3c.4 1 .8 1 3.3-1.3 1.5-1.4 3-2.9 3.1-3.4.3-.8.6-.7 2 .2a25 25 0 0 0 9.5 2.8c.2-.2.4-2 .4-4l.1-3.7 2 .4c1 .3 3.3.3 5 0l3-.4-2.7-2c-1.5-1-3-2.3-3.4-2.9-.3-.6-1.7-1.2-3.2-1.3-4.1-.4-11.4-4.4-11.4-6.4 0-.4 1 .3 2.2 1.4 2.8 2.5 6.6 4 10 4h2.4l-1.5-2a11.9 11.9 0 0 1-2-5.2c-.2-3-.5-3.4-3.6-5.5a35.2 35.2 0 0 1-5-4.3l-1.7-1.9-.9 2.3c-.5 1.3-1 2.3-1.3 2.3-.2 0-1.2-.8-2-1.7a7 7 0 0 0-2-1.6c-.3 0-1 1.2-1.8 2.7l-1.4 2.7-1-1.5a23.8 23.8 0 0 0-3-3.4c-1.2-1-1.7-1.8-1.3-1.8.4 0 1.7 1 3 2.3l2.2 2.3 1-1.7a6 6 0 0 0 .5-3.8c-.4-1.8-.3-1.9.3-.7a16 16 0 0 0 3 3l2.2 1.8 1.5-2.7c1.5-2.8 1.5-2.8 2.1-1.1 1 2.1 7.5 7.5 13 10.6 1 .5.6-1.1-1-5a12.7 12.7 0 0 1-.8-4c0-1.8-.5-2.6-2.8-4.4a10.9 10.9 0 0 1-5-8.4c-.3-1.7-.9-3.5-1.4-4.1-.6-1-.8-.4-.6 2.6.2 2.1-.1 4.7-.6 5.8l-.8 2-.6-1.7c-.4-.9-2-2.5-3.5-3.5s-2.6-2-2.4-2.2c.2-.2 1.8.7 3.5 2 2.7 2.1 3.2 2.3 3.6 1.4.4-1 0-5.6-.8-8.8-.4-1.6-.4-1.6 1.6.4 1.4 1.4 2.2 3.2 2.9 6.2.8 3.8 1.2 4.5 4.7 7.6 2.1 1.9 4 3.3 4.1 3.2.2-.2.4-5 .6-10.8.4-11.1 0-13.8-2.7-17.2l-1.4-1.8 2.2-2.3a16 16 0 0 0 4.7-8.8l.4-2.7-2.4 2.3c-2 1.9-3 2.3-5.3 2.3s-3.2-.4-4.7-2a20 20 0 0 0-8.3-4.8c-1.2-.4-1.6-.2-1.6.6 0 .6-.6 2.2-1.4 3.7l-1.4 2.6-3-3c-1.9-1.7-4-3.2-5.7-3.6-4.1-1-4.3-1-4.3 2.1 0 4.7-2 5.6-5.6 2.5-2.8-2.4-5-3-10.3-2.3l-4 .4.7 1.8c.6 1.5.5 2.2-.8 3.9-2.1 2.8-4.8 4-9 4-2 0-4.4.4-5.4.9s-3.6 1-5.7 1.2c-2 .2-4.3.6-5 .8-1 .4-1 0-.7-2.2.5-3.4-2-6-5.7-6-4.9 0-7.1 4.4-5.2 10.2a44.6 44.6 0 0 1 1 3.8 23 23 0 0 0 5.2 6.6c2.6 2.6 5 5.3 5.4 6a9 9 0 0 0 3 2.5l2.2 1.2-.3-2.4c-.3-2.6.2-3 1.6-1.1.5.6 1.8 1.7 2.8 2.3 1.7 1 2 1 2 .2 0-.6.3-1.9.7-2.9l.7-1.8 1.3 2.5c.7 1.4 3 4.5 5.1 7 4.1 4.7 6.7 10 5.4 11.2-.6.5-2 .5-5-.1-2.2-.4-5-.7-6.2-.5-2.3.3-2.5 0-1-1.8 1.5-2 1.2-2.3-1.8-2.3-3.5 0-12.2-1.7-15.6-3-3.2-1.3-4-1-5 2.1l-1.7 5.6-1 3 3.6-.3a37 37 0 0 0 5.5-1 6 6 0 0 1 2.2-.3c.2.1-.3 1.3-1 2.7l-1.4 2.4 2.2-.4c1.2-.3 3-.9 4-1.4 1.8-.8 2-.8 3.4 1.5 1.7 2.7 3 2.6 3.3-.3.3-3 1.3-2.6 3.2 1.4 1.8 3.8 3.6 5.2 4 3 .1-.8 1-2 2.1-2.8 2.2-1.5 3.8-1 4.7 1.3 1 2.5-1.2 5-7.4 8.8a43 43 0 0 0-21.7 31c-1.9 11.8 4 24 15.6 32.9 5.6 4.2 14.5 8.6 13.9 7-2.4-7.3-2.3-21 .1-23.3.4-.4.3 1-.3 3.1-2 7.9-1 14.1 4 28.7 4.4 13.2 3.8 18.9-2.6 22.6-2 1.2-3.3 1.4-8.8 1.3-6 0-6.7 0-8.6 1.6a15.7 15.7 0 0 0-4.3 8.6c0 1.3 1.4 1.1 4-.4z"/>
14
+ <path d="m460.5 415.5 2.5-1.6 1.7 1.6c2.2 2.1 4.9 2 7-.1 1-1 1.8-1.6 1.9-1.5l.9 1.6c.5.9 1.6 1.3 3.6 1.5 2.3.1 3 0 4-1.4l1-1.7 2.5 1.6c6.8 4.4 10.4-.2 7.3-9.3-1.5-4.6-.6-7.2 4.3-13 2.1-2.5 3.8-5.2 3.8-6 0-1.1-.4-1.3-3.2-1.2-2.6 0-3.4-.3-4.8-1.8-2.3-2.5-2.1-5.4.4-8.6l2-2.5-3.6-2.4a59.7 59.7 0 0 1-8-7.1 25.7 25.7 0 0 0-17.5-9l-4.7-.5v3.6c0 4.5 2.2 8.9 8 16.3 6.6 8.4 7 9.7 7.3 20.7l.3 9.3-2 1.8c-1.7 1.6-2.4 1.9-8 2.2-5.3.3-6.5.6-8 2a8.7 8.7 0 0 0-3.4 5.3c-.3 1.5-.2 1.8.9 1.8.7 0 2.4-.7 3.8-1.6zm-142.2-24a5.8 5.8 0 0 0 1-3c0-1 .6-1.4 3.2-1.8l3.1-.4-2-1.7c-2.5-2-2.8-3.5-.6-3.5s5.8-2.2 6.4-3.9c.3-.8 0-1.8-.4-2.3-1.2-1.4-3.5-1.2-3.9.4-.5 1.6-1.2 1.6-3 0-2.5-2.5-2.6-7.6 0-10.6 1.1-1.4 1.1-1.4-.4-2.9-1.6-1.6-2.8-4.6-2-5.4.2-.2 1.5 0 2.8.5 2 .6 2.7.6 3.5 0 2.3-1.9-.2-4.3-4-3.7-1.6.2-2.2 0-2.4-.8-.2-.6-1.5-1.4-3-1.8-2.7-.7-2.7-.7-2.7 1.2 0 2-1.2 2.4-3.4 1.1-1.8-1-3.5-.2-3.5 1.7 0 1.8 1.7 2.6 5 2.4 2.4-.1 2.5 1.7.2 4.3l-1.7 2 1.3 1.9c2 2.8 1.8 7.5-.3 9.9l-1.7 1.8-1.1-1.5c-1.6-2-3.7-1.9-4.3.3-.3 1.4 0 2 1.8 3.6 1.2 1 3 1.8 3.9 1.8 2.3 0 2.2 1.9-.2 3.7l-2 1.5 3 .4c1.6.3 3 .7 3 1 0 1.3 2 5.2 2.6 5.2.4 0 1.2-.7 1.8-1.5z"/>
15
+ <path d="M356.5 374.9c2.7-1 8.5-6 8.5-7.1 0-.4-1.6-2.2-3.6-4-4-3.6-8.5-9.9-9.7-13.5-.6-2-3.5-5.2-11.7-13.2l-10.9-10.5-3.1.8c-1.8.4-3.9.8-4.7.8-1.5 0-1.5 0 .5 1.6l2 1.6 3-1.6c2.7-1.6 2.8-1.6 3.1-.3.2.7-.2 2-1 2.9-.7.9-1.1 2-1 2.3.3.3-.4 1-1.5 1.6-2 1-3.5 4.3-1.9 4.3 1.5 0 4.7-4 4.3-5.3-.2-.7 0-1.4.2-1.6 1.3-.7 1.2 2.4 0 4-.8.8-1.2 1.8-1 2.2.2.3-.5 1-1.6 1.6-2 1-3.5 4.3-1.9 4.3s4.7-3.8 4.4-5.2c-.2-.7-.2-1.5.1-1.7.9-.4 1.3 2 .6 3.2a2.3 2.3 0 0 0 0 2.2c.7 1.3 0 3.7-1.3 4.5-.5.3-.2 1 1.2 2 2 1.4 2 1.6 2 8 0 5.4.2 6.8 1.2 7.7 1 1 1.2 1 1.2 0s2-2.4 3.5-2.4c.5 0 3.4 2.5 6.5 5.5s6.4 5.7 7.3 5.8l2.2.4c.3 0 1.7-.3 3.1-1zm-33.3-26.1c0-1.7-3.6-3.6-7.9-4-3.5-.5-3.5-.4-3.5 1.3 0 1.4.5 2 3 3 3.8 1.7 8.4 1.5 8.4-.3z"/>
16
+ <path d="M327.1 348.6c1.8-1.6 2.6-3.4 1.5-3.4-1.2 0-4.4 2.8-4.4 4 0 1.6.6 1.5 3-.6zm-3.7-5.1c.1-1-.5-1.6-2.3-2.5-4-1.7-8.6-2.6-9.7-1.7-2.1 1.7-.7 3.9 2.6 4.3 1.4.1 3.2.5 4.1.9 2.6 1 5 .5 5.3-1zm0-5.3c.2-1.3-.7-1.8-8-4.4-5.5-2-7.9-1-6.1 2.3.6 1.1 1.6 1.6 3.9 2 1.7.2 4 .7 5.1 1.1 3 1 4.8.6 5-1zm3.6-4.9c1.1-1.1 2-2.4 2-3 0-1.5-4.3 1.3-4.9 3.3-.6 2.3.5 2.2 3-.3zm-3.6-.3c.2-1.6-2.4-3-7.6-4.1-3.9-.9-5.6-.4-5.3 1.4.2 1 1.5 1.7 5 2.8 5.9 1.8 7.6 1.8 7.9-.1zm5-7.4c6.8-3 7.3-10.5 1-12.5-2.6-.8-4.2-.3-5.2 1.4-.8 1.4-.3 3.8.7 3.8.4 0 .7.5.7 1 0 2.7-10.2 3.8-14.4 1.7-1.5-.7-2-2.7-.9-2.7 1 0 1.6-2 1.1-3.3-.6-2-2.6-2.6-5.3-1.8-6.3 1.6-6.1 9 .3 12a33.6 33.6 0 0 0 22 .4z"/>
17
+ <path d="M324.3 319.8c.4-.4.2-1-.4-1.4-1.4-1.1-1.3-2.8.2-4.7 1.2-1.4 1.3-3.6 1.7-25.1.7-37.1 3.5-65 7.1-71.8 1.5-2.6 1.3-2.6-2.5 0a36 36 0 0 0-11.7 13.6c-6.2 11.5-8.3 27-8.3 60.2 0 18.8.1 21.3 1.2 23 1 1.8 1 2.4.4 4.2-.5 1.1-.7 2.3-.5 2.5 1.4 1.3 11.4 1 12.8-.5zm56.1-35.4c.3-.3-.2-2-1-3.6-1.2-2.6-1.7-3-3.4-3a65 65 0 0 1-23-6.4c-5.1-2.3-7-2.8-7.5-2.2-1.6 1.5 1 5 5 6.9a64 64 0 0 0 18.3 3.7c2.7 0 2.8 0 1.2 2.3l-1 1.6h3l5 .6c3 .7 3 .7 3.4.1z"/>
18
+ <path fill="#000" d="M412 301.1c0-1-2.9-3.5-5.7-5.2-2.3-1.3-2.7-1.4-2.7-.3 0 1.6-1.4 5.7-2 5.7-.3 0-.8-.8-1-1.7-.3-1-1.4-3-2.5-4.3l-2-2.5-1.4 2.3c-1.4 2.2-3.9 4.3-5 4.3-.2 0-.3-1.2 0-2.5.1-1.6 0-2.8-.5-3-.4-.3-.8-.2-.8.2 0 .8-3.4 4.6-4 4.6-.4 0-.8-1-1-2.4l-.8-4.8c-.2-1.2.3-.4 1 2l1.6 4.1 1.6-2.5a11 11 0 0 0 1.6-3.4c0-.5.3-.7.7-.5.4.2.9 1.9 1.1 3.7l.5 3.4 1.8-2a28.8 28.8 0 0 0 2.6-3.2c.7-1.2.8-1.2 2.3 0 .8.8 2.1 2.5 2.9 3.9s1.5 2.4 1.6 2.3l.6-3.2.4-3c.1-.5 5.4 3 7.4 4.7 1.2 1.1 2.4 1.9 2.6 1.7.2-.2.4-1.8.4-3.7 0-2.8-.3-3.6-2-5.1-2-1.8-2-1.8-2.8-.5-1 1.7-2.1 1.7-2.1 0 0-1.2-3.8-5.9-4.7-5.9-.3 0-1.1 1-1.8 2.3s-1.5 2.3-1.7 2.3c-1 0-6.3-6-6.3-7 0-.8.4-.6 1.3.8a21 21 0 0 0 3.1 3.6c2 1.8 2.8 1.4 3.6-2.1.3-1 .7-1.8 1-1.8.8 0 5.4 4.9 6 6.5l.7 1.6.5-1.8c.6-2.2 1.3-2.2 2.3-.2.4.8 2.4 2.6 4.4 3.8l3.7 2.4.7-2.4c.4-1.3 1-2 1.2-1.6.4.5-.6 4.5-1.3 5.3 0 .1-1.3-.6-2.6-1.5l-2.5-1.8v3.2c0 1.7-.2 3.8-.4 4.6-.5 1.6-1.7 2-1.7.6zm-18.5-25.4c-4.4-3.6-5-4.4-5-6.2l.1-1.8.3 1.7c.2 1 1.4 2.6 2.8 3.8l2.6 2 1.5-1.8c.9-1 1.6-2.2 1.6-2.6 0-1.2.2-1.1 3.2 1.5 2.6 2.3 2.7 2.3 3 .8.3-.8.2-2.4 0-3.5-1-3-.8-3.4.5-1.6l2.4 2.8c1 1.1 1.1 1.1 1.5-.3.3-.9.5-2.4.5-3.4v-1.9l2.3 2.7c2.3 2.6 2.5 2.7 3.1 1.4.5-.7.8-2.4.8-3.7 0-1.8.2-2.2.6-1.6.8 1.2.3 4.2-1.1 6.8l-1 2-1.3-2.1c-1.7-2.6-2.3-2.6-3.3.2-1 2.7-1.7 2.9-2.7.8-.6-1.3-.8-1.1-1.2 1.7l-.5 3-3-2.3-3-2.3-1.5 1.5c-.7.9-1.3 2-1.3 2.4 0 1-.8 1-1.9 0zm39-13.6c-1.5-1.4-2.6-2.8-2.4-3 .3-.3.5-.4.6-.2a67 67 0 0 0 3 3c3.4 3.6 2.7 3.7-1.1.2zm-52-5.4c-1.4-2-1.3-3.2.5-5.4 1.2-1.5 1.8-1.7 4-1.4 1.5.1 4.6 1.4 6.9 2.8a21.2 21.2 0 0 0 11 3l-1.7-2.8c-2.2-3.3-2.2-3.7.4-1.7 2.6 2.1 5.7 2.7 12.7 2.5l3.4-.1-2-2c-2.7-2.7-1.9-3 1.2-.3 2.8 2.5 2.7 2.7-3.4 3.3a23 23 0 0 1-7.6-.5c-3.4-1-3.6-.9-2.9.2.4.7 1 1.2 1.3 1.2.4 0 .7.4.7.8 0 1.3-7.4.1-11-1.6-8-4.1-9-4.5-11-3.9a4.3 4.3 0 0 0-2.4 2.3c-1.3 3.3 3.4 5.9 5.3 3 .6-.9.5-1.4-.5-2.5-1.4-1.4-1.2-1.6.6-1 1.3.5 1.4 3.6.2 4.8-1.3 1.3-4.5 1-5.7-.7z"/>
19
+ <path fill="#000" d="M412.4 248.6c-1-1-.2-1.2 4.3-1.3 5.6-.1 9-1 13-3.6 3.2-2 4.1-1.6 1 .5-2.7 2-7 3.4-11.3 3.8l-5.1.7c-.8.2-1.7.1-2-.1z"/>
20
+ </g>
21
+ </g>
22
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-lr" viewBox="0 0 640 480">
2
+ <defs>
3
+ <clipPath id="a">
4
+ <path fill-opacity=".7" d="M0 0h682.7v512H0z"/>
5
+ </clipPath>
6
+ </defs>
7
+ <g fill-rule="evenodd" clip-path="url(#a)" transform="scale(.9375)">
8
+ <path fill="#fff" d="M0 0h767.9v512H0z"/>
9
+ <path fill="#006" d="M0 0h232.7v232.8H0z"/>
10
+ <path fill="#c00" d="M0 464.9h767.9V512H0z"/>
11
+ <path fill="#c00" d="M0 465.4h767.9V512H0zm0-92.9h767.9v46.2H0zm0-93.2h766V326H0zM232.7 0h535.1v46.5H232.7zm0 186h535.1v46.8H232.7zm0-92.7h535.1v46.5H232.7z"/>
12
+ <path fill="#fff" d="m166.3 177.5-50.7-31-50.4 31.3 18.7-50.9-50.3-31.4 62.3-.4 19.3-50.7L135 95h62.3l-50.1 31.7 19.1 50.8z"/>
13
+ </g>
14
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-ls" viewBox="0 0 640 480">
2
+ <path fill="#fff" d="M0 0h640v480H0z"/>
3
+ <path fill="#009543" d="M0 336h640v144H0z"/>
4
+ <path fill="#00209f" d="M0 0h640v144H0z"/>
5
+ <path stroke="#000" stroke-width="1.6" d="M319.6 153c-2.7 0-5.4 3-5.4 3l.3 32.4-10.3 10.7h8.3v18.5l-49 66-7.2-2.6-12.7 27s31.3 19.6 76.7 19c49.8-.5 76.9-19.9 76.9-19.9l-13-26.6-6.5 2.8-49.6-65.6v-19.1h8.2L325.1 188v-32.2s-2.7-3-5.5-2.9z"/>
6
+ <path fill="none" stroke="#000" stroke-width="8" d="M336.7 230.4h-33.9s-12.2-25.9-10.3-44c2-18.4 12.6-27.1 26.6-27.3 16.6-.1 25.2 8.1 27.8 26.6 2.6 18.3-10.2 44.7-10.2 44.7z"/>
7
+ <path fill="#fff" d="M260.5 292.1c-.6.7-4.7 8.9-4.7 8.9l7-1.5-2.3-7.4zm4 10.5-7.4 2.4 8.9 3.5-1.5-5.9zm3.3-10.3 3.7 10.9 9-2.6-2.3-5.2-10.4-3.1zm5.8 14.8 1.2 4.4 12 3-4.8-10.2-8.4 2.8zm13.2-9.3 4.3 10.2 9-3.5-3-4.5-10.3-2.2zm6 13.9 1.4 3.8 14 2-5.9-9.2-9.6 3.4zm13.4-11 5.2 9.1 13-4.8-1.4-3.5-16.8-.7zm7.6 12.4 2.7 4.8 16.2-.5-6-9-13 4.7zm17.1-12 4.4 7.6 10.4-5-2.8-4-12 1.4zm17 5.8-10.3 5.1 2.7 4.5 13.8-2.2-6.2-7.4zm3.3-8 5.3 6.7 8.7-6.9-3-3-11 3.2zm15.9 3.5-8.3 6.3 2.2 3.9 11.4-3-5.3-7.2zm11.4-13 2 2.9-5.7 8.5-5.9-7.6 9.6-3.8zm3.9 7.3 3.5 7-7 2.4-.6-3.3 4-6z"/>
8
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-lt" viewBox="0 0 640 480">
2
+ <g fill-rule="evenodd" stroke-width="1pt" transform="scale(.64143 .96773)">
3
+ <rect width="1063" height="708.7" fill="#006a44" rx="0" ry="0" transform="scale(.93865 .69686)"/>
4
+ <rect width="1063" height="236.2" y="475.6" fill="#c1272d" rx="0" ry="0" transform="scale(.93865 .69686)"/>
5
+ <path fill="#fdb913" d="M0 0h997.8v164.6H0z"/>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-lu" viewBox="0 0 640 480">
2
+ <path fill="#00a1de" d="M0 240h640v240H0z"/>
3
+ <path fill="#ed2939" d="M0 0h640v240H0z"/>
4
+ <path fill="#fff" d="M0 160h640v160H0z"/>
5
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-lv" viewBox="0 0 640 480">
2
+ <g fill-rule="evenodd">
3
+ <path fill="#fff" d="M0 0h640v480H0z"/>
4
+ <path fill="#981e32" d="M0 0h640v192H0zm0 288h640v192H0z"/>
5
+ </g>
6
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-ly" viewBox="0 0 640 480">
2
+ <defs>
3
+ <clipPath id="a">
4
+ <path d="M166.7-20h666.6v500H166.7z"/>
5
+ </clipPath>
6
+ </defs>
7
+ <g clip-path="url(#a)" transform="matrix(.96 0 0 .96 -160 19.2)">
8
+ <path fill="#239e46" d="M0-20h1000v500H0z"/>
9
+ <path d="M0-20h1000v375H0z"/>
10
+ <path fill="#e70013" d="M0-20h1000v125H0z"/>
11
+ <path fill="#fff" d="M544.2 185.8a54.3 54.3 0 1 0 0 88.4 62.5 62.5 0 1 1 0-88.4M530.4 230l84.1-27.3-52 71.5v-88.4l52 71.5z"/>
12
+ </g>
13
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-ma" viewBox="0 0 640 480">
2
+ <path fill="#c1272d" d="M640 0H0v480h640z"/>
3
+ <path fill="none" stroke="#006233" stroke-width="11.7" d="M320 179.4 284.4 289l93.2-67.6H262.4l93.2 67.6z"/>
4
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-mc" viewBox="0 0 640 480">
2
+ <g fill-rule="evenodd" stroke-width="1pt">
3
+ <path fill="#f31830" d="M0 0h640v240H0z"/>
4
+ <path fill="#fff" d="M0 240h640v240H0z"/>
5
+ </g>
6
+ </svg>
@@ -0,0 +1,70 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-md" viewBox="0 0 640 480">
2
+ <g fill-rule="evenodd" stroke-width="1pt">
3
+ <path fill="#00319c" d="M0 0h213.3v480H0z"/>
4
+ <path fill="#ffde00" d="M213.3 0h213.4v480H213.3z"/>
5
+ <path fill="#de2110" d="M426.7 0H640v480H426.7z"/>
6
+ </g>
7
+ <path fill="#ff1900" fill-rule="evenodd" stroke="#000" stroke-width=".7" d="m360.4 320.4 24.2 35c1.4 2 2.7 3.9.7 5.2-2 1.3-1.4 6.4 0 8.4 2.7 3.9 6 4.5 8 3.2l18.4-11.6c2-1.2 2.7-4.5 0-8.4-1.5-2-6-4.5-8-3.2-2.1 1.3-3.5-.7-4.8-2.6l-24.3-35"/>
8
+ <path fill="#a77b3b" fill-rule="evenodd" stroke="#000" stroke-width="2.5" d="M177.2 696.3c0 24.4-9.6 44.3-21.3 44.3-11.7 0-21.3-19.9-21.3-44.3S144.3 652 156 652s21.3 19.8 21.3 44.3z" transform="matrix(.52728 -.42386 .44358 .50386 -32.4 20)"/>
9
+ <path fill="#ff1900" fill-rule="evenodd" stroke="#000" stroke-width=".7" d="m262 306.1-21.5 36.7c-1.2 2-2.4 4-4.5 3-2.1-1.2-6.6 1.7-7.8 3.8-2.4 4-1.5 7.2.7 8.4l19.2 10.2c2 1.1 5.4.2 7.8-3.8 1.1-2.2 1.4-7.3-.7-8.4-2.1-1.1-1-3.2.3-5.2l21.4-36.7"/>
10
+ <path fill="#a77b3b" fill-rule="evenodd" stroke="#000" stroke-width="1.7" d="M331.2 280.6h-19.6c-.6.6-6.2 35.6-12.2 49-7.3 16.3-29.2 30.7-29.2 30.7s13.1 4 17 6.6c1-.3 22-4.7 24.4-30.3 2.4 25.6-14.6 37.3-14.6 37.3s24.4 7 24.4 23.3c0-16.3 24.4-23.3 24.4-23.3s-12.2-11.7-14.7-37.3c5 25.6 23.5 30 24.5 30.3 3.9-2.6 17-6.6 17-6.6s-21.9-14.4-29.2-30.7c-6-13.4-11.6-48.4-12.2-49zm-83-116.7 36.6 11.7c12.1 0 24.4-11.7 24.4-23.4.4-26-9.8-35-12.2-35l4.8-4.6-7.3-7s2.5-12.1 26.9-11.7c24.4.5 24.4 11.7 24.4 23.3s-12.2 11.7-12.2 35c0 11.7 12.2 23.4 24.4 23.4l36.6-11.7v116.7H248.1V163.9z"/>
11
+ <g fill="none" stroke="#000">
12
+ <path stroke-width=".5" d="m302.2 292.2 14.6 15 14.7-15 14.6 15 29.3-15 14.3 15.8 15-15.8 21.6 15.8 22.3-15.8 14.6 15 14.7-15" transform="matrix(.16672 0 0 .46773 253.9 31.9)"/>
13
+ <path stroke-width=".2" d="m432.3 435.8-7.1 39m10.6-39v39m7.1-39v39m7.1-39 3.5 39m3.6-39 3.5 39" transform="matrix(.68905 0 0 .65843 16.2 -144)"/>
14
+ </g>
15
+ <g stroke="#000" stroke-width="2.5">
16
+ <path fill="#a77b3b" fill-rule="evenodd" d="M318.9 361.4c35.4 17.7 35.4 53.2 35.4 70.9-1.2 16.1 0 354.3 0 354.3s-2.3-20-17.7-35.4L319 733.5l-17.7-17.7c-13-11.8-17.7-35.5-17.7-53.2v-248s0-17.8 35.4-53.2z" transform="matrix(-.68905 0 0 .65843 443.4 -144)"/>
17
+ <path fill="none" d="M283.5 574c.4 0 17.7-17.7 17.7-17.7l17.7 17.7 17.7-17.7 17.7 17.7" transform="matrix(-.68905 0 0 .65843 443.4 -237.3)"/>
18
+ <path fill="none" d="M283.5 574c.4 0 17.7-17.7 17.7-17.7l17.7 17.7 17.7-17.7 17.7 17.7" transform="matrix(-.68905 0 0 -.65843 443.4 530.2)"/>
19
+ <path fill="none" d="M283.5 574c.4 0 17.7-17.7 17.7-17.7l17.7 17.7 17.7-17.7 17.7 17.7" transform="matrix(-.68905 0 0 .65843 443.4 -190.7)"/>
20
+ <path fill="none" d="m301.4 557-.2 158.8" transform="matrix(-.68905 0 0 1.24911 443.4 -566.8)"/>
21
+ <path fill="none" d="m301.4 539.3-.2 176.5" transform="matrix(-.68905 0 0 1.12111 431.4 -464)"/>
22
+ <path fill="none" d="m301.4 539.3-.2 176.5" transform="matrix(-.68905 0 0 1.2559 419.2 -548.3)"/>
23
+ </g>
24
+ <g stroke="#000" stroke-width="2.5">
25
+ <path fill="#a77b3b" fill-rule="evenodd" d="M318.9 361.4c35.4 17.7 35.4 53.2 35.4 70.9-1.2 16.1 0 354.3 0 354.3s-2.3-20-17.7-35.4L319 733.5l-17.7-17.7c-13-11.8-17.7-35.5-17.7-53.2v-248s0-17.8 35.4-53.2z" transform="matrix(.68905 0 0 .65843 199.3 -144)"/>
26
+ <path fill="none" d="M283.5 574c.4 0 17.7-17.7 17.7-17.7l17.7 17.7 17.7-17.7 17.7 17.7" transform="matrix(.68905 0 0 .65843 199.3 -237.3)"/>
27
+ <path fill="none" d="M283.5 574c.4 0 17.7-17.7 17.7-17.7l17.7 17.7 17.7-17.7 17.7 17.7" transform="matrix(.68905 0 0 -.65843 199.3 530.2)"/>
28
+ <path fill="none" d="M283.5 574c.4 0 17.7-17.7 17.7-17.7l17.7 17.7 17.7-17.7 17.7 17.7" transform="matrix(.68905 0 0 .65843 199.3 -190.7)"/>
29
+ <path fill="none" d="m301.4 557-.2 158.8" transform="matrix(.68905 0 0 1.24911 199.3 -566.8)"/>
30
+ <path fill="none" d="m301.4 539.3-.2 176.5" transform="matrix(.68905 0 0 1.12111 211.4 -464)"/>
31
+ <path fill="none" d="m301.4 539.3-.2 176.5" transform="matrix(.68905 0 0 1.2559 223.6 -548.3)"/>
32
+ </g>
33
+ <path fill="#a77b3b" fill-rule="evenodd" stroke="#000" stroke-width="2.5" d="M177.2 696.3c0 24.4-9.6 44.3-21.3 44.3-11.7 0-21.3-19.9-21.3-44.3S144.3 652 156 652s21.3 19.8 21.3 44.3z" transform="matrix(.63605 .25323 -.26502 .60778 361.1 -165.2)"/>
34
+ <path fill="red" fill-rule="evenodd" d="M248.1 175.6h146.5v70H248.1z"/>
35
+ <path fill="#564dff" fill-rule="evenodd" d="M248.1 245.6h146.5v35c0 23.3-36.6 23.3-73.2 46.6C284.7 304 248 304 248 280.6v-35z"/>
36
+ <path fill="none" stroke="#ff0" stroke-width="2" d="M336.6 485.4h212.6V645c0 35.4-53.1 35.4-106.3 70.9-53.1-35.5-106.3-35.5-106.3-71V485.5z" transform="matrix(.68905 0 0 .65843 16.2 -144)"/>
37
+ <path fill="#ff0" fill-rule="evenodd" stroke="#000" stroke-width="2.5" d="M385.6 129.9S335 185.4 335 238.5c0 53.1 53.1 70.9 53.1 70.9s-17.7 0-17.7 70.8c0 35.5 53.1 17.8 53.1 35.5s-.7 60.5 0 88.6c0 17.7-35.4 0-35.4 17.7 0 8.8 26.6 53.1 53.2 53.1s53.1-44.3 53.1-53.1c0-17.7-35.4 0-35.4-17.7v-88.6c0-17.7 53.1 0 53.1-35.5 0-70.8-17.7-70.8-17.7-70.8s53.2-17.7 53.2-70.9-50.7-108.6-50.7-108.6 28.5 73.2 28.5 108.6c0 17.7-13.3 53.2-48.7 53.2 0 0-9-17.8-17.7 0 0 0-10.2-17.8-17.7 0-2.6 6-7.2-17.8-17.8 0-4.4 4.7-8-17.8-17.7 0-17.7 0-53.1-17.8-53.1-53.2s32.9-108.6 32.9-108.6z" transform="matrix(.48234 0 0 .30917 108.5 140.1)"/>
38
+ <path fill="#ff0" fill-rule="evenodd" stroke="#000" stroke-width="2.5" d="M382.7 248c-3.6 3.6 4.6 61.3 7 63.8 3.6 3.5 24.9 3.5 28.4 0 2.5-2.5 0-56.7-3.5-60.2-3.6-3.6-29.4-6-32-3.6z" transform="matrix(.48234 0 0 .30917 110.4 201.6)"/>
39
+ <path fill="#ff0" fill-rule="evenodd" stroke="#000" stroke-width="2.5" d="M382.7 248c-3.6 3.6 4.6 61.3 7 63.8 3.6 3.5 24.9 3.5 28.4 0 2.5-2.5 0-56.7-3.5-60.2-3.6-3.6-29.4-6-32-3.6z" transform="matrix(-.48234 0 0 .30917 532.4 201.6)"/>
40
+ <path fill="#ff0" fill-rule="evenodd" stroke="#000" stroke-width="2.5" d="M414.6 228.5a16 16 0 1 1-32 0 16 16 0 0 1 32 0z" transform="matrix(.5544 0 0 .38542 82.7 183.7)"/>
41
+ <path fill="#ff0" fill-rule="evenodd" stroke="#000" stroke-width="2.5" d="M414.6 228.5a16 16 0 1 1-32 0 16 16 0 0 1 32 0z" transform="matrix(.55441 0 0 .38543 118 183.7)"/>
42
+ <path fill-rule="evenodd" d="M336.8 307.5c0 1.5-2 2.7-4.3 2.7-2.4 0-4.3-1.2-4.3-2.7s2-2.7 4.3-2.7 4.3 1.2 4.3 2.7zm-22.3 0c0 1.5-1.9 2.7-4.2 2.7-2.4 0-4.3-1.2-4.3-2.7s1.9-2.7 4.3-2.7c2.3 0 4.2 1.2 4.2 2.7z"/>
43
+ <path fill="#ff0" fill-rule="evenodd" stroke="#000" stroke-width="1.1" d="m439.4 550-7.8-10.3-12.8 1.7 1.8-12.8-10.3-7.7 10.3-7.8-1.8-12.8 12.8 1.8 7.8-10.3 7.8 10.3 12.7-1.8-1.7 12.8 10.2 7.8-10.2 7.8 1.7 12.7-12.8-1.7z" transform="matrix(.67225 0 0 .64237 26 -133.3)"/>
44
+ <path fill="#ff0" fill-rule="evenodd" stroke="#000" stroke-width="1.1" d="m496 591.7 21.3 10.7 21.3-10.7-21.3-10.6-21.2 10.6z" transform="matrix(.68905 0 0 .65843 16.2 -144)"/>
45
+ <path fill="#ff0" fill-rule="evenodd" stroke="#000" stroke-width="1.1" d="m496 591.7 21.3 10.7 21.3-10.7-21.3-10.6-21.2 10.6z" transform="matrix(.68905 0 0 .65843 -88.8 -144)"/>
46
+ <path fill="#ff0" fill-rule="evenodd" stroke="#000" stroke-width="1.1" d="M535 659c-3.5-7-14.1-10.6-21.2-10.6s-14.2 0-21.3 10.7c0-14.2 10.5-21.3 21.3-21.3a22.7 22.7 0 0 1 21.2 21.3z" transform="matrix(.59753 -.3279 .34316 .57097 -165.2 86.5)"/>
47
+ <path fill="#ff0" fill-rule="evenodd" stroke="#000" stroke-width="1.1" d="M386.2 652a7 7 0 1 1-14.1 0 7 7 0 0 1 14.1 0z" transform="matrix(.68905 0 0 .65843 13.7 -155.7)"/>
48
+ <path fill="#ff0" fill-rule="evenodd" stroke="#000" stroke-width="1.1" d="M386.2 652a7 7 0 1 1-14.1 0 7 7 0 0 1 14.1 0z" transform="matrix(.68905 0 0 .65843 8.8 -139.4)"/>
49
+ <path fill="#ff0" fill-rule="evenodd" stroke="#000" stroke-width="1.1" d="M386.2 652a7 7 0 1 1-14.1 0 7 7 0 0 1 14.1 0z" transform="matrix(.68905 0 0 .65843 6.4 -148.7)"/>
50
+ <path fill="#ff0" fill-rule="evenodd" stroke="#000" stroke-width="1.1" d="M386.2 652a7 7 0 1 1-14.1 0 7 7 0 0 1 14.1 0z" transform="matrix(.68905 0 0 .65843 18.6 -139.4)"/>
51
+ <path fill="#ff0" fill-rule="evenodd" stroke="#000" stroke-width="1.1" d="M386.2 652a7 7 0 1 1-14.1 0 7 7 0 0 1 14.1 0z" transform="matrix(.68905 0 0 .65843 21 -148.7)"/>
52
+ <path fill="#ff0" fill-rule="evenodd" stroke="#000" stroke-width="1.1" d="M386.2 652a7 7 0 1 1-14.1 0 7 7 0 0 1 14.1 0z" transform="matrix(.68905 0 0 .65843 13.7 -146.4)"/>
53
+ <g fill-rule="evenodd">
54
+ <path fill="#da4500" d="M297.8 120.4c-12.4 0-14 2-19.6 3.9 0-5.4 13.8-11.7 26-11.7 0 3.9-3.2 7.8-6.4 7.8z"/>
55
+ <path fill="#cac9c7" d="M316.5 108c0 2.5-2.2 4.6-4.9 4.6s-4.9-2.1-4.9-4.7 2.2-4.6 4.9-4.6 4.9 2 4.9 4.6z"/>
56
+ <path fill="#ff0" stroke="#000" stroke-width="1.1" d="M361.4 357.9v10.6h17.7v53.1h10.7v-53.1h17.7v-10.6h-17.7v-14.2H379v14.2h-17.7z" transform="matrix(.68905 0 0 .65843 16.2 -144)"/>
57
+ <path fill="#da4500" d="M304.3 112.6a78.5 78.5 0 0 0-29.3 3.9c0-7.2 8.4-15.6 22.8-15.6 3.2 0 6.5 7.8 6.5 11.7z"/>
58
+ </g>
59
+ <g fill-rule="evenodd">
60
+ <path fill="#008500" stroke="#000" stroke-width=".7" d="M67.3 613c-14.2-14.2-16.6-21.4 3.6-10.1l283.7 247.5-3.4 7L67.4 613z" transform="matrix(.38821 .29653 -.14073 .23692 237.4 71.3)"/>
61
+ <path fill="#008f00" d="M228.4 330.4c.8-10.6-18.6-22-19.4-21.3-.7.8 1.2 7 4.9 10.1-7-3.6-14.4-5.8-14.6-4.3-.6 2.2 11 7.2 12 9.2 0 1.4-8.6 1.2-8.4 2.6.2 1.4 24.3 13.6 25.5 3.7zM209 299.6c.8-10.6-18.6-22-19.3-21.3-.8.7 1.1 6.9 4.8 10.1-7-3.6-14.4-5.9-14.6-4.3-.5 2.1 11 7.2 12 9.2.1 1.4-8.5 1.2-8.4 2.6.2 1.4 24.3 13.5 25.5 3.7zm-14.8-28c.8-10.6-18.6-22-19.4-21.3-.7.7 1.2 6.9 4.9 10.1-7-3.6-14.4-5.9-14.6-4.3-.5 2.1 11 7.2 12 9.2 0 1.4-8.5 1.2-8.4 2.6.2 1.4 24.3 13.6 25.5 3.7zm-14.6-30.4c.7-10.5-18.6-22-19.4-21.3-.8.8 1.2 7 4.8 10.2-7-3.7-14.4-5.9-14.5-4.3-.6 2.1 11 7.2 11.9 9.1.1 1.4-8.5 1.3-8.3 2.7.1 1.4 24.2 13.5 25.5 3.6z"/>
62
+ <path fill="#008f00" d="M184.6 239.9c9.4-5.7 7.5-27.4 6.5-27.6-1.1-.1-5.2 5-5.7 9.8-1.1-7.6-3.6-14.6-5-13.8-2.1.8.4 12.7-.7 14.6-1 1-6-5.8-7-4.8-1.2 1 2.8 26.7 12 21.8zm13.6 26.6c10.8-2.4 16.7-23.4 15.7-23.9s-6.6 3-8.7 7.4c1.6-7.5 1.7-14.9 0-14.6-2.3.1-4 12.1-5.7 13.5-1.3.6-3.7-7.3-5-6.8-1.4.6-6.6 26.1 3.7 24.4zm16.2 27.2c9.9-4.8 10-26.6 9-26.8-1-.3-5.5 4.5-6.5 9.2-.4-7.7-2.2-14.8-3.7-14.1-2.2.6-.8 12.6-2 14.4-1.2.9-5.5-6.3-6.7-5.4-1.2.8.4 26.8 10 22.7zm17.6 35.6c10.3-3.9 12.8-25.5 11.8-25.9-1-.3-6 4-7.5 8.6.4-7.7-.6-15-2.2-14.4-2.3.4-2.1 12.5-3.5 14.2-1.3.7-4.8-6.8-6-6-1.3.6-2.5 26.7 7.4 23.5z"/>
63
+ </g>
64
+ <path fill="#ff1900" fill-rule="evenodd" stroke="#000" stroke-width="1.1" d="M209 776c0 7.8-10.2 14.2-23 14.2s-23-6.4-23-14.2 10.3-14.2 23-14.2 23 6.4 23 14.2z" transform="matrix(.60164 .32097 -.3359 .5749 389.6 -146.8)"/>
65
+ <g fill="#ff0" fill-rule="evenodd" stroke="#000" stroke-width=".5">
66
+ <path d="M156 414.6v-7.1h7v-7.1h7v7h7.2v7.2H170v17.7h-7v-17.7h-7zm7 60.2h7v205.5h-7z" transform="matrix(.49887 .1571 -.1826 .4713 451.4 -3.7)"/>
67
+ <path d="M159.4 676.8h14.2v56.7h-14.2zM156 439.4h21.3c14.1 0-3.6 39-3.6 39h-14.1s-17.8-39-3.6-39zm17.6-5.4c0 3-3.1 5.4-7 5.4s-7.1-2.4-7.1-5.3 3.1-5.4 7-5.4 7.1 2.4 7.1 5.4z" transform="matrix(.49887 .1571 -.1826 .4713 451.4 -3.7)"/>
68
+ </g>
69
+ <path fill="#ff1900" fill-rule="evenodd" stroke="#000" stroke-width="1.1" d="M209 776c0 7.8-10.2 14.2-23 14.2s-23-6.4-23-14.2 10.3-14.2 23-14.2 23 6.4 23 14.2z" transform="matrix(.57449 -.36357 .38048 .54895 -2.3 4.2)"/>
70
+ </svg>