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.
- package/.editorconfig +13 -0
- package/.eslintrc.json +90 -0
- package/README.md +25 -24
- package/angular.json +190 -0
- package/bun.lock +1998 -0
- package/package.json +48 -19
- package/projects/iss/.eslintrc.json +37 -0
- package/projects/iss/README.md +24 -0
- package/projects/iss/ng-package.json +10 -0
- package/projects/iss/package.json +17 -0
- package/projects/iss/src/components/controls/base/control.base.ts +77 -0
- package/projects/iss/src/components/controls/base/viewer.base.ts +8 -0
- package/projects/iss/src/components/controls/base/wrapper.base.ts +85 -0
- package/projects/iss/src/components/controls/checkbox/checkbox.control.ts +93 -0
- package/projects/iss/src/components/controls/checkbox/checkbox.viewer.ts +15 -0
- package/projects/iss/src/components/controls/checkbox/checkbox.wrapper.ts +36 -0
- package/projects/iss/src/components/controls/chips/chips.control.ts +99 -0
- package/projects/iss/src/components/controls/chips/chips.viewer.ts +23 -0
- package/projects/iss/src/components/controls/chips/chips.wrapper.ts +31 -0
- package/projects/iss/src/components/controls/date-picker/date-picker.control.ts +85 -0
- package/projects/iss/src/components/controls/date-picker/date-picker.viewer.ts +14 -0
- package/projects/iss/src/components/controls/date-picker/date-picker.wrapper.ts +35 -0
- package/projects/iss/src/components/controls/date-range-picker/date-range-picker.control.ts +143 -0
- package/projects/iss/src/components/controls/date-range-picker/date-range-picker.viewer.ts +22 -0
- package/projects/iss/src/components/controls/date-range-picker/date-range-picker.wrapper.ts +35 -0
- package/projects/iss/src/components/controls/datetime-picker/datetime-picker.control.ts +109 -0
- package/projects/iss/src/components/controls/datetime-picker/datetime-picker.viewer.ts +17 -0
- package/projects/iss/src/components/controls/datetime-picker/datetime-picker.wrapper.ts +38 -0
- package/projects/iss/src/components/controls/file-picker/attachment.viewer.ts +165 -0
- package/projects/iss/src/components/controls/file-picker/droppable.directive.ts +28 -0
- package/projects/iss/src/components/controls/file-picker/file-handler.service.ts +115 -0
- package/projects/iss/src/components/controls/file-picker/file-picker.control.ts +187 -0
- package/projects/iss/src/components/controls/file-picker/file-picker.wrapper.ts +120 -0
- package/projects/iss/src/components/controls/input/input.control.ts +95 -0
- package/projects/iss/src/components/controls/input/input.viewer.ts +11 -0
- package/projects/iss/src/components/controls/input/input.wrapper.ts +40 -0
- package/projects/iss/src/components/controls/mobile/flags/ad.svg +282 -0
- package/projects/iss/src/components/controls/mobile/flags/ae.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/af.svg +9 -0
- package/projects/iss/src/components/controls/mobile/flags/ag.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/ai.svg +35 -0
- package/projects/iss/src/components/controls/mobile/flags/al.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/am.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ao.svg +19 -0
- package/projects/iss/src/components/controls/mobile/flags/aq.svg +45 -0
- package/projects/iss/src/components/controls/mobile/flags/ar.svg +66 -0
- package/projects/iss/src/components/controls/mobile/flags/as.svg +225 -0
- package/projects/iss/src/components/controls/mobile/flags/at.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/au.svg +32 -0
- package/projects/iss/src/components/controls/mobile/flags/aw.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/ax.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/az.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/ba.svg +18 -0
- package/projects/iss/src/components/controls/mobile/flags/bb.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/bd.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/be.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/bf.svg +14 -0
- package/projects/iss/src/components/controls/mobile/flags/bg.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/bh.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/bi.svg +26 -0
- package/projects/iss/src/components/controls/mobile/flags/bj.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/bl.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/bm.svg +374 -0
- package/projects/iss/src/components/controls/mobile/flags/bn.svg +70 -0
- package/projects/iss/src/components/controls/mobile/flags/bo.svg +3625 -0
- package/projects/iss/src/components/controls/mobile/flags/bq.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/br.svg +92 -0
- package/projects/iss/src/components/controls/mobile/flags/bs.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/bt.svg +487 -0
- package/projects/iss/src/components/controls/mobile/flags/bv.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/bw.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/by.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/bz.svg +629 -0
- package/projects/iss/src/components/controls/mobile/flags/ca.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/cc.svg +33 -0
- package/projects/iss/src/components/controls/mobile/flags/cd.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/cf.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/cg.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ch.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/ci.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ck.svg +29 -0
- package/projects/iss/src/components/controls/mobile/flags/cl.svg +14 -0
- package/projects/iss/src/components/controls/mobile/flags/cm.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/cn.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/co.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/cr.svg +1332 -0
- package/projects/iss/src/components/controls/mobile/flags/cu.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/cv.svg +24 -0
- package/projects/iss/src/components/controls/mobile/flags/cw.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/cx.svg +24 -0
- package/projects/iss/src/components/controls/mobile/flags/cy.svg +13 -0
- package/projects/iss/src/components/controls/mobile/flags/cz.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/de.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/dj.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/dk.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/dm.svg +198 -0
- package/projects/iss/src/components/controls/mobile/flags/do.svg +238 -0
- package/projects/iss/src/components/controls/mobile/flags/dz.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ec.svg +1292 -0
- package/projects/iss/src/components/controls/mobile/flags/ee.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/eg.svg +125 -0
- package/projects/iss/src/components/controls/mobile/flags/eh.svg +12 -0
- package/projects/iss/src/components/controls/mobile/flags/er.svg +9 -0
- package/projects/iss/src/components/controls/mobile/flags/es.svg +445 -0
- package/projects/iss/src/components/controls/mobile/flags/et.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/eu.svg +28 -0
- package/projects/iss/src/components/controls/mobile/flags/fi.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/fj.svg +203 -0
- package/projects/iss/src/components/controls/mobile/flags/fk.svg +922 -0
- package/projects/iss/src/components/controls/mobile/flags/flags.png +0 -0
- package/projects/iss/src/components/controls/mobile/flags/flags@2x.png +0 -0
- package/projects/iss/src/components/controls/mobile/flags/fm.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/fo.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/fonts.css +271 -0
- package/projects/iss/src/components/controls/mobile/flags/fr.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ga.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/gb-eng.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/gb-nir.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/gb-sct.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/gb-wls.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/gb.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/gd.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/ge.svg +17 -0
- package/projects/iss/src/components/controls/mobile/flags/gf.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/gg.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/gh.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/gi.svg +69 -0
- package/projects/iss/src/components/controls/mobile/flags/gl.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/gm.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/gn.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/gp.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/gq.svg +88 -0
- package/projects/iss/src/components/controls/mobile/flags/gr.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/gs.svg +693 -0
- package/projects/iss/src/components/controls/mobile/flags/gt.svg +317 -0
- package/projects/iss/src/components/controls/mobile/flags/gu.svg +58 -0
- package/projects/iss/src/components/controls/mobile/flags/gw.svg +13 -0
- package/projects/iss/src/components/controls/mobile/flags/gy.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/hk.svg +17 -0
- package/projects/iss/src/components/controls/mobile/flags/hm.svg +32 -0
- package/projects/iss/src/components/controls/mobile/flags/hn.svg +10 -0
- package/projects/iss/src/components/controls/mobile/flags/hr.svg +282 -0
- package/projects/iss/src/components/controls/mobile/flags/ht.svg +1470 -0
- package/projects/iss/src/components/controls/mobile/flags/hu.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/id.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/ie.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/il.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/im.svg +33 -0
- package/projects/iss/src/components/controls/mobile/flags/in.svg +25 -0
- package/projects/iss/src/components/controls/mobile/flags/io.svg +895 -0
- package/projects/iss/src/components/controls/mobile/flags/iq.svg +12 -0
- package/projects/iss/src/components/controls/mobile/flags/ir.svg +31 -0
- package/projects/iss/src/components/controls/mobile/flags/is.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/it.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/je.svg +40 -0
- package/projects/iss/src/components/controls/mobile/flags/jm.svg +9 -0
- package/projects/iss/src/components/controls/mobile/flags/jo.svg +10 -0
- package/projects/iss/src/components/controls/mobile/flags/jp.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/ke.svg +28 -0
- package/projects/iss/src/components/controls/mobile/flags/kg.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/kh.svg +133 -0
- package/projects/iss/src/components/controls/mobile/flags/ki.svg +54 -0
- package/projects/iss/src/components/controls/mobile/flags/km.svg +13 -0
- package/projects/iss/src/components/controls/mobile/flags/kn.svg +24 -0
- package/projects/iss/src/components/controls/mobile/flags/kp.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/kr.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/kw.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/ky.svg +153 -0
- package/projects/iss/src/components/controls/mobile/flags/kz.svg +49 -0
- package/projects/iss/src/components/controls/mobile/flags/la.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/lb.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/lc.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/li.svg +75 -0
- package/projects/iss/src/components/controls/mobile/flags/lk.svg +50 -0
- package/projects/iss/src/components/controls/mobile/flags/lr.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/ls.svg +32 -0
- package/projects/iss/src/components/controls/mobile/flags/lt.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/lu.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/lv.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/ly.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/ma.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/mc.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/md.svg +102 -0
- package/projects/iss/src/components/controls/mobile/flags/me.svg +240 -0
- package/projects/iss/src/components/controls/mobile/flags/mf.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/mg.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/mh.svg +18 -0
- package/projects/iss/src/components/controls/mobile/flags/mk.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/ml.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/mm.svg +12 -0
- package/projects/iss/src/components/controls/mobile/flags/mn.svg +12 -0
- package/projects/iss/src/components/controls/mobile/flags/mo.svg +13 -0
- package/projects/iss/src/components/controls/mobile/flags/mp.svg +2919 -0
- package/projects/iss/src/components/controls/mobile/flags/mq.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/mr.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ms.svg +59 -0
- package/projects/iss/src/components/controls/mobile/flags/mt.svg +52 -0
- package/projects/iss/src/components/controls/mobile/flags/mu.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/mv.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/mw.svg +24 -0
- package/projects/iss/src/components/controls/mobile/flags/mx.svg +1129 -0
- package/projects/iss/src/components/controls/mobile/flags/my.svg +12 -0
- package/projects/iss/src/components/controls/mobile/flags/mz.svg +50 -0
- package/projects/iss/src/components/controls/mobile/flags/na.svg +17 -0
- package/projects/iss/src/components/controls/mobile/flags/nc.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ne.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/nf.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/ng.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/ni.svg +281 -0
- package/projects/iss/src/components/controls/mobile/flags/nl.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/no.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/np.svg +33 -0
- package/projects/iss/src/components/controls/mobile/flags/nr.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/nu.svg +23 -0
- package/projects/iss/src/components/controls/mobile/flags/nz.svg +37 -0
- package/projects/iss/src/components/controls/mobile/flags/om.svg +307 -0
- package/projects/iss/src/components/controls/mobile/flags/pa.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/pe.svg +767 -0
- package/projects/iss/src/components/controls/mobile/flags/pf.svg +38 -0
- package/projects/iss/src/components/controls/mobile/flags/pg.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/ph.svg +28 -0
- package/projects/iss/src/components/controls/mobile/flags/pk.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/pl.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/pm.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/pn.svg +131 -0
- package/projects/iss/src/components/controls/mobile/flags/pr.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/ps.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/pt.svg +79 -0
- package/projects/iss/src/components/controls/mobile/flags/pw.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/py.svg +192 -0
- package/projects/iss/src/components/controls/mobile/flags/qa.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/re.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ro.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/rs.svg +1143 -0
- package/projects/iss/src/components/controls/mobile/flags/ru.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/rw.svg +17 -0
- package/projects/iss/src/components/controls/mobile/flags/sa.svg +23 -0
- package/projects/iss/src/components/controls/mobile/flags/sb.svg +30 -0
- package/projects/iss/src/components/controls/mobile/flags/sc.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/sd.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/se.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/sg.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/sh.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/si.svg +30 -0
- package/projects/iss/src/components/controls/mobile/flags/sj.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/sk.svg +21 -0
- package/projects/iss/src/components/controls/mobile/flags/sl.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/sm.svg +847 -0
- package/projects/iss/src/components/controls/mobile/flags/sn.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/so.svg +13 -0
- package/projects/iss/src/components/controls/mobile/flags/sr.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/ss.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/st.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/stc-icons.css +1 -0
- package/projects/iss/src/components/controls/mobile/flags/sv.svg +3368 -0
- package/projects/iss/src/components/controls/mobile/flags/sx.svg +172 -0
- package/projects/iss/src/components/controls/mobile/flags/sy.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/sz.svg +54 -0
- package/projects/iss/src/components/controls/mobile/flags/tc.svg +88 -0
- package/projects/iss/src/components/controls/mobile/flags/td.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/tf.svg +18 -0
- package/projects/iss/src/components/controls/mobile/flags/tg.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/th.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/tj.svg +32 -0
- package/projects/iss/src/components/controls/mobile/flags/tk.svg +25 -0
- package/projects/iss/src/components/controls/mobile/flags/tl.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/tm.svg +349 -0
- package/projects/iss/src/components/controls/mobile/flags/tn.svg +9 -0
- package/projects/iss/src/components/controls/mobile/flags/to.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/tr.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/tt.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/tv.svg +18 -0
- package/projects/iss/src/components/controls/mobile/flags/tw.svg +12 -0
- package/projects/iss/src/components/controls/mobile/flags/tz.svg +13 -0
- package/projects/iss/src/components/controls/mobile/flags/ua.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/ug.svg +46 -0
- package/projects/iss/src/components/controls/mobile/flags/um.svg +25 -0
- package/projects/iss/src/components/controls/mobile/flags/us.svg +25 -0
- package/projects/iss/src/components/controls/mobile/flags/uy.svg +138 -0
- package/projects/iss/src/components/controls/mobile/flags/uz.svg +30 -0
- package/projects/iss/src/components/controls/mobile/flags/va.svg +277 -0
- package/projects/iss/src/components/controls/mobile/flags/vc.svg +9 -0
- package/projects/iss/src/components/controls/mobile/flags/ve.svg +28 -0
- package/projects/iss/src/components/controls/mobile/flags/vg.svg +96 -0
- package/projects/iss/src/components/controls/mobile/flags/vi.svg +311 -0
- package/projects/iss/src/components/controls/mobile/flags/vn.svg +12 -0
- package/projects/iss/src/components/controls/mobile/flags/vu.svg +20 -0
- package/projects/iss/src/components/controls/mobile/flags/wf.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/ws.svg +14 -0
- package/projects/iss/src/components/controls/mobile/flags/xk.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/ye.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/yt.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/za.svg +17 -0
- package/projects/iss/src/components/controls/mobile/flags/zm.svg +20 -0
- package/projects/iss/src/components/controls/mobile/flags/zw.svg +130 -0
- package/projects/iss/src/components/controls/mobile/mobile.control.ts +222 -0
- package/projects/iss/src/components/controls/mobile/mobile.viewer.ts +11 -0
- package/projects/iss/src/components/controls/mobile/mobile.wrapper.ts +32 -0
- package/projects/iss/src/components/controls/mobile/phone.service.ts +96 -0
- package/projects/iss/src/components/controls/note/note.wrapper.ts +25 -0
- package/projects/iss/src/components/controls/plate/plate-letter.pipe.ts +14 -0
- package/projects/iss/src/components/controls/plate/plate-number.wrapper.ts +36 -0
- package/projects/iss/src/components/controls/plate/plate.control.ts +481 -0
- package/projects/iss/src/components/controls/plate/plate.viewer.ts +289 -0
- package/projects/iss/src/components/controls/radio/radio.control.ts +48 -0
- package/projects/iss/src/components/controls/radio/radio.viewer.ts +14 -0
- package/projects/iss/src/components/controls/radio/radio.wrapper.ts +38 -0
- package/projects/iss/src/components/controls/select/select.control.ts +261 -0
- package/projects/iss/src/components/controls/select/select.viewer.ts +14 -0
- package/projects/iss/src/components/controls/select/select.wrapper.ts +41 -0
- package/projects/iss/src/components/controls/slide-toggle/slide-toggle.control.ts +24 -0
- package/projects/iss/src/components/controls/slide-toggle/slide-toggle.viewer.ts +14 -0
- package/projects/iss/src/components/controls/slide-toggle/slide-toggle.wrapper.ts +31 -0
- package/projects/iss/src/components/controls/table/field.viewer.ts +23 -0
- package/projects/iss/src/components/controls/table/table.wrapper.ts +233 -0
- package/projects/iss/src/components/controls/textarea/textarea.control.ts +54 -0
- package/projects/iss/src/components/controls/textarea/textarea.viewer.ts +11 -0
- package/projects/iss/src/components/controls/textarea/textarea.wrapper.ts +34 -0
- package/projects/iss/src/components/controls/time-picker/time-picker.control.ts +86 -0
- package/projects/iss/src/components/controls/time-picker/time-picker.viewer.ts +10 -0
- package/projects/iss/src/components/controls/time-picker/time-picker.wrapper.ts +31 -0
- package/projects/iss/src/components/controls/toggle-button/toggle-button.control.ts +105 -0
- package/projects/iss/src/components/controls/toggle-button/toggle-button.viewer.ts +15 -0
- package/projects/iss/src/components/controls/toggle-button/toggle-button.wrapper.ts +40 -0
- package/projects/iss/src/components/controls/user-picker/employee.service.ts +73 -0
- package/projects/iss/src/components/controls/user-picker/user-picker.wrapper.ts +128 -0
- package/projects/iss/src/components/outlet/field-data-injector.pipe.ts +20 -0
- package/projects/iss/src/components/outlet/outlet.ts +152 -0
- package/projects/iss/src/components/shared/hints.component.ts +38 -0
- package/projects/iss/src/components/shared/validation-message.component.ts +36 -0
- package/projects/iss/src/events/event-handler.service.ts +47 -0
- package/projects/iss/src/events/load/after-fetch.service.ts +29 -0
- package/projects/iss/src/events/load/load-event.service.ts +26 -0
- package/projects/iss/src/events/load/load-options-event.service.ts +51 -0
- package/projects/iss/src/events/load/load-value-event.service.ts +50 -0
- package/projects/iss/src/events/load/replace-api-keys.service.ts +55 -0
- package/projects/iss/src/events/set-value/get-value-to-set.service.ts +29 -0
- package/projects/iss/src/events/set-value/set-value-event.service.ts +33 -0
- package/projects/iss/src/events/show/show-event.service.ts +11 -0
- package/projects/iss/src/events/triggers/action-trigger-manager.service.ts +51 -0
- package/projects/iss/src/events/triggers/action-trigger.service.ts +30 -0
- package/projects/iss/src/events/triggers/trigger-based-on-json-value.service.ts +19 -0
- package/projects/iss/src/public-api.ts +102 -0
- package/projects/iss/src/shared/classes/field-action-config.ts +56 -0
- package/projects/iss/src/shared/classes/field-action.ts +28 -0
- package/projects/iss/src/shared/classes/field-async-validation.ts +7 -0
- package/projects/iss/src/shared/classes/field-config.ts +113 -0
- package/projects/iss/src/shared/classes/field-option.ts +9 -0
- package/projects/iss/src/shared/classes/field-validation.ts +15 -0
- package/projects/iss/src/shared/classes/form-field.ts +94 -0
- package/projects/iss/src/shared/constants/countries.const.ts +2051 -0
- package/projects/iss/src/shared/constants/date.const.ts +18 -0
- package/projects/iss/src/shared/constants/plate-letters.const.ts +21 -0
- package/projects/iss/src/shared/constants/provider.const.ts +7 -0
- package/projects/iss/src/shared/constants/regex.const.ts +1 -0
- package/projects/iss/src/shared/constants/validation.const.ts +115 -0
- package/projects/iss/src/shared/indexes/components.index.ts +27 -0
- package/projects/iss/src/shared/indexes/services.index.ts +11 -0
- package/projects/iss/src/shared/indexes/validators.index.ts +21 -0
- package/projects/iss/src/shared/interfaces/action.interface.ts +7 -0
- package/projects/iss/src/shared/interfaces/attachment.interface.ts +7 -0
- package/projects/iss/src/shared/interfaces/country.interface.ts +11 -0
- package/projects/iss/src/shared/interfaces/date-range.interface.ts +5 -0
- package/projects/iss/src/shared/interfaces/datetime.interface.ts +4 -0
- package/projects/iss/src/shared/interfaces/dto.interface.ts +12 -0
- package/projects/iss/src/shared/interfaces/field.interface.ts +27 -0
- package/projects/iss/src/shared/interfaces/file.interface.ts +9 -0
- package/projects/iss/src/shared/interfaces/hint.interface.ts +8 -0
- package/projects/iss/src/shared/interfaces/i18n.interface.ts +4 -0
- package/projects/iss/src/shared/interfaces/import.interface.ts +3 -0
- package/projects/iss/src/shared/interfaces/mobile.interface.ts +12 -0
- package/projects/iss/src/shared/interfaces/option.interface.ts +4 -0
- package/projects/iss/src/shared/interfaces/outlet.interface.ts +8 -0
- package/projects/iss/src/shared/interfaces/plate-letter.interface.ts +7 -0
- package/projects/iss/src/shared/interfaces/validation.interface.ts +5 -0
- package/projects/iss/src/shared/pipes/arabic-number.pipe.ts +14 -0
- package/projects/iss/src/shared/pipes/select-status.pipe.ts +10 -0
- package/projects/iss/src/shared/pipes/translate.pipe.ts +20 -0
- package/projects/iss/src/shared/services/form-engine.service.ts +121 -0
- package/projects/iss/src/shared/services/loader.service.ts +51 -0
- package/projects/iss/src/shared/tokens/api-response-mapper.token.ts +4 -0
- package/projects/iss/src/shared/tokens/attachment.token.ts +6 -0
- package/projects/iss/src/shared/tokens/field.token.ts +4 -0
- package/projects/iss/src/shared/tokens/host.token.ts +3 -0
- package/projects/iss/src/shared/tokens/language.token.ts +3 -0
- package/projects/iss/src/shared/tokens/url.token.ts +3 -0
- package/projects/iss/src/shared/types/iso2.type.ts +244 -0
- package/projects/iss/src/shared/types/validation.type.ts +3 -0
- package/projects/iss/src/shared/utilities/array-from.util.ts +7 -0
- package/projects/iss/src/shared/utilities/format-file-size.util.ts +9 -0
- package/projects/iss/src/shared/utilities/get-property-by-path.util.ts +30 -0
- package/projects/iss/src/shared/utilities/http.util.service.ts +19 -0
- package/projects/iss/src/shared/utilities/is-valid-api.util.ts +8 -0
- package/projects/iss/src/shared/utilities/replace-placeholder.util.ts +12 -0
- package/projects/iss/src/validators/core.validator.ts +39 -0
- package/projects/iss/src/validators/file.validator.ts +100 -0
- package/projects/iss/src/validators/time.validator.ts +31 -0
- package/projects/iss/tsconfig.lib.json +13 -0
- package/projects/iss/tsconfig.lib.prod.json +9 -0
- package/projects/iss/tsconfig.spec.json +13 -0
- package/projects/iss/upgrade.scss +68 -0
- package/projects/playground/.eslintrc.json +37 -0
- package/projects/playground/public/favicon.ico +0 -0
- package/projects/playground/public/flags/ad.svg +282 -0
- package/projects/playground/public/flags/ae.svg +6 -0
- package/projects/playground/public/flags/af.svg +9 -0
- package/projects/playground/public/flags/ag.svg +15 -0
- package/projects/playground/public/flags/ai.svg +35 -0
- package/projects/playground/public/flags/al.svg +7 -0
- package/projects/playground/public/flags/am.svg +5 -0
- package/projects/playground/public/flags/ao.svg +19 -0
- package/projects/playground/public/flags/aq.svg +45 -0
- package/projects/playground/public/flags/ar.svg +66 -0
- package/projects/playground/public/flags/as.svg +225 -0
- package/projects/playground/public/flags/at.svg +4 -0
- package/projects/playground/public/flags/au.svg +32 -0
- package/projects/playground/public/flags/aw.svg +11 -0
- package/projects/playground/public/flags/ax.svg +11 -0
- package/projects/playground/public/flags/az.svg +11 -0
- package/projects/playground/public/flags/ba.svg +18 -0
- package/projects/playground/public/flags/bb.svg +11 -0
- package/projects/playground/public/flags/bd.svg +4 -0
- package/projects/playground/public/flags/be.svg +5 -0
- package/projects/playground/public/flags/bf.svg +14 -0
- package/projects/playground/public/flags/bg.svg +5 -0
- package/projects/playground/public/flags/bh.svg +4 -0
- package/projects/playground/public/flags/bi.svg +26 -0
- package/projects/playground/public/flags/bj.svg +5 -0
- package/projects/playground/public/flags/bl.svg +5 -0
- package/projects/playground/public/flags/bm.svg +374 -0
- package/projects/playground/public/flags/bn.svg +70 -0
- package/projects/playground/public/flags/bo.svg +3625 -0
- package/projects/playground/public/flags/bq.svg +5 -0
- package/projects/playground/public/flags/br.svg +92 -0
- package/projects/playground/public/flags/bs.svg +5 -0
- package/projects/playground/public/flags/bt.svg +487 -0
- package/projects/playground/public/flags/bv.svg +11 -0
- package/projects/playground/public/flags/bw.svg +5 -0
- package/projects/playground/public/flags/by.svg +15 -0
- package/projects/playground/public/flags/bz.svg +629 -0
- package/projects/playground/public/flags/ca.svg +7 -0
- package/projects/playground/public/flags/cc.svg +33 -0
- package/projects/playground/public/flags/cd.svg +5 -0
- package/projects/playground/public/flags/cf.svg +7 -0
- package/projects/playground/public/flags/cg.svg +5 -0
- package/projects/playground/public/flags/ch.svg +4 -0
- package/projects/playground/public/flags/ci.svg +5 -0
- package/projects/playground/public/flags/ck.svg +29 -0
- package/projects/playground/public/flags/cl.svg +14 -0
- package/projects/playground/public/flags/cm.svg +15 -0
- package/projects/playground/public/flags/cn.svg +11 -0
- package/projects/playground/public/flags/co.svg +5 -0
- package/projects/playground/public/flags/cr.svg +1332 -0
- package/projects/playground/public/flags/cu.svg +6 -0
- package/projects/playground/public/flags/cv.svg +24 -0
- package/projects/playground/public/flags/cw.svg +16 -0
- package/projects/playground/public/flags/cx.svg +24 -0
- package/projects/playground/public/flags/cy.svg +13 -0
- package/projects/playground/public/flags/cz.svg +5 -0
- package/projects/playground/public/flags/de.svg +5 -0
- package/projects/playground/public/flags/dj.svg +6 -0
- package/projects/playground/public/flags/dk.svg +5 -0
- package/projects/playground/public/flags/dm.svg +198 -0
- package/projects/playground/public/flags/do.svg +238 -0
- package/projects/playground/public/flags/dz.svg +5 -0
- package/projects/playground/public/flags/ec.svg +1292 -0
- package/projects/playground/public/flags/ee.svg +5 -0
- package/projects/playground/public/flags/eg.svg +125 -0
- package/projects/playground/public/flags/eh.svg +12 -0
- package/projects/playground/public/flags/er.svg +9 -0
- package/projects/playground/public/flags/es.svg +445 -0
- package/projects/playground/public/flags/et.svg +16 -0
- package/projects/playground/public/flags/eu.svg +28 -0
- package/projects/playground/public/flags/fi.svg +5 -0
- package/projects/playground/public/flags/fj.svg +203 -0
- package/projects/playground/public/flags/fk.svg +922 -0
- package/projects/playground/public/flags/flags.png +0 -0
- package/projects/playground/public/flags/flags@2x.png +0 -0
- package/projects/playground/public/flags/fm.svg +16 -0
- package/projects/playground/public/flags/fo.svg +11 -0
- package/projects/playground/public/flags/fonts.css +271 -0
- package/projects/playground/public/flags/fr.svg +5 -0
- package/projects/playground/public/flags/ga.svg +5 -0
- package/projects/playground/public/flags/gb-eng.svg +7 -0
- package/projects/playground/public/flags/gb-nir.svg +15 -0
- package/projects/playground/public/flags/gb-sct.svg +11 -0
- package/projects/playground/public/flags/gb-wls.svg +16 -0
- package/projects/playground/public/flags/gb.svg +15 -0
- package/projects/playground/public/flags/gd.svg +11 -0
- package/projects/playground/public/flags/ge.svg +17 -0
- package/projects/playground/public/flags/gf.svg +5 -0
- package/projects/playground/public/flags/gg.svg +8 -0
- package/projects/playground/public/flags/gh.svg +6 -0
- package/projects/playground/public/flags/gi.svg +69 -0
- package/projects/playground/public/flags/gl.svg +4 -0
- package/projects/playground/public/flags/gm.svg +7 -0
- package/projects/playground/public/flags/gn.svg +5 -0
- package/projects/playground/public/flags/gp.svg +5 -0
- package/projects/playground/public/flags/gq.svg +88 -0
- package/projects/playground/public/flags/gr.svg +4 -0
- package/projects/playground/public/flags/gs.svg +693 -0
- package/projects/playground/public/flags/gt.svg +317 -0
- package/projects/playground/public/flags/gu.svg +58 -0
- package/projects/playground/public/flags/gw.svg +13 -0
- package/projects/playground/public/flags/gy.svg +7 -0
- package/projects/playground/public/flags/hk.svg +17 -0
- package/projects/playground/public/flags/hm.svg +32 -0
- package/projects/playground/public/flags/hn.svg +10 -0
- package/projects/playground/public/flags/hr.svg +282 -0
- package/projects/playground/public/flags/ht.svg +1470 -0
- package/projects/playground/public/flags/hu.svg +5 -0
- package/projects/playground/public/flags/id.svg +4 -0
- package/projects/playground/public/flags/ie.svg +5 -0
- package/projects/playground/public/flags/il.svg +5 -0
- package/projects/playground/public/flags/im.svg +33 -0
- package/projects/playground/public/flags/in.svg +25 -0
- package/projects/playground/public/flags/io.svg +895 -0
- package/projects/playground/public/flags/iq.svg +12 -0
- package/projects/playground/public/flags/ir.svg +31 -0
- package/projects/playground/public/flags/is.svg +5 -0
- package/projects/playground/public/flags/it.svg +5 -0
- package/projects/playground/public/flags/je.svg +40 -0
- package/projects/playground/public/flags/jm.svg +9 -0
- package/projects/playground/public/flags/jo.svg +10 -0
- package/projects/playground/public/flags/jp.svg +4 -0
- package/projects/playground/public/flags/ke.svg +28 -0
- package/projects/playground/public/flags/kg.svg +7 -0
- package/projects/playground/public/flags/kh.svg +133 -0
- package/projects/playground/public/flags/ki.svg +54 -0
- package/projects/playground/public/flags/km.svg +13 -0
- package/projects/playground/public/flags/kn.svg +24 -0
- package/projects/playground/public/flags/kp.svg +16 -0
- package/projects/playground/public/flags/kr.svg +16 -0
- package/projects/playground/public/flags/kw.svg +6 -0
- package/projects/playground/public/flags/ky.svg +153 -0
- package/projects/playground/public/flags/kz.svg +49 -0
- package/projects/playground/public/flags/la.svg +5 -0
- package/projects/playground/public/flags/lb.svg +8 -0
- package/projects/playground/public/flags/lc.svg +6 -0
- package/projects/playground/public/flags/li.svg +79 -0
- package/projects/playground/public/flags/lk.svg +50 -0
- package/projects/playground/public/flags/lr.svg +15 -0
- package/projects/playground/public/flags/ls.svg +32 -0
- package/projects/playground/public/flags/lt.svg +5 -0
- package/projects/playground/public/flags/lu.svg +5 -0
- package/projects/playground/public/flags/lv.svg +4 -0
- package/projects/playground/public/flags/ly.svg +8 -0
- package/projects/playground/public/flags/ma.svg +4 -0
- package/projects/playground/public/flags/mc.svg +4 -0
- package/projects/playground/public/flags/md.svg +102 -0
- package/projects/playground/public/flags/me.svg +240 -0
- package/projects/playground/public/flags/mf.svg +5 -0
- package/projects/playground/public/flags/mg.svg +5 -0
- package/projects/playground/public/flags/mh.svg +18 -0
- package/projects/playground/public/flags/mk.svg +6 -0
- package/projects/playground/public/flags/ml.svg +5 -0
- package/projects/playground/public/flags/mm.svg +12 -0
- package/projects/playground/public/flags/mn.svg +12 -0
- package/projects/playground/public/flags/mo.svg +13 -0
- package/projects/playground/public/flags/mp.svg +2919 -0
- package/projects/playground/public/flags/mq.svg +5 -0
- package/projects/playground/public/flags/mr.svg +5 -0
- package/projects/playground/public/flags/ms.svg +59 -0
- package/projects/playground/public/flags/mt.svg +52 -0
- package/projects/playground/public/flags/mu.svg +6 -0
- package/projects/playground/public/flags/mv.svg +8 -0
- package/projects/playground/public/flags/mw.svg +24 -0
- package/projects/playground/public/flags/mx.svg +1129 -0
- package/projects/playground/public/flags/my.svg +12 -0
- package/projects/playground/public/flags/mz.svg +50 -0
- package/projects/playground/public/flags/na.svg +17 -0
- package/projects/playground/public/flags/nc.svg +5 -0
- package/projects/playground/public/flags/ne.svg +6 -0
- package/projects/playground/public/flags/nf.svg +8 -0
- package/projects/playground/public/flags/ng.svg +4 -0
- package/projects/playground/public/flags/ni.svg +281 -0
- package/projects/playground/public/flags/nl.svg +5 -0
- package/projects/playground/public/flags/no.svg +11 -0
- package/projects/playground/public/flags/np.svg +33 -0
- package/projects/playground/public/flags/nr.svg +8 -0
- package/projects/playground/public/flags/nu.svg +23 -0
- package/projects/playground/public/flags/nz.svg +37 -0
- package/projects/playground/public/flags/om.svg +307 -0
- package/projects/playground/public/flags/pa.svg +15 -0
- package/projects/playground/public/flags/pe.svg +767 -0
- package/projects/playground/public/flags/pf.svg +38 -0
- package/projects/playground/public/flags/pg.svg +16 -0
- package/projects/playground/public/flags/ph.svg +28 -0
- package/projects/playground/public/flags/pk.svg +7 -0
- package/projects/playground/public/flags/pl.svg +4 -0
- package/projects/playground/public/flags/pm.svg +5 -0
- package/projects/playground/public/flags/pn.svg +131 -0
- package/projects/playground/public/flags/pr.svg +6 -0
- package/projects/playground/public/flags/ps.svg +6 -0
- package/projects/playground/public/flags/pt.svg +79 -0
- package/projects/playground/public/flags/pw.svg +4 -0
- package/projects/playground/public/flags/py.svg +192 -0
- package/projects/playground/public/flags/qa.svg +7 -0
- package/projects/playground/public/flags/re.svg +5 -0
- package/projects/playground/public/flags/ro.svg +5 -0
- package/projects/playground/public/flags/rs.svg +1143 -0
- package/projects/playground/public/flags/ru.svg +5 -0
- package/projects/playground/public/flags/rw.svg +17 -0
- package/projects/playground/public/flags/sa.svg +23 -0
- package/projects/playground/public/flags/sb.svg +30 -0
- package/projects/playground/public/flags/sc.svg +7 -0
- package/projects/playground/public/flags/sd.svg +6 -0
- package/projects/playground/public/flags/se.svg +5 -0
- package/projects/playground/public/flags/sg.svg +15 -0
- package/projects/playground/public/flags/sh.svg +15 -0
- package/projects/playground/public/flags/si.svg +30 -0
- package/projects/playground/public/flags/sj.svg +11 -0
- package/projects/playground/public/flags/sk.svg +21 -0
- package/projects/playground/public/flags/sl.svg +5 -0
- package/projects/playground/public/flags/sm.svg +847 -0
- package/projects/playground/public/flags/sn.svg +15 -0
- package/projects/playground/public/flags/so.svg +13 -0
- package/projects/playground/public/flags/sr.svg +6 -0
- package/projects/playground/public/flags/ss.svg +8 -0
- package/projects/playground/public/flags/st.svg +16 -0
- package/projects/playground/public/flags/stc-icons.css +1 -0
- package/projects/playground/public/flags/sv.svg +3368 -0
- package/projects/playground/public/flags/sx.svg +172 -0
- package/projects/playground/public/flags/sy.svg +6 -0
- package/projects/playground/public/flags/sz.svg +54 -0
- package/projects/playground/public/flags/tc.svg +88 -0
- package/projects/playground/public/flags/td.svg +5 -0
- package/projects/playground/public/flags/tf.svg +18 -0
- package/projects/playground/public/flags/tg.svg +15 -0
- package/projects/playground/public/flags/th.svg +5 -0
- package/projects/playground/public/flags/tj.svg +32 -0
- package/projects/playground/public/flags/tk.svg +25 -0
- package/projects/playground/public/flags/tl.svg +6 -0
- package/projects/playground/public/flags/tm.svg +349 -0
- package/projects/playground/public/flags/tn.svg +9 -0
- package/projects/playground/public/flags/to.svg +8 -0
- package/projects/playground/public/flags/tr.svg +6 -0
- package/projects/playground/public/flags/tt.svg +5 -0
- package/projects/playground/public/flags/tv.svg +18 -0
- package/projects/playground/public/flags/tw.svg +12 -0
- package/projects/playground/public/flags/tz.svg +13 -0
- package/projects/playground/public/flags/ua.svg +4 -0
- package/projects/playground/public/flags/ug.svg +46 -0
- package/projects/playground/public/flags/um.svg +25 -0
- package/projects/playground/public/flags/us.svg +25 -0
- package/projects/playground/public/flags/uy.svg +138 -0
- package/projects/playground/public/flags/uz.svg +30 -0
- package/projects/playground/public/flags/va.svg +277 -0
- package/projects/playground/public/flags/vc.svg +9 -0
- package/projects/playground/public/flags/ve.svg +28 -0
- package/projects/playground/public/flags/vg.svg +96 -0
- package/projects/playground/public/flags/vi.svg +311 -0
- package/projects/playground/public/flags/vn.svg +12 -0
- package/projects/playground/public/flags/vu.svg +20 -0
- package/projects/playground/public/flags/wf.svg +7 -0
- package/projects/playground/public/flags/ws.svg +14 -0
- package/projects/playground/public/flags/xk.svg +11 -0
- package/projects/playground/public/flags/ye.svg +5 -0
- package/projects/playground/public/flags/yt.svg +5 -0
- package/projects/playground/public/flags/za.svg +17 -0
- package/projects/playground/public/flags/zm.svg +20 -0
- package/projects/playground/public/flags/zw.svg +130 -0
- package/projects/playground/src/app/app.component.ts +119 -0
- package/projects/playground/src/app/app.config.ts +51 -0
- package/projects/playground/src/app/app.routes.ts +41 -0
- package/projects/playground/src/app/login.service.ts +21 -0
- package/projects/playground/src/components/attachment-wrapper.component.ts +45 -0
- package/projects/playground/src/components/attachment.component.ts +35 -0
- package/projects/playground/src/components/checkbox-wrapper.component.ts +43 -0
- package/projects/playground/src/components/chips-wrapper.component.ts +37 -0
- package/projects/playground/src/components/ctrl-array-wrapper.component.ts +76 -0
- package/projects/playground/src/components/date-picker-container.component.ts +22 -0
- package/projects/playground/src/components/date-picker-wrapper.component.ts +41 -0
- package/projects/playground/src/components/date-range-picker-container.component.ts +24 -0
- package/projects/playground/src/components/date-range-picker-wrapper.component.ts +41 -0
- package/projects/playground/src/components/datetime-container.component.ts +25 -0
- package/projects/playground/src/components/datetime-picker-wrapper.component.ts +62 -0
- package/projects/playground/src/components/input-container.component.ts +35 -0
- package/projects/playground/src/components/input-wrapper.component.ts +41 -0
- package/projects/playground/src/components/mobile-container.component.ts +23 -0
- package/projects/playground/src/components/mobile-wrapper.component.ts +36 -0
- package/projects/playground/src/components/note-wrapper.component.ts +37 -0
- package/projects/playground/src/components/outlet-container.component.ts +144 -0
- package/projects/playground/src/components/plate-container.component.ts +22 -0
- package/projects/playground/src/components/plate-wrapper.component.ts +39 -0
- package/projects/playground/src/components/radio-wrapper.component.ts +45 -0
- package/projects/playground/src/components/select-container.component.ts +31 -0
- package/projects/playground/src/components/select-wrapper.component.ts +48 -0
- package/projects/playground/src/components/ships-container.component.ts +23 -0
- package/projects/playground/src/components/slide-toggle-wrapper.component.ts +40 -0
- package/projects/playground/src/components/textarea-container.component.ts +23 -0
- package/projects/playground/src/components/textarea-wrapper.component.ts +54 -0
- package/projects/playground/src/components/time-picker-container.component.ts +23 -0
- package/projects/playground/src/components/time-picker-wrapper.component.ts +43 -0
- package/projects/playground/src/components/toggle-button-wrapper.component.ts +49 -0
- package/projects/playground/src/components/user-picker-wrapper.component.ts +37 -0
- package/projects/playground/src/eServices/create-request.component.ts +28 -0
- package/projects/playground/src/eServices/e-service.component.ts +112 -0
- package/projects/playground/src/eServices/view-request.component.ts +13 -0
- package/projects/playground/src/index.html +13 -0
- package/projects/playground/src/interceptors/header.interceptor.ts +71 -0
- package/projects/playground/src/main.ts +8 -0
- package/projects/playground/src/services/ss.service.ts +62 -0
- package/projects/playground/src/styles.scss +33 -0
- package/projects/playground/src/validators/customValidator.validator.ts +10 -0
- package/projects/playground/tsconfig.app.json +15 -0
- package/tsconfig.json +31 -0
- package/components/autocomplete/autocomplete.component.d.ts +0 -6
- package/components/base-ctrl.d.ts +0 -33
- package/components/checkbox/checkbox.component.d.ts +0 -16
- package/components/chips/chips.component.d.ts +0 -6
- package/components/ctrl-array/ctrl-array.component.d.ts +0 -6
- package/components/date-picker/date-adapter.d.ts +0 -37
- package/components/date-picker/date-picker.component.d.ts +0 -15
- package/components/date-range-picker/date-range-picker.component.d.ts +0 -19
- package/components/datetime-picker/datetime-picker.component.d.ts +0 -14
- package/components/datetime-range-picker/datetime-range-picker.component.d.ts +0 -6
- package/components/file-picker/file-picker.component.d.ts +0 -17
- package/components/hints/hints.component.d.ts +0 -9
- package/components/input/input.component.d.ts +0 -8
- package/components/mobile/COUNTRIES.d.ts +0 -2
- package/components/mobile/mobile.component.d.ts +0 -26
- package/components/mobile/phone.service.d.ts +0 -17
- package/components/note/note.component.d.ts +0 -6
- package/components/plate-number/plate-number.component.d.ts +0 -16
- package/components/radio/radio.component.d.ts +0 -11
- package/components/select/select.component.d.ts +0 -20
- package/components/slide-toggle/slide-toggle.component.d.ts +0 -7
- package/components/textarea/textarea.component.d.ts +0 -6
- package/components/time-picker/time-picker.component.d.ts +0 -19
- package/components/toggle-button/toggle-button.component.d.ts +0 -16
- package/directives/droppable.directive.d.ts +0 -10
- package/esm2022/components/autocomplete/autocomplete.component.mjs +0 -17
- package/esm2022/components/base-ctrl.mjs +0 -93
- package/esm2022/components/checkbox/checkbox.component.mjs +0 -73
- package/esm2022/components/chips/chips.component.mjs +0 -17
- package/esm2022/components/ctrl-array/ctrl-array.component.mjs +0 -17
- package/esm2022/components/date-picker/date-adapter.mjs +0 -183
- package/esm2022/components/date-picker/date-picker.component.mjs +0 -55
- package/esm2022/components/date-range-picker/date-range-picker.component.mjs +0 -101
- package/esm2022/components/datetime-picker/datetime-picker.component.mjs +0 -79
- package/esm2022/components/datetime-range-picker/datetime-range-picker.component.mjs +0 -17
- package/esm2022/components/file-picker/file-picker.component.mjs +0 -121
- package/esm2022/components/hints/hints.component.mjs +0 -66
- package/esm2022/components/input/input.component.mjs +0 -32
- package/esm2022/components/mobile/COUNTRIES.mjs +0 -2041
- package/esm2022/components/mobile/mobile.component.mjs +0 -141
- package/esm2022/components/mobile/phone.service.mjs +0 -99
- package/esm2022/components/note/note.component.mjs +0 -17
- package/esm2022/components/plate-number/plate-number.component.mjs +0 -114
- package/esm2022/components/radio/radio.component.mjs +0 -40
- package/esm2022/components/select/select.component.mjs +0 -123
- package/esm2022/components/slide-toggle/slide-toggle.component.mjs +0 -23
- package/esm2022/components/textarea/textarea.component.mjs +0 -17
- package/esm2022/components/time-picker/time-picker.component.mjs +0 -169
- package/esm2022/components/toggle-button/toggle-button.component.mjs +0 -87
- package/esm2022/directives/droppable.directive.mjs +0 -39
- package/esm2022/interfaces/country.interface.mjs +0 -2
- package/esm2022/interfaces/date-range-emission-object.mjs +0 -2
- package/esm2022/interfaces/hint.interface.mjs +0 -2
- package/esm2022/interfaces/iso2.interface.mjs +0 -2
- package/esm2022/interfaces/mobile.interface.mjs +0 -2
- package/esm2022/interfaces/option.interface.mjs +0 -2
- package/esm2022/interfaces/time.interface.mjs +0 -2
- package/esm2022/iss-ctrl.mjs +0 -5
- package/esm2022/pipes/select-status.pipe.mjs +0 -18
- package/esm2022/public-api.mjs +0 -20
- package/fesm2022/iss-ctrl.mjs +0 -3658
- package/fesm2022/iss-ctrl.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/interfaces/country.interface.d.ts +0 -10
- package/interfaces/date-range-emission-object.d.ts +0 -5
- package/interfaces/hint.interface.d.ts +0 -5
- package/interfaces/iso2.interface.d.ts +0 -1
- package/interfaces/mobile.interface.d.ts +0 -11
- package/interfaces/option.interface.d.ts +0 -4
- package/interfaces/time.interface.d.ts +0 -5
- package/pipes/select-status.pipe.d.ts +0 -8
- package/public-api.d.ts +0 -19
- package/src/components/mobile/flags/ad.svg +0 -154
- package/src/components/mobile/flags/ae.svg +0 -1
- package/src/components/mobile/flags/af.svg +0 -1
- package/src/components/mobile/flags/ag.svg +0 -1
- package/src/components/mobile/flags/ai.svg +0 -1
- package/src/components/mobile/flags/al.svg +0 -1
- package/src/components/mobile/flags/am.svg +0 -1
- package/src/components/mobile/flags/ao.svg +0 -1
- package/src/components/mobile/flags/aq.svg +0 -1
- package/src/components/mobile/flags/ar.svg +0 -1
- package/src/components/mobile/flags/as.svg +0 -1
- package/src/components/mobile/flags/at.svg +0 -1
- package/src/components/mobile/flags/au.svg +0 -1
- package/src/components/mobile/flags/aw.svg +0 -1
- package/src/components/mobile/flags/ax.svg +0 -1
- package/src/components/mobile/flags/az.svg +0 -1
- package/src/components/mobile/flags/ba.svg +0 -1
- package/src/components/mobile/flags/bb.svg +0 -7
- package/src/components/mobile/flags/bd.svg +0 -1
- package/src/components/mobile/flags/be.svg +0 -1
- package/src/components/mobile/flags/bf.svg +0 -1
- package/src/components/mobile/flags/bg.svg +0 -1
- package/src/components/mobile/flags/bh.svg +0 -1
- package/src/components/mobile/flags/bi.svg +0 -26
- package/src/components/mobile/flags/bj.svg +0 -1
- package/src/components/mobile/flags/bl.svg +0 -1
- package/src/components/mobile/flags/bm.svg +0 -1
- package/src/components/mobile/flags/bn.svg +0 -58
- package/src/components/mobile/flags/bo.svg +0 -1
- package/src/components/mobile/flags/bq.svg +0 -1
- package/src/components/mobile/flags/br.svg +0 -1
- package/src/components/mobile/flags/bs.svg +0 -1
- package/src/components/mobile/flags/bt.svg +0 -466
- package/src/components/mobile/flags/bv.svg +0 -1
- package/src/components/mobile/flags/bw.svg +0 -1
- package/src/components/mobile/flags/by.svg +0 -1
- package/src/components/mobile/flags/bz.svg +0 -1
- package/src/components/mobile/flags/ca.svg +0 -1
- package/src/components/mobile/flags/cc.svg +0 -19
- package/src/components/mobile/flags/cd.svg +0 -1
- package/src/components/mobile/flags/cf.svg +0 -1
- package/src/components/mobile/flags/cg.svg +0 -5
- package/src/components/mobile/flags/ch.svg +0 -1
- package/src/components/mobile/flags/ci.svg +0 -1
- package/src/components/mobile/flags/ck.svg +0 -1
- package/src/components/mobile/flags/cl.svg +0 -14
- package/src/components/mobile/flags/cm.svg +0 -15
- package/src/components/mobile/flags/cn.svg +0 -1
- package/src/components/mobile/flags/co.svg +0 -5
- package/src/components/mobile/flags/cr.svg +0 -1
- package/src/components/mobile/flags/cu.svg +0 -6
- package/src/components/mobile/flags/cv.svg +0 -24
- package/src/components/mobile/flags/cw.svg +0 -16
- package/src/components/mobile/flags/cx.svg +0 -15
- package/src/components/mobile/flags/cy.svg +0 -1
- package/src/components/mobile/flags/cz.svg +0 -5
- package/src/components/mobile/flags/de.svg +0 -1
- package/src/components/mobile/flags/dj.svg +0 -1
- package/src/components/mobile/flags/dk.svg +0 -5
- package/src/components/mobile/flags/dm.svg +0 -1
- package/src/components/mobile/flags/do.svg +0 -1
- package/src/components/mobile/flags/dz.svg +0 -5
- package/src/components/mobile/flags/ec.svg +0 -519
- package/src/components/mobile/flags/ee.svg +0 -1
- package/src/components/mobile/flags/eg.svg +0 -78
- package/src/components/mobile/flags/eh.svg +0 -9
- package/src/components/mobile/flags/er.svg +0 -6
- package/src/components/mobile/flags/es.svg +0 -1
- package/src/components/mobile/flags/et.svg +0 -1
- package/src/components/mobile/flags/eu.svg +0 -1
- package/src/components/mobile/flags/fi.svg +0 -5
- package/src/components/mobile/flags/fj.svg +0 -1
- package/src/components/mobile/flags/fk.svg +0 -1
- package/src/components/mobile/flags/fm.svg +0 -16
- package/src/components/mobile/flags/fo.svg +0 -11
- package/src/components/mobile/flags/fr.svg +0 -1
- package/src/components/mobile/flags/ga.svg +0 -5
- package/src/components/mobile/flags/gb-eng.svg +0 -7
- package/src/components/mobile/flags/gb-nir.svg +0 -1
- package/src/components/mobile/flags/gb-sct.svg +0 -1
- package/src/components/mobile/flags/gb-wls.svg +0 -9
- package/src/components/mobile/flags/gb.svg +0 -1
- package/src/components/mobile/flags/gd.svg +0 -1
- package/src/components/mobile/flags/ge.svg +0 -1
- package/src/components/mobile/flags/gf.svg +0 -1
- package/src/components/mobile/flags/gg.svg +0 -8
- package/src/components/mobile/flags/gh.svg +0 -6
- package/src/components/mobile/flags/gi.svg +0 -54
- package/src/components/mobile/flags/gl.svg +0 -4
- package/src/components/mobile/flags/gm.svg +0 -7
- package/src/components/mobile/flags/gn.svg +0 -5
- package/src/components/mobile/flags/gp.svg +0 -1
- package/src/components/mobile/flags/gq.svg +0 -75
- package/src/components/mobile/flags/gr.svg +0 -1
- package/src/components/mobile/flags/gs.svg +0 -1
- package/src/components/mobile/flags/gt.svg +0 -214
- package/src/components/mobile/flags/gu.svg +0 -1
- package/src/components/mobile/flags/gw.svg +0 -13
- package/src/components/mobile/flags/gy.svg +0 -7
- package/src/components/mobile/flags/hk.svg +0 -1
- package/src/components/mobile/flags/hm.svg +0 -1
- package/src/components/mobile/flags/hn.svg +0 -1
- package/src/components/mobile/flags/hr.svg +0 -1
- package/src/components/mobile/flags/ht.svg +0 -1
- package/src/components/mobile/flags/hu.svg +0 -1
- package/src/components/mobile/flags/id.svg +0 -1
- package/src/components/mobile/flags/ie.svg +0 -1
- package/src/components/mobile/flags/il.svg +0 -1
- package/src/components/mobile/flags/im.svg +0 -1
- package/src/components/mobile/flags/in.svg +0 -1
- package/src/components/mobile/flags/io.svg +0 -1
- package/src/components/mobile/flags/iq.svg +0 -1
- package/src/components/mobile/flags/ir.svg +0 -31
- package/src/components/mobile/flags/is.svg +0 -1
- package/src/components/mobile/flags/it.svg +0 -1
- package/src/components/mobile/flags/je.svg +0 -1
- package/src/components/mobile/flags/jm.svg +0 -1
- package/src/components/mobile/flags/jo.svg +0 -7
- package/src/components/mobile/flags/jp.svg +0 -4
- package/src/components/mobile/flags/ke.svg +0 -23
- package/src/components/mobile/flags/kg.svg +0 -1
- package/src/components/mobile/flags/kh.svg +0 -116
- package/src/components/mobile/flags/ki.svg +0 -1
- package/src/components/mobile/flags/km.svg +0 -13
- package/src/components/mobile/flags/kn.svg +0 -1
- package/src/components/mobile/flags/kp.svg +0 -16
- package/src/components/mobile/flags/kr.svg +0 -1
- package/src/components/mobile/flags/kw.svg +0 -6
- package/src/components/mobile/flags/ky.svg +0 -1
- package/src/components/mobile/flags/kz.svg +0 -37
- package/src/components/mobile/flags/la.svg +0 -1
- package/src/components/mobile/flags/lb.svg +0 -5
- package/src/components/mobile/flags/lc.svg +0 -6
- package/src/components/mobile/flags/li.svg +0 -56
- package/src/components/mobile/flags/lk.svg +0 -1
- package/src/components/mobile/flags/lr.svg +0 -15
- package/src/components/mobile/flags/ls.svg +0 -23
- package/src/components/mobile/flags/lt.svg +0 -1
- package/src/components/mobile/flags/lu.svg +0 -1
- package/src/components/mobile/flags/lv.svg +0 -1
- package/src/components/mobile/flags/ly.svg +0 -8
- package/src/components/mobile/flags/ma.svg +0 -1
- package/src/components/mobile/flags/mc.svg +0 -1
- package/src/components/mobile/flags/md.svg +0 -1
- package/src/components/mobile/flags/me.svg +0 -93
- package/src/components/mobile/flags/mf.svg +0 -1
- package/src/components/mobile/flags/mg.svg +0 -1
- package/src/components/mobile/flags/mh.svg +0 -1
- package/src/components/mobile/flags/mk.svg +0 -1
- package/src/components/mobile/flags/ml.svg +0 -5
- package/src/components/mobile/flags/mm.svg +0 -12
- package/src/components/mobile/flags/mn.svg +0 -1
- package/src/components/mobile/flags/mo.svg +0 -10
- package/src/components/mobile/flags/mp.svg +0 -1
- package/src/components/mobile/flags/mq.svg +0 -1
- package/src/components/mobile/flags/mr.svg +0 -1
- package/src/components/mobile/flags/ms.svg +0 -1
- package/src/components/mobile/flags/mt.svg +0 -1
- package/src/components/mobile/flags/mu.svg +0 -1
- package/src/components/mobile/flags/mv.svg +0 -1
- package/src/components/mobile/flags/mw.svg +0 -24
- package/src/components/mobile/flags/mx.svg +0 -1
- package/src/components/mobile/flags/my.svg +0 -1
- package/src/components/mobile/flags/mz.svg +0 -13
- package/src/components/mobile/flags/na.svg +0 -1
- package/src/components/mobile/flags/nc.svg +0 -1
- package/src/components/mobile/flags/ne.svg +0 -6
- package/src/components/mobile/flags/nf.svg +0 -5
- package/src/components/mobile/flags/ng.svg +0 -4
- package/src/components/mobile/flags/ni.svg +0 -161
- package/src/components/mobile/flags/nl.svg +0 -1
- package/src/components/mobile/flags/no.svg +0 -1
- package/src/components/mobile/flags/np.svg +0 -33
- package/src/components/mobile/flags/nr.svg +0 -1
- package/src/components/mobile/flags/nu.svg +0 -1
- package/src/components/mobile/flags/nz.svg +0 -1
- package/src/components/mobile/flags/om.svg +0 -1
- package/src/components/mobile/flags/pa.svg +0 -1
- package/src/components/mobile/flags/pe.svg +0 -320
- package/src/components/mobile/flags/pf.svg +0 -1
- package/src/components/mobile/flags/pg.svg +0 -13
- package/src/components/mobile/flags/ph.svg +0 -1
- package/src/components/mobile/flags/pk.svg +0 -1
- package/src/components/mobile/flags/pl.svg +0 -1
- package/src/components/mobile/flags/pm.svg +0 -1
- package/src/components/mobile/flags/pn.svg +0 -1
- package/src/components/mobile/flags/pr.svg +0 -1
- package/src/components/mobile/flags/ps.svg +0 -1
- package/src/components/mobile/flags/pt.svg +0 -1
- package/src/components/mobile/flags/pw.svg +0 -1
- package/src/components/mobile/flags/py.svg +0 -1
- package/src/components/mobile/flags/qa.svg +0 -1
- package/src/components/mobile/flags/re.svg +0 -1
- package/src/components/mobile/flags/ro.svg +0 -1
- package/src/components/mobile/flags/rs.svg +0 -1
- package/src/components/mobile/flags/ru.svg +0 -1
- package/src/components/mobile/flags/rw.svg +0 -13
- package/src/components/mobile/flags/sa.svg +0 -1
- package/src/components/mobile/flags/sb.svg +0 -1
- package/src/components/mobile/flags/sc.svg +0 -7
- package/src/components/mobile/flags/sd.svg +0 -6
- package/src/components/mobile/flags/se.svg +0 -5
- package/src/components/mobile/flags/sg.svg +0 -11
- package/src/components/mobile/flags/sh.svg +0 -1
- package/src/components/mobile/flags/si.svg +0 -1
- package/src/components/mobile/flags/sj.svg +0 -1
- package/src/components/mobile/flags/sk.svg +0 -1
- package/src/components/mobile/flags/sl.svg +0 -1
- package/src/components/mobile/flags/sm.svg +0 -1
- package/src/components/mobile/flags/sn.svg +0 -1
- package/src/components/mobile/flags/so.svg +0 -1
- package/src/components/mobile/flags/sr.svg +0 -1
- package/src/components/mobile/flags/ss.svg +0 -1
- package/src/components/mobile/flags/st.svg +0 -1
- package/src/components/mobile/flags/sv.svg +0 -1
- package/src/components/mobile/flags/sx.svg +0 -1
- package/src/components/mobile/flags/sy.svg +0 -1
- package/src/components/mobile/flags/sz.svg +0 -1
- package/src/components/mobile/flags/tc.svg +0 -1
- package/src/components/mobile/flags/td.svg +0 -1
- package/src/components/mobile/flags/tf.svg +0 -1
- package/src/components/mobile/flags/tg.svg +0 -1
- package/src/components/mobile/flags/th.svg +0 -1
- package/src/components/mobile/flags/tj.svg +0 -1
- package/src/components/mobile/flags/tk.svg +0 -1
- package/src/components/mobile/flags/tl.svg +0 -1
- package/src/components/mobile/flags/tm.svg +0 -1
- package/src/components/mobile/flags/tn.svg +0 -9
- package/src/components/mobile/flags/to.svg +0 -1
- package/src/components/mobile/flags/tr.svg +0 -1
- package/src/components/mobile/flags/tt.svg +0 -5
- package/src/components/mobile/flags/tv.svg +0 -1
- package/src/components/mobile/flags/tw.svg +0 -1
- package/src/components/mobile/flags/tz.svg +0 -1
- package/src/components/mobile/flags/ua.svg +0 -1
- package/src/components/mobile/flags/ug.svg +0 -1
- package/src/components/mobile/flags/um.svg +0 -1
- package/src/components/mobile/flags/us.svg +0 -1
- package/src/components/mobile/flags/uy.svg +0 -1
- package/src/components/mobile/flags/uz.svg +0 -1
- package/src/components/mobile/flags/va.svg +0 -1
- package/src/components/mobile/flags/vc.svg +0 -1
- package/src/components/mobile/flags/ve.svg +0 -1
- package/src/components/mobile/flags/vg.svg +0 -1
- package/src/components/mobile/flags/vi.svg +0 -1
- package/src/components/mobile/flags/vn.svg +0 -1
- package/src/components/mobile/flags/vu.svg +0 -1
- package/src/components/mobile/flags/wf.svg +0 -1
- package/src/components/mobile/flags/ws.svg +0 -1
- package/src/components/mobile/flags/xk.svg +0 -1
- package/src/components/mobile/flags/ye.svg +0 -1
- package/src/components/mobile/flags/yt.svg +0 -1
- package/src/components/mobile/flags/za.svg +0 -1
- package/src/components/mobile/flags/zm.svg +0 -1
- package/src/components/mobile/flags/zw.svg +0 -1
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
<svg viewBox="-5 -5 945 630" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M-5-5h945v630H-5z" fill="#fff" />
|
|
3
|
+
<path d="M345 65h595v70H345zm0 140h595v70H345zM-5 345h945v70H-5zm0 140h945v70H-5z" fill="#0038a8" />
|
|
4
|
+
<g transform="translate(234.285 -392.52) scale(3.77953)">
|
|
5
|
+
<g stroke="#7b3f00" stroke-miterlimit="20">
|
|
6
|
+
<g fill="#fcd116">
|
|
7
|
+
<path
|
|
8
|
+
d="M-19.106 157.888l3.066 4.578c-12.597 9.115-4.906 14.506-13.833 17.424 5.552-5.418-.734-6.254 3.944-17.547"
|
|
9
|
+
stroke-linecap="square"
|
|
10
|
+
stroke-width=".611"
|
|
11
|
+
/>
|
|
12
|
+
<g stroke-width=".6">
|
|
13
|
+
<path
|
|
14
|
+
d="M-24.894 153.753l-1.07 5.405c-15.352-2.461-13.726 6.788-22.101 2.54 7.757.094 4.078-5.01 15.371-9.688"
|
|
15
|
+
stroke-linecap="square"
|
|
16
|
+
stroke-width=".611"
|
|
17
|
+
/>
|
|
18
|
+
<path
|
|
19
|
+
d="M-24.894 153.754l-2.419-.436.025.1c-6.453 1.582-9.957 4.257-12.701 6.29-1.373 1.017-2.558 1.881-3.842 2.35a5.763 5.763 0 0 1-2.666.32c6.662 2.367 6.221-5.512 20.534-3.218z"
|
|
20
|
+
fill="#7b3f00"
|
|
21
|
+
stroke-linecap="square"
|
|
22
|
+
stroke-width=".278"
|
|
23
|
+
/>
|
|
24
|
+
<path d="M-27.361 153.121c-13.014 3.186-14.245 10.862-20.704 8.576" fill="none" stroke-width=".611" />
|
|
25
|
+
</g>
|
|
26
|
+
<path d="M-17.009 148.833l-4.322-4.321-19.448 28.09 28.092-19.447-4.322-4.322-23.77 23.77" stroke-width=".611" />
|
|
27
|
+
<g stroke-width=".6">
|
|
28
|
+
<path
|
|
29
|
+
d="M-26.064 146.737l-4.577 3.065c-9.116-12.596-14.507-4.906-17.424-13.833 5.418 5.552 6.305-.723 17.599 3.955"
|
|
30
|
+
stroke-linecap="square"
|
|
31
|
+
stroke-width=".611"
|
|
32
|
+
/>
|
|
33
|
+
<path
|
|
34
|
+
d="M-26.064 146.738l-1.402-2.019-.053.088c-5.682-3.445-10.051-4.03-13.43-4.534-1.689-.252-3.137-.478-4.377-1.055a5.763 5.763 0 0 1-2.112-1.658c3.038 6.384 8.297.5 16.796 12.244z"
|
|
35
|
+
fill="#7b3f00"
|
|
36
|
+
stroke-linecap="square"
|
|
37
|
+
stroke-width=".278"
|
|
38
|
+
/>
|
|
39
|
+
<path d="M-27.361 144.545c-11.455-6.95-17.753-2.392-20.704-8.576" fill="none" stroke-width=".611" />
|
|
40
|
+
<path d="M-17.009 148.833v-6.112l-33.615 6.112 33.615 6.112v-6.112h-33.615" stroke-width=".611" />
|
|
41
|
+
<path d="M-17.009 148.833v6.112-6.112h-33.615l33.615 6.112" fill="#7b3f00" stroke="none" />
|
|
42
|
+
<path
|
|
43
|
+
d="M-21.929 140.948l-5.404-1.069c2.46-15.353-6.789-13.727-2.54-22.102-.095 7.757 5.272 4.699 9.95 15.992"
|
|
44
|
+
stroke-linecap="square"
|
|
45
|
+
stroke-width=".611"
|
|
46
|
+
/>
|
|
47
|
+
<path
|
|
48
|
+
d="M-21.93 140.949l.436-2.42-.1.026c-1.581-6.454-4.257-9.958-6.29-12.702-1.016-1.373-1.88-2.557-2.349-3.842a5.763 5.763 0 0 1-.32-2.665c-2.367 6.661 5.512 6.22 3.218 20.534z"
|
|
49
|
+
fill="#7b3f00"
|
|
50
|
+
stroke-linecap="square"
|
|
51
|
+
stroke-width=".278"
|
|
52
|
+
/>
|
|
53
|
+
<path d="M-21.297 138.481c-3.185-13.014-10.862-14.244-8.576-20.704" fill="none" stroke-width=".611" />
|
|
54
|
+
<path d="M-17.009 148.833l4.322-4.321-28.092-19.448 19.448 28.091 4.322-4.322-23.77-23.77" stroke-width=".611" />
|
|
55
|
+
<path d="M-17.009 148.833l-4.322 4.322 4.322-4.322-23.77-23.77 19.448 28.092" fill="#7b3f00" stroke="none" />
|
|
56
|
+
<path
|
|
57
|
+
d="M-14.912 139.779l-3.066-4.578c12.597-9.116 4.906-14.506 13.833-17.424-5.552 5.418.702 6.312-3.976 17.605"
|
|
58
|
+
stroke-linecap="square"
|
|
59
|
+
stroke-width=".611"
|
|
60
|
+
/>
|
|
61
|
+
<path
|
|
62
|
+
d="M-14.913 139.778l2.018-1.402-.088-.053c3.445-5.681 4.031-10.05 4.534-13.429.252-1.69.478-3.138 1.056-4.378a5.763 5.763 0 0 1 1.657-2.111c-6.384 3.037-.5 8.296-12.244 16.795z"
|
|
63
|
+
fill="#7b3f00"
|
|
64
|
+
stroke-linecap="square"
|
|
65
|
+
stroke-width=".278"
|
|
66
|
+
/>
|
|
67
|
+
<path d="M-12.72 138.481c6.949-11.455 2.391-17.753 8.575-20.704" fill="none" stroke-width=".611" />
|
|
68
|
+
<path d="M-17.009 148.833h6.112l-6.112-33.615-6.112 33.615h6.112v-33.615" stroke-width=".611" />
|
|
69
|
+
<path d="M-17.009 148.833h-6.112 6.112v-33.615l-6.112 33.615" fill="#7b3f00" stroke="none" />
|
|
70
|
+
<path
|
|
71
|
+
d="M-9.124 143.913l1.07-5.404c15.352 2.461 13.726-6.789 22.102-2.54-7.758-.094-4.302 5.036-15.595 9.714"
|
|
72
|
+
stroke-linecap="square"
|
|
73
|
+
stroke-width=".611"
|
|
74
|
+
/>
|
|
75
|
+
<path
|
|
76
|
+
d="M-9.124 143.912l2.419.436-.025-.1c6.453-1.581 9.957-4.256 12.701-6.29 1.373-1.016 2.558-1.88 3.842-2.349a5.763 5.763 0 0 1 2.666-.32c-6.662-2.367-6.22 5.512-20.534 3.218z"
|
|
77
|
+
fill="#7b3f00"
|
|
78
|
+
stroke-linecap="square"
|
|
79
|
+
stroke-width=".278"
|
|
80
|
+
/>
|
|
81
|
+
<path d="M-6.657 144.545c13.014-3.185 14.245-10.862 20.705-8.576" fill="none" stroke-width=".611" />
|
|
82
|
+
<path d="M-17.009 148.833l4.322 4.322L6.76 125.064l-28.092 19.448 4.322 4.321 23.77-23.77" stroke-width=".611" />
|
|
83
|
+
<path d="M-17.009 148.833l-4.322-4.321 4.322 4.321 23.77-23.77-28.092 19.449" fill="#7b3f00" stroke="none" />
|
|
84
|
+
<path
|
|
85
|
+
d="M-7.954 150.93l4.577-3.065c9.116 12.596 14.507 4.906 17.425 13.832-5.419-5.552-6.436.661-17.73-4.017"
|
|
86
|
+
stroke-linecap="square"
|
|
87
|
+
stroke-width=".611"
|
|
88
|
+
/>
|
|
89
|
+
<path
|
|
90
|
+
d="M-7.954 150.93l1.402 2.018.053-.089c5.682 3.445 10.051 4.031 13.43 4.534 1.689.252 3.138.479 4.377 1.056a5.763 5.763 0 0 1 2.112 1.658c-3.037-6.384-8.297-.501-16.796-12.244z"
|
|
91
|
+
fill="#7b3f00"
|
|
92
|
+
stroke-linecap="square"
|
|
93
|
+
stroke-width=".278"
|
|
94
|
+
/>
|
|
95
|
+
<path d="M-6.657 153.121c11.455 6.95 17.753 2.392 20.705 8.576" fill="none" stroke-width=".611" />
|
|
96
|
+
<path d="M-17.009 148.833v6.112l33.615-6.112-33.615-6.112v6.112h33.615" stroke-width=".611" />
|
|
97
|
+
<path d="M-17.009 148.833v-6.112 6.112h33.615l-33.615-6.112" fill="#7b3f00" stroke="none" />
|
|
98
|
+
<path
|
|
99
|
+
d="M-12.089 156.719l5.405 1.069c-2.462 15.353 6.788 13.726 2.54 22.102.094-7.757-5.014-4.165-9.691-15.458"
|
|
100
|
+
stroke-linecap="square"
|
|
101
|
+
stroke-width=".611"
|
|
102
|
+
/>
|
|
103
|
+
<path
|
|
104
|
+
d="M-12.088 156.718l-.436 2.419.1-.025c1.582 6.453 4.257 9.957 6.29 12.702 1.016 1.373 1.88 2.557 2.349 3.842a5.763 5.763 0 0 1 .321 2.665c2.367-6.662-5.513-6.22-3.219-20.534z"
|
|
105
|
+
fill="#7b3f00"
|
|
106
|
+
stroke-linecap="square"
|
|
107
|
+
stroke-width=".278"
|
|
108
|
+
/>
|
|
109
|
+
<path d="M-12.72 159.186C-9.536 172.2-1.86 173.43-4.146 179.89" fill="none" stroke-width=".611" />
|
|
110
|
+
<path d="M-17.009 148.833l-4.322 4.322 28.092 19.448-19.448-28.091-4.322 4.321 23.77 23.77" stroke-width=".611" />
|
|
111
|
+
<path d="M-17.009 148.833l4.322-4.321-4.322 4.321 23.77 23.77-19.448-28.091" fill="#7b3f00" stroke="none" />
|
|
112
|
+
</g>
|
|
113
|
+
</g>
|
|
114
|
+
<path
|
|
115
|
+
d="M-19.105 157.888l-2.018 1.403.088.053c-3.445 5.681-4.03 10.05-4.534 13.429-.252 1.69-.478 3.138-1.056 4.377a5.763 5.763 0 0 1-1.657 2.112c6.384-3.037.5-8.297 12.244-16.796z"
|
|
116
|
+
fill="#7b3f00"
|
|
117
|
+
stroke-linecap="square"
|
|
118
|
+
stroke-width=".278"
|
|
119
|
+
/>
|
|
120
|
+
<g stroke-width=".611">
|
|
121
|
+
<path d="M-21.297 159.186c-6.95 11.454-2.392 17.752-8.576 20.704" fill="none" />
|
|
122
|
+
<path d="M-17.009 148.833h-6.112l6.112 33.616 6.112-33.616h-6.112v33.616" fill="#fcd116" />
|
|
123
|
+
</g>
|
|
124
|
+
</g>
|
|
125
|
+
<path d="M-17.009 148.833h6.112-6.112v33.616l6.112-33.616" fill="#7b3f00" />
|
|
126
|
+
<path d="M-17.009 148.833l4.322 4.322-4.322-4.322-23.77 23.77 28.092-19.448" fill="#7b3f00" />
|
|
127
|
+
<circle cx="-17.009" cy="148.833" fill="#fcd116" r="11.205" stroke="#7b3f00" stroke-miterlimit="20" stroke-width=".611" />
|
|
128
|
+
<g fill="#7b3f00">
|
|
129
|
+
<path d="M-8.758 144.351c-.713.815-1.12-.61-3.667-.61-2.547 0-2.954 1.527-3.362 1.221-.407-.305 2.14-2.139 2.955-2.24.814-.102 3.157.713 4.074 1.63m-2.954.916c.713.611.102 1.936-.611 1.936s-2.037-1.223-1.426-2.038" />
|
|
130
|
+
<path d="M-15.074 146.185c.102-1.223 1.121-1.426 2.75-1.426 1.63 0 2.344 1.222 2.955 1.528-.713 0-1.324-1.019-2.954-1.019-1.63 0-1.63 0-2.75 1.019m.305.203c.408-.61.917.612 2.037.612 1.12 0 1.732-.306 2.445-.815.713-.51-1.019 1.222-2.139 1.222s-2.649-.611-2.343-1.019m-7.945-1.324c-.51.204-1.325 1.223 0 1.936-1.02-.713-.204-1.732 0-1.936z" />
|
|
131
|
+
<path d="M-11.304 145.166c.203.204 1.018 1.223 0 1.936 1.324-.713.509-1.732 0-1.936zm-7.335 4.38c-.917.204-.611 1.528-1.426 1.63-.815.102-1.222 1.019-1.12.917.509-.407 1.63-.713 2.444-.713.815 0 1.019.51 1.732.51s.917-.51 1.732-.51 1.935.306 2.445.713c.101.102-.306-.815-1.12-.917-.816-.102-.51-1.426-1.427-1.63 0 .408.305.306.407.917 0 .51-.916.51-1.12 0 .204.815-.408.815-.917.815s-1.12 0-.917-.815c-.203.51-1.12.51-1.12 0 .102-.611.407-.51.407-.917zm-3.158 3.464c-.815.611-1.018.917-1.12 1.63.244-.428.364-.604.55-.855l-.142-.062c.059.007.112.016.17.024.122-.166.232-.31.542-.737z" />
|
|
132
|
+
<path d="M-22.34 153.747l-.013.018c.128.03.263.043.404.044a10.998 10.998 0 0 0-.39-.062zm.391.062c.636.112 1.134.258 1.591.406.57-.042 1.357-.187 3.35-.187s2.778.145 3.348.187c.457-.148.956-.294 1.59-.406-1.122.004-2.618-.8-3.31-.8-.814 0-1.018.204-1.629.204s-.815-.203-1.63-.203c-.691 0-2.187.803-3.31.799zm9.879 0c.142 0 .278-.015.405-.044l-.013-.018c-.136.02-.267.04-.391.062z" />
|
|
133
|
+
<path d="M-11.678 153.747c.057-.008.11-.017.17-.024-.051.021-.093.04-.143.062.186.251.306.427.55.855-.102-.713-.305-1.019-1.12-1.63.31.427.42.57.543.737z" />
|
|
134
|
+
<path d="M-11.65 153.785a.037.037 0 0 0-.006-.007c-1.063.41-1.437.48-2.004.437-.966.313-1.762.629-3.349.629s-2.383-.316-3.349-.629c-.567.042-.941-.027-2.004-.437a.037.037 0 0 1-.005.007c3.2 1.377 2.85 1.873 5.358 1.873s2.158-.496 5.358-1.873zm-10.712-.007a.72.72 0 0 1 .01-.013 1.29 1.29 0 0 1-.157-.042c.058.023.093.034.147.055zm10.706 0c.054-.021.09-.032.148-.055-.05.018-.104.03-.157.042a.72.72 0 0 0 .01.013zm-13.604-9.427c.713.815 1.12-.61 3.667-.61s2.954 1.527 3.362 1.221-2.14-2.139-2.954-2.24-3.158.713-4.075 1.63m2.954.916c-.713.611-.102 1.936.611 1.936s2.038-1.223 1.426-2.038" />
|
|
135
|
+
<path d="M-18.944 146.185c-.102-1.223-1.12-1.426-2.75-1.426s-2.344 1.222-2.955 1.528c.713 0 1.324-1.019 2.954-1.019s1.63 0 2.75 1.019m-.305.203c-.407-.61-.917.612-2.037.612s-1.732-.306-2.445-.815 1.019 1.222 2.14 1.222 2.648-.611 2.342-1.019m2.241 10.085c-.51 0-1.833.306 0 .306s.51-.306 0-.306" />
|
|
136
|
+
</g>
|
|
137
|
+
</g>
|
|
138
|
+
</svg>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<svg viewBox="0 0 500 250" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
2
|
+
<path d="M0 0h500v250H0z" fill="#1eb53a" />
|
|
3
|
+
<path d="M0 0h500v125H0z" fill="#0099b5" />
|
|
4
|
+
<path d="M0 80h500v90H0z" fill="#ce1126" />
|
|
5
|
+
<path d="M0 85h500v80H0z" fill="#fff" />
|
|
6
|
+
<circle cx="70" cy="40" fill="#fff" r="30" />
|
|
7
|
+
<circle cx="80" cy="40" fill="#0099b5" r="30" />
|
|
8
|
+
<g fill="#fff" transform="translate(136 64)">
|
|
9
|
+
<g id="e">
|
|
10
|
+
<g id="d">
|
|
11
|
+
<g id="c">
|
|
12
|
+
<g id="b">
|
|
13
|
+
<path d="M0-6v6h3" id="a" transform="rotate(18 0 -6)" />
|
|
14
|
+
<use transform="scale(-1 1)" xlink:href="#a" />
|
|
15
|
+
</g>
|
|
16
|
+
<use transform="rotate(72)" xlink:href="#b" />
|
|
17
|
+
</g>
|
|
18
|
+
<use transform="rotate(-72)" xlink:href="#b" />
|
|
19
|
+
<use transform="rotate(144)" xlink:href="#c" />
|
|
20
|
+
</g>
|
|
21
|
+
<use xlink:href="#d" y="-24" />
|
|
22
|
+
<use xlink:href="#d" y="-48" />
|
|
23
|
+
</g>
|
|
24
|
+
<use x="24" xlink:href="#e" />
|
|
25
|
+
<use x="48" xlink:href="#e" />
|
|
26
|
+
<use x="-48" xlink:href="#d" />
|
|
27
|
+
<use x="-24" xlink:href="#d" />
|
|
28
|
+
<use x="-24" xlink:href="#d" y="-24" />
|
|
29
|
+
</g>
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,277 @@
|
|
|
1
|
+
<svg viewBox="0 0 2500 2500" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
2
|
+
<path d="M0 0h2500v2500H0z" fill="#fff" />
|
|
3
|
+
<path d="M0 0h1250v2500H0z" fill="#ffe000" />
|
|
4
|
+
<g stroke="#000" stroke-linejoin="round" stroke-width="3.205">
|
|
5
|
+
<g fill="#ce9d09" stroke-linecap="round">
|
|
6
|
+
<g id="a">
|
|
7
|
+
<path
|
|
8
|
+
d="M1781.07 990.292l16.106 3.841 25.663 4.17 11.76 1.292-2.076 49.916s-2.808 33.178-7.688 48.961c-3.618 11.701-15.781 33.18-15.781 33.18l-7.688 11.736-45.32-39.25s7.725-10.948 10.52-16.996c3.508-7.589 7.689-23.874 7.689-23.874l4.45-25.897 2.428-32.776zm-56.991 151.477l41.273 36.013s-8.345 7.428-13.353 9.711c-9.824 4.48-20.767 7.517-31.562 7.284-7.728-.167-15.32-2.973-22.35-6.186-15.722-7.184-33.032-14.73-43.168-28.732-3.587-4.954-5.003-11.57-4.89-17.685.128-6.933 6.281-19.832 6.281-19.832s2.391 8.636 5.133 12.023c4.513 5.572 11.118 9.302 17.597 12.375 4.848 2.299 10.144 4.022 15.5 4.336 6.951.407 14.163-.674 20.637-3.237 3.339-1.323 8.902-6.07 8.902-6.07z"
|
|
9
|
+
fill="#fff"
|
|
10
|
+
/>
|
|
11
|
+
<path
|
|
12
|
+
d="M1658.65 877.67s3.294 6.6 4.297 10.128c1.715 6.033 2.908 12.326 2.861 18.598-.047 6.287-1.468 12.539-3.147 18.598-2.516 9.08-6.32 17.783-10.3 26.323-2.525 5.416-6.055 10.324-8.584 15.737-4.08 8.729-6.994 17.956-10.587 26.896-2.999 7.46-6.864 14.61-9.156 22.318-3.044 10.238-4.562 20.891-6.009 31.474-1.244 9.103-2.228 18.28-2.289 27.468-.07 10.899.257 21.91 2.29 32.618 2.013 10.61 4.976 21.204 9.728 30.901 3.83 7.817 8.931 15.104 14.878 21.46 4.916 5.253 10.706 9.756 16.882 13.448 5.61 3.354 11.95 5.31 18.025 7.725 8.392 3.336 25.433 9.335 25.433 9.335s-23.527-11.592-31.727-21.352c-6.784-8.074-10.521-18.62-12.876-28.899-2.727-11.905-2.383-24.473-1.144-36.624 1.332-13.072 5.179-25.817 9.156-38.34 4.196-13.218 10.095-25.836 15.45-38.627 3.86-9.22 8.276-18.201 12.018-27.468 4.417-10.942 8.764-21.935 12.303-33.19 2.158-6.866 4.85-13.722 5.43-20.895.631-7.792-.383-15.742-2.17-23.353-2.503-10.663-5.598-21.65-11.836-30.652-3.754-5.419-8.898-10.153-14.77-13.151-5.732-2.927-12.543-5.401-18.857-4.154-2.11.417-5.299 3.678-5.299 3.678z"
|
|
13
|
+
fill="#fff"
|
|
14
|
+
/>
|
|
15
|
+
<path
|
|
16
|
+
d="M1711.59 945.594s4.454-17.99 5.208-27.187c.646-7.867.225-15.822-.607-23.672-.924-8.734-1.468-17.793-4.855-25.897-3.514-8.406-9.025-16.13-15.579-22.457-6.46-6.237-14.294-11.306-22.66-14.568-8.801-3.431-18.491-4.278-27.92-4.855-8.088-.495-16.24.191-24.279 1.214-4.644.59-9.323 1.33-13.757 2.832-4.115 1.393-11.735 5.665-11.735 5.665l29.943 48.962s9.373-5.518 14.567-6.88c5.494-1.439 11.326-1.545 16.995-1.213 5.757.337 11.726.894 16.995 3.237 6.707 2.983 12.49 7.984 17.547 13.304 6.102 6.42 11.549 13.787 14.96 21.961 3.166 7.59 3.581 16.072 4.72 24.217.248 1.769.457 5.337.457 5.337z"
|
|
17
|
+
fill="#fff"
|
|
18
|
+
/>
|
|
19
|
+
<path d="M1717.05 906.676s-5.334-16.56-10.37-23.474c-5.85-8.031-13.365-15.391-22.255-19.828-9.428-4.704-30.994-6.216-30.994-6.216l11.414 21.128-19.966-.487-10.427-17.435-19.232 8.706-9.568-15.645 20.431-9.473-9.414-15.185 20.423-1.943 8.892 14.7s15.874.048 23.588 1.668c5.238 1.1 10.385 2.91 15.12 5.405 4.532 2.388 8.698 5.521 12.447 9.012 4.508 4.2 8.732 8.865 11.874 14.164 3.054 5.15 6.542 16.727 6.542 16.727z" />
|
|
20
|
+
<path d="M1581.65 845.092l31.9 46.592m-17.97-54.736l-15.032 8.789-14.307 10.872 30.902 47.21 13.734-10.586 14.12-8.183zm58.21 198.922l17.883-36.91 19.139 7.613 7.755-19.059-19.026-8.869 9.872-21.316-14.02-6.295-10.587 20.458-19.194-8.024-8.428 19.963 18.609 7.803-17.168 36.625zm143.13-11.04l18.209-.405v21.042l17.533.831-2.982 21.358-16.358-1.03s-2.698 12.575-5.121 18.496c-2.513 6.14-9.662 17.4-9.662 17.4l-19.423-4.856s7.026-11.049 9.711-16.995c2.405-5.326 5.665-16.59 5.665-16.59l-19.939-2.517 3.47-20.192 18.088 1.262z" />
|
|
21
|
+
</g>
|
|
22
|
+
<use transform="matrix(-1 0 0 1 3717.75 0)" xlink:href="#a" />
|
|
23
|
+
<path
|
|
24
|
+
d="M1756.66 735.602l-27.42 29.446 16.881 50.93 9.666 35.795-27.723 25.826 50.729 71.05-17.366 19.818c-1.817 2.329-2.455 5.662-2.144 8.6.286 2.693 1.582 5.464 3.577 7.296 4.56 4.187 11.328 5.133 17.31 6.724 21.066 5.602 42.928 8.102 64.665 9.728 4.668.35 14.042 0 14.042 0s9.358.35 14.043 0c21.737-1.626 43.6-4.126 64.664-9.728 5.983-1.59 12.751-2.537 17.31-6.724 1.996-1.832 3.292-4.603 3.578-7.296.311-2.938-.327-6.271-2.145-8.6l-16.301-35.876 51.819-55.52-19.776-17.835-.436-43.258 16.882-50.93-25.412-25.724-22.943-61.258s-4.801-17.08-8.87-24.893c-2.433-4.67-5.832-8.791-9.156-12.876-3.983-4.894-8.002-9.87-12.876-13.877-4.416-3.63-9.536-6.346-14.592-9.013-5.433-2.866-10.892-5.956-16.845-7.472-6.14-1.563-18.944-1.54-18.944-1.54s-12.787-.027-18.943 1.54c-5.953 1.515-11.412 4.606-16.845 7.472-5.056 2.667-10.176 5.382-14.592 9.013-4.875 4.007-8.893 8.983-12.876 13.877-3.324 4.085-6.723 8.205-9.156 12.876-4.07 7.812-8.87 24.893-8.87 24.893z"
|
|
25
|
+
fill="#fff"
|
|
26
|
+
/>
|
|
27
|
+
<path
|
|
28
|
+
d="M1963.27 933.128s-3.177-2.845-4.96-4a64.476 64.476 0 00-11.937-6.07c-5.607-2.147-11.553-3.288-17.4-4.653-6.697-1.563-13.414-3.14-20.232-4.046-7.973-1.06-16.033-1.538-24.076-1.619-8.607-.086-25.793 1.214-25.793 1.214s-17.17-1.3-25.794-1.214c-8.043.082-16.102.558-24.076 1.619-6.817.907-13.534 2.483-20.232 4.046-5.846 1.365-11.793 2.506-17.4 4.654a64.476 64.476 0 00-11.936 6.07c-1.783 1.154-4.96 3.999-4.96 3.999m218.71-42.693s-5.183-5.268-8.602-5.918c-2.21-.42-4.741.214-6.575 1.517-2.372 1.685-3.956 4.56-4.654 7.385-.624 2.528-.353 5.368.607 7.79.813 2.05 2.1 4.337 4.148 5.158 4.8 1.926 15.384-2.024 15.384-2.024zm5.156-3.592c5.801.17 7.914 3.108 9.454 6.475m-243.23-2.882l-.307 13.907s10.583 3.95 15.383 2.024c2.048-.821 3.335-3.108 4.148-5.159.96-2.42 1.232-5.261.607-7.79-.698-2.824-2.282-5.699-4.654-7.384-1.833-1.303-4.368-1.95-6.575-1.517-3.445.676-8.602 5.919-8.602 5.919zm-5.156-3.593c-5.801.17-7.914 3.108-9.454 6.475m198.167 1.346l-8.447-.946m-130.044.946l8.447-.946m75.992.814c-2.865-.422-7.6-4.21-7.6-4.21m-22.786 4.21c2.865-.422 7.6-4.21 7.6-4.21m140.936-19.346s-4.215 3.347-7.285 3.858l-1.211.644s-1.947 5.728-3.662 8.174c-1.719 2.451-6.465 6.25-6.465 6.25s-4.787-4.144-7.744-4.951c-1.94-.53-4.163-.544-6.025.215-1.976.804-3.548 2.535-4.737 4.306-1.403 2.093-2.706 4.583-2.588 7.1.141 3.014 3.877 8.184 3.877 8.184l-2.578 4.511-3.662 2.373c-6.314-1.913-12.63-3.935-18.945-7.539-1.732-1.888-3.358-4.302-4.522-9.033 0 0 4.544-2.693 5.596-4.951 1.182-2.538 1.668-6.006.215-8.399-1.616-2.66-5.276-4.042-8.389-4.091-2.28-.037-4.689 1.14-6.25 2.802-1.679 1.788-2.975 4.465-2.578 6.885.404 2.466 4.736 5.81 4.736 5.81s-1.8 4.559-3.838 5.43c-6.011 2.572-9.978 4.04-15.244 4.854-5.21.804-11.072 1.465-16.298-.02-3.376-.958-6.845-2.73-8.965-5.527-.631-.833-.86-3.008-.86-3.008s6.467-1.679 9.043-3.662c2.56-1.97 5.283-4.568 5.81-7.754.532-3.2-1.17-6.59-3.017-9.258-1.83-2.644-4.582-4.738-7.53-6.025-1.329-.58-4.306-.645-4.306-.645s-.63.571-.937.86c-1.244 1.598-2.954 2.862-4.766 3.808-.032.019-.076.051-.107.069-.044.024-.129.044-.176.068-.38.19-.75.41-1.133.567-.2.081-.51.093-.742.156-1.27.429-2.47.781-2.47.781s3.863 1.196 4.95 2.735c.672.95.963 2.109 1.084 3.31.149.713.235 1.434.206 2.129-.047 1.11-.323 2.233-.704 3.33-.348 1.278-.839 2.507-1.67 3.496-.45.537-1.003.985-1.591 1.387-.028.023-.05.056-.078.078-.03.023-.086.036-.118.059a12.406 12.406 0 01-3.378 1.494c-1.372.382-4.186.08-4.288.068.104 0 5.51-.01 7.666-1.562.067-.043.13-.092.196-.137 1.51-1.205 2.6-2.976 3.261-4.883.21-.766.415-1.543.489-2.314a16.43 16.43 0 00.01-3.145c-.33-1.584-1.061-3.123-2.217-4.15-2.417-2.148-9.324-2.409-9.414-2.412-.107.004-6.99.267-9.404 2.412-1.156 1.027-1.887 2.566-2.217 4.15a16.272 16.272 0 00.01 3.145c.073.77.279 1.548.488 2.314.662 1.907 1.752 3.678 3.262 4.883.065.045.128.094.195.137 2.156 1.553 7.562 1.562 7.666 1.562-.101.011-2.916.314-4.287-.068a12.406 12.406 0 01-3.379-1.494c-.031-.023-.087-.036-.117-.059-.03-.022-.05-.055-.078-.078-.588-.402-1.14-.85-1.592-1.387-.83-.989-1.321-2.218-1.67-3.496-.38-1.097-.656-2.22-.703-3.33-.029-.695.057-1.416.205-2.129.121-1.201.422-2.36 1.094-3.31 1.088-1.539 4.941-2.735 4.941-2.735s-1.2-.352-2.47-.781c-.23-.063-.535-.076-.733-.156-.389-.159-.768-.384-1.152-.576-.042-.022-.117-.037-.156-.06-.026-.014-.062-.043-.088-.058-1.822-.947-3.546-2.213-4.795-3.818-.309-.289-.938-.86-.938-.86s-2.967.064-4.297.645c-2.947 1.287-5.709 3.38-7.539 6.026-1.847 2.668-3.548 6.056-3.017 9.257.528 3.186 3.261 5.785 5.82 7.754 2.576 1.983 9.033 3.662 9.033 3.662s-.228 2.176-.86 3.008c-2.12 2.797-5.588 4.569-8.964 5.527-5.227 1.485-11.089.824-16.299.02-5.266-.813-9.233-2.281-15.244-4.854-2.038-.871-3.838-5.43-3.838-5.43s4.332-3.344 4.736-5.81c.397-2.42-.899-5.097-2.578-6.885-1.561-1.662-3.96-2.839-6.24-2.802-3.113.05-6.782 1.431-8.398 4.092-1.454 2.392-.968 5.86.214 8.398 1.053 2.258 5.596 4.951 5.596 4.951-1.163 4.731-2.79 7.146-4.521 9.033-6.315 3.604-12.631 5.626-18.946 7.54l-3.652-2.374-2.588-4.511s3.736-5.17 3.877-8.184c.118-2.517-1.184-5.007-2.588-7.1-1.188-1.771-2.76-3.502-4.736-4.306-1.862-.759-4.086-.744-6.026-.215-2.957.807-7.744 4.951-7.744 4.951s-4.746-3.798-6.465-6.25c-1.714-2.446-3.652-8.174-3.652-8.174l-1.21-.644c-3.071-.505-7.296-3.858-7.296-3.858l-4.443.938s-4.102 2.195-4.15 4.15c-.068 2.7 3.725 3.919 5.439 6.006a75.74 75.74 0 014.14 5.586c1.226 1.808 2.843 3.475 3.438 5.576.65 2.294-.974 4.972 0 7.149 1.228 2.743 3.773 5.415 6.719 6.015 2.615.533 7.588-2.578 7.588-2.578l-.147 19.883 10.303 9.307 9.727 20.312-3.858 5.147 1.143 10c7.48-9.585 20.501-13.792 32.187-17.149 15.732-4.52 44.57-4.841 58.008-4.717 4.48.042 7.256.137 7.256.137s44.295-1.442 65.254 4.58c11.685 3.358 24.706 7.564 32.187 17.149l1.143-10-3.858-5.147 9.727-20.312 10.303-9.307-.147-19.883s4.973 3.111 7.588 2.578c2.946-.6 5.491-3.272 6.719-6.015.974-2.177-.65-4.855 0-7.149.595-2.101 2.212-3.768 3.437-5.576a75.867 75.867 0 014.15-5.586c1.715-2.087 5.497-3.306 5.43-6.006-.049-1.955-4.15-4.15-4.15-4.15l-4.443-.938zm-148.33-2.607c1.049.982 3.103 2.847 4.795 3.818.08.042.163.077.244.117.505.265 1.202.502 1.885.733 2.913.792 7.935.267 8.047.254h.03c.111.012 5.133.536 8.047-.254.676-.229 1.37-.461 1.875-.723.094-.047.19-.088.283-.137 1.692-.976 3.72-2.83 4.766-3.808.522-.671.965-1.392 1.298-2.158 1.156-2.661 1.102-6.112-.205-8.702-1.537-3.046-5.175-4.496-8.086-6.279-2.506-1.535-7.912-3.725-7.998-3.76-.1.04-5.475 2.227-7.978 3.76-2.91 1.783-6.558 3.233-8.096 6.28-1.307 2.59-1.36 6.04-.205 8.7a10.03 10.03 0 001.299 2.159z"
|
|
29
|
+
/>
|
|
30
|
+
<path
|
|
31
|
+
d="M1980.77 829.789s-10.886-5.061-16.59-6.879c-10.413-3.319-21.236-5.216-31.967-7.283-12.467-2.403-25.26-3.052-37.622-5.944-3.892-.91-7.53-2.769-11.445-3.576-5.4-1.114-11.061-2.874-16.452-1.717-2.968.637-7.82 4.578-7.82 4.578s-4.867-3.94-7.82-4.578c-5.389-1.165-11.051.603-16.451 1.717-3.915.807-7.554 2.666-11.445 3.576-12.363 2.892-25.156 3.541-37.622 5.944-10.732 2.067-21.555 3.964-31.967 7.283-5.704 1.818-16.59 6.879-16.59 6.879m197.456-45.121s5.35-2.824 7.286-5.059c1.283-1.482 2.506-3.297 2.636-5.254.151-2.277-.62-4.853-2.226-6.474-1.561-1.577-4.061-2.219-6.28-2.227-1.855-.006-3.842.613-5.254 1.817-1.63 1.39-2.78 3.537-3.037 5.664-.218 1.814.51 3.698 1.368 5.312 1.3 2.447 5.507 6.22 5.507 6.22zm-151.123 0s4.208-3.774 5.508-6.22c.858-1.615 1.586-3.499 1.367-5.313-.256-2.127-1.407-4.274-3.037-5.664-1.412-1.204-3.398-1.823-5.254-1.817-2.218.008-4.708.65-6.27 2.227-1.605 1.621-2.377 4.197-2.226 6.474.13 1.957 1.344 3.772 2.627 5.254 1.935 2.235 7.285 5.059 7.285 5.059zm-41.074 18.008l-11.933 15.576s-.084 4.109.81 5.87c1.231 2.423 5.86 5.663 5.86 5.663l.85 21.387-11.31 19.6-.986.205 7.295 3.857c.342.056.68.112.986.088 4.378-.342 7.07-5.258 10.88-7.442 4.848-2.779 10.01-4.988 15.165-7.148 7.125-2.986 14.36-5.733 21.739-8.018 9.303-2.88 18.69-5.76 28.33-7.148a141.79 141.79 0 0122.1-1.445c2.462.033 4.92.127 7.372.293 6.57.444 19.37 3.404 19.473 3.427.086-.02 12.91-2.982 19.482-3.427 9.809-.664 19.742-.25 29.473 1.152 9.64 1.389 19.027 4.269 28.33 7.148 7.38 2.285 14.614 5.032 21.738 8.018 5.155 2.16 10.317 4.37 15.166 7.148 3.81 2.184 6.501 7.1 10.88 7.442.308.024.65-.03.995-.088l7.286-3.857-.987-.206-11.308-19.6.85-21.386s4.637-3.24 5.868-5.664c.895-1.76.801-5.87.801-5.87l-11.933-15.575s-6.016 6.007-9.913 7.285c-2.05.672-4.413.64-6.474 0-2.501-.777-4.435-2.811-6.475-4.453-4.609-3.71-9.225-7.541-12.949-12.139-2.133-2.633-5.264-8.701-5.264-8.701s-12.907 10.142-20.634 12.139c-7.577 1.958-15.96 1.605-23.467-.606-1.884-.555-5.03-3.066-5.03-3.066-8.826-5.622-17.651-8.698-26.425-7.852-8.774-.846-17.6 2.23-26.426 7.852 0 0-3.155 2.511-5.04 3.066-7.506 2.211-15.89 2.564-23.466.606-7.727-1.998-20.635-12.14-20.635-12.14s-3.13 6.069-5.263 8.702c-3.724 4.598-8.34 8.43-12.95 12.139-2.04 1.642-3.973 3.676-6.474 4.453-2.061.64-4.424.672-6.475 0-3.896-1.278-9.912-7.285-9.912-7.285z"
|
|
32
|
+
/>
|
|
33
|
+
<path
|
|
34
|
+
d="M1985.89 796.364s.448-5.703-.162-8.455c-.558-2.52-1.694-4.94-3.136-7.081-1.513-2.247-5.647-5.842-5.647-5.842m-1.434 27.69s3.394.123 4.853-.605c2.603-1.3 6.074-6.27 6.074-6.27s6.662 4.608 10.313 4.043c1.8-.278 3.294-1.885 4.248-3.437 1.01-1.646 1.651-3.782 1.22-5.664-.343-1.5-1.657-2.65-2.831-3.643-2.282-1.929-6.396-1.662-7.891-4.248-1.182-2.044-.457-4.81.195-7.08 1.36-4.736 4.751-8.648 7.49-12.744 1.74-2.601 5.294-4.383 5.665-7.49.2-1.68-2.022-4.659-2.022-4.659s-5.222-.118-7.686.616c-4.077 1.213-8.307 2.995-11.2 6.113-2.406 2.592-3.121 6.365-4.386 9.668-.96 2.51-2.421 7.685-2.421 7.685s-6.042-.013-8.702 1.211c-3.515 1.618-7.11 4.158-8.7 7.686-1.248 2.767-1.074 6.272 0 9.111 1.08 2.86 3.492 5.236 6.073 6.875 2.847 1.808 9.708 2.832 9.708 2.832zm-234.71-27.69s-4.135 3.595-5.648 5.842c-1.442 2.141-2.577 4.56-3.136 7.081-.61 2.752-.162 8.455-.162 8.455m-16.936-45.485s-2.222 2.98-2.021 4.659c.37 3.107 3.924 4.889 5.664 7.49 2.739 4.096 6.13 8.008 7.49 12.744.652 2.27 1.377 5.036.195 7.08-1.495 2.586-5.61 2.32-7.89 4.248-1.175.993-2.49 2.144-2.832 3.643-.431 1.882.21 4.018 1.22 5.664.954 1.553 2.448 3.159 4.248 3.437 3.651.565 10.313-4.043 10.313-4.043s3.471 4.97 6.074 6.27c1.46.728 4.854.605 4.854.605s6.87-1.024 9.716-2.832c2.582-1.64 4.983-4.014 6.065-6.875 1.073-2.838 1.247-6.344 0-9.111-1.59-3.528-5.186-6.068-8.701-7.686-2.66-1.224-8.702-1.21-8.702-1.21s-1.46-5.176-2.421-7.686c-1.265-3.303-1.98-7.076-4.385-9.668-2.894-3.118-7.124-4.9-11.201-6.113-2.464-.734-7.686-.616-7.686-.616zm135.626 14.318l8.325-2.438 8.324 2.438m-14.492 20.082s-6.481-5.91-7.689-9.914c-.527-1.748-.45-3.849.405-5.463 1.168-2.205 5.867-4.653 5.867-4.653s-7.085-3.443-8.902-6.677c-1.029-1.83-1.158-4.245-.607-6.271.874-3.216 3.3-5.97 5.868-8.093 3.185-2.633 11.226-5.26 11.226-5.26s8.026 2.62 11.226 5.26c2.57 2.12 4.993 4.877 5.867 8.093.551 2.026.422 4.44-.607 6.271-1.817 3.234-8.902 6.677-8.902 6.677s4.699 2.448 5.867 4.653c.855 1.614.932 3.715.405 5.463-1.207 4.004-7.688 9.914-7.688 9.914l-6.168.405zm22.672-26.888s13.436 5.727 17.989 11.107c1.27 1.5 2.352 3.5 2.225 5.462-.448 6.962-10.318 18.21-10.318 18.21l-19.928-8.283h-12.944l-19.928 8.282s-9.87-11.247-10.319-18.209c-.126-1.962.956-3.961 2.226-5.462 4.552-5.38 17.989-11.107 17.989-11.107"
|
|
35
|
+
/>
|
|
36
|
+
<path
|
|
37
|
+
d="M1844.36 669.248l8.056-6.2 6.507.14-6.656-.144s-3.591-2.447-4.578-4.292c-.958-1.79-1.415-4.02-1.002-6.008.553-2.655 2.086-5.459 4.428-6.825 2.237-1.305 7.755-.471 7.755-.471s5.503-.842 7.755.471c2.343 1.366 3.876 4.17 4.428 6.825.414 1.988-.043 4.218-1.001 6.008-.987 1.845-4.578 4.292-4.578 4.292l-6.656.143 6.506-.14 8.057 6.201m52.584 5.068l-2.68 4.655m32.633-20.004l-7.515.982m8.513 8.804l-11.517.604m-1.498-13.748c1.468.937 4.155 2.86 4.595 4.635.776 3.13-.675 7.07-3.14 9.149-2.388 2.014-9.251 1.501-9.251 1.501m-181.69 33.587s11.294-2.82 16.954-4.177c8.081-1.939 16.1-4.196 24.279-5.665 9.262-1.664 18.62-2.885 28.007-3.554 11.71-.836 35.215-.573 35.215-.573s23.488-.264 35.216.573c9.387.67 18.745 1.89 28.007 3.554 8.18 1.469 16.198 3.726 24.279 5.665 5.66 1.357 16.954 4.177 16.954 4.177m-171.55-30.165l2.68 4.655m-32.634-20.004l7.515.982m-8.513 8.804l11.517.604m-6.475 16.076s12.542-3.187 18.875-4.506c6.924-1.442 13.873-2.82 20.887-3.72 8.068-1.035 16.2-1.555 24.325-1.928 9.63-.443 28.917-.367 28.917-.367s19.27-.076 28.917.367c8.125.373 16.257.893 24.325 1.928 7.014.9 13.964 2.278 20.887 3.72 6.333 1.319 18.875 4.506 18.875 4.506m-170.239-14.539s-6.863.513-9.252-1.501c-2.465-2.079-3.915-6.02-3.139-9.149.611-2.464 5.55-5.213 5.55-5.213m63.138 74.002c-11.977.723-24.01 1.474-35.81 3.642-12.293 2.258-24.486 5.397-36.216 9.711-11.113 4.088-22.869 22.644-32.096 15.223-1.983-1.595.753-5.084 1.717-7.44 1.866-4.556 4.43-8.932 7.726-12.59 2.413-2.677 7.975-3.026 8.583-6.58.442-2.581-3.474-4.093-4.292-6.58-1.043-3.177-1.538-6.814-.572-10.015 1.24-4.109 6.526-6.18 7.726-10.3 1.043-3.583-2.548-7.833-.859-11.16 2.133-4.2 11.337-2.777 12.017-7.439.332-2.273-3.825-2.98-4.578-5.15-.532-1.535.31-3.24.287-4.864-.031-2.202.392-4.602-.573-6.581-.857-1.76-3.702-2.14-4.292-4.006-.558-1.766-.171-4.134 1.145-5.436 1.037-1.027 3.632.442 4.292-.859 1.332-2.626-2.539-5.314-3.72-8.011-1.406-3.213-3.207-6.314-4.006-9.729-.63-2.7-2.958-6.886-.572-8.297 2.733-1.616 5.477 3.239 8.012 5.15 3.345 2.523 7.11 4.817 9.442 8.298 1.683 2.511.743 6.509 2.948 8.577 2.647 2.481 7.758.491 10.5 2.868 2.356 2.042 4.441 5.55 3.72 8.584-.69 2.898-7.532 2.817-6.868 5.722.79 3.45 6.814 3.18 10.3 2.575 2.034-.352 3.463-2.247 5.151-3.433 1.311-.922 2.39-2.233 3.863-2.862 1.69-.721 5.436-.93 5.436-.93l-2.146-.5s-3.171-2.528-3.505-4.364c-.314-1.728.437-3.731 1.645-5.007 1.356-1.43 3.538-2.16 5.508-2.146 1.647.012 3.446.664 4.578 1.86 1.161 1.227 1.825 3.113 1.646 4.793-.157 1.467-1.128 2.88-2.29 3.79-1.257.988-4.577 1.431-4.577 1.431l2.289.644 6.151 8.44 26.539-1.453s3.273-3.34 2.63-5.16c-.689-1.95-2.503-2.667-5.665-2.528-8.581.376-10.34-6.829-10.015-12.038.27-4.334 5.484-7.275 9.51-8.903 3.876-1.567 10.787 3.593 12.543-.202 1.54-3.326-5.818-5.02-6.98-8.497-.503-1.505-.508-3.336.202-4.755 1.813-3.622 5.714-6.03 9.408-7.688 1.557-.7 5.056-.81 5.056-.81s3.482.105 5.055.81c3.696 1.655 7.595 4.066 9.408 7.688.71 1.419.705 3.25.202 4.755-1.162 3.476-8.52 5.17-6.98 8.497 1.757 3.795 8.667-1.365 12.544.202 4.025 1.628 9.24 4.569 9.51 8.903.324 5.21-1.435 12.414-10.016 12.038-3.162-.14-4.976.579-5.665 2.529-.643 1.82 2.63 5.159 2.63 5.159l26.54 1.454 6.15-8.44 2.29-.645s-3.32-.443-4.578-1.43c-1.162-.911-2.133-2.324-2.29-3.791-.178-1.68.485-3.566 1.646-4.793 1.132-1.196 2.93-1.848 4.578-1.86 1.97-.014 4.153.716 5.508 2.146 1.208 1.276 1.959 3.279 1.645 5.007-.333 1.836-3.505 4.364-3.505 4.364l-2.146.5s3.746.209 5.436.93c1.474.63 2.552 1.94 3.863 2.862 1.688 1.186 3.117 3.081 5.15 3.433 3.488.604 9.512.875 10.301-2.575.664-2.905-6.177-2.824-6.867-5.722-.722-3.034 1.363-6.542 3.72-8.584 2.74-2.377 7.852-.387 10.5-2.868 2.205-2.068 1.264-6.066 2.947-8.577 2.333-3.48 6.097-5.775 9.443-8.298 2.534-1.911 5.279-6.766 8.011-5.15 2.386 1.411.06 5.598-.572 8.297-.799 3.415-2.6 6.516-4.006 9.729-1.18 2.697-5.051 5.385-3.72 8.011.66 1.301 3.256-.168 4.292.859 1.316 1.302 1.703 3.67 1.145 5.436-.59 1.866-3.435 2.246-4.292 4.006-.964 1.98-.541 4.379-.572 6.58-.023 1.625.818 3.33.286 4.865-.753 2.17-4.91 2.877-4.578 5.15.68 4.662 9.884 3.239 12.017 7.44 1.69 3.326-1.901 7.576-.858 11.158 1.2 4.12 6.485 6.192 7.725 10.3.967 3.202.472 6.839-.572 10.015-.818 2.488-4.734 4-4.292 6.581.608 3.554 6.17 3.903 8.584 6.58 3.296 3.658 5.86 8.034 7.725 12.59.964 2.356 3.7 5.845 1.717 7.44-9.227 7.42-20.983-11.135-32.096-15.223-11.73-4.314-23.922-7.453-36.215-9.711-11.801-2.168-23.834-2.918-35.81-3.642-6.969-.42-20.938-.404-20.938-.404s-13.953-.018-20.938.404zm31.128-133.632l-10.184.117-10.183-.117m16.931-33.88c2.642-5.6-1.975-9.75-6.748-13.857-4.772 4.107-9.39 8.256-6.747 13.857m14.066 46.73c3.894.287 8.632 4.268 11.588 1.717 1.336-1.153.675-3.663 0-5.293-1.574-3.801-8.413-4.625-8.727-8.727-.27-3.538 5.191-5.212 6.295-8.584.549-1.677.68-3.666 0-5.293-2.751-6.578-14.493-6.952-16.527-13.68-.901-2.982 5.932-6.494 6.8-6.87 4.34-1.879 9.703 2.659 13.988.8 2.899-1.259 6.125-4.124 6.07-7.284-.06-3.438-3.726-6.317-6.88-7.688-6.108-2.657-16.22 5.904-19.978.404-3.459-5.061 8.643-11.08 7.03-16.995-.767-2.81-6.978-5.26-6.978-5.26s-6.202 2.438-6.977 5.26c-1.624 5.912 10.488 11.934 7.03 16.995-3.758 5.5-13.87-3.061-19.979-.404-3.153 1.371-6.818 4.25-6.878 7.688-.056 3.16 3.17 6.025 6.07 7.283 4.283 1.86 9.648-2.678 13.987-.799.867.376 7.7 3.888 6.8 6.87-2.034 6.729-13.776 7.102-16.527 13.68-.681 1.627-.55 3.616 0 5.293 1.104 3.372 6.565 5.046 6.294 8.584-.313 4.102-7.152 4.926-8.726 8.727-.676 1.63-1.336 4.14 0 5.293 2.956 2.55 7.693-1.43 11.588-1.717 2.433-.18 7.318 0 7.318 0s4.869-.18 7.319 0z"
|
|
38
|
+
/>
|
|
39
|
+
<path
|
|
40
|
+
d="M1953.74 953.499s-7.154-3.02-10.804-4.34c-6.597-2.388-13.259-4.632-20.03-6.474-6.599-1.796-13.232-3.69-20.03-4.451-14.575-1.634-44.001-.203-44.001-.203s-29.409-1.433-44.002.203c-6.797.761-13.43 2.655-20.03 4.45-6.77 1.843-13.432 4.087-20.03 6.475-3.65 1.32-10.804 4.34-10.804 4.34m201.9-222.5s-11.953-4.756-18.026-6.867c-5.1-1.773-10.206-3.582-15.451-4.864-6.397-1.565-12.932-2.538-19.457-3.434a376.605 376.605 0 00-28.307-2.784c-8.584-.523-25.793-.607-25.793-.607s-17.192.083-25.793.607a376.49 376.49 0 00-28.307 2.784c-6.525.896-13.06 1.87-19.457 3.434-5.245 1.282-10.35 3.091-15.45 4.864-6.074 2.11-18.026 6.867-18.026 6.867m-14.157 120.41s17.56-5.918 26.405-8.671c9.129-2.84 18.174-6.063 27.516-8.093 11.184-2.43 22.61-3.63 33.99-4.856 11.058-1.191 33.279-2.427 33.279-2.427s22.203 1.234 33.28 2.427c11.378 1.226 22.805 2.426 33.989 4.856 9.342 2.03 18.387 5.252 27.516 8.093 8.846 2.753 26.405 8.671 26.405 8.671"
|
|
41
|
+
fill="none"
|
|
42
|
+
/>
|
|
43
|
+
</g>
|
|
44
|
+
<g fill="#ccc">
|
|
45
|
+
<g id="b">
|
|
46
|
+
<path d="M1533.28 904.042l101.171 86.713s-5.133 11.214-7.279 16.99c-1.979 5.326-3.817 10.726-5.146 16.251-1.958 8.145-4.135 24.789-4.135 24.789L1499.95 940.75c1.673-24.69 15.567-33.488 33.331-36.708zm-14.29 54.155l-24.283 27.167 15.164 14.593-23.462 22.89-15.165-15.165-25.514 27.202-.237 33.743 58.084 45.494 20.029-14.879-1.145-32.332 15.45 8.584 15.452-9.443.858 29.185-12.59-9.156-13.734 18.026-1.43 32.046 43.777 38.913 53.05-47.079-4.009-14.112-2.305-12.678-1.247-25.129 1.98-27.44z" />
|
|
47
|
+
<path d="M1494.71 985.364l-.621 29.993 15.643-15.261z" />
|
|
48
|
+
<path
|
|
49
|
+
d="M1571.935 1140.425l-1.82 34.262m-18.61-139.675l.644 31.785m-14.81-17.34l.83 25.884m-14.426-36.34l.542 28.924m-21.435 15.225l.312 30.648m24.737-9.675l44.063 36.897 45.056-39.54M1446 1034.605l57.579 49.193 18.884-16.881-14.879-12.59 16.596-15.737 12.875 11.16 14.593-14.88 18.884 18.313-17.15 13.447 16.005 14.593-15.164 14.02"
|
|
50
|
+
fill="none"
|
|
51
|
+
/>
|
|
52
|
+
<path d="M1901.35 1229.35l48.602 44.58 10.763 31.428-62.642-6.673-35.663-35.277-37.97-35.175-164.039-142.138s3.479-13.101 5.635-19.522c3.124-9.3 6.867-18.384 10.565-27.472.928-2.28 2.915-6.785 2.915-6.785l183.014 162.24z" />
|
|
53
|
+
<path d="M1942.67 1236.04c27.095 37.868 72.691 73.638 86.537 90.842 13.845 17.203 22.764 33.54 2.583 55.538-20.182 21.998-43.064 9.515-61.136-2.583-18.07-12.099-49.602-51.303-94.716-81.37z" />
|
|
54
|
+
<path d="M1926.7 1299.75l-35.17-15.874m40.929-38.287c2.423 7.965.574 16.774 3.624 24.416 3.015 7.555 14.022 19.973 14.022 19.973s-6.998.978-10.262 2.245c-4.73 1.838-11.956 2.71-13.172 7.638-1.063 4.309 4.062 8.026 7.09 11.27 2.905 3.112 6.645 5.372 10.316 7.526 6.137 3.6 12.391 7.654 19.393 8.917 8.765 1.58 25.13-10.756 26.647-1.98.631 3.65-7.39 1.313-10.713 2.946-7.758 3.813-11.65 12.118-4.82 17.894 4.384 3.71 11.274 2.347 16.998 2.821 5.49.455 11.758-2.745 16.523.016 5.61 3.25 12.668 11.106 9.692 16.867-3.063 5.928-14.484 5.77-19.927 1.91-4.025-2.854-2.947-9.474-3.542-14.371-.177-1.458 0-2.937 0-4.406" />
|
|
55
|
+
<circle cx="2154.665" cy="1480.147" r="129.687" />
|
|
56
|
+
<path
|
|
57
|
+
d="M2106.13 1485.65c-22.355 0-40.478 18.123-40.478 40.478 0 22.356 18.123 40.478 40.478 40.478s40.478-18.122 40.478-40.478l14.026-.609c0 22.356 18.123 40.478 40.478 40.478s40.478-18.122 40.478-40.478-18.122-40.478-40.478-40.478l.61-7.937c22.355 0 40.477-18.123 40.477-40.478s-18.122-40.479-40.478-40.479c-22.355 0-40.478 18.123-40.478 40.479l-14.026-1.218c0-22.356-18.123-40.478-40.478-40.478-22.356 0-40.478 18.122-40.478 40.478 0 22.355 18.122 40.478 40.478 40.478z"
|
|
58
|
+
fill="#fff"
|
|
59
|
+
/>
|
|
60
|
+
<circle cx="2154.667" cy="1446.052" r="14.613" />
|
|
61
|
+
<circle cx="2189.367" cy="1480.148" r="14.613" />
|
|
62
|
+
<circle cx="2155.277" cy="1511.2" r="14.613" />
|
|
63
|
+
<circle cx="2119.347" cy="1480.148" r="14.613" />
|
|
64
|
+
<path
|
|
65
|
+
d="M2152.23 1558.42c-5.338 10.957-12.62 15.941-21.919 21.919 13.247 5.754 29.4 4.697 43.838 0-9.299-4.65-16.041-11.996-21.919-21.919zm-76.579-80.232c-10.956-5.338-15.94-12.62-21.919-21.919-5.753 13.248-4.696 29.4 0 43.838 4.65-9.299 11.996-16.041 21.92-21.919zm159.246 3.653c10.957-5.337 15.941-12.62 21.92-21.919 5.753 13.248 4.696 29.4 0 43.838-4.65-9.298-11.996-16.041-21.92-21.919zm-78.405-80.84c-5.338-10.957-12.62-15.941-21.919-21.92 13.248-5.753 29.4-4.696 43.838 0-9.299 4.65-16.041 11.997-21.919 21.92z"
|
|
66
|
+
fill="#fff"
|
|
67
|
+
/>
|
|
68
|
+
</g>
|
|
69
|
+
<g fill="#ce9d09">
|
|
70
|
+
<g id="c">
|
|
71
|
+
<path d="M1533.48 903.819s.703-5.061 0-7.44c-1.144-3.868-3.574-7.467-6.58-10.157-2.544-2.275-5.808-3.923-9.157-4.578-3.615-.706-7.464-.115-11.016.859-2.42.663-6.753 3.322-6.753 3.322l-14.85 6.12-5.51 17.667s-3.174 5.58-3.931 8.656c-.81 3.293-1.41 6.871-.573 10.158.983 3.86 3.232 7.611 6.295 10.157 2.833 2.355 6.627 3.73 10.3 4.006 2.827.213 8.298-1.86 8.298-1.86 1.58-18.611 9.856-32.813 33.477-36.91z" />
|
|
72
|
+
<path d="M1500.27 885.645l-38.753-17.02-3.147 3.005 21.118 38.201s5.925-8.738 9.354-12.736c3.51-4.093 11.428-11.45 11.428-11.45z" />
|
|
73
|
+
<circle cx="1457.292" cy="865.263" r="15.951" />
|
|
74
|
+
<path d="M1566.19 932.256c3.39 27.952 7.322 55.904 16.025 83.856l31.069 28.46c-6.625-29.232-18.443-58.464-18.369-87.695z" />
|
|
75
|
+
<path d="M1613.05 972.415l-85.487-6.369 27.2 24.916 78.068 3.38 1.147-3.99zm105.31 94.505c-22.445 8.46-31.418 22.309-37.857 37.171-6.353.56-12.306.618-14.41-4.133 5.347-34.7 30.21-45.552 35.753-47.747 14.95-2.825 12.178 8.85 16.514 14.709zm27.52 25.9c-22.445 8.46-31.418 22.309-37.857 37.171-6.353.559-12.306.618-14.41-4.134 5.347-34.7 30.21-45.55 35.753-47.746 14.95-2.825 12.179 8.85 16.514 14.709zm312.78 261.87c-7.337-.202-15.078 1.504-15.078 1.504.303 8.02-2.946 16.583-11.797 26.23-7.64 8.327-15.666 11.704-23.672 12.041l-.01.01s-2.84 17.652 2.588 23.252c6.356 6.558 27.12 3.877 27.12 3.877l1.767-1.132a129.688 129.688 0 0131.914-39.795l.332-1.26s3.038-16.523-2.149-21.5c-2.35-2.27-6.613-3.072-11.015 0z" />
|
|
76
|
+
<circle cx="2254.517" cy="1375.424" r="17.657" />
|
|
77
|
+
<circle cx="2260.607" cy="1580.001" r="17.657" />
|
|
78
|
+
<circle cx="2062.117" cy="1591.57" r="17.657" />
|
|
79
|
+
</g>
|
|
80
|
+
</g>
|
|
81
|
+
</g>
|
|
82
|
+
<g fill="#ce9d09" transform="matrix(-1 0 0 1 3718.256 0)">
|
|
83
|
+
<use xlink:href="#b" />
|
|
84
|
+
<use fill="#ccc" xlink:href="#c" />
|
|
85
|
+
</g>
|
|
86
|
+
<g fill="#fa0204">
|
|
87
|
+
<path
|
|
88
|
+
d="M1869.19 1175.78c0 5.38-4.5 7.458-13.243 7.458s-12.786-2.534-12.786-7.915c0-5.38 4.043-6.697 12.786-6.697s13.243 1.774 13.243 7.154z"
|
|
89
|
+
id="d"
|
|
90
|
+
/>
|
|
91
|
+
<use x="6.391" xlink:href="#d" y="14.309" />
|
|
92
|
+
<path d="M1877.34 1208.69c-1.772 5.08-6.705 5.56-14.96 2.681-8.255-2.88-11.238-6.605-9.466-11.685 1.772-5.08 6.023-4.992 14.278-2.112 8.255 2.879 11.92 6.036 10.148 11.116z" />
|
|
93
|
+
<path
|
|
94
|
+
d="M1877.51 1222.51c-1.065 5.274-5.887 6.42-14.457 4.69s-12.031-5.016-10.966-10.29c1.065-5.274 5.289-5.765 13.858-4.034 8.57 1.73 12.63 4.36 11.565 9.634z"
|
|
95
|
+
id="e"
|
|
96
|
+
/>
|
|
97
|
+
<use x="3.96" xlink:href="#e" y="16.142" />
|
|
98
|
+
<path d="M1921.73 1216.2c-2.59-.691-2.303-5.303-1.583-7.886 1.107-3.968 8.354-9.11 8.354-9.11s1.767 5.563.95 8.185c-1.162 3.729-3.948 9.818-7.721 8.811z" />
|
|
99
|
+
<path d="M1912.29 1224.42c-2.822-.622-3.182-5.523-2.444-8.316 1.142-4.324 9.645-9.325 9.645-9.325s1.477 6.041.52 8.83c-1.267 3.694-3.907 9.651-7.721 8.811zm-10.77 15.59c-4.292-1.138-3.805-8.762-2.66-13.052.947-3.543 3.716-9.12 7.278-8.249 4.167 1.018 4.115 8.321 3.103 12.49-.92 3.795-3.947 9.812-7.721 8.811z" />
|
|
100
|
+
<path d="M1888.73 1252.19c-4.214-.926-6.007-7.638-5.164-11.87.885-4.442 5.36-10.41 9.782-9.431 4.463.988 6.005 8.353 4.93 12.795-1.004 4.143-5.385 9.421-9.548 8.506zm-2.22 7.39c-1.077 5.087-7.504 6.86-11.461 5.57-4.154-1.356-9.579-7.187-8.442-12.525 1.147-5.385 8.179-6.813 12.324-5.225 3.866 1.48 8.643 7.155 7.579 12.18zm-85.04-49.29s5.138 2.531 7.349 4.792c2.32 2.373 5.11 3.322 3.709 6.923-1.415 3.634-5.843 2.388-8.127-.156-2.13-2.372-2.931-11.559-2.931-11.559zm25.37 8.77c5.212 1.047 5.108 7.12 2.443 10.847-2.797 3.91-10.883 8.992-16.349 7.887-5.515-1.116-4.844-7.758-1.795-11.658 2.843-3.638 10.553-8.11 15.701-7.076z" />
|
|
101
|
+
<path
|
|
102
|
+
d="M1844.26 1230.55c4.853 2.169 3.415 8.07 0 11.118-3.59 3.199-12.597 6.375-17.685 4.093-5.134-2.302-3.016-8.633.816-11.767 3.575-2.922 12.08-5.586 16.874-3.444z"
|
|
103
|
+
id="f"
|
|
104
|
+
/>
|
|
105
|
+
<use x="13.998" xlink:href="#f" y="10.661" />
|
|
106
|
+
<path d="M1862.97 1250.68c4.787.754 6.069 7.415 4.585 11.696-1.56 4.494-7.474 10.67-12.496 9.87-5.068-.806-5.982-8.132-4.2-12.634 1.66-4.199 7.383-9.678 12.112-8.932z" />
|
|
107
|
+
<path d="M1875.1 1265.33c3.965 2.308 3.033 9.59.41 13.533-2.754 4.14-9.845 8.622-14.002 6.194-4.195-2.451-2.735-10.302.216-14.38 2.752-3.8 9.46-7.626 13.377-5.347zm-86.08-39.89c4.244-.376 7.182 5.965 7.127 10.585-.06 4.85-3.317 12.403-7.771 12.79-4.495.39-7.309-6.7-7.065-11.611.227-4.58 3.518-11.393 7.71-11.765z" />
|
|
108
|
+
<path d="M1802.91 1237.65c4.157.932 5.027 7.867 3.57 12.251-1.532 4.602-6.933 10.806-11.294 9.82-4.4-.995-4.924-8.606-3.198-13.21 1.609-4.293 6.817-9.782 10.923-8.861z" />
|
|
109
|
+
<path d="M1815.79 1246.24c4.921 1.158 5.952 9.77 4.226 15.215-1.814 5.716-8.208 13.42-13.37 12.196-5.21-1.236-5.83-10.689-3.787-16.406 1.905-5.332 8.07-12.15 12.932-11.005z" />
|
|
110
|
+
<path d="M1826.22 1256.8c5.014-.644 9.005 7.057 9.301 12.761.31 5.988-2.97 15.448-8.234 16.115-5.312.673-9.213-7.96-9.309-14.03-.089-5.661 3.29-14.21 8.243-14.847z" />
|
|
111
|
+
<path
|
|
112
|
+
d="M1838.59 1265.66c4.556-.534 8.182 5.85 8.451 10.578.282 4.964-2.699 12.805-7.482 13.358-4.826.558-8.371-6.598-8.458-11.63-.08-4.693 2.989-11.779 7.49-12.307z"
|
|
113
|
+
id="g"
|
|
114
|
+
/>
|
|
115
|
+
<use x="12.788" xlink:href="#g" y="10.35" />
|
|
116
|
+
<path
|
|
117
|
+
d="M1929.28 1250.88c-3.243 2.846-9.712.313-12.621-2.874-3.054-3.345-5.21-10.486-1.801-13.468 3.44-3.01 10.287.112 13.228 3.61 2.742 3.264 4.398 9.92 1.194 12.732z"
|
|
118
|
+
id="h"
|
|
119
|
+
/>
|
|
120
|
+
<use x="-6.999" xlink:href="#h" y="12.792" />
|
|
121
|
+
<use x="-19.479" xlink:href="#h" y="23.452" />
|
|
122
|
+
<path d="M1905.19 1281.18c-1.138 4.162-7.933 5.613-12.116 4.557-4.392-1.11-10.126-5.88-8.924-10.247 1.213-4.407 8.646-5.575 13.028-4.276 4.086 1.212 9.137 5.855 8.012 9.966z" />
|
|
123
|
+
<path d="M1887.18 1278.19c3.641 2.539 2.786 10.55.377 14.889-2.53 4.554-9.042 9.485-12.86 6.813-3.853-2.696-2.512-11.334.198-15.819 2.528-4.182 8.689-8.39 12.286-5.883z" />
|
|
124
|
+
<path d="M1869.62 1287.55c3.965 2.308 3.033 9.59.41 13.533-2.754 4.14-9.844 8.622-14.002 6.194-4.195-2.451-2.735-10.302.216-14.38 2.752-3.8 9.46-7.626 13.377-5.347z" />
|
|
125
|
+
<path
|
|
126
|
+
d="M1831.34 1312.91c-3.392 3.235-.755 11.272 2.773 15.282 3.706 4.209 11.795 8.104 15.349 4.703 3.586-3.433.292-12.024-3.594-16.132-3.624-3.83-11.179-7.048-14.53-3.853z"
|
|
127
|
+
id="i"
|
|
128
|
+
/>
|
|
129
|
+
<use x="-7.319" xlink:href="#i" y="13.781" />
|
|
130
|
+
<path
|
|
131
|
+
d="M1820.83 1339.55c-4.348 1.749-4.876 10.19-3.083 15.222 1.883 5.282 7.954 11.896 12.516 10.053 4.602-1.861 4.724-11.061 2.635-16.315-1.948-4.9-7.774-10.687-12.069-8.96z"
|
|
132
|
+
id="j"
|
|
133
|
+
/>
|
|
134
|
+
<use x="-10.548" xlink:href="#j" y="14.852" />
|
|
135
|
+
<path
|
|
136
|
+
d="M1802.66 1371.04c-4.57 1.037-6.43 9.289-5.458 14.54 1.022 5.515 5.967 13.008 10.763 11.91 4.84-1.107 6.419-10.171 5.19-15.69-1.147-5.147-5.981-11.785-10.496-10.76z"
|
|
137
|
+
id="k"
|
|
138
|
+
/>
|
|
139
|
+
<use x="-10.121" xlink:href="#k" y="15.932" />
|
|
140
|
+
<path
|
|
141
|
+
d="M1784.06 1403.3c-4.684.171-8.042 7.935-8.06 13.276-.02 5.608 3.451 13.888 8.367 13.7 4.961-.19 8.194-8.805 8.01-14.456-.172-5.27-3.692-12.69-8.318-12.52z"
|
|
142
|
+
id="l"
|
|
143
|
+
/>
|
|
144
|
+
<use x="-10.33" xlink:href="#l" y="19.16" />
|
|
145
|
+
<use x="-22.39" xlink:href="#l" y="37.02" />
|
|
146
|
+
<use x="-34.87" xlink:href="#l" y="52.31" />
|
|
147
|
+
<use x="-47.79" xlink:href="#l" y="66.51" />
|
|
148
|
+
<use x="-61.99" xlink:href="#l" y="78.14" />
|
|
149
|
+
<use x="-75.56" xlink:href="#l" y="90.62" />
|
|
150
|
+
<path d="M1692.79 1500.17l-5.262 20.595s2.935 7.335 6 7.026c5.48-.552 6.964-9.047 8.01-14.455.947-8.424-8.748-13.166-8.748-13.166zm324.42 13.08c1.61 6.124 15.26 11.314 15.26 11.314l-6.651-27.758c-5.717.154-9.495 12.436-8.609 16.444z" />
|
|
151
|
+
<path d="M2016.01 1490.95c-4.359-1.722-10.549 4.043-12.709 8.928-2.266 5.13-2.409 14.107 2.17 15.906 4.62 1.815 11.038-4.779 13.136-10.03 1.956-4.896 1.708-13.104-2.597-14.805z" />
|
|
152
|
+
<path
|
|
153
|
+
d="M2000.82 1478.67c-4.68-.243-8.711 7.193-9.202 12.512-.514 5.584 2.21 14.139 7.124 14.385 4.958.249 8.94-8.046 9.256-13.691.295-5.265-2.556-12.966-7.179-13.207z"
|
|
154
|
+
id="m"
|
|
155
|
+
/>
|
|
156
|
+
<use x="-13.4" xlink:href="#m" y="-13.7" />
|
|
157
|
+
<use x="-25.88" xlink:href="#m" y="-29.23" />
|
|
158
|
+
<use x="-38.66" xlink:href="#m" y="-42.32" />
|
|
159
|
+
<use x="-49.01" xlink:href="#m" y="-60.28" />
|
|
160
|
+
<use x="-60.28" xlink:href="#m" y="-76.41" />
|
|
161
|
+
<use x="-70.63" xlink:href="#m" y="-93.46" />
|
|
162
|
+
<use x="-79.76" xlink:href="#m" y="-113.25" />
|
|
163
|
+
<use x="-89.81" xlink:href="#m" y="-131.21" />
|
|
164
|
+
<use x="-98.03" xlink:href="#m" y="-152.52" />
|
|
165
|
+
<path d="M1883.85 1304.56s-1.647 26.676 8.037 28.389c6.039 1.068 10.779-14.91 10.779-14.91z" />
|
|
166
|
+
<path
|
|
167
|
+
d="M1862.02 1610.75c-2.878 3.699.914 11.26 4.995 14.706 4.285 3.617 12.86 6.278 15.874 2.39 3.041-3.924-1.483-11.936-5.931-15.426-4.15-3.254-12.096-5.324-14.939-1.67z"
|
|
168
|
+
id="n"
|
|
169
|
+
/>
|
|
170
|
+
<use x="18.3" xlink:href="#n" y="-2.15" />
|
|
171
|
+
<use x="36.81" xlink:href="#n" y="-5.81" />
|
|
172
|
+
<path
|
|
173
|
+
d="M1916.18 1603.8c-2.29 4.09 2.594 10.995 7.147 13.79 4.78 2.932 13.656 4.275 16.052-.021 2.418-4.336-3.258-11.578-8.18-14.36-4.59-2.595-12.758-3.448-15.02.591z"
|
|
174
|
+
id="o"
|
|
175
|
+
/>
|
|
176
|
+
<use x="20.02" xlink:href="#o" y="-3.22" />
|
|
177
|
+
<path
|
|
178
|
+
d="M1953.48 1595.43c-1.903 4.283 3.598 10.709 8.389 13.071 5.03 2.479 13.993 2.997 15.982-1.503 2.007-4.54-4.313-11.228-9.47-13.544-4.811-2.159-13.023-2.254-14.902 1.976z"
|
|
179
|
+
id="p"
|
|
180
|
+
/>
|
|
181
|
+
<use x="18.94" xlink:href="#p" y="-5.59" />
|
|
182
|
+
<path
|
|
183
|
+
d="M1991.26 1583.89c-1.646 4.388 4.225 10.477 9.147 12.553 5.167 2.177 14.145 2.164 15.865-2.445 1.735-4.651-4.968-10.953-10.255-12.96-4.93-1.872-13.132-1.482-14.758 2.852z"
|
|
184
|
+
id="q"
|
|
185
|
+
/>
|
|
186
|
+
<use x="19.16" xlink:href="#q" y="-6.24" />
|
|
187
|
+
<use x="37.67" xlink:href="#q" y="-13.99" />
|
|
188
|
+
<use x="57.48" xlink:href="#q" y="-22.17" />
|
|
189
|
+
<use x="77.5" xlink:href="#q" y="-28.63" />
|
|
190
|
+
<use x="79.87" xlink:href="#q" y="-44.34" />
|
|
191
|
+
<path d="M2066.71 1534.88s13.55 1.992 14.79-2.875c1.645-6.462-15.422-12.745-15.422-12.745z" />
|
|
192
|
+
<path
|
|
193
|
+
d="M1701.62 1575.59c-3.986 2.465-3.066 10.873-.44 15.525 2.756 4.883 9.866 10.365 14.046 7.77 4.218-2.619 2.768-11.705-.186-16.526-2.756-4.495-9.483-9.204-13.421-6.77z"
|
|
194
|
+
id="r"
|
|
195
|
+
/>
|
|
196
|
+
<use x="18.94" xlink:href="#r" y="7.75" />
|
|
197
|
+
<use x="37.03" xlink:href="#r" y="10.55" />
|
|
198
|
+
<use x="56.83" xlink:href="#r" y="15.5" />
|
|
199
|
+
<use x="74.7" xlink:href="#r" y="18.08" />
|
|
200
|
+
<use x="92.35" xlink:href="#r" y="21.74" />
|
|
201
|
+
<use x="110.43" xlink:href="#r" y="26.69" />
|
|
202
|
+
<use x="128.3" xlink:href="#r" y="29.92" />
|
|
203
|
+
<use x="146.6" xlink:href="#r" y="32.72" />
|
|
204
|
+
<path d="M1648.16 1517.51c-4.167-2.145-10.898 2.977-13.531 7.625-2.764 4.879-3.796 13.797.582 16.041 4.418 2.265 11.457-3.66 14.065-8.677 2.433-4.678 3-12.87-1.116-14.99z" />
|
|
205
|
+
<path d="M1642.01 1534.4c-4.415-1.572-10.405 4.4-12.396 9.357-2.09 5.204-1.926 14.18 2.711 15.822 4.68 1.657 10.868-5.153 12.786-10.472 1.788-4.96 1.26-13.155-3.102-14.708z" />
|
|
206
|
+
<path d="M1647.74 1549.94c-4.54-1.165-9.963 5.326-11.496 10.443-1.61 5.372-.632 14.297 4.135 15.51 4.811 1.226 10.356-6.117 11.783-11.588 1.33-5.102.061-13.215-4.423-14.366z" />
|
|
207
|
+
<path d="M1662.37 1556.31c-4.499-1.313-10.132 4.998-11.832 10.062-1.784 5.316-1.099 14.268 3.626 15.637 4.769 1.382 10.55-5.775 12.156-11.197 1.497-5.056.493-13.206-3.95-14.503z" />
|
|
208
|
+
<path
|
|
209
|
+
d="M1671.91 1558.81c-4.547 1.134-6.232 9.423-5.148 14.653 1.138 5.491 6.242 12.878 11.013 11.68 4.815-1.21 6.202-10.306 4.856-15.798-1.256-5.121-6.23-11.655-10.722-10.535z"
|
|
210
|
+
id="s"
|
|
211
|
+
/>
|
|
212
|
+
<use x="16.79" xlink:href="#s" y="6.24" />
|
|
213
|
+
<use x="8.611" xlink:href="#i" y="-11.189" />
|
|
214
|
+
<use x="4.66" xlink:href="#i" y="6.47" />
|
|
215
|
+
<use x="4.911" xlink:href="#i" y="26.679" />
|
|
216
|
+
<use x="4.66" xlink:href="#i" y="47.87" />
|
|
217
|
+
<use x="5.57" xlink:href="#i" y="68.57" />
|
|
218
|
+
<use x="2.22" xlink:href="#i" y="87.75" />
|
|
219
|
+
<use x="4.66" xlink:href="#i" y="109.06" />
|
|
220
|
+
<use x="2.22" xlink:href="#i" y="126.41" />
|
|
221
|
+
<use x="4.66" xlink:href="#i" y="143.46" />
|
|
222
|
+
<use x="4.66" xlink:href="#i" y="163.86" />
|
|
223
|
+
<use x="3.44" xlink:href="#i" y="183.95" />
|
|
224
|
+
<use x="3.74" xlink:href="#i" y="203.13" />
|
|
225
|
+
<use x="4.35" xlink:href="#i" y="223.52" />
|
|
226
|
+
<use x="4.35" xlink:href="#i" y="243.31" />
|
|
227
|
+
<use x="3.74" xlink:href="#i" y="263.1" />
|
|
228
|
+
<use x="2.52" xlink:href="#i" y="283.19" />
|
|
229
|
+
<use x="2.52" xlink:href="#i" y="305.11" />
|
|
230
|
+
<use x="1.92" xlink:href="#i" y="327.94" />
|
|
231
|
+
<use x="1.92" xlink:href="#i" y="349.25" />
|
|
232
|
+
<use x="1.92" xlink:href="#i" y="369.04" />
|
|
233
|
+
<use x="1.31" xlink:href="#i" y="391.27" />
|
|
234
|
+
<path
|
|
235
|
+
d="M1882.24 1303.18c2.442 3.707-1.32 10.832-5.164 13.97-4.036 3.293-11.911 5.463-14.468 1.566-2.58-3.931 1.863-11.458 6.042-14.62 3.896-2.95 11.178-4.577 13.59-.916z"
|
|
236
|
+
id="t"
|
|
237
|
+
/>
|
|
238
|
+
<use x="2.74" xlink:href="#t" y="16.13" />
|
|
239
|
+
<use x="2.43" xlink:href="#t" y="34.1" />
|
|
240
|
+
<use x="2.13" xlink:href="#t" y="52.36" />
|
|
241
|
+
<use x="1.82" xlink:href="#t" y="69.11" />
|
|
242
|
+
<use x="2.74" xlink:href="#t" y="87.07" />
|
|
243
|
+
<use x="1.52" xlink:href="#t" y="104.42" />
|
|
244
|
+
<path d="M1883.25 1426.06c2.696 3.834-1.456 11.203-5.7 14.448-4.454 3.406-13.147 5.65-15.97 1.62-2.848-4.066 2.057-11.85 6.67-15.12 4.3-3.05 12.338-4.735 15.001-.948z" />
|
|
245
|
+
<path
|
|
246
|
+
d="M1882.09 1443.58c3.392 3.235.755 11.272-2.773 15.282-3.706 4.209-11.795 8.104-15.349 4.702-3.586-3.432-.292-12.024 3.594-16.13 3.624-3.83 11.179-7.049 14.529-3.854z"
|
|
247
|
+
id="u"
|
|
248
|
+
/>
|
|
249
|
+
<use x=".61" xlink:href="#u" y="20.4" />
|
|
250
|
+
<use x=".92" xlink:href="#u" y="40.49" />
|
|
251
|
+
<use x=".31" xlink:href="#u" y="62.11" />
|
|
252
|
+
<use x=".92" xlink:href="#u" y="82.2" />
|
|
253
|
+
<use x=".31" xlink:href="#u" y="102.6" />
|
|
254
|
+
<use x=".61" xlink:href="#u" y="122.99" />
|
|
255
|
+
<use x=".61" xlink:href="#u" y="143.69" />
|
|
256
|
+
<use x="-.3" xlink:href="#u" y="164.4" />
|
|
257
|
+
<use x=".92" xlink:href="#u" y="183.27" />
|
|
258
|
+
<use x=".92" xlink:href="#u" y="203.06" />
|
|
259
|
+
<use x=".31" xlink:href="#u" y="224.37" />
|
|
260
|
+
<use x=".31" xlink:href="#u" y="245.37" />
|
|
261
|
+
</g>
|
|
262
|
+
<path d="M1849.64 1848.26c19.902 5.524 31.76 5.236 48.22.43l-17.437-27.984" fill="#fa0204" />
|
|
263
|
+
<path d="M1888.31 1776.16l-31.708-8.141s.366-35.184 20.389-32.116c16.62 2.547 11.985 40.341 11.319 40.257z" fill="#ce9d09" />
|
|
264
|
+
<circle cx="1872.886" cy="1722.971" fill="#ce9d09" r="12.916" />
|
|
265
|
+
<path
|
|
266
|
+
d="M1885.37 1791.86c7.048 17.864 11.37 33.241 4.736 53.386m7.597 3.412c-10.226-8.255-36.582-5.832-47.981-.347-4.453 0-16.446-83.24 25.722-81.183 38.72 1.89 24.949 81.915 22.259 81.53z"
|
|
267
|
+
fill="#fa0204"
|
|
268
|
+
/>
|
|
269
|
+
<path d="M1815.2 1866.34c19.292 12.239 37.25 11.14 54.247.43l-40.255-41.976" fill="#fa0204" />
|
|
270
|
+
<circle cx="1843.396" cy="1738.255" fill="#ce9d09" r="12.916" />
|
|
271
|
+
<path d="M1859.33 1780.02l-32.72-.646s-4.245-26.612 16.145-27.769c16.924-.96 17.251 28.363 16.575 28.415z" fill="#ce9d09" />
|
|
272
|
+
<path
|
|
273
|
+
d="M1843.61 1860.74c-6.261-13.91-6.91-31.026-5.166-49.51m-9.472 50.371c-7.682-13.183-9.107-30.015-3.014-51.233m43.404 56.636c-4.926-6.191-40.227-8.83-54.096-.392-5.02 0-18.54-93.848 29-91.529 43.656 2.13 28.129 92.354 25.096 91.92z"
|
|
274
|
+
fill="#fa0204"
|
|
275
|
+
/>
|
|
276
|
+
</g>
|
|
277
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg viewBox="0 0 192 128" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 0h192v128H0z" fill="#fcd022" />
|
|
3
|
+
<path d="M144 0h48v128h-48z" fill="#007c2e" />
|
|
4
|
+
<path d="M0 0h48v128H0z" fill="#002674" />
|
|
5
|
+
<path
|
|
6
|
+
d="M83.911 92.44L96 115.196l12.089-22.756L96 69.685zM68.267 64l12.089 22.755L92.444 64 80.356 41.244zm31.289 0l12.088 22.756L123.734 64l-12.09-22.756z"
|
|
7
|
+
fill="#007c2e"
|
|
8
|
+
/>
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<svg viewBox="0 0 180 120" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
2
|
+
<defs>
|
|
3
|
+
<g id="d" transform="translate(0 -36)">
|
|
4
|
+
<g id="c">
|
|
5
|
+
<g id="b">
|
|
6
|
+
<path d="M0-5v5h3z" fill="#fff" id="a" transform="rotate(18 0 -5)" />
|
|
7
|
+
<use transform="scale(-1 1)" xlink:href="#a" />
|
|
8
|
+
</g>
|
|
9
|
+
<use transform="rotate(72)" xlink:href="#b" />
|
|
10
|
+
</g>
|
|
11
|
+
<use transform="rotate(-72)" xlink:href="#b" />
|
|
12
|
+
<use transform="rotate(144)" xlink:href="#c" />
|
|
13
|
+
</g>
|
|
14
|
+
</defs>
|
|
15
|
+
<path d="M0 0h180v120H0z" fill="#cf142b" />
|
|
16
|
+
<path d="M0 0h180v80H0z" fill="#00247d" />
|
|
17
|
+
<path d="M0 0h180v40H0z" fill="#fc0" />
|
|
18
|
+
<g transform="translate(90 84)">
|
|
19
|
+
<g id="f">
|
|
20
|
+
<g id="e">
|
|
21
|
+
<use transform="rotate(10)" xlink:href="#d" />
|
|
22
|
+
<use transform="rotate(30)" xlink:href="#d" />
|
|
23
|
+
</g>
|
|
24
|
+
<use transform="rotate(40)" xlink:href="#e" />
|
|
25
|
+
</g>
|
|
26
|
+
<use transform="rotate(-80)" xlink:href="#f" />
|
|
27
|
+
</g>
|
|
28
|
+
</svg>
|