iss-ctrl 0.0.2 → 0.0.3

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 (1034) hide show
  1. package/.editorconfig +13 -0
  2. package/.eslintrc.json +90 -0
  3. package/README.md +25 -24
  4. package/angular.json +190 -0
  5. package/bun.lock +1998 -0
  6. package/package.json +48 -19
  7. package/projects/iss/.eslintrc.json +37 -0
  8. package/projects/iss/README.md +24 -0
  9. package/projects/iss/ng-package.json +10 -0
  10. package/projects/iss/package.json +17 -0
  11. package/projects/iss/src/components/controls/base/control.base.ts +77 -0
  12. package/projects/iss/src/components/controls/base/viewer.base.ts +8 -0
  13. package/projects/iss/src/components/controls/base/wrapper.base.ts +85 -0
  14. package/projects/iss/src/components/controls/checkbox/checkbox.control.ts +93 -0
  15. package/projects/iss/src/components/controls/checkbox/checkbox.viewer.ts +15 -0
  16. package/projects/iss/src/components/controls/checkbox/checkbox.wrapper.ts +36 -0
  17. package/projects/iss/src/components/controls/chips/chips.control.ts +99 -0
  18. package/projects/iss/src/components/controls/chips/chips.viewer.ts +23 -0
  19. package/projects/iss/src/components/controls/chips/chips.wrapper.ts +31 -0
  20. package/projects/iss/src/components/controls/date-picker/date-picker.control.ts +85 -0
  21. package/projects/iss/src/components/controls/date-picker/date-picker.viewer.ts +14 -0
  22. package/projects/iss/src/components/controls/date-picker/date-picker.wrapper.ts +35 -0
  23. package/projects/iss/src/components/controls/date-range-picker/date-range-picker.control.ts +143 -0
  24. package/projects/iss/src/components/controls/date-range-picker/date-range-picker.viewer.ts +22 -0
  25. package/projects/iss/src/components/controls/date-range-picker/date-range-picker.wrapper.ts +35 -0
  26. package/projects/iss/src/components/controls/datetime-picker/datetime-picker.control.ts +109 -0
  27. package/projects/iss/src/components/controls/datetime-picker/datetime-picker.viewer.ts +17 -0
  28. package/projects/iss/src/components/controls/datetime-picker/datetime-picker.wrapper.ts +38 -0
  29. package/projects/iss/src/components/controls/file-picker/attachment.viewer.ts +165 -0
  30. package/projects/iss/src/components/controls/file-picker/droppable.directive.ts +28 -0
  31. package/projects/iss/src/components/controls/file-picker/file-handler.service.ts +115 -0
  32. package/projects/iss/src/components/controls/file-picker/file-picker.control.ts +187 -0
  33. package/projects/iss/src/components/controls/file-picker/file-picker.wrapper.ts +120 -0
  34. package/projects/iss/src/components/controls/input/input.control.ts +95 -0
  35. package/projects/iss/src/components/controls/input/input.viewer.ts +11 -0
  36. package/projects/iss/src/components/controls/input/input.wrapper.ts +40 -0
  37. package/projects/iss/src/components/controls/mobile/flags/ad.svg +282 -0
  38. package/projects/iss/src/components/controls/mobile/flags/ae.svg +6 -0
  39. package/projects/iss/src/components/controls/mobile/flags/af.svg +9 -0
  40. package/projects/iss/src/components/controls/mobile/flags/ag.svg +15 -0
  41. package/projects/iss/src/components/controls/mobile/flags/ai.svg +35 -0
  42. package/projects/iss/src/components/controls/mobile/flags/al.svg +7 -0
  43. package/projects/iss/src/components/controls/mobile/flags/am.svg +5 -0
  44. package/projects/iss/src/components/controls/mobile/flags/ao.svg +19 -0
  45. package/projects/iss/src/components/controls/mobile/flags/aq.svg +45 -0
  46. package/projects/iss/src/components/controls/mobile/flags/ar.svg +66 -0
  47. package/projects/iss/src/components/controls/mobile/flags/as.svg +225 -0
  48. package/projects/iss/src/components/controls/mobile/flags/at.svg +4 -0
  49. package/projects/iss/src/components/controls/mobile/flags/au.svg +32 -0
  50. package/projects/iss/src/components/controls/mobile/flags/aw.svg +11 -0
  51. package/projects/iss/src/components/controls/mobile/flags/ax.svg +11 -0
  52. package/projects/iss/src/components/controls/mobile/flags/az.svg +11 -0
  53. package/projects/iss/src/components/controls/mobile/flags/ba.svg +18 -0
  54. package/projects/iss/src/components/controls/mobile/flags/bb.svg +11 -0
  55. package/projects/iss/src/components/controls/mobile/flags/bd.svg +4 -0
  56. package/projects/iss/src/components/controls/mobile/flags/be.svg +5 -0
  57. package/projects/iss/src/components/controls/mobile/flags/bf.svg +14 -0
  58. package/projects/iss/src/components/controls/mobile/flags/bg.svg +5 -0
  59. package/projects/iss/src/components/controls/mobile/flags/bh.svg +4 -0
  60. package/projects/iss/src/components/controls/mobile/flags/bi.svg +26 -0
  61. package/projects/iss/src/components/controls/mobile/flags/bj.svg +5 -0
  62. package/projects/iss/src/components/controls/mobile/flags/bl.svg +5 -0
  63. package/projects/iss/src/components/controls/mobile/flags/bm.svg +374 -0
  64. package/projects/iss/src/components/controls/mobile/flags/bn.svg +70 -0
  65. package/projects/iss/src/components/controls/mobile/flags/bo.svg +3625 -0
  66. package/projects/iss/src/components/controls/mobile/flags/bq.svg +5 -0
  67. package/projects/iss/src/components/controls/mobile/flags/br.svg +92 -0
  68. package/projects/iss/src/components/controls/mobile/flags/bs.svg +5 -0
  69. package/projects/iss/src/components/controls/mobile/flags/bt.svg +487 -0
  70. package/projects/iss/src/components/controls/mobile/flags/bv.svg +11 -0
  71. package/projects/iss/src/components/controls/mobile/flags/bw.svg +5 -0
  72. package/projects/iss/src/components/controls/mobile/flags/by.svg +15 -0
  73. package/projects/iss/src/components/controls/mobile/flags/bz.svg +629 -0
  74. package/projects/iss/src/components/controls/mobile/flags/ca.svg +7 -0
  75. package/projects/iss/src/components/controls/mobile/flags/cc.svg +33 -0
  76. package/projects/iss/src/components/controls/mobile/flags/cd.svg +5 -0
  77. package/projects/iss/src/components/controls/mobile/flags/cf.svg +7 -0
  78. package/projects/iss/src/components/controls/mobile/flags/cg.svg +5 -0
  79. package/projects/iss/src/components/controls/mobile/flags/ch.svg +4 -0
  80. package/projects/iss/src/components/controls/mobile/flags/ci.svg +5 -0
  81. package/projects/iss/src/components/controls/mobile/flags/ck.svg +29 -0
  82. package/projects/iss/src/components/controls/mobile/flags/cl.svg +14 -0
  83. package/projects/iss/src/components/controls/mobile/flags/cm.svg +15 -0
  84. package/projects/iss/src/components/controls/mobile/flags/cn.svg +11 -0
  85. package/projects/iss/src/components/controls/mobile/flags/co.svg +5 -0
  86. package/projects/iss/src/components/controls/mobile/flags/cr.svg +1332 -0
  87. package/projects/iss/src/components/controls/mobile/flags/cu.svg +6 -0
  88. package/projects/iss/src/components/controls/mobile/flags/cv.svg +24 -0
  89. package/projects/iss/src/components/controls/mobile/flags/cw.svg +16 -0
  90. package/projects/iss/src/components/controls/mobile/flags/cx.svg +24 -0
  91. package/projects/iss/src/components/controls/mobile/flags/cy.svg +13 -0
  92. package/projects/iss/src/components/controls/mobile/flags/cz.svg +5 -0
  93. package/projects/iss/src/components/controls/mobile/flags/de.svg +5 -0
  94. package/projects/iss/src/components/controls/mobile/flags/dj.svg +6 -0
  95. package/projects/iss/src/components/controls/mobile/flags/dk.svg +5 -0
  96. package/projects/iss/src/components/controls/mobile/flags/dm.svg +198 -0
  97. package/projects/iss/src/components/controls/mobile/flags/do.svg +238 -0
  98. package/projects/iss/src/components/controls/mobile/flags/dz.svg +5 -0
  99. package/projects/iss/src/components/controls/mobile/flags/ec.svg +1292 -0
  100. package/projects/iss/src/components/controls/mobile/flags/ee.svg +5 -0
  101. package/projects/iss/src/components/controls/mobile/flags/eg.svg +125 -0
  102. package/projects/iss/src/components/controls/mobile/flags/eh.svg +12 -0
  103. package/projects/iss/src/components/controls/mobile/flags/er.svg +9 -0
  104. package/projects/iss/src/components/controls/mobile/flags/es.svg +445 -0
  105. package/projects/iss/src/components/controls/mobile/flags/et.svg +16 -0
  106. package/projects/iss/src/components/controls/mobile/flags/eu.svg +28 -0
  107. package/projects/iss/src/components/controls/mobile/flags/fi.svg +5 -0
  108. package/projects/iss/src/components/controls/mobile/flags/fj.svg +203 -0
  109. package/projects/iss/src/components/controls/mobile/flags/fk.svg +922 -0
  110. package/projects/iss/src/components/controls/mobile/flags/flags.png +0 -0
  111. package/projects/iss/src/components/controls/mobile/flags/flags@2x.png +0 -0
  112. package/projects/iss/src/components/controls/mobile/flags/fm.svg +16 -0
  113. package/projects/iss/src/components/controls/mobile/flags/fo.svg +11 -0
  114. package/projects/iss/src/components/controls/mobile/flags/fonts.css +271 -0
  115. package/projects/iss/src/components/controls/mobile/flags/fr.svg +5 -0
  116. package/projects/iss/src/components/controls/mobile/flags/ga.svg +5 -0
  117. package/projects/iss/src/components/controls/mobile/flags/gb-eng.svg +7 -0
  118. package/projects/iss/src/components/controls/mobile/flags/gb-nir.svg +15 -0
  119. package/projects/iss/src/components/controls/mobile/flags/gb-sct.svg +11 -0
  120. package/projects/iss/src/components/controls/mobile/flags/gb-wls.svg +16 -0
  121. package/projects/iss/src/components/controls/mobile/flags/gb.svg +15 -0
  122. package/projects/iss/src/components/controls/mobile/flags/gd.svg +11 -0
  123. package/projects/iss/src/components/controls/mobile/flags/ge.svg +17 -0
  124. package/projects/iss/src/components/controls/mobile/flags/gf.svg +5 -0
  125. package/projects/iss/src/components/controls/mobile/flags/gg.svg +8 -0
  126. package/projects/iss/src/components/controls/mobile/flags/gh.svg +6 -0
  127. package/projects/iss/src/components/controls/mobile/flags/gi.svg +69 -0
  128. package/projects/iss/src/components/controls/mobile/flags/gl.svg +4 -0
  129. package/projects/iss/src/components/controls/mobile/flags/gm.svg +7 -0
  130. package/projects/iss/src/components/controls/mobile/flags/gn.svg +5 -0
  131. package/projects/iss/src/components/controls/mobile/flags/gp.svg +5 -0
  132. package/projects/iss/src/components/controls/mobile/flags/gq.svg +88 -0
  133. package/projects/iss/src/components/controls/mobile/flags/gr.svg +4 -0
  134. package/projects/iss/src/components/controls/mobile/flags/gs.svg +693 -0
  135. package/projects/iss/src/components/controls/mobile/flags/gt.svg +317 -0
  136. package/projects/iss/src/components/controls/mobile/flags/gu.svg +58 -0
  137. package/projects/iss/src/components/controls/mobile/flags/gw.svg +13 -0
  138. package/projects/iss/src/components/controls/mobile/flags/gy.svg +7 -0
  139. package/projects/iss/src/components/controls/mobile/flags/hk.svg +17 -0
  140. package/projects/iss/src/components/controls/mobile/flags/hm.svg +32 -0
  141. package/projects/iss/src/components/controls/mobile/flags/hn.svg +10 -0
  142. package/projects/iss/src/components/controls/mobile/flags/hr.svg +282 -0
  143. package/projects/iss/src/components/controls/mobile/flags/ht.svg +1470 -0
  144. package/projects/iss/src/components/controls/mobile/flags/hu.svg +5 -0
  145. package/projects/iss/src/components/controls/mobile/flags/id.svg +4 -0
  146. package/projects/iss/src/components/controls/mobile/flags/ie.svg +5 -0
  147. package/projects/iss/src/components/controls/mobile/flags/il.svg +5 -0
  148. package/projects/iss/src/components/controls/mobile/flags/im.svg +33 -0
  149. package/projects/iss/src/components/controls/mobile/flags/in.svg +25 -0
  150. package/projects/iss/src/components/controls/mobile/flags/io.svg +895 -0
  151. package/projects/iss/src/components/controls/mobile/flags/iq.svg +12 -0
  152. package/projects/iss/src/components/controls/mobile/flags/ir.svg +31 -0
  153. package/projects/iss/src/components/controls/mobile/flags/is.svg +5 -0
  154. package/projects/iss/src/components/controls/mobile/flags/it.svg +5 -0
  155. package/projects/iss/src/components/controls/mobile/flags/je.svg +40 -0
  156. package/projects/iss/src/components/controls/mobile/flags/jm.svg +9 -0
  157. package/projects/iss/src/components/controls/mobile/flags/jo.svg +10 -0
  158. package/projects/iss/src/components/controls/mobile/flags/jp.svg +4 -0
  159. package/projects/iss/src/components/controls/mobile/flags/ke.svg +28 -0
  160. package/projects/iss/src/components/controls/mobile/flags/kg.svg +7 -0
  161. package/projects/iss/src/components/controls/mobile/flags/kh.svg +133 -0
  162. package/projects/iss/src/components/controls/mobile/flags/ki.svg +54 -0
  163. package/projects/iss/src/components/controls/mobile/flags/km.svg +13 -0
  164. package/projects/iss/src/components/controls/mobile/flags/kn.svg +24 -0
  165. package/projects/iss/src/components/controls/mobile/flags/kp.svg +16 -0
  166. package/projects/iss/src/components/controls/mobile/flags/kr.svg +16 -0
  167. package/projects/iss/src/components/controls/mobile/flags/kw.svg +6 -0
  168. package/projects/iss/src/components/controls/mobile/flags/ky.svg +153 -0
  169. package/projects/iss/src/components/controls/mobile/flags/kz.svg +49 -0
  170. package/projects/iss/src/components/controls/mobile/flags/la.svg +5 -0
  171. package/projects/iss/src/components/controls/mobile/flags/lb.svg +8 -0
  172. package/projects/iss/src/components/controls/mobile/flags/lc.svg +6 -0
  173. package/projects/iss/src/components/controls/mobile/flags/li.svg +75 -0
  174. package/projects/iss/src/components/controls/mobile/flags/lk.svg +50 -0
  175. package/projects/iss/src/components/controls/mobile/flags/lr.svg +15 -0
  176. package/projects/iss/src/components/controls/mobile/flags/ls.svg +32 -0
  177. package/projects/iss/src/components/controls/mobile/flags/lt.svg +5 -0
  178. package/projects/iss/src/components/controls/mobile/flags/lu.svg +5 -0
  179. package/projects/iss/src/components/controls/mobile/flags/lv.svg +4 -0
  180. package/projects/iss/src/components/controls/mobile/flags/ly.svg +8 -0
  181. package/projects/iss/src/components/controls/mobile/flags/ma.svg +4 -0
  182. package/projects/iss/src/components/controls/mobile/flags/mc.svg +4 -0
  183. package/projects/iss/src/components/controls/mobile/flags/md.svg +102 -0
  184. package/projects/iss/src/components/controls/mobile/flags/me.svg +240 -0
  185. package/projects/iss/src/components/controls/mobile/flags/mf.svg +5 -0
  186. package/projects/iss/src/components/controls/mobile/flags/mg.svg +5 -0
  187. package/projects/iss/src/components/controls/mobile/flags/mh.svg +18 -0
  188. package/projects/iss/src/components/controls/mobile/flags/mk.svg +6 -0
  189. package/projects/iss/src/components/controls/mobile/flags/ml.svg +5 -0
  190. package/projects/iss/src/components/controls/mobile/flags/mm.svg +12 -0
  191. package/projects/iss/src/components/controls/mobile/flags/mn.svg +12 -0
  192. package/projects/iss/src/components/controls/mobile/flags/mo.svg +13 -0
  193. package/projects/iss/src/components/controls/mobile/flags/mp.svg +2919 -0
  194. package/projects/iss/src/components/controls/mobile/flags/mq.svg +5 -0
  195. package/projects/iss/src/components/controls/mobile/flags/mr.svg +5 -0
  196. package/projects/iss/src/components/controls/mobile/flags/ms.svg +59 -0
  197. package/projects/iss/src/components/controls/mobile/flags/mt.svg +52 -0
  198. package/projects/iss/src/components/controls/mobile/flags/mu.svg +6 -0
  199. package/projects/iss/src/components/controls/mobile/flags/mv.svg +8 -0
  200. package/projects/iss/src/components/controls/mobile/flags/mw.svg +24 -0
  201. package/projects/iss/src/components/controls/mobile/flags/mx.svg +1129 -0
  202. package/projects/iss/src/components/controls/mobile/flags/my.svg +12 -0
  203. package/projects/iss/src/components/controls/mobile/flags/mz.svg +50 -0
  204. package/projects/iss/src/components/controls/mobile/flags/na.svg +17 -0
  205. package/projects/iss/src/components/controls/mobile/flags/nc.svg +5 -0
  206. package/projects/iss/src/components/controls/mobile/flags/ne.svg +6 -0
  207. package/projects/iss/src/components/controls/mobile/flags/nf.svg +8 -0
  208. package/projects/iss/src/components/controls/mobile/flags/ng.svg +4 -0
  209. package/projects/iss/src/components/controls/mobile/flags/ni.svg +281 -0
  210. package/projects/iss/src/components/controls/mobile/flags/nl.svg +5 -0
  211. package/projects/iss/src/components/controls/mobile/flags/no.svg +11 -0
  212. package/projects/iss/src/components/controls/mobile/flags/np.svg +33 -0
  213. package/projects/iss/src/components/controls/mobile/flags/nr.svg +8 -0
  214. package/projects/iss/src/components/controls/mobile/flags/nu.svg +23 -0
  215. package/projects/iss/src/components/controls/mobile/flags/nz.svg +37 -0
  216. package/projects/iss/src/components/controls/mobile/flags/om.svg +307 -0
  217. package/projects/iss/src/components/controls/mobile/flags/pa.svg +15 -0
  218. package/projects/iss/src/components/controls/mobile/flags/pe.svg +767 -0
  219. package/projects/iss/src/components/controls/mobile/flags/pf.svg +38 -0
  220. package/projects/iss/src/components/controls/mobile/flags/pg.svg +16 -0
  221. package/projects/iss/src/components/controls/mobile/flags/ph.svg +28 -0
  222. package/projects/iss/src/components/controls/mobile/flags/pk.svg +7 -0
  223. package/projects/iss/src/components/controls/mobile/flags/pl.svg +4 -0
  224. package/projects/iss/src/components/controls/mobile/flags/pm.svg +5 -0
  225. package/projects/iss/src/components/controls/mobile/flags/pn.svg +131 -0
  226. package/projects/iss/src/components/controls/mobile/flags/pr.svg +6 -0
  227. package/projects/iss/src/components/controls/mobile/flags/ps.svg +6 -0
  228. package/projects/iss/src/components/controls/mobile/flags/pt.svg +79 -0
  229. package/projects/iss/src/components/controls/mobile/flags/pw.svg +4 -0
  230. package/projects/iss/src/components/controls/mobile/flags/py.svg +192 -0
  231. package/projects/iss/src/components/controls/mobile/flags/qa.svg +7 -0
  232. package/projects/iss/src/components/controls/mobile/flags/re.svg +5 -0
  233. package/projects/iss/src/components/controls/mobile/flags/ro.svg +5 -0
  234. package/projects/iss/src/components/controls/mobile/flags/rs.svg +1143 -0
  235. package/projects/iss/src/components/controls/mobile/flags/ru.svg +5 -0
  236. package/projects/iss/src/components/controls/mobile/flags/rw.svg +17 -0
  237. package/projects/iss/src/components/controls/mobile/flags/sa.svg +23 -0
  238. package/projects/iss/src/components/controls/mobile/flags/sb.svg +30 -0
  239. package/projects/iss/src/components/controls/mobile/flags/sc.svg +7 -0
  240. package/projects/iss/src/components/controls/mobile/flags/sd.svg +6 -0
  241. package/projects/iss/src/components/controls/mobile/flags/se.svg +5 -0
  242. package/projects/iss/src/components/controls/mobile/flags/sg.svg +15 -0
  243. package/projects/iss/src/components/controls/mobile/flags/sh.svg +15 -0
  244. package/projects/iss/src/components/controls/mobile/flags/si.svg +30 -0
  245. package/projects/iss/src/components/controls/mobile/flags/sj.svg +11 -0
  246. package/projects/iss/src/components/controls/mobile/flags/sk.svg +21 -0
  247. package/projects/iss/src/components/controls/mobile/flags/sl.svg +5 -0
  248. package/projects/iss/src/components/controls/mobile/flags/sm.svg +847 -0
  249. package/projects/iss/src/components/controls/mobile/flags/sn.svg +15 -0
  250. package/projects/iss/src/components/controls/mobile/flags/so.svg +13 -0
  251. package/projects/iss/src/components/controls/mobile/flags/sr.svg +6 -0
  252. package/projects/iss/src/components/controls/mobile/flags/ss.svg +8 -0
  253. package/projects/iss/src/components/controls/mobile/flags/st.svg +16 -0
  254. package/projects/iss/src/components/controls/mobile/flags/stc-icons.css +1 -0
  255. package/projects/iss/src/components/controls/mobile/flags/sv.svg +3368 -0
  256. package/projects/iss/src/components/controls/mobile/flags/sx.svg +172 -0
  257. package/projects/iss/src/components/controls/mobile/flags/sy.svg +6 -0
  258. package/projects/iss/src/components/controls/mobile/flags/sz.svg +54 -0
  259. package/projects/iss/src/components/controls/mobile/flags/tc.svg +88 -0
  260. package/projects/iss/src/components/controls/mobile/flags/td.svg +5 -0
  261. package/projects/iss/src/components/controls/mobile/flags/tf.svg +18 -0
  262. package/projects/iss/src/components/controls/mobile/flags/tg.svg +15 -0
  263. package/projects/iss/src/components/controls/mobile/flags/th.svg +5 -0
  264. package/projects/iss/src/components/controls/mobile/flags/tj.svg +32 -0
  265. package/projects/iss/src/components/controls/mobile/flags/tk.svg +25 -0
  266. package/projects/iss/src/components/controls/mobile/flags/tl.svg +6 -0
  267. package/projects/iss/src/components/controls/mobile/flags/tm.svg +349 -0
  268. package/projects/iss/src/components/controls/mobile/flags/tn.svg +9 -0
  269. package/projects/iss/src/components/controls/mobile/flags/to.svg +8 -0
  270. package/projects/iss/src/components/controls/mobile/flags/tr.svg +6 -0
  271. package/projects/iss/src/components/controls/mobile/flags/tt.svg +5 -0
  272. package/projects/iss/src/components/controls/mobile/flags/tv.svg +18 -0
  273. package/projects/iss/src/components/controls/mobile/flags/tw.svg +12 -0
  274. package/projects/iss/src/components/controls/mobile/flags/tz.svg +13 -0
  275. package/projects/iss/src/components/controls/mobile/flags/ua.svg +4 -0
  276. package/projects/iss/src/components/controls/mobile/flags/ug.svg +46 -0
  277. package/projects/iss/src/components/controls/mobile/flags/um.svg +25 -0
  278. package/projects/iss/src/components/controls/mobile/flags/us.svg +25 -0
  279. package/projects/iss/src/components/controls/mobile/flags/uy.svg +138 -0
  280. package/projects/iss/src/components/controls/mobile/flags/uz.svg +30 -0
  281. package/projects/iss/src/components/controls/mobile/flags/va.svg +277 -0
  282. package/projects/iss/src/components/controls/mobile/flags/vc.svg +9 -0
  283. package/projects/iss/src/components/controls/mobile/flags/ve.svg +28 -0
  284. package/projects/iss/src/components/controls/mobile/flags/vg.svg +96 -0
  285. package/projects/iss/src/components/controls/mobile/flags/vi.svg +311 -0
  286. package/projects/iss/src/components/controls/mobile/flags/vn.svg +12 -0
  287. package/projects/iss/src/components/controls/mobile/flags/vu.svg +20 -0
  288. package/projects/iss/src/components/controls/mobile/flags/wf.svg +7 -0
  289. package/projects/iss/src/components/controls/mobile/flags/ws.svg +14 -0
  290. package/projects/iss/src/components/controls/mobile/flags/xk.svg +11 -0
  291. package/projects/iss/src/components/controls/mobile/flags/ye.svg +5 -0
  292. package/projects/iss/src/components/controls/mobile/flags/yt.svg +5 -0
  293. package/projects/iss/src/components/controls/mobile/flags/za.svg +17 -0
  294. package/projects/iss/src/components/controls/mobile/flags/zm.svg +20 -0
  295. package/projects/iss/src/components/controls/mobile/flags/zw.svg +130 -0
  296. package/projects/iss/src/components/controls/mobile/mobile.control.ts +222 -0
  297. package/projects/iss/src/components/controls/mobile/mobile.viewer.ts +11 -0
  298. package/projects/iss/src/components/controls/mobile/mobile.wrapper.ts +32 -0
  299. package/projects/iss/src/components/controls/mobile/phone.service.ts +96 -0
  300. package/projects/iss/src/components/controls/note/note.wrapper.ts +25 -0
  301. package/projects/iss/src/components/controls/plate/plate-letter.pipe.ts +14 -0
  302. package/projects/iss/src/components/controls/plate/plate-number.wrapper.ts +36 -0
  303. package/projects/iss/src/components/controls/plate/plate.control.ts +481 -0
  304. package/projects/iss/src/components/controls/plate/plate.viewer.ts +289 -0
  305. package/projects/iss/src/components/controls/radio/radio.control.ts +48 -0
  306. package/projects/iss/src/components/controls/radio/radio.viewer.ts +14 -0
  307. package/projects/iss/src/components/controls/radio/radio.wrapper.ts +38 -0
  308. package/projects/iss/src/components/controls/select/select.control.ts +261 -0
  309. package/projects/iss/src/components/controls/select/select.viewer.ts +14 -0
  310. package/projects/iss/src/components/controls/select/select.wrapper.ts +41 -0
  311. package/projects/iss/src/components/controls/slide-toggle/slide-toggle.control.ts +24 -0
  312. package/projects/iss/src/components/controls/slide-toggle/slide-toggle.viewer.ts +14 -0
  313. package/projects/iss/src/components/controls/slide-toggle/slide-toggle.wrapper.ts +31 -0
  314. package/projects/iss/src/components/controls/table/field.viewer.ts +23 -0
  315. package/projects/iss/src/components/controls/table/table.wrapper.ts +233 -0
  316. package/projects/iss/src/components/controls/textarea/textarea.control.ts +54 -0
  317. package/projects/iss/src/components/controls/textarea/textarea.viewer.ts +11 -0
  318. package/projects/iss/src/components/controls/textarea/textarea.wrapper.ts +34 -0
  319. package/projects/iss/src/components/controls/time-picker/time-picker.control.ts +86 -0
  320. package/projects/iss/src/components/controls/time-picker/time-picker.viewer.ts +10 -0
  321. package/projects/iss/src/components/controls/time-picker/time-picker.wrapper.ts +31 -0
  322. package/projects/iss/src/components/controls/toggle-button/toggle-button.control.ts +105 -0
  323. package/projects/iss/src/components/controls/toggle-button/toggle-button.viewer.ts +15 -0
  324. package/projects/iss/src/components/controls/toggle-button/toggle-button.wrapper.ts +40 -0
  325. package/projects/iss/src/components/controls/user-picker/employee.service.ts +73 -0
  326. package/projects/iss/src/components/controls/user-picker/user-picker.wrapper.ts +128 -0
  327. package/projects/iss/src/components/outlet/field-data-injector.pipe.ts +20 -0
  328. package/projects/iss/src/components/outlet/outlet.ts +152 -0
  329. package/projects/iss/src/components/shared/hints.component.ts +38 -0
  330. package/projects/iss/src/components/shared/validation-message.component.ts +36 -0
  331. package/projects/iss/src/events/event-handler.service.ts +47 -0
  332. package/projects/iss/src/events/load/after-fetch.service.ts +29 -0
  333. package/projects/iss/src/events/load/load-event.service.ts +26 -0
  334. package/projects/iss/src/events/load/load-options-event.service.ts +51 -0
  335. package/projects/iss/src/events/load/load-value-event.service.ts +50 -0
  336. package/projects/iss/src/events/load/replace-api-keys.service.ts +55 -0
  337. package/projects/iss/src/events/set-value/get-value-to-set.service.ts +29 -0
  338. package/projects/iss/src/events/set-value/set-value-event.service.ts +33 -0
  339. package/projects/iss/src/events/show/show-event.service.ts +11 -0
  340. package/projects/iss/src/events/triggers/action-trigger-manager.service.ts +51 -0
  341. package/projects/iss/src/events/triggers/action-trigger.service.ts +30 -0
  342. package/projects/iss/src/events/triggers/trigger-based-on-json-value.service.ts +19 -0
  343. package/projects/iss/src/public-api.ts +102 -0
  344. package/projects/iss/src/shared/classes/field-action-config.ts +56 -0
  345. package/projects/iss/src/shared/classes/field-action.ts +28 -0
  346. package/projects/iss/src/shared/classes/field-async-validation.ts +7 -0
  347. package/projects/iss/src/shared/classes/field-config.ts +113 -0
  348. package/projects/iss/src/shared/classes/field-option.ts +9 -0
  349. package/projects/iss/src/shared/classes/field-validation.ts +15 -0
  350. package/projects/iss/src/shared/classes/form-field.ts +94 -0
  351. package/projects/iss/src/shared/constants/countries.const.ts +2051 -0
  352. package/projects/iss/src/shared/constants/date.const.ts +18 -0
  353. package/projects/iss/src/shared/constants/plate-letters.const.ts +21 -0
  354. package/projects/iss/src/shared/constants/provider.const.ts +7 -0
  355. package/projects/iss/src/shared/constants/regex.const.ts +1 -0
  356. package/projects/iss/src/shared/constants/validation.const.ts +115 -0
  357. package/projects/iss/src/shared/indexes/components.index.ts +27 -0
  358. package/projects/iss/src/shared/indexes/services.index.ts +11 -0
  359. package/projects/iss/src/shared/indexes/validators.index.ts +21 -0
  360. package/projects/iss/src/shared/interfaces/action.interface.ts +7 -0
  361. package/projects/iss/src/shared/interfaces/attachment.interface.ts +7 -0
  362. package/projects/iss/src/shared/interfaces/country.interface.ts +11 -0
  363. package/projects/iss/src/shared/interfaces/date-range.interface.ts +5 -0
  364. package/projects/iss/src/shared/interfaces/datetime.interface.ts +4 -0
  365. package/projects/iss/src/shared/interfaces/dto.interface.ts +12 -0
  366. package/projects/iss/src/shared/interfaces/field.interface.ts +27 -0
  367. package/projects/iss/src/shared/interfaces/file.interface.ts +9 -0
  368. package/projects/iss/src/shared/interfaces/hint.interface.ts +8 -0
  369. package/projects/iss/src/shared/interfaces/i18n.interface.ts +4 -0
  370. package/projects/iss/src/shared/interfaces/import.interface.ts +3 -0
  371. package/projects/iss/src/shared/interfaces/mobile.interface.ts +12 -0
  372. package/projects/iss/src/shared/interfaces/option.interface.ts +4 -0
  373. package/projects/iss/src/shared/interfaces/outlet.interface.ts +8 -0
  374. package/projects/iss/src/shared/interfaces/plate-letter.interface.ts +7 -0
  375. package/projects/iss/src/shared/interfaces/validation.interface.ts +5 -0
  376. package/projects/iss/src/shared/pipes/arabic-number.pipe.ts +14 -0
  377. package/projects/iss/src/shared/pipes/select-status.pipe.ts +10 -0
  378. package/projects/iss/src/shared/pipes/translate.pipe.ts +20 -0
  379. package/projects/iss/src/shared/services/form-engine.service.ts +121 -0
  380. package/projects/iss/src/shared/services/loader.service.ts +51 -0
  381. package/projects/iss/src/shared/tokens/api-response-mapper.token.ts +4 -0
  382. package/projects/iss/src/shared/tokens/attachment.token.ts +6 -0
  383. package/projects/iss/src/shared/tokens/field.token.ts +4 -0
  384. package/projects/iss/src/shared/tokens/host.token.ts +3 -0
  385. package/projects/iss/src/shared/tokens/language.token.ts +3 -0
  386. package/projects/iss/src/shared/tokens/url.token.ts +3 -0
  387. package/projects/iss/src/shared/types/iso2.type.ts +244 -0
  388. package/projects/iss/src/shared/types/validation.type.ts +3 -0
  389. package/projects/iss/src/shared/utilities/array-from.util.ts +7 -0
  390. package/projects/iss/src/shared/utilities/format-file-size.util.ts +9 -0
  391. package/projects/iss/src/shared/utilities/get-property-by-path.util.ts +30 -0
  392. package/projects/iss/src/shared/utilities/http.util.service.ts +19 -0
  393. package/projects/iss/src/shared/utilities/is-valid-api.util.ts +8 -0
  394. package/projects/iss/src/shared/utilities/replace-placeholder.util.ts +12 -0
  395. package/projects/iss/src/validators/core.validator.ts +39 -0
  396. package/projects/iss/src/validators/file.validator.ts +100 -0
  397. package/projects/iss/src/validators/time.validator.ts +31 -0
  398. package/projects/iss/tsconfig.lib.json +13 -0
  399. package/projects/iss/tsconfig.lib.prod.json +9 -0
  400. package/projects/iss/tsconfig.spec.json +13 -0
  401. package/projects/iss/upgrade.scss +68 -0
  402. package/projects/playground/.eslintrc.json +37 -0
  403. package/projects/playground/public/favicon.ico +0 -0
  404. package/projects/playground/public/flags/ad.svg +282 -0
  405. package/projects/playground/public/flags/ae.svg +6 -0
  406. package/projects/playground/public/flags/af.svg +9 -0
  407. package/projects/playground/public/flags/ag.svg +15 -0
  408. package/projects/playground/public/flags/ai.svg +35 -0
  409. package/projects/playground/public/flags/al.svg +7 -0
  410. package/projects/playground/public/flags/am.svg +5 -0
  411. package/projects/playground/public/flags/ao.svg +19 -0
  412. package/projects/playground/public/flags/aq.svg +45 -0
  413. package/projects/playground/public/flags/ar.svg +66 -0
  414. package/projects/playground/public/flags/as.svg +225 -0
  415. package/projects/playground/public/flags/at.svg +4 -0
  416. package/projects/playground/public/flags/au.svg +32 -0
  417. package/projects/playground/public/flags/aw.svg +11 -0
  418. package/projects/playground/public/flags/ax.svg +11 -0
  419. package/projects/playground/public/flags/az.svg +11 -0
  420. package/projects/playground/public/flags/ba.svg +18 -0
  421. package/projects/playground/public/flags/bb.svg +11 -0
  422. package/projects/playground/public/flags/bd.svg +4 -0
  423. package/projects/playground/public/flags/be.svg +5 -0
  424. package/projects/playground/public/flags/bf.svg +14 -0
  425. package/projects/playground/public/flags/bg.svg +5 -0
  426. package/projects/playground/public/flags/bh.svg +4 -0
  427. package/projects/playground/public/flags/bi.svg +26 -0
  428. package/projects/playground/public/flags/bj.svg +5 -0
  429. package/projects/playground/public/flags/bl.svg +5 -0
  430. package/projects/playground/public/flags/bm.svg +374 -0
  431. package/projects/playground/public/flags/bn.svg +70 -0
  432. package/projects/playground/public/flags/bo.svg +3625 -0
  433. package/projects/playground/public/flags/bq.svg +5 -0
  434. package/projects/playground/public/flags/br.svg +92 -0
  435. package/projects/playground/public/flags/bs.svg +5 -0
  436. package/projects/playground/public/flags/bt.svg +487 -0
  437. package/projects/playground/public/flags/bv.svg +11 -0
  438. package/projects/playground/public/flags/bw.svg +5 -0
  439. package/projects/playground/public/flags/by.svg +15 -0
  440. package/projects/playground/public/flags/bz.svg +629 -0
  441. package/projects/playground/public/flags/ca.svg +7 -0
  442. package/projects/playground/public/flags/cc.svg +33 -0
  443. package/projects/playground/public/flags/cd.svg +5 -0
  444. package/projects/playground/public/flags/cf.svg +7 -0
  445. package/projects/playground/public/flags/cg.svg +5 -0
  446. package/projects/playground/public/flags/ch.svg +4 -0
  447. package/projects/playground/public/flags/ci.svg +5 -0
  448. package/projects/playground/public/flags/ck.svg +29 -0
  449. package/projects/playground/public/flags/cl.svg +14 -0
  450. package/projects/playground/public/flags/cm.svg +15 -0
  451. package/projects/playground/public/flags/cn.svg +11 -0
  452. package/projects/playground/public/flags/co.svg +5 -0
  453. package/projects/playground/public/flags/cr.svg +1332 -0
  454. package/projects/playground/public/flags/cu.svg +6 -0
  455. package/projects/playground/public/flags/cv.svg +24 -0
  456. package/projects/playground/public/flags/cw.svg +16 -0
  457. package/projects/playground/public/flags/cx.svg +24 -0
  458. package/projects/playground/public/flags/cy.svg +13 -0
  459. package/projects/playground/public/flags/cz.svg +5 -0
  460. package/projects/playground/public/flags/de.svg +5 -0
  461. package/projects/playground/public/flags/dj.svg +6 -0
  462. package/projects/playground/public/flags/dk.svg +5 -0
  463. package/projects/playground/public/flags/dm.svg +198 -0
  464. package/projects/playground/public/flags/do.svg +238 -0
  465. package/projects/playground/public/flags/dz.svg +5 -0
  466. package/projects/playground/public/flags/ec.svg +1292 -0
  467. package/projects/playground/public/flags/ee.svg +5 -0
  468. package/projects/playground/public/flags/eg.svg +125 -0
  469. package/projects/playground/public/flags/eh.svg +12 -0
  470. package/projects/playground/public/flags/er.svg +9 -0
  471. package/projects/playground/public/flags/es.svg +445 -0
  472. package/projects/playground/public/flags/et.svg +16 -0
  473. package/projects/playground/public/flags/eu.svg +28 -0
  474. package/projects/playground/public/flags/fi.svg +5 -0
  475. package/projects/playground/public/flags/fj.svg +203 -0
  476. package/projects/playground/public/flags/fk.svg +922 -0
  477. package/projects/playground/public/flags/flags.png +0 -0
  478. package/projects/playground/public/flags/flags@2x.png +0 -0
  479. package/projects/playground/public/flags/fm.svg +16 -0
  480. package/projects/playground/public/flags/fo.svg +11 -0
  481. package/projects/playground/public/flags/fonts.css +271 -0
  482. package/projects/playground/public/flags/fr.svg +5 -0
  483. package/projects/playground/public/flags/ga.svg +5 -0
  484. package/projects/playground/public/flags/gb-eng.svg +7 -0
  485. package/projects/playground/public/flags/gb-nir.svg +15 -0
  486. package/projects/playground/public/flags/gb-sct.svg +11 -0
  487. package/projects/playground/public/flags/gb-wls.svg +16 -0
  488. package/projects/playground/public/flags/gb.svg +15 -0
  489. package/projects/playground/public/flags/gd.svg +11 -0
  490. package/projects/playground/public/flags/ge.svg +17 -0
  491. package/projects/playground/public/flags/gf.svg +5 -0
  492. package/projects/playground/public/flags/gg.svg +8 -0
  493. package/projects/playground/public/flags/gh.svg +6 -0
  494. package/projects/playground/public/flags/gi.svg +69 -0
  495. package/projects/playground/public/flags/gl.svg +4 -0
  496. package/projects/playground/public/flags/gm.svg +7 -0
  497. package/projects/playground/public/flags/gn.svg +5 -0
  498. package/projects/playground/public/flags/gp.svg +5 -0
  499. package/projects/playground/public/flags/gq.svg +88 -0
  500. package/projects/playground/public/flags/gr.svg +4 -0
  501. package/projects/playground/public/flags/gs.svg +693 -0
  502. package/projects/playground/public/flags/gt.svg +317 -0
  503. package/projects/playground/public/flags/gu.svg +58 -0
  504. package/projects/playground/public/flags/gw.svg +13 -0
  505. package/projects/playground/public/flags/gy.svg +7 -0
  506. package/projects/playground/public/flags/hk.svg +17 -0
  507. package/projects/playground/public/flags/hm.svg +32 -0
  508. package/projects/playground/public/flags/hn.svg +10 -0
  509. package/projects/playground/public/flags/hr.svg +282 -0
  510. package/projects/playground/public/flags/ht.svg +1470 -0
  511. package/projects/playground/public/flags/hu.svg +5 -0
  512. package/projects/playground/public/flags/id.svg +4 -0
  513. package/projects/playground/public/flags/ie.svg +5 -0
  514. package/projects/playground/public/flags/il.svg +5 -0
  515. package/projects/playground/public/flags/im.svg +33 -0
  516. package/projects/playground/public/flags/in.svg +25 -0
  517. package/projects/playground/public/flags/io.svg +895 -0
  518. package/projects/playground/public/flags/iq.svg +12 -0
  519. package/projects/playground/public/flags/ir.svg +31 -0
  520. package/projects/playground/public/flags/is.svg +5 -0
  521. package/projects/playground/public/flags/it.svg +5 -0
  522. package/projects/playground/public/flags/je.svg +40 -0
  523. package/projects/playground/public/flags/jm.svg +9 -0
  524. package/projects/playground/public/flags/jo.svg +10 -0
  525. package/projects/playground/public/flags/jp.svg +4 -0
  526. package/projects/playground/public/flags/ke.svg +28 -0
  527. package/projects/playground/public/flags/kg.svg +7 -0
  528. package/projects/playground/public/flags/kh.svg +133 -0
  529. package/projects/playground/public/flags/ki.svg +54 -0
  530. package/projects/playground/public/flags/km.svg +13 -0
  531. package/projects/playground/public/flags/kn.svg +24 -0
  532. package/projects/playground/public/flags/kp.svg +16 -0
  533. package/projects/playground/public/flags/kr.svg +16 -0
  534. package/projects/playground/public/flags/kw.svg +6 -0
  535. package/projects/playground/public/flags/ky.svg +153 -0
  536. package/projects/playground/public/flags/kz.svg +49 -0
  537. package/projects/playground/public/flags/la.svg +5 -0
  538. package/projects/playground/public/flags/lb.svg +8 -0
  539. package/projects/playground/public/flags/lc.svg +6 -0
  540. package/projects/playground/public/flags/li.svg +79 -0
  541. package/projects/playground/public/flags/lk.svg +50 -0
  542. package/projects/playground/public/flags/lr.svg +15 -0
  543. package/projects/playground/public/flags/ls.svg +32 -0
  544. package/projects/playground/public/flags/lt.svg +5 -0
  545. package/projects/playground/public/flags/lu.svg +5 -0
  546. package/projects/playground/public/flags/lv.svg +4 -0
  547. package/projects/playground/public/flags/ly.svg +8 -0
  548. package/projects/playground/public/flags/ma.svg +4 -0
  549. package/projects/playground/public/flags/mc.svg +4 -0
  550. package/projects/playground/public/flags/md.svg +102 -0
  551. package/projects/playground/public/flags/me.svg +240 -0
  552. package/projects/playground/public/flags/mf.svg +5 -0
  553. package/projects/playground/public/flags/mg.svg +5 -0
  554. package/projects/playground/public/flags/mh.svg +18 -0
  555. package/projects/playground/public/flags/mk.svg +6 -0
  556. package/projects/playground/public/flags/ml.svg +5 -0
  557. package/projects/playground/public/flags/mm.svg +12 -0
  558. package/projects/playground/public/flags/mn.svg +12 -0
  559. package/projects/playground/public/flags/mo.svg +13 -0
  560. package/projects/playground/public/flags/mp.svg +2919 -0
  561. package/projects/playground/public/flags/mq.svg +5 -0
  562. package/projects/playground/public/flags/mr.svg +5 -0
  563. package/projects/playground/public/flags/ms.svg +59 -0
  564. package/projects/playground/public/flags/mt.svg +52 -0
  565. package/projects/playground/public/flags/mu.svg +6 -0
  566. package/projects/playground/public/flags/mv.svg +8 -0
  567. package/projects/playground/public/flags/mw.svg +24 -0
  568. package/projects/playground/public/flags/mx.svg +1129 -0
  569. package/projects/playground/public/flags/my.svg +12 -0
  570. package/projects/playground/public/flags/mz.svg +50 -0
  571. package/projects/playground/public/flags/na.svg +17 -0
  572. package/projects/playground/public/flags/nc.svg +5 -0
  573. package/projects/playground/public/flags/ne.svg +6 -0
  574. package/projects/playground/public/flags/nf.svg +8 -0
  575. package/projects/playground/public/flags/ng.svg +4 -0
  576. package/projects/playground/public/flags/ni.svg +281 -0
  577. package/projects/playground/public/flags/nl.svg +5 -0
  578. package/projects/playground/public/flags/no.svg +11 -0
  579. package/projects/playground/public/flags/np.svg +33 -0
  580. package/projects/playground/public/flags/nr.svg +8 -0
  581. package/projects/playground/public/flags/nu.svg +23 -0
  582. package/projects/playground/public/flags/nz.svg +37 -0
  583. package/projects/playground/public/flags/om.svg +307 -0
  584. package/projects/playground/public/flags/pa.svg +15 -0
  585. package/projects/playground/public/flags/pe.svg +767 -0
  586. package/projects/playground/public/flags/pf.svg +38 -0
  587. package/projects/playground/public/flags/pg.svg +16 -0
  588. package/projects/playground/public/flags/ph.svg +28 -0
  589. package/projects/playground/public/flags/pk.svg +7 -0
  590. package/projects/playground/public/flags/pl.svg +4 -0
  591. package/projects/playground/public/flags/pm.svg +5 -0
  592. package/projects/playground/public/flags/pn.svg +131 -0
  593. package/projects/playground/public/flags/pr.svg +6 -0
  594. package/projects/playground/public/flags/ps.svg +6 -0
  595. package/projects/playground/public/flags/pt.svg +79 -0
  596. package/projects/playground/public/flags/pw.svg +4 -0
  597. package/projects/playground/public/flags/py.svg +192 -0
  598. package/projects/playground/public/flags/qa.svg +7 -0
  599. package/projects/playground/public/flags/re.svg +5 -0
  600. package/projects/playground/public/flags/ro.svg +5 -0
  601. package/projects/playground/public/flags/rs.svg +1143 -0
  602. package/projects/playground/public/flags/ru.svg +5 -0
  603. package/projects/playground/public/flags/rw.svg +17 -0
  604. package/projects/playground/public/flags/sa.svg +23 -0
  605. package/projects/playground/public/flags/sb.svg +30 -0
  606. package/projects/playground/public/flags/sc.svg +7 -0
  607. package/projects/playground/public/flags/sd.svg +6 -0
  608. package/projects/playground/public/flags/se.svg +5 -0
  609. package/projects/playground/public/flags/sg.svg +15 -0
  610. package/projects/playground/public/flags/sh.svg +15 -0
  611. package/projects/playground/public/flags/si.svg +30 -0
  612. package/projects/playground/public/flags/sj.svg +11 -0
  613. package/projects/playground/public/flags/sk.svg +21 -0
  614. package/projects/playground/public/flags/sl.svg +5 -0
  615. package/projects/playground/public/flags/sm.svg +847 -0
  616. package/projects/playground/public/flags/sn.svg +15 -0
  617. package/projects/playground/public/flags/so.svg +13 -0
  618. package/projects/playground/public/flags/sr.svg +6 -0
  619. package/projects/playground/public/flags/ss.svg +8 -0
  620. package/projects/playground/public/flags/st.svg +16 -0
  621. package/projects/playground/public/flags/stc-icons.css +1 -0
  622. package/projects/playground/public/flags/sv.svg +3368 -0
  623. package/projects/playground/public/flags/sx.svg +172 -0
  624. package/projects/playground/public/flags/sy.svg +6 -0
  625. package/projects/playground/public/flags/sz.svg +54 -0
  626. package/projects/playground/public/flags/tc.svg +88 -0
  627. package/projects/playground/public/flags/td.svg +5 -0
  628. package/projects/playground/public/flags/tf.svg +18 -0
  629. package/projects/playground/public/flags/tg.svg +15 -0
  630. package/projects/playground/public/flags/th.svg +5 -0
  631. package/projects/playground/public/flags/tj.svg +32 -0
  632. package/projects/playground/public/flags/tk.svg +25 -0
  633. package/projects/playground/public/flags/tl.svg +6 -0
  634. package/projects/playground/public/flags/tm.svg +349 -0
  635. package/projects/playground/public/flags/tn.svg +9 -0
  636. package/projects/playground/public/flags/to.svg +8 -0
  637. package/projects/playground/public/flags/tr.svg +6 -0
  638. package/projects/playground/public/flags/tt.svg +5 -0
  639. package/projects/playground/public/flags/tv.svg +18 -0
  640. package/projects/playground/public/flags/tw.svg +12 -0
  641. package/projects/playground/public/flags/tz.svg +13 -0
  642. package/projects/playground/public/flags/ua.svg +4 -0
  643. package/projects/playground/public/flags/ug.svg +46 -0
  644. package/projects/playground/public/flags/um.svg +25 -0
  645. package/projects/playground/public/flags/us.svg +25 -0
  646. package/projects/playground/public/flags/uy.svg +138 -0
  647. package/projects/playground/public/flags/uz.svg +30 -0
  648. package/projects/playground/public/flags/va.svg +277 -0
  649. package/projects/playground/public/flags/vc.svg +9 -0
  650. package/projects/playground/public/flags/ve.svg +28 -0
  651. package/projects/playground/public/flags/vg.svg +96 -0
  652. package/projects/playground/public/flags/vi.svg +311 -0
  653. package/projects/playground/public/flags/vn.svg +12 -0
  654. package/projects/playground/public/flags/vu.svg +20 -0
  655. package/projects/playground/public/flags/wf.svg +7 -0
  656. package/projects/playground/public/flags/ws.svg +14 -0
  657. package/projects/playground/public/flags/xk.svg +11 -0
  658. package/projects/playground/public/flags/ye.svg +5 -0
  659. package/projects/playground/public/flags/yt.svg +5 -0
  660. package/projects/playground/public/flags/za.svg +17 -0
  661. package/projects/playground/public/flags/zm.svg +20 -0
  662. package/projects/playground/public/flags/zw.svg +130 -0
  663. package/projects/playground/src/app/app.component.ts +119 -0
  664. package/projects/playground/src/app/app.config.ts +51 -0
  665. package/projects/playground/src/app/app.routes.ts +41 -0
  666. package/projects/playground/src/app/login.service.ts +21 -0
  667. package/projects/playground/src/components/attachment-wrapper.component.ts +45 -0
  668. package/projects/playground/src/components/attachment.component.ts +35 -0
  669. package/projects/playground/src/components/checkbox-wrapper.component.ts +43 -0
  670. package/projects/playground/src/components/chips-wrapper.component.ts +37 -0
  671. package/projects/playground/src/components/ctrl-array-wrapper.component.ts +76 -0
  672. package/projects/playground/src/components/date-picker-container.component.ts +22 -0
  673. package/projects/playground/src/components/date-picker-wrapper.component.ts +41 -0
  674. package/projects/playground/src/components/date-range-picker-container.component.ts +24 -0
  675. package/projects/playground/src/components/date-range-picker-wrapper.component.ts +41 -0
  676. package/projects/playground/src/components/datetime-container.component.ts +25 -0
  677. package/projects/playground/src/components/datetime-picker-wrapper.component.ts +62 -0
  678. package/projects/playground/src/components/input-container.component.ts +35 -0
  679. package/projects/playground/src/components/input-wrapper.component.ts +41 -0
  680. package/projects/playground/src/components/mobile-container.component.ts +23 -0
  681. package/projects/playground/src/components/mobile-wrapper.component.ts +36 -0
  682. package/projects/playground/src/components/note-wrapper.component.ts +37 -0
  683. package/projects/playground/src/components/outlet-container.component.ts +144 -0
  684. package/projects/playground/src/components/plate-container.component.ts +22 -0
  685. package/projects/playground/src/components/plate-wrapper.component.ts +39 -0
  686. package/projects/playground/src/components/radio-wrapper.component.ts +45 -0
  687. package/projects/playground/src/components/select-container.component.ts +31 -0
  688. package/projects/playground/src/components/select-wrapper.component.ts +48 -0
  689. package/projects/playground/src/components/ships-container.component.ts +23 -0
  690. package/projects/playground/src/components/slide-toggle-wrapper.component.ts +40 -0
  691. package/projects/playground/src/components/textarea-container.component.ts +23 -0
  692. package/projects/playground/src/components/textarea-wrapper.component.ts +54 -0
  693. package/projects/playground/src/components/time-picker-container.component.ts +23 -0
  694. package/projects/playground/src/components/time-picker-wrapper.component.ts +43 -0
  695. package/projects/playground/src/components/toggle-button-wrapper.component.ts +49 -0
  696. package/projects/playground/src/components/user-picker-wrapper.component.ts +37 -0
  697. package/projects/playground/src/eServices/create-request.component.ts +28 -0
  698. package/projects/playground/src/eServices/e-service.component.ts +112 -0
  699. package/projects/playground/src/eServices/view-request.component.ts +13 -0
  700. package/projects/playground/src/index.html +13 -0
  701. package/projects/playground/src/interceptors/header.interceptor.ts +71 -0
  702. package/projects/playground/src/main.ts +8 -0
  703. package/projects/playground/src/services/ss.service.ts +62 -0
  704. package/projects/playground/src/styles.scss +33 -0
  705. package/projects/playground/src/validators/customValidator.validator.ts +10 -0
  706. package/projects/playground/tsconfig.app.json +15 -0
  707. package/tsconfig.json +31 -0
  708. package/components/autocomplete/autocomplete.component.d.ts +0 -6
  709. package/components/base-ctrl.d.ts +0 -33
  710. package/components/checkbox/checkbox.component.d.ts +0 -16
  711. package/components/chips/chips.component.d.ts +0 -6
  712. package/components/ctrl-array/ctrl-array.component.d.ts +0 -6
  713. package/components/date-picker/date-adapter.d.ts +0 -37
  714. package/components/date-picker/date-picker.component.d.ts +0 -15
  715. package/components/date-range-picker/date-range-picker.component.d.ts +0 -19
  716. package/components/datetime-picker/datetime-picker.component.d.ts +0 -14
  717. package/components/datetime-range-picker/datetime-range-picker.component.d.ts +0 -6
  718. package/components/file-picker/file-picker.component.d.ts +0 -17
  719. package/components/hints/hints.component.d.ts +0 -9
  720. package/components/input/input.component.d.ts +0 -8
  721. package/components/mobile/COUNTRIES.d.ts +0 -2
  722. package/components/mobile/mobile.component.d.ts +0 -26
  723. package/components/mobile/phone.service.d.ts +0 -17
  724. package/components/note/note.component.d.ts +0 -6
  725. package/components/plate-number/plate-number.component.d.ts +0 -16
  726. package/components/radio/radio.component.d.ts +0 -11
  727. package/components/select/select.component.d.ts +0 -20
  728. package/components/slide-toggle/slide-toggle.component.d.ts +0 -7
  729. package/components/textarea/textarea.component.d.ts +0 -6
  730. package/components/time-picker/time-picker.component.d.ts +0 -19
  731. package/components/toggle-button/toggle-button.component.d.ts +0 -16
  732. package/directives/droppable.directive.d.ts +0 -10
  733. package/esm2022/components/autocomplete/autocomplete.component.mjs +0 -17
  734. package/esm2022/components/base-ctrl.mjs +0 -93
  735. package/esm2022/components/checkbox/checkbox.component.mjs +0 -73
  736. package/esm2022/components/chips/chips.component.mjs +0 -17
  737. package/esm2022/components/ctrl-array/ctrl-array.component.mjs +0 -17
  738. package/esm2022/components/date-picker/date-adapter.mjs +0 -183
  739. package/esm2022/components/date-picker/date-picker.component.mjs +0 -55
  740. package/esm2022/components/date-range-picker/date-range-picker.component.mjs +0 -101
  741. package/esm2022/components/datetime-picker/datetime-picker.component.mjs +0 -79
  742. package/esm2022/components/datetime-range-picker/datetime-range-picker.component.mjs +0 -17
  743. package/esm2022/components/file-picker/file-picker.component.mjs +0 -121
  744. package/esm2022/components/hints/hints.component.mjs +0 -66
  745. package/esm2022/components/input/input.component.mjs +0 -32
  746. package/esm2022/components/mobile/COUNTRIES.mjs +0 -2041
  747. package/esm2022/components/mobile/mobile.component.mjs +0 -141
  748. package/esm2022/components/mobile/phone.service.mjs +0 -99
  749. package/esm2022/components/note/note.component.mjs +0 -17
  750. package/esm2022/components/plate-number/plate-number.component.mjs +0 -114
  751. package/esm2022/components/radio/radio.component.mjs +0 -40
  752. package/esm2022/components/select/select.component.mjs +0 -123
  753. package/esm2022/components/slide-toggle/slide-toggle.component.mjs +0 -23
  754. package/esm2022/components/textarea/textarea.component.mjs +0 -17
  755. package/esm2022/components/time-picker/time-picker.component.mjs +0 -169
  756. package/esm2022/components/toggle-button/toggle-button.component.mjs +0 -87
  757. package/esm2022/directives/droppable.directive.mjs +0 -39
  758. package/esm2022/interfaces/country.interface.mjs +0 -2
  759. package/esm2022/interfaces/date-range-emission-object.mjs +0 -2
  760. package/esm2022/interfaces/hint.interface.mjs +0 -2
  761. package/esm2022/interfaces/iso2.interface.mjs +0 -2
  762. package/esm2022/interfaces/mobile.interface.mjs +0 -2
  763. package/esm2022/interfaces/option.interface.mjs +0 -2
  764. package/esm2022/interfaces/time.interface.mjs +0 -2
  765. package/esm2022/iss-ctrl.mjs +0 -5
  766. package/esm2022/pipes/select-status.pipe.mjs +0 -18
  767. package/esm2022/public-api.mjs +0 -20
  768. package/fesm2022/iss-ctrl.mjs +0 -3658
  769. package/fesm2022/iss-ctrl.mjs.map +0 -1
  770. package/index.d.ts +0 -5
  771. package/interfaces/country.interface.d.ts +0 -10
  772. package/interfaces/date-range-emission-object.d.ts +0 -5
  773. package/interfaces/hint.interface.d.ts +0 -5
  774. package/interfaces/iso2.interface.d.ts +0 -1
  775. package/interfaces/mobile.interface.d.ts +0 -11
  776. package/interfaces/option.interface.d.ts +0 -4
  777. package/interfaces/time.interface.d.ts +0 -5
  778. package/pipes/select-status.pipe.d.ts +0 -8
  779. package/public-api.d.ts +0 -19
  780. package/src/components/mobile/flags/ad.svg +0 -154
  781. package/src/components/mobile/flags/ae.svg +0 -1
  782. package/src/components/mobile/flags/af.svg +0 -1
  783. package/src/components/mobile/flags/ag.svg +0 -1
  784. package/src/components/mobile/flags/ai.svg +0 -1
  785. package/src/components/mobile/flags/al.svg +0 -1
  786. package/src/components/mobile/flags/am.svg +0 -1
  787. package/src/components/mobile/flags/ao.svg +0 -1
  788. package/src/components/mobile/flags/aq.svg +0 -1
  789. package/src/components/mobile/flags/ar.svg +0 -1
  790. package/src/components/mobile/flags/as.svg +0 -1
  791. package/src/components/mobile/flags/at.svg +0 -1
  792. package/src/components/mobile/flags/au.svg +0 -1
  793. package/src/components/mobile/flags/aw.svg +0 -1
  794. package/src/components/mobile/flags/ax.svg +0 -1
  795. package/src/components/mobile/flags/az.svg +0 -1
  796. package/src/components/mobile/flags/ba.svg +0 -1
  797. package/src/components/mobile/flags/bb.svg +0 -7
  798. package/src/components/mobile/flags/bd.svg +0 -1
  799. package/src/components/mobile/flags/be.svg +0 -1
  800. package/src/components/mobile/flags/bf.svg +0 -1
  801. package/src/components/mobile/flags/bg.svg +0 -1
  802. package/src/components/mobile/flags/bh.svg +0 -1
  803. package/src/components/mobile/flags/bi.svg +0 -26
  804. package/src/components/mobile/flags/bj.svg +0 -1
  805. package/src/components/mobile/flags/bl.svg +0 -1
  806. package/src/components/mobile/flags/bm.svg +0 -1
  807. package/src/components/mobile/flags/bn.svg +0 -58
  808. package/src/components/mobile/flags/bo.svg +0 -1
  809. package/src/components/mobile/flags/bq.svg +0 -1
  810. package/src/components/mobile/flags/br.svg +0 -1
  811. package/src/components/mobile/flags/bs.svg +0 -1
  812. package/src/components/mobile/flags/bt.svg +0 -466
  813. package/src/components/mobile/flags/bv.svg +0 -1
  814. package/src/components/mobile/flags/bw.svg +0 -1
  815. package/src/components/mobile/flags/by.svg +0 -1
  816. package/src/components/mobile/flags/bz.svg +0 -1
  817. package/src/components/mobile/flags/ca.svg +0 -1
  818. package/src/components/mobile/flags/cc.svg +0 -19
  819. package/src/components/mobile/flags/cd.svg +0 -1
  820. package/src/components/mobile/flags/cf.svg +0 -1
  821. package/src/components/mobile/flags/cg.svg +0 -5
  822. package/src/components/mobile/flags/ch.svg +0 -1
  823. package/src/components/mobile/flags/ci.svg +0 -1
  824. package/src/components/mobile/flags/ck.svg +0 -1
  825. package/src/components/mobile/flags/cl.svg +0 -14
  826. package/src/components/mobile/flags/cm.svg +0 -15
  827. package/src/components/mobile/flags/cn.svg +0 -1
  828. package/src/components/mobile/flags/co.svg +0 -5
  829. package/src/components/mobile/flags/cr.svg +0 -1
  830. package/src/components/mobile/flags/cu.svg +0 -6
  831. package/src/components/mobile/flags/cv.svg +0 -24
  832. package/src/components/mobile/flags/cw.svg +0 -16
  833. package/src/components/mobile/flags/cx.svg +0 -15
  834. package/src/components/mobile/flags/cy.svg +0 -1
  835. package/src/components/mobile/flags/cz.svg +0 -5
  836. package/src/components/mobile/flags/de.svg +0 -1
  837. package/src/components/mobile/flags/dj.svg +0 -1
  838. package/src/components/mobile/flags/dk.svg +0 -5
  839. package/src/components/mobile/flags/dm.svg +0 -1
  840. package/src/components/mobile/flags/do.svg +0 -1
  841. package/src/components/mobile/flags/dz.svg +0 -5
  842. package/src/components/mobile/flags/ec.svg +0 -519
  843. package/src/components/mobile/flags/ee.svg +0 -1
  844. package/src/components/mobile/flags/eg.svg +0 -78
  845. package/src/components/mobile/flags/eh.svg +0 -9
  846. package/src/components/mobile/flags/er.svg +0 -6
  847. package/src/components/mobile/flags/es.svg +0 -1
  848. package/src/components/mobile/flags/et.svg +0 -1
  849. package/src/components/mobile/flags/eu.svg +0 -1
  850. package/src/components/mobile/flags/fi.svg +0 -5
  851. package/src/components/mobile/flags/fj.svg +0 -1
  852. package/src/components/mobile/flags/fk.svg +0 -1
  853. package/src/components/mobile/flags/fm.svg +0 -16
  854. package/src/components/mobile/flags/fo.svg +0 -11
  855. package/src/components/mobile/flags/fr.svg +0 -1
  856. package/src/components/mobile/flags/ga.svg +0 -5
  857. package/src/components/mobile/flags/gb-eng.svg +0 -7
  858. package/src/components/mobile/flags/gb-nir.svg +0 -1
  859. package/src/components/mobile/flags/gb-sct.svg +0 -1
  860. package/src/components/mobile/flags/gb-wls.svg +0 -9
  861. package/src/components/mobile/flags/gb.svg +0 -1
  862. package/src/components/mobile/flags/gd.svg +0 -1
  863. package/src/components/mobile/flags/ge.svg +0 -1
  864. package/src/components/mobile/flags/gf.svg +0 -1
  865. package/src/components/mobile/flags/gg.svg +0 -8
  866. package/src/components/mobile/flags/gh.svg +0 -6
  867. package/src/components/mobile/flags/gi.svg +0 -54
  868. package/src/components/mobile/flags/gl.svg +0 -4
  869. package/src/components/mobile/flags/gm.svg +0 -7
  870. package/src/components/mobile/flags/gn.svg +0 -5
  871. package/src/components/mobile/flags/gp.svg +0 -1
  872. package/src/components/mobile/flags/gq.svg +0 -75
  873. package/src/components/mobile/flags/gr.svg +0 -1
  874. package/src/components/mobile/flags/gs.svg +0 -1
  875. package/src/components/mobile/flags/gt.svg +0 -214
  876. package/src/components/mobile/flags/gu.svg +0 -1
  877. package/src/components/mobile/flags/gw.svg +0 -13
  878. package/src/components/mobile/flags/gy.svg +0 -7
  879. package/src/components/mobile/flags/hk.svg +0 -1
  880. package/src/components/mobile/flags/hm.svg +0 -1
  881. package/src/components/mobile/flags/hn.svg +0 -1
  882. package/src/components/mobile/flags/hr.svg +0 -1
  883. package/src/components/mobile/flags/ht.svg +0 -1
  884. package/src/components/mobile/flags/hu.svg +0 -1
  885. package/src/components/mobile/flags/id.svg +0 -1
  886. package/src/components/mobile/flags/ie.svg +0 -1
  887. package/src/components/mobile/flags/il.svg +0 -1
  888. package/src/components/mobile/flags/im.svg +0 -1
  889. package/src/components/mobile/flags/in.svg +0 -1
  890. package/src/components/mobile/flags/io.svg +0 -1
  891. package/src/components/mobile/flags/iq.svg +0 -1
  892. package/src/components/mobile/flags/ir.svg +0 -31
  893. package/src/components/mobile/flags/is.svg +0 -1
  894. package/src/components/mobile/flags/it.svg +0 -1
  895. package/src/components/mobile/flags/je.svg +0 -1
  896. package/src/components/mobile/flags/jm.svg +0 -1
  897. package/src/components/mobile/flags/jo.svg +0 -7
  898. package/src/components/mobile/flags/jp.svg +0 -4
  899. package/src/components/mobile/flags/ke.svg +0 -23
  900. package/src/components/mobile/flags/kg.svg +0 -1
  901. package/src/components/mobile/flags/kh.svg +0 -116
  902. package/src/components/mobile/flags/ki.svg +0 -1
  903. package/src/components/mobile/flags/km.svg +0 -13
  904. package/src/components/mobile/flags/kn.svg +0 -1
  905. package/src/components/mobile/flags/kp.svg +0 -16
  906. package/src/components/mobile/flags/kr.svg +0 -1
  907. package/src/components/mobile/flags/kw.svg +0 -6
  908. package/src/components/mobile/flags/ky.svg +0 -1
  909. package/src/components/mobile/flags/kz.svg +0 -37
  910. package/src/components/mobile/flags/la.svg +0 -1
  911. package/src/components/mobile/flags/lb.svg +0 -5
  912. package/src/components/mobile/flags/lc.svg +0 -6
  913. package/src/components/mobile/flags/li.svg +0 -56
  914. package/src/components/mobile/flags/lk.svg +0 -1
  915. package/src/components/mobile/flags/lr.svg +0 -15
  916. package/src/components/mobile/flags/ls.svg +0 -23
  917. package/src/components/mobile/flags/lt.svg +0 -1
  918. package/src/components/mobile/flags/lu.svg +0 -1
  919. package/src/components/mobile/flags/lv.svg +0 -1
  920. package/src/components/mobile/flags/ly.svg +0 -8
  921. package/src/components/mobile/flags/ma.svg +0 -1
  922. package/src/components/mobile/flags/mc.svg +0 -1
  923. package/src/components/mobile/flags/md.svg +0 -1
  924. package/src/components/mobile/flags/me.svg +0 -93
  925. package/src/components/mobile/flags/mf.svg +0 -1
  926. package/src/components/mobile/flags/mg.svg +0 -1
  927. package/src/components/mobile/flags/mh.svg +0 -1
  928. package/src/components/mobile/flags/mk.svg +0 -1
  929. package/src/components/mobile/flags/ml.svg +0 -5
  930. package/src/components/mobile/flags/mm.svg +0 -12
  931. package/src/components/mobile/flags/mn.svg +0 -1
  932. package/src/components/mobile/flags/mo.svg +0 -10
  933. package/src/components/mobile/flags/mp.svg +0 -1
  934. package/src/components/mobile/flags/mq.svg +0 -1
  935. package/src/components/mobile/flags/mr.svg +0 -1
  936. package/src/components/mobile/flags/ms.svg +0 -1
  937. package/src/components/mobile/flags/mt.svg +0 -1
  938. package/src/components/mobile/flags/mu.svg +0 -1
  939. package/src/components/mobile/flags/mv.svg +0 -1
  940. package/src/components/mobile/flags/mw.svg +0 -24
  941. package/src/components/mobile/flags/mx.svg +0 -1
  942. package/src/components/mobile/flags/my.svg +0 -1
  943. package/src/components/mobile/flags/mz.svg +0 -13
  944. package/src/components/mobile/flags/na.svg +0 -1
  945. package/src/components/mobile/flags/nc.svg +0 -1
  946. package/src/components/mobile/flags/ne.svg +0 -6
  947. package/src/components/mobile/flags/nf.svg +0 -5
  948. package/src/components/mobile/flags/ng.svg +0 -4
  949. package/src/components/mobile/flags/ni.svg +0 -161
  950. package/src/components/mobile/flags/nl.svg +0 -1
  951. package/src/components/mobile/flags/no.svg +0 -1
  952. package/src/components/mobile/flags/np.svg +0 -33
  953. package/src/components/mobile/flags/nr.svg +0 -1
  954. package/src/components/mobile/flags/nu.svg +0 -1
  955. package/src/components/mobile/flags/nz.svg +0 -1
  956. package/src/components/mobile/flags/om.svg +0 -1
  957. package/src/components/mobile/flags/pa.svg +0 -1
  958. package/src/components/mobile/flags/pe.svg +0 -320
  959. package/src/components/mobile/flags/pf.svg +0 -1
  960. package/src/components/mobile/flags/pg.svg +0 -13
  961. package/src/components/mobile/flags/ph.svg +0 -1
  962. package/src/components/mobile/flags/pk.svg +0 -1
  963. package/src/components/mobile/flags/pl.svg +0 -1
  964. package/src/components/mobile/flags/pm.svg +0 -1
  965. package/src/components/mobile/flags/pn.svg +0 -1
  966. package/src/components/mobile/flags/pr.svg +0 -1
  967. package/src/components/mobile/flags/ps.svg +0 -1
  968. package/src/components/mobile/flags/pt.svg +0 -1
  969. package/src/components/mobile/flags/pw.svg +0 -1
  970. package/src/components/mobile/flags/py.svg +0 -1
  971. package/src/components/mobile/flags/qa.svg +0 -1
  972. package/src/components/mobile/flags/re.svg +0 -1
  973. package/src/components/mobile/flags/ro.svg +0 -1
  974. package/src/components/mobile/flags/rs.svg +0 -1
  975. package/src/components/mobile/flags/ru.svg +0 -1
  976. package/src/components/mobile/flags/rw.svg +0 -13
  977. package/src/components/mobile/flags/sa.svg +0 -1
  978. package/src/components/mobile/flags/sb.svg +0 -1
  979. package/src/components/mobile/flags/sc.svg +0 -7
  980. package/src/components/mobile/flags/sd.svg +0 -6
  981. package/src/components/mobile/flags/se.svg +0 -5
  982. package/src/components/mobile/flags/sg.svg +0 -11
  983. package/src/components/mobile/flags/sh.svg +0 -1
  984. package/src/components/mobile/flags/si.svg +0 -1
  985. package/src/components/mobile/flags/sj.svg +0 -1
  986. package/src/components/mobile/flags/sk.svg +0 -1
  987. package/src/components/mobile/flags/sl.svg +0 -1
  988. package/src/components/mobile/flags/sm.svg +0 -1
  989. package/src/components/mobile/flags/sn.svg +0 -1
  990. package/src/components/mobile/flags/so.svg +0 -1
  991. package/src/components/mobile/flags/sr.svg +0 -1
  992. package/src/components/mobile/flags/ss.svg +0 -1
  993. package/src/components/mobile/flags/st.svg +0 -1
  994. package/src/components/mobile/flags/sv.svg +0 -1
  995. package/src/components/mobile/flags/sx.svg +0 -1
  996. package/src/components/mobile/flags/sy.svg +0 -1
  997. package/src/components/mobile/flags/sz.svg +0 -1
  998. package/src/components/mobile/flags/tc.svg +0 -1
  999. package/src/components/mobile/flags/td.svg +0 -1
  1000. package/src/components/mobile/flags/tf.svg +0 -1
  1001. package/src/components/mobile/flags/tg.svg +0 -1
  1002. package/src/components/mobile/flags/th.svg +0 -1
  1003. package/src/components/mobile/flags/tj.svg +0 -1
  1004. package/src/components/mobile/flags/tk.svg +0 -1
  1005. package/src/components/mobile/flags/tl.svg +0 -1
  1006. package/src/components/mobile/flags/tm.svg +0 -1
  1007. package/src/components/mobile/flags/tn.svg +0 -9
  1008. package/src/components/mobile/flags/to.svg +0 -1
  1009. package/src/components/mobile/flags/tr.svg +0 -1
  1010. package/src/components/mobile/flags/tt.svg +0 -5
  1011. package/src/components/mobile/flags/tv.svg +0 -1
  1012. package/src/components/mobile/flags/tw.svg +0 -1
  1013. package/src/components/mobile/flags/tz.svg +0 -1
  1014. package/src/components/mobile/flags/ua.svg +0 -1
  1015. package/src/components/mobile/flags/ug.svg +0 -1
  1016. package/src/components/mobile/flags/um.svg +0 -1
  1017. package/src/components/mobile/flags/us.svg +0 -1
  1018. package/src/components/mobile/flags/uy.svg +0 -1
  1019. package/src/components/mobile/flags/uz.svg +0 -1
  1020. package/src/components/mobile/flags/va.svg +0 -1
  1021. package/src/components/mobile/flags/vc.svg +0 -1
  1022. package/src/components/mobile/flags/ve.svg +0 -1
  1023. package/src/components/mobile/flags/vg.svg +0 -1
  1024. package/src/components/mobile/flags/vi.svg +0 -1
  1025. package/src/components/mobile/flags/vn.svg +0 -1
  1026. package/src/components/mobile/flags/vu.svg +0 -1
  1027. package/src/components/mobile/flags/wf.svg +0 -1
  1028. package/src/components/mobile/flags/ws.svg +0 -1
  1029. package/src/components/mobile/flags/xk.svg +0 -1
  1030. package/src/components/mobile/flags/ye.svg +0 -1
  1031. package/src/components/mobile/flags/yt.svg +0 -1
  1032. package/src/components/mobile/flags/za.svg +0 -1
  1033. package/src/components/mobile/flags/zm.svg +0 -1
  1034. package/src/components/mobile/flags/zw.svg +0 -1
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 9 6" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 0h9v3H0z" fill="#fff"/>
3
+ <path d="M0 3h9v3H0z" fill="#DA291C"/>
4
+ <path d="M0 2h9v2H0z" fill="#0032A0"/>
5
+ </svg>
@@ -0,0 +1,17 @@
1
+ <svg viewBox="0 0 1080 720" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <rect fill="#20603D" height="720" width="1080"/>
3
+ <rect fill="#FAD201" height="540" width="1080"/>
4
+ <rect fill="#00A1DE" height="360" width="1080"/>
5
+ <g transform="translate(886.5,188.1)">
6
+ <g id="h">
7
+ <path
8
+ d="M 116.10000,0.00000 L 35.69202,4.69894 112.14399,30.04889 33.25966,13.77660 100.54555,58.05000 28.56072,21.91541 82.09510,82.09510 21.91541,28.56072 58.05000,100.54555 13.77660,33.25966 30.04889,112.14399 4.69894,35.69202 0.00000,116.10000 -1,-1 z"
9
+ fill="#E5BE01"
10
+ id="q"
11
+ />
12
+ <use transform="scale(1,-1)" xlink:href="#q"/>
13
+ </g>
14
+ <use transform="scale(-1,1)" xlink:href="#h"/>
15
+ <circle fill="#E5BE01" r="34.3" stroke="#00A1DE" stroke-width="3.4"/>
16
+ </g>
17
+ </svg>
@@ -0,0 +1,23 @@
1
+ <svg viewBox="0 0 900 600" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M900 600V0H0v600z" fill="#006c35"/>
3
+ <path
4
+ d="M636.911 160.576c5.1-3.635 9.844-7.712 15.52-10.576-1.622 6.5-6.486 11.457-11.466 15.644-2.548 1.983-1.39 5.618-1.738 8.372a56.044 56.044 0 0 1-4.053-1.1c1.274 16.525 3.127 32.94 3.938 49.465.115 1.873.231 3.856 1.853 5.068 7.643 6.83 15.519 13.55 21.078 22.253 2.2 3.416 3.359 7.271 4.517 11.127a61.162 61.162 0 0 0 .579-19.5q-4.168-37.677-7.528-75.575c-.231-3.085-.695-6.28-.347-9.364a5.831 5.831 0 0 1 6.022-5.068 14.487 14.487 0 0 1 3.591 5.4c2.316 5.178 4.4 10.8 3.821 16.635-1.389-.44-2.779-.991-4.285-1.542 2.085 17.076 4.17 34.152 5.444 51.338.579 11.568 2.316 23.245-.116 34.7-2.085 10.576-7.3 21.262-16.562 27.321-7.76 5.068-16.793 7.932-25.827 9.805a23.722 23.722 0 0 1-11.119.11c3.822-2.093 8.108-3.635 12.161-5.4a105.889 105.889 0 0 0 16.909-8.813c4.981-3.305 10.192-6.61 13.9-11.458-4.633-12.338-12.277-23.906-23.164-31.508.348 12.119.927 24.458-.926 36.466a12.53 12.53 0 0 1-3.591 7.381c-1.274-5.068-1.389-10.356-1.969-15.534a1667.379 1667.379 0 0 1-2.779-33.821c0-2.313-1.506-4.076-3.243-5.4-6.833-5.729-13.2-12.119-19.8-18.068.232 6.941 1.274 13.771 1.738 20.6.81 9.254.926 18.508 1.853 27.762.579 6.5.694 13.33-1.738 19.5-2.432 5.839-7.875 10.8-14.361 11.238a40.258 40.258 0 0 1-10.308-.551c-3.59-.551-6.37-3.3-7.991-6.39-1.969-3.746-3.011-7.932-4.633-11.788-3.011.661-6.138 1.322-8.339 3.636-4.632 4.406-6.022 11.127-8.223 16.855-1.274 3.415-2.779 7.161-6.138 9.034-3.474 1.983-7.76 1.212-11.118-.661-5.1-2.754-8.223-8.042-9.729-13.44-1.506-4.187.579-9.034-1.969-13-1.853-3.636-.811-7.932.116-11.678 1.969-6.72 6.138-12.449 11.118-17.3l-19.8-17.186c.579 15.864 1.853 31.728-.232 47.482a13.782 13.782 0 0 1-3.822 8.483 60.231 60.231 0 0 1-1.39-9.144q-2.431-26.11-4.169-52.219c-.116-1.984-.463-4.187-2.085-5.509a253.1 253.1 0 0 1-19.225-20.381c-3.475-4.406-7.065-8.923-8.918-14.211-.695-2.2-1.274-5.288.81-6.941a18.117 18.117 0 0 1 6.718 2.424 46.865 46.865 0 0 1 10.539 8.372 12.432 12.432 0 0 1 2.664 5.178c-1.969 0-3.822-.11-5.791-.11a77.027 77.027 0 0 0 13.9 15.2c-.463-14.762-2.085-29.635-2.78-44.4 0-1.983 0-4.186 1.39-5.839 1.274-1.432 3.243-1.983 4.98-2.644a47.975 47.975 0 0 1 6.949 15.644 22.379 22.379 0 0 1 .348 6.83c-1.39-.33-2.78-.771-4.054-1.212.927 12.008 2.2 23.907 3.012 35.915a25.351 25.351 0 0 0 .694 5.067 13.023 13.023 0 0 0 2.664 2.865c8.223 6.94 16.446 13.881 24.785 20.6 4.98-4.3 9.844-8.7 14.825-12.889a27.164 27.164 0 0 0 3.242-2.975c.927-.991.58-2.424.58-3.635-1.622-14.432-2.78-28.864-4.054-43.3-.348-5.288-1.158-10.466-1.158-15.644-.116-3.085 2.316-6.169 5.443-6.279 1.39-.111 1.969 1.432 2.664 2.313a47.8 47.8 0 0 1 5.1 13.11 15.148 15.148 0 0 1-.116 6.83c-1.274-.551-2.664-1.212-3.938-1.762 1.738 13.55 3.127 27.1 4.4 40.651 3.591-2.644 6.834-5.728 10.192-8.593 3.706-3.195 7.644-6.279 11.234-9.694-4.285-4.627-8.8-8.924-13.2-13.441-2.779-2.864-6.138-5.618-7.3-9.7-.927-2.864-.348-5.949.232-8.7 5.211.882 9.728 3.966 13.9 7.051a81.426 81.426 0 0 1 7.991 7.271c-.232-5.729-.927-11.457-1.39-17.186 0-2.2-.232-4.627 1.274-6.39 1.274-1.432 3.243-1.983 4.864-2.754a42.312 42.312 0 0 1 6.834 14.983 22.085 22.085 0 0 1 .579 7.271c-1.39-.331-2.9-.661-4.286-.992.464 4.407.927 8.7 1.506 13.11 5.443-4.076 10.424-8.7 15.867-12.779 1.853-1.763 5.212-3.085 5.212-6.17.116-3.305-.579-6.72-.116-10.025a5.818 5.818 0 0 1 6.022-4.957c2.78 2.644 3.822 5.949 5.328 8.813zm-28.259 31.838c-.927.992-2.664 1.873-2.548 3.526.695 1.432 2.084 2.534 3.243 3.745 6.717 6.06 13.087 12.449 20.152 17.958-.232-6.5-.927-12.89-1.274-19.39-.579-6.83-.811-13.661-1.506-20.491-6.254 4.517-11.929 9.805-18.067 14.652zm-17.025-12.008c1.5 1.653 2.9 3.305 4.4 4.958 0-1.653-.116-3.305-.116-4.958zm-16.215 40.211c-1.158.992-2.548 2.093-2.432 3.746-.116 8.373.811 16.966-1.274 25.118-.463 2.093-1.969 3.525-3.474 4.847-1.854-8.042-1.969-16.3-3.359-24.457-4.98 3.966-9.729 8.263-14.361 12.559 2.663 2.975 5.327 6.17 6.254 10.246a15.505 15.505 0 0 1-4.866 15.864c-5.675 4.737-13.319 5.508-20.383 6.39 1.042 4.627 1.968 9.474 4.748 13.44 1.737 2.314 4.517 4.517 7.528 3.636 3.243-.882 5.212-3.966 6.37-6.831a92.105 92.105 0 0 1 8.337-16.855c2.78-4.407 7.3-8.043 12.624-8.153 1.737.11 4.054-.44 5.1 1.432 2.316 3.856 3.127 8.483 6.022 12.119 4.865 6.389 15.172 6.5 20.963 1.212 1.969-1.763 1.969-4.627 1.738-7.051-2.664-21.923-4.633-44.067-6.95-65.99-7.76 6.059-15.057 12.449-22.585 18.728zm-40.883 37.457a16.79 16.79 0 0 0-2.548 5.839 24.763 24.763 0 0 0 15.056-3.195c1.39-.881 3.011-2.313 2.664-4.186-.348-3.746-3.475-6.39-6.254-8.593a85.5 85.5 0 0 0-8.918 10.135zM317.025 151.212c1.389-.882 2.663.661 3.59 1.652 2.78 3.416 5.791 6.831 7.412 11.017-1.39.22-2.895.441-4.285.661.347 6.61 5.907 11.127 7.528 17.406a24.392 24.392 0 0 1 .463 11.9 14.037 14.037 0 0 1-11 10.8c-6.37 1.1-13.551-.441-18.3-5.178-3.127-3.085-4.286-7.491-5.675-11.457-1.506 5.4-3.707 10.576-7.529 14.762a27.175 27.175 0 0 1-7.991 5.839c.811 14.762 2.316 29.525 1.042 44.177-.463 4.186-.694 9.144-4.516 11.9-1.39-5.839-1.622-11.9-2.317-17.957-1.274-12.229-2.2-24.457-3.474-36.686-3.591-.881-7.528-1.652-10.308-4.3-4.633-4.187-6.138-10.687-5.791-16.636.116-4.627 1.622-9.144 2.664-13.66a16.772 16.772 0 0 0-3.938 6.169c-2.432 7.381-4.053 15.093-7.412 22.144a10.061 10.061 0 0 1-6.717 5.728c-3.707.771-8.108.551-11-2.313-3.127-3.085-3.822-7.712-4.285-11.9-.232-4.3-.579-8.924 1.39-12.89 1.158-2.424 3.59-3.746 5.675-4.957-1.39 2.313-3.012 4.627-3.359 7.271-.463 3.745.232 7.6.926 11.237.464 2.2.927 4.627 2.664 6.169a7.42 7.42 0 0 0 9.729-.22 16.114 16.114 0 0 0 2.779-5.4c2.317-7.051 4.17-14.322 7.065-21.153 2.548-5.728 7.065-11.347 13.551-12.559-.695 7.822-4.285 15.093-4.517 23.025-.116 3.526.232 7.382 2.548 10.136 1.737 2.313 4.633 3.084 7.3 3.856-.694-10.687-1.737-21.373-2.432-32.169-.231-3.966-.926-8.042-.231-12.008.579-2.755 3.59-3.746 5.906-4.627 4.4 6.5 7.644 14.211 7.528 22.143-1.5-.33-2.895-.661-4.4-.991.927 9.144 1.853 18.4 2.9 27.541a17.37 17.37 0 0 0 9.5-6.94c4.517-6.5 5.212-14.983 3.011-22.474-.927-3.195-2.432-6.17-3.127-9.475-.7-3.084 1.506-6.279 4.285-7.271 1.274-.55 1.853.992 2.432 1.873 1.738 3.746 2.317 7.932 3.127 12.008 1.043 5.4 0 11.017 1.969 16.195a20.027 20.027 0 0 0 8.687 10.8 16.839 16.839 0 0 0 11.118 1.653 4.991 4.991 0 0 0 3.822-3.746c.926-3.525-.347-7.161-1.853-10.355-3.475-7.272-7.76-14.212-9.381-22.144-.579-2.864.231-6.83 3.243-8.593z"
5
+ fill="#fff"
6
+ />
7
+ <path
8
+ d="M476.041 159.7a21.934 21.934 0 0 1 9.613-8.483 43.424 43.424 0 0 1-4.169 7.491c-1.159 1.763-1.159 3.966-1.274 5.949a37.754 37.754 0 0 0 7.875-1.212c-.695 2.094-1.39 4.3-3.359 5.619-2.2 1.542-5.443 2.534-7.759.661a8.634 8.634 0 0 1-.927-10.025zm-143.613-4.853c1.158-1.762 3.359-2.423 5.1-3.2a42.347 42.347 0 0 1 7.181 15.865 18.14 18.14 0 0 1 .116 6.61c-1.274-.441-2.664-.882-3.938-1.322 1.5 10.686 3.359 21.262 4.633 31.948 6.138-2.974 11.813-6.61 18.183-9.254a19.963 19.963 0 0 1 6.254-1.542c-.811 1.762-1.737 3.525-3.59 4.3-6.718 3.415-13.551 6.39-20.153 10.136.58 5.288 1.159 10.686 1.854 15.974 3.011-3.856 5.675-8.7 10.886-9.915.232 2.864-.695 6.279 1.39 8.593 3.243 2.534 7.644.991 10.655-1.322-.231-4.186.927-8.263 1.738-12.339 1.274.551 2.895.771 3.358 2.314 1.39 3.856 1.043 8.152 0 12.008-1.042 4.407-4.632 7.712-8.57 9.695-2.432 1.211-5.444 1.872-8.107.771-2.78-1.1-4.517-3.746-6.37-6.059-1.622 3.966-4.286 7.6-4.4 12.118a47.251 47.251 0 0 1-9.845 26c-9.844 12.89-24.9 20.6-40.188 25.119-8.8 2.423-17.952 4.627-27.217 4.186a28.549 28.549 0 0 1-14.362-3.856c-1.853-1.212-3.474-2.864-5.327-3.966-2.316-.441-4.749.22-7.181.22-5.791.221-11.581.441-17.256-.55 6.949-2.314 14.013-4.077 20.847-6.611a55.378 55.378 0 0 1 6.949-36.134 37.351 37.351 0 0 1 6.254-7.6c-1.969 3.966-4.4 7.822-5.444 12.229a51.829 51.829 0 0 0 .464 28.2c4.748-1.542 9.381-3.635 13.9-5.618 10.539-4.627 20.847-9.585 30.459-15.974 3.591-2.534 7.3-5.178 9.729-9.034 1.158-1.873.927-4.076.927-6.169-4.981.991-9.845 3.305-15.057 3.194-3.242-.22-6.717-.881-9.033-3.415s-2.432-6.169-1.969-9.364a18.062 18.062 0 0 1 5.906-11.127c3.822-3.195 9.5-3.085 13.9-1.1 4.286 1.984 6.718 6.17 8.8 10.136 6.485-2.424 10.886-8.152 17.256-10.907.232 3.305-.116 7.161 2.432 9.805 1.506 1.873 4.054 1.763 6.139 1.983-.348-5.288-1.158-10.466-1.853-15.644-2.2-17.3-4.4-34.7-6.254-52.109-.116-2.533-.464-5.177.81-7.271zm-39.609 75.245c-.579 1.211.811 1.983 1.737 2.423 3.475 1.212 7.3.441 10.887-.22-1.853-1.983-4.054-4.186-7.065-4.3-1.969-.11-4.748 0-5.559 2.094zm25.248 7.16c.232 3.526.347 7.051-.811 10.356-1.853 5.619-6.138 10.136-10.539 13.881-8.455 6.941-18.415 11.458-28.028 16.525a116.5 116.5 0 0 1-13.55 6.5c5.906.441 11.813-.551 17.6-.991 8.918-.551 17.488-3.085 25.711-6.39 8.571-3.525 16.909-8.042 23.627-14.652a31.11 31.11 0 0 0 8.686-14.542 41.364 41.364 0 0 0 .811-8.483c-3.475-.11-7.181 0-10.308-1.763-2.548-1.432-3.938-4.186-5.443-6.61a56.986 56.986 0 0 1-7.76 6.169zm94.159-82.735c1.274-1.432 3.59-1.212 5.1-.221a11.663 11.663 0 0 1 5.1 10.246 19.248 19.248 0 0 1-1.506 5.178c-.463-2.534-.347-5.178-1.5-7.491-1.737-2.424-4.98-2.865-7.065-4.848-.824-.661-1.171-2.203-.129-2.864z"
9
+ fill="#fff"
10
+ />
11
+ <path
12
+ d="M459.711 155.839c.232-1.543 1.737-3.195 3.359-2.314 4.517 2.2 7.759 6.39 9.844 10.907-1.621 0-3.243-.11-4.748-.22a63.172 63.172 0 0 0 2.895 9.033c1.737 4.187 4.17 8.153 4.864 12.78.811 5.067-.115 10.8-3.706 14.652-6.717 7.491-20.152 6.169-25.943-1.873-2.2-2.864-3.358-6.169-4.517-9.584-1.853 7.271-5.79 14.321-12.392 18.067a20.858 20.858 0 0 1-22-.771 14.1 14.1 0 0 1-6.6-11.568c-.463-6.83 2.2-13.22 3.127-19.83a14.493 14.493 0 0 0-3.822 5.839c-2.779 7.381-3.937 15.313-7.875 22.254-1.853 3.3-4.98 6.279-8.918 6.61-3.822.22-7.992-1.212-10.192-4.517-1.969-3.085-2.432-6.83-2.432-10.466a36.283 36.283 0 0 1 3.938-15.974c0 6.94-2.085 14.542 1.389 21.042 1.738 3.635 6.37 5.728 9.961 3.745 3.243-1.983 4.748-5.728 5.906-9.143 2.433-7.272 4.98-14.653 8.571-21.483 1.5-2.754 3.127-5.619 5.675-7.6 1.274-1.1 3.127-1.1 4.748-1.432.348 6.17-3.127 11.568-4.285 17.517-1.158 5.178-1.506 11.347 2.2 15.644 4.169 4.516 11.118 5.618 16.909 4.076 7.991-2.534 13.782-10.576 14.13-18.949.231-4.958.463-10.356-2.2-14.762-1.158-2.314-3.359-4.738-2.432-7.6a9.691 9.691 0 0 1 5.1-6.39 21.348 21.348 0 0 1 3.59 9.034c.927 7.6 1.042 15.423 3.706 22.694 1.622 4.187 4.054 8.483 8.339 10.466 3.938 1.873 8.8 2.314 12.624.331 2.432-1.212 3.011-4.186 2.432-6.61-1.621-7.932-7.064-14.212-9.612-21.813-1.39-3.856-2.433-7.822-1.622-11.788zm77.829-1.653c2.432-1.1 5.907-.22 7.065 2.314a2.616 2.616 0 0 1-1.274 2.974 22.19 22.19 0 0 1-4.749-1.872c-1.968 3.745-3.011 7.932-4.169 12.118a27.292 27.292 0 0 0-2.78-5.839c-1.621-2.2-4.169-3.305-6.022-5.288-.579-1.763 1.5-3.746 3.243-3.195 2.548.771 4.053 3.085 5.559 5.178.695-2.313 1.042-5.068 3.127-6.39zm-311.548 9.254c1.969-4.186 5.791-7.271 9.961-9.254-1.043 2.755-2.78 5.068-4.17 7.6-1.158 1.763-1.042 3.966-1.158 5.949a34.345 34.345 0 0 0 7.991-1.653c-.81 2.094-1.621 4.407-3.59 5.839-2.085 1.543-5.212 2.424-7.412.882-2.548-2.203-3.014-6.278-1.622-9.363z"
13
+ fill="#fff"
14
+ />
15
+ <path
16
+ d="M374.122 157.822c.695-3.636 6.139-3.526 7.876-.771 1.158 1.983 1.737 4.076 2.895 6.059 1.043 1.983 2.317 4.076 1.622 6.39-1.043 3.635-3.706 6.5-4.054 10.355 1.274-.551 2.548-1.212 3.822-1.873-.347 1.983 0 4.627-2.085 5.729-2.548 1.212-5.675-1.212-5.443-3.966.347-4.957 5.212-8.813 3.706-14.1-4.864 6.5-11.582 12.338-19.805 13.55 3.591-2.864 7.644-4.847 10.887-8.152a29.28 29.28 0 0 0 4.865-6.941c-1.738-1.762-4.749-3.415-4.286-6.279zm3.359-.331a9.135 9.135 0 0 0 3.011 2.865 4.5 4.5 0 0 0-3.011-2.865zm-29.07 2.644c1.737-.44 3.822-1.1 5.212.441a16.253 16.253 0 0 1 4.748 15.534c-.926-2.094-1.621-4.3-2.664-6.28-1.737-3.746-5.559-5.949-7.3-9.7zm-37.293 2.314a8.03 8.03 0 0 1 2.2 6.72c-2.779.441-5.559 1.212-8.338 1.873a2.889 2.889 0 0 1-3.475-2.2 17.682 17.682 0 0 1 .811-4.848c.579 1.653 1.158 3.3 1.737 5.068.695-.331 1.506-.551 2.2-.881v-4.517h1.621c.232 1.322.463 2.754.695 4.076.926-.11 1.737-.22 2.664-.331-.116-1.652-.116-3.305-.116-4.957zm235.224 3.635a24.528 24.528 0 0 1 6.949-.881 11.169 11.169 0 0 1-4.053 3.195c-7.992 3.195-16.215 5.508-23.859 9.584.695 1.433 1.39 2.755 2.085 4.187-1.853-.331-4.054-.331-5.443-1.873a3.089 3.089 0 0 1 .115-4.627 18.561 18.561 0 0 1 4.17-2.2c6.6-2.424 13.2-5.178 20.036-7.382zm-121.029 5.729a21.484 21.484 0 0 1 2.9-1.873c-.116 2.975.926 5.619 2.2 8.263s.232 6.389-2.895 7.05c-2.664.882-5.1-.771-6.949-2.313-1.506 1.322-3.127 3.085-5.328 2.754-4.053-.22-6.022-4.957-5.211-8.483.347-2.313 2.2-3.745 3.822-5.178-.232 2.424-1.159 4.848-.58 7.271.464 1.653 2.433 1.653 3.822 2.2.464-2.644.579-5.4 1.274-8.153.232-1.432 1.969-1.542 2.9-2.2.231 2.314.116 4.627.811 6.83.579 1.653 2.548 2.2 3.937 2.975.695-3.195-.695-6.169-.695-9.144zM305.1 176c1.738 0 3.822-.33 5.212 1.1a16.016 16.016 0 0 1 4.4 15.313c-1.39-3.635-2.548-7.6-5.559-10.355-1.853-1.652-3.71-3.525-4.053-6.058zm239.737 13.881a14.985 14.985 0 0 1 2.895-2.424 17.881 17.881 0 0 0 2.085 7.712c1.158 2.423 1.158 6.279-1.738 7.381-2.663 1.212-5.443-.221-7.644-1.763-1.737 1.322-3.821 2.975-6.254 2.314-3.59-.772-5.1-4.958-4.517-8.263.232-2.424 2.317-3.966 3.938-5.508-.347 2.534-1.39 5.067-.695 7.6.579 1.653 2.548 1.322 3.938 1.653.463-2.865.232-5.839 1.39-8.483a11.861 11.861 0 0 1 2.895-1.542c.116 2.533-.347 5.288.927 7.6.811 1.432 2.548 1.542 3.938 1.983-.116-2.754-.927-5.508-1.159-8.262zm96.243 3.966a2.617 2.617 0 0 1 2.548-3.526c2.9 0 5.1 2.424 6.486 4.737 2.432 4.738 3.59 10.466 1.622 15.534-1.043-4.517-.927-10.246-5.1-13.22-1.853-1.1-4.054-1.763-5.56-3.525zm-159.943 9.915a5.338 5.338 0 0 1 5.212-1.433c2.316 2.2 1.853 6.17 0 8.483-3.359 4.407-8.918 6.5-14.361 6.5 3.358-1.983 7.18-3.085 10.192-5.618 1.389-.992 1.158-2.865 1.389-4.407-1.621.22-3.243.551-4.748.771a22.265 22.265 0 0 1 2.316-4.3zm77.829 3.415c1.043-.221 2.432-.882 3.127.22-.81 2.644-3.59 3.746-5.791 4.847-8.338 3.856-16.446 8.153-24.669 12.339-.347-.771-.81-1.432-1.158-2.2 4.633-3.415 9.729-5.949 14.709-8.7 4.633-2.314 9.034-4.848 13.782-6.5zm-156.932 6.5c.232-1.653 1.39-2.865 2.317-4.077 6.369 6.941 11.813 14.983 14.708 24.127 2.78 8.7 3.475 17.847 5.212 26.771.927 4.517 1.737 9.254 4.749 12.889 1.968 2.534 4.864 4.076 7.644 5.619.579-2.865 1.274-5.949 3.937-7.6 8.107-5.4 17.489-8.7 26.754-11.677-7.528-.221-15.172 0-22.7-.111-6.138-.11-12.277.441-18.3-.661.231-2.313.231-4.737 1.621-6.83 2.78-4.627 7.644-7.271 12.277-9.695a113.428 113.428 0 0 1 21.889-8.923c-1.969-2.093-4.98-4.407-4.169-7.822 1.39-3.966 4.864-7.932 9.265-7.822 4.865 0 9.613 1.983 13.782 4.407 2.548 1.652 5.675 3.415 6.6 6.5a11.511 11.511 0 0 1-2.548 5.949c-2.664 3.305-7.412 3.084-11.35 3.525-.232 2.644-.579 5.839-3.243 7.051a138.064 138.064 0 0 0-2.548-6.17c-9.613 1.763-18.183 6.72-25.711 12.669 21.31.111 42.505-.44 63.815-.33 1.39.11 2.779.22 4.169.441-.926 5.618-6.6 8.372-11.581 9.584-10.076 2.2-20.153 4.187-30.229 6.17-7.528 1.542-15.172 3.305-22 6.72a17.906 17.906 0 0 0-6.37 5.618 92.647 92.647 0 0 0 15.4 3.966c1.737.441 4.169.771 4.633 2.865.694 2.754.81 6.61-1.854 8.372-3.358.772-6.833 0-10.191-.55-9.266-1.433-18.184-6.28-23.511-14.212-4.054-5.729-5.212-12.89-6.254-19.72a66.174 66.174 0 0 1-8.8 10.576c-9.034 8.483-19.921 14.652-31.271 19.61-3.938 1.763-8.918 2.313-12.856-.11-2.779-1.653-3.822-5.068-4.98-7.932-10.539 5.4-21.31 10.576-33.008 12.779a111.33 111.33 0 0 1-21.773 2.2c3.822-1.873 7.759-3.305 11.581-4.847 12.74-5.288 25.248-11.237 37.525-17.627 1.506-.881 3.359-1.652 4.4-3.084 1.158-3.195 1.274-6.61 3.011-9.695a22.076 22.076 0 0 1 8.223-8.814c-2.2 4.848-4.516 9.805-5.211 15.093a112.433 112.433 0 0 0 20.731-15.754c1.621-1.762 3.938-3.966 3.011-6.61-1.158-3.745-3.127-7.05-4.517-10.686-2.084-5.288-4.632-10.8-4.053-16.635.115-1.873 1.5-3.305 2.432-4.737 5.1 3.3 8.339 8.7 11.234 13.881-1.042.22-2.2.44-3.243.661 1.969 5.4 5.212 10.245 6.138 15.974a14.976 14.976 0 0 1-3.474 12.559c-7.876 8.483-17.6 14.873-26.754 21.813 1.622.882 3.359 2.093 5.328 1.983 3.822-.11 7.528-1.432 11-2.864 12.74-5.619 23.164-14.983 33.935-23.686-2.664-10.356-7.412-20.05-12.393-29.525a19.652 19.652 0 0 1-2.432-11.567zm61.5 13.66a11.091 11.091 0 0 0 5.1 3.966c3.127.661 6.138-1.211 8.455-3.194-2.9-2.2-6.255-3.966-9.961-3.966-1.737 0-3.59 1.432-3.59 3.194zm-220.864-13.66a2.727 2.727 0 0 1 2.664-2.644c3.938-.441 6.717 2.754 9.149 5.288 1.274 1.322 2.317 3.084 1.506 4.957-.463 2.093-2.9 1.983-4.517 2.424-3.474.22-4.864 3.966-7.528 5.618-5.328 3.636-11.929 6.5-18.531 5.619 1.622-2.314 4.286-3.305 6.834-4.076 4.748-1.543 8.57-4.958 12.045-8.483-.927-2.864-2.085-5.729-1.622-8.7zm2.2.44a13.389 13.389 0 0 0 1.737 5.509 81.937 81.937 0 0 0 1.969-4.738 36.657 36.657 0 0 0-3.705-.771zm5.211 7.161c1.274-.11 2.548-.33 3.822-.44a17.649 17.649 0 0 0-1.274-4.848c-1.621 1.212-1.853 3.415-2.548 5.288z"
17
+ fill="#fff"
18
+ />
19
+ <path
20
+ d="M439.327 214.558a9.711 9.711 0 0 1 2.78-1.983c0 3.856 2.779 6.83 3.127 10.576.347 3.856-4.633 5.839-7.644 4.076-.926-.661-1.737-1.432-2.548-2.093-1.621 1.432-3.359 3.525-5.791 2.975-3.706-.661-5.675-4.958-4.98-8.483.348-2.424 2.316-3.966 4.054-5.4-.348 2.314-1.158 4.517-.927 6.941.232 1.763 2.2 2.314 3.59 3.085a48.835 48.835 0 0 0 1.622-8.373c.232-1.542 2.085-1.763 3.127-2.534.116 2.314 0 4.737.695 6.941.695 1.542 2.316 2.313 3.59 3.195 1.39-2.975-.579-5.949-.695-8.924zm-184.844 14.101c1.969-.881 4.054-1.983 6.255-2.2 2.084-.11 3.127 3.085 1.5 4.407-2.432 1.873-5.327 2.644-8.107 3.856-6.486 3.084-12.972 6.059-19.341 9.474-1.39.881-3.128.661-4.633.441a10.975 10.975 0 0 1 4.053-4.738c6.723-4.079 13.44-7.824 20.273-11.24zm243.563 3.416c.464-2.2 3.012-2.534 4.865-3.195.463 3.195.811 6.5 2.779 9.144-1.042.11-2.084.22-3.011.33-1.39 2.093-2.895 4.407-5.212 5.508-3.822 1.873-8.107 1.873-12.276 1.653 4.4-1.212 9.844-1.542 12.74-5.508 1.969-2.314-.116-5.288.115-7.932zm87.442 3.194c.579-1.762 2.664-1.762 4.17-1.542 3.243.551 5.559 3.305 7.644 5.619a4.338 4.338 0 0 1 .579 5.728c-2.085 1.653-5.444.661-7.3 2.865-5.559 6.389-14.129 10.466-22.7 9.584 1.622-2.313 4.285-3.305 6.949-4.076 4.749-1.542 8.455-5.068 11.929-8.483-.926-3.085-2.316-6.39-1.274-9.695zm2.2 1.322a25.272 25.272 0 0 0 1.39 5.839 24.707 24.707 0 0 0 2.084-4.737c-1.157-.441-2.431-.771-3.473-1.102zm6.717 2.424a34.2 34.2 0 0 0-1.621 4.847c1.274-.11 2.548-.33 3.822-.44a20.233 20.233 0 0 0-1.274-4.517c-.232 0-.694.11-.926.11zm-228.042-.33c2.2-2.094 6.138-.992 7.528 1.542.695 1.432-.811 2.534-1.39 3.635a15.8 15.8 0 0 0-3.59-1.872c-1.159-.331-1.506.991-1.854 1.762-1.389 3.3-2.084 6.831-3.127 10.246a28.519 28.519 0 0 0-2.663-6.059c-1.39-1.983-3.707-3.085-5.444-4.738-1.621-1.322.116-4.186 1.969-3.855 2.664.33 4.285 2.754 6.138 4.516.695-1.762 1.159-3.745 2.433-5.177zm-139.212 19.169a21.931 21.931 0 0 1 9.612-8.483 44.366 44.366 0 0 1-4.169 7.6c-1.158 1.763-1.158 3.856-1.274 5.839a49.825 49.825 0 0 0 7.991-1.1c-.695 2.093-1.5 4.406-3.474 5.618-2.2 1.432-5.328 2.534-7.644.661a8.857 8.857 0 0 1-1.042-10.135zm184.843 16.965c1.969-.33 4.286-1.211 6.023.221a3.668 3.668 0 0 1 .695 5.508c-2.432 1.322-5.559.551-7.644 2.424.347 2.864 2.548 5.178 3.011 7.932.116 1.763-1.274 3.195-2.084 4.627-.58-2.754-1.043-5.729-2.548-8.152-.927-1.763-2.317-3.526-1.854-5.619.464-2.314 2.9-3.415 4.633-4.517a14.443 14.443 0 0 1-.232-2.424zm88.832 3.416c.927-2.314 3.127-3.416 5.1-4.627-.811 1.872-2.2 3.745-2.432 5.838.926 1.653 2.432 2.865 3.243 4.628.231 2.864-3.938 3.305-5.444 1.542-1.737-1.983-1.5-5.068-.463-7.381zM479.4 275.04c3.243-1.1 6.717 0 9.613 1.652-2.085 4.3-6.949 5.4-10.54 8.042a9.2 9.2 0 0 1 .232 1.763c2.548.11 5.212.441 7.412-.881a34.305 34.305 0 0 1 9.15-3.636c-2.548 2.2-4.98 4.407-7.528 6.5-3.012 2.424-7.181 2.424-10.771 1.432-1.737-.55-3.938-2.093-3.359-4.3.927-2.754 3.706-4.187 5.907-5.839-1.622-.11-3.127-.22-4.749-.331 1.274-1.758 2.433-3.962 4.633-4.402zm83.967 7.822a2.378 2.378 0 0 1 1.506-3.746c3.127-.551 5.791 1.983 7.181 4.517a12.389 12.389 0 0 1 .231 11.567c-.579-2.533-.579-5.177-1.853-7.491-1.737-2.313-4.98-2.754-7.065-4.847zm52.465 1.652c4.286-1.542 8.571-3.525 13.2-3.085a8.414 8.414 0 0 1-4.285 3.856c-7.18 2.644-14.477 5.068-21.542 8.043a36.523 36.523 0 0 1-6.949 2.313c-.231-.661-.579-1.322-.81-1.983 6.485-3.746 13.434-6.39 20.383-9.144zm-13.997 141.514h-35.672v-3.382c1.611-1.393 3.8-3.283 3.8-4.377 0-1.89-4.487-5.769-5.523-5.769-1.151 0-5.523 3.979-5.523 5.769 0 1.194 1.956 2.885 3.567 4.277l.115.1v3.481H281.25c10.011 9.947 24.855 9.848 54.658 10.146 26.581.4 26.466.4 226.573 0v3.581c-1.611 1.393-3.567 3.283-3.567 4.377 0 1.89 4.257 5.769 5.523 5.769.806 0 3.452-2.188 4.833-4.078h12.312c.806 1.392 2.647 2.188 4.833 2.188a5.645 5.645 0 0 0 4.833-2.188h14.729a7.361 7.361 0 0 0 5.869 2.188c5.638-.2 6.9-3.083 6.9-13.03-.115-8.356-5.753-9.251-16.915-9.052zm2.531 16.81h-13.118a6.247 6.247 0 0 0-9.665 0H569.5a14.382 14.382 0 0 0-3.222-3.083v-3.581h38.2a11.008 11.008 0 0 0-.112 6.664z"
21
+ fill="#fff"
22
+ />
23
+ </svg>
@@ -0,0 +1,30 @@
1
+ <svg viewBox="0 0 800 400" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <defs>
3
+ <clipPath id="a">
4
+ <path d="M0 0h800v400H0z"/>
5
+ </clipPath>
6
+ </defs>
7
+ <g clip-path="url(#a)">
8
+ <path d="M0 400V0h800z" fill="#0051ba"/>
9
+ <path d="M0 400h800V0z" fill="#215b33"/>
10
+ <path d="M0 400L800 0" stroke="#fcd116" stroke-width="36"/>
11
+ <g transform="translate(140 120)">
12
+ <g fill="#fff" id="e">
13
+ <g id="d">
14
+ <g id="c">
15
+ <path d="M0-40V0h20z" id="b" transform="rotate(18 0 -40)"/>
16
+ <use transform="scale(-1 1)" xlink:href="#b"/>
17
+ </g>
18
+ <use transform="rotate(72)" xlink:href="#c"/>
19
+ </g>
20
+ <use transform="rotate(-72)" xlink:href="#c"/>
21
+ <use transform="rotate(144)" xlink:href="#d"/>
22
+ </g>
23
+ <g id="g" transform="rotate(40.6)">
24
+ <use id="f" transform="rotate(-40.6 -104 0)" x="-104" xlink:href="#e"/>
25
+ <use x="208" xlink:href="#f"/>
26
+ </g>
27
+ <use transform="scale(-1 1)" xlink:href="#g"/>
28
+ </g>
29
+ </g>
30
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg viewBox="0 0 900 450" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0,450H900V0H0z" fill="#d62828"/>
3
+ <path d="M0,450V0H600z" fill="#fcd856"/>
4
+ <path d="M0,450V0H300z" fill="#003f87"/>
5
+ <path d="M0,450H900V150z" fill="#fff"/>
6
+ <path d="M0,450H900V300z" fill="#007a3d"/>
7
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 12 6" xmlns="http://www.w3.org/2000/svg">
2
+ <rect height="6" width="12"/>
3
+ <rect fill="#FFF" height="4" width="12"/>
4
+ <rect fill="#D21034" height="2" width="12"/>
5
+ <polygon fill="#007229" points="0,0 4,3 0,6"/>
6
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 16 10" xmlns="http://www.w3.org/2000/svg">
2
+ <rect fill="#006aa7" height="10" width="16"/>
3
+ <rect fill="#fecc00" height="10" width="2" x="5"/>
4
+ <rect fill="#fecc00" height="2" width="16" y="4"/>
5
+ </svg>
@@ -0,0 +1,15 @@
1
+ <svg viewBox="0 0 4320 2880" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <rect fill="#ed2939" height="1440" width="4320"/>
3
+ <rect fill="#fff" height="1440" width="4320" y="1440"/>
4
+ <path d="M 1481.678,720 A 541.5,541.5 0 1 1 398.67798,720 A 541.5,541.5 0 1 1 1481.678,720 z" fill="#fff"/>
5
+ <path d="M 1651.835,720 A 511.73499,511.73499 0 1 1 628.36499,720 A 511.73499,511.73499 0 1 1 1651.835,720 z" fill="#ed2939"/>
6
+ <path
7
+ d="M 1007.1951,733.06439 L 933.63466,676.63425 L 860.09279,733.09117 L 888.40587,642.09687 L 814.61147,586.0053 L 905.6704,586.1981 L 933.6049,495.07467 L 961.56934,586.18798 L 1052.6282,585.96246 L 978.8522,642.0808 L 1007.1951,733.06439 z"
8
+ fill="#fff"
9
+ id="star"
10
+ />
11
+ <use transform="translate(577.18853,0)" xlink:href="#star"/>
12
+ <use transform="translate(288.88853,-214.21117)" xlink:href="#star"/>
13
+ <use transform="translate(107.99953,342.74883)" xlink:href="#star"/>
14
+ <use transform="translate(469.18853,342.74883)" xlink:href="#star"/>
15
+ </svg>
@@ -0,0 +1,15 @@
1
+ <svg viewBox="0 0 60 30" xmlns="http://www.w3.org/2000/svg">
2
+ <clipPath id="a">
3
+ <path d="M0 0v30h60V0z"/>
4
+ </clipPath>
5
+ <clipPath id="b">
6
+ <path d="M30 15h30v15zv15H0zH0V0zV0h30z"/>
7
+ </clipPath>
8
+ <g clip-path="url(#a)">
9
+ <path d="M0 0v30h60V0z" fill="#012169"/>
10
+ <path d="M0 0l60 30m0-30L0 30" stroke="#fff" stroke-width="6"/>
11
+ <path clip-path="url(#b)" d="M0 0l60 30m0-30L0 30" stroke="#C8102E" stroke-width="4"/>
12
+ <path d="M30 0v30M0 15h60" stroke="#fff" stroke-width="10"/>
13
+ <path d="M30 0v30M0 15h60" stroke="#C8102E" stroke-width="6"/>
14
+ </g>
15
+ </svg>
@@ -0,0 +1,30 @@
1
+ <svg viewBox="0 0 12 6" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <path d="M0 0h12v6H0z" fill="red"/>
3
+ <path d="M0 0h12v4H0z" fill="#005ce5"/>
4
+ <path d="M0 0h12v2H0z" fill="#fff"/>
5
+ <g transform="matrix(.021 0 0 .021 -.106 3.478)">
6
+ <path
7
+ d="M147.913-115.518c-.64 0-1.277.014-1.913.032-12.37.32-23.983 3.515-32.252 7.41l.001.012c-.904.378-1.79.757-2.632 1.136l2.842 44.519c1.97 23.264 17.131 36.81 33.976 42.128 16.846-5.319 32.006-18.864 33.975-42.128l2.827-44.378a64.852 64.852 0 0 0-2.632-1.277v-.011c-8.69-4.095-21.074-7.42-34.15-7.442l-.028-.001h-.014z"
8
+ fill="#005ce5"
9
+ fill-rule="evenodd"
10
+ />
11
+ <path
12
+ d="M147.934-84.712l-8.314 16.237-5.375-6.983-14.046 18.561c.254 1.153.552 2.265.878 3.35 1.568 2.648 4.583 5.67 8.449 5.67 3.068 0 6.136-2.454 9.204-2.454 3.068 0 6.136 2.455 9.204 2.455 3.068 0 6.136-2.455 9.205-2.455 3.068 0 6.136 2.455 9.204 2.455 3.831 0 6.825-2.967 8.406-5.597.338-1.115.64-2.263.902-3.448l-14.027-18.537-5.375 6.983zm-9.204 36.836c-3.068 0-6.136 2.454-9.204 2.454-2.428 0-4.514-.86-6.13-2.08a41.98 41.98 0 0 0 1.835 3.504c1.265.787 2.704 1.319 4.295 1.319 3.068 0 6.136-2.455 9.204-2.455 3.068 0 6.136 2.455 9.204 2.455 3.068 0 6.136-2.455 9.205-2.455 3.068 0 6.136 2.455 9.204 2.455 1.568 0 2.987-.52 4.24-1.289a42.193 42.193 0 0 0 1.835-3.491c-1.609 1.197-3.675 2.037-6.075 2.037-3.068 0-6.136-2.454-9.204-2.454-3.069 0-6.137 2.454-9.205 2.454-3.068 0-6.136-2.454-9.204-2.454zm0 5.197c-3.068 0-6.136 2.454-9.204 2.454-.667 0-1.3-.078-1.914-.196 5.307 7.091 12.549 11.838 20.316 14.567 7.751-2.725 14.982-7.475 20.286-14.555-.6.113-1.22.184-1.871.184-3.068 0-6.136-2.454-9.204-2.454-3.069 0-6.137 2.454-9.205 2.454-3.068 0-6.136-2.454-9.204-2.454z"
13
+ fill="#fff"
14
+ fill-rule="evenodd"
15
+ />
16
+ <g fill="#ffe500" id="b">
17
+ <path d="M134.094-109.56h6.96l-3.48 6.027" fill="#ffe500" fill-rule="evenodd" id="a"/>
18
+ <use height="300" transform="matrix(1 0 0 -1 0 -215.104)" width="600" xlink:href="#a"/>
19
+ </g>
20
+ <g fill="#ffe500">
21
+ <use height="300" transform="translate(20.72)" width="600" xlink:href="#b"/>
22
+ <use height="300" transform="translate(10.36 13.875)" width="600" xlink:href="#b"/>
23
+ </g>
24
+ </g>
25
+ <path
26
+ d="M3 1.052zm-.718.157a2.26 2.26 0 0 0-.055.023l.06.935c.041.489.36.773.713.885.354-.112.672-.396.714-.885l.059-.932a1.362 1.362 0 0 0-.055-.026l-.056.927a.947.947 0 0 1-.662.86.947.947 0 0 1-.662-.86z"
27
+ fill="red"
28
+ fill-rule="evenodd"
29
+ />
30
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg viewBox="0 0 22 16" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 0h22v16H0z" fill="#ba0c2f"/>
3
+ <g fill="#fff">
4
+ <path d="M6 0h4v16H6z"/>
5
+ <path d="M0 6h22v4H0z"/>
6
+ </g>
7
+ <g fill="#00205b">
8
+ <path d="M7 0h2v16H7z"/>
9
+ <path d="M0 7h22v2H0z"/>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,21 @@
1
+ <svg viewBox="0 0 900 600" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 0h900v600H0z" fill="#ee1c25"/>
3
+ <path d="M0 0h900v400H0z" fill="#0b4ea2"/>
4
+ <path d="M0 0h900v200H0z" fill="#fff"/>
5
+ <path
6
+ d="M393.479 141H146.358l-.847 8.059c-.184 1.752-4.511 43.971-4.511 136.69 0 43.563 14.726 82 43.77 114.23 20.349 22.585 46.923 41.6 81.242 58.129l3.9 1.881 3.906-1.881c34.32-16.53 60.9-35.544 81.246-58.129 29.044-32.234 43.771-70.667 43.771-114.23 0-92.718-4.328-134.938-4.512-136.69l-.844-8.059z"
7
+ fill="#fff"
8
+ />
9
+ <path
10
+ d="M269.917 450C220.577 426.234 150 379.062 150 285.749S154.461 150 154.461 150h230.915s4.463 42.437 4.463 135.749S319.261 426.234 269.917 450z"
11
+ fill="#ee1c25"
12
+ />
13
+ <path
14
+ d="M280.484 261.284c13.36.216 39.425.739 62.635-7.027 0 0-.613 8.306-.613 17.98s.613 17.982.613 17.982c-21.289-7.125-47.58-7.273-62.635-7.082v51.539h-21.1v-51.539c-15.055-.191-41.345-.043-62.635 7.082 0 0 .613-8.305.613-17.982s-.613-17.98-.613-17.98c23.21 7.766 49.275 7.243 62.635 7.027v-32.368c-12.177-.108-29.723.473-49.563 7.113 0 0 .613-8.305.613-17.982s-.613-17.981-.613-17.981c19.81 6.628 37.336 7.219 49.509 7.114-.626-20.5-6.6-46.332-6.6-46.332s12.289.959 17.2.959 17.2-.959 17.2-.959-5.969 25.835-6.6 46.33c12.174.106 29.7-.485 49.509-7.114 0 0-.613 8.305-.613 17.981s.613 17.982.613 17.982c-19.839-6.639-37.386-7.221-49.563-7.113v32.37z"
15
+ fill="#fff"
16
+ />
17
+ <path
18
+ d="M269.9 329.094c-24.852 0-38.163 34.469-38.163 34.469a30.466 30.466 0 0 0-27.661-16.344c-13.719 0-23.829 12.2-30.256 23.5 24.959 39.7 64.78 64.207 96.079 79.281 31.305-15.075 71.152-39.571 96.112-79.281-6.427-11.3-16.537-23.5-30.256-23.5a30.539 30.539 0 0 0-27.693 16.344s-13.308-34.469-38.162-34.469z"
19
+ fill="#0b4ea2"
20
+ />
21
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 9 6" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 0h9v6H0z" fill="#0072C6"/>
3
+ <path d="M0 0h9v4H0z" fill="#FFF"/>
4
+ <path d="M0 0h9v2H0z" fill="#1EB53A"/>
5
+ </svg>