vome-core 0.0.1
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/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/server/index.d.ts +1 -0
- package/dist/server/index.js +1 -0
- package/dist/src/auth/define-macro.d.ts +8 -0
- package/dist/src/auth/index.d.ts +2 -0
- package/dist/src/comm/daily-log.d.ts +8 -0
- package/dist/src/comm/env.d.ts +4 -0
- package/dist/src/comm/format-time.d.ts +10 -0
- package/dist/src/comm/merge.d.ts +2 -0
- package/dist/src/comm/scan.d.ts +4 -0
- package/dist/src/comm/startBanner.d.ts +1 -0
- package/dist/src/core/app.d.ts +37 -0
- package/dist/src/core/config.d.ts +2 -0
- package/dist/src/core/context/index.d.ts +22 -0
- package/dist/src/core/host-infra.d.ts +20 -0
- package/dist/src/core/index.d.ts +20 -0
- package/dist/src/core/plugins/async-context.d.ts +3 -0
- package/dist/src/core/plugins/error.d.ts +5 -0
- package/dist/src/core/plugins/logging.d.ts +3 -0
- package/dist/src/core/plugins/openapi.d.ts +3 -0
- package/dist/src/core/vome-config.d.ts +2 -0
- package/dist/src/ext/base-plugin.d.ts +13 -0
- package/dist/src/ext/index.d.ts +15 -0
- package/dist/src/ext/load-plugin.d.ts +12 -0
- package/dist/src/ext/micro-apps.d.ts +60 -0
- package/dist/src/ext/module-gateway.d.ts +10 -0
- package/dist/src/ext/module-registry.d.ts +45 -0
- package/dist/src/ext/path.d.ts +8 -0
- package/dist/src/index.d.ts +10 -0
- package/dist/src/ioc/container.d.ts +29 -0
- package/dist/src/ioc/decorators.d.ts +35 -0
- package/dist/src/ioc/host.d.ts +2 -0
- package/dist/src/ioc/index.d.ts +6 -0
- package/dist/src/ioc/metadata.d.ts +12 -0
- package/dist/src/ioc/scope.d.ts +9 -0
- package/dist/src/logger/bootstrap.d.ts +2 -0
- package/dist/src/logger/exception.d.ts +22 -0
- package/dist/src/logger/index.d.ts +5 -0
- package/dist/src/logger/logger.d.ts +18 -0
- package/dist/src/logger/pino.d.ts +8 -0
- package/dist/src/orm/base-columns.d.ts +11 -0
- package/dist/src/orm/column-comments.d.ts +25 -0
- package/dist/src/orm/crud-config.d.ts +7 -0
- package/dist/src/orm/crud-register.d.ts +5 -0
- package/dist/src/orm/data-scope.d.ts +24 -0
- package/dist/src/orm/db-store.d.ts +12 -0
- package/dist/src/orm/entity-schema.d.ts +7 -0
- package/dist/src/orm/index.d.ts +22 -0
- package/dist/src/orm/query-builder.d.ts +12 -0
- package/dist/src/orm/query-op.d.ts +27 -0
- package/dist/src/orm/repository.d.ts +74 -0
- package/dist/src/orm/service.d.ts +71 -0
- package/dist/src/orm/tenant.d.ts +24 -0
- package/dist/src/routing/base.d.ts +27 -0
- package/dist/src/routing/context.d.ts +14 -0
- package/dist/src/routing/crud-summary.d.ts +2 -0
- package/dist/src/routing/decorators.d.ts +48 -0
- package/dist/src/routing/eps.d.ts +16 -0
- package/dist/src/routing/index.d.ts +8 -0
- package/dist/src/routing/metadata.d.ts +28 -0
- package/dist/src/routing/openapi-tags.d.ts +23 -0
- package/dist/src/routing/path-utils.d.ts +5 -0
- package/dist/src/routing/perm.d.ts +18 -0
- package/dist/src/routing/register.d.ts +7 -0
- package/dist/src/server/index.d.ts +10 -0
- package/dist/src/shared/index.d.ts +8 -0
- package/dist/src/shared/tree.d.ts +18 -0
- package/dist/typings/comm/crud.d.ts +24 -0
- package/dist/typings/comm/page.d.ts +16 -0
- package/dist/typings/comm/scan.d.ts +6 -0
- package/dist/typings/common.d.ts +6 -0
- package/dist/typings/context/data.d.ts +10 -0
- package/dist/typings/ext/module.d.ts +45 -0
- package/dist/typings/ext/plugin.d.ts +40 -0
- package/dist/typings/ioc/metadata.d.ts +31 -0
- package/dist/typings/logger/config.d.ts +6 -0
- package/dist/typings/routing/crud.d.ts +99 -0
- package/dist/typings/routing/eps.d.ts +53 -0
- package/dist/typings/routing/meta.d.ts +56 -0
- package/dist/typings/routing/register.d.ts +15 -0
- package/dist/typings/routing/scan-context.d.ts +6 -0
- package/package.json +96 -0
- package/src/admin/api/client.ts +184 -0
- package/src/admin/components/vm-aside.vue +227 -0
- package/src/admin/components/vm-auto-perm-dialog.vue +361 -0
- package/src/admin/components/vm-check-tree.vue +338 -0
- package/src/admin/components/vm-dept-tree.vue +549 -0
- package/src/admin/components/vm-empty.vue +62 -0
- package/src/admin/components/vm-eps-perm-picker.vue +114 -0
- package/src/admin/components/vm-group-cascader.vue +563 -0
- package/src/admin/components/vm-icon-picker.vue +616 -0
- package/src/admin/components/vm-markdown.vue +141 -0
- package/src/admin/components/vm-ri-icon.vue +21 -0
- package/src/admin/components/vm-role-picker.vue +314 -0
- package/src/admin/components/vm-view-path-picker.vue +56 -0
- package/src/admin/config/plugin-dev.ts +31 -0
- package/src/admin/crud/components/vm-column-custom.vue +196 -0
- package/src/admin/crud/components/vm-context-menu.vue +99 -0
- package/src/admin/crud/components/vm-date-picker.vue +74 -0
- package/src/admin/crud/components/vm-date-range.vue +291 -0
- package/src/admin/crud/components/vm-date-text.vue +41 -0
- package/src/admin/crud/components/vm-dict-tag.vue +47 -0
- package/src/admin/crud/components/vm-file-icon.vue +54 -0
- package/src/admin/crud/components/vm-multi-select.vue +181 -0
- package/src/admin/crud/components/vm-number-range.vue +200 -0
- package/src/admin/crud/components/vm-radio.vue +87 -0
- package/src/admin/crud/components/vm-select.vue +131 -0
- package/src/admin/crud/components/vm-switch.vue +128 -0
- package/src/admin/crud/components/vm-tree-select.vue +456 -0
- package/src/admin/crud/components/vm-upload-item.vue +215 -0
- package/src/admin/crud/components/vm-upload.vue +323 -0
- package/src/admin/crud/components/vm-user-select.vue +234 -0
- package/src/admin/crud/config.ts +38 -0
- package/src/admin/crud/confirm.ts +135 -0
- package/src/admin/crud/dict.ts +49 -0
- package/src/admin/crud/index.ts +79 -0
- package/src/admin/crud/key.ts +47 -0
- package/src/admin/crud/mitt.ts +27 -0
- package/src/admin/crud/plugins.ts +298 -0
- package/src/admin/crud/registry.ts +45 -0
- package/src/admin/crud/span.ts +48 -0
- package/src/admin/crud/style.ts +112 -0
- package/src/admin/crud/useCrud.ts +81 -0
- package/src/admin/crud/validate.ts +109 -0
- package/src/admin/crud/vm-add-btn.vue +68 -0
- package/src/admin/crud/vm-adv-search.vue +73 -0
- package/src/admin/crud/vm-crud.vue +517 -0
- package/src/admin/crud/vm-dialog.vue +234 -0
- package/src/admin/crud/vm-flex1.vue +14 -0
- package/src/admin/crud/vm-form.vue +239 -0
- package/src/admin/crud/vm-multi-delete-btn.vue +48 -0
- package/src/admin/crud/vm-pagination.vue +125 -0
- package/src/admin/crud/vm-refresh-btn.vue +34 -0
- package/src/admin/crud/vm-row.vue +42 -0
- package/src/admin/crud/vm-search-key.vue +76 -0
- package/src/admin/crud/vm-search.vue +367 -0
- package/src/admin/crud/vm-table.vue +852 -0
- package/src/admin/crud/vm-toolbar.vue +245 -0
- package/src/admin/crud/vm-upsert.vue +530 -0
- package/src/admin/data/remixicon-all.json +1 -0
- package/src/admin/directives/perm.ts +18 -0
- package/src/admin/env.d.ts +5 -0
- package/src/admin/hooks/useBrowser.ts +27 -0
- package/src/admin/hooks/useUpload.ts +82 -0
- package/src/admin/hooks/useVome.ts +13 -0
- package/src/admin/index.ts +59 -0
- package/src/admin/lib/browser.ts +28 -0
- package/src/admin/lib/cn.ts +7 -0
- package/src/admin/lib/dialog-float.ts +14 -0
- package/src/admin/lib/eps.ts +43 -0
- package/src/admin/lib/menu.ts +15 -0
- package/src/admin/lib/module.ts +112 -0
- package/src/admin/lib/tree.ts +2 -0
- package/src/admin/lib/upload.ts +102 -0
- package/src/admin/router/index.ts +61 -0
- package/src/admin/router/menu-routes.ts +126 -0
- package/src/admin/service/base.ts +96 -0
- package/src/admin/service/index.ts +281 -0
- package/src/admin/static/fileicon/demo.css +539 -0
- package/src/admin/static/fileicon/demo_index.html +901 -0
- package/src/admin/static/fileicon/iconfont.css +139 -0
- package/src/admin/static/fileicon/iconfont.js +1 -0
- package/src/admin/static/fileicon/iconfont.json +226 -0
- package/src/admin/static/fileicon/iconfont.ttf +0 -0
- package/src/admin/static/fileicon/iconfont.woff +0 -0
- package/src/admin/static/fileicon/iconfont.woff2 +0 -0
- package/src/admin/static/scarce//344/270/213/350/275/275/345/244/261/350/264/245.svg +1 -0
- package/src/admin/static/scarce//346/224/257/344/273/230/346/210/220/345/212/237.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/344/274/230/346/203/240/345/210/270.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/345/206/205/345/256/271.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/345/217/221/347/245/250.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/345/233/276/347/211/207.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/345/234/260/345/235/200.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/345/272/227/351/223/272.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/346/216/250/351/200/201.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/346/220/234/347/264/242/347/273/223/346/236/234.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/346/224/266/350/227/217.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/346/225/260/346/215/256.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/346/235/203/351/231/220.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/346/266/210/346/201/257.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/347/244/274/347/211/251.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/347/247/257/345/210/206.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/347/275/221/347/273/234.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/350/247/206/351/242/221.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/350/256/242/345/215/225.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/350/257/204/350/256/272.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/351/205/215/351/200/201.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/351/223/266/350/241/214/345/215/241.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/351/237/263/344/271/220.svg +1 -0
- package/src/admin/static/scarce//351/241/265/351/235/242/344/270/215/345/255/230/345/234/250.svg +1 -0
- package/src/admin/stores/app.ts +30 -0
- package/src/admin/stores/tags.ts +73 -0
- package/src/admin/stores/user.ts +52 -0
- package/src/admin/styles/base.css +137 -0
- package/src/admin/tsconfig.json +19 -0
- package/typings/admin/base/auth.ts +23 -0
- package/typings/admin/base/permission.ts +19 -0
- package/typings/admin/comm/cascader.ts +7 -0
- package/typings/admin/comm/check-tree.ts +7 -0
- package/typings/admin/comm/crud.ts +294 -0
- package/typings/admin/comm/eps.ts +52 -0
- package/typings/admin/comm/request.ts +12 -0
- package/typings/admin/comm/service.ts +35 -0
- package/typings/admin/comm/upload.ts +39 -0
- package/typings/admin/host.d.ts +61 -0
- package/typings/admin/vome/browser.ts +11 -0
- package/typings/admin/vome/module.ts +13 -0
- package/typings/admin/vome/tags.ts +9 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg height="800" node-id="1" sillyvg="true" template-height="800" template-width="800" version="1.1" viewBox="0 0 800 800" width="800" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs node-id="207"><linearGradient gradientUnits="objectBoundingBox" id="SVGID_1_" node-id="20" spreadMethod="pad" x1="254.5302" x2="254.5302" y1="418.4932" y2="321.705"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_2_" node-id="24" spreadMethod="pad" x1="189.9132" x2="189.9132" y1="476.4851" y2="259.9961"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_3_" node-id="28" spreadMethod="pad" x1="565.6948" x2="565.6948" y1="433.8062" y2="277.3255"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_4_" node-id="32" spreadMethod="pad" x1="628.2197" x2="628.2197" y1="456.4763" y2="286.7356"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_5_" node-id="36" spreadMethod="pad" x1="119.5071" x2="119.5071" y1="498.5547" y2="348.0414"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_6_" node-id="40" spreadMethod="pad" x1="682.1803" x2="682.1803" y1="481.9493" y2="358.8171"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_7_" node-id="44" spreadMethod="pad" x1="125.4708" x2="125.4708" y1="226.2475" y2="161.7062"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_8_" node-id="48" spreadMethod="pad" x1="642.5392" x2="642.5392" y1="189.427" y2="124.8858"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_9_" node-id="52" spreadMethod="pad" x1="512.7682" x2="512.7682" y1="232.6005" y2="185.8833"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_10_" node-id="56" spreadMethod="pad" x1="398.9856" x2="398.9856" y1="748.1253" y2="395.9964"><stop offset="0.4065" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dae4ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_11_" node-id="62" spreadMethod="pad" x1="189.9151" x2="138.4789" y1="571.5811" y2="510.2818"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_12_" node-id="66" spreadMethod="pad" x1="110.8673" x2="175.0541" y1="451.2908" y2="451.2908"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_13_" node-id="72" spreadMethod="pad" x1="708.7772" x2="661.4118" y1="551.6085" y2="495.1606"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_14_" node-id="76" spreadMethod="pad" x1="635.9855" x2="695.0924" y1="440.8383" y2="440.8383"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_15_" node-id="82" spreadMethod="pad" x1="250.1146" x2="224.6733" y1="452.4378" y2="422.1181"><stop offset="0.0000001438503" stop-color="#eaeff6"></stop><stop offset="1" stop-color="#cddae9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_16_" node-id="86" spreadMethod="pad" x1="211.0161" x2="242.7641" y1="392.94" y2="392.94"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_17_" node-id="92" spreadMethod="pad" x1="561.6849" x2="485.4498" y1="701.7949" y2="435.9316"><stop offset="0.1648" stop-color="#ffffff"></stop><stop offset="0.9362" stop-color="#bbcbe0"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_18_" node-id="96" spreadMethod="pad" x1="245.9272" x2="318.1417" y1="251.8184" y2="251.8184"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_19_" node-id="100" spreadMethod="pad" x1="285.3886" x2="461.2407" y1="359.5953" y2="359.5953"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_20_" node-id="104" spreadMethod="pad" x1="350.5733" x2="475.0167" y1="433.4219" y2="433.4219"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_21_" node-id="108" spreadMethod="pad" x1="409.8321" x2="566.8679" y1="448.2352" y2="448.2352"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_22_" node-id="112" spreadMethod="pad" x1="333.0426" x2="443.659" y1="274.4109" y2="274.4109"><stop offset="0.1453" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d8e3ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_23_" node-id="116" spreadMethod="pad" x1="333.0426" x2="443.659" y1="304.5341" y2="304.5341"><stop offset="0.1453" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d8e3ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_24_" node-id="120" spreadMethod="pad" x1="333.0426" x2="443.659" y1="334.6573" y2="334.6573"><stop offset="0.1453" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d8e3ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_25_" node-id="124" spreadMethod="pad" x1="469.8316" x2="554.5223" y1="414.1628" y2="414.1628"><stop offset="0.1453" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d8e3ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_26_" node-id="128" spreadMethod="pad" x1="469.8316" x2="554.5223" y1="444.286" y2="444.286"><stop offset="0.1453" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d8e3ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_27_" node-id="132" spreadMethod="pad" x1="469.8316" x2="554.5223" y1="474.4092" y2="474.4092"><stop offset="0.1453" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d8e3ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_28_" node-id="143" spreadMethod="pad" x1="387.6124" x2="415.4189" y1="371.2961" y2="371.2961"><stop offset="0" stop-color="#4ea2f4"></stop><stop offset="0.6903" stop-color="#1e77cf"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_29_" node-id="147" spreadMethod="pad" x1="394.7558" x2="423.213" y1="397.7325" y2="348.4432"><stop offset="0" stop-color="#78c8ff"></stop><stop offset="0.6903" stop-color="#2a80e2"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_30_" node-id="154" spreadMethod="pad" x1="419.3592" x2="419.3592" y1="343.023" y2="324.097"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_31_" node-id="158" spreadMethod="pad" x1="428.6318" x2="428.6318" y1="363.9151" y2="319.7108"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_32_" node-id="162" spreadMethod="pad" x1="421.3716" x2="393.861" y1="352.5286" y2="352.5286"><stop offset="0" stop-color="#171c61"></stop><stop offset="0.7869" stop-color="#272f7c"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_33_" node-id="166" spreadMethod="pad" x1="406.6907" x2="421.5471" y1="352.744" y2="352.744"><stop offset="0" stop-color="#171c61"></stop><stop offset="0.7869" stop-color="#272f7c"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_34_" node-id="171" spreadMethod="pad" x1="438.1213" x2="438.1213" y1="342.7307" y2="323.8046"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_35_" node-id="175" spreadMethod="pad" x1="407.2742" x2="385.0692" y1="345.3401" y2="345.3401"><stop offset="0" stop-color="#171c61"></stop><stop offset="0.7869" stop-color="#272f7c"></stop></linearGradient></defs><g node-id="563"><g node-id="591"><path d="M 268.99 325.11 L 268.99 321.70 L 239.49 321.70 L 239.49 325.66 L 233.01 325.66 L 233.01 418.49 L 276.06 418.49 L 276.06 325.11 L 268.99 325.11 Z M 272.33 407.85 L 236.29 407.85 L 236.29 405.10 L 272.33 405.10 L 272.33 407.85 Z M 272.33 395.17 L 236.29 395.17 L 236.29 392.42 L 272.33 392.42 L 272.33 395.17 Z M 272.33 382.49 L 236.29 382.49 L 236.29 379.74 L 272.33 379.74 L 272.33 382.49 Z M 272.33 370.15 L 236.29 370.15 L 236.29 367.40 L 272.33 367.40 L 272.33 370.15 Z M 272.33 357.84 L 236.29 357.84 L 236.29 355.09 L 272.33 355.09 L 272.33 357.84 Z M 272.33 345.16 L 236.29 345.16 L 236.29 342.41 L 272.33 342.41 L 272.33 345.16 Z M 272.33 332.82 L 236.29 332.82 L 236.29 330.07 L 272.33 330.07 L 272.33 332.82 Z" fill="url(#SVGID_1_)" fill-rule="nonzero" group-id="15,43" node-id="436" stroke="none" target-height="96.78998" target-width="43.050003" target-x="233.01" target-y="321.7"></path><path d="M 211.00 376.92 L 211.00 268.74 L 178.25 268.74 L 178.25 260.00 L 164.39 260.00 L 164.39 313.33 L 160.66 313.33 L 160.66 476.49 L 219.17 476.49 L 219.17 376.93 L 211.00 376.93 Z M 186.51 408.73 L 178.25 408.73 L 178.25 400.72 L 186.51 400.72 L 186.51 408.73 Z M 186.51 396.20 L 178.25 396.20 L 178.25 388.19 L 186.51 388.19 L 186.51 396.20 Z M 186.51 383.73 L 178.25 383.73 L 178.25 375.72 L 186.51 375.72 L 186.51 383.73 Z M 186.51 371.29 L 178.25 371.29 L 178.25 363.28 L 186.51 363.28 L 186.51 371.29 Z M 186.51 358.76 L 178.25 358.76 L 178.25 350.75 L 186.51 350.75 L 186.51 358.76 Z M 186.51 333.76 L 178.25 333.76 L 178.25 325.75 L 186.51 325.75 L 186.51 333.76 Z M 186.51 321.23 L 178.25 321.23 L 178.25 313.22 L 186.51 313.22 L 186.51 321.23 Z M 186.51 308.75 L 178.25 308.75 L 178.25 300.74 L 186.51 300.74 L 186.51 308.75 Z M 186.51 296.32 L 178.25 296.32 L 178.25 288.31 L 186.51 288.31 L 186.51 296.32 Z M 186.51 283.79 L 178.25 283.79 L 178.25 275.78 L 186.51 275.78 L 186.51 283.79 Z M 198.86 408.73 L 190.60 408.73 L 190.60 400.72 L 198.86 400.72 L 198.86 408.73 Z M 198.86 396.20 L 190.60 396.20 L 190.60 388.19 L 198.86 388.19 L 198.86 396.20 Z M 198.86 383.73 L 190.60 383.73 L 190.60 375.72 L 198.86 375.72 L 198.86 383.73 Z M 198.86 371.29 L 190.60 371.29 L 190.60 363.28 L 198.86 363.28 L 198.86 371.29 Z M 198.86 358.76 L 190.60 358.76 L 190.60 350.75 L 198.86 350.75 L 198.86 358.76 Z M 198.86 333.76 L 190.60 333.76 L 190.60 325.75 L 198.86 325.75 L 198.86 333.76 Z M 198.86 321.23 L 190.60 321.23 L 190.60 313.22 L 198.86 313.22 L 198.86 321.23 Z M 198.86 308.75 L 190.60 308.75 L 190.60 300.74 L 198.86 300.74 L 198.86 308.75 Z M 198.86 296.32 L 190.60 296.32 L 190.60 288.31 L 198.86 288.31 L 198.86 296.32 Z M 198.86 283.79 L 190.60 283.79 L 190.60 275.78 L 198.86 275.78 L 198.86 283.79 Z" fill="url(#SVGID_2_)" fill-rule="nonzero" group-id="15,43" node-id="438" stroke="none" target-height="216.48996" target-width="58.509995" target-x="160.66" target-y="260"></path><path d="M 533.31 433.81 C 533.67 429.16 533.31 277.33 533.31 277.33 L 551.84 277.33 L 551.84 311.04 L 581.34 311.04 L 581.34 381.49 L 598.07 381.49 L 598.07 433.81 L 533.31 433.81 Z" fill="url(#SVGID_3_)" fill-rule="nonzero" group-id="15,43" node-id="440" stroke="none" target-height="156.47998" target-width="64.76001" target-x="533.31" target-y="277.33"></path><path d="M 654.53 365.66 L 654.53 360.81 L 649.53 360.81 L 649.53 318.48 L 637.33 318.48 L 637.33 313.78 L 629.10 313.78 L 629.10 306.87 L 624.81 306.87 L 624.81 286.73 L 621.72 286.73 L 621.72 307.01 L 617.78 307.01 L 617.78 313.92 L 605.58 313.92 L 605.58 325.24 L 598.53 325.24 L 598.53 456.47 L 657.91 456.47 L 657.91 365.65 L 654.53 365.65 Z M 609.02 418.44 L 605.00 418.44 L 605.00 403.20 L 609.02 403.20 L 609.02 418.44 Z M 609.02 399.79 L 605.00 399.79 L 605.00 384.55 L 609.02 384.55 L 609.02 399.79 Z M 609.02 381.14 L 605.00 381.14 L 605.00 365.90 L 609.02 365.90 L 609.02 381.14 Z M 609.02 362.16 L 605.00 362.16 L 605.00 346.92 L 609.02 346.92 L 609.02 362.16 Z M 609.02 343.17 L 605.00 343.17 L 605.00 327.93 L 609.02 327.93 L 609.02 343.17 Z M 617.29 418.44 L 613.27 418.44 L 613.27 403.20 L 617.29 403.20 L 617.29 418.44 Z M 617.29 399.79 L 613.27 399.79 L 613.27 384.55 L 617.29 384.55 L 617.29 399.79 Z M 617.29 381.14 L 613.27 381.14 L 613.27 365.90 L 617.29 365.90 L 617.29 381.14 Z M 617.29 362.16 L 613.27 362.16 L 613.27 346.92 L 617.29 346.92 L 617.29 362.16 Z M 617.29 343.17 L 613.27 343.17 L 613.27 327.93 L 617.29 327.93 L 617.29 343.17 Z M 625.57 418.44 L 621.55 418.44 L 621.55 403.20 L 625.57 403.20 L 625.57 418.44 Z M 625.57 399.79 L 621.55 399.79 L 621.55 384.55 L 625.57 384.55 L 625.57 399.79 Z M 625.57 381.14 L 621.55 381.14 L 621.55 365.90 L 625.57 365.90 L 625.57 381.14 Z M 625.57 362.16 L 621.55 362.16 L 621.55 346.92 L 625.57 346.92 L 625.57 362.16 Z M 625.57 343.17 L 621.55 343.17 L 621.55 327.93 L 625.57 327.93 L 625.57 343.17 Z M 633.85 418.44 L 629.83 418.44 L 629.83 403.20 L 633.85 403.20 L 633.85 418.44 Z M 633.85 399.79 L 629.83 399.79 L 629.83 384.55 L 633.85 384.55 L 633.85 399.79 Z M 633.85 381.14 L 629.83 381.14 L 629.83 365.90 L 633.85 365.90 L 633.85 381.14 Z M 633.85 362.16 L 629.83 362.16 L 629.83 346.92 L 633.85 346.92 L 633.85 362.16 Z M 633.85 343.17 L 629.83 343.17 L 629.83 327.93 L 633.85 327.93 L 633.85 343.17 Z M 642.13 418.44 L 638.11 418.44 L 638.11 403.20 L 642.13 403.20 L 642.13 418.44 Z M 642.13 399.79 L 638.11 399.79 L 638.11 384.55 L 642.13 384.55 L 642.13 399.79 Z M 642.13 381.14 L 638.11 381.14 L 638.11 365.90 L 642.13 365.90 L 642.13 381.14 Z M 642.13 362.16 L 638.11 362.16 L 638.11 346.92 L 642.13 346.92 L 642.13 362.16 Z M 642.13 343.17 L 638.11 343.17 L 638.11 327.93 L 642.13 327.93 L 642.13 343.17 Z" fill="url(#SVGID_4_)" fill-rule="nonzero" group-id="15,43" node-id="442" stroke="none" target-height="169.73999" target-width="59.379944" target-x="598.53" target-y="286.73"></path><path d="M 92.88 498.55 L 92.88 409.01 L 103.14 409.01 L 103.14 363.31 L 138.40 348.04 L 138.40 408.29 L 146.13 408.29 L 146.13 498.55 Z" fill="url(#SVGID_5_)" fill-rule="nonzero" group-id="15,43" node-id="444" stroke="none" target-height="150.50998" target-width="53.250008" target-x="92.88" target-y="348.04004"></path><path d="M 697.65 481.95 L 666.71 481.95 L 666.71 358.82 L 697.65 373.79 Z" fill="url(#SVGID_6_)" fill-rule="nonzero" group-id="15,43" node-id="446" stroke="none" target-height="123.130005" target-width="30.940002" target-x="666.71" target-y="358.82"></path><path d="M 87.70 185.14 C 87.70 185.14 97.04 159.66 120.00 169.66 C 125.30 164.28 131.86 160.37 140.73 162.13 C 149.60 163.90 155.32 170.54 157.26 174.96 C 160.04 174.83 182.30 175.57 182.30 198.66 C 182.30 221.75 155.36 221.31 153.41 219.48 C 151.01 221.62 139.47 233.23 125.47 219.98 C 122.44 222.57 112.54 233.54 96.89 218.40 C 89.64 221.43 72.41 223.76 69.07 205.97 C 65.73 188.19 82.86 183.16 87.70 185.14 Z" fill="url(#SVGID_7_)" fill-rule="nonzero" group-id="15,43" node-id="448" stroke="none" target-height="73.87999" target-width="116.57" target-x="65.73" target-y="159.66"></path><path d="M 604.77 148.32 C 604.77 148.32 614.11 122.84 637.07 132.84 C 642.37 127.46 648.93 123.55 657.80 125.31 C 666.67 127.08 672.39 133.72 674.33 138.14 C 677.11 138.01 699.37 138.75 699.37 161.84 C 699.37 184.93 672.43 184.49 670.48 182.66 C 668.08 184.80 656.54 196.41 642.54 183.16 C 639.51 185.75 629.61 196.72 613.96 181.58 C 606.71 184.61 589.48 186.94 586.14 169.15 C 582.80 151.37 599.93 146.34 604.77 148.32 Z" fill="url(#SVGID_8_)" fill-rule="nonzero" group-id="15,43" node-id="450" stroke="none" target-height="73.88001" target-width="116.56995" target-x="582.8" target-y="122.83999"></path><path d="M 485.43 202.84 C 485.43 202.84 492.19 184.39 508.81 191.64 C 512.65 187.74 517.39 184.91 523.82 186.19 C 530.24 187.47 534.38 192.28 535.78 195.47 C 537.79 195.38 553.91 195.91 553.91 212.62 C 553.91 229.33 534.41 229.01 533.00 227.69 C 531.26 229.24 522.91 237.64 512.77 228.06 C 510.58 229.93 503.41 237.88 492.09 226.92 C 486.84 229.11 474.37 230.80 471.95 217.92 C 469.52 205.05 481.93 201.41 485.43 202.84 Z" fill="url(#SVGID_9_)" fill-rule="nonzero" group-id="15,43" node-id="452" stroke="none" target-height="53.49002" target-width="84.389984" target-x="469.52" target-y="184.39"></path><path d="M 769.97 572.06 C 769.97 618.75 730.88 663.54 661.31 696.55 C 591.74 729.57 497.38 748.12 398.99 748.12 C 300.60 748.12 206.24 729.57 136.67 696.55 C 67.10 663.54 28.01 618.75 28.01 572.06 C 28.01 525.37 67.10 480.58 136.67 447.57 C 206.24 414.55 300.60 396.00 398.99 396.00 C 497.38 396.00 591.74 414.55 661.31 447.57 C 730.88 480.58 769.97 525.37 769.97 572.06 Z" fill="url(#SVGID_10_)" fill-rule="nonzero" group-id="15,43" node-id="454" stroke="none" target-height="352.12" target-width="741.95996" target-x="28.00998" target-y="396"></path></g><g node-id="592"><g node-id="595"><path d="M 144.93 550.53 C 144.93 550.53 141.40 555.54 147.30 563.00 C 152.56 569.64 160.87 568.35 163.63 566.22 C 164.48 572.00 171.57 584.18 182.79 577.29 C 193.34 570.82 188.26 560.98 184.89 557.11 C 191.48 555.25 196.39 539.46 181.27 534.01 C 183.51 527.49 183.91 524.54 180.63 518.68 C 177.47 513.04 172.28 512.14 164.00 515.57 L 152.02 520.62 L 144.39 506.38 L 140.31 508.74 L 149.11 522.34 L 137.45 528.19 C 137.45 528.19 127.48 532.09 131.78 542.79 C 135.77 552.71 144.93 550.53 144.93 550.53 Z" fill="url(#SVGID_11_)" fill-rule="nonzero" group-id="15,44,47" node-id="460" stroke="none" target-height="77.79999" target-width="68.90998" target-x="127.48" target-y="506.38"></path><path d="M 124.64 489.81 L 160.70 489.81 C 160.70 489.81 172.35 490.14 174.67 476.83 C 177.22 462.22 166.59 460.21 166.59 460.21 C 166.59 460.21 172.99 457.27 171.60 446.22 C 170.20 435.18 160.48 433.78 156.43 434.29 C 157.09 427.74 158.47 412.91 143.07 412.76 C 128.20 412.61 128.29 427.58 129.40 433.48 C 124.10 433.54 108.09 441.49 119.35 458.93 C 113.22 464.18 110.63 467.21 110.90 474.78 C 111.16 482.36 115.80 489.81 124.64 489.81 Z" fill="url(#SVGID_12_)" fill-rule="nonzero" group-id="15,44,47" node-id="462" stroke="none" target-height="77.53003" target-width="69.130005" target-x="108.09" target-y="412.61"></path><path d="M 159.81 469.58 L 144.43 479.70 L 144.01 469.91 L 153.73 458.45 L 143.86 466.43 L 142.58 436.53 L 141.64 466.63 L 131.26 458.37 L 141.54 469.69 L 141.23 479.76 L 125.41 468.14 L 141.11 483.40 L 140.32 508.75 L 145.67 508.75 L 144.59 483.55 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="15,44,47" node-id="464" stroke="none" target-height="72.22" target-width="34.399994" target-x="125.41" target-y="436.53"></path></g><g node-id="596"><path d="M 667.36 532.22 C 667.36 532.22 664.11 536.84 669.54 543.70 C 674.38 549.82 682.04 548.63 684.58 546.66 C 685.36 551.98 691.90 563.19 702.23 556.86 C 711.94 550.90 707.27 541.84 704.16 538.28 C 710.23 536.57 714.75 522.02 700.83 517.01 C 702.90 511.01 703.27 508.29 700.24 502.90 C 697.33 497.71 692.55 496.87 684.93 500.04 L 673.89 504.69 L 666.86 491.58 L 663.11 493.75 L 671.21 506.27 L 660.48 511.66 C 660.48 511.66 651.30 515.25 655.26 525.11 C 658.92 534.23 667.36 532.22 667.36 532.22 Z" fill="url(#SVGID_13_)" fill-rule="nonzero" group-id="15,44,48" node-id="469" stroke="none" target-height="71.609985" target-width="63.450073" target-x="651.3" target-y="491.58002"></path><path d="M 648.66 476.31 L 681.86 476.31 C 681.86 476.31 692.59 476.62 694.72 464.36 C 697.06 450.91 687.28 449.06 687.28 449.06 C 687.28 449.06 693.18 446.35 691.89 436.18 C 690.60 426.01 681.65 424.72 677.92 425.20 C 678.53 419.17 679.80 405.51 665.62 405.37 C 651.93 405.23 652.01 419.01 653.03 424.45 C 648.15 424.50 633.40 431.82 643.78 447.89 C 638.14 452.72 635.75 455.52 636.00 462.48 C 636.26 469.45 640.53 476.31 648.66 476.31 Z" fill="url(#SVGID_14_)" fill-rule="nonzero" group-id="15,44,48" node-id="471" stroke="none" target-height="71.389984" target-width="63.659973" target-x="633.4" target-y="405.23"></path><path d="M 681.05 457.68 L 666.89 467.00 L 666.50 457.99 L 675.46 447.43 L 666.37 454.78 L 665.19 427.25 L 664.32 454.96 L 654.77 447.36 L 664.23 457.79 L 663.94 467.06 L 649.38 456.35 L 663.84 470.40 L 663.10 493.75 L 668.04 493.75 L 667.04 470.54 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="15,44,48" node-id="473" stroke="none" target-height="66.5" target-width="31.669983" target-x="649.38" target-y="427.25"></path></g><g node-id="597"><path d="M 227.87 442.02 C 227.87 442.02 226.12 444.50 229.04 448.19 C 231.64 451.48 235.75 450.84 237.12 449.78 C 237.54 452.64 241.05 458.66 246.60 455.26 C 251.82 452.06 249.31 447.19 247.64 445.28 C 250.90 444.36 253.33 436.55 245.85 433.86 C 246.96 430.64 247.16 429.18 245.53 426.28 C 243.97 423.49 241.40 423.04 237.31 424.74 L 231.38 427.24 L 227.61 420.20 L 225.59 421.37 L 229.94 428.09 L 224.17 430.98 C 224.17 430.98 219.24 432.91 221.37 438.20 C 223.34 443.10 227.87 442.02 227.87 442.02 Z" fill="url(#SVGID_15_)" fill-rule="nonzero" group-id="15,44,49" node-id="478" stroke="none" target-height="38.45999" target-width="34.09001" target-x="219.23999" target-y="420.2"></path><path d="M 217.83 411.99 L 235.66 411.99 C 235.66 411.99 241.42 412.15 242.57 405.57 C 243.83 398.34 238.57 397.35 238.57 397.35 C 238.57 397.35 241.74 395.89 241.05 390.43 C 240.36 384.97 235.55 384.28 233.55 384.53 C 233.88 381.29 234.56 373.95 226.94 373.88 C 219.58 373.81 219.63 381.21 220.18 384.13 C 217.56 384.16 209.64 388.09 215.21 396.72 C 212.18 399.31 210.89 400.82 211.03 404.56 C 211.16 408.31 213.46 411.99 217.83 411.99 Z" fill="url(#SVGID_16_)" fill-rule="nonzero" group-id="15,44,49" node-id="480" stroke="none" target-height="38.339996" target-width="34.190002" target-x="209.64" target-y="373.81"></path><path d="M 235.22 401.98 L 227.62 406.99 L 227.41 402.15 L 232.22 396.48 L 227.34 400.43 L 226.70 385.64 L 226.24 400.53 L 221.10 396.44 L 226.19 402.04 L 226.03 407.02 L 218.21 401.27 L 225.98 408.82 L 225.58 421.36 L 228.23 421.36 L 227.70 408.90 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="15,44,49" node-id="482" stroke="none" target-height="35.72" target-width="17.010025" target-x="218.20999" target-y="385.63998"></path></g></g><g node-id="593"><path d="M 566.87 528.73 L 729.29 643.72 L 443.66 735.64 L 315.19 484.75 L 504.48 491.57 Z" fill="url(#SVGID_17_)" fill-rule="nonzero" group-id="15,45" node-id="488" stroke="none" target-height="250.89001" target-width="414.10004" target-x="315.19" target-y="484.75"></path><path d="M 316.50 283.55 L 245.94 283.55 L 245.94 251.20 C 245.94 251.20 244.16 220.09 287.12 220.09 C 328.60 220.09 316.50 283.55 316.50 283.55 Z" fill="url(#SVGID_18_)" fill-rule="nonzero" group-id="15,45" node-id="490" stroke="none" target-height="63.45999" target-width="84.44" target-x="244.16" target-y="220.09"></path><path d="M 285.39 220.09 C 285.39 220.09 312.30 223.55 312.30 260.09 C 312.30 296.63 312.30 471.78 312.30 471.78 C 312.30 471.78 311.72 499.10 339.71 499.10 C 367.69 499.10 420.37 499.10 420.37 499.10 L 461.19 372.35 L 461.19 268.97 C 461.19 268.97 464.28 220.10 422.42 220.10 C 384.89 220.09 285.39 220.09 285.39 220.09 Z" fill="url(#SVGID_19_)" fill-rule="nonzero" group-id="15,45" node-id="492" stroke="none" target-height="279.01" target-width="178.88998" target-x="285.39" target-y="220.09"></path><path d="M 350.57 499.10 L 475.01 499.10 L 461.23 393.42 C 461.23 393.42 443.90 367.74 409.82 367.74 C 371.43 367.74 373.30 406.01 373.30 407.99 C 373.30 409.97 373.30 473.92 373.30 473.92 C 373.30 473.92 373.04 499.10 350.57 499.10 Z" fill="url(#SVGID_20_)" fill-rule="nonzero" group-id="15,45" node-id="494" stroke="none" target-height="131.36002" target-width="124.44" target-x="350.57" target-y="367.74"></path><path d="M 566.87 528.73 L 452.30 528.73 L 452.30 409.88 C 452.30 409.88 455.10 367.74 409.83 367.74 C 461.19 367.74 516.83 367.74 516.83 367.74 C 516.83 367.74 566.87 366.42 566.87 420.41 C 566.87 474.40 566.87 528.73 566.87 528.73 Z" fill="url(#SVGID_21_)" fill-rule="nonzero" group-id="15,45" node-id="496" stroke="none" target-height="162.30997" target-width="157.04001" target-x="409.83" target-y="366.42"></path><path d="M 436.75 281.32 L 339.96 281.32 C 336.14 281.32 333.05 278.22 333.05 274.41 L 333.05 274.41 C 333.05 270.59 336.15 267.50 339.96 267.50 L 436.75 267.50 C 440.57 267.50 443.66 270.60 443.66 274.41 L 443.66 274.41 C 443.66 278.23 440.56 281.32 436.75 281.32 Z" fill="url(#SVGID_22_)" fill-rule="nonzero" group-id="15,45" node-id="498" stroke="none" target-height="13.820007" target-width="110.610016" target-x="333.05" target-y="267.5"></path><path d="M 436.75 311.45 L 339.96 311.45 C 336.14 311.45 333.05 308.35 333.05 304.54 L 333.05 304.54 C 333.05 300.72 336.15 297.63 339.96 297.63 L 436.75 297.63 C 440.57 297.63 443.66 300.73 443.66 304.54 L 443.66 304.54 C 443.66 308.35 440.56 311.45 436.75 311.45 Z" fill="url(#SVGID_23_)" fill-rule="nonzero" group-id="15,45" node-id="500" stroke="none" target-height="13.820007" target-width="110.610016" target-x="333.05" target-y="297.63"></path><path d="M 436.75 341.57 L 339.96 341.57 C 336.14 341.57 333.05 338.47 333.05 334.66 L 333.05 334.66 C 333.05 330.84 336.15 327.75 339.96 327.75 L 436.75 327.75 C 440.57 327.75 443.66 330.85 443.66 334.66 L 443.66 334.66 C 443.66 338.48 440.56 341.57 436.75 341.57 Z" fill="url(#SVGID_24_)" fill-rule="nonzero" group-id="15,45" node-id="502" stroke="none" target-height="13.820007" target-width="110.610016" target-x="333.05" target-y="327.75"></path><path d="M 547.61 421.08 L 476.75 421.08 C 472.93 421.08 469.84 417.98 469.84 414.17 L 469.84 414.17 C 469.84 410.35 472.94 407.26 476.75 407.26 L 547.61 407.26 C 551.43 407.26 554.52 410.36 554.52 414.17 L 554.52 414.17 C 554.52 417.98 551.43 421.08 547.61 421.08 Z" fill="url(#SVGID_25_)" fill-rule="nonzero" group-id="15,45" node-id="504" stroke="none" target-height="13.819977" target-width="84.68002" target-x="469.84" target-y="407.26"></path><path d="M 547.61 451.20 L 476.75 451.20 C 472.93 451.20 469.84 448.10 469.84 444.29 L 469.84 444.29 C 469.84 440.47 472.94 437.38 476.75 437.38 L 547.61 437.38 C 551.43 437.38 554.52 440.48 554.52 444.29 L 554.52 444.29 C 554.52 448.10 551.43 451.20 547.61 451.20 Z" fill="url(#SVGID_26_)" fill-rule="nonzero" group-id="15,45" node-id="506" stroke="none" target-height="13.820007" target-width="84.68002" target-x="469.84" target-y="437.38"></path><path d="M 547.61 481.32 L 476.75 481.32 C 472.93 481.32 469.84 478.22 469.84 474.41 L 469.84 474.41 C 469.84 470.59 472.94 467.50 476.75 467.50 L 547.61 467.50 C 551.43 467.50 554.52 470.60 554.52 474.41 L 554.52 474.41 C 554.52 478.23 551.43 481.32 547.61 481.32 Z" fill="url(#SVGID_27_)" fill-rule="nonzero" group-id="15,45" node-id="508" stroke="none" target-height="13.820007" target-width="84.68002" target-x="469.84" target-y="467.5"></path></g><g node-id="594"><path d="M 503.15 388.98 C 503.15 388.98 502.39 390.01 504.60 393.74 C 501.24 394.90 496.81 393.52 496.81 393.52 L 497.05 387.31 L 503.15 388.98 Z" fill="#ffbe92" fill-rule="nonzero" group-id="15,46" node-id="513" stroke="none" target-height="7.590027" target-width="7.7900085" target-x="496.81" target-y="387.30997"></path><path d="M 494.81 397.25 L 514.35 398.25 C 514.35 398.25 515.64 392.44 507.94 392.28 C 506.38 392.25 505.18 390.43 503.90 390.42 C 500.83 392.92 495.76 392.23 495.76 392.23 L 494.81 397.25 Z" fill="#f8b62d" fill-rule="nonzero" group-id="15,46" node-id="515" stroke="none" target-height="7.8299255" target-width="20.830017" target-x="494.81" target-y="390.42004"></path><path d="M 494.35 398.51 L 502.91 399.72 L 503.31 398.16 L 514.32 399.44 L 514.61 398.12 L 494.86 395.63 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="15,46" node-id="517" stroke="none" target-height="4.0899963" target-width="20.25998" target-x="494.35" target-y="395.63"></path><path d="M 512.95 391.81 C 512.95 391.81 511.64 393.33 514.75 396.38 C 511.81 398.35 508.02 397.82 508.02 397.82 L 506.63 391.76 L 512.95 391.81 Z" fill="#ffbe92" fill-rule="nonzero" group-id="15,46" node-id="519" stroke="none" target-height="6.5899963" target-width="8.119965" target-x="506.63004" target-y="391.76"></path><path d="M 506.16 402.00 L 525.71 401.54 C 525.71 401.54 526.52 395.64 518.83 396.07 C 517.28 396.16 515.93 394.43 514.65 394.51 C 511.80 397.24 506.69 396.92 506.69 396.92 L 506.16 402.00 Z" fill="#f8b62d" fill-rule="nonzero" group-id="15,46" node-id="521" stroke="none" target-height="7.570038" target-width="20.360016" target-x="506.16" target-y="394.42996"></path><path d="M 505.81 403.29 L 514.44 403.85 L 514.71 402.27 L 525.78 402.72 L 525.97 401.39 L 506.09 400.38 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="15,46" node-id="523" stroke="none" target-height="3.4700317" target-width="20.159973" target-x="505.81" target-y="400.37997"></path><path d="M 485.54 355.85 C 485.54 355.85 510.35 349.15 512.71 354.89 C 515.07 360.63 510.22 369.90 507.81 376.85 C 505.40 383.80 503.58 390.02 503.58 390.02 L 495.83 389.30 L 498.70 365.03 C 498.70 365.03 497.03 360.72 491.21 360.24 C 485.40 359.77 485.54 355.85 485.54 355.85 Z" fill="url(#SVGID_28_)" fill-rule="nonzero" group-id="15,46" node-id="525" stroke="none" target-height="40.869965" target-width="29.670013" target-x="485.4" target-y="349.15"></path><path d="M 476.59 352.40 C 476.59 352.40 501.84 349.11 504.79 353.21 C 507.74 357.31 513.58 393.47 513.58 393.47 L 507.09 396.06 C 507.09 396.06 497.14 369.07 494.79 367.83 C 492.78 366.77 486.89 367.91 481.30 369.57 C 475.71 371.23 466.18 373.20 461.86 362.66 C 463.82 351.32 476.59 352.40 476.59 352.40 Z" fill="url(#SVGID_29_)" fill-rule="nonzero" group-id="15,46" node-id="527" stroke="none" target-height="46.950043" target-width="51.72" target-x="461.86002" target-y="349.11"></path><path d="M 480.19 306.58 C 480.19 306.58 483.50 310.93 481.18 317.82 C 480.59 319.14 479.45 321.43 476.31 319.70 C 476.04 319.64 475.86 320.03 475.79 320.40 C 475.72 320.77 474.87 327.12 474.87 327.12 L 465.83 327.17 C 465.83 327.17 470.02 311.44 469.94 308.35 C 469.91 306.76 471.60 303.98 474.95 303.83 C 478.30 303.68 480.19 306.58 480.19 306.58 Z" fill="#ffbe92" fill-rule="nonzero" group-id="15,46" node-id="529" stroke="none" target-height="23.49002" target-width="17.670044" target-x="465.82996" target-y="303.68"></path><path d="M 477.75 300.75 C 477.75 300.75 478.67 299.02 481.20 300.28 C 483.73 301.54 482.52 303.77 482.43 304.33 C 482.34 304.89 482.69 305.32 483.44 305.02 C 484.19 304.71 485.52 304.50 486.44 306.20 C 487.36 307.90 485.41 312.41 482.45 311.96 C 479.50 311.52 478.01 310.00 476.95 308.92 C 475.88 307.84 473.83 306.56 473.53 307.83 C 473.23 309.10 473.31 311.77 472.72 311.38 C 472.17 311.01 472.49 308.28 470.85 308.27 C 469.21 308.26 469.33 310.63 470.41 311.90 C 470.87 312.44 470.84 312.34 470.68 312.89 C 470.52 313.44 470.56 313.82 469.97 314.47 C 469.37 315.13 469.13 315.48 468.64 314.53 C 468.15 313.57 467.23 311.76 467.72 307.91 C 467.92 306.83 467.58 306.76 467.02 306.15 C 466.46 305.54 465.65 304.58 466.47 303.20 C 467.29 301.81 468.08 301.99 469.10 302.03 C 470.13 302.08 470.08 301.70 470.09 301.09 C 470.10 300.48 470.85 298.13 472.88 298.18 C 474.91 298.22 475.78 299.37 476.30 300.34 C 476.82 301.31 477.42 301.07 477.75 300.75 Z" fill="#171c61" fill-rule="nonzero" group-id="15,46" node-id="531" stroke="none" target-height="17.350006" target-width="21.709991" target-x="465.65" target-y="298.13"></path><path d="M 485.91 336.83 C 485.91 336.83 486.25 340.60 487.17 341.49 C 488.09 342.38 494.66 347.87 498.17 349.53 C 497.47 351.57 497.02 351.83 497.02 351.83 C 497.02 351.83 487.38 349.15 484.25 346.02 C 483.16 344.81 481.17 342.16 480.61 338.23 C 483.10 335.72 485.91 336.83 485.91 336.83 Z" fill="#ffbe92" fill-rule="nonzero" group-id="15,46" node-id="533" stroke="none" target-height="16.109985" target-width="17.560028" target-x="480.61" target-y="335.72"></path><path d="M 487.16 338.52 L 479.26 343.02 C 479.26 343.02 473.04 328.90 477.87 324.49 C 479.40 323.20 483.57 325.06 485.10 329.76 C 486.64 334.45 487.16 338.52 487.16 338.52 Z" fill="url(#SVGID_30_)" fill-rule="nonzero" group-id="15,46" node-id="535" stroke="none" target-height="19.819977" target-width="14.119995" target-x="473.04" target-y="323.2"></path><path d="M 459.11 325.78 C 459.11 325.78 462.48 319.31 467.71 319.73 C 468.43 323.37 472.57 323.53 475.48 322.54 C 477.61 322.83 478.81 322.97 480.27 325.12 C 481.73 327.27 481.58 327.78 482.58 332.31 C 483.30 336.93 481.49 340.85 482.27 345.07 C 483.04 349.30 487.02 349.95 484.95 351.71 C 482.88 353.47 469.89 354.45 463.92 363.26 C 462.08 365.98 460.63 359.83 460.60 355.19 C 460.57 350.54 462.99 338.55 459.11 325.78 Z" fill="url(#SVGID_31_)" fill-rule="nonzero" group-id="15,46" node-id="537" stroke="none" target-height="46.670013" target-width="27.909973" target-x="459.11" target-y="319.31"></path><path d="M 507.10 351.12 L 497.78 350.87 L 479.59 352.08 L 494.27 354.19 Z" fill="url(#SVGID_32_)" fill-rule="nonzero" group-id="15,46" node-id="539" stroke="none" target-height="3.3200073" target-width="27.51001" target-x="479.59" target-y="350.87"></path><path d="M 479.41 351.30 L 494.27 353.36 L 494.27 354.19 L 479.41 352.13 Z" fill="url(#SVGID_33_)" fill-rule="nonzero" group-id="15,46" node-id="541" stroke="none" target-height="2.8900146" target-width="14.859955" target-x="479.41" target-y="351.3"></path><path d="M 466.10 336.95 C 466.10 336.95 468.29 343.98 468.93 344.20 C 469.57 344.42 480.05 348.82 481.29 348.88 C 482.53 348.94 488.02 346.33 490.12 351.82 C 490.25 352.39 490.38 352.78 488.84 352.65 C 487.31 352.52 484.97 351.94 483.35 352.45 C 481.73 352.96 481.05 352.07 479.58 352.07 C 478.11 352.07 466.37 351.05 464.84 349.58 C 463.31 348.11 461.46 345.49 460.50 339.88 C 464.40 337.40 466.10 336.95 466.10 336.95 Z" fill="#ffbe92" fill-rule="nonzero" group-id="15,46" node-id="543" stroke="none" target-height="16.00998" target-width="29.880005" target-x="460.5" target-y="336.95"></path><path d="M 468.40 338.23 L 460.50 342.73 C 460.50 342.73 454.28 328.61 459.11 324.20 C 460.64 322.91 464.81 324.77 466.34 329.47 C 467.87 334.16 468.40 338.23 468.40 338.23 Z" fill="url(#SVGID_34_)" fill-rule="nonzero" group-id="15,46" node-id="545" stroke="none" target-height="19.820007" target-width="14.119995" target-x="454.28" target-y="322.91"></path><path d="M 514.83 336.61 L 498.69 336.93 C 498.23 336.94 497.83 337.25 497.71 337.70 L 493.72 352.75 C 493.54 353.44 494.10 354.11 494.81 354.05 L 510.37 352.73 C 510.79 352.69 511.14 352.41 511.27 352.02 L 515.84 337.97 C 516.06 337.29 515.54 336.60 514.83 336.61 Z" fill="url(#SVGID_35_)" fill-rule="nonzero" group-id="15,46" node-id="547" stroke="none" target-height="17.50998" target-width="22.519958" target-x="493.54004" target-y="336.6"></path></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg height="800" node-id="1" sillyvg="true" template-height="800" template-width="800" version="1.1" viewBox="0 0 800 800" width="800" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs node-id="178"><linearGradient gradientUnits="objectBoundingBox" id="SVGID_1_" node-id="34" spreadMethod="pad" x1="256.5731" x2="256.5731" y1="422.0669" y2="325.2787"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_2_" node-id="38" spreadMethod="pad" x1="191.9562" x2="191.9562" y1="480.0588" y2="263.5698"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_3_" node-id="42" spreadMethod="pad" x1="567.7377" x2="567.7377" y1="437.3799" y2="280.8992"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_4_" node-id="46" spreadMethod="pad" x1="630.2626" x2="630.2626" y1="460.0499" y2="290.3093"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_5_" node-id="50" spreadMethod="pad" x1="121.55" x2="121.55" y1="502.1284" y2="351.6151"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_6_" node-id="54" spreadMethod="pad" x1="684.2232" x2="684.2232" y1="485.523" y2="362.3908"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_7_" node-id="58" spreadMethod="pad" x1="127.5137" x2="127.5137" y1="229.8212" y2="165.2799"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_8_" node-id="62" spreadMethod="pad" x1="644.5822" x2="644.5822" y1="193.0007" y2="128.4595"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_9_" node-id="66" spreadMethod="pad" x1="514.8112" x2="514.8112" y1="236.1742" y2="189.457"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_10_" node-id="70" spreadMethod="pad" x1="401.0285" x2="401.0285" y1="751.699" y2="399.5701"><stop offset="0.4065" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dae4ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_11_" node-id="76" spreadMethod="pad" x1="191.9581" x2="140.5218" y1="575.1548" y2="513.8555"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_12_" node-id="80" spreadMethod="pad" x1="112.9103" x2="177.0971" y1="454.8645" y2="454.8645"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_13_" node-id="86" spreadMethod="pad" x1="710.8202" x2="663.4548" y1="555.1823" y2="498.7343"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_14_" node-id="90" spreadMethod="pad" x1="638.0284" x2="697.1353" y1="444.412" y2="444.412"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_15_" node-id="96" spreadMethod="pad" x1="252.1576" x2="226.7163" y1="456.0115" y2="425.6917"><stop offset="0.0000001438503" stop-color="#eaeff6"></stop><stop offset="1" stop-color="#cddae9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_16_" node-id="100" spreadMethod="pad" x1="213.0591" x2="244.8071" y1="396.5137" y2="396.5137"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_17_" node-id="106" spreadMethod="pad" x1="543.5555" x2="466.929" y1="668.9153" y2="401.6869"><stop offset="0.0698" stop-color="#ffffff"></stop><stop offset="0.7853" stop-color="#bbcbe0"></stop><stop offset="1" stop-color="#bbcbe0"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_18_" node-id="111" spreadMethod="pad" x1="271.9955" x2="537.1343" y1="375.4053" y2="375.4053"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_19_" node-id="115" spreadMethod="pad" x1="294.7747" x2="514.3551" y1="375.4053" y2="375.4053"><stop offset="0" stop-color="#dde5f0"></stop><stop offset="1" stop-color="#9fb7ce"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_20_" node-id="119" spreadMethod="pad" x1="362.7817" x2="446.3481" y1="386.9847" y2="386.9847"><stop offset="0.1453" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d8e3ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_21_" node-id="124" spreadMethod="pad" x1="370.2766" x2="438.8532" y1="324.3209" y2="324.3209"><stop offset="0.1453" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d8e3ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_22_" node-id="129" spreadMethod="pad" x1="334.0785" x2="301.6467" y1="660.1761" y2="547.0731"><stop offset="0.1022" stop-color="#ffffff"></stop><stop offset="1" stop-color="#c9d5e6"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_23_" node-id="133" spreadMethod="pad" x1="271.9239" x2="319.1141" y1="547.9866" y2="547.9866"><stop offset="0" stop-color="#dde5f0"></stop><stop offset="1" stop-color="#9fb7ce"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_24_" node-id="141" spreadMethod="pad" x1="296.1982" x2="296.1982" y1="526.4368" y2="492.7718"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_25_" node-id="146" spreadMethod="pad" x1="279.6842" x2="295.2736" y1="552.0047" y2="525.003"><stop offset="0" stop-color="#78c8ff"></stop><stop offset="0.6903" stop-color="#2a80e2"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_26_" node-id="150" spreadMethod="pad" x1="294.6454" x2="311.9366" y1="553.3703" y2="523.4212"><stop offset="0" stop-color="#78c8ff"></stop><stop offset="0.6903" stop-color="#2a80e2"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_27_" node-id="154" spreadMethod="pad" x1="298.503" x2="286.103" y1="526.9892" y2="505.5117"><stop offset="0.3408" stop-color="#ef9a60"></stop><stop offset="1" stop-color="#ffbe92"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_28_" node-id="158" spreadMethod="pad" x1="280.0269" x2="317.0527" y1="518.8278" y2="518.8278"><stop offset="0.3408" stop-color="#f4ae7f"></stop><stop offset="1" stop-color="#ffbe92"></stop></linearGradient></defs><g node-id="505"><g node-id="519"><path d="M 271.03 328.68 L 271.03 325.27 L 241.53 325.27 L 241.53 329.23 L 235.05 329.23 L 235.05 422.06 L 278.10 422.06 L 278.10 328.68 L 271.03 328.68 Z M 274.37 411.42 L 238.33 411.42 L 238.33 408.67 L 274.37 408.67 L 274.37 411.42 Z M 274.37 398.75 L 238.33 398.75 L 238.33 396.00 L 274.37 396.00 L 274.37 398.75 Z M 274.37 386.07 L 238.33 386.07 L 238.33 383.32 L 274.37 383.32 L 274.37 386.07 Z M 274.37 373.73 L 238.33 373.73 L 238.33 370.98 L 274.37 370.98 L 274.37 373.73 Z M 274.37 361.41 L 238.33 361.41 L 238.33 358.66 L 274.37 358.66 L 274.37 361.41 Z M 274.37 348.74 L 238.33 348.74 L 238.33 345.99 L 274.37 345.99 L 274.37 348.74 Z M 274.37 336.39 L 238.33 336.39 L 238.33 333.64 L 274.37 333.64 L 274.37 336.39 Z" fill="url(#SVGID_1_)" fill-rule="nonzero" group-id="29,43" node-id="381" stroke="none" target-height="96.79001" target-width="43.050003" target-x="235.05" target-y="325.27"></path><path d="M 213.05 380.50 L 213.05 272.31 L 180.30 272.31 L 180.30 263.57 L 166.44 263.57 L 166.44 316.90 L 162.71 316.90 L 162.71 480.06 L 221.22 480.06 L 221.22 380.50 L 213.05 380.50 Z M 188.55 412.30 L 180.29 412.30 L 180.29 404.29 L 188.55 404.29 L 188.55 412.30 Z M 188.55 399.78 L 180.29 399.78 L 180.29 391.77 L 188.55 391.77 L 188.55 399.78 Z M 188.55 387.30 L 180.29 387.30 L 180.29 379.29 L 188.55 379.29 L 188.55 387.30 Z M 188.55 374.86 L 180.29 374.86 L 180.29 366.85 L 188.55 366.85 L 188.55 374.86 Z M 188.55 362.33 L 180.29 362.33 L 180.29 354.32 L 188.55 354.32 L 188.55 362.33 Z M 188.55 337.33 L 180.29 337.33 L 180.29 329.32 L 188.55 329.32 L 188.55 337.33 Z M 188.55 324.80 L 180.29 324.80 L 180.29 316.79 L 188.55 316.79 L 188.55 324.80 Z M 188.55 312.33 L 180.29 312.33 L 180.29 304.32 L 188.55 304.32 L 188.55 312.33 Z M 188.55 299.89 L 180.29 299.89 L 180.29 291.88 L 188.55 291.88 L 188.55 299.89 Z M 188.55 287.36 L 180.29 287.36 L 180.29 279.35 L 188.55 279.35 L 188.55 287.36 Z M 200.90 412.30 L 192.64 412.30 L 192.64 404.29 L 200.90 404.29 L 200.90 412.30 Z M 200.90 399.78 L 192.64 399.78 L 192.64 391.77 L 200.90 391.77 L 200.90 399.78 Z M 200.90 387.30 L 192.64 387.30 L 192.64 379.29 L 200.90 379.29 L 200.90 387.30 Z M 200.90 374.86 L 192.64 374.86 L 192.64 366.85 L 200.90 366.85 L 200.90 374.86 Z M 200.90 362.33 L 192.64 362.33 L 192.64 354.32 L 200.90 354.32 L 200.90 362.33 Z M 200.90 337.33 L 192.64 337.33 L 192.64 329.32 L 200.90 329.32 L 200.90 337.33 Z M 200.90 324.80 L 192.64 324.80 L 192.64 316.79 L 200.90 316.79 L 200.90 324.80 Z M 200.90 312.33 L 192.64 312.33 L 192.64 304.32 L 200.90 304.32 L 200.90 312.33 Z M 200.90 299.89 L 192.64 299.89 L 192.64 291.88 L 200.90 291.88 L 200.90 299.89 Z M 200.90 287.36 L 192.64 287.36 L 192.64 279.35 L 200.90 279.35 L 200.90 287.36 Z" fill="url(#SVGID_2_)" fill-rule="nonzero" group-id="29,43" node-id="383" stroke="none" target-height="216.48999" target-width="58.509995" target-x="162.71" target-y="263.57"></path><path d="M 535.36 437.38 C 535.72 432.73 535.36 280.90 535.36 280.90 L 553.89 280.90 L 553.89 314.61 L 583.39 314.61 L 583.39 385.06 L 600.12 385.06 L 600.12 437.38 L 535.36 437.38 Z" fill="url(#SVGID_3_)" fill-rule="nonzero" group-id="29,43" node-id="385" stroke="none" target-height="156.48001" target-width="64.76001" target-x="535.36" target-y="280.9"></path><path d="M 656.57 369.23 L 656.57 364.38 L 651.57 364.38 L 651.57 322.05 L 639.37 322.05 L 639.37 317.35 L 631.14 317.35 L 631.14 310.44 L 626.85 310.44 L 626.85 290.30 L 623.76 290.30 L 623.76 310.58 L 619.82 310.58 L 619.82 317.49 L 607.62 317.49 L 607.62 328.81 L 600.57 328.81 L 600.57 460.04 L 659.95 460.04 L 659.95 369.22 L 656.57 369.22 Z M 611.06 422.02 L 607.04 422.02 L 607.04 406.78 L 611.06 406.78 L 611.06 422.02 Z M 611.06 403.37 L 607.04 403.37 L 607.04 388.13 L 611.06 388.13 L 611.06 403.37 Z M 611.06 384.72 L 607.04 384.72 L 607.04 369.48 L 611.06 369.48 L 611.06 384.72 Z M 611.06 365.73 L 607.04 365.73 L 607.04 350.50 L 611.06 350.50 L 611.06 365.73 Z M 611.06 346.75 L 607.04 346.75 L 607.04 331.51 L 611.06 331.51 L 611.06 346.75 Z M 619.34 422.02 L 615.32 422.02 L 615.32 406.78 L 619.34 406.78 L 619.34 422.02 Z M 619.34 403.37 L 615.32 403.37 L 615.32 388.13 L 619.34 388.13 L 619.34 403.37 Z M 619.34 384.72 L 615.32 384.72 L 615.32 369.48 L 619.34 369.48 L 619.34 384.72 Z M 619.34 365.73 L 615.32 365.73 L 615.32 350.50 L 619.34 350.50 L 619.34 365.73 Z M 619.34 346.75 L 615.32 346.75 L 615.32 331.51 L 619.34 331.51 L 619.34 346.75 Z M 627.62 422.02 L 623.60 422.02 L 623.60 406.78 L 627.62 406.78 L 627.62 422.02 Z M 627.62 403.37 L 623.60 403.37 L 623.60 388.13 L 627.62 388.13 L 627.62 403.37 Z M 627.62 384.72 L 623.60 384.72 L 623.60 369.48 L 627.62 369.48 L 627.62 384.72 Z M 627.62 365.73 L 623.60 365.73 L 623.60 350.50 L 627.62 350.50 L 627.62 365.73 Z M 627.62 346.75 L 623.60 346.75 L 623.60 331.51 L 627.62 331.51 L 627.62 346.75 Z M 635.90 422.02 L 631.88 422.02 L 631.88 406.78 L 635.90 406.78 L 635.90 422.02 Z M 635.90 403.37 L 631.88 403.37 L 631.88 388.13 L 635.90 388.13 L 635.90 403.37 Z M 635.90 384.72 L 631.88 384.72 L 631.88 369.48 L 635.90 369.48 L 635.90 384.72 Z M 635.90 365.73 L 631.88 365.73 L 631.88 350.50 L 635.90 350.50 L 635.90 365.73 Z M 635.90 346.75 L 631.88 346.75 L 631.88 331.51 L 635.90 331.51 L 635.90 346.75 Z M 644.18 422.02 L 640.16 422.02 L 640.16 406.78 L 644.18 406.78 L 644.18 422.02 Z M 644.18 403.37 L 640.16 403.37 L 640.16 388.13 L 644.18 388.13 L 644.18 403.37 Z M 644.18 384.72 L 640.16 384.72 L 640.16 369.48 L 644.18 369.48 L 644.18 384.72 Z M 644.18 365.73 L 640.16 365.73 L 640.16 350.50 L 644.18 350.50 L 644.18 365.73 Z M 644.18 346.75 L 640.16 346.75 L 640.16 331.51 L 644.18 331.51 L 644.18 346.75 Z" fill="url(#SVGID_4_)" fill-rule="nonzero" group-id="29,43" node-id="387" stroke="none" target-height="169.74005" target-width="59.380005" target-x="600.57" target-y="290.3"></path><path d="M 94.92 502.13 L 94.92 412.58 L 105.18 412.58 L 105.18 366.89 L 140.44 351.62 L 140.44 411.86 L 148.18 411.86 L 148.18 502.13 Z" fill="url(#SVGID_5_)" fill-rule="nonzero" group-id="29,43" node-id="389" stroke="none" target-height="150.50998" target-width="53.259995" target-x="94.92" target-y="351.62003"></path><path d="M 699.69 485.52 L 668.75 485.52 L 668.75 362.39 L 699.69 377.36 Z" fill="url(#SVGID_6_)" fill-rule="nonzero" group-id="29,43" node-id="391" stroke="none" target-height="123.130005" target-width="30.940002" target-x="668.75" target-y="362.38998"></path><path d="M 89.74 188.71 C 89.74 188.71 99.08 163.23 122.04 173.23 C 127.34 167.85 133.90 163.94 142.77 165.70 C 151.64 167.47 157.36 174.11 159.30 178.53 C 162.08 178.40 184.34 179.14 184.34 202.23 C 184.34 225.32 157.40 224.88 155.45 223.05 C 153.05 225.19 141.51 236.80 127.51 223.55 C 124.48 226.14 114.58 237.11 98.93 221.97 C 91.68 225.00 74.45 227.33 71.11 209.54 C 67.77 191.75 84.91 186.74 89.74 188.71 Z" fill="url(#SVGID_7_)" fill-rule="nonzero" group-id="29,43" node-id="393" stroke="none" target-height="73.880005" target-width="116.569984" target-x="67.77" target-y="163.23"></path><path d="M 606.81 151.89 C 606.81 151.89 616.15 126.41 639.11 136.41 C 644.41 131.03 650.97 127.12 659.84 128.88 C 668.71 130.64 674.43 137.29 676.37 141.71 C 679.15 141.58 701.41 142.32 701.41 165.41 C 701.41 188.50 674.47 188.06 672.52 186.23 C 670.12 188.37 658.58 199.98 644.58 186.73 C 641.55 189.32 631.65 200.29 616.00 185.15 C 608.75 188.18 591.52 190.51 588.18 172.72 C 584.84 154.94 601.98 149.92 606.81 151.89 Z" fill="url(#SVGID_8_)" fill-rule="nonzero" group-id="29,43" node-id="395" stroke="none" target-height="73.87999" target-width="116.569885" target-x="584.84" target-y="126.41"></path><path d="M 487.47 206.42 C 487.47 206.42 494.23 187.97 510.85 195.22 C 514.69 191.32 519.43 188.49 525.86 189.77 C 532.28 191.05 536.42 195.86 537.82 199.05 C 539.83 198.96 555.95 199.49 555.95 216.20 C 555.95 232.91 536.45 232.59 535.04 231.27 C 533.30 232.82 524.95 241.22 514.81 231.64 C 512.62 233.51 505.45 241.46 494.13 230.50 C 488.88 232.69 476.41 234.38 473.99 221.50 C 471.57 208.63 483.97 204.99 487.47 206.42 Z" fill="url(#SVGID_9_)" fill-rule="nonzero" group-id="29,43" node-id="397" stroke="none" target-height="53.48999" target-width="84.380005" target-x="471.57" target-y="187.97"></path><path d="M 772.01 575.63 C 772.01 622.32 732.92 667.11 663.35 700.12 C 593.78 733.14 499.42 751.69 401.03 751.69 C 302.64 751.69 208.28 733.14 138.71 700.12 C 69.14 667.11 30.05 622.32 30.05 575.63 C 30.05 528.94 69.14 484.15 138.71 451.14 C 208.28 418.12 302.64 399.57 401.03 399.57 C 499.42 399.57 593.78 418.12 663.35 451.14 C 732.92 484.15 772.01 528.94 772.01 575.63 Z" fill="url(#SVGID_10_)" fill-rule="nonzero" group-id="29,43" node-id="399" stroke="none" target-height="352.12" target-width="741.96" target-x="30.049986" target-y="399.57"></path></g><g node-id="520"><g node-id="523"><path d="M 146.98 554.10 C 146.98 554.10 143.45 559.11 149.35 566.57 C 154.61 573.21 162.92 571.92 165.68 569.79 C 166.53 575.57 173.62 587.75 184.84 580.86 C 195.39 574.39 190.31 564.55 186.94 560.68 C 193.53 558.82 198.44 543.03 183.32 537.58 C 185.56 531.06 185.96 528.11 182.68 522.25 C 179.52 516.61 174.33 515.71 166.05 519.14 L 154.07 524.19 L 146.44 509.95 L 142.36 512.31 L 151.16 525.91 L 139.50 531.76 C 139.50 531.76 129.53 535.66 133.83 546.36 C 137.82 556.28 146.98 554.10 146.98 554.10 Z" fill="url(#SVGID_11_)" fill-rule="nonzero" group-id="29,44,47" node-id="405" stroke="none" target-height="77.80002" target-width="68.91" target-x="129.53" target-y="509.94998"></path><path d="M 126.68 493.39 L 162.74 493.39 C 162.74 493.39 174.39 493.72 176.71 480.41 C 179.26 465.80 168.63 463.79 168.63 463.79 C 168.63 463.79 175.03 460.85 173.64 449.80 C 172.25 438.75 162.52 437.36 158.47 437.87 C 159.13 431.32 160.51 416.49 145.11 416.34 C 130.24 416.19 130.33 431.16 131.44 437.06 C 126.14 437.12 110.13 445.07 121.39 462.51 C 115.26 467.76 112.67 470.79 112.94 478.36 C 113.21 485.93 117.84 493.39 126.68 493.39 Z" fill="url(#SVGID_12_)" fill-rule="nonzero" group-id="29,44,47" node-id="407" stroke="none" target-height="77.53" target-width="69.129974" target-x="110.130005" target-y="416.19"></path><path d="M 161.85 473.15 L 146.47 483.27 L 146.05 473.48 L 155.78 462.02 L 145.90 470.01 L 144.62 440.10 L 143.68 470.20 L 133.30 461.94 L 143.58 473.27 L 143.27 483.34 L 127.45 471.71 L 143.15 486.97 L 142.36 512.32 L 147.72 512.32 L 146.64 487.12 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="29,44,47" node-id="409" stroke="none" target-height="72.22" target-width="34.40001" target-x="127.45" target-y="440.1"></path></g><g node-id="524"><path d="M 669.40 535.80 C 669.40 535.80 666.15 540.42 671.58 547.28 C 676.42 553.40 684.08 552.21 686.62 550.24 C 687.40 555.56 693.94 566.77 704.27 560.44 C 713.98 554.48 709.31 545.42 706.20 541.86 C 712.27 540.15 716.79 525.60 702.87 520.59 C 704.94 514.59 705.31 511.87 702.28 506.48 C 699.37 501.29 694.59 500.45 686.97 503.62 L 675.93 508.27 L 668.90 495.16 L 665.15 497.33 L 673.25 509.85 L 662.52 515.24 C 662.52 515.24 653.34 518.83 657.30 528.69 C 660.96 537.80 669.40 535.80 669.40 535.80 Z" fill="url(#SVGID_13_)" fill-rule="nonzero" group-id="29,44,48" node-id="414" stroke="none" target-height="71.610016" target-width="63.44995" target-x="653.34" target-y="495.16"></path><path d="M 650.71 479.88 L 683.91 479.88 C 683.91 479.88 694.64 480.19 696.77 467.93 C 699.11 454.48 689.33 452.63 689.33 452.63 C 689.33 452.63 695.23 449.92 693.94 439.75 C 692.65 429.58 683.70 428.29 679.97 428.77 C 680.58 422.74 681.85 409.08 667.67 408.94 C 653.98 408.80 654.06 422.58 655.08 428.02 C 650.20 428.07 635.45 435.39 645.83 451.46 C 640.19 456.29 637.80 459.09 638.05 466.05 C 638.30 473.01 642.57 479.88 650.71 479.88 Z" fill="url(#SVGID_14_)" fill-rule="nonzero" group-id="29,44,48" node-id="416" stroke="none" target-height="71.390045" target-width="63.659912" target-x="635.45" target-y="408.79996"></path><path d="M 683.10 461.25 L 668.93 470.57 L 668.55 461.56 L 677.50 451.00 L 668.41 458.36 L 667.23 430.82 L 666.36 458.54 L 656.81 450.93 L 666.27 461.36 L 665.98 470.63 L 651.42 459.93 L 665.88 473.98 L 665.15 497.32 L 670.08 497.32 L 669.09 474.12 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="29,44,48" node-id="418" stroke="none" target-height="66.49997" target-width="31.679993" target-x="651.42" target-y="430.82004"></path></g><g node-id="525"><path d="M 229.91 445.60 C 229.91 445.60 228.16 448.08 231.08 451.77 C 233.68 455.06 237.79 454.42 239.16 453.36 C 239.58 456.22 243.09 462.24 248.64 458.84 C 253.86 455.64 251.35 450.77 249.68 448.86 C 252.94 447.94 255.37 440.13 247.89 437.44 C 249.00 434.22 249.20 432.76 247.57 429.86 C 246.01 427.07 243.44 426.62 239.35 428.32 L 233.42 430.82 L 229.65 423.78 L 227.63 424.95 L 231.98 431.67 L 226.21 434.56 C 226.21 434.56 221.28 436.49 223.41 441.78 C 225.38 446.68 229.91 445.60 229.91 445.60 Z" fill="url(#SVGID_15_)" fill-rule="nonzero" group-id="29,44,49" node-id="423" stroke="none" target-height="38.460022" target-width="34.09001" target-x="221.27998" target-y="423.77997"></path><path d="M 219.87 415.57 L 237.70 415.57 C 237.70 415.57 243.46 415.73 244.61 409.15 C 245.87 401.92 240.61 400.93 240.61 400.93 C 240.61 400.93 243.78 399.47 243.09 394.01 C 242.40 388.55 237.59 387.86 235.59 388.11 C 235.92 384.87 236.60 377.53 228.98 377.46 C 221.62 377.39 221.67 384.79 222.22 387.71 C 219.60 387.74 211.68 391.67 217.25 400.30 C 214.22 402.89 212.93 404.40 213.07 408.14 C 213.21 411.88 215.50 415.57 219.87 415.57 Z" fill="url(#SVGID_16_)" fill-rule="nonzero" group-id="29,44,49" node-id="425" stroke="none" target-height="38.339996" target-width="34.190002" target-x="211.68" target-y="377.38998"></path><path d="M 237.27 405.56 L 229.66 410.56 L 229.45 405.72 L 234.26 400.05 L 229.38 404.00 L 228.74 389.21 L 228.28 404.10 L 223.15 400.01 L 228.23 405.62 L 228.07 410.60 L 220.25 404.85 L 228.02 412.39 L 227.63 424.93 L 230.27 424.93 L 229.74 412.47 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="29,44,49" node-id="427" stroke="none" target-height="35.71997" target-width="17.019974" target-x="220.25002" target-y="389.21"></path></g></g><g node-id="521"><path d="M 501.79 460.55 L 707.80 598.10 L 430.21 701.42 L 296.39 450.59 Z" fill="url(#SVGID_17_)" fill-rule="nonzero" group-id="29,45" node-id="433" stroke="none" target-height="250.82999" target-width="411.41003" target-x="296.39" target-y="450.59"></path><path d="M 529.82 280.63 C 494.70 276.20 482.72 246.88 480.45 232.03 C 479.95 228.76 477.45 226.17 474.21 225.52 C 445.05 219.70 408.77 220.42 404.56 220.53 C 400.36 220.42 364.07 219.70 334.91 225.52 C 331.67 226.17 329.17 228.76 328.67 232.03 C 326.40 246.88 314.42 276.20 279.30 280.63 C 275.36 281.13 272.38 284.44 272.37 288.42 C 272.33 325.14 271.98 313.34 271.98 343.94 C 271.98 376.40 281.76 442.50 308.74 468.32 C 334.86 493.31 363.30 511.94 402.58 529.90 L 402.58 529.90 C 403.79 530.52 405.22 530.53 406.44 529.94 L 406.51 529.90 C 445.78 511.94 474.23 493.31 500.35 468.32 C 527.34 442.51 537.11 376.41 537.11 343.94 C 537.11 313.34 536.76 325.14 536.72 288.42 C 536.74 284.45 533.76 281.13 529.82 280.63 Z" fill="url(#SVGID_18_)" fill-rule="nonzero" group-id="29,45" node-id="435" stroke="none" target-height="310.83002" target-width="265.12997" target-x="271.98" target-y="219.7"></path><path d="M 508.30 296.92 C 479.22 293.25 469.29 268.97 467.41 256.67 C 467.00 253.96 464.93 251.82 462.24 251.28 C 438.09 246.46 408.04 247.06 404.56 247.15 C 401.08 247.06 371.03 246.46 346.88 251.28 C 344.19 251.82 342.13 253.96 341.71 256.67 C 339.83 268.97 329.91 293.25 300.82 296.92 C 297.55 297.33 295.09 300.08 295.08 303.37 C 295.05 333.78 294.76 324.01 294.76 349.35 C 294.76 376.23 302.86 430.98 325.21 452.35 C 346.84 473.04 370.40 488.47 402.92 503.35 L 402.92 503.35 C 403.92 503.86 405.10 503.87 406.11 503.38 L 406.17 503.35 C 438.70 488.48 462.25 473.05 483.88 452.35 C 506.23 430.97 514.33 376.23 514.33 349.35 C 514.33 324.01 514.04 333.78 514.01 303.37 C 514.03 300.08 511.56 297.33 508.30 296.92 Z" fill="url(#SVGID_19_)" fill-rule="nonzero" group-id="29,45" node-id="437" stroke="none" target-height="257.41003" target-width="219.57" target-x="294.76" target-y="246.46"></path><path d="M 439.87 352.95 L 369.26 352.95 C 365.68 352.95 362.78 355.85 362.78 359.43 L 362.78 414.54 C 362.78 418.12 365.68 421.02 369.26 421.02 L 439.87 421.02 C 443.45 421.02 446.35 418.12 446.35 414.54 L 446.35 359.43 C 446.35 355.85 443.45 352.95 439.87 352.95 Z M 408.54 386.25 L 409.40 405.51 L 399.42 405.51 L 400.25 386.17 C 397.91 384.74 396.34 382.18 396.34 379.23 C 396.34 374.74 399.98 371.11 404.46 371.11 C 408.95 371.11 412.58 374.75 412.58 379.23 C 412.58 382.23 410.95 384.84 408.54 386.25 Z" fill="url(#SVGID_20_)" fill-rule="nonzero" group-id="29,45" node-id="439" stroke="none" target-height="68.06998" target-width="83.56998" target-x="362.78003" target-y="352.95"></path><g node-id="526"><path d="M 438.85 345.13 L 424.43 345.13 L 424.43 337.80 C 424.43 326.85 415.52 317.93 404.56 317.93 C 393.61 317.93 384.70 326.84 384.70 337.80 L 384.70 345.13 L 370.28 345.13 L 370.28 337.80 C 370.28 318.89 385.66 303.51 404.57 303.51 C 423.48 303.51 438.86 318.89 438.86 337.80 L 438.86 345.13 Z" fill="url(#SVGID_21_)" fill-rule="nonzero" group-id="29,45,50" node-id="443" stroke="none" target-height="41.620026" target-width="68.57999" target-x="370.28" target-y="303.51"></path></g></g><g node-id="522"><path d="M 316.32 553.66 L 363.58 651.72 L 306.82 662.76 L 272.14 555.53 Z" fill="url(#SVGID_22_)" fill-rule="nonzero" group-id="29,46" node-id="449" stroke="none" target-height="109.10004" target-width="91.44" target-x="272.14" target-y="553.66"></path><path d="M 315.36 558.00 L 275.68 558.00 C 273.61 558.00 271.93 556.32 271.93 554.25 L 271.93 541.73 C 271.93 539.66 273.61 537.98 275.68 537.98 L 315.36 537.98 C 317.43 537.98 319.11 539.66 319.11 541.73 L 319.11 554.25 C 319.11 556.32 317.43 558.00 315.36 558.00 Z" fill="url(#SVGID_23_)" fill-rule="nonzero" group-id="29,46" node-id="451" stroke="none" target-height="20.02002" target-width="47.179993" target-x="271.93" target-y="537.98"></path><path d="M 303.94 555.61 C 303.87 555.81 303.72 555.99 303.52 556.11 C 303.09 556.36 302.85 556.77 301.89 556.53 C 300.43 556.17 300.19 555.75 299.95 554.97 C 299.21 555.96 299.92 557.19 299.47 558.69 C 299.01 560.19 298.08 562.57 300.70 564.15 C 303.32 565.73 305.77 563.39 305.90 561.33 C 306.03 559.27 304.18 556.61 304.48 555.77 C 304.60 555.16 304.32 554.63 304.32 554.63 C 304.32 554.63 304.07 555.23 303.94 555.61 Z" fill="#f8b62d" fill-rule="nonzero" group-id="29,46" node-id="453" stroke="none" target-height="11.099976" target-width="7.950012" target-x="298.08" target-y="554.63"></path><path d="M 305.68 559.73 C 305.68 559.73 306.13 562.81 304.14 563.74 C 303.60 564.03 300.87 564.73 299.13 562.44 C 299.26 562.85 299.84 564.26 301.52 564.82 C 302.29 564.98 303.87 565.21 305.25 563.80 C 306.63 562.39 305.68 559.73 305.68 559.73 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="29,46" node-id="455" stroke="none" target-height="5.4800415" target-width="7.5" target-x="299.13" target-y="559.73"></path><path d="M 287.83 555.43 C 287.90 555.64 288.04 555.82 288.24 555.94 C 288.66 556.20 288.89 556.61 289.86 556.40 C 291.32 556.07 291.58 555.66 291.82 554.88 C 292.55 555.89 292.68 557.00 293.11 558.51 C 293.54 560.02 295.30 562.32 292.65 563.84 C 290.00 565.36 287.23 562.78 287.14 560.72 C 287.05 558.65 287.57 556.43 287.29 555.58 C 287.18 554.97 287.47 554.44 287.47 554.44 C 287.47 554.44 287.70 555.04 287.83 555.43 Z" fill="#f8b62d" fill-rule="nonzero" group-id="29,46" node-id="457" stroke="none" target-height="10.919983" target-width="8.25" target-x="287.05" target-y="554.44"></path><path d="M 287.15 559.37 C 287.15 559.37 287.36 562.43 289.21 563.35 C 289.75 563.65 292.19 564.67 293.97 562.41 C 293.81 562.77 293.51 563.96 291.82 564.48 C 291.05 564.62 289.47 564.82 288.11 563.38 C 286.75 561.93 287.15 559.37 287.15 559.37 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="29,46" node-id="459" stroke="none" target-height="5.450012" target-width="7.220001" target-x="286.75" target-y="559.37"></path><path d="M 275.39 510.26 C 275.92 510.34 284.24 511.70 284.24 511.70 C 284.24 511.70 284.92 521.20 286.01 523.22 C 287.10 525.24 290.13 526.27 290.13 526.27 L 307.62 526.44 C 307.62 526.44 308.93 519.10 308.24 511.97 C 311.16 511.76 317.01 510.56 317.01 510.56 C 317.01 510.56 314.65 492.78 295.39 492.78 C 276.13 492.78 275.39 510.26 275.39 510.26 Z" fill="url(#SVGID_24_)" fill-rule="nonzero" group-id="29,46" node-id="461" stroke="none" target-height="33.660004" target-width="41.619995" target-x="275.39" target-y="492.78"></path><path d="M 313.05 522.20 C 313.05 522.20 314.67 538.49 302.79 539.81 C 301.98 539.87 297.73 539.59 296.42 538.15 C 295.21 538.81 291.92 541.20 286.06 538.09 C 282.72 532.05 282.42 524.19 283.94 522.52 C 285.45 520.87 313.05 522.20 313.05 522.20 Z" fill="#036eb8" fill-rule="nonzero" group-id="29,46" node-id="463" stroke="none" target-height="20.330017" target-width="32.25" target-x="282.42" target-y="520.87"></path><path d="M 281.86 522.42 C 281.86 522.42 280.09 523.97 280.65 528.46 C 281.21 532.95 287.93 556.77 287.93 556.77 L 292.18 556.38 C 292.18 556.38 292.53 525.69 291.37 523.20 C 290.20 520.70 283.64 521.06 281.86 522.42 Z" fill="url(#SVGID_25_)" fill-rule="nonzero" group-id="29,46" node-id="465" stroke="none" target-height="36.070007" target-width="12.440002" target-x="280.09" target-y="520.7"></path><path d="M 310.17 522.42 C 310.17 522.42 311.94 523.97 311.38 528.46 C 310.82 532.95 304.10 556.77 304.10 556.77 L 299.85 556.38 C 299.85 556.38 299.50 525.69 300.66 523.20 C 301.82 520.70 308.38 521.06 310.17 522.42 Z" fill="url(#SVGID_26_)" fill-rule="nonzero" group-id="29,46" node-id="467" stroke="none" target-height="36.070007" target-width="12.440002" target-x="299.5" target-y="520.7"></path><path d="M 277.46 510.50 C 277.46 510.50 279.85 510.79 283.95 511.56 C 283.88 512.16 282.93 516.08 283.61 516.21 C 289.34 516.27 299.89 514.84 300.82 514.96 C 302.53 515.18 306.64 511.87 310.23 515.50 C 313.34 518.52 310.33 520.15 310.33 520.15 L 293.77 520.45 C 293.77 520.45 278.15 526.61 276.39 520.79 C 275.76 518.70 277.46 510.50 277.46 510.50 Z" fill="url(#SVGID_27_)" fill-rule="nonzero" group-id="29,46" node-id="469" stroke="none" target-height="16.109985" target-width="37.579987" target-x="275.76" target-y="510.5"></path><path d="M 316.14 510.61 C 316.14 510.61 319.51 522.49 313.30 523.86 C 307.08 525.23 291.88 524.40 290.51 524.15 C 289.14 523.90 288.23 523.69 287.12 524.36 C 286.01 525.02 284.10 524.94 283.78 525.04 C 283.46 525.14 282.20 527.01 281.85 527.05 C 281.50 527.09 279.70 526.05 280.08 523.78 C 280.46 521.51 282.03 519.94 284.01 519.76 C 285.99 519.58 286.08 519.95 287.45 519.43 C 288.82 518.90 308.36 515.56 308.78 515.47 C 309.21 515.39 309.66 515.00 309.46 514.20 C 309.26 513.40 308.63 511.76 308.63 511.76 L 316.14 510.61 Z" fill="url(#SVGID_28_)" fill-rule="nonzero" group-id="29,46" node-id="471" stroke="none" target-height="16.480042" target-width="39.809998" target-x="279.7" target-y="510.61"></path><path d="M 291.52 505.08 C 291.52 505.08 292.56 510.18 296.10 510.18 C 299.64 510.18 300.68 505.67 300.55 505.33 C 300.42 505.00 297.97 503.97 296.03 503.97 C 294.07 503.98 291.52 505.08 291.52 505.08 Z" fill="#ffbe92" fill-rule="nonzero" group-id="29,46" node-id="473" stroke="none" target-height="6.2099915" target-width="9.160004" target-x="291.52" target-y="503.97"></path><path d="M 296.23 506.50 C 296.23 506.50 297.03 507.51 298.18 507.39 C 299.41 507.26 299.10 506.49 299.95 506.31 C 300.80 506.13 301.33 506.18 301.12 504.60 C 301.00 503.72 301.10 503.73 301.34 503.31 C 301.49 503.06 302.52 502.21 301.83 501.13 C 301.16 500.07 300.96 500.47 301.14 499.45 C 301.32 498.44 300.93 497.54 300.31 497.24 C 299.71 496.94 299.86 496.40 299.98 496.08 C 300.09 495.77 299.76 494.77 298.73 495.14 C 297.70 495.51 296.75 495.22 295.95 494.86 C 294.19 494.07 292.16 494.89 292.35 496.49 C 292.54 498.12 291.59 497.79 290.97 498.38 C 290.36 498.97 290.54 499.98 290.85 500.98 C 291.03 501.55 291.28 502.17 290.55 503.04 C 289.79 503.94 291.06 506.35 291.91 506.26 C 292.78 506.15 293.93 508.46 296.23 506.50 Z" fill="#171c61" fill-rule="nonzero" group-id="29,46" node-id="475" stroke="none" target-height="14.389984" target-width="12.72998" target-x="289.79" target-y="494.07"></path></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg height="800" node-id="1" sillyvg="true" template-height="800" template-width="800" version="1.1" viewBox="0 0 800 800" width="800" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs node-id="172"><linearGradient gradientUnits="objectBoundingBox" id="SVGID_1_" node-id="11" spreadMethod="pad" x1="254.8268" x2="254.8268" y1="429.5166" y2="332.7283"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_2_" node-id="15" spreadMethod="pad" x1="190.2099" x2="190.2099" y1="487.5085" y2="271.0195"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_3_" node-id="19" spreadMethod="pad" x1="565.9915" x2="565.9915" y1="444.8296" y2="288.3488"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_4_" node-id="23" spreadMethod="pad" x1="628.5163" x2="628.5163" y1="467.4996" y2="297.759"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_5_" node-id="27" spreadMethod="pad" x1="119.8037" x2="119.8037" y1="509.5781" y2="359.0647"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_6_" node-id="31" spreadMethod="pad" x1="682.4769" x2="682.4769" y1="492.9727" y2="369.8405"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_7_" node-id="35" spreadMethod="pad" x1="125.7674" x2="125.7674" y1="237.2708" y2="172.7296"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_8_" node-id="39" spreadMethod="pad" x1="642.8358" x2="642.8358" y1="200.4504" y2="135.9091"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_9_" node-id="43" spreadMethod="pad" x1="513.0649" x2="513.0649" y1="243.6239" y2="196.9066"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_10_" node-id="47" spreadMethod="pad" x1="399.2822" x2="399.2822" y1="759.1487" y2="407.0198"><stop offset="0.4065" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dae4ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_11_" node-id="53" spreadMethod="pad" x1="190.2117" x2="138.7755" y1="582.6045" y2="521.3052"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_12_" node-id="57" spreadMethod="pad" x1="111.1639" x2="175.3508" y1="462.3141" y2="462.3141"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_13_" node-id="63" spreadMethod="pad" x1="709.0739" x2="661.7084" y1="562.6319" y2="506.184"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_14_" node-id="67" spreadMethod="pad" x1="636.2821" x2="695.389" y1="451.8617" y2="451.8617"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_15_" node-id="73" spreadMethod="pad" x1="250.4113" x2="224.97" y1="463.4612" y2="433.1414"><stop offset="0.0000001438503" stop-color="#eaeff6"></stop><stop offset="1" stop-color="#cddae9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_16_" node-id="77" spreadMethod="pad" x1="211.3128" x2="243.0607" y1="403.9634" y2="403.9634"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_17_" node-id="83" spreadMethod="pad" x1="514.4612" x2="468.0024" y1="681.2097" y2="442.1996"><stop offset="0.1887" stop-color="#ffffff"></stop><stop offset="1" stop-color="#bbcbe0"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_18_" node-id="88" spreadMethod="pad" x1="407.204" x2="407.204" y1="426.4307" y2="217.4294"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_19_" node-id="92" spreadMethod="pad" x1="557.6683" x2="283.1236" y1="353.4067" y2="352.947"><stop offset="0.0000005327789" stop-color="#cedaea"></stop><stop offset="1" stop-color="#ffffff"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_20_" node-id="96" spreadMethod="pad" x1="408.6754" x2="408.6754" y1="248.8662" y2="470.8191"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_21_" node-id="101" spreadMethod="pad" x1="318.7617" x2="502.5953" y1="366.5031" y2="366.5031"><stop offset="0.0000004424263" stop-color="#f7fafb"></stop><stop offset="1" stop-color="#d5e0ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_22_" node-id="105" spreadMethod="pad" x1="407.204" x2="407.204" y1="487.3692" y2="313.0998"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_23_" node-id="109" spreadMethod="pad" x1="407.204" x2="407.204" y1="387.2774" y2="487.3692"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_24_" node-id="116" spreadMethod="pad" x1="444.3539" x2="469.8678" y1="393.6825" y2="393.6825"><stop offset="0.0000004424263" stop-color="#f7fafb"></stop><stop offset="1" stop-color="#cfdbea"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_25_" node-id="126" spreadMethod="pad" x1="473.4745" x2="450.7563" y1="548.1612" y2="485.7436"><stop offset="0" stop-color="#78c8ff"></stop><stop offset="0.6903" stop-color="#2a80e2"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_26_" node-id="131" spreadMethod="pad" x1="460.3901" x2="460.3901" y1="492.8961" y2="443.6975"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient></defs><g node-id="440"><g node-id="477"><path d="M 269.28 336.13 L 269.28 332.72 L 239.78 332.72 L 239.78 336.68 L 233.30 336.68 L 233.30 429.51 L 276.35 429.51 L 276.35 336.13 L 269.28 336.13 Z M 272.62 418.87 L 236.58 418.87 L 236.58 416.12 L 272.62 416.12 L 272.62 418.87 Z M 272.62 406.19 L 236.58 406.19 L 236.58 403.44 L 272.62 403.44 L 272.62 406.19 Z M 272.62 393.52 L 236.58 393.52 L 236.58 390.77 L 272.62 390.77 L 272.62 393.52 Z M 272.62 381.18 L 236.58 381.18 L 236.58 378.43 L 272.62 378.43 L 272.62 381.18 Z M 272.62 368.86 L 236.58 368.86 L 236.58 366.11 L 272.62 366.11 L 272.62 368.86 Z M 272.62 356.19 L 236.58 356.19 L 236.58 353.44 L 272.62 353.44 L 272.62 356.19 Z M 272.62 343.84 L 236.58 343.84 L 236.58 341.09 L 272.62 341.09 L 272.62 343.84 Z" fill="url(#SVGID_1_)" fill-rule="nonzero" group-id="6,43" node-id="338" stroke="none" target-height="96.79001" target-width="43.050003" target-x="233.3" target-y="332.72"></path><path d="M 211.30 387.95 L 211.30 279.76 L 178.55 279.76 L 178.55 271.02 L 164.69 271.02 L 164.69 324.35 L 160.96 324.35 L 160.96 487.51 L 219.47 487.51 L 219.47 387.95 L 211.30 387.95 Z M 186.80 419.75 L 178.54 419.75 L 178.54 411.74 L 186.80 411.74 L 186.80 419.75 Z M 186.80 407.23 L 178.54 407.23 L 178.54 399.22 L 186.80 399.22 L 186.80 407.23 Z M 186.80 394.75 L 178.54 394.75 L 178.54 386.74 L 186.80 386.74 L 186.80 394.75 Z M 186.80 382.31 L 178.54 382.31 L 178.54 374.30 L 186.80 374.30 L 186.80 382.31 Z M 186.80 369.78 L 178.54 369.78 L 178.54 361.77 L 186.80 361.77 L 186.80 369.78 Z M 186.80 344.78 L 178.54 344.78 L 178.54 336.77 L 186.80 336.77 L 186.80 344.78 Z M 186.80 332.25 L 178.54 332.25 L 178.54 324.24 L 186.80 324.24 L 186.80 332.25 Z M 186.80 319.78 L 178.54 319.78 L 178.54 311.77 L 186.80 311.77 L 186.80 319.78 Z M 186.80 307.34 L 178.54 307.34 L 178.54 299.33 L 186.80 299.33 L 186.80 307.34 Z M 186.80 294.81 L 178.54 294.81 L 178.54 286.80 L 186.80 286.80 L 186.80 294.81 Z M 199.15 419.75 L 190.89 419.75 L 190.89 411.74 L 199.15 411.74 L 199.15 419.75 Z M 199.15 407.23 L 190.89 407.23 L 190.89 399.22 L 199.15 399.22 L 199.15 407.23 Z M 199.15 394.75 L 190.89 394.75 L 190.89 386.74 L 199.15 386.74 L 199.15 394.75 Z M 199.15 382.31 L 190.89 382.31 L 190.89 374.30 L 199.15 374.30 L 199.15 382.31 Z M 199.15 369.78 L 190.89 369.78 L 190.89 361.77 L 199.15 361.77 L 199.15 369.78 Z M 199.15 344.78 L 190.89 344.78 L 190.89 336.77 L 199.15 336.77 L 199.15 344.78 Z M 199.15 332.25 L 190.89 332.25 L 190.89 324.24 L 199.15 324.24 L 199.15 332.25 Z M 199.15 319.78 L 190.89 319.78 L 190.89 311.77 L 199.15 311.77 L 199.15 319.78 Z M 199.15 307.34 L 190.89 307.34 L 190.89 299.33 L 199.15 299.33 L 199.15 307.34 Z M 199.15 294.81 L 190.89 294.81 L 190.89 286.80 L 199.15 286.80 L 199.15 294.81 Z" fill="url(#SVGID_2_)" fill-rule="nonzero" group-id="6,43" node-id="340" stroke="none" target-height="216.49002" target-width="58.509995" target-x="160.96" target-y="271.02"></path><path d="M 533.61 444.83 C 533.97 440.18 533.61 288.35 533.61 288.35 L 552.14 288.35 L 552.14 322.06 L 581.64 322.06 L 581.64 392.51 L 598.37 392.51 L 598.37 444.83 L 533.61 444.83 Z" fill="url(#SVGID_3_)" fill-rule="nonzero" group-id="6,43" node-id="342" stroke="none" target-height="156.47998" target-width="64.76001" target-x="533.61" target-y="288.35"></path><path d="M 654.82 376.68 L 654.82 371.83 L 649.82 371.83 L 649.82 329.50 L 637.62 329.50 L 637.62 324.80 L 629.39 324.80 L 629.39 317.89 L 625.10 317.89 L 625.10 297.75 L 622.01 297.75 L 622.01 318.03 L 618.07 318.03 L 618.07 324.94 L 605.87 324.94 L 605.87 336.26 L 598.82 336.26 L 598.82 467.50 L 658.20 467.50 L 658.20 376.68 L 654.82 376.68 Z M 609.31 429.47 L 605.29 429.47 L 605.29 414.23 L 609.31 414.23 L 609.31 429.47 Z M 609.31 410.82 L 605.29 410.82 L 605.29 395.58 L 609.31 395.58 L 609.31 410.82 Z M 609.31 392.17 L 605.29 392.17 L 605.29 376.93 L 609.31 376.93 L 609.31 392.17 Z M 609.31 373.18 L 605.29 373.18 L 605.29 357.94 L 609.31 357.94 L 609.31 373.18 Z M 609.31 354.20 L 605.29 354.20 L 605.29 338.96 L 609.31 338.96 L 609.31 354.20 Z M 617.59 429.47 L 613.57 429.47 L 613.57 414.23 L 617.59 414.23 L 617.59 429.47 Z M 617.59 410.82 L 613.57 410.82 L 613.57 395.58 L 617.59 395.58 L 617.59 410.82 Z M 617.59 392.17 L 613.57 392.17 L 613.57 376.93 L 617.59 376.93 L 617.59 392.17 Z M 617.59 373.18 L 613.57 373.18 L 613.57 357.94 L 617.59 357.94 L 617.59 373.18 Z M 617.59 354.20 L 613.57 354.20 L 613.57 338.96 L 617.59 338.96 L 617.59 354.20 Z M 625.87 429.47 L 621.85 429.47 L 621.85 414.23 L 625.87 414.23 L 625.87 429.47 Z M 625.87 410.82 L 621.85 410.82 L 621.85 395.58 L 625.87 395.58 L 625.87 410.82 Z M 625.87 392.17 L 621.85 392.17 L 621.85 376.93 L 625.87 376.93 L 625.87 392.17 Z M 625.87 373.18 L 621.85 373.18 L 621.85 357.94 L 625.87 357.94 L 625.87 373.18 Z M 625.87 354.20 L 621.85 354.20 L 621.85 338.96 L 625.87 338.96 L 625.87 354.20 Z M 634.15 429.47 L 630.13 429.47 L 630.13 414.23 L 634.15 414.23 L 634.15 429.47 Z M 634.15 410.82 L 630.13 410.82 L 630.13 395.58 L 634.15 395.58 L 634.15 410.82 Z M 634.15 392.17 L 630.13 392.17 L 630.13 376.93 L 634.15 376.93 L 634.15 392.17 Z M 634.15 373.18 L 630.13 373.18 L 630.13 357.94 L 634.15 357.94 L 634.15 373.18 Z M 634.15 354.20 L 630.13 354.20 L 630.13 338.96 L 634.15 338.96 L 634.15 354.20 Z M 642.43 429.47 L 638.41 429.47 L 638.41 414.23 L 642.43 414.23 L 642.43 429.47 Z M 642.43 410.82 L 638.41 410.82 L 638.41 395.58 L 642.43 395.58 L 642.43 410.82 Z M 642.43 392.17 L 638.41 392.17 L 638.41 376.93 L 642.43 376.93 L 642.43 392.17 Z M 642.43 373.18 L 638.41 373.18 L 638.41 357.94 L 642.43 357.94 L 642.43 373.18 Z M 642.43 354.20 L 638.41 354.20 L 638.41 338.96 L 642.43 338.96 L 642.43 354.20 Z" fill="url(#SVGID_4_)" fill-rule="nonzero" group-id="6,43" node-id="344" stroke="none" target-height="169.75" target-width="59.380005" target-x="598.82" target-y="297.75"></path><path d="M 93.18 509.58 L 93.18 420.03 L 103.43 420.03 L 103.43 374.34 L 138.69 359.06 L 138.69 419.31 L 146.43 419.31 L 146.43 509.58 Z" fill="url(#SVGID_5_)" fill-rule="nonzero" group-id="6,43" node-id="346" stroke="none" target-height="150.51999" target-width="53.25" target-x="93.17999" target-y="359.06"></path><path d="M 697.95 492.97 L 667.01 492.97 L 667.01 369.84 L 697.95 384.81 Z" fill="url(#SVGID_6_)" fill-rule="nonzero" group-id="6,43" node-id="348" stroke="none" target-height="123.129974" target-width="30.940063" target-x="667.01" target-y="369.84"></path><path d="M 88.00 196.16 C 88.00 196.16 97.34 170.68 120.30 180.68 C 125.60 175.30 132.16 171.39 141.03 173.15 C 149.90 174.92 155.62 181.56 157.56 185.98 C 160.34 185.85 182.60 186.59 182.60 209.68 C 182.60 232.77 155.66 232.33 153.71 230.50 C 151.31 232.64 139.77 244.25 125.77 231.00 C 122.74 233.59 112.84 244.56 97.19 229.42 C 89.94 232.45 72.71 234.78 69.37 216.99 C 66.02 199.21 83.16 194.19 88.00 196.16 Z" fill="url(#SVGID_7_)" fill-rule="nonzero" group-id="6,43" node-id="350" stroke="none" target-height="73.880005" target-width="116.58001" target-x="66.02" target-y="170.68"></path><path d="M 605.07 159.34 C 605.07 159.34 614.41 133.86 637.37 143.86 C 642.67 138.48 649.23 134.57 658.10 136.33 C 666.97 138.10 672.69 144.74 674.63 149.16 C 677.41 149.03 699.67 149.77 699.67 172.86 C 699.67 195.95 672.73 195.51 670.78 193.68 C 668.38 195.82 656.84 207.43 642.84 194.18 C 639.81 196.77 629.91 207.74 614.26 192.60 C 607.01 195.63 589.78 197.96 586.44 180.17 C 583.09 162.39 600.23 157.37 605.07 159.34 Z" fill="url(#SVGID_8_)" fill-rule="nonzero" group-id="6,43" node-id="352" stroke="none" target-height="73.880005" target-width="116.579956" target-x="583.09" target-y="133.86"></path><path d="M 485.73 213.87 C 485.73 213.87 492.49 195.42 509.11 202.67 C 512.95 198.77 517.69 195.94 524.12 197.22 C 530.54 198.50 534.68 203.31 536.08 206.50 C 538.09 206.41 554.21 206.94 554.21 223.65 C 554.21 240.36 534.71 240.04 533.30 238.72 C 531.56 240.27 523.21 248.67 513.07 239.09 C 510.88 240.96 503.71 248.91 492.39 237.95 C 487.14 240.14 474.67 241.83 472.25 228.95 C 469.82 216.08 482.22 212.44 485.73 213.87 Z" fill="url(#SVGID_9_)" fill-rule="nonzero" group-id="6,43" node-id="354" stroke="none" target-height="53.490005" target-width="84.390015" target-x="469.82" target-y="195.42"></path><path d="M 770.26 583.08 C 770.26 629.77 731.17 674.56 661.60 707.57 C 592.03 740.59 497.67 759.14 399.28 759.14 C 300.89 759.14 206.53 740.59 136.96 707.57 C 67.39 674.56 28.30 629.77 28.30 583.08 C 28.30 536.39 67.39 491.60 136.96 458.59 C 206.53 425.57 300.89 407.02 399.28 407.02 C 497.67 407.02 592.03 425.57 661.60 458.59 C 731.17 491.60 770.26 536.39 770.26 583.08 Z" fill="url(#SVGID_10_)" fill-rule="nonzero" group-id="6,43" node-id="356" stroke="none" target-height="352.12" target-width="741.96" target-x="28.299988" target-y="407.02002"></path></g><g node-id="478"><g node-id="481"><path d="M 145.23 561.55 C 145.23 561.55 141.70 566.56 147.60 574.02 C 152.86 580.66 161.17 579.37 163.93 577.24 C 164.78 583.02 171.87 595.20 183.09 588.31 C 193.64 581.84 188.56 572.00 185.19 568.13 C 191.78 566.27 196.69 550.48 181.57 545.03 C 183.81 538.51 184.21 535.56 180.93 529.70 C 177.77 524.06 172.58 523.16 164.30 526.59 L 152.32 531.64 L 144.69 517.40 L 140.61 519.76 L 149.41 533.36 L 137.75 539.21 C 137.75 539.21 127.78 543.11 132.08 553.81 C 136.07 563.73 145.23 561.55 145.23 561.55 Z" fill="url(#SVGID_11_)" fill-rule="nonzero" group-id="6,44,47" node-id="362" stroke="none" target-height="77.79999" target-width="68.909996" target-x="127.78001" target-y="517.4"></path><path d="M 124.93 500.84 L 160.99 500.84 C 160.99 500.84 172.64 501.17 174.96 487.86 C 177.51 473.25 166.88 471.24 166.88 471.24 C 166.88 471.24 173.28 468.30 171.89 457.25 C 170.50 446.20 160.77 444.81 156.72 445.32 C 157.38 438.77 158.76 423.94 143.36 423.79 C 128.49 423.64 128.58 438.61 129.69 444.51 C 124.39 444.57 108.38 452.52 119.64 469.96 C 113.51 475.21 110.92 478.24 111.19 485.81 C 111.46 493.38 116.10 500.84 124.93 500.84 Z" fill="url(#SVGID_12_)" fill-rule="nonzero" group-id="6,44,47" node-id="364" stroke="none" target-height="77.53" target-width="69.13" target-x="108.38" target-y="423.64"></path><path d="M 160.10 480.60 L 144.73 490.72 L 144.31 480.93 L 154.03 469.47 L 144.16 477.46 L 142.88 447.55 L 141.93 477.65 L 131.56 469.39 L 141.84 480.72 L 141.52 490.79 L 125.71 479.16 L 141.41 494.42 L 140.61 519.77 L 145.97 519.77 L 144.89 494.57 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="6,44,47" node-id="366" stroke="none" target-height="72.22006" target-width="34.390007" target-x="125.71" target-y="447.54996"></path></g><g node-id="482"><path d="M 667.65 543.25 C 667.65 543.25 664.40 547.87 669.83 554.73 C 674.67 560.85 682.33 559.66 684.87 557.69 C 685.65 563.01 692.19 574.22 702.52 567.89 C 712.23 561.93 707.56 552.87 704.45 549.31 C 710.52 547.60 715.04 533.05 701.12 528.04 C 703.19 522.04 703.56 519.32 700.53 513.93 C 697.62 508.74 692.84 507.90 685.22 511.07 L 674.18 515.72 L 667.15 502.61 L 663.40 504.78 L 671.50 517.30 L 660.77 522.69 C 660.77 522.69 651.59 526.28 655.55 536.14 C 659.22 545.25 667.65 543.25 667.65 543.25 Z" fill="url(#SVGID_13_)" fill-rule="nonzero" group-id="6,44,48" node-id="371" stroke="none" target-height="71.609955" target-width="63.44995" target-x="651.59" target-y="502.61002"></path><path d="M 648.96 487.33 L 682.16 487.33 C 682.16 487.33 692.89 487.64 695.02 475.38 C 697.36 461.93 687.58 460.08 687.58 460.08 C 687.58 460.08 693.48 457.37 692.19 447.20 C 690.90 437.03 681.95 435.74 678.22 436.22 C 678.83 430.19 680.10 416.53 665.92 416.39 C 652.23 416.25 652.31 430.03 653.33 435.47 C 648.45 435.52 633.70 442.84 644.08 458.91 C 638.44 463.74 636.05 466.54 636.30 473.50 C 636.55 480.47 640.83 487.33 648.96 487.33 Z" fill="url(#SVGID_14_)" fill-rule="nonzero" group-id="6,44,48" node-id="373" stroke="none" target-height="71.389984" target-width="63.659973" target-x="633.7" target-y="416.25003"></path><path d="M 681.35 468.70 L 667.19 478.02 L 666.80 469.01 L 675.76 458.45 L 666.66 465.80 L 665.49 438.27 L 664.62 465.98 L 655.06 458.38 L 664.53 468.81 L 664.24 478.08 L 649.67 467.38 L 664.13 481.43 L 663.40 504.77 L 668.33 504.77 L 667.34 481.57 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="6,44,48" node-id="375" stroke="none" target-height="66.5" target-width="31.679993" target-x="649.67" target-y="438.27"></path></g><g node-id="483"><path d="M 228.16 453.05 C 228.16 453.05 226.41 455.53 229.33 459.22 C 231.93 462.51 236.04 461.87 237.41 460.81 C 237.83 463.67 241.34 469.69 246.89 466.29 C 252.11 463.09 249.60 458.22 247.93 456.31 C 251.19 455.39 253.62 447.58 246.14 444.89 C 247.25 441.67 247.45 440.21 245.82 437.31 C 244.26 434.52 241.69 434.07 237.60 435.77 L 231.67 438.27 L 227.90 431.23 L 225.88 432.40 L 230.23 439.12 L 224.46 442.01 C 224.46 442.01 219.53 443.94 221.66 449.23 C 223.63 454.12 228.16 453.05 228.16 453.05 Z" fill="url(#SVGID_15_)" fill-rule="nonzero" group-id="6,44,49" node-id="380" stroke="none" target-height="38.460022" target-width="34.089996" target-x="219.53" target-y="431.22998"></path><path d="M 218.12 423.02 L 235.95 423.02 C 235.95 423.02 241.71 423.18 242.86 416.60 C 244.12 409.37 238.86 408.38 238.86 408.38 C 238.86 408.38 242.03 406.92 241.34 401.46 C 240.65 396.00 235.84 395.31 233.84 395.56 C 234.17 392.32 234.85 384.98 227.23 384.91 C 219.87 384.84 219.92 392.24 220.47 395.16 C 217.85 395.19 209.93 399.12 215.50 407.75 C 212.47 410.34 211.18 411.85 211.32 415.59 C 211.46 419.33 213.75 423.02 218.12 423.02 Z" fill="url(#SVGID_16_)" fill-rule="nonzero" group-id="6,44,49" node-id="382" stroke="none" target-height="38.339996" target-width="34.190002" target-x="209.93" target-y="384.84"></path><path d="M 235.52 413.01 L 227.91 418.01 L 227.71 413.17 L 232.52 407.50 L 227.63 411.45 L 227.00 396.66 L 226.53 411.55 L 221.40 407.46 L 226.48 413.07 L 226.33 418.05 L 218.51 412.30 L 226.27 419.84 L 225.88 432.38 L 228.53 432.38 L 227.99 419.92 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="6,44,49" node-id="384" stroke="none" target-height="35.71997" target-width="17.01001" target-x="218.51" target-y="396.66"></path></g></g><g node-id="479"><path d="M 552.94 482.35 L 714.26 606.40 L 410.68 701.38 L 261.47 482.35 L 426.26 463.94 Z" fill="url(#SVGID_17_)" fill-rule="nonzero" group-id="6,45" node-id="389" stroke="none" target-height="237.44" target-width="452.79" target-x="261.47" target-y="463.94"></path><g node-id="484"><path d="M 254.08 426.43 L 560.33 426.43 L 560.33 313.10 L 427.06 223.53 C 414.95 215.39 399.45 215.39 387.34 223.53 L 254.08 313.10 L 254.08 426.43 Z" fill="url(#SVGID_18_)" fill-rule="nonzero" group-id="6,45,50" node-id="393" stroke="none" target-height="211.03996" target-width="306.25" target-x="254.08" target-y="215.39"></path><path d="M 534.87 411.09 L 324.63 466.01 C 316.24 468.20 307.76 462.85 305.68 454.06 L 272.16 321.65 C 270.08 312.86 275.55 302.16 285.31 299.81 L 493.15 245.90 C 501.54 243.71 512.63 248.91 514.71 257.70 L 546.30 391.21 C 548.37 400.00 543.26 408.90 534.87 411.09 Z" fill="url(#SVGID_19_)" fill-rule="nonzero" group-id="6,45,50" node-id="395" stroke="none" target-height="224.49" target-width="278.29" target-x="270.08" target-y="243.71"></path><path d="M 533.19 415.55 L 323.49 470.34 C 315.13 472.53 306.66 467.17 304.58 458.38 L 272.78 324.01 C 270.70 315.22 275.79 306.33 284.16 304.14 L 493.86 249.35 C 502.22 247.16 510.69 252.52 512.77 261.31 L 544.57 395.68 C 546.65 404.46 541.55 413.36 533.19 415.55 Z" fill="url(#SVGID_20_)" fill-rule="nonzero" group-id="6,45,50" node-id="397" stroke="none" target-height="225.36998" target-width="275.95" target-x="270.7" target-y="247.16002"></path><path d="M 358.41 350.00 L 313.74 358.87 L 309.21 333.70 L 353.88 324.82 Z" fill="#ffffff" fill-rule="nonzero" group-id="6,45,50" node-id="399" stroke="none" target-height="34.049957" target-width="49.200012" target-x="309.21" target-y="324.82"></path><path d="M 502.60 352.89 L 321.53 393.68 L 318.76 380.12 L 499.83 339.32 Z" fill="url(#SVGID_21_)" fill-rule="nonzero" group-id="6,45,50" node-id="401" stroke="none" target-height="54.359985" target-width="183.84" target-x="318.76" target-y="339.32"></path><path d="M 539.76 487.37 L 274.65 487.37 C 263.29 487.37 254.08 477.69 254.08 465.76 L 254.08 313.10 L 407.20 448.95 L 560.33 313.10 L 560.33 465.76 C 560.33 477.69 551.12 487.37 539.76 487.37 Z" fill="url(#SVGID_22_)" fill-rule="nonzero" group-id="6,45,50" node-id="403" stroke="none" target-height="174.27002" target-width="306.25" target-x="254.08" target-y="313.1"></path><path d="M 274.65 487.37 L 539.77 487.37 C 544.79 487.37 549.38 485.48 552.95 482.35 L 418.05 390.64 C 411.46 386.16 402.97 386.16 396.38 390.64 L 261.48 482.35 C 265.04 485.48 269.63 487.37 274.65 487.37 Z" fill="url(#SVGID_23_)" fill-rule="nonzero" group-id="6,45,50" node-id="405" stroke="none" target-height="101.21005" target-width="291.47" target-x="261.48" target-y="386.15997"></path></g></g><g node-id="480"><path d="M 456.59 436.00 L 454.25 436.95 C 454.25 436.95 453.43 438.34 453.77 441.33 C 454.12 444.32 455.68 445.46 456.03 446.56 C 456.38 447.66 456.16 451.87 456.16 451.87 L 462.36 451.87 L 462.62 445.97 C 462.62 445.97 464.02 444.21 464.48 442.99 C 464.94 441.78 465.87 439.78 465.55 438.83 C 465.23 437.88 461.13 434.21 456.59 436.00 Z" fill="#ffbe92" fill-rule="nonzero" group-id="6,46" node-id="411" stroke="none" target-height="17.660004" target-width="12.440002" target-x="453.43" target-y="434.21"></path><path d="M 459.48 432.94 C 459.48 432.94 460.48 431.13 461.27 432.11 C 462.06 433.09 462.56 433.58 463.47 433.37 C 464.38 433.15 466.17 433.35 465.53 435.02 C 464.89 436.69 465.50 436.84 465.75 437.29 C 465.90 437.57 467.00 438.51 466.26 439.72 C 465.53 440.91 464.50 440.47 464.68 441.60 C 464.86 442.73 464.44 443.73 463.77 444.08 C 463.12 444.42 463.28 445.03 463.40 445.38 C 463.52 445.72 463.15 446.84 462.05 446.44 C 460.95 446.04 459.97 445.89 459.11 446.28 C 458.24 446.67 454.66 446.90 455.42 445.30 C 456.12 443.84 455.15 443.54 454.50 442.89 C 453.85 442.24 453.32 441.12 453.67 440.00 C 453.87 439.36 454.15 437.83 453.37 436.87 C 452.57 435.88 453.95 433.17 454.86 433.27 C 455.77 433.37 457.02 430.78 459.48 432.94 Z" fill="#171c61" fill-rule="nonzero" group-id="6,46" node-id="413" stroke="none" target-height="16.119965" target-width="14.430023" target-x="452.56998" target-y="430.78"></path><path d="M 469.87 393.68 C 469.87 397.06 468.53 400.31 466.13 402.70 C 463.74 405.10 460.49 406.44 457.11 406.44 C 453.73 406.44 450.48 405.10 448.09 402.70 C 445.69 400.31 444.35 397.06 444.35 393.68 C 444.35 390.30 445.69 387.05 448.09 384.66 C 450.48 382.26 453.73 380.92 457.11 380.92 C 460.49 380.92 463.74 382.26 466.13 384.66 C 468.53 387.05 469.87 390.30 469.87 393.68 Z" fill="url(#SVGID_24_)" fill-rule="nonzero" group-id="6,46" node-id="415" stroke="none" target-height="25.52005" target-width="25.519989" target-x="444.34998" target-y="380.91998"></path><path d="M 475.20 424.12 L 465.78 405.87 C 469.53 403.17 471.99 398.77 471.99 393.80 C 471.99 385.60 465.32 378.92 457.11 378.92 C 448.90 378.92 442.23 385.60 442.23 393.80 C 442.23 402.00 448.90 408.68 457.11 408.68 C 458.66 408.68 460.15 408.44 461.56 408.00 L 471.00 426.28 C 471.42 427.09 472.25 427.56 473.10 427.56 C 473.46 427.56 473.84 427.47 474.18 427.30 C 475.34 426.70 475.80 425.28 475.20 424.12 Z M 445.38 393.80 C 445.38 387.33 450.64 382.07 457.11 382.07 C 463.58 382.07 468.84 387.33 468.84 393.80 C 468.84 400.27 463.58 405.53 457.11 405.53 C 450.64 405.53 445.38 400.27 445.38 393.80 Z" fill="#75bcef" fill-rule="nonzero" group-id="6,46" node-id="417" stroke="none" target-height="48.640015" target-width="33.569977" target-x="442.23" target-y="378.92"></path><path d="M 441.21 465.27 C 441.21 465.27 438.84 475.39 444.62 476.14 C 450.40 476.89 454.28 462.61 454.28 462.61 L 454.28 456.13 L 443.70 458.39 L 441.21 465.27 Z" fill="#ffbe92" fill-rule="nonzero" group-id="6,46" node-id="419" stroke="none" target-height="20.76007" target-width="15.440002" target-x="438.84" target-y="456.12997"></path><path d="M 467.94 538.60 C 467.94 538.60 463.82 537.38 463.75 541.09 C 464.49 544.44 465.16 545.58 465.13 547.15 C 465.10 548.72 466.58 551.23 469.79 551.66 C 473.00 552.09 474.43 549.57 473.32 546.04 C 472.21 542.50 471.83 539.27 467.94 538.60 Z" fill="#f8b62d" fill-rule="nonzero" group-id="6,46" node-id="421" stroke="none" target-height="14.710022" target-width="10.679993" target-x="463.74997" target-y="537.38"></path><path d="M 463.84 540.28 C 463.84 540.28 464.31 543.03 464.80 543.98 C 465.29 544.93 465.60 546.18 465.85 547.22 C 466.10 548.26 466.62 550.76 470.40 550.89 C 472.72 550.80 473.68 549.69 473.67 548.71 C 473.66 549.35 473.78 550.33 473.31 550.95 C 472.79 551.62 471.63 551.90 470.36 551.91 C 467.89 551.93 466.09 551.33 465.10 547.94 C 464.92 546.55 464.83 545.49 464.57 544.67 C 464.30 543.86 463.37 541.26 463.84 540.28 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="6,46" node-id="423" stroke="none" target-height="11.649963" target-width="10.410034" target-x="463.37" target-y="540.28"></path><path d="M 454.42 538.76 C 454.42 538.76 449.42 537.66 449.42 541.22 C 449.65 544.37 450.18 545.78 450.15 547.34 C 450.12 548.90 451.60 551.42 454.81 551.85 C 458.02 552.28 459.45 549.76 458.34 546.23 C 457.23 542.69 458.30 539.43 454.42 538.76 Z" fill="#f8b62d" fill-rule="nonzero" group-id="6,46" node-id="425" stroke="none" target-height="14.620056" target-width="10.029999" target-x="449.42" target-y="537.66"></path><path d="M 450.00 539.52 C 450.00 539.52 449.13 540.77 450.07 544.19 C 450.39 545.21 450.63 546.36 450.87 547.41 C 451.12 548.45 451.64 550.95 455.42 551.08 C 457.74 550.99 458.70 549.88 458.69 548.90 C 458.68 549.54 458.86 550.37 458.39 550.99 C 457.87 551.66 456.66 552.09 455.39 552.10 C 452.92 552.12 451.12 551.52 450.13 548.13 C 449.95 546.74 449.86 545.68 449.60 544.86 C 449.32 544.05 448.94 540.26 450.00 539.52 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="6,46" node-id="427" stroke="none" target-height="12.599976" target-width="9.919983" target-x="448.94" target-y="539.52"></path><path d="M 450.77 485.74 C 450.77 485.74 448.17 492.02 448.86 502.93 C 449.55 513.84 452.75 548.71 452.75 548.71 L 457.71 548.71 L 461.53 500.75 L 467.38 548.71 L 471.98 548.71 C 471.98 548.71 476.28 490.42 471.43 485.74 C 463.08 485.74 450.77 485.74 450.77 485.74 Z" fill="url(#SVGID_25_)" fill-rule="nonzero" group-id="6,46" node-id="429" stroke="none" target-height="62.970062" target-width="28.109985" target-x="448.17" target-y="485.73996"></path><path d="M 465.36 415.84 C 465.36 415.84 465.53 418.67 466.92 419.66 C 468.31 420.64 469.00 422.20 469.58 423.25 C 470.16 424.29 472.55 429.14 473.01 429.83 C 473.47 430.52 474.34 432.32 473.94 434.51 C 473.54 436.71 469.26 446.94 468.97 447.69 C 469.78 450.06 474.69 456.25 474.69 456.25 C 474.69 456.25 482.44 439.13 482.15 433.58 C 481.86 428.03 476.75 424.28 473.40 419.37 C 472.24 418.04 472.30 416.83 472.42 416.07 C 472.54 415.32 472.50 410.65 468.69 409.18 C 466.39 408.29 467.56 412.84 467.91 413.47 C 468.26 414.11 468.95 417.05 466.64 415.72 C 465.83 415.09 465.27 415.09 465.36 415.84 Z" fill="#ffbe92" fill-rule="nonzero" group-id="6,46" node-id="431" stroke="none" target-height="47.95999" target-width="17.169983" target-x="465.27002" target-y="408.29"></path><path d="M 469.17 443.70 L 479.66 448.27 C 479.66 448.27 476.25 455.79 474.69 459.14 C 474.29 460.64 472.76 465.79 472.88 467.93 C 473.00 470.07 476.23 490.46 472.82 491.73 C 469.41 493.00 451.78 493.13 449.18 492.61 C 446.58 492.09 447.67 474.17 448.65 468.79 C 449.26 464.57 449.17 463.47 449.17 463.47 L 447.52 467.72 L 441.13 464.96 C 441.13 464.96 442.42 452.80 447.31 451.11 C 451.82 449.55 453.42 449.41 453.77 449.24 C 454.38 448.63 457.50 448.24 458.93 448.24 C 460.36 448.24 462.66 448.20 464.35 449.11 C 465.25 449.51 467.49 448.21 469.17 443.70 Z" fill="url(#SVGID_26_)" fill-rule="nonzero" group-id="6,46" node-id="433" stroke="none" target-height="49.429993" target-width="38.52997" target-x="441.13004" target-y="443.7"></path></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg height="800" node-id="1" sillyvg="true" template-height="800" template-width="800" version="1.1" viewBox="0 0 800 800" width="800" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs node-id="171"><linearGradient gradientUnits="objectBoundingBox" id="SVGID_1_" node-id="19" spreadMethod="pad" x1="256.0968" x2="256.0968" y1="421.2973" y2="324.5091"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_2_" node-id="23" spreadMethod="pad" x1="191.4798" x2="191.4798" y1="479.2892" y2="262.8002"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_3_" node-id="27" spreadMethod="pad" x1="567.2614" x2="567.2614" y1="436.6104" y2="280.1296"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_4_" node-id="31" spreadMethod="pad" x1="629.7863" x2="629.7863" y1="459.2804" y2="289.5397"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_5_" node-id="35" spreadMethod="pad" x1="121.0737" x2="121.0737" y1="501.3589" y2="350.8455"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_6_" node-id="39" spreadMethod="pad" x1="683.7469" x2="683.7469" y1="484.7534" y2="361.6212"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_7_" node-id="43" spreadMethod="pad" x1="127.0373" x2="127.0373" y1="229.0516" y2="164.5103"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_8_" node-id="47" spreadMethod="pad" x1="644.1058" x2="644.1058" y1="192.2311" y2="127.6899"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_9_" node-id="51" spreadMethod="pad" x1="514.3348" x2="514.3348" y1="235.4046" y2="188.6874"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_10_" node-id="55" spreadMethod="pad" x1="400.5522" x2="400.5522" y1="750.9294" y2="398.8005"><stop offset="0.4065" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dae4ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_11_" node-id="61" spreadMethod="pad" x1="191.4817" x2="140.0455" y1="574.3853" y2="513.0859"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_12_" node-id="65" spreadMethod="pad" x1="112.4339" x2="176.6207" y1="454.0949" y2="454.0949"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_13_" node-id="71" spreadMethod="pad" x1="710.3438" x2="662.9784" y1="554.4127" y2="497.9648"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_14_" node-id="75" spreadMethod="pad" x1="637.5521" x2="696.659" y1="443.6424" y2="443.6424"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_15_" node-id="81" spreadMethod="pad" x1="251.6812" x2="226.2399" y1="455.2419" y2="424.9222"><stop offset="0.0000001438503" stop-color="#eaeff6"></stop><stop offset="1" stop-color="#cddae9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_16_" node-id="85" spreadMethod="pad" x1="212.5827" x2="244.3307" y1="395.7441" y2="395.7441"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_17_" node-id="91" spreadMethod="pad" x1="537.0577" x2="456.9708" y1="702.5777" y2="423.2816"><stop offset="0.1648" stop-color="#ffffff"></stop><stop offset="0.9362" stop-color="#bbcbe0"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_18_" node-id="95" spreadMethod="pad" x1="299.4682" x2="519.6037" y1="254.8083" y2="254.8083"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_19_" node-id="99" spreadMethod="pad" x1="263.2583" x2="374.7811" y1="325.5883" y2="325.5883"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_20_" node-id="103" spreadMethod="pad" x1="374.7811" x2="564.1719" y1="325.5883" y2="325.5883"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_21_" node-id="107" spreadMethod="pad" x1="271.3167" x2="374.7811" y1="434.8681" y2="434.8681"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_22_" node-id="111" spreadMethod="pad" x1="374.7811" x2="559.5232" y1="436.162" y2="436.162"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_23_" node-id="118" spreadMethod="pad" x1="374.7811" x2="559.5233" y1="370.6432" y2="370.6432"><stop offset="0" stop-color="#ffffff"></stop><stop offset="1" stop-color="#eef2f8"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_24_" node-id="124" spreadMethod="pad" x1="570.1172" x2="570.1172" y1="475.8546" y2="459.2368"><stop offset="0.3408" stop-color="#f4ae7f"></stop><stop offset="1" stop-color="#ffbe92"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_25_" node-id="132" spreadMethod="pad" x1="584.0698" x2="562.9752" y1="567.291" y2="509.3342"><stop offset="0" stop-color="#78c8ff"></stop><stop offset="0.6903" stop-color="#2a80e2"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_26_" node-id="138" spreadMethod="pad" x1="571.1412" x2="571.1412" y1="516.8079" y2="473.3618"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient></defs><g node-id="453"><g node-id="482"><path d="M 270.55 327.91 L 270.55 324.50 L 241.05 324.50 L 241.05 328.46 L 234.57 328.46 L 234.57 421.29 L 277.62 421.29 L 277.62 327.91 L 270.55 327.91 Z M 273.89 410.65 L 237.85 410.65 L 237.85 407.90 L 273.89 407.90 L 273.89 410.65 Z M 273.89 397.98 L 237.85 397.98 L 237.85 395.23 L 273.89 395.23 L 273.89 397.98 Z M 273.89 385.30 L 237.85 385.30 L 237.85 382.55 L 273.89 382.55 L 273.89 385.30 Z M 273.89 372.96 L 237.85 372.96 L 237.85 370.21 L 273.89 370.21 L 273.89 372.96 Z M 273.89 360.64 L 237.85 360.64 L 237.85 357.89 L 273.89 357.89 L 273.89 360.64 Z M 273.89 347.97 L 237.85 347.97 L 237.85 345.22 L 273.89 345.22 L 273.89 347.97 Z M 273.89 335.62 L 237.85 335.62 L 237.85 332.87 L 273.89 332.87 L 273.89 335.62 Z" fill="url(#SVGID_1_)" fill-rule="nonzero" group-id="14,43" node-id="345" stroke="none" target-height="96.79004" target-width="43.049988" target-x="234.57" target-y="324.5"></path><path d="M 212.57 379.73 L 212.57 271.54 L 179.82 271.54 L 179.82 262.80 L 165.96 262.80 L 165.96 316.13 L 162.23 316.13 L 162.23 479.29 L 220.74 479.29 L 220.74 379.73 L 212.57 379.73 Z M 188.07 411.53 L 179.81 411.53 L 179.81 403.52 L 188.07 403.52 L 188.07 411.53 Z M 188.07 399.01 L 179.81 399.01 L 179.81 391.00 L 188.07 391.00 L 188.07 399.01 Z M 188.07 386.53 L 179.81 386.53 L 179.81 378.52 L 188.07 378.52 L 188.07 386.53 Z M 188.07 374.09 L 179.81 374.09 L 179.81 366.08 L 188.07 366.08 L 188.07 374.09 Z M 188.07 361.56 L 179.81 361.56 L 179.81 353.55 L 188.07 353.55 L 188.07 361.56 Z M 188.07 336.56 L 179.81 336.56 L 179.81 328.55 L 188.07 328.55 L 188.07 336.56 Z M 188.07 324.03 L 179.81 324.03 L 179.81 316.02 L 188.07 316.02 L 188.07 324.03 Z M 188.07 311.56 L 179.81 311.56 L 179.81 303.55 L 188.07 303.55 L 188.07 311.56 Z M 188.07 299.12 L 179.81 299.12 L 179.81 291.11 L 188.07 291.11 L 188.07 299.12 Z M 188.07 286.59 L 179.81 286.59 L 179.81 278.58 L 188.07 278.58 L 188.07 286.59 Z M 200.42 411.53 L 192.16 411.53 L 192.16 403.52 L 200.42 403.52 L 200.42 411.53 Z M 200.42 399.01 L 192.16 399.01 L 192.16 391.00 L 200.42 391.00 L 200.42 399.01 Z M 200.42 386.53 L 192.16 386.53 L 192.16 378.52 L 200.42 378.52 L 200.42 386.53 Z M 200.42 374.09 L 192.16 374.09 L 192.16 366.08 L 200.42 366.08 L 200.42 374.09 Z M 200.42 361.56 L 192.16 361.56 L 192.16 353.55 L 200.42 353.55 L 200.42 361.56 Z M 200.42 336.56 L 192.16 336.56 L 192.16 328.55 L 200.42 328.55 L 200.42 336.56 Z M 200.42 324.03 L 192.16 324.03 L 192.16 316.02 L 200.42 316.02 L 200.42 324.03 Z M 200.42 311.56 L 192.16 311.56 L 192.16 303.55 L 200.42 303.55 L 200.42 311.56 Z M 200.42 299.12 L 192.16 299.12 L 192.16 291.11 L 200.42 291.11 L 200.42 299.12 Z M 200.42 286.59 L 192.16 286.59 L 192.16 278.58 L 200.42 278.58 L 200.42 286.59 Z" fill="url(#SVGID_2_)" fill-rule="nonzero" group-id="14,43" node-id="347" stroke="none" target-height="216.49002" target-width="58.510025" target-x="162.23" target-y="262.8"></path><path d="M 534.88 436.61 C 535.24 431.96 534.88 280.13 534.88 280.13 L 553.41 280.13 L 553.41 313.84 L 582.91 313.84 L 582.91 384.29 L 599.64 384.29 L 599.64 436.61 L 534.88 436.61 Z" fill="url(#SVGID_3_)" fill-rule="nonzero" group-id="14,43" node-id="349" stroke="none" target-height="156.47995" target-width="64.76001" target-x="534.88" target-y="280.13"></path><path d="M 656.09 368.46 L 656.09 363.61 L 651.09 363.61 L 651.09 321.28 L 638.89 321.28 L 638.89 316.58 L 630.66 316.58 L 630.66 309.67 L 626.37 309.67 L 626.37 289.53 L 623.28 289.53 L 623.28 309.81 L 619.34 309.81 L 619.34 316.72 L 607.14 316.72 L 607.14 328.04 L 600.09 328.04 L 600.09 459.27 L 659.47 459.27 L 659.47 368.45 L 656.09 368.45 Z M 610.58 421.25 L 606.56 421.25 L 606.56 406.01 L 610.58 406.01 L 610.58 421.25 Z M 610.58 402.60 L 606.56 402.60 L 606.56 387.36 L 610.58 387.36 L 610.58 402.60 Z M 610.58 383.95 L 606.56 383.95 L 606.56 368.71 L 610.58 368.71 L 610.58 383.95 Z M 610.58 364.96 L 606.56 364.96 L 606.56 349.72 L 610.58 349.72 L 610.58 364.96 Z M 610.58 345.98 L 606.56 345.98 L 606.56 330.74 L 610.58 330.74 L 610.58 345.98 Z M 618.86 421.25 L 614.84 421.25 L 614.84 406.01 L 618.86 406.01 L 618.86 421.25 Z M 618.86 402.60 L 614.84 402.60 L 614.84 387.36 L 618.86 387.36 L 618.86 402.60 Z M 618.86 383.95 L 614.84 383.95 L 614.84 368.71 L 618.86 368.71 L 618.86 383.95 Z M 618.86 364.96 L 614.84 364.96 L 614.84 349.72 L 618.86 349.72 L 618.86 364.96 Z M 618.86 345.98 L 614.84 345.98 L 614.84 330.74 L 618.86 330.74 L 618.86 345.98 Z M 627.14 421.25 L 623.12 421.25 L 623.12 406.01 L 627.14 406.01 L 627.14 421.25 Z M 627.14 402.60 L 623.12 402.60 L 623.12 387.36 L 627.14 387.36 L 627.14 402.60 Z M 627.14 383.95 L 623.12 383.95 L 623.12 368.71 L 627.14 368.71 L 627.14 383.95 Z M 627.14 364.96 L 623.12 364.96 L 623.12 349.72 L 627.14 349.72 L 627.14 364.96 Z M 627.14 345.98 L 623.12 345.98 L 623.12 330.74 L 627.14 330.74 L 627.14 345.98 Z M 635.42 421.25 L 631.40 421.25 L 631.40 406.01 L 635.42 406.01 L 635.42 421.25 Z M 635.42 402.60 L 631.40 402.60 L 631.40 387.36 L 635.42 387.36 L 635.42 402.60 Z M 635.42 383.95 L 631.40 383.95 L 631.40 368.71 L 635.42 368.71 L 635.42 383.95 Z M 635.42 364.96 L 631.40 364.96 L 631.40 349.72 L 635.42 349.72 L 635.42 364.96 Z M 635.42 345.98 L 631.40 345.98 L 631.40 330.74 L 635.42 330.74 L 635.42 345.98 Z M 643.70 421.25 L 639.68 421.25 L 639.68 406.01 L 643.70 406.01 L 643.70 421.25 Z M 643.70 402.60 L 639.68 402.60 L 639.68 387.36 L 643.70 387.36 L 643.70 402.60 Z M 643.70 383.95 L 639.68 383.95 L 639.68 368.71 L 643.70 368.71 L 643.70 383.95 Z M 643.70 364.96 L 639.68 364.96 L 639.68 349.72 L 643.70 349.72 L 643.70 364.96 Z M 643.70 345.98 L 639.68 345.98 L 639.68 330.74 L 643.70 330.74 L 643.70 345.98 Z" fill="url(#SVGID_4_)" fill-rule="nonzero" group-id="14,43" node-id="351" stroke="none" target-height="169.73999" target-width="59.379944" target-x="600.09" target-y="289.53"></path><path d="M 94.45 501.36 L 94.45 411.81 L 104.70 411.81 L 104.70 366.12 L 139.96 350.85 L 139.96 411.09 L 147.70 411.09 L 147.70 501.36 Z" fill="url(#SVGID_5_)" fill-rule="nonzero" group-id="14,43" node-id="353" stroke="none" target-height="150.50998" target-width="53.249992" target-x="94.450005" target-y="350.85"></path><path d="M 699.22 484.75 L 668.28 484.75 L 668.28 361.62 L 699.22 376.59 Z" fill="url(#SVGID_6_)" fill-rule="nonzero" group-id="14,43" node-id="355" stroke="none" target-height="123.130005" target-width="30.939941" target-x="668.28" target-y="361.62"></path><path d="M 89.27 187.94 C 89.27 187.94 98.61 162.46 121.57 172.46 C 126.87 167.08 133.43 163.17 142.30 164.93 C 151.17 166.69 156.89 173.34 158.83 177.76 C 161.61 177.63 183.87 178.37 183.87 201.46 C 183.87 224.55 156.93 224.11 154.98 222.28 C 152.58 224.42 141.04 236.03 127.04 222.78 C 124.01 225.37 114.11 236.34 98.46 221.20 C 91.21 224.23 73.98 226.56 70.64 208.77 C 67.29 190.99 84.43 185.97 89.27 187.94 Z" fill="url(#SVGID_7_)" fill-rule="nonzero" group-id="14,43" node-id="357" stroke="none" target-height="73.87999" target-width="116.579994" target-x="67.29" target-y="162.46"></path><path d="M 606.34 151.12 C 606.34 151.12 615.68 125.64 638.64 135.64 C 643.94 130.26 650.50 126.35 659.37 128.11 C 668.24 129.88 673.96 136.52 675.90 140.94 C 678.68 140.81 700.94 141.55 700.94 164.64 C 700.94 187.73 674.00 187.29 672.05 185.46 C 669.65 187.60 658.11 199.21 644.11 185.96 C 641.08 188.55 631.18 199.52 615.53 184.38 C 608.28 187.41 591.05 189.74 587.71 171.95 C 584.36 154.17 601.50 149.15 606.34 151.12 Z" fill="url(#SVGID_8_)" fill-rule="nonzero" group-id="14,43" node-id="359" stroke="none" target-height="73.880005" target-width="116.58008" target-x="584.36" target-y="125.64"></path><path d="M 487.00 205.65 C 487.00 205.65 493.76 187.20 510.38 194.45 C 514.22 190.55 518.96 187.72 525.39 189.00 C 531.81 190.28 535.95 195.09 537.35 198.28 C 539.36 198.19 555.48 198.72 555.48 215.43 C 555.48 232.14 535.98 231.82 534.57 230.50 C 532.83 232.05 524.48 240.45 514.34 230.87 C 512.15 232.74 504.98 240.69 493.66 229.73 C 488.41 231.92 475.94 233.61 473.52 220.73 C 471.09 207.86 483.49 204.22 487.00 205.65 Z" fill="url(#SVGID_9_)" fill-rule="nonzero" group-id="14,43" node-id="361" stroke="none" target-height="53.49002" target-width="84.38995" target-x="471.09003" target-y="187.2"></path><path d="M 771.53 574.86 C 771.53 621.55 732.44 666.34 662.87 699.35 C 593.30 732.37 498.94 750.92 400.55 750.92 C 302.16 750.92 207.80 732.37 138.23 699.35 C 68.66 666.34 29.57 621.55 29.57 574.86 C 29.57 528.17 68.66 483.38 138.23 450.37 C 207.80 417.35 302.16 398.80 400.55 398.80 C 498.94 398.80 593.30 417.35 662.87 450.37 C 732.44 483.38 771.53 528.17 771.53 574.86 Z" fill="url(#SVGID_10_)" fill-rule="nonzero" group-id="14,43" node-id="363" stroke="none" target-height="352.12" target-width="741.9601" target-x="29.569977" target-y="398.8"></path></g><g node-id="483"><g node-id="486"><path d="M 146.50 553.33 C 146.50 553.33 142.97 558.34 148.87 565.80 C 154.13 572.44 162.44 571.15 165.20 569.02 C 166.05 574.80 173.14 586.98 184.36 580.09 C 194.91 573.62 189.83 563.78 186.46 559.91 C 193.05 558.05 197.96 542.26 182.84 536.81 C 185.08 530.29 185.48 527.34 182.20 521.48 C 179.04 515.84 173.85 514.94 165.57 518.37 L 153.59 523.42 L 145.96 509.18 L 141.88 511.54 L 150.68 525.14 L 139.02 530.99 C 139.02 530.99 129.05 534.89 133.35 545.59 C 137.34 555.51 146.50 553.33 146.50 553.33 Z" fill="url(#SVGID_11_)" fill-rule="nonzero" group-id="14,44,47" node-id="369" stroke="none" target-height="77.79999" target-width="68.91" target-x="129.05" target-y="509.18"></path><path d="M 126.20 492.62 L 162.26 492.62 C 162.26 492.62 173.91 492.95 176.23 479.64 C 178.78 465.03 168.15 463.02 168.15 463.02 C 168.15 463.02 174.55 460.08 173.16 449.03 C 171.76 437.99 162.04 436.59 157.99 437.10 C 158.65 430.55 160.03 415.72 144.63 415.57 C 129.76 415.42 129.85 430.39 130.96 436.29 C 125.66 436.35 109.65 444.30 120.91 461.74 C 114.78 466.99 112.19 470.02 112.46 477.59 C 112.73 485.16 117.37 492.62 126.20 492.62 Z" fill="url(#SVGID_12_)" fill-rule="nonzero" group-id="14,44,47" node-id="371" stroke="none" target-height="77.52997" target-width="69.13" target-x="109.65" target-y="415.42"></path><path d="M 161.37 472.38 L 146.00 482.50 L 145.58 472.72 L 155.30 461.25 L 145.43 469.24 L 144.15 439.33 L 143.20 469.43 L 132.83 461.17 L 143.11 472.50 L 142.79 482.57 L 126.98 470.94 L 142.68 486.20 L 141.88 511.56 L 147.24 511.56 L 146.16 486.35 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="14,44,47" node-id="373" stroke="none" target-height="72.23001" target-width="34.38999" target-x="126.98" target-y="439.33"></path></g><g node-id="487"><path d="M 668.92 535.03 C 668.92 535.03 665.67 539.65 671.10 546.51 C 675.94 552.63 683.60 551.44 686.14 549.47 C 686.92 554.79 693.46 566.00 703.79 559.67 C 713.50 553.71 708.83 544.65 705.72 541.09 C 711.79 539.38 716.31 524.83 702.39 519.82 C 704.46 513.82 704.83 511.10 701.80 505.71 C 698.89 500.52 694.11 499.68 686.49 502.85 L 675.45 507.50 L 668.42 494.39 L 664.67 496.56 L 672.77 509.08 L 662.04 514.47 C 662.04 514.47 652.86 518.06 656.82 527.92 C 660.49 537.03 668.92 535.03 668.92 535.03 Z" fill="url(#SVGID_13_)" fill-rule="nonzero" group-id="14,44,48" node-id="378" stroke="none" target-height="71.609985" target-width="63.450073" target-x="652.86" target-y="494.39"></path><path d="M 650.23 479.12 L 683.43 479.12 C 683.43 479.12 694.16 479.43 696.29 467.17 C 698.63 453.72 688.85 451.87 688.85 451.87 C 688.85 451.87 694.75 449.16 693.46 438.99 C 692.17 428.82 683.23 427.52 679.50 428.00 C 680.11 421.97 681.38 408.31 667.20 408.17 C 653.51 408.03 653.59 421.81 654.61 427.25 C 649.73 427.30 634.98 434.62 645.36 450.69 C 639.72 455.52 637.33 458.32 637.58 465.28 C 637.82 472.25 642.10 479.12 650.23 479.12 Z" fill="url(#SVGID_14_)" fill-rule="nonzero" group-id="14,44,48" node-id="380" stroke="none" target-height="71.399994" target-width="63.650024" target-x="634.98" target-y="408.03"></path><path d="M 682.62 460.48 L 668.46 469.80 L 668.07 460.79 L 677.03 450.24 L 667.93 457.59 L 666.76 430.05 L 665.89 457.77 L 656.33 450.16 L 665.80 460.59 L 665.51 469.86 L 650.94 459.16 L 665.40 473.21 L 664.67 496.56 L 669.60 496.56 L 668.61 473.35 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="14,44,48" node-id="382" stroke="none" target-height="66.51001" target-width="31.679993" target-x="650.94" target-y="430.05"></path></g><g node-id="488"><path d="M 229.43 444.83 C 229.43 444.83 227.68 447.31 230.60 451.00 C 233.20 454.29 237.31 453.65 238.68 452.59 C 239.10 455.45 242.61 461.47 248.16 458.07 C 253.38 454.87 250.87 450.00 249.20 448.09 C 252.46 447.17 254.89 439.36 247.41 436.67 C 248.52 433.45 248.72 431.99 247.09 429.09 C 245.53 426.30 242.96 425.85 238.87 427.55 L 232.94 430.05 L 229.17 423.01 L 227.15 424.18 L 231.50 430.90 L 225.73 433.79 C 225.73 433.79 220.80 435.72 222.93 441.01 C 224.90 445.91 229.43 444.83 229.43 444.83 Z" fill="url(#SVGID_15_)" fill-rule="nonzero" group-id="14,44,49" node-id="387" stroke="none" target-height="38.45996" target-width="34.089996" target-x="220.8" target-y="423.01"></path><path d="M 219.39 414.80 L 237.22 414.80 C 237.22 414.80 242.98 414.96 244.13 408.38 C 245.39 401.15 240.13 400.16 240.13 400.16 C 240.13 400.16 243.30 398.70 242.61 393.24 C 241.92 387.78 237.11 387.09 235.11 387.34 C 235.44 384.10 236.12 376.76 228.50 376.69 C 221.14 376.62 221.19 384.02 221.74 386.94 C 219.12 386.97 211.20 390.90 216.77 399.53 C 213.74 402.12 212.45 403.63 212.59 407.37 C 212.73 411.11 215.02 414.80 219.39 414.80 Z" fill="url(#SVGID_16_)" fill-rule="nonzero" group-id="14,44,49" node-id="389" stroke="none" target-height="38.339996" target-width="34.190018" target-x="211.2" target-y="376.62"></path><path d="M 236.79 404.79 L 229.18 409.79 L 228.98 404.95 L 233.79 399.29 L 228.90 403.23 L 228.27 388.44 L 227.80 403.33 L 222.67 399.24 L 227.75 404.85 L 227.60 409.83 L 219.78 404.08 L 227.54 411.62 L 227.15 424.17 L 229.80 424.17 L 229.26 411.70 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="14,44,49" node-id="391" stroke="none" target-height="35.73004" target-width="17.00998" target-x="219.78" target-y="388.43997"></path></g></g><g node-id="484"><path d="M 556.03 486.15 L 711.56 619.06 L 437.79 731.04 L 273.60 475.86 Z" fill="url(#SVGID_17_)" fill-rule="nonzero" group-id="14,45" node-id="397" stroke="none" target-height="255.18002" target-width="437.96" target-x="273.6" target-y="475.85995"></path><path d="M 498.63 223.18 C 457.19 194.55 410.30 269.17 410.30 269.17 C 401.83 255.66 372.50 224.69 348.89 219.32 C 315.01 211.60 295.35 247.95 300.19 264.67 C 304.33 278.97 332.86 292.97 410.30 292.97 C 487.74 292.97 493.49 284.29 501.05 280.75 C 508.61 277.22 540.07 251.81 498.63 223.18 Z M 355.69 274.80 C 345.41 274.16 303.56 266.81 326.55 241.51 C 352.61 212.83 393.10 274.32 393.10 274.32 C 378.88 274.96 365.97 275.45 355.69 274.80 Z M 464.95 274.80 C 454.67 275.44 441.76 274.96 427.54 274.32 C 427.54 274.32 468.03 212.83 494.09 241.51 C 517.08 266.82 475.24 274.16 464.95 274.80 Z" fill="url(#SVGID_18_)" fill-rule="nonzero" group-id="14,45" node-id="399" stroke="none" target-height="98.42" target-width="244.72" target-x="295.35" target-y="194.55"></path><path d="M 263.26 294.36 L 374.78 284.54 L 374.78 366.64 L 266.56 358.92 Z" fill="url(#SVGID_19_)" fill-rule="nonzero" group-id="14,45" node-id="401" stroke="none" target-height="82.100006" target-width="111.51999" target-x="263.26" target-y="284.54"></path><path d="M 564.17 292.26 L 564.17 361.72 L 374.78 366.64 L 374.78 284.54 Z" fill="url(#SVGID_20_)" fill-rule="nonzero" group-id="14,45" node-id="403" stroke="none" target-height="82.100006" target-width="189.38998" target-x="374.78" target-y="284.54"></path><path d="M 273.60 475.86 L 271.32 359.26 L 374.78 366.64 L 374.78 510.48 Z" fill="url(#SVGID_21_)" fill-rule="nonzero" group-id="14,45" node-id="405" stroke="none" target-height="151.22" target-width="103.45999" target-x="271.32" target-y="359.26"></path><path d="M 556.03 486.15 L 559.52 361.84 L 374.78 366.64 L 374.78 510.48 Z" fill="url(#SVGID_22_)" fill-rule="nonzero" group-id="14,45" node-id="407" stroke="none" target-height="148.64001" target-width="184.74002" target-x="374.78" target-y="361.84"></path><path d="M 461.25 288.06 L 461.25 498.87 L 473.20 497.27 L 473.20 288.06 Z" fill="#ffffff" fill-rule="nonzero" group-id="14,45" node-id="409" stroke="none" target-height="210.81" target-width="11.950012" target-x="461.25" target-y="288.06"></path><path d="M 299.47 291.17 L 305.04 486.62 L 314.78 489.95 L 310.77 290.18 Z" fill="#ffffff" fill-rule="nonzero" group-id="14,45" node-id="411" stroke="none" target-height="199.77002" target-width="15.309998" target-x="299.47" target-y="290.18"></path><path d="M 271.32 359.26 L 271.56 371.49 L 374.78 379.44 L 374.78 366.64 Z" fill="#ffffff" fill-rule="nonzero" group-id="14,45" node-id="413" stroke="none" target-height="20.179993" target-width="103.45999" target-x="271.32" target-y="359.26"></path><path d="M 374.78 366.64 L 374.78 379.44 L 559.52 374.35 L 559.52 361.85 Z" fill="url(#SVGID_23_)" fill-rule="nonzero" group-id="14,45" node-id="415" stroke="none" target-height="17.589996" target-width="184.74002" target-x="374.78" target-y="361.85"></path></g><g node-id="485"><path d="M 570.12 455.31 C 570.12 455.31 571.18 453.96 572.68 454.11 C 574.29 454.27 573.87 455.29 574.97 455.52 C 576.08 455.75 576.77 455.67 576.47 457.78 C 576.30 458.95 576.44 458.94 576.75 459.49 C 576.94 459.82 578.27 460.94 577.37 462.39 C 576.48 463.80 576.23 463.28 576.46 464.63 C 576.68 465.98 576.17 467.17 575.36 467.58 C 574.57 467.98 574.77 468.71 574.92 469.13 C 575.06 469.54 574.62 470.87 573.28 470.39 C 571.94 469.91 570.75 469.74 569.70 470.20 C 568.65 470.66 564.29 470.93 565.22 469.03 C 566.07 467.29 564.89 466.94 564.09 466.16 C 563.30 465.38 562.66 464.04 563.07 462.72 C 563.31 461.95 563.65 461.13 562.70 459.98 C 561.72 458.79 563.40 455.57 564.51 455.69 C 565.62 455.81 567.13 452.72 570.12 455.31 Z" fill="#171c61" fill-rule="nonzero" group-id="14,46" node-id="420" stroke="none" target-height="18.210022" target-width="16.550049" target-x="561.72" target-y="452.71997"></path><path d="M 566.71 460.73 C 565.72 461.76 565.81 461.52 565.58 462.15 C 564.05 461.33 563.98 465.68 565.26 465.79 C 565.62 468.08 566.60 468.72 567.17 469.27 C 567.54 470.53 566.66 475.85 566.66 475.85 L 573.23 475.85 L 572.87 469.12 C 572.87 469.12 574.35 468.65 574.66 465.98 C 575.88 466.12 576.57 461.35 574.90 462.51 C 574.95 461.25 573.03 460.93 572.78 459.48 C 572.75 459.30 572.59 459.18 572.44 459.25 C 571.76 459.55 570.62 460.35 569.46 460.32 C 568.50 460.30 567.38 460.03 566.71 460.73 Z" fill="url(#SVGID_24_)" fill-rule="nonzero" group-id="14,46" node-id="422" stroke="none" target-height="16.670013" target-width="12.590027" target-x="563.98" target-y="459.18"></path><path d="M 583.24 565.88 C 583.19 566.17 583.04 566.44 582.82 566.64 C 582.37 567.06 582.15 567.66 581.02 567.52 C 579.32 567.30 578.98 566.77 578.62 565.76 C 577.90 567.26 578.88 568.80 578.55 570.93 C 578.23 573.06 577.47 576.49 580.66 578.15 C 583.85 579.81 586.32 576.17 586.20 573.33 C 586.08 570.49 583.63 567.21 583.86 566.00 C 583.91 565.15 583.53 564.47 583.53 564.47 C 583.53 564.47 583.34 565.32 583.24 565.88 Z" fill="#f8b62d" fill-rule="nonzero" group-id="14,46" node-id="424" stroke="none" target-height="15.340027" target-width="8.850037" target-x="577.47" target-y="564.47"></path><path d="M 585.76 571.16 C 585.76 571.16 586.67 575.28 584.53 576.92 C 583.95 577.42 580.94 578.89 578.67 576.08 C 578.87 576.61 579.71 578.43 581.69 578.87 C 582.58 578.94 584.40 578.96 585.79 576.78 C 587.17 574.59 585.76 571.16 585.76 571.16 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="14,46" node-id="426" stroke="none" target-height="7.800049" target-width="8.5" target-x="578.67" target-y="571.16"></path><path d="M 564.28 566.13 C 564.33 566.42 564.48 566.69 564.70 566.89 C 565.15 567.31 565.37 567.91 566.50 567.77 C 568.20 567.55 568.54 567.02 568.90 566.01 C 569.62 567.51 569.64 569.05 569.97 571.18 C 570.30 573.31 572.05 576.74 568.86 578.40 C 565.67 580.06 562.81 576.10 562.93 573.26 C 563.05 570.42 563.89 567.46 563.66 566.26 C 563.61 565.41 563.99 564.73 563.99 564.73 C 563.99 564.73 564.18 565.58 564.28 566.13 Z" fill="#f8b62d" fill-rule="nonzero" group-id="14,46" node-id="428" stroke="none" target-height="15.330017" target-width="9.23999" target-x="562.81" target-y="564.73"></path><path d="M 563.08 571.41 C 563.08 571.41 562.99 575.63 564.99 577.17 C 565.57 577.67 568.23 579.45 570.51 576.63 C 570.29 577.10 569.81 578.68 567.83 579.12 C 566.94 579.19 565.12 579.21 563.73 577.03 C 562.35 574.85 563.08 571.41 563.08 571.41 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="14,46" node-id="430" stroke="none" target-height="8.040039" target-width="8.160034" target-x="562.35" target-y="571.41"></path><path d="M 562.10 509.65 C 562.10 509.65 559.50 515.93 560.19 526.84 C 560.78 536.08 563.16 558.51 563.88 566.38 C 564.00 567.65 565.06 568.62 566.34 568.62 L 566.76 568.62 C 568.05 568.62 569.12 567.63 569.22 566.35 L 572.86 524.66 L 578.43 566.40 C 578.58 567.67 579.56 568.18 580.84 568.18 L 581.07 568.13 C 582.40 568.13 583.37 567.59 583.46 566.27 C 584.20 555.33 587.01 513.77 582.74 509.65 L 562.10 509.65 Z" fill="url(#SVGID_25_)" fill-rule="nonzero" group-id="14,46" node-id="432" stroke="none" target-height="58.97" target-width="27.51001" target-x="559.5" target-y="509.65"></path><path d="M 606.73 476.21 C 606.73 476.21 604.59 477.17 604.41 478.50 C 603.99 481.59 597.41 487.73 595.68 488.10 C 593.95 488.47 587.64 479.95 587.01 479.96 C 585.52 481.27 583.26 485.47 583.26 485.47 C 583.26 485.47 592.14 496.48 596.10 494.59 C 600.07 492.71 603.99 487.07 606.56 483.14 C 607.18 481.89 608.09 481.57 608.67 481.43 C 609.25 481.29 612.65 479.86 612.58 476.63 C 612.54 474.68 609.57 476.91 609.21 477.35 C 608.85 477.79 606.91 479.19 607.18 477.10 C 607.41 476.32 607.25 475.91 606.73 476.21 Z" fill="#ffbe92" fill-rule="nonzero" group-id="14,46" node-id="434" stroke="none" target-height="21.800018" target-width="29.390015" target-x="583.26" target-y="474.68"></path><path d="M 535.99 478.39 C 535.99 478.39 538.13 479.35 538.31 480.68 C 538.73 483.77 545.31 489.91 547.04 490.28 C 548.77 490.65 554.18 481.61 554.81 481.63 C 556.30 482.94 559.45 487.65 559.45 487.65 C 559.45 487.65 550.28 498.58 546.32 496.70 C 542.35 494.82 538.72 489.26 536.15 485.33 C 535.53 484.08 534.62 483.76 534.04 483.62 C 533.46 483.48 530.06 482.05 530.13 478.82 C 530.17 476.87 533.14 479.10 533.50 479.54 C 533.86 479.98 535.80 481.38 535.53 479.29 C 535.30 478.50 535.47 478.09 535.99 478.39 Z" fill="#ffbe92" fill-rule="nonzero" group-id="14,46" node-id="436" stroke="none" target-height="21.709991" target-width="29.390015" target-x="530.06" target-y="476.87"></path><path d="M 591.85 483.29 L 587.11 491.14 C 587.11 491.14 585.46 489.37 584.04 487.65 C 583.89 489.71 584.09 489.70 584.21 491.84 C 584.33 493.98 587.56 514.37 584.15 515.64 C 580.74 516.91 563.11 517.04 560.51 516.52 C 557.91 516.00 558.41 497.67 559.39 492.29 C 559.86 489.62 559.68 488.02 559.68 488.02 L 556.76 491.23 L 550.44 485.34 C 550.44 485.34 553.75 476.72 558.64 475.03 C 563.15 473.47 566.65 473.64 567.00 473.47 C 567.23 474.29 567.84 475.79 570.05 475.86 C 571.48 475.90 572.86 475.01 573.10 473.37 C 573.65 473.60 577.06 473.45 581.88 474.68 C 586.53 475.85 588.53 480.15 591.85 483.29 Z" fill="url(#SVGID_26_)" fill-rule="nonzero" group-id="14,46" node-id="438" stroke="none" target-height="43.669983" target-width="41.409973" target-x="550.44" target-y="473.37"></path></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg height="800" node-id="1" sillyvg="true" template-height="800" template-width="800" version="1.1" viewBox="0 0 800 800" width="800" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs node-id="199"><linearGradient gradientUnits="objectBoundingBox" id="SVGID_1_" node-id="16" spreadMethod="pad" x1="255.5446" x2="255.5446" y1="423.7103" y2="326.9221"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_2_" node-id="20" spreadMethod="pad" x1="190.9276" x2="190.9276" y1="481.7022" y2="265.2132"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_3_" node-id="24" spreadMethod="pad" x1="566.7092" x2="566.7092" y1="439.0233" y2="282.5426"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_4_" node-id="28" spreadMethod="pad" x1="629.2341" x2="629.2341" y1="461.6933" y2="291.9527"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_5_" node-id="32" spreadMethod="pad" x1="120.5215" x2="120.5215" y1="503.7719" y2="353.2585"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_6_" node-id="36" spreadMethod="pad" x1="683.1947" x2="683.1947" y1="487.1664" y2="364.0342"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_7_" node-id="40" spreadMethod="pad" x1="126.4852" x2="126.4852" y1="231.4646" y2="166.9233"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_8_" node-id="44" spreadMethod="pad" x1="643.5536" x2="643.5536" y1="194.6441" y2="130.1029"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_9_" node-id="48" spreadMethod="pad" x1="513.7827" x2="513.7827" y1="237.8176" y2="191.1004"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_10_" node-id="52" spreadMethod="pad" x1="400" x2="400" y1="753.3424" y2="401.2135"><stop offset="0.4065" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dae4ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_11_" node-id="58" spreadMethod="pad" x1="190.9295" x2="139.4933" y1="576.7982" y2="515.4989"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_12_" node-id="62" spreadMethod="pad" x1="111.8817" x2="176.0686" y1="456.5079" y2="456.5079"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_13_" node-id="68" spreadMethod="pad" x1="709.7916" x2="662.4262" y1="556.8256" y2="500.3777"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_14_" node-id="72" spreadMethod="pad" x1="636.9999" x2="696.1068" y1="446.0554" y2="446.0554"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_15_" node-id="78" spreadMethod="pad" x1="251.1291" x2="225.6878" y1="457.6549" y2="427.3351"><stop offset="0.0000001438503" stop-color="#eaeff6"></stop><stop offset="1" stop-color="#cddae9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_16_" node-id="82" spreadMethod="pad" x1="212.0306" x2="243.7785" y1="398.1571" y2="398.1571"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_17_" node-id="88" spreadMethod="pad" x1="540.1861" x2="454.2194" y1="698.5102" y2="398.7087"><stop offset="0.0938" stop-color="#ffffff"></stop><stop offset="0.9362" stop-color="#bbcbe0"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_18_" node-id="92" spreadMethod="pad" x1="277.4977" x2="551.926" y1="340.8084" y2="340.8084"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_19_" node-id="96" spreadMethod="pad" x1="306.1491" x2="523.2745" y1="340.8084" y2="340.8084"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#9bb8d1"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_20_" node-id="100" spreadMethod="pad" x1="229.4042" x2="503.8324" y1="380.0766" y2="380.0766"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_21_" node-id="104" spreadMethod="pad" x1="258.0556" x2="475.181" y1="380.0766" y2="380.0766"><stop offset="0" stop-color="#e5ebf4"></stop><stop offset="1" stop-color="#9bb8d1"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_22_" node-id="108" spreadMethod="pad" x1="437.2299" x2="296.0068" y1="373.9526" y2="373.9526"><stop offset="0" stop-color="#c5d6e8"></stop><stop offset="1" stop-color="#f5f9fa"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_23_" node-id="112" spreadMethod="pad" x1="476.251" x2="575.3145" y1="478.6393" y2="478.6393"><stop offset="0" stop-color="#e5ebf4"></stop><stop offset="1" stop-color="#9bb8d1"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_24_" node-id="116" spreadMethod="pad" x1="575.3145" x2="476.251" y1="458.3495" y2="458.3495"><stop offset="0" stop-color="#c5d6e8"></stop><stop offset="1" stop-color="#f5f9fa"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_25_" node-id="120" spreadMethod="pad" x1="575.3145" x2="476.251" y1="493.4074" y2="493.4074"><stop offset="0" stop-color="#c5d6e8"></stop><stop offset="1" stop-color="#f5f9fa"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_26_" node-id="131" spreadMethod="pad" x1="469.7102" x2="497.5167" y1="457.5623" y2="457.5623"><stop offset="0" stop-color="#4ea2f4"></stop><stop offset="0.6903" stop-color="#1e77cf"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_27_" node-id="135" spreadMethod="pad" x1="476.8536" x2="505.3108" y1="483.9986" y2="434.7093"><stop offset="0" stop-color="#78c8ff"></stop><stop offset="0.6903" stop-color="#2a80e2"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_28_" node-id="142" spreadMethod="pad" x1="501.457" x2="501.457" y1="429.2892" y2="410.3631"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_29_" node-id="146" spreadMethod="pad" x1="510.7296" x2="510.7296" y1="450.1812" y2="405.977"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_30_" node-id="150" spreadMethod="pad" x1="503.4694" x2="475.9588" y1="438.7947" y2="438.7947"><stop offset="0" stop-color="#171c61"></stop><stop offset="0.7869" stop-color="#272f7c"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_31_" node-id="154" spreadMethod="pad" x1="488.7885" x2="503.6449" y1="439.0101" y2="439.0101"><stop offset="0" stop-color="#171c61"></stop><stop offset="0.7869" stop-color="#272f7c"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_32_" node-id="159" spreadMethod="pad" x1="520.2191" x2="520.2191" y1="428.9968" y2="410.0707"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_33_" node-id="163" spreadMethod="pad" x1="489.372" x2="467.167" y1="431.6063" y2="431.6063"><stop offset="0" stop-color="#171c61"></stop><stop offset="0.7869" stop-color="#272f7c"></stop></linearGradient></defs><g node-id="531"><g node-id="563"><path d="M 270.00 330.33 L 270.00 326.92 L 240.50 326.92 L 240.50 330.88 L 234.02 330.88 L 234.02 423.71 L 277.07 423.71 L 277.07 330.33 L 270.00 330.33 Z M 273.34 413.07 L 237.30 413.07 L 237.30 410.32 L 273.34 410.32 L 273.34 413.07 Z M 273.34 400.39 L 237.30 400.39 L 237.30 397.64 L 273.34 397.64 L 273.34 400.39 Z M 273.34 387.71 L 237.30 387.71 L 237.30 384.96 L 273.34 384.96 L 273.34 387.71 Z M 273.34 375.37 L 237.30 375.37 L 237.30 372.62 L 273.34 372.62 L 273.34 375.37 Z M 273.34 363.06 L 237.30 363.06 L 237.30 360.31 L 273.34 360.31 L 273.34 363.06 Z M 273.34 350.38 L 237.30 350.38 L 237.30 347.63 L 273.34 347.63 L 273.34 350.38 Z M 273.34 338.04 L 237.30 338.04 L 237.30 335.29 L 273.34 335.29 L 273.34 338.04 Z" fill="url(#SVGID_1_)" fill-rule="nonzero" group-id="11,43" node-id="412" stroke="none" target-height="96.78998" target-width="43.050003" target-x="234.02" target-y="326.92"></path><path d="M 212.02 382.14 L 212.02 273.95 L 179.27 273.95 L 179.27 265.21 L 165.40 265.21 L 165.40 318.54 L 161.67 318.54 L 161.67 481.70 L 220.18 481.70 L 220.18 382.14 L 212.02 382.14 Z M 187.52 413.95 L 179.26 413.95 L 179.26 405.94 L 187.52 405.94 L 187.52 413.95 Z M 187.52 401.42 L 179.26 401.42 L 179.26 393.41 L 187.52 393.41 L 187.52 401.42 Z M 187.52 388.94 L 179.26 388.94 L 179.26 380.93 L 187.52 380.93 L 187.52 388.94 Z M 187.52 376.51 L 179.26 376.51 L 179.26 368.50 L 187.52 368.50 L 187.52 376.51 Z M 187.52 363.98 L 179.26 363.98 L 179.26 355.97 L 187.52 355.97 L 187.52 363.98 Z M 187.52 338.97 L 179.26 338.97 L 179.26 330.96 L 187.52 330.96 L 187.52 338.97 Z M 187.52 326.45 L 179.26 326.45 L 179.26 318.44 L 187.52 318.44 L 187.52 326.45 Z M 187.52 313.97 L 179.26 313.97 L 179.26 305.96 L 187.52 305.96 L 187.52 313.97 Z M 187.52 301.53 L 179.26 301.53 L 179.26 293.52 L 187.52 293.52 L 187.52 301.53 Z M 187.52 289.00 L 179.26 289.00 L 179.26 281.00 L 187.52 281.00 L 187.52 289.00 Z M 199.87 413.95 L 191.61 413.95 L 191.61 405.94 L 199.87 405.94 L 199.87 413.95 Z M 199.87 401.42 L 191.61 401.42 L 191.61 393.41 L 199.87 393.41 L 199.87 401.42 Z M 199.87 388.94 L 191.61 388.94 L 191.61 380.93 L 199.87 380.93 L 199.87 388.94 Z M 199.87 376.51 L 191.61 376.51 L 191.61 368.50 L 199.87 368.50 L 199.87 376.51 Z M 199.87 363.98 L 191.61 363.98 L 191.61 355.97 L 199.87 355.97 L 199.87 363.98 Z M 199.87 338.97 L 191.61 338.97 L 191.61 330.96 L 199.87 330.96 L 199.87 338.97 Z M 199.87 326.45 L 191.61 326.45 L 191.61 318.44 L 199.87 318.44 L 199.87 326.45 Z M 199.87 313.97 L 191.61 313.97 L 191.61 305.96 L 199.87 305.96 L 199.87 313.97 Z M 199.87 301.53 L 191.61 301.53 L 191.61 293.52 L 199.87 293.52 L 199.87 301.53 Z M 199.87 289.00 L 191.61 289.00 L 191.61 281.00 L 199.87 281.00 L 199.87 289.00 Z" fill="url(#SVGID_2_)" fill-rule="nonzero" group-id="11,43" node-id="414" stroke="none" target-height="216.49002" target-width="58.509995" target-x="161.67" target-y="265.21"></path><path d="M 534.33 439.02 C 534.69 434.37 534.33 282.54 534.33 282.54 L 552.86 282.54 L 552.86 316.25 L 582.36 316.25 L 582.36 386.70 L 599.09 386.70 L 599.09 439.02 L 534.33 439.02 Z" fill="url(#SVGID_3_)" fill-rule="nonzero" group-id="11,43" node-id="416" stroke="none" target-height="156.47995" target-width="64.76001" target-x="534.33" target-y="282.54"></path><path d="M 655.54 370.88 L 655.54 366.03 L 650.54 366.03 L 650.54 323.70 L 638.34 323.70 L 638.34 319.00 L 630.11 319.00 L 630.11 312.09 L 625.82 312.09 L 625.82 291.95 L 622.73 291.95 L 622.73 312.23 L 618.79 312.23 L 618.79 319.14 L 606.59 319.14 L 606.59 330.46 L 599.54 330.46 L 599.54 461.69 L 658.92 461.69 L 658.92 370.87 L 655.54 370.87 Z M 610.03 423.66 L 606.01 423.66 L 606.01 408.42 L 610.03 408.42 L 610.03 423.66 Z M 610.03 405.01 L 606.01 405.01 L 606.01 389.77 L 610.03 389.77 L 610.03 405.01 Z M 610.03 386.36 L 606.01 386.36 L 606.01 371.12 L 610.03 371.12 L 610.03 386.36 Z M 610.03 367.37 L 606.01 367.37 L 606.01 352.13 L 610.03 352.13 L 610.03 367.37 Z M 610.03 348.39 L 606.01 348.39 L 606.01 333.15 L 610.03 333.15 L 610.03 348.39 Z M 618.31 423.66 L 614.29 423.66 L 614.29 408.42 L 618.31 408.42 L 618.31 423.66 Z M 618.31 405.01 L 614.29 405.01 L 614.29 389.77 L 618.31 389.77 L 618.31 405.01 Z M 618.31 386.36 L 614.29 386.36 L 614.29 371.12 L 618.31 371.12 L 618.31 386.36 Z M 618.31 367.37 L 614.29 367.37 L 614.29 352.13 L 618.31 352.13 L 618.31 367.37 Z M 618.31 348.39 L 614.29 348.39 L 614.29 333.15 L 618.31 333.15 L 618.31 348.39 Z M 626.59 423.66 L 622.57 423.66 L 622.57 408.42 L 626.59 408.42 L 626.59 423.66 Z M 626.59 405.01 L 622.57 405.01 L 622.57 389.77 L 626.59 389.77 L 626.59 405.01 Z M 626.59 386.36 L 622.57 386.36 L 622.57 371.12 L 626.59 371.12 L 626.59 386.36 Z M 626.59 367.37 L 622.57 367.37 L 622.57 352.13 L 626.59 352.13 L 626.59 367.37 Z M 626.59 348.39 L 622.57 348.39 L 622.57 333.15 L 626.59 333.15 L 626.59 348.39 Z M 634.87 423.66 L 630.85 423.66 L 630.85 408.42 L 634.87 408.42 L 634.87 423.66 Z M 634.87 405.01 L 630.85 405.01 L 630.85 389.77 L 634.87 389.77 L 634.87 405.01 Z M 634.87 386.36 L 630.85 386.36 L 630.85 371.12 L 634.87 371.12 L 634.87 386.36 Z M 634.87 367.37 L 630.85 367.37 L 630.85 352.13 L 634.87 352.13 L 634.87 367.37 Z M 634.87 348.39 L 630.85 348.39 L 630.85 333.15 L 634.87 333.15 L 634.87 348.39 Z M 643.15 423.66 L 639.13 423.66 L 639.13 408.42 L 643.15 408.42 L 643.15 423.66 Z M 643.15 405.01 L 639.13 405.01 L 639.13 389.77 L 643.15 389.77 L 643.15 405.01 Z M 643.15 386.36 L 639.13 386.36 L 639.13 371.12 L 643.15 371.12 L 643.15 386.36 Z M 643.15 367.37 L 639.13 367.37 L 639.13 352.13 L 643.15 352.13 L 643.15 367.37 Z M 643.15 348.39 L 639.13 348.39 L 639.13 333.15 L 643.15 333.15 L 643.15 348.39 Z" fill="url(#SVGID_4_)" fill-rule="nonzero" group-id="11,43" node-id="418" stroke="none" target-height="169.74002" target-width="59.380005" target-x="599.54" target-y="291.95"></path><path d="M 93.90 503.77 L 93.90 414.23 L 104.15 414.23 L 104.15 368.53 L 139.41 353.26 L 139.41 413.51 L 147.15 413.51 L 147.15 503.77 Z" fill="url(#SVGID_5_)" fill-rule="nonzero" group-id="11,43" node-id="420" stroke="none" target-height="150.50998" target-width="53.249992" target-x="93.9" target-y="353.26"></path><path d="M 698.67 487.17 L 667.72 487.17 L 667.72 364.03 L 698.67 379.01 Z" fill="url(#SVGID_6_)" fill-rule="nonzero" group-id="11,43" node-id="422" stroke="none" target-height="123.140015" target-width="30.950012" target-x="667.72" target-y="364.03"></path><path d="M 88.71 190.36 C 88.71 190.36 98.05 164.88 121.01 174.88 C 126.31 169.50 132.87 165.59 141.74 167.35 C 150.61 169.12 156.33 175.76 158.27 180.18 C 161.05 180.05 183.31 180.79 183.31 203.88 C 183.31 226.97 156.37 226.53 154.42 224.70 C 152.02 226.84 140.48 238.45 126.48 225.20 C 123.45 227.79 113.55 238.76 97.90 223.62 C 90.65 226.65 73.42 228.98 70.08 211.19 C 66.74 193.40 83.88 188.38 88.71 190.36 Z" fill="url(#SVGID_7_)" fill-rule="nonzero" group-id="11,43" node-id="424" stroke="none" target-height="73.87999" target-width="116.569984" target-x="66.74" target-y="164.88"></path><path d="M 605.78 153.54 C 605.78 153.54 615.12 128.06 638.08 138.06 C 643.38 132.68 649.94 128.77 658.81 130.53 C 667.68 132.30 673.40 138.94 675.34 143.36 C 678.12 143.23 700.38 143.97 700.38 167.06 C 700.38 190.15 673.44 189.71 671.49 187.88 C 669.09 190.02 657.55 201.63 643.55 188.38 C 640.52 190.97 630.62 201.94 614.97 186.80 C 607.72 189.83 590.49 192.16 587.15 174.37 C 583.81 156.58 600.95 151.56 605.78 153.54 Z" fill="url(#SVGID_8_)" fill-rule="nonzero" group-id="11,43" node-id="426" stroke="none" target-height="73.880005" target-width="116.57007" target-x="583.81" target-y="128.06"></path><path d="M 486.44 208.06 C 486.44 208.06 493.20 189.61 509.82 196.86 C 513.66 192.96 518.40 190.13 524.83 191.41 C 531.25 192.69 535.39 197.50 536.79 200.69 C 538.80 200.60 554.92 201.13 554.92 217.84 C 554.92 234.55 535.42 234.23 534.01 232.91 C 532.27 234.46 523.92 242.86 513.78 233.28 C 511.59 235.15 504.42 243.10 493.10 232.14 C 487.85 234.33 475.38 236.02 472.96 223.14 C 470.54 210.26 482.94 206.63 486.44 208.06 Z" fill="url(#SVGID_9_)" fill-rule="nonzero" group-id="11,43" node-id="428" stroke="none" target-height="53.48999" target-width="84.379974" target-x="470.54" target-y="189.61"></path><path d="M 770.98 577.28 C 770.98 623.97 731.89 668.76 662.32 701.77 C 592.75 734.79 498.39 753.34 400.00 753.34 C 301.61 753.34 207.25 734.79 137.68 701.77 C 68.11 668.76 29.02 623.97 29.02 577.28 C 29.02 530.59 68.11 485.80 137.68 452.79 C 207.25 419.77 301.61 401.22 400.00 401.22 C 498.39 401.22 592.75 419.77 662.32 452.79 C 731.89 485.80 770.98 530.59 770.98 577.28 Z" fill="url(#SVGID_10_)" fill-rule="nonzero" group-id="11,43" node-id="430" stroke="none" target-height="352.12" target-width="741.95996" target-x="29.019989" target-y="401.22003"></path></g><g node-id="564"><g node-id="567"><path d="M 145.95 555.75 C 145.95 555.75 142.42 560.76 148.32 568.22 C 153.58 574.86 161.89 573.57 164.65 571.44 C 165.50 577.22 172.59 589.40 183.81 582.51 C 194.36 576.04 189.28 566.20 185.91 562.33 C 192.50 560.47 197.41 544.68 182.29 539.23 C 184.53 532.71 184.93 529.76 181.65 523.90 C 178.49 518.26 173.30 517.36 165.02 520.79 L 153.04 525.84 L 145.41 511.60 L 141.33 513.96 L 150.13 527.56 L 138.47 533.41 C 138.47 533.41 128.50 537.31 132.80 548.01 C 136.79 557.92 145.95 555.75 145.95 555.75 Z" fill="url(#SVGID_11_)" fill-rule="nonzero" group-id="11,44,47" node-id="436" stroke="none" target-height="77.79999" target-width="68.91" target-x="128.5" target-y="511.60004"></path><path d="M 125.65 495.03 L 161.71 495.03 C 161.71 495.03 173.36 495.36 175.68 482.05 C 178.23 467.44 167.60 465.43 167.60 465.43 C 167.60 465.43 174.00 462.49 172.61 451.44 C 171.22 440.39 161.49 439.00 157.44 439.51 C 158.10 432.96 159.48 418.13 144.08 417.98 C 129.21 417.83 129.30 432.80 130.41 438.70 C 125.11 438.76 109.10 446.71 120.36 464.15 C 114.23 469.40 111.64 472.43 111.91 480.00 C 112.18 487.58 116.82 495.03 125.65 495.03 Z" fill="url(#SVGID_12_)" fill-rule="nonzero" group-id="11,44,47" node-id="438" stroke="none" target-height="77.53003" target-width="69.13001" target-x="109.1" target-y="417.82996"></path><path d="M 160.82 474.79 L 145.44 484.91 L 145.02 475.13 L 154.75 463.67 L 144.88 471.65 L 143.59 441.75 L 142.65 471.84 L 132.28 463.58 L 142.56 474.91 L 142.24 484.98 L 126.42 473.36 L 142.13 488.61 L 141.33 513.97 L 146.69 513.97 L 145.61 488.77 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="11,44,47" node-id="440" stroke="none" target-height="72.21997" target-width="34.40001" target-x="126.42" target-y="441.75"></path></g><g node-id="568"><path d="M 668.37 537.44 C 668.37 537.44 665.12 542.06 670.55 548.92 C 675.39 555.04 683.05 553.85 685.59 551.88 C 686.37 557.20 692.91 568.41 703.24 562.08 C 712.95 556.12 708.28 547.06 705.17 543.50 C 711.24 541.79 715.76 527.24 701.84 522.23 C 703.91 516.23 704.28 513.51 701.25 508.12 C 698.34 502.93 693.56 502.09 685.94 505.26 L 674.90 509.91 L 667.87 496.80 L 664.12 498.97 L 672.22 511.49 L 661.49 516.88 C 661.49 516.88 652.31 520.47 656.27 530.33 C 659.94 539.44 668.37 537.44 668.37 537.44 Z" fill="url(#SVGID_13_)" fill-rule="nonzero" group-id="11,44,48" node-id="445" stroke="none" target-height="71.609985" target-width="63.450012" target-x="652.31" target-y="496.8"></path><path d="M 649.68 481.53 L 682.88 481.53 C 682.88 481.53 693.61 481.84 695.74 469.58 C 698.08 456.13 688.30 454.28 688.30 454.28 C 688.30 454.28 694.20 451.57 692.91 441.40 C 691.62 431.23 682.67 429.94 678.94 430.42 C 679.55 424.39 680.82 410.73 666.64 410.59 C 652.95 410.45 653.03 424.23 654.05 429.67 C 649.17 429.72 634.42 437.04 644.80 453.11 C 639.16 457.94 636.77 460.74 637.02 467.70 C 637.27 474.66 641.54 481.53 649.68 481.53 Z" fill="url(#SVGID_14_)" fill-rule="nonzero" group-id="11,44,48" node-id="447" stroke="none" target-height="71.389984" target-width="63.660095" target-x="634.42" target-y="410.45"></path><path d="M 682.07 462.89 L 667.90 472.21 L 667.52 463.20 L 676.47 452.65 L 667.38 460.00 L 666.20 432.46 L 665.33 460.18 L 655.78 452.57 L 665.25 463.00 L 664.96 472.27 L 650.39 461.57 L 664.85 475.62 L 664.12 498.97 L 669.05 498.97 L 668.06 475.76 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="11,44,48" node-id="449" stroke="none" target-height="66.51001" target-width="31.679993" target-x="650.39" target-y="432.46"></path></g><g node-id="569"><path d="M 228.88 447.24 C 228.88 447.24 227.13 449.72 230.05 453.41 C 232.65 456.70 236.76 456.06 238.13 455.00 C 238.55 457.86 242.06 463.88 247.61 460.48 C 252.83 457.28 250.32 452.41 248.65 450.50 C 251.91 449.58 254.34 441.77 246.86 439.08 C 247.97 435.86 248.17 434.40 246.54 431.50 C 244.98 428.71 242.41 428.26 238.32 429.96 L 232.39 432.46 L 228.62 425.42 L 226.60 426.59 L 230.95 433.31 L 225.18 436.20 C 225.18 436.20 220.25 438.13 222.38 443.42 C 224.35 448.32 228.88 447.24 228.88 447.24 Z" fill="url(#SVGID_15_)" fill-rule="nonzero" group-id="11,44,49" node-id="454" stroke="none" target-height="38.45996" target-width="34.08998" target-x="220.25002" target-y="425.42"></path><path d="M 218.84 417.21 L 236.67 417.21 C 236.67 417.21 242.43 417.37 243.58 410.79 C 244.84 403.56 239.58 402.57 239.58 402.57 C 239.58 402.57 242.75 401.11 242.06 395.65 C 241.37 390.19 236.56 389.50 234.56 389.75 C 234.89 386.51 235.57 379.17 227.95 379.10 C 220.59 379.03 220.64 386.43 221.19 389.35 C 218.57 389.38 210.65 393.31 216.22 401.94 C 213.19 404.53 211.90 406.04 212.04 409.78 C 212.18 413.52 214.47 417.21 218.84 417.21 Z" fill="url(#SVGID_16_)" fill-rule="nonzero" group-id="11,44,49" node-id="456" stroke="none" target-height="38.339996" target-width="34.190002" target-x="210.65" target-y="379.03"></path><path d="M 236.24 407.20 L 228.63 412.21 L 228.42 407.37 L 233.23 401.70 L 228.35 405.65 L 227.72 390.86 L 227.25 405.74 L 222.12 401.66 L 227.20 407.26 L 227.05 412.24 L 219.22 406.49 L 226.99 414.04 L 226.60 426.58 L 229.25 426.58 L 228.71 414.11 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="11,44,49" node-id="458" stroke="none" target-height="35.71997" target-width="17.020004" target-x="219.22002" target-y="390.86"></path></g></g><g node-id="565"><path d="M 575.31 509.15 L 735.15 617.69 L 414.71 734.49 L 252.65 456.51 L 491.68 449.37 Z" fill="url(#SVGID_17_)" fill-rule="nonzero" group-id="11,45" node-id="464" stroke="none" target-height="285.12" target-width="482.50006" target-x="252.64998" target-y="449.37"></path><path d="M 551.92 340.81 C 551.92 416.59 490.49 478.02 414.71 478.02 C 338.93 478.02 277.50 416.59 277.50 340.81 C 277.50 265.03 338.93 203.60 414.71 203.60 C 490.49 203.60 551.92 265.03 551.92 340.81 Z" fill="url(#SVGID_18_)" fill-rule="nonzero" group-id="11,45" node-id="466" stroke="none" target-height="274.42004" target-width="274.41998" target-x="277.5" target-y="203.59999"></path><path d="M 523.27 340.81 C 523.27 400.77 474.67 449.37 414.71 449.37 C 354.75 449.37 306.15 400.77 306.15 340.81 C 306.15 280.85 354.75 232.25 414.71 232.25 C 474.67 232.25 523.27 280.85 523.27 340.81 Z" fill="url(#SVGID_19_)" fill-rule="nonzero" group-id="11,45" node-id="468" stroke="none" target-height="217.12004" target-width="217.12003" target-x="306.15" target-y="232.24998"></path><path d="M 503.83 380.08 C 503.83 455.86 442.40 517.29 366.62 517.29 C 290.84 517.29 229.41 455.86 229.41 380.08 C 229.41 304.30 290.84 242.87 366.62 242.87 C 442.40 242.87 503.83 304.30 503.83 380.08 Z" fill="url(#SVGID_20_)" fill-rule="nonzero" group-id="11,45" node-id="470" stroke="none" target-height="274.42" target-width="274.42004" target-x="229.41" target-y="242.86996"></path><path d="M 475.18 380.08 C 475.18 440.04 426.58 488.64 366.62 488.64 C 306.66 488.64 258.06 440.04 258.06 380.08 C 258.06 320.12 306.66 271.52 366.62 271.52 C 426.58 271.52 475.18 320.12 475.18 380.08 Z" fill="url(#SVGID_21_)" fill-rule="nonzero" group-id="11,45" node-id="472" stroke="none" target-height="217.12" target-width="217.12" target-x="258.06" target-y="271.52"></path><path d="M 375.14 311.63 L 389.60 340.93 C 390.98 343.73 393.66 345.68 396.76 346.13 L 429.09 350.83 C 436.88 351.96 440.00 361.54 434.36 367.04 L 410.97 389.84 C 408.73 392.02 407.71 395.17 408.24 398.25 L 413.76 430.45 C 415.09 438.21 406.94 444.13 399.97 440.47 L 371.05 425.27 C 368.28 423.81 364.97 423.81 362.21 425.27 L 333.29 440.47 C 326.32 444.14 318.17 438.22 319.50 430.45 L 325.02 398.25 C 325.55 395.17 324.53 392.02 322.29 389.84 L 298.90 367.04 C 293.26 361.54 296.37 351.96 304.17 350.83 L 336.50 346.13 C 339.60 345.68 342.27 343.74 343.66 340.93 L 358.12 311.63 C 361.58 304.57 371.65 304.57 375.14 311.63 Z" fill="url(#SVGID_22_)" fill-rule="nonzero" group-id="11,45" node-id="474" stroke="none" target-height="139.57" target-width="146.73999" target-x="293.26" target-y="304.57"></path><path d="M 525.78 425.92 C 498.42 425.92 476.25 435.87 476.25 448.13 L 476.25 509.15 C 476.25 521.42 498.43 531.36 525.78 531.36 C 553.14 531.36 575.31 521.41 575.31 509.15 L 575.31 448.13 C 575.31 435.86 553.14 425.92 525.78 425.92 Z" fill="url(#SVGID_23_)" fill-rule="nonzero" group-id="11,45" node-id="476" stroke="none" target-height="105.43997" target-width="99.06" target-x="476.25" target-y="425.92"></path><path d="M 525.78 470.19 C 549.95 470.19 565.47 464.26 575.31 457.51 L 575.31 448.13 C 575.31 447.87 575.29 447.62 575.27 447.36 C 567.34 454.45 552.56 462.19 525.78 462.19 C 497.71 462.19 483.47 453.78 476.39 446.50 C 476.30 447.04 476.24 447.58 476.24 448.12 L 476.24 456.93 C 485.63 463.93 500.96 470.19 525.78 470.19 Z" fill="url(#SVGID_24_)" fill-rule="nonzero" group-id="11,45" node-id="478" stroke="none" target-height="23.690002" target-width="99.07001" target-x="476.24" target-y="446.5"></path><path d="M 476.25 481.49 L 476.25 492.07 C 485.63 499.07 500.96 505.33 525.78 505.33 C 549.95 505.33 565.47 499.40 575.31 492.65 L 575.31 482.54 C 567.41 489.62 552.65 497.33 525.78 497.33 C 497.52 497.33 483.27 488.80 476.25 481.49 Z" fill="url(#SVGID_25_)" fill-rule="nonzero" group-id="11,45" node-id="480" stroke="none" target-height="23.839996" target-width="99.06" target-x="476.25" target-y="481.49"></path></g><g node-id="566"><path d="M 479.91 475.24 C 479.91 475.24 480.67 476.27 478.46 480.00 C 481.82 481.16 486.25 479.78 486.25 479.78 L 486.01 473.57 L 479.91 475.24 Z" fill="#ffbe92" fill-rule="nonzero" group-id="11,46" node-id="485" stroke="none" target-height="7.589966" target-width="7.7900085" target-x="478.46" target-y="473.57"></path><path d="M 488.25 483.52 L 468.71 484.52 C 468.71 484.52 467.42 478.71 475.12 478.55 C 476.68 478.52 477.88 476.70 479.16 476.69 C 482.23 479.19 487.30 478.50 487.30 478.50 L 488.25 483.52 Z" fill="#f8b62d" fill-rule="nonzero" group-id="11,46" node-id="487" stroke="none" target-height="7.829956" target-width="20.830017" target-x="467.41998" target-y="476.69003"></path><path d="M 488.71 484.78 L 480.14 485.98 L 479.74 484.43 L 468.73 485.70 L 468.44 484.39 L 488.20 481.90 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="11,46" node-id="489" stroke="none" target-height="4.0799866" target-width="20.27002" target-x="468.43997" target-y="481.90002"></path><path d="M 470.10 478.08 C 470.10 478.08 471.41 479.60 468.30 482.65 C 471.24 484.62 475.03 484.09 475.03 484.09 L 476.42 478.03 L 470.10 478.08 Z" fill="#ffbe92" fill-rule="nonzero" group-id="11,46" node-id="491" stroke="none" target-height="6.5899963" target-width="8.120026" target-x="468.3" target-y="478.03"></path><path d="M 476.89 488.26 L 457.34 487.80 C 457.34 487.80 456.53 481.90 464.22 482.33 C 465.77 482.42 467.12 480.69 468.40 480.77 C 471.25 483.50 476.36 483.18 476.36 483.18 L 476.89 488.26 Z" fill="#f8b62d" fill-rule="nonzero" group-id="11,46" node-id="493" stroke="none" target-height="7.569977" target-width="20.360046" target-x="456.53" target-y="480.69"></path><path d="M 477.24 489.56 L 468.61 490.12 L 468.34 488.54 L 457.27 488.99 L 457.09 487.65 L 476.97 486.64 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="11,46" node-id="495" stroke="none" target-height="3.4799805" target-width="20.149994" target-x="457.09" target-y="486.64"></path><path d="M 497.52 442.11 C 497.52 442.11 472.71 435.41 470.35 441.15 C 467.99 446.89 472.84 456.16 475.25 463.11 C 477.66 470.06 479.48 476.28 479.48 476.28 L 487.23 475.56 L 484.36 451.29 C 484.36 451.29 486.03 446.98 491.85 446.50 C 497.66 446.04 497.52 442.11 497.52 442.11 Z" fill="url(#SVGID_26_)" fill-rule="nonzero" group-id="11,46" node-id="497" stroke="none" target-height="40.869995" target-width="29.669983" target-x="467.99" target-y="435.41"></path><path d="M 506.47 438.67 C 506.47 438.67 481.22 435.38 478.27 439.48 C 475.32 443.58 469.48 479.74 469.48 479.74 L 475.97 482.33 C 475.97 482.33 485.92 455.34 488.27 454.10 C 490.28 453.04 496.17 454.18 501.76 455.84 C 507.35 457.50 516.88 459.47 521.20 448.93 C 519.24 437.58 506.47 438.67 506.47 438.67 Z" fill="url(#SVGID_27_)" fill-rule="nonzero" group-id="11,46" node-id="499" stroke="none" target-height="46.94995" target-width="51.72" target-x="469.48" target-y="435.38"></path><path d="M 502.87 392.84 C 502.87 392.84 499.56 397.19 501.88 404.08 C 502.47 405.40 503.61 407.69 506.75 405.96 C 507.02 405.90 507.20 406.29 507.27 406.66 C 507.34 407.03 508.19 413.38 508.19 413.38 L 517.23 413.43 C 517.23 413.43 513.04 397.70 513.12 394.61 C 513.15 393.02 511.46 390.24 508.11 390.09 C 504.76 389.94 502.87 392.84 502.87 392.84 Z" fill="#ffbe92" fill-rule="nonzero" group-id="11,46" node-id="501" stroke="none" target-height="23.48996" target-width="17.669983" target-x="499.56" target-y="389.94003"></path><path d="M 505.31 387.02 C 505.31 387.02 504.39 385.29 501.86 386.55 C 499.33 387.81 500.54 390.04 500.63 390.60 C 500.72 391.16 500.37 391.59 499.62 391.29 C 498.87 390.98 497.54 390.77 496.62 392.47 C 495.70 394.17 497.65 398.68 500.61 398.23 C 503.57 397.78 505.05 396.27 506.11 395.19 C 507.17 394.11 509.23 392.83 509.53 394.10 C 509.83 395.37 509.75 398.04 510.34 397.65 C 510.89 397.28 510.57 394.55 512.21 394.54 C 513.85 394.54 513.73 396.90 512.65 398.17 C 512.19 398.71 512.22 398.61 512.38 399.16 C 512.54 399.71 512.50 400.09 513.09 400.74 C 513.69 401.40 513.93 401.75 514.42 400.80 C 514.91 399.85 515.83 398.03 515.34 394.18 C 515.14 393.10 515.48 393.03 516.04 392.42 C 516.60 391.81 517.41 390.85 516.59 389.47 C 515.77 388.08 514.98 388.26 513.96 388.30 C 512.93 388.35 512.98 387.97 512.97 387.36 C 512.96 386.75 512.21 384.40 510.18 384.45 C 508.15 384.49 507.28 385.64 506.76 386.61 C 506.27 387.59 505.63 387.34 505.31 387.02 Z" fill="#171c61" fill-rule="nonzero" group-id="11,46" node-id="503" stroke="none" target-height="17.350067" target-width="21.70996" target-x="495.7" target-y="384.39996"></path><path d="M 497.15 423.09 C 497.15 423.09 496.81 426.86 495.89 427.75 C 494.97 428.64 488.40 434.13 484.89 435.79 C 485.59 437.83 486.04 438.09 486.04 438.09 C 486.04 438.09 495.68 435.41 498.81 432.28 C 499.90 431.07 501.89 428.42 502.45 424.49 C 499.96 421.99 497.15 423.09 497.15 423.09 Z" fill="#ffbe92" fill-rule="nonzero" group-id="11,46" node-id="505" stroke="none" target-height="16.100037" target-width="17.559998" target-x="484.89" target-y="421.99"></path><path d="M 495.89 424.79 L 503.79 429.29 C 503.79 429.29 510.01 415.17 505.18 410.76 C 503.65 409.47 499.48 411.33 497.95 416.03 C 496.42 420.72 495.89 424.79 495.89 424.79 Z" fill="url(#SVGID_28_)" fill-rule="nonzero" group-id="11,46" node-id="507" stroke="none" target-height="19.820007" target-width="14.119995" target-x="495.89" target-y="409.47"></path><path d="M 523.94 412.05 C 523.94 412.05 520.57 405.58 515.34 406.00 C 514.62 409.64 510.48 409.80 507.57 408.81 C 505.44 409.10 504.24 409.24 502.78 411.39 C 501.32 413.54 501.47 414.05 500.47 418.58 C 499.75 423.20 501.56 427.12 500.78 431.34 C 500.01 435.57 496.03 436.22 498.10 437.98 C 500.17 439.74 513.16 440.72 519.13 449.53 C 520.97 452.25 522.42 446.10 522.45 441.46 C 522.49 436.81 520.07 424.82 523.94 412.05 Z" fill="url(#SVGID_29_)" fill-rule="nonzero" group-id="11,46" node-id="509" stroke="none" target-height="46.670013" target-width="27.910034" target-x="496.02997" target-y="405.58"></path><path d="M 475.96 437.39 L 485.28 437.14 L 503.47 438.35 L 488.79 440.45 Z" fill="url(#SVGID_30_)" fill-rule="nonzero" group-id="11,46" node-id="511" stroke="none" target-height="3.3099976" target-width="27.51001" target-x="475.96" target-y="437.14"></path><path d="M 503.64 437.57 L 488.79 439.62 L 488.79 440.45 L 503.64 438.40 Z" fill="url(#SVGID_31_)" fill-rule="nonzero" group-id="11,46" node-id="513" stroke="none" target-height="2.8799744" target-width="14.850006" target-x="488.79" target-y="437.57004"></path><path d="M 516.96 423.22 C 516.96 423.22 514.77 430.25 514.13 430.47 C 513.49 430.69 503.01 435.09 501.77 435.15 C 500.53 435.21 495.04 432.60 492.94 438.09 C 492.81 438.66 492.68 439.05 494.22 438.92 C 495.76 438.79 498.09 438.21 499.71 438.72 C 501.33 439.23 502.01 438.34 503.48 438.34 C 504.95 438.34 516.69 437.32 518.22 435.85 C 519.75 434.38 521.60 431.76 522.56 426.15 C 518.66 423.67 516.96 423.22 516.96 423.22 Z" fill="#ffbe92" fill-rule="nonzero" group-id="11,46" node-id="515" stroke="none" target-height="16.00998" target-width="29.880005" target-x="492.68" target-y="423.22003"></path><path d="M 514.66 424.50 L 522.56 429.00 C 522.56 429.00 528.78 414.88 523.95 410.47 C 522.42 409.18 518.25 411.04 516.72 415.74 C 515.18 420.43 514.66 424.50 514.66 424.50 Z" fill="url(#SVGID_32_)" fill-rule="nonzero" group-id="11,46" node-id="517" stroke="none" target-height="19.820007" target-width="14.120056" target-x="514.66" target-y="409.18"></path><path d="M 468.23 422.88 L 484.37 423.20 C 484.83 423.21 485.23 423.52 485.35 423.97 L 489.34 439.02 C 489.52 439.71 488.96 440.38 488.25 440.32 L 472.69 439.00 C 472.27 438.96 471.92 438.68 471.79 438.29 L 467.22 424.24 C 467.00 423.56 467.51 422.87 468.23 422.88 Z" fill="url(#SVGID_33_)" fill-rule="nonzero" group-id="11,46" node-id="519" stroke="none" target-height="17.51004" target-width="22.52002" target-x="467" target-y="422.86996"></path></g></g></svg>
|