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
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 2000 1000">
|
|
2
|
-
<title>Flag of Kazakhstan</title>
|
|
3
|
-
<rect width="2000" height="1000" fill="#00afca"/>
|
|
4
|
-
<g id="sun" fill="#fec50c" transform="translate(1080.4716,420)">
|
|
5
|
-
<circle r="134.5497"/>
|
|
6
|
-
<g id="r16">
|
|
7
|
-
<g id="r4">
|
|
8
|
-
<path id="r" d="m0,-152.9c8,-0.1 11,-5.1 11,-11.1c0,-8 -11,-46.1 -11,-46.1s-11,38.1 -11,46.1c0,6 3,11.1 11,11.1z"/>
|
|
9
|
-
<use xlink:href="#r" transform="rotate(90)"/>
|
|
10
|
-
<use xlink:href="#r" transform="rotate(180)"/>
|
|
11
|
-
<use xlink:href="#r" transform="rotate(270)"/>
|
|
12
|
-
</g>
|
|
13
|
-
<use xlink:href="#r4" transform="rotate(22.5)"/>
|
|
14
|
-
<use xlink:href="#r4" transform="rotate(45)"/>
|
|
15
|
-
<use xlink:href="#r4" transform="rotate(67.5)"/>
|
|
16
|
-
</g>
|
|
17
|
-
<use xlink:href="#r16" transform="rotate(11.25)"/>
|
|
18
|
-
</g>
|
|
19
|
-
<g id="bird" fill="#fec50c">
|
|
20
|
-
<path d="M316.94,213.44c-1.08,0.06-2.13,0.2-3.16,0.53-1.41,0.19-2.76,0.68-4.16,0.91l-0.56,0.09-0.94,0.09c0.06,0.26,0.1,0.52,0.1,0.78,0,0.27-0.03,0.53-0.1,0.75-0.06,0.21-0.25,0.47-0.4,0.63-0.2,0.22-0.41,0.41-0.66,0.53-0.24,0.12-0.51,0.17-0.78,0.19-0.27,0.01-0.55,0-0.81-0.1-0.27-0.09-0.52-0.26-0.75-0.46-0.28,0.07-0.57,0.12-0.84,0.15-0.28,0.03-0.54,0.03-0.79,0-0.28-0.08-0.57-0.17-0.84-0.28s-0.53-0.25-0.78-0.41c-1.02,0.6-2.16,1.17-2.78,2.22-0.35,0.48-0.42,1.03-0.5,1.6-0.05,0.7,0.13,1.44,0.43,2.09,0.11,0.19,0.2-0.69,0.54-0.81,0.57-0.47,1.28-0.81,2-1,0.61-0.31,0.53,0.02,0.28,0.5-0.06,0.25-0.4,1.2,0.06,0.72,2.03-0.9,4.28-1.08,6.47-1.25,3.18-0.33,6.37-0.4,9.56-0.44,3,0.04,6,0.08,9,0.19,1.43,0.04,2.87,0.36,4.28,0.12,0.34-0.09,0.87-0.11,1.07-0.31-0.64-0.37-1.39-0.38-2.1-0.47h-5.72c-1.59-0.16-3.25-0.18-4.75-0.78-0.4-0.16-0.77-0.54-1.15-0.13-0.57,0.2-1.18,0.34-1.78,0.38-1.05,0.08-2.1-0.14-3.07-0.53,0.7-0.97,1.54-1.82,2.31-2.72-0.62-0.1-1.22-0.23-1.84-0.38,1.09-0.75,2.1-1.6,3.16-2.4z" transform="scale(3.3333333,3.3333333)"/>
|
|
21
|
-
<path d="m1212.2,746.01c-7.2452,4.3503-12.775-3.3623-18.831-5.6752-4.3249,2.3488-4.7288,10.208-8.7706,13.93-4.8342,5.5019-10.76-1.5363-10.318-6.9649-5.7825,4.8741-8.7067,15.922-18.057,14.446-4.4308-3.6151-7.7219-11.201-11.106-2.5636-2.7613,4.2221-10.11,10.229-13.916,3.8533-1.1784-5.6287-4.0008-12.25-7.0634-3.3078-2.1024,6.3247-8.8507,10.978-15.379,8.2088-3.5737-2.9216,2.8649-13.727-1.6841-12.958-6.7998,4.4958-10.753,15.658-20.242,14.764-3.6847-4.1359,2.236-11.144-1.8057-15.735-4.7711,6.1235-10.063,15.089-18.315,15.735-3.9884-3.2319,0.1571-12.501-2.3893-13.873-8.4677,5.0781-17.402,14.128-28.05,11.294,4.1497-15.873,21.49-21.442,36.072-22.68,25.089-3.0835,51.484,2.5863,75.624-6.469,3.9004-2.3734,13.35-5.7392,9.9847-11.244-2.9805-4.3463,7.7529-2.647,8.7855-7.7238-0.639-6.4302,4.9265-5.5452,10.364-6.108,24.376-1.0516,48.455,4.0818,72.758,4.9546,1.8358,11.842-11.301,20.157-21.876,16.5-5.0519,0.81828-12.627-11.615-11.142-2.5698-1.0183,4.7472-0.3056,11.017-4.6433,14.188m-207.4-24.248c5.6435,5.1653,9.6005-0.97254,14.875-3.2155,17.692-6.085,33.128-16.719,48.346-27.344,9.221-7.6305,17.214-17.525,29.597-20,24.155-7.303,49.832-6.4173,74.081-13.157,18.464-25.281,49.825-34.299,76.096-48.831,5.8991-1.8316,8.1781-6.6867,10.062-12.047,10.028-15.83,23.689-29.857,39.845-39.439,7.6441-4.1767,16.764-6.5825,25.418-4.6718-0.6201,10.307-6.5329,19.442-13.672,26.57,5.842-0.12861,10.863-3.8191,16.767-3.6114,2.0233,10.578-9.4007,16.114-15.478,22.7,3.3855,0.78754,16.353,1.7684,9.2865,5.1591-9.0054,6.2497-19.289,10.541-27.602,17.799,7.6694,1.3778,8.5436,3.0082,0.7445,5.782-4.2215,2.8617-12.341,3.8616-13.126,9.4374,5.7939,3.5608-2.6685,7.0964-5.933,8.2546-6.2414,1.4535-12.798,4.1652-4.5067,8.9071-3.1365,4.7384-9.8653,5.7486-15.356,5.2805,1.6661,5.3701,4.0776,11.378-2.8919,13.747-15.624,11.811-33.96,20.402-53.601,22.367,24.536,1.8866,49.807-2.668,70.773-16.011,2.768-3.2727,17.282-6.7896,9.1636-9.5419-3.822-1.5904-12.016-3.3567-12.57-6.2707,11.355-7.006,25.664-4.514,37.88-8.6758,0.3163-3.9551-9.2914-2.8547-12.874-3.7554-8.5427-0.69975-8.0417-2.8803,0.1954-3.6882,10.422-2.759,22.226-3.3028,30.993-10.098-7.1383-3.3066-16.116-0.39512-23.732-3.0955,12.911-5.6498,28.142-6.2167,39.726-14.704,5.2763-5.871-6.7598-4.0356-10.267-3.8931-7.1509,1.2447-10.456-2.1779-2.3324-5.1489,13.871-10.227,31.433-16.871,41.176-31.697,2.3078-3.3186,5.4328-13.319-1.9277-9.7216-9.681,3.2185-18.198,14.101-29.228,10.735,21.733-16.844,42.413-36.02,57.267-59.33,0.7674-6.7232-9.7852-7.4509-12.532-2.172-13.963,13.454-26.6,29.335-44.477,37.77,17.121-16.525,31.276-36.092,43.626-56.372,2.6476-6.0321,9.7642-13.286,5.9021-19.983-6.2255-5.1532-14.013-0.43606-17.248,5.7304-10.854,14.169-19.096,30.708-33.054,42.25,12.219-23.322,24.871-48.148,25.179-75.047-0.037-5.5382-1.1493-13.694-8.6693-12.659-5.9622,1.0681-4.5464,9.9912-7.0042,14.504-5.4111,18.377-7.9508,38.279-19.05,54.371,2.4971-14.934,6.8661-30.5,3.512-45.58-1.5667-6.7396-12.45-3.8412-11.048,2.8288-13.002,65.86-57.194,123.46-114.99,156.78-26.464,14.973-56.023,24.626-86.096,29.002-8.0899,1.7718-16.839,0.73198-24.572,3.4906-18.736,14.367-30.079,38.407-53.802,45.935-10.632,5.2835-24.496,6.3556-32.098,16.233-0.658,1.2632-0.7991,2.7266-0.7739,4.1273"/>
|
|
22
|
-
<path d="m1075.8,654.95c-3.5006,6.354-5.5592,13.658-10.06,19.347-13.541-12.321-33.171-11.914-50.347-12.734-14.177-0.75657-29.594-2.0646-40.563-12.176-11.539-9.452-20.958-21.724-33.852-29.393-11.769-3.2001-23.633-7.2042-33.095-15.271-20.22-16.482-31.8-40.937-51.558-57.933-3.7669-3.7078-8.209-6.5812-12.429-9.7268-4.0096,0.97695-2.1955,9.6311-7.1022,5.2194-2.6694-1.8995-9.348-2.0844-9.9492,0.56937,6.0404,7.96,12.087,17.049,12.924,27.23-4.1198,0.4224-11.445-0.87064-13.487,0.66378,5.4715,8.2003,12.484,15.473,20.452,21.263-3.8217,0.61454-11.353,0.27988-12.818,1.8198,7.9092,6.4462,16.391,13.034,26.747,14.69,2.12,2.7948-3.099,8.1901,1.2898,10.576,2.5458,1.0399,10.945,2.7801,5.1592,5.6751-3.9705,2.6755-2.4971,8.9111,2.5797,8.7706,3.2101,1.6391,10.418,2.0412,10.982,4.879-2.8453,2.8956-11.698,6.3288-4.1637,9.0409,7.039,3.904,15.067,6.4384,23.105,6.7168-4.0336,3.3936-9.004,5.3206-13.156,8.5127,18.55,10.877,39.113,18.03,59.433,24.919,8.0909,2.7031,16.274,5.2237,24.661,6.8102-24.369-1.4066-47.922-8.6212-70.116-18.495-11.503-5.0452-23.084-9.9197-34.873-14.265,5.1692-2.6897,11.148-3.3471,16.509-5.6751-11.128-2.2291-23.285-2.9605-33.067-9.0768,1.4997-2.6758,7.1829-2.8021,10.326-4.1642,5.9114-1.416,9.5779-3.1339,1.2438-3.6475-8.4057-2.2812-18.045-1.2576-25.452-6.3278,0.4769-3.04,8.2283-1.9813,11.386-3.2934,3.9751-0.683,8.3958-1.2548,11.573-3.9294-12.994-5.388-29.99-1.5707-40.168-13.046-2.3476-4.3712,7.2884-0.85006,10.033-1.5782,6.9723,0.00003,14.467,2.2158,21.107-0.59559-18.934-8.3124-39.215-16.095-53.655-31.471-1.6039-2.4716-6.4071-9.2249-2.5317-10.06,11.239,1.4869,19.374,13.753,31.396,11.844,1.5973-2.1526-6.9835-5.6809-9.1254-8.7582-17.528-15.041-34.541-31.364-46.825-51.066-0.84492-6.5792,9.4971-7.565,12.22-2.4832,13.405,12.911,25.514,27.977,42.209,36.791,5.9247,2.8724-3.4012-3.4-4.6433-5.6751-15.427-17.914-30.113-36.834-40.895-57.932-1.9299-3.8028-5.1284-10.686,0.64643-12.71,5.7722-2.8919,11.501,1.0476,14.428,6.0066,11.342,14.305,19.688,31.307,33.817,43.225-12.037-23.359-24.889-47.948-25.2-74.828,0.28226-5.2109,0.61728-13.092,7.6832-12.878,5.9331-0.89942,4.9962,6.696,6.941,10.318,5.845,19.747,8.3946,41.121,20.121,58.556-2.5904-14.649-6.4022-29.735-3.8694-44.627,0.58422-4.8898,6.0884-6.37,9.6818-3.4138,2.9046,7.11,3.5106,15.889,6.1574,23.491,15.06,51.519,48.875,96.832,92.941,127.24,36.292,24.891,79.362,39.749,123.32,42.341,3.9698,0.346,7.9556,0.46548,11.932,0.70954"/>
|
|
23
|
-
<circle cx="1020" cy="720.887" r="2.367"/>
|
|
24
|
-
<circle cx="1019.8" cy="720.507" r="0.965" stroke="#00afca" stroke-width="0.38127393"/>
|
|
25
|
-
</g>
|
|
26
|
-
<g id="ornament" fill="#fec50c">
|
|
27
|
-
<g id="oh">
|
|
28
|
-
<g id="oq">
|
|
29
|
-
<path d="m120,72.922s-9.6109-8.0762-12.874-4.0253c-5.2494,6.5154,16.14,38.968,16.14,50.396,0,18.759-12.517,23.861-27.973,26.539-10.371,1.7981-27.259-0.752-27.259-0.752,3.1796-4.2726,5.2478-5.5316,10.606-5.8731-5.9648-3.0968-12.039-9.8188-12.039-20.284,0-16.138,6.6434-22.789,6.6434-40.983,0-10.093-8.2759-22.941-8.2759-22.941,14.628,1.464,21.878,15.009,17.753,25.834,2.3286,0.33542,4.4428-0.18873,6.2586-1.9094,1.0706,3.0005-0.61945,6.4832-2.8834,9.4837,1.8233,0.97432,3.1624,0.39003,6.0661-0.20942-0.27536,3.0915-2.1278,6.3758-6.6597,9.4671,13.151-3.4144,21.243,5.7517,21.243,15.347,0,7.248-5.0791,12.443-10.044,12.443-1.6044,0-3.9611-0.66078-5.2908-1.6532-0.93725,1.9948-0.45429,4.6646,0.51121,6.6596-3.6388-0.96187-5.9484-3.1229-4.3043-7.6212-2.7948-0.25675-5.0181-1.2011-6.5305-3.0005,1.5323-1.9624,3.8568-3.0927,6.5305-3.0005-2.035-4.1994,0.23284-6.5505,3.5373-8.456,0,0-2.1015,8.4558,3.2654,8.4558,2.4133,0,4.6122-0.78561,4.6122-4.3421,0-3.097-2.7075-7.387-8.9659-7.1142-6.2586,0.27277-11.332,4.3152-11.332,14.306,0,9.2162,7.4334,13.8,17.229,14.096,8.8338,0.27277,15.501-4.5126,15.501-13.625,0-12.128-17.508-39.773-17.508-50.581,0-8.109,7.2922-12.635,14.427-12.635,9.2518,0,17.058,9.1612,17.058,9.1612l-5.4352,6.8146z"/>
|
|
30
|
-
<path id="op" d="m122.02,292.14c0,20.27-18.198,30.688-32.498,30.688-19.266,0-29.524-11.519-29.524-26.598,0-8.5475,1.5661-13.911,5.5074-22.092,0,0,31.78-66.091,44.153-91.653,1.543-3.1882,2.0408-6.8175,2.0408-12.138,0-8.2171-7.97-14.933-16.327-15.139-7.618-0.19053-15.918,7.1022-15.918,15.412,0,10.093,5.2358,14.593,10.612,14.593,6.6157,0,9.2518-2.7198,9.2518-7.3649,0-3.2366-1.5632-4.6371-3.8095-4.6371-5.6744,0-4.0817,7.6376-4.0817,7.6376-2.8183-0.617-5.1335-3.4965-3.8095-7.0921-2.0617-0.45904-3.9929-1.5413-5.5102-3.2733,1.5211-1.4747,3.266-2.6132,5.5102-3.0005-1.3289-4.3872,0.44687-6.5308,4.2857-7.433-0.77466,1.6876-0.80131,3.2401-0.54421,4.7054,6.0436-1.7186,15.306,1.0163,15.306,11.456,0,10.365-7.1935,19.093-20.681,16.912,3.2087,1.5341,4.8407,4.6732,5.1701,8.1832-2.4491-0.9547-5.1701-1.0911-5.1701-1.0911,1.577,2.7808,3.7672,5.1776,3.6734,10.638-2.5006-1.1368-4.8227-3.2419-8.0272-1.9094,5.0294,9.8968-1.1497,23.511-16.871,26.732,5.7537-6.7443,8.5714-14.027,8.5714-21.277,0-23.496-6.5305-27.445-6.5305-43.78,0-6.8343,3.5133-14.215,10.476-19.231v0.27276c-4.6021-1.2324-7.5502-3.4985-9.2447-6.5775,10.515-2.9816,25.799-2.9269,34.006,0.30202,9.434,1.0925,16.019,8.3308,17.959,12.004,1.9406,3.6708,5.7096,16.953,0,28.912-6.2487,13.088-35.711,75.559-44.897,95.198-1.9484,4.1654-3.1293,8.5827-3.1293,13.366,0,12.03,11.02,16.23,17.279,16.23,7.4829,0,15.102-5.7008,15.102-12.82,0-4.5112-2.4491-7.2285-5.9864-7.2285-8.4587,0-7.9449,7.1957-6.2586,11.729-5.2643-2.3667-8.3243-6.5917-7.4829-11.047-2.9805-0.40822-5.8174-1.822-8.4353-4.7735,2.0598-2.601,4.5722-4.5671,8.4353-4.6371-1.6873-6.9119,2.9406-9.8352,7.4829-11.456-1.437,5.0729-2.3803,10.911,6.2586,10.911,6.2986,0,11.258,1.0911,14.15,5.1827,0.17007-5.4553,0.68027-27.005,0.68027-27.005,0.36281-8.0977-10.839-7.8662-17.959-5.4554,2.6871-9.3276,8.1979-14.371,20.952-13.093-3.0953-1.2957-6.3946-4.2084-6.3946-9.8198,0.002-7.593,6.1621-16.005,10.206-18.492l2.022,79.051z"/>
|
|
31
|
-
<use xlink:href="#op" transform="matrix(1,0,0,-1,0,645.08)"/>
|
|
32
|
-
</g>
|
|
33
|
-
<use xlink:href="#oq" transform="matrix(-1,0,0,1,240,0)"/>
|
|
34
|
-
</g>
|
|
35
|
-
<use xlink:href="#oh" transform="matrix(1,0,0,-1,0,1000)"/>
|
|
36
|
-
</g>
|
|
37
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 4"><path fill="#ce1126" d="M0 0h6v4H0z"/><path fill="#002868" d="M0 1h6v2H0z"/><circle fill="#fff" cx="3" cy="2" r=".8"/></svg>
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 750 500">
|
|
2
|
-
<rect fill="#ed1c24" width="750" height="500"/>
|
|
3
|
-
<rect fill="#fff" y="125" width="750" height="250"/>
|
|
4
|
-
<path fill="#00a651" d="M 371.5894,125 C 366.22315,136.2997 356.11736,144.19789 346.45832,151.67157 C 344.86925,153.05938 340.91845,155.74726 343.78458,157.79271 C 346.24017,155.04836 352.97951,158.68259 349.06268,161.63346 C 345.55402,164.9176 340.72308,166.12 336.82746,168.82984 C 333.37726,170.7043 329.87796,172.66173 327.14196,175.53105 C 326.95559,180.0135 332.70358,177.53219 335.03612,179.3996 C 338.07363,182.64705 333.74816,188.12133 329.76182,186.86927 C 324.66471,187.02546 321.14438,191.51029 319.21689,195.78908 C 315.22977,201.95458 307.67448,203.78032 301.65953,207.28899 C 298.21778,209.29528 294.87854,211.51505 291.6746,213.85608 C 287.54383,216.68042 291.13754,222.27234 295.53278,220.89972 C 300.27728,220.4267 304.54592,216.69896 309.45786,217.77316 C 313.91254,219.33833 315.16278,225.16012 313.64459,229.22483 C 312.52055,232.47922 309.79569,234.77154 307.6125,237.31372 C 304.06844,240.90414 299.43359,243.23508 294.54641,244.34656 C 289.82305,245.93241 285.57789,248.826 282.47971,252.73228 C 278.88376,256.35224 275.30219,260.03085 271.1692,263.04934 C 269.86365,266.38067 273.54807,269.21835 276.6199,269.12991 C 283.09222,268.72234 287.57797,263.42506 293.09028,260.70292 C 297.66461,258.64703 303.04806,263.57727 301.92906,268.34281 C 301.57508,272.97905 297.23424,275.33164 293.37475,276.75816 C 282.02885,282.4619 272.1777,290.73284 263.43076,299.85875 C 261.62169,303.54889 256.64826,302.46257 253.97025,305.03499 C 252.22562,308.29039 256.60402,310.00685 259.21608,309.67223 C 270.44112,308.32214 280.91539,303.57761 290.83812,298.3575 C 294.52819,296.59322 297.99323,294.27138 301.82962,292.86533 C 305.43319,291.97509 310.45809,293.54159 311.10283,297.64287 C 311.09773,301.97233 306.80857,304.37035 303.4117,306.06172 C 292.93651,311.56524 281.44052,314.60765 270.24434,318.24607 C 266.05289,317.07424 262.89523,324.53141 267.49329,325.87225 C 272.3554,327.53952 277.52429,326.20279 282.49779,325.98426 C 297.87642,323.62817 311.32634,315.30653 325.70163,309.9273 C 331.67794,307.97923 338.73226,310.6978 341.68165,316.29776 C 344.64481,321.28931 344.37398,327.85334 341.24819,332.70293 C 336.30834,343.27146 328.79833,352.98464 318.7165,359.0613 C 312.38812,362.19434 305.00126,363.39297 299.57757,368.18972 C 294.56146,369.8432 302.09226,376.62136 303.18084,371.24168 C 306.19505,367.13063 311.51128,365.90189 316.33356,365.73205 C 323.58078,364.94312 331.27713,363.60631 336.9083,358.58922 C 341.95671,354.66896 346.93162,349.26076 353.78678,349.17636 C 357.57531,349.62563 361.32238,352.66984 365.17025,350.81231 C 368.53626,349.27162 373.81755,350.17444 374.69678,354.31369 C 376.30415,359.15581 381.29505,361.35894 385.25295,363.95016 C 386.68557,365.96192 391.44596,371.15043 392.54374,366.57601 C 391.65792,363.31338 392.92361,358.32091 397.20351,359.41116 C 400.94191,359.57808 404.50446,360.95653 408.23564,361.18262 C 413.20452,362.21183 417.34927,365.6135 420.17071,369.72085 C 422.11167,372.40126 426.36333,377.00677 429.52222,373.45251 C 431.48249,369.77666 427.74062,366.71103 424.69446,365.39845 C 420.25243,362.64573 416.45462,358.97987 412.57076,355.50887 C 406.84653,350.16275 401.90235,343.36292 400.99374,335.37635 C 399.76199,327.41308 400.4102,319.29095 401.44945,311.34932 C 402.75741,306.23638 409.29554,303.44506 413.86725,306.16167 C 420.30003,309.09681 426.68843,313.29666 434.06328,312.84127 C 444.72,313.07089 455.67072,311.03044 466.08536,314.11859 C 476.21984,317.31095 483.46556,325.86344 493.33765,329.56419 C 495.54761,330.90725 498.37484,329.62908 499.18462,327.26866 C 500.16303,325.1476 499.47268,322.43378 497.42896,321.22499 C 485.98778,309.67613 470.35146,304.06569 457.11353,295.04126 C 452.94587,293.98288 452.18706,287.27769 456.03973,285.34185 C 461.10528,281.66065 468.2721,283.37428 472.76607,287.16972 C 476.56118,289.39278 480.8368,291.05827 485.2894,291.06224 C 489.85029,289.63448 487.63912,283.03469 483.55544,282.53841 C 476.15622,278.36058 470.8569,271.50481 464.44632,266.0718 C 460.75559,262.94683 456.716,259.78287 451.7557,259.17634 C 449.04451,258.68263 446.27094,258.57459 443.52394,258.75896 C 440.9476,255.95914 444.38123,251.67208 447.71241,252.02262 C 451.1308,252.25288 454.52965,252.50697 457.94359,252.03127 C 461.75876,251.75176 465.57064,251.35683 469.39939,251.33063 C 472.48995,253.43534 478.66583,249.7996 475.87651,246.17083 C 472.82951,243.50085 468.42334,243.73277 464.78211,242.36257 C 458.38547,240.26395 451.87572,238.56782 445.28454,237.23756 C 440.67325,236.9626 441.242,230.89376 445.29497,230.22441 C 447.94739,229.23496 450.25279,231.27278 452.79892,231.5887 C 457.14735,232.52313 461.63683,232.51113 465.9831,233.45849 C 469.66816,231.63935 466.81948,226.2555 463.48593,225.94179 C 455.62045,223.12924 448.82304,218.05295 442.17788,213.11487 C 434.84116,207.59721 428.18494,201.21633 420.75826,195.82617 C 418.06357,194.15628 413.64683,193.67534 412.93795,189.97462 C 412.68795,186.57015 416.69529,185.01965 419.53592,185.81559 C 423.56634,187.00583 427.32195,189.07846 431.42972,190.09605 C 434.65252,190.64375 437.97545,191.59738 441.08179,191.19126 C 445.02496,188.71371 439.39058,187.13019 437.35122,186.27058 C 432.0938,183.43513 427.42242,179.65733 422.69107,176.0548 C 418.69278,172.64193 426.08234,171.13414 428.62427,172.44822 C 432.87417,174.22617 433.35847,168.03333 430.18167,166.47498 C 426.43855,164.88338 423.2196,162.24124 419.82552,159.93707 C 413.69304,155.57159 406.74727,152.1159 399.20847,151.156 C 390.75634,150.3067 382.86721,145.44628 378.38327,138.21818 C 375.60269,134.09908 373.56207,129.54384 371.5894,125 z M 343.8321,172.41771 C 348.18843,172.54695 347.51872,180.39793 343.22983,179.87413 C 339.06481,179.60609 339.31972,171.57429 343.8321,172.41771 z M 384.92234,176.64564 C 389.16127,175.88738 390.05889,183.62274 385.82379,183.98589 C 381.41121,184.77575 379.7758,176.15615 384.92234,176.64564 z M 372.88731,177.65384 C 377.18466,178.49924 376.42021,185.98556 372.08328,186.05098 C 368.91022,186.75752 365.49025,188.92314 362.28008,187.30008 C 359.66952,184.53908 363.44271,180.45635 366.35676,179.55883 C 368.59191,179.10829 370.64832,178.09344 372.88731,177.65384 z M 400.58563,177.68637 C 404.72688,179.19709 403.26629,186.50778 398.8981,186.41459 C 394.76724,186.96811 392.84357,180.07706 396.6956,178.44266 C 397.9426,178.00052 399.24903,177.62794 400.58563,177.68637 z M 353.8613,185.97958 C 356.90649,188.87754 355.10789,194.47009 351.35311,195.80715 C 348.64664,197.31266 344.95682,200.87381 342.00892,197.94369 C 340.40943,194.36455 344.42423,191.66946 346.78572,189.68283 C 348.89329,188.04409 351.21909,186.55653 353.8613,185.97958 z M 388.63905,202.14325 C 392.99893,204.2019 390.78574,212.05909 386.00062,211.57069 C 382.07061,210.57486 382.58371,203.83444 386.54227,203.29678 C 387.29055,203.01039 387.9769,202.58881 388.63905,202.14325 z M 374.80463,202.92376 C 378.88224,204.83283 375.76886,211.63754 371.6618,210.657 C 367.40345,210.15691 367.48196,202.67024 372.17815,203.34611 C 373.06305,203.30222 373.97688,203.27971 374.80463,202.92376 z M 404.62678,206.82647 C 409.096,205.43963 414.4766,210.04402 413.02612,214.71319 C 411.03543,218.33295 406.10946,218.79124 402.58121,217.43842 C 398.52983,217.23842 395.80478,211.1478 399.41404,208.56875 C 400.90756,207.44072 402.79022,206.97715 404.62678,206.82647 z M 338.611,207.99725 C 342.30631,205.98682 346.22984,212.02929 343.08717,214.69451 C 341.00551,217.75492 335.66012,219.00525 333.30317,215.60189 C 331.34505,212.27783 334.51104,206.69321 338.611,207.99725 z M 321.56135,210.85925 C 325.75319,211.43274 328.48457,215.24015 330.03376,218.86551 C 330.41193,223.28362 323.89286,225.70783 321.04899,222.49331 C 317.85114,220.48713 315.05191,216.36132 316.72839,212.53213 C 317.76131,211.0116 319.81909,210.38426 321.56135,210.85925 z M 423.56431,226.82777 C 428.11364,225.62888 431.41652,232.89939 427.51018,235.52953 C 423.93847,238.77373 416.99376,234.47573 418.85644,229.84687 C 419.78218,228.1308 421.63401,226.99026 423.56431,226.82777 z M 365.66037,235.121 C 369.47498,235.6068 368.2391,242.21814 364.71192,241.99623 C 360.92636,241.29454 361.79307,234.74813 365.66037,235.121 z M 346.3099,238.6334 C 349.42124,236.43197 353.434,241.80509 350.84595,244.3089 C 347.74396,246.49354 343.72032,241.20565 346.3099,238.6334 z M 377.07598,239.28385 C 380.68235,241.47514 382.82338,245.56095 383.27166,249.68389 C 381.54334,253.53578 374.86866,252.60724 374.11615,248.50531 C 372.79639,245.26124 374.01269,241.08758 377.07598,239.28385 z M 387.81313,245.65826 C 392.46055,244.49084 390.79279,254.20485 386.91238,250.83545 C 385.62285,249.30414 386.31349,246.78444 387.81313,245.65826 z M 320.38146,252.42293 C 323.45884,251.52156 327.94465,252.46899 328.7941,256.00085 C 329.15292,259.32013 325.5028,261.04696 322.8282,261.86956 C 318.54137,263.19231 314.34875,265.36394 309.73883,265.07221 C 306.28351,263.09729 305.04323,259.05585 303.81128,255.53103 C 307.14601,252.40445 312.05643,253.32163 316.19018,252.53906 C 317.58613,252.4675 318.98379,252.43346 320.38146,252.42293 z M 424.98018,267.64343 C 428.90575,265.71883 433.12728,271.9498 429.84137,274.86023 C 425.73054,279.59171 417.81599,280.47093 412.90065,276.49605 C 412.30974,272.3088 416.49236,269.26764 420.20768,268.66669 C 421.77056,268.22519 423.32385,267.56559 424.98018,267.64343 z M 447.04443,272.42422 C 451.50464,271.6566 455.01805,278.01951 451.83272,281.3126 C 448.81821,285.85801 441.62942,287.05014 437.51912,283.32422 C 435.91659,279.55585 439.16741,275.62934 442.62728,274.42031 C 444.11438,273.78742 445.52241,272.97626 447.04443,272.42422 z M 336.10372,279.1889 C 340.23431,278.78128 344.01843,282.87955 343.47633,286.95187 C 346.46651,289.89444 341.17144,295.37643 338.19238,292.32933 C 335.56714,289.14836 335.58095,284.83298 334.56407,281.02604 C 334.51857,280.18042 335.14459,279.08508 336.10372,279.1889 z M 367.81369,281.56305 C 372.08402,279.7168 377.60876,284.82551 375.28387,289.15052 C 373.6236,292.67309 367.14833,291.4924 367.3635,287.41217 C 367.35245,285.46035 367.19489,283.45856 367.81369,281.56305 z M 352.38642,284.32743 C 356.66836,283.34572 360.59695,288.89644 358.21743,292.60021 C 353.94846,292.97974 351.73219,287.9133 352.38642,284.32743 z"/>
|
|
5
|
-
</svg>
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300">
|
|
2
|
-
<rect fill="#6Cf" width="600" height="300"/>
|
|
3
|
-
<polygon fill="#FFF" points="200,274 300,260 400,274 300,27"/>
|
|
4
|
-
<polygon points="213.5,274 300,260 386.5,274 300,60"/>
|
|
5
|
-
<polygon fill="#FCD116" points="200,274 400,274 300,150"/>
|
|
6
|
-
</svg>
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" viewBox="0 0 1000 600">
|
|
2
|
-
<rect width="1000" height="600" fill="#002b7f"/>
|
|
3
|
-
<rect y="300" width="1000" height="300" fill="#ce1126"/>
|
|
4
|
-
<g fill="#ffd83d" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
|
5
|
-
<g id="half">
|
|
6
|
-
<path d="M 216.37706,122.2886 L 214.53882,184.7886 L 151.1197,184.7886 C 143.31716,169.62032 136.87338,156.73735 136.87338,139.29228 C 136.87338,124.69269 148.35647,113.09742 164.90647,113.09742 C 182.42619,113.09742 201.67512,119.001 216.37706,122.2886 z" stroke="none"/>
|
|
7
|
-
<g stroke-width="1.5">
|
|
8
|
-
<path d="M 144.45611,125.16084 V 161.23621"/>
|
|
9
|
-
<path d="M 149.54956,121.47933 V 169.51333"/>
|
|
10
|
-
<path d="M 154.64301,118.95176 V 176.17693"/>
|
|
11
|
-
<path d="M 159.73645,117.77081 V 162.65201"/>
|
|
12
|
-
<path d="M 164.82989,117.54815 V 162.87466"/>
|
|
13
|
-
<path d="M 169.92335,115.96463 V 162.84973"/>
|
|
14
|
-
<path d="M 175.01679,115.96463 V 162.84973"/>
|
|
15
|
-
<path d="M 180.11024,116.42419 V 163.30929"/>
|
|
16
|
-
<path d="M 185.20367,116.88375 V 163.76885"/>
|
|
17
|
-
<path d="M 190.29712,119.87088 V 166.75598"/>
|
|
18
|
-
<path d="M 195.39057,120.33044 V 173.1898"/>
|
|
19
|
-
<path d="M 200.48402,120.33044 V 167.21554"/>
|
|
20
|
-
<path d="M 205.57747,120.33044 V 167.21554"/>
|
|
21
|
-
<path d="M 176.39544,117.92279 C 187.15891,119.69824 210.80151,130.75993 208.105,145.72611 C 204.28366,166.93537 191.89725,158.42373 175.47632,155.37684 L 163.06823,159.51287 C 158.62839,164.04466 152.09048,168.19641 147.67301,162.72978 L 140.32007,162.72978 L 140.32007,191.4522 L 221.66198,191.4522 L 221.66198,122.05882 z" fill="#000"/>
|
|
22
|
-
</g>
|
|
23
|
-
<circle cx="212.81549" cy="112.98255" r="4.94026"/>
|
|
24
|
-
<circle cx="201.713" cy="110.31052" r="4.94026"/>
|
|
25
|
-
<circle cx="190.44973" cy="107.48178" r="4.94026"/>
|
|
26
|
-
<circle cx="179.14295" cy="105.59596" r="4.94026"/>
|
|
27
|
-
<circle cx="167.83617" cy="104.48071" r="4.94026"/>
|
|
28
|
-
<circle cx="156.74931" cy="105.11261" r="4.94026"/>
|
|
29
|
-
<circle cx="146.17946" cy="108.73163" r="4.94026"/>
|
|
30
|
-
<circle cx="137.27551" cy="115.28035" r="4.94026"/>
|
|
31
|
-
<circle cx="130.95657" cy="124.41408" r="4.94026"/>
|
|
32
|
-
<circle cx="127.912" cy="135.15627" r="4.94026"/>
|
|
33
|
-
<circle cx="128.02689" cy="146.30057" r="4.94026"/>
|
|
34
|
-
<circle cx="130.15236" cy="157.21509" r="4.94026"/>
|
|
35
|
-
<path d="M 214.99838,119.53125 L 214.53882,125.96507 C 202.24782,124.08194 184.82391,117.23346 168.58294,117.23346 C 153.57656,117.23346 141.92853,123.23616 141.92853,138.37316 C 141.92853,153.29163 148.24631,166.85838 156.63441,180.65257 L 147.90279,184.7886 C 140.10025,169.62032 133.65647,156.73735 133.65647,139.29228 C 133.65647,124.69269 145.13956,110.34007 164.90647,110.34007 C 182.42619,110.34007 200.29644,116.24365 214.99838,119.53125 z"/>
|
|
36
|
-
</g>
|
|
37
|
-
<use xlink:href="#half" transform="translate(443.9375) scale(-1,1)"/>
|
|
38
|
-
<path d="M 221.96875,53.125 L 216.8125,62.78125 L 221.96875,72.40625 L 227.125,62.78125 L 221.96875,53.125 z M 221.96875,77.5 L 216.8125,87.125 L 221.96875,96.78125 L 227.125,87.125 L 221.96875,77.5 z"/>
|
|
39
|
-
<path d="M 203.58731,74.953125 L 211.71883,80.109375 L 219.82403,74.953125 L 211.71883,69.796875 L 203.58731,74.953125 z M 224.11347,74.953125 L 232.21867,80.109375 L 240.35019,74.953125 L 232.21867,69.796875 L 224.11347,74.953125 z"/>
|
|
40
|
-
<circle cx="221.96875" cy="75.06893" r="3.90625"/>
|
|
41
|
-
<circle cx="221.96875" cy="100" r="10.45496"/>
|
|
42
|
-
<path d="M 219.34375,89.875 C 219.34375,92.989438 219.32163,94.799139 219.3125,96.5 C 216.79207,96.611865 214.30676,96.876712 211.875,97.28125 M 232.0625,97.28125 C 229.63074,96.876712 227.14543,96.611865 224.625,96.5 C 224.625,94.801655 224.625,92.997132 224.625,89.875 M 211.84375,102.5625 C 215.13846,102.01215 218.51788,101.71875 221.96875,101.71875 C 225.41962,101.71875 228.79904,102.01215 232.09375,102.5625" fill="none" stroke-width="1.5"/>
|
|
43
|
-
<path d="M 211.75,117.6875 C 210.75812,134.76968 208.74143,152.16667 202.09375,164.8125 L 212.90625,160.4375 C 216.68272,146.10873 217.47609,127.59492 218.625,118.84375 L 211.75,117.6875 z M 232.1875,117.6875 L 225.3125,118.84375 C 226.4614,127.59492 227.25478,146.10873 231.03125,160.4375 L 241.84375,164.8125 C 235.19607,152.16667 233.17938,134.76968 232.1875,117.6875 z"/>
|
|
44
|
-
<path d="M 221.95313,154.6875 C 209.03974,154.6875 199.55398,160.77412 198.98438,176.28125 C 195.82773,170.72636 182.4742,153.25552 170.01563,155.59375 C 162.60576,156.98444 156.05854,167.25962 157.17188,179.03125 C 151.037,161.40135 133.06509,158.51225 119.95313,168.9375 C 131.59529,178.51001 136.77421,206.77225 146.57813,219.03125 L 221.95313,219.03125 L 297.32813,219.03125 C 307.13204,206.77225 312.34222,178.51001 323.98438,168.9375 C 310.87241,158.51225 292.90051,161.40135 286.76563,179.03125 C 287.87896,167.25962 281.3005,156.98444 273.89063,155.59375 C 261.43205,153.25552 248.10978,170.72636 244.95313,176.28125 C 244.38354,160.77412 234.86652,154.6875 221.95313,154.6875 z"/>
|
|
45
|
-
<g stroke-width="1.5">
|
|
46
|
-
<path d="M 297.10662,219.02573 C 297.10662,224.60663 263.44486,230.74447 221.96875,230.74447 C 180.49265,230.74447 146.83089,224.60663 146.83089,219.02573 C 146.83089,213.44487 180.49265,210.5239 221.96875,210.5239 C 263.44486,210.5239 297.10662,213.44487 297.10662,219.02573 z" fill="#000"/>
|
|
47
|
-
<circle cx="221.96875" cy="114.44459" r="3.50414"/>
|
|
48
|
-
<circle cx="221.96875" cy="122.02731" r="3.73392"/>
|
|
49
|
-
<circle cx="221.96875" cy="130.18447" r="4.07859"/>
|
|
50
|
-
<circle cx="221.96875" cy="139.26075" r="4.65303"/>
|
|
51
|
-
<circle cx="221.96875" cy="149.37105" r="5.11259"/>
|
|
52
|
-
<path d="M 219.93751,159.20588 C 219.38456,159.19901 218.86165,159.6649 219.00001,160.54963 C 219.16297,161.59315 219.36706,163.54482 219.56251,164.86213 C 219.78339,166.35532 220.65373,165.99233 220.87501,164.83088 C 221.09631,163.66986 221.00709,162.925 221.06251,160.76838 C 221.09024,159.69029 220.49047,159.21276 219.93751,159.20588 z M 224.00001,159.20588 C 223.44705,159.21276 222.8473,159.69029 222.87501,160.76838 C 222.93043,162.925 222.84123,163.66986 223.06251,164.83088 C 223.28379,165.99233 224.15415,166.35532 224.37501,164.86213 C 224.57046,163.54482 224.77457,161.59315 224.93751,160.54963 C 225.07587,159.6649 224.55298,159.19901 224.00001,159.20588 z M 216.31251,159.76838 C 215.80668,159.83874 215.2822,160.34892 215.31251,160.89338 C 215.36753,161.88856 215.64291,163.0823 215.75001,164.58088 C 215.86046,166.12907 216.95166,165.52771 217.06251,164.64338 C 217.17296,163.75866 217.29793,162.45118 217.18751,160.73713 C 217.1461,160.09422 216.8653,159.8115 216.53126,159.76838 C 216.46168,159.75941 216.38477,159.75833 216.31251,159.76838 z M 227.40626,159.76838 C 227.07222,159.8115 226.79144,160.09422 226.75001,160.73713 C 226.63959,162.45118 226.76458,163.75866 226.87501,164.64338 C 226.98586,165.52771 228.07708,166.12907 228.18751,164.58088 C 228.29461,163.0823 228.57001,161.88856 228.62501,160.89338 C 228.65532,160.34892 228.13086,159.83874 227.62501,159.76838 C 227.55275,159.75833 227.47586,159.75941 227.40626,159.76838 z M 211.96876,161.51838 C 211.50567,161.63805 211.0804,162.19494 211.21876,162.83088 C 211.49507,164.10277 211.75001,165.50899 211.75001,166.79963 C 211.75002,167.90566 212.69459,167.511 212.75001,166.73713 C 212.80503,165.96284 212.90626,164.32364 212.90626,162.83088 C 212.90627,161.71632 212.43186,161.39872 211.96876,161.51838 z M 231.65626,161.51838 C 231.32747,161.60947 231.03126,161.99496 231.03126,162.83088 C 231.03126,164.32364 231.13251,165.96284 231.18751,166.73713 C 231.24293,167.511 232.18752,167.90566 232.18751,166.79963 C 232.18751,165.50899 232.44247,164.10277 232.71876,162.83088 C 232.85712,162.19494 232.43187,161.63805 231.96876,161.51838 C 231.85299,161.48846 231.76586,161.48802 231.65626,161.51838 z M 172.56251,161.68934 C 172.00845,161.67094 171.61973,162.42254 172.00001,163.25184 C 172.60804,164.57916 173.25407,165.41659 173.87501,166.84559 C 174.42803,168.11748 175.2763,167.32448 175.00001,166.43934 C 174.7233,165.55461 174.42308,164.56923 173.59376,162.68934 C 173.28263,161.98423 172.89495,161.70039 172.56251,161.68934 z M 271.37501,161.68934 C 271.04257,161.70039 270.65489,161.98423 270.34376,162.68934 C 269.51444,164.56923 269.21422,165.55461 268.93751,166.43934 C 268.66122,167.32448 269.50949,168.11748 270.06251,166.84559 C 270.68345,165.41659 271.32948,164.57916 271.93751,163.25184 C 272.31779,162.42254 271.92907,161.67094 271.37501,161.68934 z M 176.56251,161.75184 C 176.15469,161.8763 175.90747,162.39361 176.15626,163.00184 C 176.65427,164.21831 177.37284,165.46536 177.87501,166.78309 C 178.31718,167.94413 179.3009,167.61494 178.96876,166.56434 C 178.63704,165.51375 178.53846,164.89884 177.87501,162.90809 C 177.54309,161.91293 176.97034,161.62739 176.56251,161.75184 z M 267.06251,161.75184 C 266.71381,161.82629 266.31145,162.16172 266.06251,162.90809 C 265.39906,164.89884 265.30048,165.51375 264.96876,166.56434 C 264.63662,167.61494 265.62034,167.94413 266.06251,166.78309 C 266.56468,165.46536 267.28325,164.21831 267.78126,163.00184 C 268.03005,162.39361 267.78283,161.8763 267.37501,161.75184 C 267.27305,161.72073 267.17874,161.72702 267.06251,161.75184 z M 181.56251,162.72059 C 181.04838,162.81843 180.65026,163.60277 181.00001,164.56434 C 181.4426,165.78081 182.072,166.93202 182.62501,168.31434 C 183.17803,169.69667 184.0963,169.41781 183.87501,168.53309 C 183.65374,167.64836 183.38263,166.18221 182.71876,163.97059 C 182.42851,163.00283 181.9624,162.6445 181.56251,162.72059 z M 262.37501,162.72059 C 261.97512,162.6445 261.50901,163.00283 261.21876,163.97059 C 260.55489,166.18221 260.28378,167.64836 260.06251,168.53309 C 259.84122,169.41781 260.75949,169.69667 261.31251,168.31434 C 261.86552,166.93202 262.49492,165.78081 262.93751,164.56434 C 263.28726,163.60277 262.88914,162.81843 262.37501,162.72059 z M 169.18751,163.40809 C 168.63064,163.46496 168.12339,164.37333 168.46876,165.06434 C 169.0222,166.17037 169.37242,166.54665 169.90626,167.72059 C 170.45928,168.93706 171.06504,167.99489 170.84376,167.22059 C 170.62248,166.4463 170.33882,165.54493 170.06251,164.43934 C 169.85999,163.62937 169.52164,163.37397 169.18751,163.40809 z M 274.75001,163.40809 C 274.41588,163.37397 274.07753,163.62937 273.87501,164.43934 C 273.5987,165.54493 273.31504,166.4463 273.09376,167.22059 C 272.87248,167.99489 273.47824,168.93706 274.03126,167.72059 C 274.5651,166.54665 274.91532,166.17037 275.46876,165.06434 C 275.81413,164.37333 275.30688,163.46496 274.75001,163.40809 z M 207.71876,166.20588 C 207.13501,166.20536 206.51143,166.98024 206.71876,167.70588 C 207.05049,168.86734 207.56328,169.89687 207.93751,171.39338 C 208.26924,172.72029 209.21168,172.05937 209.15626,171.17463 C 209.10085,170.28991 208.94926,169.0862 208.56251,167.20588 C 208.41734,166.50092 208.06902,166.2062 207.71876,166.20588 z M 236.21876,166.20588 C 235.8685,166.2062 235.5202,166.50092 235.37501,167.20588 C 234.98826,169.0862 234.83669,170.28991 234.78126,171.17463 C 234.72584,172.05937 235.6683,172.72029 236.00001,171.39338 C 236.37424,169.89687 236.88705,168.86734 237.21876,167.70588 C 237.42609,166.98024 236.80253,166.20536 236.21876,166.20588 z M 221.96876,167.39338 C 221.24958,167.39339 221.15023,168.35899 221.12501,169.14338 C 221.04236,171.71466 219.97517,174.21192 219.06251,175.45588 C 218.15028,176.70025 216.80689,176.36933 215.56251,175.70588 C 214.31815,175.04245 213.5769,174.54522 212.25001,173.54963 C 210.9227,172.55448 209.91641,173.13633 211.50001,175.39338 C 216.11747,181.97369 221.12501,187.5982 221.12501,198.33088 C 221.12502,199.71862 221.36747,200.14338 221.96876,200.14338 C 222.57005,200.14338 222.84374,199.71862 222.84376,198.33088 C 222.84376,187.5982 227.82007,181.97369 232.43751,175.39338 C 234.02111,173.13633 233.01484,172.55448 231.68751,173.54963 C 230.36062,174.54522 229.61939,175.04245 228.37501,175.70588 C 227.13063,176.36933 225.78726,176.70025 224.87501,175.45588 C 223.96235,174.21192 222.89518,171.71466 222.81251,169.14338 C 222.78729,168.35899 222.68796,167.39339 221.96876,167.39338 z M 186.68751,165.78309 C 186.62459,165.78137 186.55597,165.79672 186.50001,165.81434 C 186.23143,165.89895 186.05249,166.22315 186.15626,166.78309 C 186.34172,167.78535 187.03621,169.7496 187.31251,170.68934 C 187.58924,171.62952 188.74506,171.42956 188.46876,170.15809 C 188.19206,168.88621 188.20674,168.50208 187.87501,167.06434 C 187.69361,166.27808 187.12805,165.79517 186.68751,165.78309 z M 257.25001,165.78309 C 256.80947,165.79517 256.24393,166.27808 256.06251,167.06434 C 255.73078,168.50208 255.74548,168.88621 255.46876,170.15809 C 255.19246,171.42956 256.3483,171.62952 256.62501,170.68934 C 256.90131,169.7496 257.5958,167.78535 257.78126,166.78309 C 257.88503,166.22315 257.70609,165.89895 257.43751,165.81434 C 257.38155,165.79672 257.31295,165.78137 257.25001,165.78309 z M 165.71876,166.18934 C 165.13997,166.23465 164.72491,166.96181 165.31251,168.03309 C 165.94637,169.18996 167.03368,170.64128 167.53126,171.47059 C 168.02886,172.29991 168.88969,171.74036 168.28126,170.68934 C 167.67324,169.63877 167.46889,168.4321 166.75001,166.93934 C 166.48045,166.37941 166.06604,166.16216 165.71876,166.18934 z M 278.21876,166.18934 C 277.87148,166.16216 277.45707,166.37941 277.18751,166.93934 C 276.46863,168.4321 276.26428,169.63877 275.65626,170.68934 C 275.04783,171.74036 275.90866,172.29991 276.40626,171.47059 C 276.90384,170.64128 277.99115,169.18996 278.62501,168.03309 C 279.21261,166.96181 278.79755,166.23465 278.21876,166.18934 z M 134.03126,169.51838 C 133.36345,169.4829 133.15409,170.68863 133.78126,171.48713 C 134.69393,172.64817 135.32901,173.26405 136.37501,174.20588 C 137.20474,174.95227 137.44592,173.98351 137.03126,173.23713 C 136.61662,172.49076 136.01682,171.7315 135.18751,170.48713 C 134.73288,169.80512 134.33481,169.53451 134.03126,169.51838 z M 309.90626,169.51838 C 309.60271,169.53451 309.20464,169.80512 308.75001,170.48713 C 307.9207,171.7315 307.3209,172.49076 306.90626,173.23713 C 306.4916,173.98351 306.73278,174.95227 307.56251,174.20588 C 308.60851,173.26405 309.24359,172.64817 310.15626,171.48713 C 310.78343,170.68863 310.57407,169.4829 309.90626,169.51838 z M 139.06251,170.51838 C 138.53029,170.52532 138.17911,170.91843 138.59376,171.83088 C 139.18763,173.13695 139.97076,174.61654 140.46876,175.61213 C 140.96636,176.60732 142.48303,176.94156 141.87501,175.39338 C 141.26659,173.84521 141.14677,173.04988 140.59376,171.61213 C 140.31726,170.89327 139.59474,170.51145 139.06251,170.51838 z M 304.87501,170.51838 C 304.34278,170.51145 303.62026,170.89327 303.34376,171.61213 C 302.79075,173.04988 302.67093,173.84521 302.06251,175.39338 C 301.45449,176.94156 302.97116,176.60732 303.46876,175.61213 C 303.96676,174.61654 304.74989,173.13695 305.34376,171.83088 C 305.75841,170.91843 305.40723,170.52532 304.87501,170.51838 z M 129.31251,170.86213 C 128.53874,170.87003 128.47208,171.6458 129.15626,172.14338 C 130.06892,172.80684 131.15649,173.54322 132.21876,174.39338 C 133.46273,175.38856 133.9447,174.4731 133.28126,173.64338 C 132.61782,172.81408 131.97153,171.9731 130.31251,171.14338 C 129.89776,170.93606 129.57043,170.8595 129.31251,170.86213 z M 314.62501,170.86213 C 314.36709,170.8595 314.03976,170.93606 313.62501,171.14338 C 311.96599,171.9731 311.3197,172.81408 310.65626,173.64338 C 309.99282,174.4731 310.47479,175.38856 311.71876,174.39338 C 312.78103,173.54322 313.86859,172.80684 314.78126,172.14338 C 315.46544,171.6458 315.39877,170.87003 314.62501,170.86213 z M 204.96876,171.58088 C 204.5358,171.64145 204.16235,172.13322 204.34376,172.76838 C 204.67549,173.92942 205.05205,175.15983 205.28126,176.36213 C 205.50256,177.52359 206.8463,177.53773 206.62501,176.48713 C 206.40415,175.43655 206.29299,174.12199 205.90626,172.51838 C 205.76109,171.91704 205.45795,171.62817 205.15626,171.58088 C 205.09342,171.57104 205.03061,171.57223 204.96876,171.58088 z M 238.78126,171.58088 C 238.47957,171.62817 238.17645,171.91704 238.03126,172.51838 C 237.64453,174.12199 237.53339,175.43655 237.31251,176.48713 C 237.09122,177.53773 238.43498,177.52359 238.65626,176.36213 C 238.88547,175.15983 239.26205,173.92942 239.59376,172.76838 C 239.77517,172.13322 239.40174,171.64145 238.96876,171.58088 C 238.90691,171.57223 238.84412,171.57104 238.78126,171.58088 z M 174.87501,169.59559 C 174.53504,169.68956 174.33942,170.33955 174.59376,171.25184 C 176.004,176.31148 176.4363,178.97621 176.18751,180.22059 C 175.93873,181.46457 175.256,181.63524 174.34376,181.22059 C 173.43153,180.80594 172.36056,180.20736 171.53126,179.62684 C 170.70196,179.04592 169.83939,179.74084 171.03126,180.72059 C 177.08606,185.69729 181.28306,191.38482 182.90626,198.28309 C 183.238,199.69294 184.12381,199.85878 183.87501,198.28309 C 182.5027,189.59329 182.23882,182.44969 184.31251,177.97059 C 185.09182,176.28738 184.30689,174.67095 183.06251,177.40809 C 182.23321,179.23301 180.89102,179.95295 179.81251,178.37684 C 178.7344,176.80116 176.5072,172.59717 175.84376,170.68934 C 175.59482,169.97391 175.28778,169.64292 175.03126,169.59559 C 174.97783,169.58574 174.92358,169.58217 174.87501,169.59559 z M 268.90626,169.59559 C 268.64974,169.64292 268.3427,169.97391 268.09376,170.68934 C 267.43032,172.59717 265.20312,176.80116 264.12501,178.37684 C 263.0465,179.95295 261.70431,179.23301 260.87501,177.40809 C 259.63063,174.67095 258.8457,176.28738 259.62501,177.97059 C 261.6987,182.44969 261.43482,189.59329 260.06251,198.28309 C 259.81371,199.85878 260.69952,199.69294 261.03126,198.28309 C 262.65446,191.38482 266.85146,185.69729 272.90626,180.72059 C 274.09813,179.74084 273.23556,179.04592 272.40626,179.62684 C 271.57696,180.20736 270.50599,180.80594 269.59376,181.22059 C 268.68152,181.63524 267.99879,181.46457 267.75001,180.22059 C 267.50122,178.97621 267.93352,176.31148 269.34376,171.25184 C 269.5981,170.33955 269.40248,169.68956 269.06251,169.59559 C 269.01394,169.58217 268.95969,169.58574 268.90626,169.59559 z M 144.43751,172.01838 C 143.89144,172.02532 143.43872,172.40782 143.68751,173.23713 C 144.08634,174.5657 144.91121,176.00157 145.18751,176.83088 C 145.46423,177.66021 146.35337,177.27317 146.18751,176.11213 C 146.02167,174.95111 145.94005,174.25902 145.71876,172.98713 C 145.60813,172.35141 144.98359,172.01145 144.43751,172.01838 z M 299.50001,172.01838 C 298.95393,172.01145 298.32939,172.35141 298.21876,172.98713 C 297.99747,174.25902 297.91585,174.95111 297.75001,176.11213 C 297.58415,177.27317 298.47329,177.66021 298.75001,176.83088 C 299.02631,176.00157 299.85118,174.5657 300.25001,173.23713 C 300.4988,172.40782 300.04608,172.02532 299.50001,172.01838 z M 163.21876,170.28309 C 162.58372,170.16913 162.49242,171.80734 163.03126,172.47059 C 163.75015,173.35576 164.74859,174.42538 165.75001,175.62684 C 166.57933,176.62244 167.09175,175.73741 166.59376,174.90809 C 166.09619,174.07837 165.35814,173.19678 164.03126,171.09559 C 163.69944,170.5703 163.43044,170.32108 163.21876,170.28309 z M 280.71876,170.28309 C 280.50708,170.32108 280.23808,170.5703 279.90626,171.09559 C 278.57938,173.19678 277.84133,174.07837 277.34376,174.90809 C 276.84577,175.73741 277.35819,176.62244 278.18751,175.62684 C 279.18893,174.42538 280.18737,173.35576 280.90626,172.47059 C 281.4451,171.80734 281.3538,170.16913 280.71876,170.28309 z M 148.71876,174.23713 C 148.32474,174.20948 147.9904,174.52908 148.15626,175.33088 C 148.38756,176.44733 148.7233,177.37403 149.00001,178.42463 C 149.27633,179.47524 150.00001,179.29522 150.00001,178.29963 C 150.00002,177.30446 149.82212,176.19398 149.65626,175.14338 C 149.57334,174.61809 149.11279,174.26479 148.71876,174.23713 z M 295.21876,174.23713 C 294.82473,174.26479 294.36418,174.61809 294.28126,175.14338 C 294.1154,176.19398 293.9375,177.30446 293.93751,178.29963 C 293.93751,179.29522 294.66119,179.47524 294.93751,178.42463 C 295.21422,177.37403 295.54996,176.44733 295.78126,175.33088 C 295.94712,174.52908 295.61278,174.20948 295.21876,174.23713 z M 161.81251,175.65809 C 161.19365,175.75159 160.6491,176.34985 161.37501,177.28309 C 162.53607,178.77584 163.80743,179.82383 164.25001,180.37684 C 164.69218,180.92987 165.81263,180.72579 165.09376,179.56434 C 164.35906,178.37789 163.2476,176.94908 162.75001,176.06434 C 162.56343,175.73257 162.18383,175.602 161.81251,175.65809 z M 281.87501,175.65809 C 281.60285,175.6867 281.32745,175.81551 281.18751,176.06434 C 280.68992,176.94908 279.57846,178.37789 278.84376,179.56434 C 278.12489,180.72579 279.24534,180.92987 279.68751,180.37684 C 280.13009,179.82383 281.40145,178.77584 282.56251,177.28309 C 283.28842,176.34985 282.74387,175.75159 282.12501,175.65809 C 282.03218,175.64407 281.96573,175.64855 281.87501,175.65809 z M 141.15626,179.83088 C 140.668,179.78654 140.49938,180.18047 141.15626,181.08088 C 142.64903,183.12666 144.29582,186.22273 144.40626,187.54963 C 144.51713,188.87695 143.86095,188.86213 143.25001,188.86213 C 141.42512,188.86215 140.53363,187.53012 138.87501,187.14338 C 137.21599,186.75625 136.97522,187.62865 138.15626,188.48713 C 144.23856,192.91082 150.33501,197.84636 152.78126,202.33088 C 153.77645,204.15578 155.12181,204.82284 154.37501,203.08088 C 152.08795,197.74371 151.53367,193.22426 152.03126,190.48713 C 152.52926,187.75001 153.20794,185.90698 153.12501,184.33088 C 153.0421,182.7552 152.1484,182.86271 151.78126,184.33088 C 151.53247,185.32648 151.05048,186.64538 150.71876,187.14338 C 150.38705,187.64099 149.05314,187.91993 147.78126,186.20588 C 146.50937,184.49186 143.30061,181.19144 142.25001,180.36213 C 141.85605,180.05115 141.44922,179.85749 141.15626,179.83088 z M 302.78126,179.83088 C 302.4883,179.85749 302.08147,180.05115 301.68751,180.36213 C 300.63691,181.19144 297.42815,184.49186 296.15626,186.20588 C 294.88438,187.91993 293.55047,187.64099 293.21876,187.14338 C 292.88704,186.64538 292.40505,185.32648 292.15626,184.33088 C 291.78912,182.86271 290.89542,182.7552 290.81251,184.33088 C 290.72958,185.90698 291.40826,187.75001 291.90626,190.48713 C 292.40385,193.22426 291.84957,197.74371 289.56251,203.08088 C 288.81571,204.82284 290.16107,204.15578 291.15626,202.33088 C 293.60251,197.84636 299.69896,192.91082 305.78126,188.48713 C 306.9623,187.62865 306.72153,186.75625 305.06251,187.14338 C 303.40389,187.53012 302.5124,188.86215 300.68751,188.86213 C 300.07657,188.86213 299.42039,188.87695 299.53126,187.54963 C 299.6417,186.22273 301.28849,183.12666 302.78126,181.08088 C 303.43814,180.18047 303.26952,179.78654 302.78126,179.83088 z" fill="#000" stroke="none"/>
|
|
53
|
-
<path d="M 150.12687,212.65106 152.07661,218.82525 M 154.13742,211.48082 155.86506,217.72081 M 158.46968,210.7684 159.65672,217.1334 M 162.48993,209.96408 163.7604,216.31295 M 167.64553,209.45517 168.67848,215.84698 M 173.13007,209.46186 174.24249,215.84031 M 178.48383,207.65149 179.28735,214.07616 M 183.52067,207.97645 184.32419,214.40112 M 188.39503,207.32654 189.19855,213.75121 M 193.28767,206.82164 193.72967,213.28125 M 198.51623,206.81977 198.89973,213.28312 M 203.25656,206.49325 203.58317,212.95973 M 208.48353,206.16701 208.75481,212.63605 M 214.49524,206.00453 214.76652,212.47357 M 293.81064,212.65106 291.8609,218.82525 M 289.80009,211.48082 288.07245,217.72081 M 285.46783,210.7684 284.28079,217.1334 M 281.44758,209.96408 280.17711,216.31295 M 276.29198,209.45517 275.25903,215.84698 M 270.80744,209.46186 269.69502,215.84031 M 265.45368,207.65149 264.65016,214.07616 M 260.41684,207.97645 259.61332,214.40112 M 255.54248,207.32654 254.73896,213.75121 M 250.64984,206.82164 250.20784,213.28125 M 245.42128,206.81977 245.03778,213.28312 M 240.68095,206.49325 240.35434,212.95973 M 235.45398,206.16701 235.1827,212.63605 M 229.44227,206.00453 229.17099,212.47357 M 221.96876,205.58364 221.96876,212.7068"/>
|
|
54
|
-
</g>
|
|
55
|
-
</g>
|
|
56
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 1200 600"><path d="M0 0h1200v600H0z" fill="#ffbe29"/><path d="M56 56h312v488H56z" fill="#eb7400"/><path d="M56 56h156v488H56z" fill="#00534e"/><path d="M424 56h720v488H424z" fill="#8d153a"/><path d="M502.255 449.216s-6.62 13.817-13.934 19.446c-10.836 8.341-33.055 7.739-42.486 17.47-11.3 11.475.877 26.635.776 27.95l-.62 8.007s7.62.094 10.827.607c4.824.771 6.706 4.795 15.687 4.197 22.582-1.502 21.671-22.358 22.949-40.18 1.134-6.786 3.758-15.634 5.25-22.418 1.278-5.818 1.55-15.079 1.55-15.079z" fill="#ffbe29" stroke="#000" stroke-width="2.096"/><g transform="matrix(1.04354 0 0 1.01818 -40.191 -5.814)"><use height="100%" width="100%" xlink:href="#a" stroke="#000" stroke-width="5.56"/><g id="a" fill="#ffbe29"><path d="M681.54 479.56l4.36-2.517 1.864 2.522c2.485 3.359 9.36 3.321 13.921-.078l3.488-2.598 2.921 2.598c3.84 3.417 11.012 3.422 15.591.012 3.206-2.388 3.653-2.436 5.773-.619 1.264 1.083 4.97 2.316 8.237 2.74 5.882.764 5.971.722 9.413-4.442 2.883-4.324 3.334-6.075 2.646-10.269-.456-2.78-.947-7.256-1.092-9.945-.26-4.87-.233-4.9 6.86-7.37 3.917-1.364 8.452-3.193 10.076-4.065 2.833-1.52 10.643-10.699 10.643-12.508 0-.48-3.05-1.214-6.78-1.632-14.833-1.664-17.345-9.629-7.702-24.423 15.725-24.128 25.215-47.625 25.278-62.593.029-6.69.41-8.937 1.27-7.482 3.513 5.946-2.782 30.877-12.317 48.78l-3.839 7.209 3.663-.844c2.015-.463 13.861-5.461 26.325-11.107 34.115-15.45 45.833-18.479 67.911-17.549 18.498.78 26.375 4.393 39.435 18.09 6.918 7.257 13.583 12.45 25.775 20.08 25.975 16.26 27.058 17.667 28.293 36.788 1.251 19.373.628 20.424-14.024 23.661-12.524 2.767-20.375 8.606-22.481 16.717-1.125 4.332 1.242 4.457 7.556.399l4.627-2.974 2.058 2.974c2.705 3.91 8.455 3.926 13.23.036l3.606-2.939 3.687 2.939c5.729 4.565 13.347 3.458 15.497-2.252.414-1.098 1.517-.746 3.75 1.195 4.186 3.637 14.914 5.197 16.072 2.337.443-1.09-.397-3.786-1.866-5.988-6.242-9.36-8.195-13.823-8.276-18.918-.113-7.087 2.001-10.505 10.06-16.268 9.792-7.001 12.817-16.033 5.372-16.033-4.598 0-9.232-4.064-12.187-10.686-6.008-13.461-4.83-28.552 4.186-53.657 9.159-25.5 10.175-30.202 10.211-47.256.03-13.79-.317-16.174-3.455-23.734-1.918-4.623-5.81-11.505-8.649-15.294l-5.161-6.89 6.627-5.49c20.234-16.764 16.095-44.199-8.263-54.77-7.452-3.233-9.314-3.519-22.372-3.431-7.834.053-19.78 1.083-26.546 2.29-6.899 1.232-18.575 2.221-26.585 2.254-12.725.05-14.885-.263-19.79-2.873-5.112-2.722-5.99-4.014-6.99-10.305-.206-1.293-1.11-2.583-2.01-2.867-1.738-.548-9.77 6.423-10.957 9.51-.586 1.524-1.063 1.418-2.781-.613-1.14-1.349-2.733-4.449-3.54-6.888-2.026-6.136.463-10.735 7.675-14.181l5.595-2.674-3.3-2.048c-6.808-4.225-18.385-1.334-22.572 5.635-1.184 1.972-2.476 3.588-2.87 3.593-.395.003-2.646-1.877-5.003-4.18-8.79-8.59-5.766-21.297 5.991-25.177 6.27-2.069 11.818-.49 12.972 3.69 1.763 6.383 7.241-2.007 6.259-9.584-.654-5.037-.556-5.212 2.93-5.212 4.847 0 15.165 6.362 18.356 11.32 3.706 5.756 3.437 14.822-.642 21.58l-3.203 5.305 4.19-.84c6.143-1.23 12.112-5.045 15.13-9.671 3.193-4.892 3.536-14.416.705-19.555-2.743-4.981-2.428-5.772 1.627-4.089 6.897 2.863 10.584 6.02 13.35 11.431 2.49 4.873 2.63 6.084 1.281 11.156-.832 3.13-2.683 7.246-4.113 9.149-2.228 2.962-2.304 3.459-.529 3.459 3.305 0 10.206-3.128 12.658-5.737 1.238-1.319 3.044-4.564 4.012-7.213l1.76-4.816 2.024 3.67c2.86 5.192 8.422 9.863 15.204 12.77 7.293 3.127 10.33 3.303 6.516.379-2.572-1.973-7.31-15.878-5.875-17.238.846-.8 10.747 6.818 22.053 16.968 10.695 9.6 17.415 12.746 27.239 12.746 12.548 0 19.854-10.923 14.214-21.251-3.288-6.022-10.613-6.858-14.896-1.701-1.97 2.371-2.51 4.257-1.934 6.745.707 3.047.431 3.453-2.345 3.453-3.647 0-10.837-4.667-23.606-15.321-19.471-16.248-43.13-30.02-60.214-35.05-10.963-3.229-34.383-4.489-45.528-2.45-12.062 2.207-26.329 9.11-34.101 16.5-13.772 13.093-13.991 30.517-.581 46.384l3.84 4.546-2.6 4.039c-3.783 5.877-3.459 13.785.804 19.61 1.877 2.566 3.77 4.664 4.208 4.662.437 0 .917-1.65 1.065-3.665.377-5.097 2.564-8.511 6.319-9.863 3.381-1.218 5.567-.643 21.05 5.537 16.29 6.502 43.078 6.949 71.562 1.194 13.964-2.821 30.43-2.655 37.674.38 13.279 5.563 16.357 20.036 6.595 31.022-4.225 4.756-8.3 6.692-21.983 10.448-10.412 2.857-12.878 3.047-36.543 2.81-20.218-.201-27.484.187-35.737 1.91-8.96 1.87-14.47 2.06-40.79 1.396l-30.43-.767 3.374 2.795c1.856 1.537 4.478 3.427 5.827 4.202 2.295 1.317 2.219 1.494-1.193 2.76-2.005.742-6.455 1.35-9.888 1.35h-6.244l-.84 5.306c-.462 2.919-.427 6.326.078 7.571.744 1.838.467 2.102-1.47 1.398-1.313-.477-4.97-1.416-8.126-2.086-3.157-.67-7.406-2.034-9.442-3.031-3.425-1.677-3.806-1.632-5.067.6-1.127 1.994-11.702 9.864-13.254 9.864-.25 0-.574-1.517-.719-3.372-.144-1.855-1.67-6.684-3.39-10.731-1.72-4.047-3.516-8.462-3.991-9.811-.717-2.035-1.041-2.14-1.906-.613-.573 1.012-1.41 3.77-1.859 6.132-.45 2.36-2.043 6.195-3.541 8.522l-2.724 4.23-1.738-3.617c-1.865-3.883-4.961-7.91-6.082-7.91-.378 0-1.023 1.243-1.432 2.76-.855 3.17-8.197 11.957-9.99 11.957-.66 0-1.201-2.483-1.201-5.518 0-3.036-.583-5.519-1.295-5.519s-1.295.785-1.295 1.745c0 2.334-6.27 9.292-8.373 9.292-.918 0-2.394.828-3.281 1.84-2.312 2.638-4.203 2.268-3.231-.633.456-1.36.16-4.532-.659-7.051l-1.932-5.958c-.309-.954-2.556-.7-7.312.824-7.685 2.464-10.26 2.028-6.308-1.068 1.444-1.131 3.642-5.051 4.883-8.71 1.242-3.66 3.073-6.906 4.07-7.215 1.396-.433 1.322.102-.324 2.327-1.175 1.589-2.14 3.732-2.144 4.762 0 1.03-.89 3.473-1.966 5.428-1.077 1.956-1.753 3.749-1.504 3.985.25.236 3.174-.875 6.498-2.468l6.044-2.898.025 2.592c.014 1.426.742 5.188 1.618 8.36l1.594 5.766 4.114-1.891c4.205-1.933 8.188-8.822 8.188-14.164 0-2.64 1.512-2.235 2.132.571.182.824 1.131 3.915 2.11 6.87l1.78 5.371 2.816-3.391c1.55-1.866 3.492-5.525 4.316-8.131 1.432-4.526 3.68-6.471 3.68-3.185 0 2.368 6.462 10.861 7.709 10.131.602-.353 1.802-3.54 2.666-7.083 1.796-7.369 4.695-12.38 6.537-11.302.692.405.962 1.192.599 1.748s1.125 5.347 3.307 10.646a4484.425 4484.425 0 014.87 11.856c.797 1.963 1.517 1.678 6.194-2.453 2.911-2.57 5.554-5.448 5.872-6.395.48-1.431 1.13-1.379 3.852.31 3.807 2.363 16.605 6.169 17.593 5.233.37-.351.75-3.712.844-7.47l.17-6.832 3.68.764c2.025.42 6.281.393 9.459-.058l5.778-.82-5.15-3.533c-2.832-1.943-5.695-4.458-6.363-5.588-.711-1.204-3.232-2.226-6.087-2.469-7.715-.655-21.388-8.324-21.388-11.996 0-.689 1.893.483 4.208 2.605 5.135 4.706 12.27 7.66 18.5 7.66h4.661l-2.884-3.835c-1.656-2.204-3.142-6.384-3.491-9.822-.556-5.481-1.135-6.353-6.858-10.331-3.438-2.39-7.696-5.972-9.462-7.96l-3.212-3.615-1.639 4.292c-.901 2.36-2.003 4.292-2.448 4.292-.445 0-2.177-1.38-3.85-3.066s-3.377-3.06-3.787-3.052c-.41.007-1.892 2.28-3.293 5.047l-2.547 5.034-1.968-2.901c-1.083-1.596-3.64-4.42-5.683-6.274-2.043-1.855-3.118-3.373-2.388-3.373s3.251 1.933 5.603 4.294l4.277 4.294 1.74-3.146c1.033-1.867 1.42-4.734.952-7.053-.682-3.38-.586-3.576.71-1.455.824 1.35 3.326 3.936 5.56 5.748l4.061 3.294 2.803-5.134c2.79-5.11 2.81-5.12 4.078-2.068 1.698 4.08 13.98 14.149 24.437 20.032 1.612.907.933-2.211-2.044-9.38-.788-1.9-1.433-5.323-1.433-7.608 0-3.39-.978-4.899-5.314-8.198-6.26-4.763-8.283-8.15-9.463-15.835-.478-3.113-1.573-6.575-2.434-7.694-1.278-1.66-1.489-.73-1.147 5.047.23 3.894-.276 8.736-1.125 10.759l-1.545 3.68-1.194-3.067c-.656-1.686-3.56-4.619-6.453-6.516-2.893-1.898-4.923-3.77-4.512-4.16.411-.389 3.387 1.34 6.613 3.844 4.915 3.814 5.998 4.227 6.678 2.547.8-1.973 0-10.562-1.546-16.563-.77-2.996-.703-2.98 2.994.716 2.726 2.726 4.234 5.978 5.402 11.65 1.484 7.207 2.232 8.407 8.896 14.258 4.002 3.514 7.484 6.191 7.74 5.95.254-.24.759-9.33 1.121-20.199.696-20.84-.09-25.8-5.11-32.239l-2.578-3.308 4.054-4.373c5.288-5.705 7.717-10.277 8.77-16.515l.857-5.075-4.575 4.333c-3.747 3.548-5.536 4.333-9.875 4.333-4.296 0-5.975-.72-8.87-3.805-3.474-3.702-9.63-7.264-15.549-8.997-2.187-.64-2.914-.362-2.914 1.118 0 1.084-1.207 4.213-2.684 6.953l-2.684 4.983-5.624-5.558c-3.45-3.41-7.543-6.064-10.589-6.865-7.78-2.046-8.202-1.843-8.202 3.954 0 8.793-3.754 10.431-10.51 4.587-5.152-4.455-9.424-5.424-19.192-4.35l-7.543.829 1.357 3.405c1.134 2.845.878 4.043-1.55 7.273-3.94 5.24-9.063 7.51-16.949 7.51-3.632 0-8.177.752-10.1 1.67-1.923.919-6.701 1.977-10.619 2.352-3.917.375-8.092 1.044-9.278 1.487-1.855.693-2.059.122-1.461-4.098.915-6.458-3.597-11.222-10.627-11.222-9.122 0-13.33 8.159-9.757 18.922.688 2.071 1.587 5.338 2 7.259.427 1.993 4.535 7.283 9.568 12.318 4.85 4.854 9.435 9.904 10.188 11.223.753 1.32 3.24 3.436 5.529 4.704l4.16 2.306-.548-4.452c-.603-4.893.463-5.66 3.066-2.208.93 1.235 3.295 3.23 5.253 4.434 3.086 1.896 3.561 1.935 3.561.288 0-1.045.63-3.454 1.398-5.353l1.398-3.452 2.425 4.697c1.333 2.583 5.671 8.455 9.639 13.048 7.698 8.912 12.389 18.87 9.968 21.163-.982.93-3.636.858-9.138-.248-4.264-.857-9.54-1.31-11.722-1.007-4.457.62-4.808.044-2.067-3.388 2.893-3.623 2.433-4.22-3.25-4.22-6.576 0-22.901-3.152-29.168-5.632-6.094-2.411-7.5-1.81-9.293 3.969-.808 2.6-2.286 7.314-3.285 10.474l-1.816 5.744 6.592-.635c3.626-.349 8.29-1.143 10.364-1.764 2.075-.621 3.96-.951 4.19-.734.23.218-.695 2.463-2.055 4.988l-2.472 4.593 4.11-.838c2.261-.461 5.662-1.589 7.559-2.506 3.3-1.596 3.564-1.48 6.167 2.697 3.2 5.138 5.761 4.927 6.33-.522.587-5.632 2.44-4.8 5.925 2.665 3.351 7.177 6.838 9.711 7.508 5.456.223-1.412 2.028-3.712 4.012-5.11 4.014-2.827 7.039-1.979 8.773 2.46 1.795 4.596-2.209 9.333-13.853 16.392-23.327 14.14-36.886 33.479-40.757 58.128-3.492 22.233 7.413 45.207 29.29 61.708 10.469 7.896 27.1 16.23 26.043 13.05-4.488-13.504-4.34-39.273.25-43.62.689-.653.452 2.036-.527 5.975-3.645 14.672-2.061 26.363 7.282 53.763 8.451 24.782 7.281 35.373-4.679 42.374-3.841 2.248-6.315 2.619-16.643 2.493-11.207-.136-12.428.09-16.026 2.957-3.488 2.78-8.01 11.906-8.01 16.165 0 2.307 2.561 2.002 7.596-.905z"/><path d="M863.45 479.06l4.701-3.021 3.19 3.021c4.18 3.958 9.076 3.87 13.094-.237 1.754-1.792 3.329-3.033 3.5-2.759.17.274.953 1.603 1.737 2.952.994 1.707 3.036 2.566 6.723 2.826 4.441.313 5.634-.117 7.399-2.668l2.104-3.04 4.627 2.974c12.67 8.142 19.42-.4 13.758-17.411-2.879-8.65-1.296-13.512 7.983-24.521 3.913-4.643 7.118-9.598 7.122-11.011 0-2.254-.724-2.556-5.932-2.453-4.983.1-6.44-.436-9.064-3.323-4.266-4.697-4.013-10.075.756-16.044l3.81-4.769-6.76-4.587c-3.717-2.523-10.421-8.492-14.898-13.265-10.054-10.719-19.94-15.802-32.975-16.955l-8.74-.773.012 6.616c.017 8.517 4.014 16.71 14.924 30.588 12.405 15.779 13.271 18.222 13.774 38.846l.425 17.442-3.59 3.406c-3.243 3.077-4.706 3.47-15.173 4.073-9.964.575-12.058 1.089-14.982 3.68-3.883 3.44-5.045 5.311-6.244 10.062-.699 2.77-.415 3.373 1.583 3.373 1.338 0 4.55-1.36 7.135-3.022zM598.836 428.6c0-2.205.985-2.793 5.831-3.481l5.832-.828-3.89-3.1c-4.62-3.682-5.047-6.558-.975-6.564 4.056 0 10.925-4.212 11.97-7.328.485-1.449.18-3.384-.691-4.377-2.274-2.595-6.549-2.204-7.343.672-.853 3.09-2.282 3.099-5.522.03-4.873-4.615-4.982-14.169-.226-19.732 2.242-2.621 2.222-2.793-.636-5.5-3.075-2.912-5.27-8.675-3.826-10.043.46-.435 2.889-.089 5.398.771 3.565 1.221 4.973 1.24 6.442.085 4.45-3.498-.371-7.995-7.507-7.003-2.872.4-4.058 0-4.47-1.49-.312-1.13-2.824-2.605-5.654-3.32-5.057-1.278-5.093-1.263-5.093 2.221 0 3.818-2.18 4.539-6.32 2.09-3.366-1.991-6.63-.446-6.63 3.138 0 3.343 3.363 4.992 9.39 4.604 4.621-.298 4.793 3.139.403 8.08l-3.156 3.552 2.5 3.593c3.704 5.32 3.392 14.158-.654 18.547l-3.172 3.44-2.081-2.759c-2.892-3.834-6.848-3.577-7.932.516-.71 2.68-.123 3.905 3.233 6.745 2.255 1.908 5.548 3.47 7.318 3.47 4.378 0 4.207 3.443-.345 6.922l-3.56 2.721 5.503.854c3.027.47 5.503 1.353 5.503 1.963 0 2.339 1.426 9.437 5.04 9.615 3.227.158 5.244-4.75 5.32-8.103z"/><path d="M668.48 402.92c5-1.97 15.821-11.134 15.821-13.398 0-.712-2.987-3.997-6.637-7.3-7.683-6.951-16.04-18.657-18.204-25.501-1.13-3.569-6.585-9.678-21.951-24.581l-20.448-19.832-5.894 1.493c-3.241.82-7.196 1.512-8.788 1.537-2.744.041-2.695.199.954 3.022l3.848 2.979 5.396-2.995c5.23-2.903 5.417-2.92 6.062-.585.378 1.368-.437 3.738-1.883 5.48-1.402 1.687-2.2 3.602-1.775 4.254.426.652-.921 2.016-2.993 3.03-3.84 1.881-6.505 8.071-3.474 8.071 2.726 0 8.737-7.417 8.044-9.925-.355-1.285-.183-2.606.381-2.937 2.342-1.37 2.195 4.453-.183 7.317-1.402 1.688-2.2 3.602-1.775 4.255.426.652-.921 2.016-2.993 3.03-3.815 1.869-6.506 8.071-3.503 8.071 2.944 0 8.857-7.087 8.125-9.739-.383-1.387-.235-2.792.33-3.123 1.576-.923 2.427 3.674 1.096 5.927-.713 1.206-.707 2.853.017 4.16 1.31 2.366-.019 6.91-2.432 8.323-1.035.605-.334 1.793 2.175 3.688 3.631 2.742 3.702 3.03 3.702 15.13 0 10.112.408 12.722 2.266 14.482 2.085 1.976 2.266 1.983 2.266.089 0-2.07 3.632-4.599 6.603-4.599.876 0 6.351 4.64 12.167 10.312 5.85 5.706 11.973 10.561 13.707 10.87 1.723.308 3.588.634 4.145.726.557.092 3.18-.687 5.828-1.73zM605.96 354c0-3.26-6.724-6.74-14.767-7.641-6.493-.729-6.6-.688-6.6 2.556 0 2.685 1.022 3.741 5.504 5.693 7.202 3.135 15.863 2.804 15.863-.608z"/><path d="M613.33 353.7c3.28-2.976 4.834-6.516 2.86-6.516-2.269 0-8.292 5.406-8.292 7.442 0 3.179 1.118 2.988 5.432-.926zm-6.99-9.64c.278-1.84-.86-3.067-4.27-4.607-7.355-3.322-16.15-4.86-18.268-3.196-3.9 3.067-1.301 7.183 5.003 7.924 2.538.298 5.98 1.072 7.648 1.72 4.846 1.882 9.454 1.024 9.887-1.841zm0-9.85c.396-2.624-1.282-3.563-14.978-8.383-10.225-3.6-14.752-1.902-11.484 4.305 1.138 2.163 3.049 3.15 7.334 3.792 3.187.478 7.543 1.41 9.68 2.074 5.707 1.772 9.005 1.148 9.448-1.788zm6.86-9.23c2.067-2.095 3.757-4.567 3.757-5.494 0-3.006-8.161 2.313-9.201 5.996-1.248 4.419.775 4.232 5.444-.502zm-6.86-.62c.45-2.989-4.52-5.688-14.294-7.762-7.171-1.522-10.334-.659-9.797 2.673.293 1.82 2.681 3.149 9.457 5.263 10.843 3.384 14.104 3.345 14.634-.174zm9.56-13.91c12.525-5.575 13.608-19.635 1.798-23.326-4.904-1.533-8.035-.707-9.912 2.615-1.437 2.543-.476 7.167 1.49 7.167.664 0 1.208.856 1.208 1.902 0 4.882-19.123 7.094-26.965 3.12-2.755-1.397-3.955-5.022-1.662-5.022 1.714 0 2.898-3.693 2.023-6.306-1.193-3.559-4.78-4.792-9.983-3.431-11.74 3.07-11.41 16.865.543 22.719 9.8 4.8 31.287 5.092 41.46.563z"/><path d="M608.11 299.64c.725-.687.41-1.742-.806-2.698-2.663-2.093-2.52-5.206.4-8.77 2.193-2.675 2.467-6.68 3.222-47.073 1.301-69.611 6.478-121.97 13.3-134.53 2.717-5.001 2.336-5.02-4.683-.245-9.042 6.152-15.926 14.163-22.026 25.63-11.516 21.652-15.518 50.78-15.518 112.96 0 35.306.24 39.925 2.251 43.244 1.91 3.152 2.012 4.316.67 7.683-.87 2.183-1.264 4.268-.877 4.635 2.571 2.435 21.302 1.79 24.067-.83zm105.23-66.38c.392-.601-.475-3.636-1.926-6.745-2.264-4.847-3.176-5.652-6.4-5.652-10.102 0-26.341-4.514-43.083-11.976-9.668-4.309-13.007-5.3-14.166-4.201-2.958 2.801 1.958 9.45 9.571 12.946 6.754 3.1 25.635 6.91 34.248 6.91 4.997 0 5.115.226 2.271 4.336l-2.091 3.023 5.652.145c3.11.08 7.4.566 9.538 1.081 5.549 1.337 5.6 1.338 6.387.133z"/><path d="M772.35 264.63c0-1.8-5.284-6.675-10.638-9.817-4.205-2.467-4.9-2.542-4.909-.53-.014 3.055-2.73 10.731-3.798 10.731-.601 0-1.49-1.5-1.977-3.333-.486-1.833-2.524-5.446-4.53-8.029l-3.645-4.695-2.84 4.35c-2.646 4.056-7.231 8.028-9.266 8.028-.486 0-.58-2.136-.211-4.747.402-2.836.092-5.086-.77-5.59-.794-.465-1.444-.303-1.444.36 0 1.528-6.367 8.75-7.714 8.75-.555 0-1.332-2.069-1.727-4.598-.394-2.53-1.065-6.53-1.49-8.891-.426-2.361.48-.76 2.014 3.557l2.789 7.85 3.058-4.784c1.681-2.631 3.06-5.506 3.064-6.39 0-.882.572-1.273 1.264-.869.691.405 1.654 3.568 2.139 7.029l.881 6.292 3.365-3.689c1.85-2.029 4.019-4.745 4.818-6.036 1.427-2.304 1.508-2.302 4.347.106 1.59 1.349 4.036 4.575 5.434 7.17 1.399 2.595 2.73 4.526 2.959 4.292.228-.234.74-2.909 1.138-5.944.398-3.035.753-5.631.79-5.769.197-.752 10.134 5.708 13.811 8.978 2.363 2.102 4.607 3.528 4.987 3.168.38-.36.691-3.461.691-6.892 0-5.317-.563-6.742-3.815-9.648-3.74-3.343-3.844-3.361-5.226-.916-1.793 3.173-3.908 3.219-3.908.084 0-2.287-7.066-11.08-8.904-11.08-.477 0-1.965 1.932-3.307 4.293-1.343 2.36-2.786 4.29-3.208 4.287-1.813-.011-11.774-11.117-11.77-13.122 0-1.594.672-1.187 2.418 1.476 1.327 2.024 3.978 5.045 5.89 6.713 3.874 3.379 5.282 2.557 6.776-3.953.426-1.855 1.166-3.373 1.645-3.373 1.656 0 10.327 9.21 11.547 12.264l1.224 3.066.928-3.373c1.134-4.124 2.385-4.277 4.195-.514.757 1.572 4.492 4.84 8.302 7.263l6.926 4.405 1.39-4.43c.764-2.437 1.777-3.837 2.25-3.112.706 1.081-1.094 8.423-2.453 10.002-.203.237-2.448-1.07-4.987-2.905l-4.617-3.335-.019 5.97c-.012 3.284-.369 7.213-.798 8.73-.84 2.968-3.069 3.803-3.069 1.15zm-34.53-47.6c-8.231-6.872-9.481-8.445-9.299-11.702l.194-3.467.537 3.349c.314 1.955 2.506 4.885 5.269 7.042l4.732 3.694 2.907-3.363c1.6-1.85 2.929-4.053 2.955-4.896.067-2.199.461-2.014 6.034 2.821 4.952 4.296 5.03 4.317 5.765 1.533.411-1.552.265-4.473-.323-6.492-1.618-5.55-1.301-6.388 1.15-3.04 1.222 1.667 3.186 4.025 4.365 5.238 2.052 2.113 2.177 2.087 2.941-.613.439-1.551.806-4.39.815-6.309l.019-3.488 4.464 5.06c4.17 4.728 4.554 4.902 5.827 2.65.75-1.326 1.372-4.517 1.383-7.09.014-3.325.364-4.164 1.21-2.898 1.412 2.114.431 7.87-2.176 12.775l-1.871 3.52-2.457-3.827c-3.142-4.893-4.188-4.814-6.204.466-1.905 4.99-3.144 5.37-5 1.533-1.202-2.483-1.43-2.179-2.283 3.037l-.948 5.797-5.679-4.407-5.678-4.407-2.553 2.903c-1.404 1.596-2.572 3.592-2.596 4.435-.052 1.827-1.417 1.884-3.5.146zm73.22-25.6c-2.996-2.7-5.06-5.275-4.587-5.723.474-.448 1.007-.577 1.185-.285.178.291 2.627 2.866 5.442 5.723 6.483 6.576 5.15 6.762-2.04.285zm-97.53-10.08c-2.725-3.685-2.537-6.127.78-10.121 2.398-2.886 3.493-3.278 7.68-2.746 2.684.34 8.463 2.713 12.84 5.272 5.056 2.955 10.285 4.935 14.335 5.427 3.507.426 6.376.587 6.376.357 0-.23-1.456-2.603-3.237-5.274-4.228-6.344-4.083-7.024.686-3.224 4.895 3.901 10.75 5.042 23.836 4.644l6.393-.194-3.71-3.666c-5.186-5.127-3.59-5.587 2.138-.616 5.373 4.663 5.036 4.991-6.271 6.12-4.805.48-9.972.132-14.267-.96-6.426-1.635-6.675-1.61-5.458.544.702 1.242 1.838 2.257 2.525 2.257.687 0 1.25.63 1.25 1.398 0 2.365-13.88.285-20.512-3.073-15.15-7.67-17.058-8.335-20.664-7.199-2.006.633-4.015 2.484-4.707 4.338-2.31 6.188 6.466 10.997 10.085 5.528 1.049-1.586.804-2.67-1.04-4.599-2.525-2.642-2.288-3.019 1.12-1.78 2.42.88 2.746 6.69.495 8.821-2.576 2.44-8.453 1.749-10.674-1.254z" fill="#000"/><path d="M773.19 166.07c-1.895-1.794-.41-2.234 8.085-2.392 10.508-.196 16.89-1.947 24.42-6.7 6.033-3.81 7.669-3.06 1.942.89-5.224 3.602-13.372 6.371-21.239 7.218-3.81.41-8.15.978-9.647 1.263-1.497.284-3.1.158-3.561-.279z" fill="#000"/></g></g><path d="M1065.798 449.328s6.614 13.797 13.922 19.418c10.827 8.33 33.027 7.728 42.45 17.445 11.29 11.459-.877 26.597-.775 27.911l.62 7.995s-7.614.094-10.82.606c-4.82.77-6.699 4.788-15.673 4.192-22.562-1.5-21.652-22.326-22.929-40.123-1.133-6.777-3.755-15.612-5.245-22.387-1.277-5.809-1.55-15.057-1.55-15.057z" fill="#ffbe29" stroke="#000" stroke-width="2.094"/><path d="M1065.75 150.772s6.62-13.815 13.933-19.443c10.836-8.34 33.053-7.738 42.482-17.467 11.299-11.473-.877-26.631-.775-27.947l.62-8.005s-7.62-.094-10.827-.607c-4.824-.77-6.705-4.794-15.686-4.196-22.579 1.502-21.668 22.354-22.946 40.173-1.134 6.785-3.758 15.632-5.249 22.415-1.278 5.817-1.551 15.077-1.551 15.077zm-563.495.012s-6.62-13.817-13.934-19.446c-10.836-8.341-33.055-7.739-42.486-17.47-11.3-11.475.877-26.635.775-27.95l-.62-8.007s7.62-.094 10.829-.607c4.823-.771 6.705-4.795 15.686-4.197 22.582 1.502 21.671 22.358 22.949 40.18 1.134 6.786 3.758 15.634 5.25 22.418 1.278 5.818 1.55 15.079 1.55 15.079z" fill="#ffbe29" stroke="#000" stroke-width="2.096"/></svg>
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 209 110">
|
|
2
|
-
<rect fill="#bf0a30" width="209" height="110"/>
|
|
3
|
-
<path d="M0,15H209 M0,35H209 M0,55H209 M0,75H209 M0,95H209" stroke="#fff" stroke-width="10"/>
|
|
4
|
-
<rect fill="#002868" width="50" height="50"/>
|
|
5
|
-
<g transform="translate(25,25) scale(15)">
|
|
6
|
-
<g id="B">
|
|
7
|
-
<polygon id="A" fill="#fff" points="0,0 0,1 .5,1" transform="translate(0,-1) rotate(18)"/>
|
|
8
|
-
<use xlink:href="#A" transform="scale(-1,1)"/>
|
|
9
|
-
</g>
|
|
10
|
-
<use xlink:href="#B" transform="rotate(72)"/>
|
|
11
|
-
<use xlink:href="#B" transform="rotate(-72)"/>
|
|
12
|
-
<use xlink:href="#B" transform="rotate(144)"/>
|
|
13
|
-
<use xlink:href="#B" transform="rotate(-144)"/>
|
|
14
|
-
</g>
|
|
15
|
-
</svg>
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 450 300">
|
|
2
|
-
<rect width="450" height="300" fill="#009543"/>
|
|
3
|
-
<rect width="450" height="210" fill="#fff"/>
|
|
4
|
-
<rect width="450" height="90" fill="#00209f"/>
|
|
5
|
-
<g fill="#fff">
|
|
6
|
-
<path fill="#000" stroke="#000" d="m224.76,95.569c-1.7098,0.03684-3.3781,1.9308-3.3781,1.9308l0.14732,20.233-6.3878,6.692h5.1711l-0.0437,11.603-30.591,41.193-4.5222-1.563-7.9041,16.861s19.55,12.242,47.925,11.907c31.144-0.37035,48.064-12.471,48.064-12.471l-8.1677-16.644-3.9996,1.7393-30.983-40.979-0.0437-11.949h5.1711l-7.0378-6.6088,0.0416-20.159s-1.7514-1.8203-3.4613-1.7835z"/>
|
|
7
|
-
<path fill="none" stroke="#000" stroke-width="5" d="m235.43,144.01-21.153,0s-7.6776-16.176-6.4331-27.485c1.2672-11.515,7.8483-16.963,16.598-17.059,10.345-0.11526,15.767,5.0691,17.405,16.598,1.6231,11.424-6.4172,27.947-6.4172,27.947z"/>
|
|
8
|
-
<path d="m187.79,182.57c-0.3458,0.46106-2.8816,5.5326-2.8816,5.5326l4.38-0.92211-1.4984-4.6105z"/>
|
|
9
|
-
<path d="m190.32,189.14-4.6105,1.4984,5.5327,2.19-0.92212-3.6884z"/>
|
|
10
|
-
<path d="m192.4,182.68,2.3053,6.8006,5.6479-1.6137-1.4984-3.2274-6.4548-1.9595z"/>
|
|
11
|
-
<path d="m195.97,191.91,0.80685,2.7663,7.4921,1.8442-2.9968-6.3395-5.3021,1.729z"/>
|
|
12
|
-
<path d="m204.27,186.14,2.6511,6.3395,5.6479-2.19-1.8442-2.7663-6.4548-1.3832z"/>
|
|
13
|
-
<path d="m207.96,194.79,0.92211,2.4205,8.76,1.2679-3.6884-5.7632-5.9937,2.0747z"/>
|
|
14
|
-
<path d="m216.37,187.99,3.2274,5.6479,8.1837-2.9969-0.9221-2.19-10.489-0.46106z"/>
|
|
15
|
-
<path d="m221.1,195.71,1.729,2.9969,10.143-0.3458-3.8037-5.6479-8.0684,2.9968z"/>
|
|
16
|
-
<path d="m231.82,188.22,2.7663,4.7258,6.4548-3.1121-1.729-2.5358-7.4921,0.92212z"/>
|
|
17
|
-
<path d="m242.42,191.79-6.4548,3.2274,1.729,2.7663,8.6448-1.3832-3.919-4.6106z"/>
|
|
18
|
-
<path d="m244.5,186.83,3.3426,4.1495,5.4174-4.2648-1.8442-1.9595-6.9158,2.0748z"/>
|
|
19
|
-
<path d="m254.41,189.02-5.1869,3.919,1.3832,2.4205,7.1464-1.8442-3.3426-4.4953z"/>
|
|
20
|
-
<path d="m261.56,180.84,1.2679,1.8442-3.5732,5.3021-3.6884-4.7258,5.9937-2.4205z"/>
|
|
21
|
-
<path d="m263.98,185.45,2.19,4.38-4.38,1.4984-0.34579-2.0748,2.5358-3.8037z"/>
|
|
22
|
-
</g>
|
|
23
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5 3"><path fill="#BE3A34" d="M0 0h5v3H0z"/><path fill="#046A38" d="M0 0h5v2H0z"/><path fill="#FFB81C" d="M0 0h5v1H0z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 6"><path fill="#00A3E0" d="M0 3h10v3H0z"/><path fill="#EF3340" d="M0 0h10v3H0z"/><path fill="#fff" d="M0 2h10v2H0z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 3"><path fill="#9D2235" d="M0 0h6v3H0"/><path fill="#FFF" d="M0 1.2h6v.6H0"/></svg>
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 960 480">
|
|
2
|
-
<rect width="960" height="480" fill="#239e46"/>
|
|
3
|
-
<rect width="960" height="360" fill="#000"/>
|
|
4
|
-
<rect width="960" height="120" fill="#e70013"/>
|
|
5
|
-
<circle cx="480" cy="240" r="60" fill="#fff"/>
|
|
6
|
-
<circle cx="492.132034" cy="240" r="52.132034" fill="#000"/>
|
|
7
|
-
<path d="M509.175411,240 589.875233,213.779039 540,282.426407V197.573593L589.875233,266.220961z" fill="#fff"/>
|
|
8
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 6"><path fill="#B7312C" d="M0 0h9v6H0z"/><path fill="none" stroke="#006341" stroke-width=".143" d="M4.5 1.73l.746 2.297-1.953-1.42h2.414l-1.953 1.42z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5 4"><path fill="#FFF" d="M0 0h5v4H0z"/><path fill="#CE1126" d="M0 0h5v2H0z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 1800 900"><path fill="#C8102E" d="M0 0h1800v900H0z"/><path fill="#FFD100" d="M0 0h1200v900H0z"/><path fill="#003DA5" d="M0 0h600v900H0z"/><path d="M847.69 183.24c-3.223 0-6.038.822-7.68 2.1 2.609.76 4.506 3.166 4.506 6.092v7.423h-7.422c-2.907 0-5.315-1.87-6.093-4.454-1.278 1.642-2.099 4.457-2.099 7.679 0 3.223.821 6.039 2.099 7.679.761-2.61 3.166-4.506 6.093-4.506h7.422v35.681c0 2.805-1.754 5.132-4.198 5.989 3.541.482 6.588 5.234 7.423 7.833.837-2.593 3.884-7.351 7.424-7.833a6.28 6.28 0 01-4.251-5.989v-35.683h7.424c2.908 0 5.315 1.87 6.093 4.456 1.277-1.642 2.098-4.459 2.098-7.68 0-3.223-.82-6.038-2.098-7.679-.761 2.609-3.167 4.504-6.093 4.504h-7.424v-7.422c0-2.908 1.869-5.315 4.455-6.093-1.64-1.276-4.457-2.098-7.679-2.098z"/><path fill="#FFD100" d="M847.69 184.78c-1.678 0-3.156.314-4.402.716 1.664 1.447 2.765 3.544 2.765 5.939v7.423c0 .106-.031.207-.052.308v1.177h-1.178c-.1.021-.202.051-.307.052h-7.424c-2.367 0-4.439-1.083-5.886-2.713-.416 1.259-.768 2.697-.768 4.403 0 1.678.314 3.156.716 4.402 1.447-1.664 3.543-2.763 5.938-2.763h8.959c-.01.154-.052.303-.052.459v.768c.021.1.051.201.052.307v35.681c0 2.317-1.195 4.139-2.765 5.58a11.976 11.976 0 012.918 2.561c.737.885 1.03 1.751 1.536 2.661.507-.908.799-1.776 1.536-2.661a12.036 12.036 0 012.867-2.509c-1.584-1.437-2.765-3.305-2.765-5.631v-37.168h1.229c.1-.02.201-.05.307-.05h7.423c2.366 0 4.438 1.083 5.886 2.712.415-1.258.769-2.695.769-4.402 0-1.677-.315-3.156-.717-4.402-1.447 1.664-3.543 2.763-5.938 2.763h-7.423c-.105 0-.207-.031-.307-.052h-1.178v-1.177c-.021-.099-.051-.201-.052-.308v-7.422c0-2.367 1.084-4.438 2.713-5.887-1.259-.414-2.696-.768-4.402-.768"/><path d="M940.609 313.987c-4.535-3.221-8.258-6.862-10.904-11.11-6.372-10.223-9.061-22.773-9.061-35.527 0-5.391 6.04-11.46 6.04-15.82 0-6.59-.614-10.544-.614-10.544 2.143.292 5.887 4.095 5.887 4.095s-.129-10.938-3.585-12.849c0 0 1.398-1.438 6.451-1.587-1.42-3.596-8.446-7.986-8.446-7.986.351-.629 1-1.173 1.842-1.638 1.765-.976 4.245-1.62 6.142-1.997-2.022-.419-4.352-1.061-6.91-1.895-5.842-1.903-12.719-4.697-19.146-7.78-11.732-5.628-20.669-5.99-25.596-5.99-3.575.001-8.84.099-11.927 2.152-2.825 1.875-2.595 4.314-3.584 5.17-2.33 2.016-6.321 1.945-8.243 1.945-12.44 0-12.901 13.311-12.901 13.311s3.181-4.813 8.805-4.813c9.351 0 16.433 5.094 16.433 7.013 0 .777-.964.921-1.023.921-6.108 0-15.326-3.516-20.223-3.686v2.406c10.931 3.803 22.013 9.187 22.013 32.917 0 14.943-1.789 30.19-9.265 42.183-2.648 4.247-6.418 7.881-10.955 11.11l44.385 8z"/><g id="a"><path d="M896.222 303.988l-44.383 10c-2.019-.61-11.513-3.56-18.174-7.269-11.726-6.532-17.806-13.03-31.74-13.669v-10.598c0-5.662 2.049-10.763 2.049-16.177-5.874-1.575-22.178-21.51-37.218-30.358-22.13 14.334-39.265 37.865-39.265 48.686 0 0 .665 232.51 0 313.51 0 4.668-2.815 11.263-2.815 11.263 8.079-3.418 22.888-23.68 26.006-31.382v3.687c12.201-5.564 21.135-20.184 25.136-27.747.071 1.094.257 3.839.257 3.839 10.9-9.555 24.776-66.038 24.776-66.038l23.124 22.725s-8.363 16.976-11.621 20.015c0 0 2.184.277 4.658.256-1.522 2.188-13.147 18.925-16.791 25.238-3.41 5.906-5.816 3.277-11.058 3.277-4.347 0-14.2 6.925-15.818 9.727-1.701 2.945-2.968 6.523-2.968 9.471 0 3.24 3.43 7.68 3.43 7.68.369-1.552 1.023-2.1 1.023-2.1s9.013 11.228 10.341 12.695c1.034 1.143 5.645 1.886 7.27.411 4.066-3.697 8.002-6.282 11.621-11.62 1.863-2.752 2.005-5.905 4.146-8.859 7.162-9.88 21.415-28.799 24.675-33.12.218 1.203.405 2.205.612 3.43 3.694-7.458 21.451-21.707 21.451-21.707l18.578 8.55s-34.687 79.735-65.476 91.995c0 0 13.395 5.691 29.845 14.232a447.91 447.91 0 017.372 3.943 203.524 203.524 0 006.399-8.14c9.836-13.16 19.455-28.413 19.455-28.413.67 3.961-4.524 16.194-13.31 31.281-1.728 2.964-3.53 6.064-5.529 9.213a333.743 333.743 0 016.655 3.892c16.295 9.805 31.598 21.077 37.267 31.432l4-10.009-4-10.009V317.264l2-5z"/><g fill="#AD7C59"><path d="M896.202 667.221c-5.749-6.236-17.769-13.855-31.278-20.886 16.334-29.316 24.428-75.655 20.63-84.88 0 0-6.705 24.033-14.898 37.729-7.586 12.684-16.925 26.95-25.954 37.526-7.428-3.169-14.631-5.828-20.785-7.68 27.058-20.843 54.726-89.742 54.726-89.742l-28.612-13.26s-10.704 12.479-14.18 14.796c0 0-1.485-6.206-2.355-8.396 0 0-4.101 3.102-6.346 3.176 0 0-.671-4.212-1.178-6.964-2.825 1.883-7.525 1.485-7.525 1.485 4.127-1.954 9.01-13.925 9.01-13.925l-27.322-36.343s-9.597 46.116-20.528 55.596v-198.58l8.652 8.036 13.105-12.235v-9.317l-11.621 10.852v-28.105a94.373 94.373 0 003.788-6.194c1.881 3.279 7.96 13.329 15.101 19.505 1.175-4.778 8.908-9.318 8.908-9.318s2.771 7.508 7.012 9.368c1.492-2.628 10.394-8.446 10.394-8.446s-7.616 1.157-10.7 4.045c-2.649-.593-3.328-11.058-3.328-11.058s-11.207 5.459-13.156 9.368c-2.137-.578-5.464-8.988-6.759-12.44a74.752 74.752 0 018.345-.46c3.196 0 7.285 1.514 11.569 3.532 4.707 2.216 9.631 5.022 14.028 7.014 5.632 2.55 14.153 3.068 16.637 3.174-2.845 2-5.973 3.826-9.367 5.529 0 0 13.411-.124 22.832-4.813 3.361-2.162 6.849-4.316 9.829-6.86-1.293 3.593-3.306 7.839-6.452 11.467 13.836-1.171 20.726-9.072 22.679-11.723.918 2.375 2.553 6.187 5.119 9.47h5v340zM794.247 267.298l.255 6.348v18.687c-5.019-1.727-11.326-9.973-14.384-14.334v-2.56c0-2.408 1.417-4.167 2.457-5.119l-3.02-1.074c-1.152 1.313-2.406 3.263-2.406 5.784v1.485l-9.009 9.676-8.856-13.413v-3.276c0-2.208 1.698-4.67 3.123-6.348l-2.97-1.075c-1.499 1.942-3.072 4.559-3.072 7.013v2.661a10183.97 10183.97 0 01-10.187 10.496l-5.17-11.109c6.205-8.595 16.266-18.219 25.749-25.125 0 0 20.564 18.881 27.49 21.283zm-52.12 18.123v15.411l-7.167 6.654v-22.883c0-2.191.918-4.831 2.456-7.731z"/><path d="M764.447 291.359v9.522l-8.241 7.731v-29.794zm-11.161 17.202l-8.243-7.679v-11.159l8.243-8.652zm37.627-11.57c-1.914 2.705-6.927 9.321-12.337 12.236v-26.16c1.241 2.064 6.934 11.274 12.337 13.924zm-15.257-12.594v24.163l-8.243-7.679v-8.549zm-33.53 25.75v24.113l-7.167-6.707v-10.7zm11.154 7.731v8.651l-8.244 7.678v-24.009zm11.158-7.678v24.01l-8.241-7.731v-8.549zm11.213 7.73v8.549l-8.243 7.73v-24.01zm11.159 16.33l-8.244-7.731v-8.036c2.843-1.735 5.702-4.924 8.243-8.293zm-20.885 10.648l8.703-8.089v198.63s.607 9.856 1.024 16.279l-18.429 18.634V336.766zM752.253 562.94c0 6.385-11.659 21.273-17.303 24.675v-250.74l8.6 8.036 8.703-8.09z"/></g><g fill="#C8102E"><path d="M824.535 541.388l6.348-4.352s.423 2.1.972 4.967c-2.718 3.716-18.331 25.024-26.057 35.425-1.921 2.584-3.534 9.163-3.534 9.163s-2.814-1.331-2.814-3.736c0-2.362.308-5.171.308-5.171s-2.101 2.406-5.735 2.406c0-2.903 5.614-6.052 5.836-10.186-4.281 3.174-7.999 1.545-12.951 3.072-5.393 1.661-6.895 3.927-8.549 3.84-.974-.053-1.856-1.733-1.484-2.765.644-1.787 7.314-6.733 11.977-7.627 1.117-.214 9.903 1.912 11.673-.819 7.292-11.252 19.13-29.518 20.272-31.278.752-.18 1.444-.371 1.995-.719 0 0-.067 5.751 1.743 7.78z"/><path d="M783.72 576.452c.353.408.322 1.006-.053 1.33l-2.866 2.508c-.375.324-.977.255-1.33-.154-.354-.408-.324-1.006.052-1.331l2.866-2.508a.851.851 0 01.665-.204c.238.027.488.154.666.359zm4.351 3.02c.857.988.802 2.388-.103 3.175l-6.962 6.091c-.906.788-2.367.63-3.226-.357-.857-.988-.803-2.439.103-3.225l6.962-6.041a2.206 2.206 0 011.229-.513c.712-.058 1.46.254 1.997.87zm3.99 4.71c.857.988.803 2.387-.103 3.174l-7.012 6.092c-.906.787-2.316.63-3.175-.358-.858-.987-.803-2.438.104-3.224l6.961-6.041a2.07 2.07 0 011.178-.513c.711-.058 1.51.252 2.047.87zm2.403 3.737a2.37 2.37 0 011.997.819c.858.988.803 2.439-.102 3.225l-6.963 6.042c-.906.787-2.316.629-3.174-.359s-.854-2.388.051-3.175l7.014-6.091c.338-.296.749-.427 1.177-.461z"/></g></g><use xlink:href="#a" transform="matrix(-1 0 0 1 1792.4 0)"/><path fill="#AD7C59" d="M885.934 206.637c11.458 0 19.517 5.224 30.359 10.033 2.841 1.26 5.45 2.281 7.779 3.071-1.459 1.293-2.594 2.592-2.918 3.687 0 0 4.859.9 7.064 4.967 0 0-4.62.524-5.375 3.224 2.588.195 5.159 3.457 5.171 6.605l-6.553-2.049s1.587 7.358 1.587 15.358c0 4.086-5.886 8.894-5.886 15.819 0 21.734 5.475 30.088 9.369 36.807 1.523 2.629 2.761 5.654 5.324 7.935-11.218-5.973-19.556-13.439-19.556-20.374v-26.262h-2.918v26.262c0 5.029 1.228 7.372 1.228 7.372 1.761 5.564 5.321 14.152 7.526 17.61-10.321-5.578-15.564-12.563-15.564-15.153v-36.092h-2.918v36.603l.563 2.508c-1.251 1.88-2.877 4.106-3.993 4.863-1.113-.756-2.69-2.986-3.943-4.863l.564-2.508v-36.603h-2.918v36.092c0 2.589-5.243 9.575-15.563 15.153 2.205-3.459 5.764-12.046 7.524-17.61 0 0 1.229-2.342 1.229-7.372v-26.262h-2.918v26.262c0 6.927-8.307 14.405-19.505 20.374 2.537-2.283 3.757-5.321 5.272-7.935 4.258-7.348 9.522-16.683 9.522-43.258 0-9.974-1.475-16.755-4.044-21.501-.781-1.566-1.833-5.734 4.146-5.734 3.097 0 10.188 5.478 10.188 5.478s-.292-4.371-3.891-6.86c-.597-.413-1.586-1.712-1.586-2.919 0-.904 1.551-3.135 2.763-3.686.833-.378-12.183-2.646-12.183-8.549 0-1.229.773-2.048 3.479-2.048 3.545 0 9.312 4.249 14.438 4.249 3.789 0 5.283-.922 9.163-.922 4.742 0 14.635 8.979 18.019 8.651-3.783-2.375-9.894-11.365-19.145-11.365-3.211 0-6.117.717-9.114.717-3.841 0-7.623-3.533-11.774-3.533-2.782 0-5.889.155-6.349-.564-.805-1.255-.08-1.983.666-3.02 1.409-1.957 5.366-2.525 9.267-2.661a77.953 77.953 0 013.433-.05c1.09.011 2.099.053 2.971.053z"/><path fill="#C8102E" d="M848.73 220.69s2.419-4.581 8.534-4.581c2.556 0 10.992-.177 10.992-.177 1.124 2.921 6.249 7.802 6.249 12.878 0 0-5.202-9.377-19.723-9.377-3.649 0-6.054 1.256-6.054 1.256zm23.61 9.91s-3.093 3.258-3.765 4.997c-3.061-1.16-8.399-6.661-8.399-6.661s4.525 2.642 12.163 1.664z"/><path d="M867.44 221.97s-3.568-1.144-3.568-2.342c0-1.526 1.733-1.526 2.769-.337.713.819.798 2.68.798 2.68z"/><ellipse cx="884.081" cy="223.927" rx="7.373" ry="5.596"/><circle fill="#FFD100" cx="884.073" cy="223.927" r="5.121"/><circle cx="884.075" cy="223.928" r="2.346"/><path d="M801.375 591.952l16.201 8.838-3.93 18.029-16.201-8.84z"/><path d="M725.9 418.73l-5.836 2.663L786 565.813h7.014zm77.762 170.32l-4.76 4.915 2.969 6.553 5.784-2.662z"/><path d="M746.39 532.6s5.554 11.472 9.775 13.045c-2.183-.595-9.271 2.006-9.271 2.006s12.499 11.165 23.1 11.898c8.99.619 13.355-3.868 13.355-3.868l-1.801-9.524s-5.5-6.642-14.302-9.707c-8.894-3.098-20.857-3.848-20.857-3.848zm41.87-20.55s-7.669 6.565-9.768 14.169c-2.1 7.605 1.368 16.247 1.368 16.247l6.444 12.021s8.931-4.753 12.73-11.86c3.799-7.108 2.406-16.698 2.406-16.698s-7.075 2.634-7.975 3.8c1.493-7.884-5.206-17.679-5.206-17.679zm-24.65-3.07s-8.722 2.948-17.192 2.438c-8.068-.487-14.777-7.262-14.777-7.262s6.688-4.526 9.989-3.923c-3.631-1.327-8.896-10.423-8.896-10.423s7.482-2.261 14.116.24c6.634 2.503 12.419 9.77 12.419 9.77l4.342 9.16zm3-42.6s4.362 9.032 3.328 12.171c1.353-2.09 6.474-5.345 6.474-5.345s3.096 14.624.135 23.656c-2.96 9.031-11.974 12.47-11.974 12.47l-9.943-19.337s-1.48-7.164 1.62-12.837c3.101-5.673 10.36-10.779 10.36-10.779zm-56.75-23.91s9.427-.99 18.051 2.583c7.21 2.993 9.42 8.433 9.42 8.433l3.551 9.52s-10.261 3.848-18.368.906c-8.108-2.945-14.065-12.68-14.065-12.68s5.666-2.149 7.823-1.343c-3.142-1.39-6.41-7.419-6.41-7.419v.001zm29.65-17.67s4.137 5.313 4.261 11.424c1.103-3.249 6.268-6.84 6.268-6.84s5.312 12.855 4.146 21.982c-1.166 9.128-8.809 14.527-8.809 14.527l-9.531-18.092s-3.106-7.415-2.191-13.167c.916-5.75 5.856-9.836 5.856-9.836zm-32.65-34.6s-1.709 9.854 1.199 15.53c2.598 5.065 4.252 6.176 4.252 6.176-4.954-3.269-12.444-3.551-12.444-3.551s2.666 10.721 9.037 15.612 16.195 3.748 16.195 3.748 6.46-8.6 6.01-17.865c-.449-9.265-7.808-19.197-7.808-19.197s-2.902 6.02-3.158 10.514c-1.878-4.633-13.285-10.966-13.285-10.966zm77 165.07l.265 3.537c5.875.055 6.75-.53 8.256 1.322 1.003 1.234 3.389 2.311 5.787 1.215 2.4-1.095 3.475-3.977 2.38-6.376s-3.326-2.92-5.475-2.496c-1.319.26-2.187 1.313-3.306 1.891-2.128 1.102-7.909.908-7.909.908z"/><path d="M783.35 552.57l2.859 2.095c-3.067 5.014-4.024 5.446-3.251 7.705.515 1.504.166 4.097-2.035 5.553-2.2 1.455-5.214.841-6.669-1.358-1.454-2.2-.715-4.366.783-5.965.92-.982 2.27-1.16 3.353-1.803 2.062-1.223 4.959-6.228 4.959-6.228zm-19.9-42l.264 3.537c5.876.054 6.75-.53 8.256 1.321 1.002 1.233 3.389 2.311 5.787 1.215 2.401-1.095 3.476-3.976 2.379-6.375-1.095-2.4-3.325-2.92-5.474-2.496-1.32.261-2.187 1.313-3.305 1.891-2.129 1.101-7.909.908-7.909.908z"/><path d="M764.64 511.82l2.5 2.517c-3.809 4.474-4.824 4.753-4.411 7.104.276 1.567-.473 4.075-2.874 5.17-2.399 1.095-5.279.021-6.376-2.379-1.095-2.399-.028-4.425 1.701-5.771 1.061-.825 2.425-.793 3.593-1.258 2.227-.887 5.867-5.382 5.867-5.382zm-20.97-43.1l.265 3.537c5.876.054 6.75-.53 8.257 1.323 1.003 1.231 3.388 2.309 5.788 1.213 2.398-1.095 3.474-3.975 2.379-6.377-1.097-2.399-3.326-2.919-5.476-2.495-1.32.261-2.187 1.313-3.306 1.891-2.128 1.102-7.908.907-7.908.907z"/><path d="M745.3 467.98l2.499 2.516c-3.809 4.475-4.822 4.754-4.411 7.105.276 1.566-.473 4.074-2.873 5.169-2.399 1.094-5.28.02-6.376-2.379-1.094-2.4-.027-4.426 1.701-5.771 1.061-.827 2.424-.793 3.594-1.26 2.227-.887 5.866-5.38 5.866-5.38zm-22.7-43.44l.264 3.536c5.876.055 6.751-.53 8.256 1.321 1.004 1.234 3.39 2.311 5.788 1.217 2.4-1.097 3.475-3.977 2.38-6.377s-3.326-2.921-5.476-2.496c-1.318.261-2.186 1.314-3.305 1.891-2.128 1.101-7.909.908-7.909.908z"/><path d="M724.23 423.8l2.498 2.517c-3.808 4.475-4.823 4.753-4.41 7.105.276 1.566-.474 4.074-2.873 5.169-2.4 1.095-5.28.021-6.375-2.379-1.096-2.399-.028-4.427 1.699-5.771 1.062-.825 2.425-.793 3.594-1.26 2.226-.886 5.866-5.38 5.866-5.38z"/><g fill="#FFD100"><path d="M803.71 597.062l10.048 5.482-2.438 11.183-10.049-5.482zm-43.99-96.972c-2.106.874-5.23-8.295-7.524-13.318-2.353-5.155-7.131-13.1-5.774-13.72 1.489-.68 3.451 3.492 5.859 8.767 2.408 5.273 9.412 17.449 7.439 18.269zm-21.63-48.29c-2.105.877-4.41-5.127-6.703-10.151-2.353-5.154-4.645-8.795-3.288-9.415 1.49-.68 3.69 3.837 5.616 8.055 1.866 4.088 6.348 10.69 4.374 11.512zm50.04 109.49c-1.653.442-8.869-14.662-14.703-27.442-5.833-12.779-10.177-23.119-8.82-23.736 1.49-.681 6.213 11.391 12.049 24.172 5.835 12.781 12.713 26.673 11.475 27.006z"/><circle cx="796.195" cy="556.984" r="2.606"/><circle cx="778.27" cy="563.933" r="2.606"/><circle cx="775.777" cy="512.25" r="2.606"/><circle cx="757.844" cy="522.24" r="2.606"/><circle cx="756.001" cy="470.414" r="2.606"/><circle cx="738.502" cy="478.402" r="2.606"/><circle cx="734.931" cy="426.239" r="2.606"/><circle cx="717.435" cy="434.223" r="2.606"/></g><path d="M709.76 396.19s-.255 7.201 2.127 11.285c2.383 4.086 7.704 5.715 7.704 5.715s.254-7.199-2.128-11.283c-2.383-4.086-7.703-5.717-7.703-5.717zm-4.98 16.29s6.255.368 9.868 3.136c3.61 2.768 5.009 8.535 5.009 8.535s-4.146.421-7.756-2.347c-3.611-2.769-7.121-9.324-7.121-9.324zm19.63-14.54s-2.08 4.77-1.84 9.912c.239 5.143 3.24 10.937 3.24 10.937s2.713-6.174 2.474-11.318c-.238-5.143-3.147-8.075-3.874-9.531zm-10.53 46.36s3.071 4.288 7.799 6.626c4.728 2.337 11.773 2.424 11.773 2.424s-3.516-4.562-8.245-6.9c-4.728-2.337-11.327-2.152-11.327-2.152zm1.52 9.96s2.257 4.421 6.384 6.316c4.129 1.896 12.574 1.74 12.574 1.74s-3.24-4.131-7.368-6.027c-4.128-1.897-11.591-2.029-11.591-2.029zm23.77-23.58s-2.495 4.123-2.251 8.666c.245 4.545 3.227 9.511 3.227 9.511s2.097-5.693 1.852-10.237c-.244-4.545-2.829-7.94-2.829-7.94zm9.19 5.83s-4.269 5.73-4.882 11.621c-.613 5.89 2.428 11.942 2.428 11.942s5.157-5.178 5.77-11.068c.613-5.892-3.316-12.493-3.316-12.493zm-11.77 54.4s.513 2.118 2.297 4.367c1.783 2.251 4.836 4.632 4.836 4.632s2.949-.948 6.615-.155c3.665.795 8.54 4.06 8.54 4.06s-5.247-7.831-10.695-10.876c-5.448-3.043-11.591-2.029-11.591-2.029zm-.54 13.46s6.793-2.902 12.387-2.153c5.595.749 10.639 5.171 10.639 5.171s-7.561 2.616-13.155 1.868c-5.596-.749-9.872-4.886-9.872-4.886zm28.71-31.58s-6.007 6.364-6.511 11.887c-.503 5.522 4.871 10.669 4.871 10.669s-.264-3.542.661-5.874c.926-2.332 2.893-4.822 2.893-4.822s.838-2.843.514-5.123c-.453-3.186-2.428-6.737-2.428-6.737zm8.62 7.37s-5.662 5.729-7.158 11.864c-1.497 6.135 1.17 12.676 1.17 12.676s5.149-4.062 6.646-10.196c1.497-6.135-.659-14.344-.659-14.344zm14.18 36.98s2.565 5.355 3.215 9.833c.652 4.477.048 6.027.048 6.027s-2.652 2.607-3.841 4.14c-1.528 1.97-1.752 5.576-1.752 5.576s-5.325-7.916-4.504-13.703c.82-5.786 6.834-11.874 6.834-11.874zm11.22 12.39s-6.818 4.503-9.523 9.123c-2.708 4.617-1.304 9.349-1.304 9.349s4.858-.428 7.566-5.046c2.706-4.618 3.26-13.427 3.26-13.427zm-44.8 19.02s9.826-.268 15.832 1.209c6.006 1.475 8.192 4.695 8.192 4.695s-6.753 3.162-12.759 1.686c-6.006-1.475-11.266-7.591-11.266-7.591zm-1.66-11.66s4.433 6.873 10.164 9.367c7.898 3.435 17.043 1.77 17.043 1.77s-4.968-6.089-11.804-8.777c-6.838-2.687-15.403-2.359-15.403-2.359z" fill="#007749"/><path d="M1088.74 401.944l1.281 2.712s-2.08.714-3.022 2.559c-.94 1.847.615 4.455.615 4.455s-10.804-.943-12.491.154c-1.528.99.647 8.474-.359 14.795-1.402 8.81-4.875 8.07-5.017 9.777-.138 1.659 1.331 4.249 1.331 4.249s-2.026.638-2.458 1.485c-.695 1.362.484 3.875-.358 5.528-4.7 9.223-11.64 22.836-16.228 31.843-.641 1.257-2.363 1.737-3.226 3.43-.796 1.562-.153 3.839-.153 3.839s-3.041.182-4.096 2.253c-1.121 2.2-.461 5.17-.461 5.17s-1.923.246-2.868 2.099c-1.009 1.981.7 3.02.259 3.891-6.169 12.102-13.434 26.368-17.867 35.068-1.631 3.199-7.338 3.84-10.65 10.341-3.214 6.306 1.382 10.955 1.382 10.955s-4.772.432-6.04 2.919c-1.292 2.535-.27 6.384 3.174 8.139 3.444 1.754 7.207.334 8.5-2.201 1.267-2.487-1.281-6.604-1.281-6.604s6.463.931 9.675-5.376c3.313-6.501.52-11.441 2.15-14.641 4.434-8.7 11.7-22.965 17.867-35.068.445-.871 2.267-.117 3.276-2.098.944-1.853 0-3.532 0-3.532s2.822-1.23 3.943-3.431c1.056-2.071-.563-4.658-.563-4.658s2.223-.792 3.02-2.354c.862-1.693.228-3.35.869-4.609 4.59-9.006 11.531-22.62 16.229-31.841.843-1.655 3.555-2.221 4.249-3.585.432-.846-.255-2.866-.255-2.866s2.988-.296 4.248-1.383c1.298-1.118-1.337-3.516 4.967-9.829 4.522-4.528 11.817-7.192 11.722-9.01-.105-2.01-7.218-10.187-7.218-10.187s3.001-.253 3.942-2.098c.941-1.846.308-3.994.308-3.994l2.968-.512V393.65zm-98.136 196.074a3.498 3.498 0 000 3.121s-3.583-1.12-4.812-.512c-1.158.573 0 17.458 0 17.458s14.295-9.018 14.077-10.29c-.23-1.352-3.225-3.635-3.225-3.635 1.158-.186 2.061-.912 2.509-1.791.47-.925.533-3.568-2.714-5.223-1.216-.62-2.299-.804-3.175-.716-1.455.147-2.365 1.01-2.66 1.588z"/><g fill="#FFD100"><path d="M1091.34 402.51l6.757 3.431-.101-8.14zm-2.61 4.915c-.868 1.704-.025 3.886 1.894 4.863 1.92.977 4.148.373 5.018-1.33.868-1.704.023-3.885-1.895-4.863a4.2 4.2 0 00-2.201-.462c-1.208.083-2.273.727-2.816 1.792zm-11.62 6.195c-.711.46.256 6.545.051 11.722-.194 4.882-1.756 6.257-2.611 7.935-.789 1.549-3.634 3.379-3.634 3.379l2.354 2.355s1.532-2.386 3.942-7.118c2.843-5.579 2.751-15.688 3.585-16.227.725-.469 6.655-1.946 6.655-1.946-.001 0-5.442-.294-8.447-.255-1.003.013-1.73.048-1.895.155z"/><path d="M1077.73 441.725s.787-2.188 3.533-7.577c3.311-6.499 10.379-11.213 10.544-12.389.172-1.212-2.457-6.91-2.457-6.91s-6.235 1.195-7.117 2.048c-.852.823-.476 9.267-3.788 15.767-2.744 5.388-4.094 7.372-4.094 7.372z"/><path d="M1093.65 422.22c.052.989-8.163 6.861-11.007 12.439-2.41 4.731-3.43 7.373-3.43 7.373l3.277.512s-.226-3.367.563-4.915c.854-1.677 1.079-3.731 4.915-6.757 4.068-3.209 9.567-6.014 9.522-6.861-.041-.782-6.144-8.344-6.144-8.344s2.257 5.692 2.304 6.553zm-24.06 36.5c4.936-9.688 6.444-10.348 7.065-11.569.669-1.312.509-3.078-1.689-4.199-.824-.419-1.531-.526-2.15-.459-1.033.111-1.784.767-2.201 1.586-.622 1.222-.285 2.855-5.223 12.544l-11.212 21.961s-1.175 2.156 1.024 3.276c2.199 1.119 3.174-1.127 3.174-1.127zm-19.81 25.188c-.611 1.201.436 2.964 2.355 3.943 1.919.976 3.996.791 4.607-.41.611-1.2-.486-2.964-2.406-3.943-.959-.489-1.935-.687-2.764-.613-.83.072-1.486.424-1.792 1.023zm-4.15 6.245c-.792 1.553.443 3.783 2.765 4.968 2.322 1.183 4.84.886 5.631-.667.792-1.554-.444-3.782-2.765-4.967-.871-.442-1.733-.677-2.56-.716-1.374-.065-2.576.411-3.071 1.382zm-2.61 6.964c-.611 1.199.437 2.963 2.355 3.941 1.919.978 3.995.791 4.608-.409.611-1.2-.437-2.964-2.355-3.942-.96-.49-1.986-.688-2.816-.615-.828.073-1.485.424-1.792 1.025zm-1.69 6.655s-12.448 24.5-16.84 33.121c-1.404 2.754-7.312 4.47-9.625 9.011-2.33 4.568-.686 8.844 2.354 10.392 3.039 1.549 7.502.423 9.83-4.146 2.313-4.54.235-10.353 1.637-13.106 4.393-8.624 16.843-33.122 16.843-33.122s1.226-2.156-.973-3.276a2.372 2.372 0 00-1.433-.255c-1.212.155-1.793 1.381-1.793 1.381zm-31.49 56.874c-.933 1.83.134 4.269 2.405 5.426 2.272 1.158 4.904.601 5.837-1.228.933-1.83-.186-4.27-2.457-5.427-.852-.435-1.721-.637-2.56-.614-1.399.04-2.643.7-3.225 1.843zm-16.583 37.423c-.71.024-1.298.249-1.535.717-.477.935.508 2.413 2.201 3.276 1.693.862 3.464.782 3.942-.154.477-.937-.51-2.414-2.201-3.276-.847-.432-1.695-.588-2.407-.564zm-5.836 4.606v12.082l9.83-7.065s-1.333-2.354-4.25-3.84c-2.917-1.485-5.58-1.178-5.58-1.178z"/></g><path fill="#FFD100" d="M993.643 333.597c0-6.626 8.703-13.157 8.703-13.157H790.1s8.703 6.53 8.703 13.157v157.986c0 4.162 1.286 6.872 3.328 9.521 2.041 2.853 6.39 6.795 10.903 9.727 13.94 9.053 37.246 18.599 54.88 26.621 14.694 6.684 20.671 9.381 28.309 18.839 7.639-9.458 13.667-12.154 28.361-18.839 17.631-8.021 40.938-17.568 54.879-26.621 4.515-2.932 8.864-6.873 10.904-9.727 2.042-2.649 3.276-5.359 3.276-9.521z"/><path fill="#C8102E" d="M803.82 422.981v-89.385c0-5.059-2.56-8.139-2.56-8.139h189.928s-2.56 3.081-2.56 8.139l.054 89.385-92.431 28z"/><path fill="#003DA5" d="M988.681 422.981l-57.234-1.075h-70.393l-57.234 1.075v68.601c0 3.448 3.578 11.525 24.215 21.807 34.111 16.998 60.33 24.934 68.189 34.607 7.858-9.673 34.077-17.61 68.189-34.607 20.636-10.282 24.214-18.359 24.214-21.807z"/><path d="M930.063 419.401s33.019-8.326 33.019-43.617c0-27.563-33.103-41.237-34.044-47.814-3.235 11.381 11.058 27.1 11.058 45.715 0 24.086-17.764 25.239-17.764 25.239-4.157 0-5.841 2.968-7.475 2.968-3.497-.365-5.143-4.813-8.601-4.813-3.247 0-5.74 5.017-10.033 5.017-4.292 0-6.735-5.017-9.983-5.017-3.456 0-5.103 4.448-8.6 4.813-1.634 0-3.319-2.968-7.476-2.968 0 0-17.763-1.153-17.763-25.239 0-18.615 14.295-34.336 11.058-45.715-.938 6.577-34.041 20.25-34.041 47.814 0 35.291 33.019 43.617 33.019 43.617l-9.42 17.149s13.645.683 20.887 6.861c8.733 7.448 7.883 23.229 7.883 34.709 0 9.045-1.143 18.59-5.784 22.524-6.232 5.284-10.445 5.675-10.445 11.878 0 5.174 3.977 6.211 10.445 9.625 8.287 4.373 7.901 10.238 20.22 10.238 12.321 0 11.985-5.864 20.273-10.238 6.468-3.414 10.444-4.451 10.444-9.625 0-6.203-4.214-6.594-10.444-11.878-4.641-3.936-5.784-13.48-5.784-22.524 0-11.48-.849-27.261 7.883-34.709 7.243-6.177 20.886-6.861 20.887-6.861z"/><path d="M896.22 330.42l-5.735 16.281-15.614-7.424 7.423 15.615-16.279 5.784 16.279 5.785-7.423 15.563 15.614-7.423 5.735 16.279 5.785-16.279 15.614 7.423-7.422-15.563 16.279-5.785-16.279-5.784 7.422-15.615-15.614 7.424-5.785-16.281zm-35.17 91.49s-20.387-4.984-28.002-15.051c-13.313 11.976-29.232 16.126-29.232 16.126s16.607 7.498 29.232 17.048c5.817-8.336 28.002-18.123 28.002-18.123zm70.39 0s22.186 9.786 28.004 18.123c12.623-9.55 29.229-17.048 29.229-17.048s-15.917-4.151-29.229-16.126c-7.615 10.066-28.004 15.051-28.004 15.051zm-62.04 21.7l-7.935 7.934 7.935 7.935 7.935-7.935-7.935-7.934zm53.7 0l-7.934 7.934 7.934 7.935 7.935-7.935-7.935-7.934zm-55.697 46.33c0 10.025-.972 15.307-.972 15.307s11.186-3.293 13.414-14.641c1.044-5.32 2.207-24.918-3.175-28.259l-14.59-2.867c1.576 3.899 5.323 15.977 5.323 30.46zm48.426-27.592c-5.381 3.34-4.218 22.938-3.174 28.259 2.227 11.348 13.413 14.641 13.413 14.641s-.972-5.282-.972-15.307c0-14.483 3.747-26.562 5.324-30.46zm-82.824.567c-5.031 1.262-8.071 6.385-6.808 11.416.193.77.511 1.481.87 2.15a9.254 9.254 0 00-2.304-.461 9.55 9.55 0 00-.972 0c-4.761.16-8.73 3.903-9.061 8.755-.354 5.174 3.579 9.629 8.755 9.983a9.393 9.393 0 002.251-.103 9.217 9.217 0 00-1.125 1.996c-1.937 4.813.409 10.351 5.222 12.288 4.812 1.935 10.298-.461 12.234-5.273a9.067 9.067 0 00.564-2.202 9.277 9.277 0 001.586 1.689c3.979 3.328 9.931 2.801 13.259-1.177a9.364 9.364 0 00-1.178-13.208c-.602-.504-1.27-.9-1.945-1.228a9.316 9.316 0 002.098-.972c4.395-2.755 5.725-8.609 2.969-13.004-1.894-3.021-5.222-4.574-8.549-4.351a9.465 9.465 0 00-4.403 1.434 9.33 9.33 0 00-1.791 1.433 9.436 9.436 0 00-.256-2.303c-1.104-4.403-5.151-7.305-9.522-7.117a9.522 9.522 0 00-1.894.255zm99.82 27.335c1.017 9.587 8.808 17.619 18.429 19.914-1.643-2.687-2.735-5.682-3.072-8.856-1.205-11.37 7.588-20.581 19.607-20.581 1.894 0 3.729.234 5.528.667-4.237-6.947-12.215-11.775-20.887-11.775-12.018.001-20.813 9.263-19.605 20.631z"/><g fill="#FFD100"><path d="M847.592 373.684c0 18.128 9.667 28.821 22.576 28.821 2.462 0 5.155 3.328 7.475 3.328 3.782 0 6.298-4.198 8.601-4.198 2.927 0 4.9 4.607 9.982 4.607 5.083 0 7.107-4.607 10.034-4.607 2.302 0 4.818 4.198 8.6 4.198 2.321 0 5.012-3.328 7.475-3.328 12.909 0 22.577-10.693 22.577-28.821 0-14.784-12.416-32.81-11.058-35.734 0 0 24.214 17.369 24.214 37.832 0 32.963-33.429 41.109-33.429 41.109l7.525 16.944s-10.362 1.554-16.689 6.656c-8.439 6.805-8.55 25.191-8.55 37.626 0 14.648.545 20.855 5.837 24.829 5.58 4.193 9.777 5.096 9.777 9.369 0 3.723-4.345 5.246-9.983 7.73-6.413 2.827-7.052 7.731-16.33 7.731-9.279 0-9.867-4.904-16.28-7.731-5.637-2.484-9.983-4.006-9.983-7.73 0-4.273 4.197-5.176 9.777-9.369 5.292-3.974 5.836-10.181 5.836-24.829 0-12.435-.11-30.821-8.549-37.626-6.328-5.104-16.689-6.656-16.689-6.656l7.524-16.944s-33.428-8.145-33.428-41.109c0-20.463 24.215-37.832 24.215-37.832 1.358 2.924-11.057 20.95-11.057 35.734zM883.58 509.81c-6.567 0-10.75 1.386-10.75 3.379 0 1.994 4.184 3.328 10.75 3.328 1.75 0 3.737-1.019 3.737-3.328s-1.988-3.379-3.737-3.379zm25.34 0c-1.75 0-3.737 1.071-3.737 3.379-.001 2.309 1.987 3.328 3.737 3.328 6.568 0 10.75-1.333 10.75-3.328 0-1.994-4.183-3.379-10.75-3.379z"/><path d="M896.28 341.38l3.686 10.394 9.931-4.761-4.71 9.982 10.342 3.687-10.342 3.686 4.71 9.931-9.931-4.71-3.737 10.341-3.686-10.341-9.931 4.71 4.71-9.931-10.341-3.686 10.341-3.687-4.71-9.982 9.931 4.761 3.737-10.394zm-82.743 81.899s12.609 6.28 18.943 11.877l.357.307.204-.255c5.986-6.871 17.098-12.696 17.098-12.696s-10.676-2.945-17.405-10.648c-7.111 7.248-19.197 11.415-19.197 11.415zm165.411.016s-12.609 6.28-18.943 11.877l-.357.307-.204-.255c-5.986-6.871-17.098-12.696-17.098-12.696s10.676-2.945 17.405-10.648c7.111 7.248 19.197 11.415 19.197 11.415zM869.4 447.4l4.147 4.145-4.147 4.199-4.198-4.199 4.198-4.145zm53.7 0l4.199 4.145-4.199 4.199-4.146-4.199 4.146-4.145zm-48.067 18.119c2.897 3.998 2.405 10.462 2.405 19.455 0 9.067-6.808 12.541-6.808 12.541 0-21.794-2.247-27.034-3.43-33.635zm50.267-1.639c-1.185 6.602-3.429 11.841-3.429 33.634 0 0-6.809-3.474-6.809-12.541 0-8.993-.492-15.455 2.406-19.454l7.832-1.639z"/><path id="b" d="M842.832 472.128c.204.816.226 1.618.153 2.407-.06.654-.234 1.248-.46 1.842-1.133-.414-2.359-.615-3.635-.615-3.159 0-5.987 1.39-7.935 3.585a7.308 7.308 0 01-1.33-1.536c-.42-.649-.775-1.359-.973-2.15-.982-3.913 1.411-7.876 5.324-8.857.488-.124 1-.185 1.484-.204a7.29 7.29 0 017.372 5.528z"/><use xlink:href="#b" transform="rotate(72 838.89 486.468)"/><use xlink:href="#b" transform="rotate(144 838.89 486.468)"/><use xlink:href="#b" transform="rotate(216 838.89 486.468)"/><use xlink:href="#b" transform="rotate(288 838.89 486.468)"/><circle cx="838.89" cy="486.468" r="7.065"/><path d="M962.925 476.942c-11.729 2.268-20.17 12.628-18.942 24.727-3.738-3.096-6.473-7.266-6.962-11.877-.951-8.979 5.571-15.922 15.41-15.922 3.761 0 7.375 1.152 10.494 3.072z"/></g></svg>
|