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,1332 @@
1
+ <svg viewBox="0 0 1000 600" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <linearGradient id="a">
3
+ <stop offset="0" stop-color="#fbd55f"/>
4
+ <stop offset="1" stop-color="#cb8e32"/>
5
+ </linearGradient>
6
+ <radialGradient
7
+ cx="416.38"
8
+ cy="814.57"
9
+ gradientTransform="matrix(1 0 0 1.0057 0 -4.636)"
10
+ gradientUnits="userSpaceOnUse"
11
+ id="f"
12
+ r="7.422"
13
+ xlink:href="#a"
14
+ />
15
+ <radialGradient
16
+ cx="393.34"
17
+ cy="837.95"
18
+ gradientTransform="matrix(1 0 0 .99109 0 7.468)"
19
+ gradientUnits="userSpaceOnUse"
20
+ id="e"
21
+ r="7.506"
22
+ xlink:href="#a"
23
+ />
24
+ <radialGradient
25
+ cx="416.58"
26
+ cy="860.97"
27
+ gradientTransform="matrix(1 0 0 1.0082 0 -7.063)"
28
+ gradientUnits="userSpaceOnUse"
29
+ id="d"
30
+ r="7.422"
31
+ xlink:href="#a"
32
+ />
33
+ <radialGradient
34
+ cx="439.62"
35
+ cy="837.58"
36
+ gradientTransform="matrix(1 0 0 .98778 0 10.237)"
37
+ gradientUnits="userSpaceOnUse"
38
+ id="c"
39
+ r="7.506"
40
+ xlink:href="#a"
41
+ />
42
+ <radialGradient
43
+ cx="416.51"
44
+ cy="837.65"
45
+ gradientTransform="matrix(1 0 0 .98848 0 9.646)"
46
+ gradientUnits="userSpaceOnUse"
47
+ id="b"
48
+ r="11.146"
49
+ xlink:href="#a"
50
+ />
51
+ <radialGradient
52
+ cx="760.54"
53
+ cy="474.25"
54
+ gradientTransform="matrix(1 0 0 .99305 0 3.294)"
55
+ gradientUnits="userSpaceOnUse"
56
+ id="g"
57
+ r="12.039"
58
+ xlink:href="#a"
59
+ />
60
+ <radialGradient
61
+ cx="731.81"
62
+ cy="474.25"
63
+ gradientTransform="matrix(1 0 0 .99305 0 1.88)"
64
+ gradientUnits="userSpaceOnUse"
65
+ id="h"
66
+ r="12.039"
67
+ xlink:href="#a"
68
+ />
69
+ <radialGradient
70
+ cx="703.46"
71
+ cy="474.25"
72
+ gradientTransform="matrix(1 0 0 .99305 0 3.294)"
73
+ gradientUnits="userSpaceOnUse"
74
+ id="i"
75
+ r="12.039"
76
+ xlink:href="#a"
77
+ />
78
+ <radialGradient
79
+ cx="771.02"
80
+ cy="499.67"
81
+ gradientTransform="matrix(1 0 0 .991 0 4.502)"
82
+ gradientUnits="userSpaceOnUse"
83
+ id="j"
84
+ r="12.039"
85
+ xlink:href="#a"
86
+ />
87
+ <radialGradient
88
+ cx="742.68"
89
+ cy="499.67"
90
+ gradientTransform="matrix(1 0 0 .991 0 4.502)"
91
+ gradientUnits="userSpaceOnUse"
92
+ id="k"
93
+ r="12.039"
94
+ xlink:href="#a"
95
+ />
96
+ <radialGradient
97
+ cx="714.14"
98
+ cy="499.67"
99
+ gradientTransform="matrix(1 0 0 .991 0 4.502)"
100
+ gradientUnits="userSpaceOnUse"
101
+ id="l"
102
+ r="12.039"
103
+ xlink:href="#a"
104
+ />
105
+ <radialGradient
106
+ cx="772.18"
107
+ cy="526.29"
108
+ gradientTransform="matrix(1 0 0 .99305 0 3.655)"
109
+ gradientUnits="userSpaceOnUse"
110
+ id="m"
111
+ r="12.039"
112
+ xlink:href="#a"
113
+ />
114
+ <radialGradient
115
+ cx="745.39"
116
+ cy="525.29"
117
+ gradientTransform="matrix(1 0 0 .99305 0 3.648)"
118
+ gradientUnits="userSpaceOnUse"
119
+ id="n"
120
+ r="12.039"
121
+ xlink:href="#a"
122
+ />
123
+ <radialGradient
124
+ cx="716.86"
125
+ cy="525.29"
126
+ gradientTransform="matrix(1 0 0 .99305 0 3.648)"
127
+ gradientUnits="userSpaceOnUse"
128
+ id="o"
129
+ r="12.039"
130
+ xlink:href="#a"
131
+ />
132
+ <radialGradient
133
+ cx="768.04"
134
+ cy="552.78"
135
+ gradientTransform="matrix(1 0 0 .98916 0 5.991)"
136
+ gradientUnits="userSpaceOnUse"
137
+ id="p"
138
+ r="11.383"
139
+ xlink:href="#a"
140
+ />
141
+ <radialGradient
142
+ cx="741.28"
143
+ cy="552.78"
144
+ gradientTransform="matrix(1 0 0 .99234 0 4.237)"
145
+ gradientUnits="userSpaceOnUse"
146
+ id="q"
147
+ r="11.347"
148
+ xlink:href="#a"
149
+ />
150
+ <radialGradient
151
+ cx="714.26"
152
+ cy="552.78"
153
+ gradientTransform="matrix(1 0 0 .989 0 6.08)"
154
+ gradientUnits="userSpaceOnUse"
155
+ id="r"
156
+ r="11.385"
157
+ xlink:href="#a"
158
+ />
159
+ <radialGradient
160
+ cx="761.91"
161
+ cy="580.39"
162
+ gradientTransform="matrix(1 0 0 .99259 0 4.303)"
163
+ gradientUnits="userSpaceOnUse"
164
+ id="s"
165
+ r="10.886"
166
+ xlink:href="#a"
167
+ />
168
+ <radialGradient
169
+ cx="737.53"
170
+ cy="577.5"
171
+ gradientTransform="matrix(1 0 0 .99205 0 4.59)"
172
+ gradientUnits="userSpaceOnUse"
173
+ id="t"
174
+ r="10.886"
175
+ xlink:href="#a"
176
+ />
177
+ <radialGradient
178
+ cx="711.71"
179
+ cy="576.36"
180
+ gradientTransform="matrix(1 0 0 .99259 0 4.272)"
181
+ gradientUnits="userSpaceOnUse"
182
+ id="u"
183
+ r="10.886"
184
+ xlink:href="#a"
185
+ />
186
+ <radialGradient
187
+ cx="751.9"
188
+ cy="604.02"
189
+ gradientTransform="matrix(1 0 0 .98919 0 6.531)"
190
+ gradientUnits="userSpaceOnUse"
191
+ id="v"
192
+ r="10.462"
193
+ xlink:href="#a"
194
+ />
195
+ <radialGradient
196
+ cx="729.67"
197
+ cy="600.54"
198
+ gradientTransform="matrix(1 0 0 .99915 0 .513)"
199
+ gradientUnits="userSpaceOnUse"
200
+ id="w"
201
+ r="9.95"
202
+ xlink:href="#a"
203
+ />
204
+ <radialGradient
205
+ cx="706.08"
206
+ cy="597.51"
207
+ gradientTransform="matrix(1 0 0 .99726 0 1.636)"
208
+ gradientUnits="userSpaceOnUse"
209
+ id="x"
210
+ r="8.123"
211
+ xlink:href="#a"
212
+ />
213
+ <radialGradient
214
+ cx="741.9"
215
+ cy="625.39"
216
+ gradientTransform="matrix(1 0 0 .99915 0 .535)"
217
+ gradientUnits="userSpaceOnUse"
218
+ id="y"
219
+ r="9.95"
220
+ xlink:href="#a"
221
+ />
222
+ <radialGradient
223
+ cx="720.45"
224
+ cy="618.78"
225
+ gradientTransform="matrix(1 0 0 1.0069 0 -4.273)"
226
+ gradientUnits="userSpaceOnUse"
227
+ id="z"
228
+ r="8.345"
229
+ xlink:href="#a"
230
+ />
231
+ <radialGradient
232
+ cx="700.55"
233
+ cy="614.7"
234
+ gradientTransform="matrix(1 0 0 .99645 0 2.18)"
235
+ gradientUnits="userSpaceOnUse"
236
+ id="A"
237
+ r="7.03"
238
+ xlink:href="#a"
239
+ />
240
+ <radialGradient
241
+ cx="731.65"
242
+ cy="644.12"
243
+ gradientTransform="matrix(1 0 0 .99834 0 1.067)"
244
+ gradientUnits="userSpaceOnUse"
245
+ id="B"
246
+ r="9.333"
247
+ xlink:href="#a"
248
+ />
249
+ <radialGradient
250
+ cx="712.98"
251
+ cy="635.08"
252
+ gradientTransform="matrix(1 0 0 1.00597 0 -3.791)"
253
+ gradientUnits="userSpaceOnUse"
254
+ id="C"
255
+ r="7.792"
256
+ xlink:href="#a"
257
+ />
258
+ <radialGradient
259
+ cx="695.15"
260
+ cy="628.49"
261
+ gradientTransform="matrix(1 0 0 .99767 0 1.462)"
262
+ gradientUnits="userSpaceOnUse"
263
+ id="D"
264
+ r="6.64"
265
+ xlink:href="#a"
266
+ />
267
+ <radialGradient
268
+ cx="718.42"
269
+ cy="660.82"
270
+ gradientTransform="matrix(1 0 0 1.00252 0 -1.666)"
271
+ gradientUnits="userSpaceOnUse"
272
+ id="E"
273
+ r="8.623"
274
+ xlink:href="#a"
275
+ />
276
+ <radialGradient
277
+ cx="702.21"
278
+ cy="650.42"
279
+ gradientTransform="matrix(1 0 0 .999 0 .647)"
280
+ gradientUnits="userSpaceOnUse"
281
+ id="F"
282
+ r="7.301"
283
+ xlink:href="#a"
284
+ />
285
+ <radialGradient
286
+ cx="686.7"
287
+ cy="642.53"
288
+ gradientTransform="matrix(1 0 0 1.0069 0 -4.435)"
289
+ gradientUnits="userSpaceOnUse"
290
+ id="G"
291
+ r="6.091"
292
+ xlink:href="#a"
293
+ />
294
+ <radialGradient
295
+ cx="707.38"
296
+ cy="674.82"
297
+ gradientTransform="matrix(1 0 0 .9913 0 5.871)"
298
+ gradientUnits="userSpaceOnUse"
299
+ id="H"
300
+ r="7.953"
301
+ xlink:href="#a"
302
+ />
303
+ <radialGradient
304
+ cx="693.57"
305
+ cy="664.01"
306
+ gradientTransform="matrix(1 0 0 1.01302 0 -8.648)"
307
+ gradientUnits="userSpaceOnUse"
308
+ id="I"
309
+ r="6.615"
310
+ xlink:href="#a"
311
+ />
312
+ <radialGradient
313
+ cx="680.18"
314
+ cy="655.53"
315
+ gradientTransform="matrix(1 0 0 1.00534 0 -3.497)"
316
+ gradientUnits="userSpaceOnUse"
317
+ id="J"
318
+ r="5.651"
319
+ xlink:href="#a"
320
+ />
321
+ <radialGradient
322
+ cx="694.25"
323
+ cy="686.15"
324
+ gradientTransform="matrix(1 0 0 1.00986 0 -6.764)"
325
+ gradientUnits="userSpaceOnUse"
326
+ id="K"
327
+ r="6.753"
328
+ xlink:href="#a"
329
+ />
330
+ <radialGradient
331
+ cx="682.92"
332
+ cy="676.43"
333
+ gradientTransform="matrix(1 0 0 1.00582 0 -3.938)"
334
+ gradientUnits="userSpaceOnUse"
335
+ id="L"
336
+ r="5.721"
337
+ xlink:href="#a"
338
+ />
339
+ <radialGradient
340
+ cx="671.83"
341
+ cy="668.65"
342
+ gradientTransform="matrix(1 0 0 1.02442 0 -16.33)"
343
+ gradientUnits="userSpaceOnUse"
344
+ id="M"
345
+ r="4.779"
346
+ xlink:href="#a"
347
+ />
348
+ <radialGradient
349
+ cx="682.71"
350
+ cy="696.23"
351
+ gradientTransform="matrix(1 0 0 1.00802 0 -5.585)"
352
+ gradientUnits="userSpaceOnUse"
353
+ id="N"
354
+ r="6.282"
355
+ xlink:href="#a"
356
+ />
357
+ <radialGradient
358
+ cx="673.31"
359
+ cy="686.5"
360
+ gradientTransform="matrix(1 0 0 1.01694 0 -11.63)"
361
+ gradientUnits="userSpaceOnUse"
362
+ id="O"
363
+ r="5.292"
364
+ xlink:href="#a"
365
+ />
366
+ <radialGradient
367
+ cx="663.89"
368
+ cy="678.28"
369
+ gradientTransform="matrix(1 0 0 1.00862 0 -5.844)"
370
+ gradientUnits="userSpaceOnUse"
371
+ id="P"
372
+ r="4.489"
373
+ xlink:href="#a"
374
+ />
375
+ <radialGradient
376
+ cx="671.6"
377
+ cy="705.18"
378
+ gradientTransform="matrix(1 0 0 1.0059 0 -4.166)"
379
+ gradientUnits="userSpaceOnUse"
380
+ id="Q"
381
+ r="6.282"
382
+ xlink:href="#a"
383
+ />
384
+ <radialGradient
385
+ cx="662.2"
386
+ cy="695.65"
387
+ gradientTransform="matrix(1 0 0 1.01055 0 -7.342)"
388
+ gradientUnits="userSpaceOnUse"
389
+ id="R"
390
+ r="5.292"
391
+ xlink:href="#a"
392
+ />
393
+ <radialGradient
394
+ cx="654.58"
395
+ cy="687.37"
396
+ gradientTransform="matrix(1 0 0 1.01672 0 -11.49)"
397
+ gradientUnits="userSpaceOnUse"
398
+ id="S"
399
+ r="4.49"
400
+ xlink:href="#a"
401
+ />
402
+ <radialGradient
403
+ cx="646.03"
404
+ cy="696.48"
405
+ gradientTransform="matrix(1 0 0 1.02355 0 -16.403)"
406
+ gradientUnits="userSpaceOnUse"
407
+ id="T"
408
+ r="4.136"
409
+ xlink:href="#a"
410
+ />
411
+ <radialGradient
412
+ cx="653.02"
413
+ cy="704.68"
414
+ gradientTransform="matrix(1 0 0 1.00552 0 -3.892)"
415
+ gradientUnits="userSpaceOnUse"
416
+ id="U"
417
+ r="4.489"
418
+ xlink:href="#a"
419
+ />
420
+ <radialGradient
421
+ cx="660.59"
422
+ cy="713.14"
423
+ gradientTransform="matrix(1 0 0 1.0171 0 -12.2)"
424
+ gradientUnits="userSpaceOnUse"
425
+ id="V"
426
+ r="4.846"
427
+ xlink:href="#a"
428
+ />
429
+ <radialGradient
430
+ cx="637.01"
431
+ cy="705.72"
432
+ gradientTransform="matrix(1 0 0 1.01093 0 -7.714)"
433
+ gradientUnits="userSpaceOnUse"
434
+ id="W"
435
+ r="3.872"
436
+ xlink:href="#a"
437
+ />
438
+ <radialGradient
439
+ cx="642.62"
440
+ cy="712.94"
441
+ gradientTransform="matrix(1 0 0 1.01384 0 -9.865)"
442
+ gradientUnits="userSpaceOnUse"
443
+ id="X"
444
+ r="4.135"
445
+ xlink:href="#a"
446
+ />
447
+ <radialGradient
448
+ cx="649.42"
449
+ cy="720.03"
450
+ gradientTransform="matrix(1 0 0 1.0073 0 -5.25)"
451
+ gradientUnits="userSpaceOnUse"
452
+ id="Y"
453
+ r="4.405"
454
+ xlink:href="#a"
455
+ />
456
+ <radialGradient
457
+ cx="628.35"
458
+ cy="711.82"
459
+ gradientTransform="matrix(1 0 0 1.02676 0 -19.049)"
460
+ gradientUnits="userSpaceOnUse"
461
+ id="Z"
462
+ r="3.517"
463
+ xlink:href="#a"
464
+ />
465
+ <radialGradient
466
+ cx="633.37"
467
+ cy="718.62"
468
+ gradientTransform="matrix(1 0 0 1.02113 0 -15.183)"
469
+ gradientUnits="userSpaceOnUse"
470
+ id="aa"
471
+ r="3.871"
472
+ xlink:href="#a"
473
+ />
474
+ <radialGradient
475
+ cx="639.59"
476
+ cy="726.09"
477
+ gradientTransform="matrix(1 0 0 1.03175 0 -23.056)"
478
+ gradientUnits="userSpaceOnUse"
479
+ id="ab"
480
+ r="4.048"
481
+ xlink:href="#a"
482
+ />
483
+ <radialGradient
484
+ cx="621.03"
485
+ cy="717.31"
486
+ gradientTransform="matrix(1 0 0 1.01622 0 -11.635)"
487
+ gradientUnits="userSpaceOnUse"
488
+ id="ac"
489
+ r="3.417"
490
+ xlink:href="#a"
491
+ />
492
+ <radialGradient
493
+ cx="625.6"
494
+ cy="723.58"
495
+ gradientTransform="matrix(1 0 0 1.01891 0 -13.684)"
496
+ gradientUnits="userSpaceOnUse"
497
+ id="ad"
498
+ r="3.634"
499
+ xlink:href="#a"
500
+ />
501
+ <radialGradient
502
+ cx="629.94"
503
+ cy="730.32"
504
+ gradientTransform="matrix(1 0 0 1.0334 0 -24.397)"
505
+ gradientUnits="userSpaceOnUse"
506
+ id="ae"
507
+ r="3.904"
508
+ xlink:href="#a"
509
+ />
510
+ <radialGradient
511
+ cx="614.05"
512
+ cy="721.3"
513
+ gradientTransform="matrix(1 0 0 1.00982 0 -7.086)"
514
+ gradientUnits="userSpaceOnUse"
515
+ id="af"
516
+ r="3.053"
517
+ xlink:href="#a"
518
+ />
519
+ <radialGradient
520
+ cx="617.69"
521
+ cy="727.85"
522
+ gradientTransform="matrix(1 0 0 1.0159 0 -11.57)"
523
+ gradientUnits="userSpaceOnUse"
524
+ id="ag"
525
+ r="3.256"
526
+ xlink:href="#a"
527
+ />
528
+ <radialGradient
529
+ cx="621.24"
530
+ cy="734.22"
531
+ gradientTransform="matrix(1 0 0 1.00532 0 -3.906)"
532
+ gradientUnits="userSpaceOnUse"
533
+ id="ah"
534
+ r="3.473"
535
+ xlink:href="#a"
536
+ />
537
+ <radialGradient
538
+ cx="606.69"
539
+ cy="724.91"
540
+ gradientTransform="matrix(1 0 0 1.0049 0 -3.546)"
541
+ gradientUnits="userSpaceOnUse"
542
+ id="ai"
543
+ r="2.946"
544
+ xlink:href="#a"
545
+ />
546
+ <radialGradient
547
+ cx="609.28"
548
+ cy="730.85"
549
+ gradientTransform="matrix(1 0 0 1.01859 0 -13.586)"
550
+ gradientUnits="userSpaceOnUse"
551
+ id="aj"
552
+ r="3.122"
553
+ xlink:href="#a"
554
+ />
555
+ <radialGradient
556
+ cx="612.94"
557
+ cy="737.49"
558
+ gradientTransform="matrix(1 0 0 1.01562 0 -11.523)"
559
+ gradientUnits="userSpaceOnUse"
560
+ id="ak"
561
+ r="3.378"
562
+ xlink:href="#a"
563
+ />
564
+ <radialGradient
565
+ cx="600.03"
566
+ cy="728.91"
567
+ gradientTransform="matrix(1 0 0 1.0265 0 -19.31)"
568
+ gradientUnits="userSpaceOnUse"
569
+ id="al"
570
+ r="2.506"
571
+ xlink:href="#a"
572
+ />
573
+ <radialGradient
574
+ cx="602"
575
+ cy="734.39"
576
+ gradientTransform="matrix(1 0 0 .98882 0 8.212)"
577
+ gradientUnits="userSpaceOnUse"
578
+ id="am"
579
+ r="2.724"
580
+ xlink:href="#a"
581
+ />
582
+ <radialGradient
583
+ cx="604.74"
584
+ cy="740"
585
+ gradientTransform="matrix(1 0 0 1.00265 0 -1.96)"
586
+ gradientUnits="userSpaceOnUse"
587
+ id="an"
588
+ r="2.914"
589
+ xlink:href="#a"
590
+ />
591
+ <radialGradient
592
+ cx="685.79"
593
+ cy="453.08"
594
+ gradientTransform="matrix(1 0 0 .99658 1.768 2.964)"
595
+ gradientUnits="userSpaceOnUse"
596
+ id="ao"
597
+ r="8.107"
598
+ xlink:href="#a"
599
+ />
600
+ <g stroke-width="1.2">
601
+ <path d="M0 0h1000v600H0z" fill="#002b7f"/>
602
+ <path d="M0 100h1000v399.996H0z" fill="#fff"/>
603
+ <path d="M0 200.004h1000v200.004H0z" fill="#ce1126"/>
604
+ <ellipse cx="300.001" cy="300" fill="#fff" rx="75" ry="87.5"/>
605
+ </g>
606
+ <g transform="translate(235.939 234.475) scale(.15382)">
607
+ <g stroke="#000" stroke-linecap="round" stroke-linejoin="round">
608
+ <path d="M105.36 349.34l11-20.25-26-7.25-8 18zm622.24 0l-11-20.25 26-7.25 8 18z" fill="#cea849" stroke-width="3"/>
609
+ <path
610
+ d="M409.48 91.438l-40.094 1.157c-25.601 2.418-35.334 12.29-19.437 30.965-41.272 6.469-81.637 15.908-118.94 35.626-10.486-1.74-22.662 4.134-26.156 14.232-2.912 8.158 4.188 16.828 16.812 13.387-8.35 21.987-106.99 19.428-109.5 56.05 7.472-6.368 15.699-11.766 23.906-6.318l-5.656 17.11c-14.363 4.277-24.455 6.644-30.47 22.363-6.212 15.77-15.13 39.832-21.343 51.671-4.08 5.472-5.063 11.284-5.063 14.17 0 6.814 4.869 16.326 16.125 16.326 11.456 0 17.094-7.175 17.094-14.388-.666-5.02-2.644-10.912-14.75-10.228 20.321-4.871 37.886 1.953 49.687 9.477 16.306 12.038 20.387 35.38 10.875 54.58-9.323 18.654-33.013 29.543-68.344 15.764-28.736-11.292-57.644 3.484-67.156 29.151-43.293 117.15 32.408 212.17 118.22 267.58 89.304 57.703 105.21 73.418 129.09 101.62 24.07 28.155 47.37 60.398 82.312 60.398 5.437 0 10.682-1.56 15.344-4.097 21.995 0 23.424 8.208 52.937 8.727v.03c.512 0 1.004-.026 1.5-.03.492.004.962.03 1.47.03v-.03c29.544-.514 30.965-8.727 52.968-8.727 4.662 2.537 9.876 4.097 15.312 4.097 34.943 0 58.243-32.243 82.312-60.398 23.88-28.205 39.821-43.92 129.12-101.62 85.81-55.415 161.51-150.44 118.22-267.58-9.512-25.668-38.45-40.443-67.187-29.15-35.33 13.778-58.989 2.89-68.312-15.765-9.512-19.2-5.431-42.542 10.875-54.58 11.802-7.524 29.335-14.349 49.656-9.477-12.106-.684-14.053 5.209-14.719 10.228 0 7.213 5.638 14.388 17.094 14.388 11.257 0 16.094-9.512 16.094-16.327 0-2.885-.95-8.697-5.031-14.169-6.212-11.839-15.163-35.903-21.375-51.67-6.014-15.72-16.106-18.087-30.47-22.365l-5.624-17.109c8.207-5.448 16.434-.05 23.906 6.318-2.507-36.622-101.18-34.064-109.53-56.05 12.625 3.442 19.756-5.229 16.844-13.387-3.494-10.098-15.67-15.973-26.156-14.232-37.27-19.72-77.67-29.16-118.94-35.63 15.89-18.68 6.16-28.547-19.44-30.964l-40.094-1.157-7-.219-6.969.219z"
611
+ fill="#dca842"
612
+ stroke-width="3.001"
613
+ />
614
+ <g fill="none" stroke-width="3">
615
+ <path d="M365.36 93.093c38.572.12 30.016 46.144-5 48.25-43.149 5.035-96.201 3.62-125 15.5m-99 61.247c33.314-9.378 69.202-1.792 91-11.75s26.49-42.896 3-47.25"/>
616
+ <path d="M349.11 123.59c7.68-1.77 15.889-2.044 19.979-5.77 4.09-3.727 5.313-10.405-4.48-11.23m-142.989 80.5c7.161-12.05 4.837-20.454-4.518-14.67M467.6 93.093c-38.572.12-30.016 46.144 5 48.25 43.149 5.035 96.201 3.62 125 15.5m99 61.247c-33.314-9.378-69.202-1.792-91-11.75s-26.49-42.896-3-47.25"/>
617
+ <path d="M483.85 123.59c-7.68-1.77-15.889-2.044-19.979-5.77-4.09-3.727-5.312-10.405 4.48-11.23m142.979 80.5c-7.161-12.05-4.837-20.454 4.518-14.67M219.23 742.45c61.736 43.665 70.667 100.43 134.54 103.15"/>
618
+ <path d="M354.55 854.5c-37.662 8.11-62.318-12.363-92.023-56.818-15.15-22.4-54.94-53.9-122.89-96.38-106.78-66.66-138.42-182.91-103.67-246.66 8.543-15.676 30.48-21.857 43.099-18.346 32.811 8.852 87.947 0 88.141-53.159.194-29.917-24.268-64.879-55.912-64.879-19.224 0-29.511 6.38-34.556 13.154"/>
619
+ <path d="M349.89 831.9c0-2.918 2.52-5.984 6.212-5.984 3.688 0 6.988 3.264 6.988 7.32 0 8.9-5.05 13.697-15.725 11.57-8.737-1.73-12.619-11.176-8.93-20.67 3.687-9.643 16.111-15.626 29.505-9.643 13.4 6.182 11.843 26.654 7.187 38.275-2.719 6.725-8.156 12.363-14.756 16.022M613.72 742.45c-61.73 43.66-70.66 100.43-134.73 103.15"/>
620
+ <path d="M478.41 854.5c37.662 8.11 62.318-12.363 92.018-56.818 14.949-22.401 54.942-53.901 122.89-96.379 106.77-66.659 138.42-182.92 103.67-246.66-8.538-15.676-30.475-21.857-43.094-18.346-32.811 8.852-87.947 0-88.141-53.159-.194-29.917 24.268-64.879 55.911-64.879 19.219 0 29.511 6.38 34.556 13.154"/>
621
+ <path d="M495.88 830.52c0-26.456-44.843-34.764-79.205-34.764-34.168 0-79.205 8.308-79.205 34.764"/>
622
+ <path d="M483.07 831.9c0-2.918-2.52-5.984-6.212-5.984-3.688 0-6.988 3.264-6.988 7.32 0 8.9 5.05 13.697 15.725 11.57 8.737-1.73 12.619-11.176 8.93-20.67-3.687-9.643-16.111-15.626-29.505-9.643-13.4 6.182-11.843 26.654-7.187 38.275 2.719 6.725 8.156 12.363 14.756 16.022"/>
623
+ <path d="M460.16 857.17c-18.056 0-17.474 19.44-43.681 19.44-26.012 0-25.431-19.44-43.487-19.44"/>
624
+ </g>
625
+ </g>
626
+ <g stroke="#000" stroke-width="3">
627
+ <path d="M416.48 828.14c-12.812 0-12.812 19.035 0 19.035s13.006-19.035 0-19.035" fill="url(#b)"/>
628
+ <path d="M439.58 831.66c-7.957 0-7.957 11.828 0 11.828 7.962 0 8.156-11.828 0-11.828" fill="url(#c)"/>
629
+ <path d="M422.5 860.99c0-8.002-11.843-8.002-11.843 0 0 7.952 11.843 7.952 11.843 0" fill="url(#d)"/>
630
+ <path d="M393.38 843.89c7.957 0 7.957-11.878 0-11.878-7.962 0-8.156 11.878 0 11.878" fill="url(#e)"/>
631
+ <path d="M410.46 814.57c0 7.952 11.843 7.952 11.843 0s-11.843-7.952-11.843 0" fill="url(#f)"/>
632
+ </g>
633
+ <g id="ap" stroke="#000">
634
+ <path
635
+ d="M154.052 272.66c2.176.121 4.391.67 6.438 1.531 3.615 1.523 6.784 4.129 7.906 7.75.007.023.024.04.031.063 31.912 88.55 14.845 126.29-13.5 183.59-40.958 82.506-11.105 205.42 80.375 259.16 44.974 26.295 79.656 35.262 106.22 41.906 13.281 3.322 24.558 6.07 34.094 10.156 9.2 3.94 18.697 11 24.695 19.174-9.19.76-24.19 3.281-31.554 5.445-10.704-13.603-37.624-26.11-65.484-35.588-27.86-9.478-56.925-16.224-72.688-19.344h-.031c-51.284-14.874-99.1-48.249-135.12-90.656-38.135-44.889-57.625-106.35-50.094-167.97 1.687-14.102 7.292-22.719 15.28-27.406 7.99-4.687 18.097-5.486 28.813-4.78 19.477 1.123 38.56-4.195 56-14.939 22.488-13.845 31.704-38.325 31.344-64.906-.36-26.58-10.401-55.133-26.312-76.406-5.686-7.658-7.962-13.4-7.844-17.844.119-4.444 3.002-7.378 6.531-8.406a13.699 13.699 0 012.75-.5 16.09 16.09 0 012.156-.031z"
636
+ fill="#825123"
637
+ stroke-width="3"
638
+ />
639
+ <path d="M760.57 462.8c15.337 0 15.337 22.911 0 22.911s-15.531-22.911 0-22.911" fill="url(#g)" transform="matrix(-1 0 0 1 833.412 0)"/>
640
+ <path d="M731.84 461.38c15.337 0 15.337 22.911 0 22.911s-15.531-22.911 0-22.911" fill="url(#h)" transform="matrix(-1 0 0 1 833.412 0)"/>
641
+ <path d="M703.5 462.8c15.337 0 15.337 22.911 0 22.911s-15.531-22.911 0-22.911" fill="url(#i)" transform="matrix(-1 0 0 1 833.412 0)"/>
642
+ <path d="M771.06 488.24c15.337 0 15.337 22.862 0 22.862s-15.531-22.862 0-22.862" fill="url(#j)" transform="matrix(-1 0 0 1 833.412 0)"/>
643
+ <path d="M742.71 488.24c15.337 0 15.337 22.862 0 22.862s-15.531-22.862 0-22.862" fill="url(#k)" transform="matrix(-1 0 0 1 833.412 0)"/>
644
+ <path d="M714.17 488.24c15.337 0 15.337 22.862 0 22.862s-15.531-22.862 0-22.862" fill="url(#l)" transform="matrix(-1 0 0 1 833.412 0)"/>
645
+ <path d="M772.22 514.84c15.337 0 15.337 22.911 0 22.911s-15.531-22.911 0-22.911" fill="url(#m)" transform="matrix(-1 0 0 1 833.412 0)"/>
646
+ <path d="M745.43 513.84c15.337 0 15.337 22.911 0 22.911s-15.531-22.911 0-22.911" fill="url(#n)" transform="matrix(-1 0 0 1 833.412 0)"/>
647
+ <path d="M716.89 513.84c15.337 0 15.337 22.911 0 22.911s-15.531-22.911 0-22.911" fill="url(#o)" transform="matrix(-1 0 0 1 833.412 0)"/>
648
+ <path d="M768.14 542.02c14.368 0 14.368 21.52 0 21.52-14.557 0-14.751-21.52 0-21.52" fill="url(#p)" transform="matrix(-1 0 0 1 833.412 0)"/>
649
+ <path d="M741.35 542.02c14.363 0 14.363 21.52 0 21.52-14.562 0-14.562-21.52 0-21.52" fill="url(#q)" transform="matrix(-1 0 0 1 833.412 0)"/>
650
+ <path d="M714.37 542.02c14.368 0 14.368 21.52 0 21.52-14.562 0-14.756-21.52 0-21.52" fill="url(#r)" transform="matrix(-1 0 0 1 833.412 0)"/>
651
+ <path
652
+ d="M762.43 570.11c13.782.547 12.812 21.172-.97 20.575-13.786-.596-13.01-21.371.97-20.575"
653
+ fill="url(#s)"
654
+ transform="matrix(-1 0 0 1 833.412 0)"
655
+ />
656
+ <path
657
+ d="M738.05 567.22c13.782.596 12.812 21.172-.974 20.575-13.782-.547-13.006-21.122.974-20.575"
658
+ fill="url(#t)"
659
+ transform="matrix(-1 0 0 1 833.412 0)"
660
+ />
661
+ <path
662
+ d="M712.23 566.07c13.787.596 12.817 21.172-.97 20.575-13.781-.596-13.005-21.371.97-20.575"
663
+ fill="url(#u)"
664
+ transform="matrix(-1 0 0 1 833.412 0)"
665
+ />
666
+ <path
667
+ d="M752.61 594.2c13.205.994 11.843 20.575-1.357 19.631-13.2-.795-12.037-20.575 1.357-19.631"
668
+ fill="url(#v)"
669
+ transform="matrix(-1 0 0 1 833.412 0)"
670
+ />
671
+ <path
672
+ d="M730.29 591.12c12.619.745 11.262 19.581-1.163 18.836-12.619-.795-11.456-19.631 1.163-18.836"
673
+ fill="url(#w)"
674
+ transform="matrix(-1 0 0 1 833.412 0)"
675
+ />
676
+ <path
677
+ d="M706.61 589.93c10.094.596 9.12 15.953-.974 15.158-10.094-.596-9.319-15.705.974-15.158"
678
+ fill="url(#x)"
679
+ transform="matrix(-1 0 0 1 833.412 0)"
680
+ />
681
+ <path
682
+ d="M742.52 615.97c12.619.745 11.262 19.581-1.163 18.836-12.619-.795-11.456-19.631 1.163-18.836"
683
+ fill="url(#y)"
684
+ transform="matrix(-1 0 0 1 833.412 0)"
685
+ />
686
+ <path
687
+ d="M720.97 610.9c10.487.795 9.319 16.5-.97 15.755-10.485-.795-9.512-16.5.97-15.755"
688
+ fill="url(#z)"
689
+ transform="matrix(-1 0 0 1 833.412 0)"
690
+ />
691
+ <path
692
+ d="M700.97 608.22c8.737.348 7.763 13.568-.775 12.971-8.737-.398-7.962-13.568.775-12.971"
693
+ fill="url(#A)"
694
+ transform="matrix(-1 0 0 1 833.412 0)"
695
+ />
696
+ <path
697
+ d="M733.59 635.55c11.456 2.535 7.574 19.83-3.881 17.096-11.456-2.535-7.57-19.581 3.881-17.096"
698
+ fill="url(#B)"
699
+ transform="matrix(-1 0 0 1 833.412 0)"
700
+ />
701
+ <path
702
+ d="M714.56 628c9.512 2.137 6.212 16.5-3.106 14.164-9.513-2.137-6.406-16.5 3.106-14.164"
703
+ fill="url(#C)"
704
+ transform="matrix(-1 0 0 1 833.412 0)"
705
+ />
706
+ <path
707
+ d="M696.51 622.58c7.962 1.74 5.243 13.767-2.719 11.828-7.956-1.74-5.238-13.767 2.719-11.828"
708
+ fill="url(#D)"
709
+ transform="matrix(-1 0 0 1 833.412 0)"
710
+ />
711
+ <path
712
+ d="M721.16 653.24c10.099 3.479 4.662 18.836-5.437 15.158-10.094-3.529-4.85-18.836 5.437-15.158"
713
+ fill="url(#E)"
714
+ transform="matrix(-1 0 0 1 833.412 0)"
715
+ />
716
+ <path
717
+ d="M704.47 644.1c8.543 2.932 3.881 15.755-4.468 12.624-8.538-2.883-4.075-15.705 4.468-12.624"
718
+ fill="url(#F)"
719
+ transform="matrix(-1 0 0 1 833.412 0)"
720
+ />
721
+ <path
722
+ d="M688.55 637.34c6.988 2.286 3.3 12.971-3.688 10.437-6.992-2.485-3.3-13.17 3.688-10.437"
723
+ fill="url(#G)"
724
+ transform="matrix(-1 0 0 1 833.412 0)"
725
+ />
726
+ <path
727
+ d="M710.49 668.2c8.93 4.075 2.719 17.444-6.212 13.17-8.931-3.877-2.719-17.246 6.212-13.17"
728
+ fill="url(#H)"
729
+ transform="matrix(-1 0 0 1 833.412 0)"
730
+ />
731
+ <path
732
+ d="M696.12 658.46c7.38 3.33 2.137 14.562-5.045 11.083-7.38-3.28-2.33-14.562 5.045-11.083"
733
+ fill="url(#I)"
734
+ transform="matrix(-1 0 0 1 833.412 0)"
735
+ />
736
+ <path
737
+ d="M682.34 650.91c6.212 2.932 1.744 12.027-4.274 9.294-6.212-2.883-1.938-12.226 4.274-9.294"
738
+ fill="url(#J)"
739
+ transform="matrix(-1 0 0 1 833.412 0)"
740
+ />
741
+ <path
742
+ d="M697.09 680.63c7.38 3.678 1.556 14.91-5.626 11.033-7.38-3.678-1.75-14.91 5.626-11.033"
743
+ fill="url(#K)"
744
+ transform="matrix(-1 0 0 1 833.412 0)"
745
+ />
746
+ <path
747
+ d="M685.25 671.88c6.212 3.081 1.357 12.425-4.662 9.095-6.212-3.081-1.357-12.425 4.662-9.095"
748
+ fill="url(#L)"
749
+ transform="matrix(-1 0 0 1 833.412 0)"
750
+ />
751
+ <path
752
+ d="M673.79 664.87c5.05 2.733.97 10.288-3.881 7.604-5.05-2.535-1.168-10.486 3.881-7.604"
753
+ fill="url(#M)"
754
+ transform="matrix(-1 0 0 1 833.412 0)"
755
+ />
756
+ <path
757
+ d="M685.83 691.46c6.406 4.075 0 13.816-6.212 9.542-6.407-4.075-.194-13.816 6.212-9.542"
758
+ fill="url(#N)"
759
+ transform="matrix(-1 0 0 1 833.412 0)"
760
+ />
761
+ <path
762
+ d="M675.93 682.57c5.238 3.479 0 11.431-5.243 7.952-5.243-3.479 0-11.68 5.243-7.952"
763
+ fill="url(#O)"
764
+ transform="matrix(-1 0 0 1 833.412 0)"
765
+ />
766
+ <path d="M666.03 674.96c4.468 2.932 0 9.542-4.27 6.61-4.462-2.882 0-9.492 4.27-6.61" fill="url(#P)" transform="matrix(-1 0 0 1 833.412 0)"/>
767
+ <path
768
+ d="M674.73 700.43c6.406 4.274 0 13.767-6.212 9.492-6.407-4.075-.194-13.767 6.212-9.492"
769
+ fill="url(#Q)"
770
+ transform="matrix(-1 0 0 1 833.412 0)"
771
+ />
772
+ <path
773
+ d="M664.83 691.66c5.238 3.529 0 11.48-5.243 7.952-5.243-3.479 0-11.431 5.243-7.952"
774
+ fill="url(#R)"
775
+ transform="matrix(-1 0 0 1 833.412 0)"
776
+ />
777
+ <path d="M656.71 684.11c4.463 2.932 0 9.492-4.274 6.61-4.463-2.932 0-9.741 4.274-6.61" fill="url(#S)" transform="matrix(-1 0 0 1 833.412 0)"/>
778
+ <path d="M647.98 693.4c4.075 2.535 0 8.747-3.886 6.212-4.076-2.683 0-8.896 3.886-6.212" fill="url(#T)" transform="matrix(-1 0 0 1 833.412 0)"/>
779
+ <path d="M655.16 701.4c4.463 2.883 0 9.492-4.27 6.56-4.467-2.882 0-9.492 4.27-6.56" fill="url(#U)" transform="matrix(-1 0 0 1 833.412 0)"/>
780
+ <path d="M662.92 709.55c4.85 3.28 0 10.486-4.662 7.157-4.855-3.082 0-10.487 4.662-7.157" fill="url(#V)" transform="matrix(-1 0 0 1 833.412 0)"/>
781
+ <path d="M638.85 702.94c3.688 2.535 0 7.952-3.688 5.616-3.692-2.535 0-8.15 3.688-5.616" fill="url(#W)" transform="matrix(-1 0 0 1 833.412 0)"/>
782
+ <path d="M644.57 709.92c4.075 2.733 0 8.747-3.881 6.014-4.08-2.684 0-8.698 3.881-6.014" fill="url(#X)" transform="matrix(-1 0 0 1 833.412 0)"/>
783
+ <path d="M651.55 716.84c4.274 2.684 0 9.294-4.27 6.411-4.273-2.932 0-9.343 4.27-6.411" fill="url(#Y)" transform="matrix(-1 0 0 1 833.412 0)"/>
784
+ <path d="M630 709.28c3.3 2.137 0 7.405-3.3 5.07-3.3-2.138 0-7.356 3.3-5.07" fill="url(#Z)" transform="matrix(-1 0 0 1 833.412 0)"/>
785
+ <path d="M635.21 715.78c3.688 2.535 0 8.15-3.688 5.666-3.687-2.535 0-8.15 3.688-5.666" fill="url(#aa)" transform="matrix(-1 0 0 1 833.412 0)"/>
786
+ <path
787
+ d="M641.53 723.19c3.881 2.535 0 8.747-3.881 5.815-3.882-2.535 0-8.747 3.881-5.815"
788
+ fill="url(#ab)"
789
+ transform="matrix(-1 0 0 1 833.412 0)"
790
+ />
791
+ <path
792
+ d="M622.74 714.97c3.106 2.336-.393 7.008-3.499 4.672-2.912-2.336.393-7.008 3.499-4.672"
793
+ fill="url(#ac)"
794
+ transform="matrix(-1 0 0 1 833.412 0)"
795
+ />
796
+ <path d="M627.45 721.07c3.3 2.535-.388 7.554-3.688 5.02-3.3-2.485.388-7.555 3.688-5.02" fill="url(#ad)" transform="matrix(-1 0 0 1 833.412 0)"/>
797
+ <path
798
+ d="M631.97 727.58c3.494 2.733-.388 8.35-4.075 5.467-3.494-2.733.387-8.35 4.075-5.467"
799
+ fill="url(#ae)"
800
+ transform="matrix(-1 0 0 1 833.412 0)"
801
+ />
802
+ <path d="M615.7 719.44c2.525 2.137-.775 6.063-3.3 3.727-2.52-2.335.78-6.013 3.3-3.727" fill="url(#af)" transform="matrix(-1 0 0 1 833.412 0)"/>
803
+ <path
804
+ d="M619.58 725.92c2.525 2.286-.97 6.56-3.688 3.877-2.718-2.336.97-6.61 3.688-3.877"
805
+ fill="url(#ag)"
806
+ transform="matrix(-1 0 0 1 833.412 0)"
807
+ />
808
+ <path
809
+ d="M623.18 732.05c2.912 2.733-.97 7.008-3.881 4.274-2.913-2.485.969-6.958 3.881-4.274"
810
+ fill="url(#ah)"
811
+ transform="matrix(-1 0 0 1 833.412 0)"
812
+ />
813
+ <path d="M608.34 723.22c2.33 2.137-.97 5.616-3.3 3.479-2.33-2.336.97-5.815 3.3-3.479" fill="url(#ai)" transform="matrix(-1 0 0 1 833.412 0)"/>
814
+ <path
815
+ d="M611.02 729c2.525 2.535-.97 6.212-3.494 3.678-2.524-2.336.97-6.213 3.494-3.678"
816
+ fill="url(#aj)"
817
+ transform="matrix(-1 0 0 1 833.412 0)"
818
+ />
819
+ <path
820
+ d="M614.9 735.44c2.719 2.733-1.163 6.809-3.881 4.075-2.719-2.534.974-6.808 3.881-4.075"
821
+ fill="url(#ak)"
822
+ transform="matrix(-1 0 0 1 833.412 0)"
823
+ />
824
+ <path
825
+ d="M601.5 727.58c1.744 1.938-1.168 4.672-2.912 2.733-1.75-1.938.969-4.87 2.912-2.733"
826
+ fill="url(#al)"
827
+ transform="matrix(-1 0 0 1 833.412 0)"
828
+ />
829
+ <path
830
+ d="M603.61 732.94c1.943 2.137-1.163 5.02-3.3 2.883-1.744-2.137 1.168-5.02 3.3-2.883"
831
+ fill="url(#am)"
832
+ transform="matrix(-1 0 0 1 833.412 0)"
833
+ />
834
+ <path
835
+ d="M606.49 738.49c2.132 2.336-1.362 5.417-3.499 3.131-2.132-2.336 1.362-5.666 3.499-3.131"
836
+ fill="url(#an)"
837
+ transform="matrix(-1 0 0 1 833.412 0)"
838
+ />
839
+ <path d="M687.6 446.92c10.094 0 10.094 15.158 0 15.158s-10.288-15.158 0-15.158" fill="url(#ao)" transform="matrix(-1 0 0 1 833.412 0)"/>
840
+ </g>
841
+ <use height="500" transform="matrix(-1 0 0 1 832.957 0)" width="833.333" xlink:href="#ap"/>
842
+ <path
843
+ d="M182.15 433.08c11.262-37.473 16.893-85.632.974-148.3 70.081-45.226 119.39-86.576 233.55-86.576 113.96 0 167.73 31.41 233.55 86.576-15.725 62.671-10.094 110.63.97 148.3h-469.42"
844
+ fill="#89c5e3"
845
+ stroke="#000"
846
+ />
847
+ <path
848
+ d="M235.5 341.84l-5.22 56.66c-.051.007-.105-.008-.156 0l-20.12-56.16 9.687 59.312c-.072.033-.147.06-.219.094l-22.47-29.65 13.5 35.25-16.5-11.5 10.031 18.812c-.09.129-.192.245-.28.375l-11.75-1.438 7.28 10.22a38.86 38.86 0 00-2.28 13.17c0 .213.06.411.063.624h77.625c.003-.213.062-.41.062-.625 0-4.637-.791-9.095-2.28-13.219l15.29-14.67-19.25 6.72c-.156-.24-.309-.483-.47-.719 2.958-3.633 31.908-39.25 30.72-39.25-1.229 0-36.6 30.34-37.844 31.406l-.188-.156 27.781-61.5-38.438 55.188c-.126-.05-.248-.108-.375-.156l11.32-58.28-20.25 56-5.25-56.5z"
849
+ fill="#fcdd09"
850
+ />
851
+ <path
852
+ d="M181.82 433.08c-6.212 20.774-13.975 38.467-20.769 53.576-17.668 39.809-21.356 132.4 43.874 197.85 96.873 96.863 170.65 57.85 207.73 110.63h7.57c37.08-52.78 110.85-13.767 207.73-110.63 65.23-65.454 61.735-158.04 43.873-197.85-6.6-14.959-14.562-32.801-20.774-53.576h-469.42"
853
+ fill="#0f47af"
854
+ stroke="#000"
855
+ />
856
+ <path
857
+ d="M323.62 343.97c-1.122-5.432-13.795-4.388-12.875-13.125-8.429-1.344-6.858-16.406 8.875-15.375 1.657-2.99 20.674-9.835 18.375-.375 9.544-8.316 16.457-.702 11.125 3 3.682 3.687 5.54 12.114-5.75 11.375 4.32 7.685-5.712 7.399-12.375 5.25.164 2.911-.332 5.217-4.125 4.5-2.394 1.618-.582 3.704-.25 5.625zm174.6 5.93c.107-6.855-12.811-4.763-12.33-12.57-7.012-1.075-5.993-15.596 8.5-14.724-.808-4.194 19.513-9.577 17.596-.36 7.079-7.505 14.066-.489 9.78 2.874 3.526 3.53 7.806 9.601-4.632 10.894 5.013 4.86-5.47 7.085-11.851 5.028.157 2.788-1.693 3.746-5.326 3.06-2.292 1.55.818 4.796 1.136 6.636l-2.873-.838zm100.68 23.69c1.202-5.19-10.656-4.731-10.349-10.643-5.387-.814-4.605-11.809 6.53-11.149-.62-3.176 13.868-8.502 12.896-.772 5.439-5.683 11.432.13 8.139 2.675 2.71 2.674 5.998 7.27-3.559 8.249 3.852 3.68-4.203 5.365-9.105 3.807.12 2.11-.55 2.461-3.342 1.942-1.762 1.173 2.128 4.007 2.372 5.4l-3.582.49z"
858
+ fill="#fff"
859
+ />
860
+ <path
861
+ d="M-308.88 472.49c2.912-15.158 15.337-29.124 16.699-40.952 1.163-10.685 3.3-15.158 9.512-26.39 6.213-11.282 8.733-16.5 10.094-24.303 1.939-10.089 9.513-12.226 13.006-1.938 3.3 10.288 9.9 36.13 13.394 42.145 3.3 6.013 6.8 14.363 6.213 18.438-.582 4.075 4.468 5.616 7.38 8.548 2.913 2.733 3.3 12.226 11.843 20.377 8.538 8.15 18.051 13.965 26.012 18.04 7.182 16.153 12.037 40.605 10.87 68.536h-533.29c-.195-7.356 0-14.562.387-21.52 47.368-12.226 65.036-43.487 85.03-41.35 10.874-15.158 24.074-31.46 33.199-39.81 10.869-9.89 32.225-49.3 37.662-73.405 5.437-23.856 13.394-36.678 19.412-35.336 6.018 1.392 8.543 2.535 15.725 24.104 9.905 29.67 16.699 33.199 24.268 54.52 6.6 18.488 20.387 51.637 41.548 68.933 13.2-9.89 28.343-20.973 33.194-28.726 4.08-6.809 10.293-17.295 17.668-22.315 3.3-9.89 7.569-27.583 11.068-31.857 3.3-3.877 4.657-7.753 5.044-14.562.194-6.809 5.437-21.172 12.62-33.2 7.186-11.827 16.698-15.704 20.967 0 4.076 15.756 13.588 48.756 22.52 69.33 3.687 8.55 10.486 25.397 25.43 43.09l1.614 1.906c.303-.53.607-.926.911-2.304z"
862
+ fill="#509164"
863
+ stroke="#000"
864
+ stroke-width=".999"
865
+ transform="matrix(1.00186 0 0 1 867.911 0)"
866
+ />
867
+ <g fill="#034418">
868
+ <path
869
+ d="M497.202 528.38c-9.919-9.542-25.673-7.405-33.645-14.959-7.782-7.356-20.23-2.336-47.073-15.904-3.307-1.74-6.613-3.876-9.919-6.411-21.201-17.295-35.008-50.494-41.62-68.933-7.394-21.172-14.395-24.651-24.314-54.57-5.252-15.904-8.17-20.774-11.67-22.514 9.142 9.94 4.282 25.446 11.67 42.145 2.918 6.61-1.946 6.61-3.5 4.473-1.36-2.137-5.835-3.131-7.976-2.932 3.893 3.33 4.476 11.679 8.364 20.377 3.695 8.747-2.917 7.802 5.06 20.228 2.135 3.478 2.917 8.697-.195 10.834-3.306 1.938-5.641-6.014-10.506-3.28 1.364 3.13 7 8.746 10.7 12.026 3.694 3.33.194 5.07-2.724 3.529-3.112-1.59-7.2-3.131-9.336-4.87 0 2.534 3.112 5.417 7.389 9.293 4.476 3.728 1.558 6.411-8.753 6.411 1.558 2.336.976 8.151-3.695 8.946 6.418.398 11.283 12.226 19.255 13.021 7.782.547 8.56 6.014.976 7.356-7.588 1.342-22.954-10.884-30.537-18.836-1.947 2.733-6.03 3.876-8.948 2.336-.194 3.677.971 12.624 4.472 18.438-3.695-1.541-8.554-6.412-13.42-12.425-4.665-5.616-7.777 2.733-3.694 7.753 4.083 5.069 6.807 9.144.194 13.02-6.418 3.678-10.501 2.336-15.365-4.472-6.807 5.665-9.53 6.013-14.784 5.069 0 3.28-5.641 11.083-8.165 16.898-5.642 11.232 250.125 34.541 242.931 7.356"
870
+ />
871
+ <path
872
+ d="M681.164 530.1c-67.298-5.864-104.444-31.857-125.454-56.707-14.976-17.494-21.783-34.541-25.478-43.089-8.947-20.575-18.477-53.576-22.56-69.33-1.365-5.218-3.307-8.35-5.642-9.492-3.5-1.74-1.753 4.274.777 7.355 2.723 2.932 2.529 5.666-.971 3.529-3.5-1.939-5.253 1.938-1.947 6.759 3.112 4.671 7.976 10.139 8.947 15.357.976 5.069 1.365 9.492 3.889 12.027 2.335 2.534-6.418 3.13-10.113-2.883-.194 3.877.976 9.493 3.5 8.896 2.336-.397 3.113 1.74-.194 7.604-3.306 5.616-2.917 7.555-1.747 10.09 1.747 3.876 6.224-11.48 8.947-2.734 1.36 4.075 3.695 9.144 5.83 12.425 2.142 3.13 1.948 5.07-1.164 5.07s-5.836-7.804-6.224-1.194c-.194 6.412 4.864 8.549 10.113 8.151 5.058-.199 5.835 1.74 5.058 4.473-.582 2.733 1.554 5.417 4.472 4.87 2.723-.795 7.005 1.74 9.336 8.35 2.335 6.61-1.554 9.492-7.195 4.82-5.642-4.82-13.808-9.094-14.59-12.623-.582-3.082-2.917 1.391-.388 5.665 2.335 4.274 3.695 6.213 6.807 7.952 3.112 1.54-.194 7.952-5.442 3.877-5.06-3.877-7.394-2.933-8.948 1.54-2.53 7.207-10.113 5.467-7.782 9.344 2.335 3.876 1.364 10.089-2.137 11.63-3.699 1.54-7.976-.746-7.588-7.555-.97 1.342-4.665 1.939-7.583 1.144-.388 9.542-3.112 12.822-8.948 10.288-.194 2.137-.388 5.814-3.306 8.548 6.418-.945 7.778 3.479 8.36 6.212.394 2.734 1.365 2.336 5.06 2.734 3.5.198 7.976 4.82 1.363 3.677-6.617-.944-16.924 1.342-22.953-3.081 6.224 5.616 23.924 5.815 31.314 12.97 53.88 22.167 148.797 29.92 186.326 19.632.195-4.473-.388-14.761-.776-18.041"
873
+ />
874
+ <path d="M603.028 372.77c1.554.745 3.112 2.883 4.472 6.212 3.306 10.288 9.918 36.082 13.424 42.095 3.306 6.014 6.806 14.363 6.224 18.438-.588 4.076 4.471 5.666 7.389 8.549 2.918 2.733 3.306 12.226 11.865 20.377 8.559 8.15 18.09 14.015 26.06 18.09 4.865 10.834 8.56 25.396 10.113 42.493-22.949-1.74-51.733-8.549-66.128-14.96.583-2.136.583-4.82-.194-8.895-.971-4.076-.194-7.207 4.083-11.083 4.282-3.877 2.918-10.487.587-14.164-2.335-3.48-2.14-5.616-.199-7.753 1.753-1.939 1.753-5.467-2.33-9.344-4.282-3.876-1.364-7.952.97-11.43 2.336-3.53 5.836-9.543 3.307-17.296-2.53-7.554-6.418 1.74-9.53-1.143-1.947-1.988-3.112-5.666-.971-8.747 2.136-2.932.777-8.548-1.753-12.822 5.642-1.54-3.888-18.041-5.447-25.048-1.553-7.008 1.753-10.486-1.942-13.22"/>
875
+ </g>
876
+ <path
877
+ d="M358.313 435.81c0 3.678-.97 8.946-1.946 10.685 2.335 3.678 5.447 11.232 5.058 13.568 3.112-2.882 9.142-.596 10.502 7.405 1.364 8.15 2.724 15.705 1.947 20.178 2.723 2.336 8.559 6.411 9.53 10.884.97 4.274 3.889 3.678 6.806 3.28 9.142-1.342 8.365 9.692 17.896 8.15 13.419-1.937 5.059 8.748 18.477 8.35 7.778-.397 18.477 1.143 23.925 8.747 6.024-8.15 11.278-5.069 16.725-2.932 5.447 1.938 12.253 1.392 6.224-2.882-6.224-4.473-18.478-5.07-23.925-3.728-5.447 1.392-13.613.398-19.255-4.622-5.447-5.07-14.976-9.343-20.812-9.542-5.836-.199-7.195-.547-11.666-7.157-4.282-6.41-11.283-5.665-14.784-6.013-3.306-.2-5.835-4.473-1.946-8.548 5.641-6.014-2.336-6.81.582-10.487 2.918-3.678 1.365-8.549-6.418-9.145-7.777-.596-4.86-3.082-3.694-8.548 2.723-12.971-14.784-10.834-13.42-17.047m305.562 69.284c.777-7.952-5.253-11.232-6.612-17.295-1.165-6.014-10.7-6.212-13.225-4.423.971 1.74 0 4.82-1.17 6.56-1.165 1.59-1.165 2.535 1.17 3.33 2.525.596 4.666 1.143 4.86 3.28.194 1.938 1.364.199 2.335-2.336.777-2.485 7.584 3.131 8.365 8.15.583 5.07 3.306 8.549 4.083 2.535m-31.314-8.351c1.165 2.932 5.447 7.008 7.777 7.008 2.335 0 5.836 1.74 6.418 4.472.394 2.336 2.335 5.616 4.865 6.014 2.53.398 1.165 2.336-1.947 2.137-3.306-.199-8.36-2.137-8.748-4.473 1.165 4.87-.394 7.008-3.506 3.48-2.917-3.28-4.47-7.953-8.36-8.549 2.918-.547 3.306-1.342 1.942-4.274-1.165-2.883-.194-10.636 1.559-5.815"
878
+ fill="#509164"
879
+ />
880
+ <path
881
+ d="M-716.69 545.89c6.382-3.131 16.23-1.938 19.904 1.342 1.93-3.678 5.025-6.411 10.828-5.417 4.644-5.07 8.511-7.604 11.22-5.07 2.708-5.02 11.799-6.212 14.894-3.08 3.288-5.07 9.863-7.406 14.309-4.673 5.803-7.604 16.052-10.288 22.241-6.41 5.417-4.076 11.606-3.28 14.314-.597 2.708 2.535 8.511-2.684 10.833 2.137 4.06-.944 11.794-1.143 13.344 3.13.965-2.335 4.446-3.726 6.382-1.937 0-8.946 6.382-15.755 15.28-13.618 4.253-6.412 11.606-9.095 15.087-6.81 3.674-3.677 11.215-1.142 14.502 3.33 7.16-.198 10.64 3.082 14.314 9.493 3.674 6.411 14.314 10.288 21.083 7.405 6.769-2.534 12.958-3.33 15.28-.198 4.06-3.678 8.511-2.734 11.215-.2 4.644 4.076 9.09-3.13 11.8-.397 4.257 4.473 8.124-4.075 15.665.398 7.353 4.473 21.855 11.232 33.075 11.232s20.117-13.767 27.272-4.076c7.155-4.82 17.988-7.156 25.53-3.08 4.45-4.076 14.7-5.418 18.76-1.542 4.06-6.212 11.798-9.94 18.373-7.802 3.674-6.362 18.374-7.356 22.821 1.59 3.679 0 9.477 3.28 9.477 7.356 3.679 0 9.482 2.335 9.482 6.61 4.06-.994 9.085 1.54 9.863 6.41 8.12-.596 14.7 2.734 18.374 9.493 2.708-2.336 1.158-8.35 7.347-9.492 6.19-.994 8.126.944 9.863 3.081 6.769-5.02 16.25-4.423 24.177 2.733 5.803-2.335 11.22-1.341 12.958 1.541 2.516-2.336 6.576-2.882 10.64-2.882.194 13.17-.97 27.533-3.871 42.294h-523.75c-2.709-14.363-3.867-28.726-3.674-41.946"
882
+ fill="#078930"
883
+ stroke="#000"
884
+ stroke-width=".999"
885
+ transform="matrix(1.00186 0 0 1 867.911 0)"
886
+ />
887
+ <path
888
+ d="M416.28 245.04l-5.243 16.898H393.18l14.557 10.486-5.437 16.898 14.174-10.487 14.368 10.487-5.438-16.898 14.363-10.089h-17.663l-5.437-16.898m-67.947 5.223l-2.525 17.494-17.469 2.733 15.92 7.952-2.72 17.444 12.426-12.624 15.725 8.002-8.156-15.755 12.62-12.425-17.47 2.733-8.155-15.755M282.72 267.16l.194 17.693-16.893 5.616 17.087 5.268v17.643l10.094-14.562 16.893 5.268-10.68-14.214 10.293-14.363-16.893 5.666-10.675-14.214M220.4 294.14l3.106 17.494-15.725 8.35 17.663 2.335 2.913 17.444 7.574-15.904 17.469 2.336-12.812-12.425 7.768-15.755-15.725 8.35-12.812-12.226M484.23 250.66l2.525 17.494 17.469 2.733-15.92 7.952 2.72 17.444-12.426-12.624-15.725 8.002 8.15-15.755L458.6 263.48l17.474 2.733 8.155-15.755m66.011 16.702l-.194 17.693 16.888 5.616-17.082 5.268v17.643l-10.094-14.562-16.893 5.268 10.68-14.214-10.293-14.363 16.7 5.666 10.674-14.214m61.934 27.179l-3.106 17.494 15.725 8.35-17.668 2.335-2.908 17.444-7.574-15.904-17.474 2.336 12.817-12.425-7.768-15.755 15.725 8.35 12.812-12.226"
889
+ fill="#fff"
890
+ />
891
+ <path d="M387.186 672.52l1.938-129.86c0-6.212 1.168-7.206 1.362-.398l.388 131.65" fill="#865800"/>
892
+ <path
893
+ d="M387.186 672.52l1.938-129.86c0-6.212 1.168-7.206 1.362-.398l.388 131.65"
894
+ fill="#704d25"
895
+ stroke="#000"
896
+ stroke-linecap="round"
897
+ stroke-linejoin="round"
898
+ />
899
+ <path d="M390.676 542.46c4.463-3.877 14.75 4.87 21.157 1.193-3.882 12.574-19.412 2.684-21.157 7.355v-8.548" fill="#fff"/>
900
+ <path
901
+ d="M390.676 542.46c4.463-3.877 14.75 4.87 21.157 1.193-3.882 12.574-19.412 2.684-21.157 7.355v-8.548"
902
+ fill="none"
903
+ stroke="#000"
904
+ stroke-linecap="round"
905
+ stroke-linejoin="round"
906
+ />
907
+ <path d="M431.056 672.72l1.938-129.66c0-6.212 1.168-7.405 1.362-.199l.388 131.4" fill="#865800"/>
908
+ <path
909
+ d="M431.056 672.72l1.938-129.66c0-6.212 1.168-7.405 1.362-.199l.388 131.4"
910
+ fill="#704d25"
911
+ stroke="#000"
912
+ stroke-linecap="round"
913
+ stroke-linejoin="round"
914
+ />
915
+ <path d="M434.746 542.86c4.463-3.877 14.756 4.87 21.162 1.143-4.08 12.624-19.417 2.733-21.162 7.405v-8.548" fill="#fff"/>
916
+ <path
917
+ d="M434.746 542.86c4.463-3.877 14.756 4.87 21.162 1.143-4.08 12.624-19.417 2.733-21.162 7.405v-8.548"
918
+ fill="none"
919
+ stroke="#000"
920
+ stroke-linecap="round"
921
+ stroke-linejoin="round"
922
+ />
923
+ <path d="M472.596 679.93l1.943-129.91c0-6.212 1.163-7.157 1.357-.15l.388 131.4" fill="#865800"/>
924
+ <path
925
+ d="M472.596 679.93l1.943-129.91c0-6.212 1.163-7.157 1.357-.15l.388 131.4"
926
+ fill="#704d25"
927
+ stroke="#000"
928
+ stroke-linecap="round"
929
+ stroke-linejoin="round"
930
+ />
931
+ <path d="M476.096 550.02c4.468-3.877 14.756 4.87 21.162.994-4.075 12.624-19.412 2.733-21.162 7.355v-8.498" fill="#fff"/>
932
+ <path
933
+ d="M476.096 550.02c4.468-3.877 14.756 4.87 21.162.994-4.075 12.624-19.412 2.733-21.162 7.355v-8.498.149z"
934
+ fill="none"
935
+ stroke="#000"
936
+ stroke-linecap="round"
937
+ stroke-linejoin="round"
938
+ />
939
+ <path
940
+ d="M487.546 694.84c-4.468 0-10.094-2.087-11.65-5.616-3.3 3.131-17.081 4.87-22.518.199-3.688 3.13-15.143 5.268-20.968 1.54-4.657 4.076-18.443 3.728-25.625-.546-2.912 3.081-11.262 5.417-15.725 5.815-6.406-9.145-23.687-23.706-34.556-29.124-12.231-6.014-36.693-17.693-49.7-23.31-7.573-3.28-14.561-8.945-.193-2.733 15.337 6.61 39.993 16.5 56.687 23.905 23.88 10.487 119.2 8.946 134.92 7.555 8.156-.547 19.025-6.76 26.6-11.431 5.824-3.53 6.018-1.392.387 1.54-6.213 3.28-13.006 5.815-17.862 12.624-6.6 9.145-15.725 13.22-19.22 19.234"
941
+ fill="#704d25"
942
+ />
943
+ <path
944
+ d="M487.546 694.84c-4.468 0-10.094-2.087-11.65-5.616-3.3 3.131-17.081 4.87-22.518.199-3.688 3.13-15.143 5.268-20.968 1.54-4.657 4.076-18.443 3.728-25.625-.546-2.912 3.081-11.262 5.417-15.725 5.815-6.406-9.145-23.687-23.706-34.556-29.124-12.231-6.014-36.693-17.693-49.7-23.31-7.573-3.28-14.561-8.945-.193-2.733 15.337 6.61 39.993 16.5 56.687 23.905 23.88 10.487 119.2 8.946 134.92 7.555 8.156-.547 19.025-6.76 26.6-11.431 5.824-3.53 6.018-1.392.387 1.54-6.213 3.28-13.006 5.815-17.862 12.624-6.6 9.145-15.725 13.22-19.22 19.234l-.58.348z"
945
+ fill="#704d25"
946
+ stroke="#000"
947
+ stroke-linecap="round"
948
+ stroke-linejoin="round"
949
+ />
950
+ <path
951
+ d="M496.476 572.18l-30.868-3.33c-5.437 9.145-6.212 20.575-3.3 28.577 9.9-9.343 27.762-4.473 36.693.348-2.912-8.15-7.38-19.184-2.331-25.396"
952
+ fill="#fff"
953
+ />
954
+ <path
955
+ d="M496.476 572.18l-30.868-3.33c-5.437 9.145-6.212 20.575-3.3 28.577 9.9-9.343 27.762-4.473 36.693.348-2.912-8.15-7.38-19.184-2.331-25.396l-.194-.199z"
956
+ fill="none"
957
+ stroke="#000"
958
+ stroke-linecap="round"
959
+ stroke-linejoin="round"
960
+ />
961
+ <path
962
+ d="M498.806 597.58c-9.12.199-30.863-.348-37.662-.348-7.375 9.493-3.3 23.856-1.55 29.322 8.15-13.02 33.973-6.063 43.873 3.28-5.05-9.542-8.93-17.693-4.463-32.404"
963
+ fill="#fff"
964
+ />
965
+ <path
966
+ d="M498.806 597.58c-9.12.199-30.863-.348-37.662-.348-7.375 9.493-3.3 23.856-1.55 29.322 8.15-13.02 33.973-6.063 43.873 3.28-5.05-9.542-8.93-17.693-4.463-32.404l-.198.15z"
967
+ fill="none"
968
+ stroke="#000"
969
+ stroke-linecap="round"
970
+ stroke-linejoin="round"
971
+ />
972
+ <path
973
+ d="M503.276 630.23c-8.931-1.59-37.662-3.529-43.487-5.07-4.662 9.692-8.543 22.316-10.482 34.393 13.975-15.357 46.399-4.076 53.193 10.834-6.794-12.822-13.593-32.205.97-40.157"
974
+ fill="#fff"
975
+ />
976
+ <path
977
+ d="M503.276 630.23c-8.931-1.59-37.662-3.529-43.487-5.07-4.662 9.692-8.543 22.316-10.482 34.393 13.975-15.357 46.399-4.076 53.193 10.834-6.794-12.822-13.593-32.205.97-40.157h-.195z"
978
+ fill="none"
979
+ stroke="#000"
980
+ stroke-linecap="round"
981
+ stroke-linejoin="round"
982
+ />
983
+ <path
984
+ d="M464.836 562.84l-40.773-5.417c-5.82 6.809-10.094 18.836-9.512 32.8 8.543-8.15 39.799-4.87 47.76 6.81-2.718-12.624-6.212-28.527 2.719-34.392"
985
+ fill="#fff"
986
+ />
987
+ <path
988
+ d="M464.836 562.84l-40.773-5.417c-5.82 6.809-10.094 18.836-9.512 32.8 8.543-8.15 39.799-4.87 47.76 6.81-2.718-12.624-6.212-28.527 2.719-34.392l-.194.198z"
989
+ fill="none"
990
+ stroke="#000"
991
+ stroke-linecap="round"
992
+ stroke-linejoin="round"
993
+ />
994
+ <path
995
+ d="M461.726 598.18l-45.236-6.014c-7.182 9.145-6.794 22.116-5.05 35.932 10.294-8.548 43.875-3.876 51.837 7.555-4.851-16.7-8.931-26.59-1.357-37.473"
996
+ fill="#fff"
997
+ />
998
+ <path
999
+ d="M461.726 598.18l-45.236-6.014c-7.182 9.145-6.794 22.116-5.05 35.932 10.294-8.548 43.875-3.876 51.837 7.555-4.851-16.7-8.931-26.59-1.357-37.473h-.194z"
1000
+ fill="none"
1001
+ stroke="#000"
1002
+ stroke-linecap="round"
1003
+ stroke-linejoin="round"
1004
+ />
1005
+ <path
1006
+ d="M463.086 635.65l-46.011-4.672c-7.182 8.946-12.037 18.09-10.482 31.46 7.181-11.828 37.662-3.28 50.668 9.89-7.763-10.288-8.543-25.048 5.825-36.678"
1007
+ fill="#fff"
1008
+ />
1009
+ <path
1010
+ d="M463.086 635.65l-46.011-4.672c-7.182 8.946-12.037 18.09-10.482 31.46 7.181-11.828 37.662-3.28 50.668 9.89-7.763-10.288-8.543-25.048 5.825-36.678z"
1011
+ fill="none"
1012
+ stroke="#000"
1013
+ stroke-linecap="round"
1014
+ stroke-linejoin="round"
1015
+ />
1016
+ <path
1017
+ d="M388.146 562.84c-5.05 3.877-12.812 17.295-13.98 20.973 8.543-3.479 26.599-4.473 37.86 3.877-3.3-6.412-4.467-17.644-1.555-22.316-4.463-1.938-16.306-2.932-22.13-2.335"
1018
+ fill="#fff"
1019
+ />
1020
+ <path
1021
+ d="M388.146 562.84c-5.05 3.877-12.812 17.295-13.98 20.973 8.543-3.479 26.599-4.473 37.86 3.877-3.3-6.412-4.467-17.644-1.555-22.316-4.463-1.938-16.306-2.932-22.13-2.335l-.194-.2z"
1022
+ fill="none"
1023
+ stroke="#000"
1024
+ stroke-linecap="round"
1025
+ stroke-linejoin="round"
1026
+ />
1027
+ <path
1028
+ d="M369.316 590.02c11.843-.199 36.106 2.733 46.593 5.616-6.212 9.343-5.437 25.247-2.912 35.137-16.112-15.904-42.711-15.506-58.436-10.834 2.912-7.206 10.094-22.166 14.562-30.118"
1029
+ fill="#fff"
1030
+ />
1031
+ <path
1032
+ d="M369.316 590.02c11.843-.199 36.106 2.733 46.593 5.616-6.212 9.343-5.437 25.247-2.912 35.137-16.112-15.904-42.711-15.506-58.436-10.834 2.912-7.206 10.094-22.166 14.562-30.118l.193.199z"
1033
+ fill="none"
1034
+ stroke="#000"
1035
+ stroke-linecap="round"
1036
+ stroke-linejoin="round"
1037
+ />
1038
+ <path
1039
+ d="M416.296 634.31c-11.456.398-40.768-4.672-54.167-11.282-4.657 12.624-6.794 33.597-7.182 41.151 13.006-17.444 44.848-7.753 54.942 10.089-.969-9.493-4.467-32.801 6.407-40.157"
1040
+ fill="#fff"
1041
+ />
1042
+ <path
1043
+ d="M416.296 634.31c-11.456.398-40.768-4.672-54.167-11.282-4.657 12.624-6.794 33.597-7.182 41.151 13.006-17.444 44.848-7.753 54.942 10.089-.969-9.493-4.467-32.801 6.407-40.157v.199z"
1044
+ fill="none"
1045
+ stroke="#000"
1046
+ stroke-linecap="round"
1047
+ stroke-linejoin="round"
1048
+ />
1049
+ <path
1050
+ d="M388.146 562.84c-32.23 19.432-56.687 58.645-65.812 85.83 9.125-.199 20.575 2.733 24.656 10.884 9.512-39.063 22.906-75.145 41.156-96.913"
1051
+ fill="#fff"
1052
+ />
1053
+ <path
1054
+ d="M388.146 562.84c-32.23 19.432-56.687 58.645-65.812 85.83 9.125-.199 20.575 2.733 24.656 10.884 9.512-39.063 22.906-75.145 41.156-96.913v.199zm.97-18.84c-26.4 26.589-63.868 74.002-77.461 99.796m184.821-71.616c7.181 34.938 8.93 81.904 6.019 99.199"
1055
+ fill="none"
1056
+ stroke="#000"
1057
+ stroke-linecap="round"
1058
+ stroke-linejoin="round"
1059
+ />
1060
+ <path d="M534.686 635.28c-8.185 4.083-23.7-7.338-31.024-2.152v-4.524c7.11-4.966 22.624 6.455 31.024 2.152v4.745" fill="#00009e"/>
1061
+ <path d="M534.686 635.28c-8.185 4.083-23.7-7.338-31.024-2.152v-4.524c7.11-4.966 22.624 6.455 31.024 2.152v4.745-.22z" fill="#002b7f"/>
1062
+ <path d="M534.686 640.02c-8.185 4.083-23.7-7.338-31.024-2.373v-4.745c7.11-4.966 22.624 6.456 31.024 2.152v4.745" fill="#fff"/>
1063
+ <path d="M534.686 640.02c-8.185 4.083-23.7-7.338-31.024-2.373v-4.745c7.11-4.966 22.624 6.456 31.024 2.152v4.745z" fill="none"/>
1064
+ <path d="M534.686 644.77c-8.185 4.304-23.7-7.118-31.024-2.152v-4.745c7.11-4.966 22.624 6.456 31.024 2.373v4.524" fill="#ff0016"/>
1065
+ <path d="M534.686 644.77c-8.185 4.304-23.7-7.118-31.024-2.152v-4.745c7.11-4.966 22.624 6.456 31.024 2.373v4.524" fill="#ce1126"/>
1066
+ <path d="M534.686 649.51c-8.185 4.304-23.7-7.118-31.024-2.152v-4.745c7.11-4.745 22.624 6.456 31.024 2.152z" fill="#fff"/>
1067
+ <path d="M534.686 649.51c-8.185 4.304-23.7-7.118-31.024-2.152v-4.745c7.11-4.745 22.624 6.456 31.024 2.152z" fill="none"/>
1068
+ <path d="M534.686 654.04c-8.185 4.304-23.7-7.118-31.024-2.152v-4.745c7.11-4.966 22.624 6.456 31.024 2.152v4.524" fill="#00009e"/>
1069
+ <path d="M534.686 654.04c-8.185 4.304-23.7-7.118-31.024-2.152v-4.745c7.11-4.966 22.624 6.456 31.024 2.152v4.744z" fill="#002b7f"/>
1070
+ <g stroke-width="1.832">
1071
+ <path d="M404.084 440.136l.688-46.081c0-2.205.414-2.558.483-.142l.137 46.717" fill="#865800"/>
1072
+ <path
1073
+ d="M404.084 440.136l.688-46.081c0-2.205.414-2.558.483-.142l.137 46.717"
1074
+ fill="#704d25"
1075
+ stroke="#000"
1076
+ stroke-linecap="round"
1077
+ stroke-linejoin="round"
1078
+ stroke-width=".65"
1079
+ />
1080
+ <path d="M405.322 393.984c1.584-1.376 5.235 1.728 7.508.423-1.377 4.462-6.888.952-7.508 2.61v-3.033" fill="#fff"/>
1081
+ <path
1082
+ d="M405.322 393.984c1.584-1.376 5.235 1.728 7.508.423-1.377 4.462-6.888.952-7.508 2.61v-3.033"
1083
+ fill="none"
1084
+ stroke="#000"
1085
+ stroke-linecap="round"
1086
+ stroke-linejoin="round"
1087
+ stroke-width=".65"
1088
+ />
1089
+ <path d="M419.651 440.207l.688-46.01c0-2.205.415-2.628.483-.071l.138 46.628" fill="#865800"/>
1090
+ <path
1091
+ d="M419.651 440.207l.688-46.01c0-2.205.415-2.628.483-.071l.138 46.628"
1092
+ fill="#704d25"
1093
+ stroke="#000"
1094
+ stroke-linecap="round"
1095
+ stroke-linejoin="round"
1096
+ stroke-width=".65"
1097
+ />
1098
+ <path d="M420.96 394.126c1.584-1.376 5.237 1.728 7.51.405-1.448 4.48-6.89.97-7.51 2.628v-3.033" fill="#fff"/>
1099
+ <path
1100
+ d="M420.96 394.126c1.584-1.376 5.237 1.728 7.51.405-1.448 4.48-6.89.97-7.51 2.628v-3.033"
1101
+ fill="none"
1102
+ stroke="#000"
1103
+ stroke-linecap="round"
1104
+ stroke-linejoin="round"
1105
+ stroke-width=".65"
1106
+ />
1107
+ <path d="M434.392 442.765l.69-46.099c0-2.204.412-2.54.481-.053l.138 46.628" fill="#865800"/>
1108
+ <path
1109
+ d="M434.392 442.765l.69-46.099c0-2.204.412-2.54.481-.053l.138 46.628"
1110
+ fill="#704d25"
1111
+ stroke="#000"
1112
+ stroke-linecap="round"
1113
+ stroke-linejoin="round"
1114
+ stroke-width=".65"
1115
+ />
1116
+ <path d="M435.634 396.666c1.585-1.375 5.236 1.729 7.51.353-1.447 4.48-6.889.97-7.51 2.61v-3.016" fill="#fff"/>
1117
+ <path
1118
+ d="M435.634 396.666c1.585-1.375 5.236 1.729 7.51.353-1.447 4.48-6.889.97-7.51 2.61v-3.016.053z"
1119
+ fill="none"
1120
+ stroke="#000"
1121
+ stroke-linecap="round"
1122
+ stroke-linejoin="round"
1123
+ stroke-width=".65"
1124
+ />
1125
+ <path
1126
+ d="M439.697 448.056c-1.585 0-3.582-.74-4.134-1.993-1.17 1.112-6.061 1.729-7.99.071-1.31 1.111-5.374 1.87-7.441.547-1.653 1.446-6.545 1.322-9.093-.194-1.034 1.093-3.997 1.922-5.58 2.063-2.274-3.245-8.406-8.412-12.263-10.335-4.34-2.134-13.02-6.278-17.636-8.27-2.687-1.165-5.167-3.175-.069-.97 5.443 2.345 14.192 5.854 20.116 8.482 8.474 3.721 42.299 3.174 47.877 2.68 2.894-.193 6.751-2.398 9.439-4.056 2.067-1.252 2.136-.494.137.547-2.204 1.164-4.615 2.063-6.338 4.48-2.342 3.245-5.58 4.69-6.82 6.825"
1127
+ fill="#704d25"
1128
+ />
1129
+ <path
1130
+ d="M439.697 448.056c-1.585 0-3.582-.74-4.134-1.993-1.17 1.112-6.061 1.729-7.99.071-1.31 1.111-5.374 1.87-7.441.547-1.653 1.446-6.545 1.322-9.093-.194-1.034 1.093-3.997 1.922-5.58 2.063-2.274-3.245-8.406-8.412-12.263-10.335-4.34-2.134-13.02-6.278-17.636-8.27-2.687-1.165-5.167-3.175-.069-.97 5.443 2.345 14.192 5.854 20.116 8.482 8.474 3.721 42.299 3.174 47.877 2.68 2.894-.193 6.751-2.398 9.439-4.056 2.067-1.252 2.136-.494.137.547-2.204 1.164-4.615 2.063-6.338 4.48-2.342 3.245-5.58 4.69-6.82 6.825l-.206.123z"
1131
+ fill="#704d25"
1132
+ stroke="#000"
1133
+ stroke-linecap="round"
1134
+ stroke-linejoin="round"
1135
+ stroke-width=".65"
1136
+ />
1137
+ <path
1138
+ d="M442.866 404.53l-10.954-1.182c-1.93 3.245-2.204 7.301-1.17 10.141 3.512-3.316 9.85-1.587 13.02.123-1.034-2.892-2.619-6.807-.827-9.011"
1139
+ fill="#fff"
1140
+ />
1141
+ <path
1142
+ d="M442.866 404.53l-10.954-1.182c-1.93 3.245-2.204 7.301-1.17 10.141 3.512-3.316 9.85-1.587 13.02.123-1.034-2.892-2.619-6.807-.827-9.011l-.069-.071z"
1143
+ fill="none"
1144
+ stroke="#000"
1145
+ stroke-linecap="round"
1146
+ stroke-linejoin="round"
1147
+ stroke-width=".65"
1148
+ />
1149
+ <path
1150
+ d="M443.693 413.543c-3.236.07-10.952-.123-13.365-.123-2.617 3.368-1.17 8.465-.55 10.405 2.892-4.62 12.056-2.152 15.569 1.164-1.792-3.386-3.17-6.279-1.584-11.499"
1151
+ fill="#fff"
1152
+ />
1153
+ <path
1154
+ d="M443.693 413.543c-3.236.07-10.952-.123-13.365-.123-2.617 3.368-1.17 8.465-.55 10.405 2.892-4.62 12.056-2.152 15.569 1.164-1.792-3.386-3.17-6.279-1.584-11.499l-.07.053z"
1155
+ fill="none"
1156
+ stroke="#000"
1157
+ stroke-linecap="round"
1158
+ stroke-linejoin="round"
1159
+ stroke-width=".65"
1160
+ />
1161
+ <path
1162
+ d="M445.279 425.13c-3.17-.565-13.365-1.253-15.432-1.8-1.654 3.44-3.031 7.919-3.72 12.204 4.96-5.449 16.466-1.446 18.877 3.845-2.411-4.55-4.824-11.428.343-14.25"
1163
+ fill="#fff"
1164
+ />
1165
+ <path
1166
+ d="M445.279 425.13c-3.17-.565-13.365-1.253-15.432-1.8-1.654 3.44-3.031 7.919-3.72 12.204 4.96-5.449 16.466-1.446 18.877 3.845-2.411-4.55-4.824-11.428.343-14.25h-.068z"
1167
+ fill="none"
1168
+ stroke="#000"
1169
+ stroke-linecap="round"
1170
+ stroke-linejoin="round"
1171
+ stroke-width=".65"
1172
+ />
1173
+ <path
1174
+ d="M431.638 401.216l-14.468-1.923c-2.065 2.416-3.582 6.684-3.376 11.64 3.032-2.892 14.123-1.729 16.949 2.416-.965-4.48-2.205-10.123.964-12.204"
1175
+ fill="#fff"
1176
+ />
1177
+ <path
1178
+ d="M431.638 401.216l-14.468-1.923c-2.065 2.416-3.582 6.684-3.376 11.64 3.032-2.892 14.123-1.729 16.949 2.416-.965-4.48-2.205-10.123.964-12.204l-.069.07z"
1179
+ fill="none"
1180
+ stroke="#000"
1181
+ stroke-linecap="round"
1182
+ stroke-linejoin="round"
1183
+ stroke-width=".65"
1184
+ />
1185
+ <path
1186
+ d="M430.535 413.756l-16.052-2.134c-2.549 3.245-2.411 7.848-1.792 12.75 3.652-3.033 15.569-1.375 18.394 2.681-1.721-5.925-3.17-9.435-.482-13.297"
1187
+ fill="#fff"
1188
+ />
1189
+ <path
1190
+ d="M430.535 413.756l-16.052-2.134c-2.549 3.245-2.411 7.848-1.792 12.75 3.652-3.033 15.569-1.375 18.394 2.681-1.721-5.925-3.17-9.435-.482-13.297h-.068z"
1191
+ fill="none"
1192
+ stroke="#000"
1193
+ stroke-linecap="round"
1194
+ stroke-linejoin="round"
1195
+ stroke-width=".65"
1196
+ />
1197
+ <path
1198
+ d="M431.017 427.053l-16.327-1.658c-2.548 3.174-4.271 6.42-3.72 11.163 2.549-4.197 13.365-1.163 17.98 3.51-2.754-3.65-3.031-8.888 2.067-13.015"
1199
+ fill="#fff"
1200
+ />
1201
+ <path
1202
+ d="M431.017 427.053l-16.327-1.658c-2.548 3.174-4.271 6.42-3.72 11.163 2.549-4.197 13.365-1.163 17.98 3.51-2.754-3.65-3.031-8.888 2.067-13.015z"
1203
+ fill="none"
1204
+ stroke="#000"
1205
+ stroke-linecap="round"
1206
+ stroke-linejoin="round"
1207
+ stroke-width=".65"
1208
+ />
1209
+ <path
1210
+ d="M404.425 401.216c-1.792 1.375-4.547 6.137-4.961 7.442 3.031-1.235 9.438-1.587 13.435 1.375-1.171-2.275-1.586-6.26-.552-7.918-1.584-.688-5.786-1.04-7.854-.829"
1211
+ fill="#fff"
1212
+ />
1213
+ <path
1214
+ d="M404.425 401.216c-1.792 1.375-4.547 6.137-4.961 7.442 3.031-1.235 9.438-1.587 13.435 1.375-1.171-2.275-1.586-6.26-.552-7.918-1.584-.688-5.786-1.04-7.854-.829l-.068-.07z"
1215
+ fill="none"
1216
+ stroke="#000"
1217
+ stroke-linecap="round"
1218
+ stroke-linejoin="round"
1219
+ stroke-width=".65"
1220
+ />
1221
+ <path
1222
+ d="M397.743 410.86c4.202-.07 12.812.97 16.533 1.993-2.204 3.316-1.929 8.96-1.033 12.469-5.718-5.644-15.156-5.502-20.736-3.845 1.033-2.557 3.581-7.865 5.167-10.687"
1223
+ fill="#fff"
1224
+ />
1225
+ <path
1226
+ d="M397.743 410.86c4.202-.07 12.812.97 16.533 1.993-2.204 3.316-1.929 8.96-1.033 12.469-5.718-5.644-15.156-5.502-20.736-3.845 1.033-2.557 3.581-7.865 5.167-10.687l.069.07z"
1227
+ fill="none"
1228
+ stroke="#000"
1229
+ stroke-linecap="round"
1230
+ stroke-linejoin="round"
1231
+ stroke-width=".65"
1232
+ />
1233
+ <path
1234
+ d="M414.414 426.577c-4.066.141-14.467-1.658-19.222-4.003-1.652 4.48-2.41 11.922-2.548 14.602 4.615-6.19 15.914-2.751 19.496 3.58-.344-3.368-1.585-11.64 2.274-14.25"
1235
+ fill="#fff"
1236
+ />
1237
+ <path
1238
+ d="M414.414 426.577c-4.066.141-14.467-1.658-19.222-4.003-1.652 4.48-2.41 11.922-2.548 14.602 4.615-6.19 15.914-2.751 19.496 3.58-.344-3.368-1.585-11.64 2.274-14.25v.07z"
1239
+ fill="none"
1240
+ stroke="#000"
1241
+ stroke-linecap="round"
1242
+ stroke-linejoin="round"
1243
+ stroke-width=".65"
1244
+ />
1245
+ <path
1246
+ d="M404.425 401.216c-11.437 6.895-20.116 20.81-23.354 30.457 3.238-.07 7.3.97 8.75 3.862 3.375-13.862 8.127-26.666 14.604-34.39"
1247
+ fill="#fff"
1248
+ />
1249
+ <path
1250
+ d="M404.425 401.216c-11.437 6.895-20.116 20.81-23.354 30.457 3.238-.07 7.3.97 8.75 3.862 3.375-13.862 8.127-26.666 14.604-34.39v.07zm.344-6.686c-9.368 9.435-22.664 26.26-27.488 35.413m65.585-25.413c2.548 12.398 3.17 29.064 2.136 35.201"
1251
+ fill="none"
1252
+ stroke="#000"
1253
+ stroke-linecap="round"
1254
+ stroke-linejoin="round"
1255
+ stroke-width=".65"
1256
+ />
1257
+ <path d="M456.425 426.921c-2.905 1.45-8.41-2.604-11.01-.763v-1.606c2.524-1.762 8.03 2.29 11.01.764V427" fill="#00009e"/>
1258
+ <path d="M456.425 426.921c-2.905 1.45-8.41-2.604-11.01-.763v-1.606c2.524-1.762 8.03 2.29 11.01.764V427v-.079z" fill="#002b7f"/>
1259
+ <path d="M456.425 428.603c-2.905 1.45-8.41-2.604-11.01-.842v-1.684c2.524-1.762 8.03 2.291 11.01.764v1.684" fill="#fff"/>
1260
+ <path d="M456.425 428.603c-2.905 1.45-8.41-2.604-11.01-.842v-1.684c2.524-1.762 8.03 2.291 11.01.764v1.684z" fill="none"/>
1261
+ <path d="M456.425 430.289c-2.905 1.527-8.41-2.526-11.01-.764v-1.684c2.524-1.762 8.03 2.291 11.01.842v1.606" fill="#ff0016"/>
1262
+ <path d="M456.425 430.289c-2.905 1.527-8.41-2.526-11.01-.764v-1.684c2.524-1.762 8.03 2.291 11.01.842v1.606" fill="#ce1126"/>
1263
+ <path d="M456.425 431.97c-2.905 1.528-8.41-2.525-11.01-.763v-1.684c2.524-1.684 8.03 2.291 11.01.764z" fill="#fff"/>
1264
+ <path d="M456.425 431.97c-2.905 1.528-8.41-2.525-11.01-.763v-1.684c2.524-1.684 8.03 2.291 11.01.764z" fill="none"/>
1265
+ <path d="M456.425 433.578c-2.905 1.528-8.41-2.525-11.01-.763v-1.684c2.524-1.762 8.03 2.29 11.01.763v1.606" fill="#00009e"/>
1266
+ <path d="M456.425 433.578c-2.905 1.528-8.41-2.525-11.01-.763v-1.684c2.524-1.762 8.03 2.29 11.01.763v1.684z" fill="#002b7f"/>
1267
+ </g>
1268
+ <path
1269
+ d="M650.12 284.78c-24.656 97.46 2.912 159.19 21.937 201.88 17.862 39.809 21.356 132.4-43.874 197.85-96.873 96.863-170.65 57.85-207.73 110.63m-7.953.19c-37.08-52.78-110.85-13.76-207.73-110.63-65.23-65.45-61.73-158.04-43.87-197.85 19.02-42.49 46.59-104.22 21.94-201.88"
1270
+ fill="none"
1271
+ stroke="#000"
1272
+ stroke-width="3"
1273
+ />
1274
+ <g stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="3">
1275
+ <path
1276
+ d="M427.55 39.787c1.357 6.308 3.106 23.321-6.212 25.758 17.082 21.075 41.737 24.086 85.03 24.086 27.18 0 49.118-.191 65.23 0 0 5.4-1.75 11.183-1.75 17.921 0 6.5 6.799 9.51 16.7 7.264 9.9-2.246 31.061-8.602 42.512 1.481 19.224 17.204 54.555 20.167 64.067 31.015-2.912-13.094-15.337-26.332-29.119-37.37 13.006-1.864 29.894-.526 35.72 3.918-14.76-15.999-41.55-16.382-55.14-24.219-13.59-7.838-26.6-14.767-36.69-17.395 0-4.444-.587-8.028-4.469-10.609-8.543-5.974-25.237-8.028-38.825-8.793 1.939-2.055 2.326-4.492 2.326-8.22V23.55c0-7.312.78-9.175-7.57-14.385-32.224-19.785-71.441-33.978-142.88-33.978-71.248 0-110.47 14.002-142.88 33.978-8.542 5.21-7.568 7.073-7.568 14.385v21.075c0 3.728.194 6.165 2.326 8.22-13.588.573-30.088 2.628-38.825 8.793-3.688 2.58-4.468 5.974-4.468 10.61-9.9 2.437-22.906 9.366-36.688 17.394-13.593 7.838-40.38 8.22-55.136 24.23 5.63-4.445 22.519-5.974 35.525-3.92-13.588 10.849-26.012 24.087-29.12 37.372 9.513-10.849 44.844-13.812 64.262-31.016 11.257-10.084 32.419-3.918 42.513-1.481 9.9 2.246 16.699-.573 16.699-7.264 0-6.738-1.75-12.521-1.75-17.921 15.92-.382 37.856 0 65.23 0 43.1 0 67.755-3.01 85.03-24.086-9.512-2.437-7.763-19.259-6.212-25.758-20.188-4.492-30.282-12.138-46.593-12.138-16.112 0-19.025 8.554-19.025 11.756v2.628c-12.812 0-30.868-3.202-35.331-11.613 24.85-10.084 61.736-19.21 112.4-19.21 50.668 0 87.555 9.127 112.4 19.21-4.463 8.411-22.52 11.613-35.331 11.613v-2.628c0-3.01-2.719-11.756-19.025-11.756s-26.405 7.455-46.593 12.138h-.775z"
1277
+ fill="#89c5e3"
1278
+ />
1279
+ <g fill="none">
1280
+ <path d="M260.98 89.965c-12.619.191-21.55.956-26.405 2.437-7.763 2.438-8.538 6.547-3.494 8.793M339.21 42.176v9.749c0 6.308 6.794 14.528 17.28 14.528 25.819 0 30.868-4.444 50.087-3.919"/>
1281
+ <path d="M406.38 62.009c-17.86-3.011-32.03-12.521-47.76-12.521-15.531 0-18.831 7.073-16.112 10.466M224.48 72.809V92.02c0 5.257 3.688 12.521 17.668 9.749 12.231-2.246 20.188.526 20.188 5.782"/>
1282
+ <path d="M267.96 53.215c2.912 2.963 9.319 5.591 23.493 10.657 26.012 9.51 85.805 16.009 124.64-.956M528.88 30.42c5.05 2.055 9.706 4.11 13.787 6.165 24.263 12.138 26.012 14.958 17.469 19.594m11.654 33.786c12.619.191 21.55.956 26.405 2.437 7.763 2.438 8.538 6.547 3.494 8.793M493.36 42.176v9.749c0 6.308-6.794 14.528-17.28 14.528-25.819 0-30.868-4.444-50.087-3.919"/>
1283
+ <path d="M426.18 62.009c17.87-3.011 32.04-12.521 47.77-12.521 15.526 0 18.831 7.073 15.919 10.466M608.09 72.809V92.02c0 5.257-3.688 12.521-17.668 9.749-12.231-2.246-20.193.526-20.193 5.782"/>
1284
+ <path d="M564.61 53.215c-2.912 2.963-9.319 5.591-23.493 10.657-26.012 9.51-85.805 16.009-124.64-.956"/>
1285
+ </g>
1286
+ <path
1287
+ d="M416.28 66.453c11.843 0 12.231-8.937 12.231-17.156 0-8.029-.388-17.013-12.231-17.013s-12.231 8.984-12.231 17.013.388 17.156 12.231 17.156z"
1288
+ fill="#89c5e3"
1289
+ />
1290
+ <path d="M304.55 30.437c-5.169 2.052-9.936 4.105-14.113 6.157-24.843 12.123-26.628 14.939-17.883 19.568" fill="none"/>
1291
+ </g>
1292
+ <g fill="#078930" id="aq" stroke="#000" stroke-width="3">
1293
+ <path d="M387.94 192.56c16.306-10.486 36.499-28.13 43.874-39.809 10.094-16.301 11.456-8.35 19.219-9.691-18.25 19.979-40.962 41.35-57.074 52.63l-6.019-3.13m-136.48 39.21c-40.768-23.11-56.299.994-65.812 2.137 11.257 2.734 20.769 20.774 65.812-2.137z"/>
1294
+ <path d="M269.71 218.4c-38.83-26.241-56.105-3.33-65.816-2.733 11.068 3.479 19.224 22.315 65.816 2.733z"/>
1295
+ <path d="M297.47 202.84c-38.248-26.987-56.105-4.473-65.816-4.075 11.068 3.876 18.637 22.514 65.816 4.075z"/>
1296
+ <path d="M320.38 189.08c-35.137-31.062-55.33-10.486-64.842-11.282 10.482 5.07 16.112 24.452 64.842 11.282z"/>
1297
+ <path d="M349.69 178.99c-33.582-32.851-54.744-13.22-64.256-14.562 10.288 5.417 14.95 25.396 64.256 14.562z"/>
1298
+ <path d="M380.37 175.66c-27.762-37.672-51.831-21.917-61.15-24.651 9.125 7.206 10.482 27.384 61.15 24.651z"/>
1299
+ <path d="M385.42 177.2c-1.362-8.498-17.28-19.383-18.637-23.458 4.075-.398 4.657-5.268 2.912-7.008-1.361-1.342-4.661-.596-6.406 1.193-1.75 2.137-3.494 7.157 2.132 11.431 5.825 4.274 13.205 12.027 15.536 17.842"/>
1300
+ <path
1301
+ d="M214.38 234.5c11.063-3.33 25.043-1.74 34.75-2.733M232.44 218.2c11.451-2.535 25.043 0 34.943 0m-7.183-16.35c11.451-2.087 25.043.596 34.943.596M283.49 184.01c11.65-.944 24.85 3.33 34.556 4.473M313 171.98c11.644-.398 24.656 4.473 34.362 6.212m-1.942-15.162c11.649 1.193 23.686 8.548 32.811 11.48"
1302
+ stroke-linecap="round"
1303
+ stroke-linejoin="round"
1304
+ />
1305
+ </g>
1306
+ <use height="100%" transform="matrix(-1 0 0 1 832.76 0)" width="100%" xlink:href="#aq"/>
1307
+ <g stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="3">
1308
+ <g fill="#fff">
1309
+ <path
1310
+ d="M416.49 190.46c9.125 0 16.888 0 22.519-.745v-13.021c0-4.275 15.143-9.344 38.05-4.871 89.692 17.494 101.92 58.049 170.07 81.357.775.199 3.3.994 6.212 1.54 1.75-4.075 3.688-8.15 5.825-13.17 1.163-3.727 11.068-3.528 19.8.547 10.1 4.87 14.562 10.487 12.817 13.42-1.75 4.274-3.499 7.753-5.05 11.231 15.92 5.666 44.844 14.214 35.332 52.433-7.376-7.156-25.237-14.959-36.3-14.959-12.62 0-26.211-4.82-21.937-18.637-2.331-1.143-6.411-3.28-8.544-3.677-.387 1.193-.969 2.336-1.555 3.479-2.913 7.206-15.531 9.74-28.15 5.467-71.055-24.253-92.992-77.878-176.86-78.624v2.335c0 6.76-8.737 12.971-32.225 12.971-23.3 0-32.225-6.212-32.225-12.97v-2.336c-83.673.546-105.81 54.172-176.86 78.624-12.425 4.274-25.043 1.54-28.15-5.467-.393-1.143-.974-2.287-1.556-3.48-2.137.398-6.212 2.535-8.543 3.678 4.08 13.618-9.125 18.637-21.937 18.637-11.063 0-28.731 7.803-36.3 14.96-9.513-38.02 19.025-46.569 35.33-52.434-1.555-3.478-3.105-6.957-5.049-11.232-1.55-2.932 2.719-8.548 12.812-13.419 8.738-4.274 18.443-4.472 19.805-.546 2.138 4.82 3.882 8.896 5.825 13.17 2.913-.547 5.238-1.342 6.213-1.541 67.949-23.309 80.373-63.863 170.06-81.357 22.717-4.473 38.055.596 38.055 4.87v13.022c5.63.546 13.394.745 22.519.745z"
1311
+ />
1312
+ <path d="M393.78 189.71c-6.019-.596-9.512-1.938-9.512-4.274 0-5.815 9.512-3.877 9.512-8.747M165.27 253.58c3.494 8.35 7.962 19.035 12.037 28.13m-20.577-23.86c3.494 8.15 10.099 22.116 12.037 27.931"/>
1313
+ </g>
1314
+ <path
1315
+ d="M140.62 255.71c2.33 4.075 14.562-1.938 16.112 1.938 1.362 4.076-2.326 6.213-10.869 9.294m27.567-25.392c1.744 5.218-10.487 7.356-7.962 12.027 1.556 3.081 8.35 2.137 13.786.944"
1316
+ fill="none"
1317
+ />
1318
+ <path
1319
+ d="M384.06 185.24v26.987m55.14-22.517c5.825-.596 9.512-1.938 9.512-4.274 0-5.815-9.512-3.877-9.512-8.747m228.5 76.891c-3.494 8.35-7.962 19.035-12.037 28.13m20.577-23.86c-3.499 8.15-10.099 22.116-12.037 27.931"
1320
+ fill="#fff"
1321
+ />
1322
+ <path
1323
+ d="M692.36 255.71c-2.33 4.075-14.562-1.938-16.112 1.938-1.362 4.076 2.326 6.213 10.869 9.294M659.55 241.55c-1.744 5.218 10.487 7.356 7.962 12.027-1.556 3.081-8.35 2.137-13.787.944"
1324
+ fill="none"
1325
+ />
1326
+ <path d="M448.91 185.24v26.987" fill="#fff"/>
1327
+ </g>
1328
+ <path
1329
+ d="M203.96 281.77l-7.523-26.884 9.371-2.622c2.396-.67 4.176-.908 5.338-.713 1.162.196 2.24.797 3.233 1.805.994 1.007 1.724 2.342 2.189 4.005.588 2.102.558 3.937-.092 5.503-.649 1.566-1.857 2.774-3.623 3.624 1.146.417 2.144.946 2.995 1.584.85.639 2.108 1.859 3.773 3.66l4.145 4.496-5.3 1.483-4.865-4.947c-1.753-1.79-2.912-2.892-3.476-3.308-.565-.415-1.107-.659-1.629-.73-.52-.072-1.295.035-2.322.323l-.917.256 3.141 11.223zm.097-16.756l3.3-.924c2.018-.564 3.277-1.012 3.777-1.343.5-.331.847-.814 1.039-1.448.192-.633.163-1.396-.087-2.289-.24-.856-.603-1.495-1.09-1.92a2.718 2.718 0 00-1.695-.682c-.453-.018-1.676.251-3.669.81l-3.484.974zm24.613 9.536l-12.392-25.016 15.221-7.54 2.096 4.232-11.092 5.494 2.748 5.546 10.306-5.105 2.088 4.215-10.307 5.105 3.373 6.809 11.467-5.68 2.088 4.214zm20.14-10.63l-15.128-23.463 6.242-4.024c2.326-1.5 3.919-2.368 4.778-2.605 1.376-.373 2.816-.207 4.321.5 1.505.705 2.86 1.992 4.064 3.86 1.094 1.696 1.69 3.324 1.79 4.884.099 1.56-.182 2.881-.843 3.964-.661 1.084-2.165 2.382-4.513 3.896l-2.545 1.64 5.707 8.85zm-8.695-21.991l4.292 6.658 2.145-1.383c1.44-.928 2.354-1.66 2.74-2.197.388-.537.576-1.175.566-1.917-.01-.741-.262-1.496-.757-2.264-.502-.78-1.096-1.325-1.782-1.639-.685-.313-1.337-.399-1.955-.257-.619.142-1.74.736-3.36 1.781zm10.435-12.159l3.778-2.64 8.66 12.396c1.345 1.925 2.268 3.146 2.769 3.664.871.893 1.815 1.395 2.83 1.507 1.015.111 2.037-.193 3.068-.913.874-.61 1.45-1.304 1.73-2.08.278-.775.277-1.58-.004-2.413-.28-.834-1.217-2.39-2.81-4.67l-8.844-12.66 3.793-2.65 8.398 12.02c2.145 3.07 3.532 5.404 4.16 7.001.628 1.598.664 3.222.106 4.874-.557 1.652-1.777 3.135-3.661 4.451-1.957 1.367-3.73 2.083-5.318 2.148-1.589.065-3.075-.368-4.46-1.297s-3.274-3.106-5.666-6.53zm19.27-13.94l7.703-4.957c2.103-1.353 3.705-2.112 4.806-2.278 1.102-.165 2.259.049 3.471.643 1.212.593 2.214 1.504 3.004 2.732.728 1.131 1.135 2.315 1.22 3.55s-.13 2.33-.65 3.284c1.404-.33 2.744-.211 4.022.355 1.278.567 2.37 1.555 3.278 2.964 1.099 1.708 1.617 3.416 1.554 5.125s-.565 3.063-1.508 4.061c-.655.694-2.403 1.955-5.243 3.782l-6.55 4.215zm6.39 1.413l3.493 5.43 2.562-1.65c1.538-.989 2.47-1.627 2.8-1.914.593-.533.93-1.146 1.012-1.84.081-.695-.129-1.431-.63-2.21-.447-.695-.961-1.16-1.544-1.396-.582-.237-1.124-.27-1.625-.098-.501.172-1.777.917-3.826 2.236zm6.008 9.337l4.04 6.277 3.602-2.319c1.58-1.017 2.541-1.752 2.883-2.206.342-.454.51-1.022.5-1.703-.007-.682-.252-1.396-.733-2.144-.495-.768-1.065-1.296-1.71-1.583a2.97 2.97 0 00-1.956-.19c-.66.16-1.822.776-3.488 1.848zm20.582.56l-12.79-24.557 4.087-2.129 10.617 20.386 10.201-5.313 2.173 4.172zm17.29-9.33l-10.795-25.746 4.25-1.782 10.795 25.746zm18.42-16.67l4.784.377c.226 3.192-.232 5.712-1.376 7.558s-2.853 3.11-5.127 3.79c-2.859.855-5.505.448-7.94-1.222-2.803-1.93-4.851-5.055-6.143-9.372-1.365-4.561-1.405-8.439-.121-11.632 1.118-2.773 3.185-4.611 6.202-5.514 2.456-.735 4.763-.51 6.92.673 1.536.839 2.929 2.35 4.178 4.534l-3.996 2.587c-.713-1.364-1.601-2.307-2.666-2.83a4.377 4.377 0 00-3.293-.277c-1.617.484-2.726 1.584-3.325 3.3-.6 1.717-.414 4.2.558 7.447 1.008 3.369 2.224 5.616 3.647 6.74s2.931 1.449 4.525.972c1.167-.35 2.041-1.105 2.621-2.265.58-1.161.764-2.783.552-4.866zm30.13 3.41l-4.942.924-3.13-5.866-8.986 1.68-.687 6.58-4.83.903 3.63-29.079 4.81-.9zm-10.397-9.292l-4.993-9.606-1.147 10.753zm39.057-1.318l8.208.624c2.076.157 3.624.508 4.645 1.051 1.02.544 1.934 1.399 2.74 2.566.806 1.167 1.396 2.646 1.769 4.439.373 1.793.46 3.992.263 6.598-.179 2.348-.6 4.369-1.262 6.064-.663 1.695-1.44 3.018-2.333 3.97a7.852 7.852 0 01-3.13 2.063c-1.193.425-2.698.569-4.514.43l-8.45-.641zm4.135 4.936l-1.367 17.992 3.373.256c1.445.11 2.502.053 3.171-.17a3.8 3.8 0 001.687-1.11c.456-.519.865-1.36 1.227-2.526.361-1.165.616-2.717.763-4.656.153-2.014.135-3.612-.055-4.794-.19-1.182-.553-2.13-1.089-2.84a4.14 4.14 0 00-2.04-1.479c-.618-.208-1.828-.381-3.632-.518zm19.335 23.604l-1.723-27.188 16.542-1.049.291 4.6-12.054.764.382 6.027 11.201-.71.29 4.58-11.2.71.469 7.4 12.462-.79.29 4.58zm50.4-26.02l4.378 1.965c-.86 3.082-2.14 5.3-3.838 6.654s-3.732 1.969-6.103 1.845c-2.98-.156-5.335-1.43-7.065-3.822-1.992-2.761-2.87-6.392-2.634-10.893.25-4.754 1.516-8.42 3.799-10.995 1.986-2.235 4.55-3.27 7.695-3.106 2.56.134 4.658 1.121 6.29 2.961 1.165 1.307 1.968 3.199 2.41 5.676l-4.633 1.092c-.213-1.524-.732-2.711-1.558-3.562-.827-.85-1.83-1.307-3.008-1.368-1.687-.089-3.1.575-4.243 1.99-1.142 1.414-1.801 3.814-1.978 7.2-.184 3.511.205 6.036 1.166 7.574.962 1.537 2.274 2.35 3.935 2.437 1.217.063 2.294-.354 3.23-1.252.937-.898 1.656-2.363 2.157-4.397zm10.29-2.53c.794-3.23 1.926-5.772 3.396-7.627 1.47-1.854 3.1-3.104 4.893-3.748 1.793-.644 3.786-.696 5.98-.156 3.181.782 5.474 2.634 6.88 5.555 1.406 2.922 1.557 6.626.453 11.113-1.116 4.537-3.048 7.82-5.796 9.85-2.416 1.799-5.22 2.305-8.414 1.52-3.217-.792-5.482-2.532-6.795-5.221-1.493-3.074-1.692-6.836-.597-11.286zm4.668.952c-.767 3.12-.75 5.604.05 7.455.8 1.85 2.074 2.99 3.825 3.421 1.763.434 3.414.02 4.953-1.242s2.704-3.496 3.492-6.701c.773-3.144.781-5.606.023-7.388-.758-1.781-2.05-2.897-3.874-3.345-1.824-.45-3.496-.056-5.016 1.178s-2.67 3.442-3.453 6.622zm19.442 10.388l4.363 1.272c-.926 3.483-.092 5.774 2.502 6.875 1.286.546 2.44.639 3.46.28 1.022-.36 1.744-1.037 2.165-2.03.248-.584.33-1.136.247-1.654-.084-.518-.333-1.02-.747-1.506s-1.5-1.468-3.26-2.945c-1.578-1.318-2.652-2.477-3.22-3.477-.569-1-.88-2.128-.932-3.385s.176-2.487.687-3.69c.595-1.403 1.449-2.53 2.562-3.382 1.113-.851 2.352-1.325 3.717-1.422s2.871.205 4.519.904c2.477 1.052 4.126 2.545 4.947 4.479.82 1.934.74 4.169-.24 6.704l-4.355-1.58c.398-1.458.404-2.593.017-3.405-.386-.812-1.152-1.461-2.297-1.947-1.145-.486-2.13-.621-2.952-.405-.823.216-1.385.68-1.688 1.394-.297.701-.267 1.41.09 2.127.358.718 1.426 1.791 3.205 3.222 1.876 1.527 3.145 2.835 3.807 3.922.662 1.088 1.015 2.28 1.06 3.574s-.263 2.712-.917 4.255c-.947 2.232-2.43 3.816-4.448 4.753s-4.488.785-7.41-.455c-5.165-2.192-6.792-6.352-4.882-12.478zm21.51 20.02l11.3-20.255-5.937-3.312 2.301-4.124 15.882 8.86-2.3 4.124-5.921-3.303-11.3 20.255zm29.75 18.53l-4.205-2.756 1.805-6.4-7.645-5.01-5.053 4.27-4.109-2.694 22.758-18.462 4.093 2.683zm-1.064-13.904l3.051-10.386-8.275 6.962zm10.274 20.564l15.933-22.924 7.99 5.554c2.044 1.42 3.36 2.64 3.95 3.66.589 1.02.812 2.235.669 3.643-.144 1.407-.708 2.82-1.694 4.238-1.246 1.793-2.68 2.938-4.3 3.434-1.621.497-3.322.336-5.102-.484.407 1.149.636 2.255.686 3.317.05 1.063-.09 2.81-.419 5.24l-.825 6.06-4.519-3.141.715-6.901c.263-2.492.375-4.088.336-4.788-.04-.7-.198-1.273-.474-1.72-.277-.448-.853-.976-1.728-1.584l-.782-.544-6.652 9.57zm12.979-10.599l2.815 1.956c1.72 1.196 2.867 1.881 3.441 2.056.574.175 1.167.134 1.777-.121.611-.256 1.18-.765 1.71-1.526.507-.73.769-1.417.785-2.063a2.718 2.718 0 00-.553-1.741c-.275-.361-1.262-1.132-2.96-2.313l-2.972-2.065zm5.891 23.619l15.362-23.31 3.848 2.536-15.362 23.31zm25.3 3.49l3.024 3.726c-2.156 2.364-4.298 3.768-6.424 4.213-2.126.444-4.219.076-6.28-1.102-2.59-1.482-4.118-3.68-4.586-6.595-.535-3.362.317-6.999 2.555-10.91 2.363-4.133 5.144-6.835 8.343-8.106 2.78-1.101 5.536-.87 8.27.693 2.225 1.273 3.653 3.099 4.282 5.477.45 1.691.316 3.742-.404 6.153l-4.63-1.112c.497-1.457.568-2.75.213-3.882a4.374 4.374 0 00-2.069-2.577c-1.466-.838-3.027-.883-4.684-.134-1.656.749-3.326 2.595-5.01 5.537-1.745 3.053-2.535 5.482-2.369 7.288s.971 3.122 2.415 3.948c1.058.605 2.207.718 3.448.338 1.241-.38 2.543-1.365 3.906-2.955zm21.63 20.25l-4.709-1.762.35-6.64-8.561-3.203-3.988 5.279-4.602-1.722 18.13-23.024 4.584 1.715zm-4.102-13.327l.687-10.804-6.537 8.615zM307.368 23.483l-3.876 1.752-3.752-4.192-7.048 3.185.757 5.547-3.789 1.712-2.856-24.632 3.773-1.706zm-10.412-5.55l-6.033-6.892 1.217 9.07zm12.357 4.955L301.914.455l5.555-1.833 8.383 14.203-1.742-16.393 5.57-1.837 7.4 22.433-3.444 1.136L317.812.505l2.167 18.866-3.58 1.18-9.452-16.462 5.825 17.658zm21.567-6.83l-5.652-22.936 13.955-3.439.956 3.88-10.17 2.506 1.253 5.085 9.45-2.329.952 3.865-9.45 2.328 1.539 6.243 10.513-2.591.952 3.864zm17.554-4.207l-4.196-23.247 8.103-1.462c2.072-.374 3.59-.432 4.553-.175.963.257 1.823.85 2.58 1.777.757.928 1.265 2.11 1.525 3.548.328 1.819.156 3.361-.516 4.629-.671 1.267-1.785 2.189-3.34 2.764.931.443 1.73.968 2.396 1.573.666.606 1.628 1.734 2.887 3.385l3.133 4.117-4.582.827-3.704-4.555c-1.335-1.647-2.223-2.669-2.665-3.064-.443-.395-.88-.643-1.314-.745-.433-.102-1.094-.073-1.981.088l-.793.143 1.751 9.704zm1.416-14.108l2.854-.515c1.744-.315 2.84-.592 3.288-.831.448-.24.778-.618.99-1.137.213-.518.249-1.163.11-1.935-.134-.74-.39-1.308-.766-1.704a2.3 2.3 0 00-1.373-.71c-.38-.051-1.432.079-3.155.39l-3.013.543zm17.71 10.869l-3.202-23.403 3.864-.53 3.202 23.405zm19.11-10.906l3.909 1.099c-.336 2.686-1.13 4.702-2.383 6.047s-2.878 2.114-4.878 2.305c-2.512.241-4.642-.531-6.389-2.317-2.01-2.063-3.198-4.992-3.562-8.788-.385-4.01.218-7.235 1.808-9.675 1.383-2.118 3.4-3.305 6.052-3.559 2.16-.207 4.038.358 5.634 1.694 1.138.948 2.046 2.431 2.725 4.449l-3.742 1.492c-.368-1.25-.95-2.178-1.748-2.787a3.702 3.702 0 00-2.688-.77c-1.422.136-2.523.868-3.302 2.194-.78 1.327-1.032 3.418-.758 6.273.284 2.962.924 5.026 1.92 6.193s2.196 1.684 3.597 1.55c1.027-.099 1.876-.582 2.548-1.45.672-.87 1.091-2.185 1.256-3.95zm25.38 7.385l-4.25.17-1.905-5.294-7.728.309-1.38 5.425-4.154.166 6.593-23.905 4.137-.165zm-7.57-9.05l-3.006-8.653-2.274 8.863zm29.878.829l3.735 1.594c-.68 2.621-1.727 4.518-3.142 5.69-1.416 1.172-3.127 1.724-5.135 1.656-2.523-.085-4.535-1.125-6.037-3.121-1.728-2.305-2.528-5.363-2.4-9.174.136-4.026 1.15-7.147 3.041-9.362 1.645-1.922 3.799-2.838 6.461-2.748 2.169.073 3.958.875 5.368 2.406 1.006 1.087 1.716 2.675 2.13 4.763l-3.904.997c-.204-1.286-.662-2.282-1.374-2.989a3.702 3.702 0 00-2.567-1.11c-1.427-.048-2.613.535-3.557 1.75-.944 1.215-1.464 3.256-1.56 6.122-.101 2.974.268 5.104 1.106 6.39.838 1.286 1.96 1.952 3.366 2 1.03.035 1.936-.335 2.714-1.11.779-.774 1.364-2.025 1.755-3.753zm6.837 9.04l2.042-23.533 14.32 1.242-.346 3.981-10.434-.905-.453 5.217 9.696.841-.344 3.965-9.696-.84-.556 6.404 10.788.936-.344 3.965zm18.007 1.647l3.343-23.384 3.764.538 5.616 16.738 2.232-15.617 3.605.515-3.342 23.385-3.893-.556-5.54-16.353-2.18 15.248zm23.541 3.759l3.863-19.242-5.64-1.132.787-3.918 15.087 3.029-.787 3.918-5.624-1.13-3.863 19.243zm11.97 2.468l6.036-22.838 7.96 2.104c2.036.538 3.436 1.128 4.2 1.769.764.64 1.292 1.541 1.586 2.702.293 1.16.253 2.447-.12 3.86-.473 1.786-1.281 3.111-2.426 3.975-1.145.864-2.544 1.228-4.197 1.091.657.796 1.158 1.609 1.505 2.44.348.83.742 2.26 1.184 4.287l1.097 5.057-4.502-1.19-1.429-5.694c-.513-2.058-.893-3.36-1.128-3.904-.226-.545-.522-.956-.87-1.231-.348-.276-.966-.53-1.834-.76l-.78-.206-2.519 9.534zm7.253-12.182l2.804.74c1.714.454 2.824.666 3.331.64.508-.028.967-.231 1.379-.611.411-.38.717-.95.917-1.708.193-.727.202-1.35.027-1.868a2.3 2.3 0 00-.943-1.224c-.323-.207-1.33-.535-3.023-.982l-2.96-.783zm28.111 22.96l-4.023-1.382.143-5.625-7.315-2.512-3.252 4.557-3.932-1.35 14.806-19.892 3.916 1.345zm-3.776-11.18l.333-9.153-5.332 7.437zm5.769 12.051l9.405-21.458 3.572 1.565-7.808 17.813 8.914 3.907-1.598 3.645z"
1330
+ />
1331
+ </g>
1332
+ </svg>