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="210"><linearGradient gradientUnits="objectBoundingBox" id="SVGID_1_" node-id="17" spreadMethod="pad" x1="255.7471" x2="255.7471" y1="423.9034" y2="327.1151"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_2_" node-id="21" spreadMethod="pad" x1="191.1301" x2="191.1301" y1="481.8953" y2="265.4063"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_3_" node-id="25" spreadMethod="pad" x1="566.9117" x2="566.9117" y1="439.2164" y2="282.7356"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_4_" node-id="29" spreadMethod="pad" x1="629.4365" x2="629.4365" y1="461.8864" y2="292.1458"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_5_" node-id="33" spreadMethod="pad" x1="120.724" x2="120.724" y1="503.9649" y2="353.4515"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_6_" node-id="37" spreadMethod="pad" x1="683.3972" x2="683.3972" y1="487.3595" y2="364.2273"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_7_" node-id="41" spreadMethod="pad" x1="126.6876" x2="126.6876" y1="231.6576" y2="167.1163"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_8_" node-id="45" spreadMethod="pad" x1="643.7561" x2="643.7561" y1="194.8372" y2="130.2959"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_9_" node-id="49" spreadMethod="pad" x1="411.3469" x2="411.3469" y1="222.7456" y2="176.0284"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_10_" node-id="53" spreadMethod="pad" x1="400.2025" x2="400.2025" y1="753.5355" y2="401.4066"><stop offset="0.4065" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dae4ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_11_" node-id="59" spreadMethod="pad" x1="191.132" x2="139.6958" y1="576.9913" y2="515.692"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_12_" node-id="63" spreadMethod="pad" x1="112.0842" x2="176.271" y1="456.7009" y2="456.7009"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_13_" node-id="69" spreadMethod="pad" x1="709.9941" x2="662.6287" y1="557.0187" y2="500.5708"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_14_" node-id="73" spreadMethod="pad" x1="637.2023" x2="696.3093" y1="446.2484" y2="446.2484"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_15_" node-id="79" spreadMethod="pad" x1="251.3315" x2="225.8902" y1="457.848" y2="427.5282"><stop offset="0.0000001438503" stop-color="#eaeff6"></stop><stop offset="1" stop-color="#cddae9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_16_" node-id="83" spreadMethod="pad" x1="212.233" x2="243.981" y1="398.3502" y2="398.3502"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_17_" node-id="89" spreadMethod="pad" x1="521.0083" x2="451.7175" y1="707.6402" y2="465.9944"><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="93" spreadMethod="pad" x1="273.1758" x2="438.6055" y1="509.2187" y2="509.2187"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_19_" node-id="97" spreadMethod="pad" x1="320.8766" x2="452.1593" y1="244.2347" y2="471.6229"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_20_" node-id="101" spreadMethod="pad" x1="327.7525" x2="530.1508" y1="332.1114" y2="332.1114"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_21_" node-id="105" spreadMethod="pad" x1="491.988" x2="388.6532" y1="326.9745" y2="326.9745"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#a1bbd3"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_22_" node-id="109" spreadMethod="pad" x1="476.479" x2="507.4971" y1="270.9212" y2="270.9212"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_23_" node-id="114" spreadMethod="pad" x1="474.928" x2="545.0728" y1="255.3485" y2="255.3485"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#9bb8d1"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_24_" node-id="119" spreadMethod="pad" x1="475.5411" x2="544.6396" y1="252.2649" y2="252.2649"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_25_" node-id="124" spreadMethod="pad" x1="475.5845" x2="571.824" y1="239.9985" y2="239.9985"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#9bb8d1"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_26_" node-id="129" spreadMethod="pad" x1="475.525" x2="572.3337" y1="237.503" y2="237.503"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_27_" node-id="133" spreadMethod="pad" x1="390.3244" x2="390.3244" y1="502.295" y2="458.1057"><stop offset="0" stop-color="#e5ebf4"></stop><stop offset="1" stop-color="#9bb8d1"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_28_" node-id="137" spreadMethod="pad" x1="361.9835" x2="361.9835" y1="517.6196" y2="406.4716"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_29_" node-id="141" spreadMethod="pad" x1="295.3315" x2="363.7124" y1="462.0454" y2="462.0454"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_30_" node-id="145" spreadMethod="pad" x1="326.0265" x2="343.3819" y1="447.2749" y2="447.2749"><stop offset="0" stop-color="#e5ebf4"></stop><stop offset="1" stop-color="#9bb8d1"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_31_" node-id="149" spreadMethod="pad" x1="332.0732" x2="332.0732" y1="457.4296" y2="437.1202"><stop offset="0" stop-color="#e5ebf4"></stop><stop offset="1" stop-color="#9bb8d1"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_32_" node-id="153" spreadMethod="pad" x1="273.1758" x2="365.3068" y1="521.6591" y2="521.6591"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_33_" node-id="157" spreadMethod="pad" x1="365.3068" x2="438.6055" y1="522.8592" y2="522.8592"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_34_" node-id="169" spreadMethod="pad" x1="584.1464" x2="561.4282" y1="611.1307" y2="548.7132"><stop offset="0" stop-color="#78c8ff"></stop><stop offset="0.6903" stop-color="#2a80e2"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_35_" node-id="175" spreadMethod="pad" x1="571.062" x2="571.062" y1="555.8657" y2="506.6671"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient></defs><g node-id="570"><g node-id="601"><path d="M 270.20 330.52 L 270.20 327.11 L 240.70 327.11 L 240.70 331.07 L 234.22 331.07 L 234.22 423.90 L 277.27 423.90 L 277.27 330.52 L 270.20 330.52 Z M 273.54 413.26 L 237.50 413.26 L 237.50 410.51 L 273.54 410.51 L 273.54 413.26 Z M 273.54 400.58 L 237.50 400.58 L 237.50 397.83 L 273.54 397.83 L 273.54 400.58 Z M 273.54 387.91 L 237.50 387.91 L 237.50 385.16 L 273.54 385.16 L 273.54 387.91 Z M 273.54 375.56 L 237.50 375.56 L 237.50 372.81 L 273.54 372.81 L 273.54 375.56 Z M 273.54 363.25 L 237.50 363.25 L 237.50 360.50 L 273.54 360.50 L 273.54 363.25 Z M 273.54 350.57 L 237.50 350.57 L 237.50 347.82 L 273.54 347.82 L 273.54 350.57 Z M 273.54 338.23 L 237.50 338.23 L 237.50 335.48 L 273.54 335.48 L 273.54 338.23 Z" fill="url(#SVGID_1_)" fill-rule="nonzero" group-id="12,43" node-id="436" stroke="none" target-height="96.79001" target-width="43.050003" target-x="234.21999" target-y="327.11"></path><path d="M 212.22 382.33 L 212.22 274.15 L 179.47 274.15 L 179.47 265.41 L 165.61 265.41 L 165.61 318.74 L 161.88 318.74 L 161.88 481.90 L 220.39 481.90 L 220.39 382.34 L 212.22 382.34 Z M 187.72 414.14 L 179.46 414.14 L 179.46 406.13 L 187.72 406.13 L 187.72 414.14 Z M 187.72 401.61 L 179.46 401.61 L 179.46 393.60 L 187.72 393.60 L 187.72 401.61 Z M 187.72 389.14 L 179.46 389.14 L 179.46 381.13 L 187.72 381.13 L 187.72 389.14 Z M 187.72 376.70 L 179.46 376.70 L 179.46 368.69 L 187.72 368.69 L 187.72 376.70 Z M 187.72 364.17 L 179.46 364.17 L 179.46 356.16 L 187.72 356.16 L 187.72 364.17 Z M 187.72 339.17 L 179.46 339.17 L 179.46 331.16 L 187.72 331.16 L 187.72 339.17 Z M 187.72 326.64 L 179.46 326.64 L 179.46 318.63 L 187.72 318.63 L 187.72 326.64 Z M 187.72 314.16 L 179.46 314.16 L 179.46 306.15 L 187.72 306.15 L 187.72 314.16 Z M 187.72 301.73 L 179.46 301.73 L 179.46 293.72 L 187.72 293.72 L 187.72 301.73 Z M 187.72 289.20 L 179.46 289.20 L 179.46 281.19 L 187.72 281.19 L 187.72 289.20 Z M 200.07 414.14 L 191.81 414.14 L 191.81 406.13 L 200.07 406.13 L 200.07 414.14 Z M 200.07 401.61 L 191.81 401.61 L 191.81 393.60 L 200.07 393.60 L 200.07 401.61 Z M 200.07 389.14 L 191.81 389.14 L 191.81 381.13 L 200.07 381.13 L 200.07 389.14 Z M 200.07 376.70 L 191.81 376.70 L 191.81 368.69 L 200.07 368.69 L 200.07 376.70 Z M 200.07 364.17 L 191.81 364.17 L 191.81 356.16 L 200.07 356.16 L 200.07 364.17 Z M 200.07 339.17 L 191.81 339.17 L 191.81 331.16 L 200.07 331.16 L 200.07 339.17 Z M 200.07 326.64 L 191.81 326.64 L 191.81 318.63 L 200.07 318.63 L 200.07 326.64 Z M 200.07 314.16 L 191.81 314.16 L 191.81 306.15 L 200.07 306.15 L 200.07 314.16 Z M 200.07 301.73 L 191.81 301.73 L 191.81 293.72 L 200.07 293.72 L 200.07 301.73 Z M 200.07 289.20 L 191.81 289.20 L 191.81 281.19 L 200.07 281.19 L 200.07 289.20 Z" fill="url(#SVGID_2_)" fill-rule="nonzero" group-id="12,43" node-id="438" stroke="none" target-height="216.49002" target-width="58.50998" target-x="161.88" target-y="265.41"></path><path d="M 534.53 439.22 C 534.89 434.57 534.53 282.74 534.53 282.74 L 553.06 282.74 L 553.06 316.45 L 582.56 316.45 L 582.56 386.90 L 599.29 386.90 L 599.29 439.22 L 534.53 439.22 Z" fill="url(#SVGID_3_)" fill-rule="nonzero" group-id="12,43" node-id="440" stroke="none" target-height="156.48004" target-width="64.75995" target-x="534.53" target-y="282.74"></path><path d="M 655.74 371.07 L 655.74 366.22 L 650.74 366.22 L 650.74 323.89 L 638.54 323.89 L 638.54 319.19 L 630.31 319.19 L 630.31 312.28 L 626.02 312.28 L 626.02 292.14 L 622.93 292.14 L 622.93 312.42 L 619.00 312.42 L 619.00 319.33 L 606.80 319.33 L 606.80 330.65 L 599.75 330.65 L 599.75 461.88 L 659.13 461.88 L 659.13 371.06 L 655.74 371.06 Z M 610.23 423.85 L 606.21 423.85 L 606.21 408.61 L 610.23 408.61 L 610.23 423.85 Z M 610.23 405.20 L 606.21 405.20 L 606.21 389.96 L 610.23 389.96 L 610.23 405.20 Z M 610.23 386.55 L 606.21 386.55 L 606.21 371.31 L 610.23 371.31 L 610.23 386.55 Z M 610.23 367.57 L 606.21 367.57 L 606.21 352.33 L 610.23 352.33 L 610.23 367.57 Z M 610.23 348.58 L 606.21 348.58 L 606.21 333.34 L 610.23 333.34 L 610.23 348.58 Z M 618.51 423.85 L 614.49 423.85 L 614.49 408.61 L 618.51 408.61 L 618.51 423.85 Z M 618.51 405.20 L 614.49 405.20 L 614.49 389.96 L 618.51 389.96 L 618.51 405.20 Z M 618.51 386.55 L 614.49 386.55 L 614.49 371.31 L 618.51 371.31 L 618.51 386.55 Z M 618.51 367.57 L 614.49 367.57 L 614.49 352.33 L 618.51 352.33 L 618.51 367.57 Z M 618.51 348.58 L 614.49 348.58 L 614.49 333.34 L 618.51 333.34 L 618.51 348.58 Z M 626.79 423.85 L 622.77 423.85 L 622.77 408.61 L 626.79 408.61 L 626.79 423.85 Z M 626.79 405.20 L 622.77 405.20 L 622.77 389.96 L 626.79 389.96 L 626.79 405.20 Z M 626.79 386.55 L 622.77 386.55 L 622.77 371.31 L 626.79 371.31 L 626.79 386.55 Z M 626.79 367.57 L 622.77 367.57 L 622.77 352.33 L 626.79 352.33 L 626.79 367.57 Z M 626.79 348.58 L 622.77 348.58 L 622.77 333.34 L 626.79 333.34 L 626.79 348.58 Z M 635.07 423.85 L 631.05 423.85 L 631.05 408.61 L 635.07 408.61 L 635.07 423.85 Z M 635.07 405.20 L 631.05 405.20 L 631.05 389.96 L 635.07 389.96 L 635.07 405.20 Z M 635.07 386.55 L 631.05 386.55 L 631.05 371.31 L 635.07 371.31 L 635.07 386.55 Z M 635.07 367.57 L 631.05 367.57 L 631.05 352.33 L 635.07 352.33 L 635.07 367.57 Z M 635.07 348.58 L 631.05 348.58 L 631.05 333.34 L 635.07 333.34 L 635.07 348.58 Z M 643.35 423.85 L 639.33 423.85 L 639.33 408.61 L 643.35 408.61 L 643.35 423.85 Z M 643.35 405.20 L 639.33 405.20 L 639.33 389.96 L 643.35 389.96 L 643.35 405.20 Z M 643.35 386.55 L 639.33 386.55 L 639.33 371.31 L 643.35 371.31 L 643.35 386.55 Z M 643.35 367.57 L 639.33 367.57 L 639.33 352.33 L 643.35 352.33 L 643.35 367.57 Z M 643.35 348.58 L 639.33 348.58 L 639.33 333.34 L 643.35 333.34 L 643.35 348.58 Z" fill="url(#SVGID_4_)" fill-rule="nonzero" group-id="12,43" node-id="442" stroke="none" target-height="169.73999" target-width="59.380005" target-x="599.75" target-y="292.14"></path><path d="M 94.10 503.96 L 94.10 414.42 L 104.35 414.42 L 104.35 368.72 L 139.61 353.45 L 139.61 413.70 L 147.35 413.70 L 147.35 503.96 Z" fill="url(#SVGID_5_)" fill-rule="nonzero" group-id="12,43" node-id="444" stroke="none" target-height="150.50998" target-width="53.250008" target-x="94.1" target-y="353.45"></path><path d="M 698.87 487.36 L 667.93 487.36 L 667.93 364.23 L 698.87 379.20 Z" fill="url(#SVGID_6_)" fill-rule="nonzero" group-id="12,43" node-id="446" stroke="none" target-height="123.129974" target-width="30.940002" target-x="667.93" target-y="364.23"></path><path d="M 88.92 190.55 C 88.92 190.55 98.26 165.07 121.22 175.07 C 126.52 169.69 133.08 165.78 141.95 167.54 C 150.82 169.31 156.54 175.95 158.48 180.37 C 161.26 180.24 183.52 180.98 183.52 204.07 C 183.52 227.16 156.58 226.72 154.63 224.89 C 152.23 227.03 140.69 238.64 126.69 225.39 C 123.66 227.98 113.76 238.95 98.11 223.81 C 90.86 226.84 73.63 229.17 70.29 211.38 C 66.95 193.59 84.08 188.57 88.92 190.55 Z" fill="url(#SVGID_7_)" fill-rule="nonzero" group-id="12,43" node-id="448" stroke="none" target-height="73.87999" target-width="116.57001" target-x="66.95" target-y="165.07"></path><path d="M 605.99 153.73 C 605.99 153.73 615.33 128.25 638.29 138.25 C 643.59 132.87 650.15 128.96 659.02 130.72 C 667.89 132.49 673.61 139.13 675.55 143.55 C 678.33 143.42 700.59 144.16 700.59 167.25 C 700.59 190.34 673.65 189.90 671.70 188.07 C 669.30 190.21 657.76 201.82 643.76 188.57 C 640.73 191.16 630.83 202.13 615.18 186.99 C 607.93 190.02 590.70 192.35 587.36 174.56 C 584.01 156.78 601.15 151.75 605.99 153.73 Z" fill="url(#SVGID_8_)" fill-rule="nonzero" group-id="12,43" node-id="450" stroke="none" target-height="73.880005" target-width="116.58002" target-x="584.01" target-y="128.25"></path><path d="M 384.01 192.99 C 384.01 192.99 390.77 174.54 407.39 181.79 C 411.23 177.89 415.97 175.06 422.40 176.34 C 428.83 177.62 432.96 182.43 434.36 185.62 C 436.37 185.53 452.49 186.06 452.49 202.77 C 452.49 219.48 432.99 219.16 431.58 217.84 C 429.84 219.39 421.49 227.79 411.35 218.21 C 409.16 220.08 401.99 228.03 390.67 217.07 C 385.42 219.26 372.95 220.95 370.53 208.07 C 368.10 195.20 380.51 191.56 384.01 192.99 Z" fill="url(#SVGID_9_)" fill-rule="nonzero" group-id="12,43" node-id="452" stroke="none" target-height="53.48999" target-width="84.38995" target-x="368.10004" target-y="174.54001"></path><path d="M 771.18 577.47 C 771.18 624.16 732.09 668.95 662.52 701.96 C 592.95 734.98 498.59 753.53 400.20 753.53 C 301.81 753.53 207.45 734.98 137.88 701.96 C 68.31 668.95 29.22 624.16 29.22 577.47 C 29.22 530.78 68.31 485.99 137.88 452.98 C 207.45 419.96 301.81 401.41 400.20 401.41 C 498.59 401.41 592.95 419.96 662.52 452.98 C 732.09 485.99 771.18 530.78 771.18 577.47 Z" fill="url(#SVGID_10_)" fill-rule="nonzero" group-id="12,43" node-id="454" stroke="none" target-height="352.12" target-width="741.9601" target-x="29.220001" target-y="401.40997"></path></g><g node-id="602"><g node-id="605"><path d="M 146.15 555.94 C 146.15 555.94 142.62 560.95 148.52 568.41 C 153.78 575.05 162.09 573.76 164.85 571.63 C 165.70 577.41 172.79 589.59 184.01 582.70 C 194.56 576.23 189.48 566.39 186.11 562.52 C 192.70 560.66 197.61 544.87 182.49 539.42 C 184.73 532.90 185.13 529.95 181.85 524.09 C 178.69 518.45 173.50 517.55 165.22 520.98 L 153.24 526.03 L 145.61 511.79 L 141.53 514.15 L 150.33 527.75 L 138.67 533.60 C 138.67 533.60 128.70 537.50 133.00 548.20 C 136.99 558.12 146.15 555.94 146.15 555.94 Z" fill="url(#SVGID_11_)" fill-rule="nonzero" group-id="12,44,47" node-id="460" stroke="none" target-height="77.80002" target-width="68.91" target-x="128.7" target-y="511.79"></path><path d="M 125.85 495.22 L 161.91 495.22 C 161.91 495.22 173.56 495.55 175.88 482.24 C 178.43 467.63 167.80 465.62 167.80 465.62 C 167.80 465.62 174.20 462.68 172.81 451.63 C 171.42 440.58 161.69 439.19 157.64 439.70 C 158.30 433.15 159.68 418.32 144.28 418.17 C 129.40 418.03 129.50 433.00 130.60 438.90 C 125.30 438.96 109.29 446.91 120.55 464.35 C 114.42 469.60 111.83 472.63 112.10 480.20 C 112.38 487.77 117.02 495.22 125.85 495.22 Z" fill="url(#SVGID_12_)" fill-rule="nonzero" group-id="12,44,47" node-id="462" stroke="none" target-height="77.51993" target-width="69.13999" target-x="109.29" target-y="418.03003"></path><path d="M 161.02 474.99 L 145.65 485.11 L 145.23 475.32 L 154.95 463.86 L 145.08 471.84 L 143.80 441.94 L 142.85 472.04 L 132.48 463.78 L 142.76 475.10 L 142.44 485.17 L 126.63 473.55 L 142.33 488.81 L 141.53 514.16 L 146.89 514.16 L 145.81 488.96 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="12,44,47" node-id="464" stroke="none" target-height="72.21997" target-width="34.390007" target-x="126.63" target-y="441.94"></path></g><g node-id="606"><path d="M 668.57 537.63 C 668.57 537.63 665.32 542.25 670.75 549.11 C 675.59 555.23 683.25 554.04 685.79 552.07 C 686.57 557.39 693.11 568.60 703.44 562.27 C 713.15 556.31 708.48 547.25 705.37 543.69 C 711.44 541.98 715.96 527.43 702.04 522.42 C 704.11 516.42 704.48 513.70 701.45 508.31 C 698.54 503.12 693.76 502.28 686.14 505.45 L 675.10 510.10 L 668.07 496.99 L 664.32 499.16 L 672.42 511.68 L 661.69 517.07 C 661.69 517.07 652.51 520.66 656.47 530.52 C 660.14 539.64 668.57 537.63 668.57 537.63 Z" fill="url(#SVGID_13_)" fill-rule="nonzero" group-id="12,44,48" node-id="469" stroke="none" target-height="71.609985" target-width="63.450012" target-x="652.51" target-y="496.99"></path><path d="M 649.88 481.72 L 683.08 481.72 C 683.08 481.72 693.81 482.03 695.94 469.77 C 698.28 456.32 688.50 454.47 688.50 454.47 C 688.50 454.47 694.40 451.76 693.11 441.59 C 691.82 431.42 682.87 430.13 679.14 430.61 C 679.75 424.58 681.02 410.92 666.84 410.78 C 653.15 410.64 653.23 424.42 654.25 429.86 C 649.37 429.91 634.62 437.23 645.00 453.30 C 639.36 458.13 636.97 460.93 637.22 467.89 C 637.47 474.86 641.75 481.72 649.88 481.72 Z" fill="url(#SVGID_14_)" fill-rule="nonzero" group-id="12,44,48" node-id="471" stroke="none" target-height="71.390015" target-width="63.660034" target-x="634.62" target-y="410.64"></path><path d="M 682.27 463.09 L 668.11 472.41 L 667.72 463.40 L 676.68 452.84 L 667.58 460.19 L 666.41 432.66 L 665.54 460.37 L 655.98 452.77 L 665.45 463.20 L 665.16 472.47 L 650.59 461.76 L 665.05 475.81 L 664.32 499.16 L 669.25 499.16 L 668.26 475.95 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="12,44,48" node-id="473" stroke="none" target-height="66.50003" target-width="31.679993" target-x="650.59" target-y="432.66"></path></g><g node-id="607"><path d="M 229.08 447.43 C 229.08 447.43 227.33 449.91 230.25 453.60 C 232.85 456.89 236.96 456.25 238.33 455.19 C 238.75 458.05 242.26 464.07 247.81 460.67 C 253.03 457.47 250.52 452.60 248.85 450.69 C 252.11 449.77 254.54 441.96 247.06 439.27 C 248.17 436.05 248.37 434.59 246.74 431.69 C 245.18 428.90 242.61 428.45 238.52 430.15 L 232.59 432.65 L 228.82 425.61 L 226.80 426.78 L 231.15 433.50 L 225.38 436.39 C 225.38 436.39 220.45 438.32 222.58 443.61 C 224.55 448.51 229.08 447.43 229.08 447.43 Z" fill="url(#SVGID_15_)" fill-rule="nonzero" group-id="12,44,49" node-id="478" stroke="none" target-height="38.460022" target-width="34.09001" target-x="220.45" target-y="425.61"></path><path d="M 219.04 417.40 L 236.87 417.40 C 236.87 417.40 242.63 417.56 243.78 410.98 C 245.04 403.75 239.78 402.76 239.78 402.76 C 239.78 402.76 242.95 401.30 242.26 395.84 C 241.57 390.38 236.76 389.69 234.76 389.94 C 235.09 386.70 235.77 379.36 228.15 379.29 C 220.79 379.22 220.84 386.62 221.39 389.54 C 218.77 389.57 210.85 393.50 216.42 402.13 C 213.39 404.72 212.10 406.23 212.24 409.97 C 212.38 413.72 214.67 417.40 219.04 417.40 Z" fill="url(#SVGID_16_)" fill-rule="nonzero" group-id="12,44,49" node-id="480" stroke="none" target-height="38.339996" target-width="34.189987" target-x="210.84999" target-y="379.22"></path><path d="M 236.44 407.39 L 228.83 412.40 L 228.63 407.56 L 233.44 401.89 L 228.55 405.84 L 227.92 391.05 L 227.45 405.94 L 222.32 401.85 L 227.40 407.45 L 227.25 412.43 L 219.43 406.68 L 227.19 414.23 L 226.80 426.77 L 229.45 426.77 L 228.91 414.31 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="12,44,49" node-id="482" stroke="none" target-height="35.72" target-width="17.01001" target-x="219.43" target-y="391.05"></path></g></g><g node-id="603"><path d="M 438.61 519.67 L 698.87 654.06 L 411.35 739.09 L 273.18 517.19 Z" fill="url(#SVGID_17_)" fill-rule="nonzero" group-id="12,45" node-id="488" stroke="none" target-height="221.90002" target-width="425.69" target-x="273.18" target-y="517.19"></path><path d="M 302.16 495.09 L 273.18 499.89 L 365.31 523.34 L 438.61 502.29 L 417.00 499.16 Z" fill="url(#SVGID_18_)" fill-rule="nonzero" group-id="12,45" node-id="490" stroke="none" target-height="28.25003" target-width="165.43002" target-x="273.18" target-y="495.09"></path><path d="M 333.68 236.84 C 333.68 236.84 252.15 314.42 327.30 413.82 C 397.09 506.14 516.84 438.73 521.21 429.78 C 464.29 375.42 333.68 236.84 333.68 236.84 Z" fill="url(#SVGID_19_)" fill-rule="nonzero" group-id="12,45" node-id="492" stroke="none" target-height="269.30002" target-width="269.06006" target-x="252.14998" target-y="236.84"></path><path d="M 463.00 298.06 C 515.62 350.68 543.03 408.57 524.22 427.38 C 505.42 446.18 447.52 418.78 394.90 366.16 C 342.28 313.54 314.87 255.65 333.68 236.84 C 352.49 218.03 410.38 245.45 463.00 298.06 Z" fill="url(#SVGID_20_)" fill-rule="nonzero" group-id="12,45" node-id="494" stroke="none" target-height="228.15" target-width="228.16003" target-x="314.87" target-y="218.03"></path><path d="M 394.90 366.16 C 399.62 370.88 404.39 375.40 409.17 379.70 L 491.99 279.41 L 487.19 274.24 L 388.66 359.75 C 390.70 361.90 392.78 364.03 394.90 366.16 Z" fill="url(#SVGID_21_)" fill-rule="nonzero" group-id="12,45" node-id="496" stroke="none" target-height="105.46002" target-width="103.329956" target-x="388.66003" target-y="274.24"></path><path d="M 507.50 270.92 C 507.50 275.03 505.87 278.98 502.96 281.89 C 500.05 284.80 496.10 286.43 491.99 286.43 C 487.88 286.43 483.93 284.80 481.02 281.89 C 478.11 278.98 476.48 275.03 476.48 270.92 C 476.48 262.35 483.42 255.41 491.99 255.41 C 500.56 255.41 507.50 262.35 507.50 270.92 Z" fill="url(#SVGID_22_)" fill-rule="nonzero" group-id="12,45" node-id="498" stroke="none" target-height="31.020004" target-width="31.02002" target-x="476.47998" target-y="255.41002"></path><g node-id="608"><path d="M 535.59 288.79 C 532.03 288.72 528.98 286.03 528.56 282.40 C 523.13 235.87 486.47 236.41 484.80 236.46 C 480.82 236.56 474.74 234.61 475.55 226.98 C 475.97 223.02 477.89 222.07 481.87 221.94 C 482.43 221.92 495.71 221.55 509.81 228.64 C 522.91 235.23 537.19 249.39 544.64 278.12 C 544.64 287.31 539.27 288.79 535.59 288.79 Z" fill="url(#SVGID_23_)" fill-rule="nonzero" group-id="12,45,50" node-id="502" stroke="none" target-height="67.240005" target-width="69.900024" target-x="474.74" target-y="221.55"></path></g><g node-id="609"><path d="M 537.40 285.17 C 533.84 285.17 530.74 282.54 530.24 278.92 C 523.88 232.50 484.78 233.76 483.12 233.83 C 479.14 234.01 475.75 230.95 475.55 226.97 C 475.35 222.99 478.39 219.60 482.36 219.39 C 482.92 219.36 496.19 218.72 510.43 225.53 C 523.66 231.86 540.32 245.91 544.57 276.95 C 545.11 280.91 542.34 284.55 538.39 285.10 C 538.06 285.15 537.73 285.17 537.40 285.17 Z" fill="url(#SVGID_24_)" fill-rule="nonzero" group-id="12,45,51" node-id="507" stroke="none" target-height="66.45" target-width="69.75998" target-x="475.35" target-y="218.72002"></path></g><g node-id="610"><path d="M 562.73 288.36 C 557.59 288.01 555.36 283.47 555.15 279.59 C 553.52 248.72 540.39 227.03 516.11 215.11 C 497.67 206.06 483.05 205.94 482.85 205.93 C 482.84 205.93 474.06 206.35 475.53 196.59 C 477.12 194.00 478.68 191.52 482.68 191.47 C 483.56 191.46 500.99 191.57 522.48 202.13 C 542.65 212.03 572.19 233.81 572.19 279.32 C 572.20 287.62 565.35 288.57 562.73 288.36 Z" fill="url(#SVGID_25_)" fill-rule="nonzero" group-id="12,45,52" node-id="512" stroke="none" target-height="97.11" target-width="98.140045" target-x="474.05997" target-y="191.46"></path></g><g node-id="611"><path d="M 565.10 285.17 C 561.26 285.17 558.06 282.14 557.88 278.27 C 556.48 247.39 543.50 225.61 519.31 213.51 C 500.93 204.32 482.99 204.31 482.79 204.30 C 482.78 204.30 482.77 204.30 482.76 204.30 C 478.78 204.30 475.55 201.08 475.53 197.10 C 475.51 193.11 478.73 189.85 482.73 189.83 C 483.61 189.83 504.37 189.85 525.79 200.56 C 545.88 210.61 570.27 232.13 572.34 277.60 C 572.52 281.59 569.43 284.97 565.44 285.15 C 565.32 285.17 565.21 285.17 565.10 285.17 Z" fill="url(#SVGID_26_)" fill-rule="nonzero" group-id="12,45,53" node-id="517" stroke="none" target-height="95.34001" target-width="97.01001" target-x="475.51" target-y="189.83"></path></g><path d="M 392.08 458.11 L 392.08 475.90 L 363.65 480.33 L 363.65 502.30 L 417.00 491.22 L 417.00 461.75 C 408.75 461.36 400.39 460.22 392.08 458.11 Z" fill="url(#SVGID_27_)" fill-rule="nonzero" group-id="12,45" node-id="520" stroke="none" target-height="44.190002" target-width="53.350006" target-x="363.65" target-y="458.11"></path><path d="M 409.25 461.16 L 409.25 479.40 L 367.61 486.66 L 367.80 480.32 C 367.80 480.32 370.75 406.47 337.52 406.47 C 304.29 406.47 299.49 462.23 299.49 472.94 C 299.49 483.65 299.49 502.11 299.49 502.11 L 362.54 517.62 L 366.69 517.62 L 424.48 501.56 L 424.48 461.90 C 419.45 461.93 414.36 461.70 409.25 461.16 Z" fill="url(#SVGID_28_)" fill-rule="nonzero" group-id="12,45" node-id="522" stroke="none" target-height="111.149994" target-width="124.99005" target-x="299.49" target-y="406.47"></path><path d="M 295.33 502.11 C 295.33 502.11 295.33 483.65 295.33 472.94 C 295.33 462.23 300.13 406.47 333.36 406.47 C 366.59 406.47 363.64 480.32 363.64 480.32 L 362.53 517.62 L 295.33 502.11 Z" fill="url(#SVGID_29_)" fill-rule="nonzero" group-id="12,45" node-id="524" stroke="none" target-height="111.149994" target-width="71.26001" target-x="295.33" target-y="406.47"></path><path d="M 343.38 447.27 C 343.38 441.66 339.49 437.12 334.70 437.12 L 331.73 437.12 L 331.40 437.88 C 328.24 439.40 326.02 443.03 326.02 447.27 C 326.02 451.52 328.25 455.15 331.41 456.67 L 331.61 457.41 L 334.60 457.42 C 334.63 457.42 334.66 457.43 334.69 457.43 C 334.72 457.43 334.74 457.43 334.77 457.43 L 334.91 457.43 L 334.91 457.42 C 339.61 457.28 343.38 452.80 343.38 447.27 Z" fill="url(#SVGID_30_)" fill-rule="nonzero" group-id="12,45" node-id="526" stroke="none" target-height="20.309967" target-width="17.360016" target-x="326.02" target-y="437.12"></path><path d="M 340.75 447.27 C 340.75 452.88 336.86 457.42 332.07 457.42 C 327.28 457.42 323.39 452.88 323.39 447.27 C 323.39 441.66 327.28 437.12 332.07 437.12 C 336.86 437.12 340.75 441.66 340.75 447.27 Z" fill="url(#SVGID_31_)" fill-rule="nonzero" group-id="12,45" node-id="528" stroke="none" target-height="20.299988" target-width="17.359985" target-x="323.39" target-y="437.12"></path><path d="M 273.18 517.19 L 273.18 499.89 L 365.31 523.34 L 365.31 543.42 Z" fill="url(#SVGID_32_)" fill-rule="nonzero" group-id="12,45" node-id="530" stroke="none" target-height="43.52997" target-width="92.130005" target-x="273.18" target-y="499.89"></path><path d="M 438.61 519.67 L 438.61 502.29 L 365.31 523.34 L 365.31 543.42 Z" fill="url(#SVGID_33_)" fill-rule="nonzero" group-id="12,45" node-id="532" stroke="none" target-height="41.129974" target-width="73.30002" target-x="365.31" target-y="502.29"></path></g><g node-id="604"><path d="M 567.26 498.97 L 564.92 499.92 C 564.92 499.92 564.10 501.31 564.44 504.30 C 564.79 507.29 566.35 508.43 566.70 509.53 C 567.05 510.63 566.83 514.84 566.83 514.84 L 573.03 514.84 L 573.29 508.94 C 573.29 508.94 574.69 507.18 575.15 505.96 C 575.61 504.74 576.54 502.75 576.22 501.80 C 575.90 500.85 571.80 497.18 567.26 498.97 Z" fill="#ffbe92" fill-rule="nonzero" group-id="12,46" node-id="537" stroke="none" target-height="17.660065" target-width="12.440002" target-x="564.1" target-y="497.17996"></path><path d="M 570.15 495.91 C 570.15 495.91 571.15 494.10 571.94 495.08 C 572.73 496.06 573.23 496.55 574.14 496.34 C 575.05 496.12 576.84 496.32 576.20 497.99 C 575.56 499.66 576.17 499.81 576.42 500.26 C 576.57 500.54 577.67 501.48 576.93 502.69 C 576.20 503.88 575.17 503.44 575.35 504.57 C 575.53 505.70 575.11 506.70 574.44 507.05 C 573.79 507.39 573.95 508.00 574.07 508.35 C 574.19 508.69 573.82 509.81 572.72 509.41 C 571.62 509.01 570.64 508.86 569.77 509.25 C 568.90 509.64 565.32 509.87 566.08 508.27 C 566.78 506.81 565.81 506.51 565.16 505.86 C 564.51 505.21 563.98 504.09 564.33 502.97 C 564.53 502.33 564.81 500.80 564.03 499.84 C 563.23 498.85 564.61 496.14 565.52 496.24 C 566.44 496.34 567.70 493.75 570.15 495.91 Z" fill="#171c61" fill-rule="nonzero" group-id="12,46" node-id="539" stroke="none" target-height="16.119995" target-width="14.440002" target-x="563.23" target-y="493.75"></path><path d="M 551.88 528.24 C 551.88 528.24 549.51 538.36 555.29 539.11 C 561.07 539.86 564.95 525.58 564.95 525.58 L 564.95 519.10 L 554.37 521.36 L 551.88 528.24 Z" fill="#ffbe92" fill-rule="nonzero" group-id="12,46" node-id="541" stroke="none" target-height="20.76001" target-width="15.440002" target-x="549.51" target-y="519.1"></path><path d="M 578.61 601.57 C 578.61 601.57 574.49 600.35 574.42 604.06 C 575.16 607.41 575.83 608.55 575.80 610.12 C 575.77 611.69 577.25 614.20 580.46 614.63 C 583.67 615.06 585.10 612.54 583.99 609.01 C 582.88 605.47 582.50 602.24 578.61 601.57 Z" fill="#f8b62d" fill-rule="nonzero" group-id="12,46" node-id="543" stroke="none" target-height="14.710022" target-width="10.679993" target-x="574.42" target-y="600.35"></path><path d="M 574.51 603.25 C 574.51 603.25 574.98 606.00 575.47 606.95 C 575.96 607.90 576.27 609.15 576.52 610.19 C 576.77 611.23 577.29 613.73 581.07 613.86 C 583.39 613.77 584.35 612.66 584.34 611.68 C 584.33 612.32 584.45 613.30 583.98 613.92 C 583.46 614.59 582.30 614.87 581.03 614.88 C 578.56 614.90 576.76 614.30 575.77 610.91 C 575.59 609.52 575.50 608.46 575.24 607.64 C 574.97 606.83 574.04 604.23 574.51 603.25 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="12,46" node-id="545" stroke="none" target-height="11.650024" target-width="10.410034" target-x="574.04" target-y="603.25"></path><path d="M 565.09 601.73 C 565.09 601.73 560.09 600.63 560.09 604.19 C 560.32 607.34 560.85 608.75 560.82 610.31 C 560.79 611.88 562.27 614.39 565.48 614.82 C 568.69 615.25 570.12 612.73 569.01 609.20 C 567.90 605.66 568.97 602.40 565.09 601.73 Z" fill="#f8b62d" fill-rule="nonzero" group-id="12,46" node-id="547" stroke="none" target-height="14.619995" target-width="10.029968" target-x="560.09" target-y="600.63"></path><path d="M 560.67 602.49 C 560.67 602.49 559.80 603.74 560.74 607.16 C 561.06 608.18 561.30 609.33 561.54 610.38 C 561.79 611.42 562.31 613.92 566.09 614.05 C 568.41 613.96 569.37 612.85 569.36 611.87 C 569.35 612.51 569.53 613.34 569.06 613.96 C 568.54 614.63 567.33 615.06 566.06 615.07 C 563.59 615.09 561.79 614.49 560.80 611.10 C 560.62 609.71 560.53 608.65 560.27 607.83 C 560.00 607.02 559.61 603.23 560.67 602.49 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="12,46" node-id="549" stroke="none" target-height="12.600037" target-width="9.920044" target-x="559.61" target-y="602.49"></path><path d="M 561.44 548.71 C 561.44 548.71 558.84 554.99 559.53 565.90 C 560.22 576.81 563.42 611.68 563.42 611.68 L 568.38 611.68 L 572.20 563.72 L 578.05 611.68 L 582.65 611.68 C 582.65 611.68 586.95 553.39 582.10 548.71 C 573.75 548.71 561.44 548.71 561.44 548.71 Z" fill="url(#SVGID_34_)" fill-rule="nonzero" group-id="12,46" node-id="551" stroke="none" target-height="62.96997" target-width="28.109985" target-x="558.84" target-y="548.71"></path><path d="M 581.27 477.68 L 577.09 479.67 C 576.79 479.81 576.43 479.69 576.28 479.38 L 571.42 469.15 C 571.28 468.85 571.40 468.49 571.71 468.34 L 575.89 466.35 C 576.19 466.21 576.55 466.33 576.70 466.64 L 581.57 476.87 C 581.70 477.17 581.57 477.53 581.27 477.68 Z" fill="#171c61" fill-rule="nonzero" group-id="12,46" node-id="553" stroke="none" target-height="13.600006" target-width="10.419983" target-x="571.28" target-y="466.21"></path><path d="M 576.04 478.81 C 576.04 478.81 576.21 481.64 577.60 482.63 C 578.99 483.62 579.68 485.17 580.26 486.22 C 580.84 487.26 583.23 492.11 583.69 492.80 C 584.15 493.49 585.02 495.29 584.62 497.48 C 584.22 499.68 579.94 509.91 579.65 510.66 C 580.46 513.03 585.37 519.22 585.37 519.22 C 585.37 519.22 593.12 502.10 592.83 496.55 C 592.54 491.00 587.43 487.25 584.08 482.34 C 582.92 481.01 582.98 479.80 583.10 479.04 C 583.22 478.29 583.18 473.62 579.37 472.15 C 577.07 471.26 578.24 475.81 578.59 476.44 C 578.94 477.08 579.63 480.02 577.32 478.69 C 576.50 478.06 575.94 478.06 576.04 478.81 Z" fill="#ffbe92" fill-rule="nonzero" group-id="12,46" node-id="555" stroke="none" target-height="47.95996" target-width="17.179993" target-x="575.94" target-y="471.26"></path><path d="M 579.84 506.67 L 590.33 511.24 C 590.33 511.24 586.92 518.76 585.36 522.11 C 584.96 523.61 583.43 528.76 583.55 530.90 C 583.67 533.04 586.90 553.43 583.49 554.70 C 580.08 555.97 562.45 556.10 559.85 555.58 C 557.25 555.06 558.34 537.14 559.32 531.76 C 559.93 527.54 559.84 526.44 559.84 526.44 L 558.19 530.69 L 551.80 527.93 C 551.80 527.93 553.09 515.77 557.98 514.08 C 562.49 512.52 564.09 512.38 564.44 512.21 C 565.05 511.60 568.17 511.21 569.60 511.21 C 571.03 511.21 573.33 511.17 575.02 512.08 C 575.93 512.48 578.17 511.18 579.84 506.67 Z" fill="url(#SVGID_35_)" fill-rule="nonzero" group-id="12,46" node-id="557" stroke="none" target-height="49.429993" target-width="38.53003" target-x="551.8" target-y="506.66998"></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="170"><linearGradient gradientUnits="objectBoundingBox" id="SVGID_1_" node-id="22" spreadMethod="pad" x1="256.7906" x2="256.7906" y1="416.3844" y2="319.5962"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_2_" node-id="26" spreadMethod="pad" x1="192.1736" x2="192.1736" y1="474.3763" y2="257.8873"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_3_" node-id="30" spreadMethod="pad" x1="567.9552" x2="567.9552" y1="431.6975" y2="275.2167"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_4_" node-id="34" spreadMethod="pad" x1="630.48" x2="630.48" y1="454.3675" y2="284.6268"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_5_" node-id="38" spreadMethod="pad" x1="121.7675" x2="121.7675" y1="496.446" y2="345.9326"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_6_" node-id="42" spreadMethod="pad" x1="684.4407" x2="684.4407" y1="479.8406" y2="356.7083"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_7_" node-id="46" spreadMethod="pad" x1="127.7311" x2="127.7311" y1="224.1387" y2="159.5974"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_8_" node-id="50" spreadMethod="pad" x1="644.7996" x2="644.7996" y1="187.3183" y2="122.777"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_9_" node-id="54" spreadMethod="pad" x1="515.0287" x2="515.0287" y1="230.4917" y2="183.7745"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_10_" node-id="58" spreadMethod="pad" x1="401.246" x2="401.246" y1="746.0165" y2="393.8877"><stop offset="0.4065" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dae4ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_11_" node-id="64" spreadMethod="pad" x1="192.1755" x2="140.7393" y1="569.4724" y2="508.173"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_12_" node-id="68" spreadMethod="pad" x1="113.1277" x2="177.3145" y1="449.182" y2="449.182"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_13_" node-id="74" spreadMethod="pad" x1="711.0376" x2="663.6722" y1="549.4998" y2="493.0518"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_14_" node-id="78" spreadMethod="pad" x1="638.2458" x2="697.3528" y1="438.7295" y2="438.7295"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_15_" node-id="84" spreadMethod="pad" x1="252.375" x2="226.9337" y1="450.329" y2="420.0093"><stop offset="0.0000001438503" stop-color="#eaeff6"></stop><stop offset="1" stop-color="#cddae9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_16_" node-id="88" spreadMethod="pad" x1="213.2765" x2="245.0245" y1="390.8312" y2="390.8312"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_17_" node-id="94" spreadMethod="pad" x1="530.9274" x2="452.1107" y1="709.7521" y2="434.8854"><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="98" spreadMethod="pad" x1="503.8955" x2="620.9971" y1="411.5834" y2="411.5834"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_19_" node-id="102" spreadMethod="pad" x1="290.2388" x2="562.0688" y1="411.5834" y2="411.5834"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_20_" node-id="106" spreadMethod="pad" x1="349.8223" x2="408.177" y1="276.7176" y2="276.7176"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_21_" node-id="110" spreadMethod="pad" x1="426.5953" x2="513.1931" y1="261.6752" y2="261.6752"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_22_" node-id="114" spreadMethod="pad" x1="393.3205" x2="468.4005" y1="411.5834" y2="411.5834"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#d5dfed"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_23_" node-id="125" spreadMethod="pad" x1="263.5211" x2="263.5211" y1="489.4391" y2="453.1176"><stop offset="0" stop-color="#4ea2f4"></stop><stop offset="0.6903" stop-color="#1e77cf"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_24_" node-id="129" spreadMethod="pad" x1="266.9201" x2="278.8694" y1="493.9967" y2="446.9243"><stop offset="0" stop-color="#78c8ff"></stop><stop offset="0.6903" stop-color="#2a80e2"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_25_" node-id="135" spreadMethod="pad" x1="291.1511" x2="263.3874" y1="430.4013" y2="439.7652"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_26_" node-id="140" spreadMethod="pad" x1="7277.3467" x2="7290.9087" y1="2481.8806" y2="2481.592"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient></defs><g node-id="456"><g node-id="482"><path d="M 271.25 323.00 L 271.25 319.59 L 241.75 319.59 L 241.75 323.55 L 235.27 323.55 L 235.27 416.38 L 278.32 416.38 L 278.32 323.00 L 271.25 323.00 Z M 274.59 405.74 L 238.55 405.74 L 238.55 402.99 L 274.59 402.99 L 274.59 405.74 Z M 274.59 393.06 L 238.55 393.06 L 238.55 390.31 L 274.59 390.31 L 274.59 393.06 Z M 274.59 380.39 L 238.55 380.39 L 238.55 377.64 L 274.59 377.64 L 274.59 380.39 Z M 274.59 368.04 L 238.55 368.04 L 238.55 365.29 L 274.59 365.29 L 274.59 368.04 Z M 274.59 355.73 L 238.55 355.73 L 238.55 352.98 L 274.59 352.98 L 274.59 355.73 Z M 274.59 343.05 L 238.55 343.05 L 238.55 340.30 L 274.59 340.30 L 274.59 343.05 Z M 274.59 330.71 L 238.55 330.71 L 238.55 327.96 L 274.59 327.96 L 274.59 330.71 Z" fill="url(#SVGID_1_)" fill-rule="nonzero" group-id="17,43" node-id="347" stroke="none" target-height="96.78998" target-width="43.050003" target-x="235.27" target-y="319.59"></path><path d="M 213.26 374.81 L 213.26 266.63 L 180.51 266.63 L 180.51 257.89 L 166.65 257.89 L 166.65 311.22 L 162.92 311.22 L 162.92 474.38 L 221.43 474.38 L 221.43 374.82 L 213.26 374.82 Z M 188.77 406.62 L 180.51 406.62 L 180.51 398.61 L 188.77 398.61 L 188.77 406.62 Z M 188.77 394.09 L 180.51 394.09 L 180.51 386.08 L 188.77 386.08 L 188.77 394.09 Z M 188.77 381.62 L 180.51 381.62 L 180.51 373.61 L 188.77 373.61 L 188.77 381.62 Z M 188.77 369.18 L 180.51 369.18 L 180.51 361.17 L 188.77 361.17 L 188.77 369.18 Z M 188.77 356.65 L 180.51 356.65 L 180.51 348.64 L 188.77 348.64 L 188.77 356.65 Z M 188.77 331.65 L 180.51 331.65 L 180.51 323.64 L 188.77 323.64 L 188.77 331.65 Z M 188.77 319.12 L 180.51 319.12 L 180.51 311.11 L 188.77 311.11 L 188.77 319.12 Z M 188.77 306.65 L 180.51 306.65 L 180.51 298.64 L 188.77 298.64 L 188.77 306.65 Z M 188.77 294.21 L 180.51 294.21 L 180.51 286.20 L 188.77 286.20 L 188.77 294.21 Z M 188.77 281.68 L 180.51 281.68 L 180.51 273.67 L 188.77 273.67 L 188.77 281.68 Z M 201.12 406.62 L 192.86 406.62 L 192.86 398.61 L 201.12 398.61 L 201.12 406.62 Z M 201.12 394.09 L 192.86 394.09 L 192.86 386.08 L 201.12 386.08 L 201.12 394.09 Z M 201.12 381.62 L 192.86 381.62 L 192.86 373.61 L 201.12 373.61 L 201.12 381.62 Z M 201.12 369.18 L 192.86 369.18 L 192.86 361.17 L 201.12 361.17 L 201.12 369.18 Z M 201.12 356.65 L 192.86 356.65 L 192.86 348.64 L 201.12 348.64 L 201.12 356.65 Z M 201.12 331.65 L 192.86 331.65 L 192.86 323.64 L 201.12 323.64 L 201.12 331.65 Z M 201.12 319.12 L 192.86 319.12 L 192.86 311.11 L 201.12 311.11 L 201.12 319.12 Z M 201.12 306.65 L 192.86 306.65 L 192.86 298.64 L 201.12 298.64 L 201.12 306.65 Z M 201.12 294.21 L 192.86 294.21 L 192.86 286.20 L 201.12 286.20 L 201.12 294.21 Z M 201.12 281.68 L 192.86 281.68 L 192.86 273.67 L 201.12 273.67 L 201.12 281.68 Z" fill="url(#SVGID_2_)" fill-rule="nonzero" group-id="17,43" node-id="349" stroke="none" target-height="216.48999" target-width="58.509995" target-x="162.92" target-y="257.89"></path><path d="M 535.57 431.70 C 535.93 427.05 535.57 275.22 535.57 275.22 L 554.10 275.22 L 554.10 308.93 L 583.60 308.93 L 583.60 379.38 L 600.33 379.38 L 600.33 431.70 L 535.57 431.70 Z" fill="url(#SVGID_3_)" fill-rule="nonzero" group-id="17,43" node-id="351" stroke="none" target-height="156.48001" target-width="64.76001" target-x="535.57" target-y="275.22"></path><path d="M 656.79 363.55 L 656.79 358.70 L 651.79 358.70 L 651.79 316.37 L 639.59 316.37 L 639.59 311.67 L 631.36 311.67 L 631.36 304.76 L 627.07 304.76 L 627.07 284.62 L 623.98 284.62 L 623.98 304.90 L 620.04 304.90 L 620.04 311.81 L 607.84 311.81 L 607.84 323.13 L 600.79 323.13 L 600.79 454.36 L 660.17 454.36 L 660.17 363.54 L 656.79 363.54 Z M 611.28 416.34 L 607.26 416.34 L 607.26 401.10 L 611.28 401.10 L 611.28 416.34 Z M 611.28 397.68 L 607.26 397.68 L 607.26 382.44 L 611.28 382.44 L 611.28 397.68 Z M 611.28 379.03 L 607.26 379.03 L 607.26 363.80 L 611.28 363.80 L 611.28 379.03 Z M 611.28 360.05 L 607.26 360.05 L 607.26 344.81 L 611.28 344.81 L 611.28 360.05 Z M 611.28 341.06 L 607.26 341.06 L 607.26 325.82 L 611.28 325.82 L 611.28 341.06 Z M 619.55 416.34 L 615.53 416.34 L 615.53 401.10 L 619.55 401.10 L 619.55 416.34 Z M 619.55 397.68 L 615.53 397.68 L 615.53 382.44 L 619.55 382.44 L 619.55 397.68 Z M 619.55 379.03 L 615.53 379.03 L 615.53 363.80 L 619.55 363.80 L 619.55 379.03 Z M 619.55 360.05 L 615.53 360.05 L 615.53 344.81 L 619.55 344.81 L 619.55 360.05 Z M 619.55 341.06 L 615.53 341.06 L 615.53 325.82 L 619.55 325.82 L 619.55 341.06 Z M 627.83 416.34 L 623.81 416.34 L 623.81 401.10 L 627.83 401.10 L 627.83 416.34 Z M 627.83 397.68 L 623.81 397.68 L 623.81 382.44 L 627.83 382.44 L 627.83 397.68 Z M 627.83 379.03 L 623.81 379.03 L 623.81 363.80 L 627.83 363.80 L 627.83 379.03 Z M 627.83 360.05 L 623.81 360.05 L 623.81 344.81 L 627.83 344.81 L 627.83 360.05 Z M 627.83 341.06 L 623.81 341.06 L 623.81 325.82 L 627.83 325.82 L 627.83 341.06 Z M 636.11 416.34 L 632.09 416.34 L 632.09 401.10 L 636.11 401.10 L 636.11 416.34 Z M 636.11 397.68 L 632.09 397.68 L 632.09 382.44 L 636.11 382.44 L 636.11 397.68 Z M 636.11 379.03 L 632.09 379.03 L 632.09 363.80 L 636.11 363.80 L 636.11 379.03 Z M 636.11 360.05 L 632.09 360.05 L 632.09 344.81 L 636.11 344.81 L 636.11 360.05 Z M 636.11 341.06 L 632.09 341.06 L 632.09 325.82 L 636.11 325.82 L 636.11 341.06 Z M 644.39 416.34 L 640.37 416.34 L 640.37 401.10 L 644.39 401.10 L 644.39 416.34 Z M 644.39 397.68 L 640.37 397.68 L 640.37 382.44 L 644.39 382.44 L 644.39 397.68 Z M 644.39 379.03 L 640.37 379.03 L 640.37 363.80 L 644.39 363.80 L 644.39 379.03 Z M 644.39 360.05 L 640.37 360.05 L 640.37 344.81 L 644.39 344.81 L 644.39 360.05 Z M 644.39 341.06 L 640.37 341.06 L 640.37 325.82 L 644.39 325.82 L 644.39 341.06 Z" fill="url(#SVGID_4_)" fill-rule="nonzero" group-id="17,43" node-id="353" stroke="none" target-height="169.73999" target-width="59.380005" target-x="600.79" target-y="284.62"></path><path d="M 95.14 496.45 L 95.14 406.90 L 105.40 406.90 L 105.40 361.21 L 140.66 345.93 L 140.66 406.18 L 148.39 406.18 L 148.39 496.45 Z" fill="url(#SVGID_5_)" fill-rule="nonzero" group-id="17,43" node-id="355" stroke="none" target-height="150.52008" target-width="53.249992" target-x="95.14001" target-y="345.92996"></path><path d="M 699.91 479.84 L 668.97 479.84 L 668.97 356.71 L 699.91 371.68 Z" fill="url(#SVGID_6_)" fill-rule="nonzero" group-id="17,43" node-id="357" stroke="none" target-height="123.130005" target-width="30.940002" target-x="668.97" target-y="356.71"></path><path d="M 89.96 183.03 C 89.96 183.03 99.30 157.55 122.26 167.55 C 127.56 162.17 134.12 158.26 142.99 160.02 C 151.86 161.79 157.58 168.43 159.52 172.85 C 162.30 172.72 184.56 173.46 184.56 196.55 C 184.56 219.64 157.62 219.20 155.67 217.37 C 153.27 219.51 141.73 231.12 127.73 217.87 C 124.70 220.46 114.80 231.43 99.15 216.29 C 91.90 219.32 74.67 221.65 71.33 203.86 C 67.99 186.07 85.12 181.05 89.96 183.03 Z" fill="url(#SVGID_7_)" fill-rule="nonzero" group-id="17,43" node-id="359" stroke="none" target-height="73.880005" target-width="116.57" target-x="67.99" target-y="157.55"></path><path d="M 607.03 146.21 C 607.03 146.21 616.37 120.73 639.33 130.73 C 644.63 125.35 651.19 121.44 660.06 123.20 C 668.93 124.97 674.65 131.61 676.59 136.03 C 679.37 135.90 701.63 136.64 701.63 159.73 C 701.63 182.82 674.69 182.38 672.74 180.55 C 670.34 182.69 658.80 194.30 644.80 181.05 C 641.77 183.64 631.87 194.61 616.22 179.47 C 608.97 182.50 591.74 184.83 588.40 167.04 C 585.06 149.26 602.19 144.23 607.03 146.21 Z" fill="url(#SVGID_8_)" fill-rule="nonzero" group-id="17,43" node-id="361" stroke="none" target-height="73.87999" target-width="116.56995" target-x="585.06" target-y="120.729996"></path><path d="M 487.69 200.74 C 487.69 200.74 494.45 182.29 511.07 189.54 C 514.91 185.64 519.65 182.81 526.08 184.09 C 532.50 185.37 536.64 190.18 538.04 193.37 C 540.05 193.28 556.17 193.81 556.17 210.52 C 556.17 227.23 536.67 226.91 535.26 225.59 C 533.52 227.14 525.17 235.54 515.03 225.96 C 512.84 227.83 505.67 235.78 494.35 224.82 C 489.10 227.01 476.63 228.70 474.21 215.82 C 471.79 202.94 484.19 199.31 487.69 200.74 Z" fill="url(#SVGID_9_)" fill-rule="nonzero" group-id="17,43" node-id="363" stroke="none" target-height="53.48999" target-width="84.379974" target-x="471.79" target-y="182.29001"></path><path d="M 772.23 569.95 C 772.23 616.64 733.14 661.43 663.57 694.44 C 594.00 727.46 499.64 746.01 401.25 746.01 C 302.86 746.01 208.50 727.46 138.93 694.44 C 69.36 661.43 30.27 616.64 30.27 569.95 C 30.27 523.26 69.36 478.47 138.93 445.46 C 208.50 412.44 302.86 393.89 401.25 393.89 C 499.64 393.89 594.00 412.44 663.57 445.46 C 733.14 478.47 772.23 523.26 772.23 569.95 Z" fill="url(#SVGID_10_)" fill-rule="nonzero" group-id="17,43" node-id="365" stroke="none" target-height="352.1201" target-width="741.9601" target-x="30.269987" target-y="393.88998"></path></g><g node-id="483"><g node-id="486"><path d="M 147.19 548.42 C 147.19 548.42 143.66 553.43 149.56 560.89 C 154.82 567.53 163.13 566.24 165.89 564.11 C 166.74 569.89 173.83 582.07 185.05 575.18 C 195.60 568.71 190.52 558.87 187.15 555.00 C 193.74 553.14 198.65 537.35 183.53 531.90 C 185.77 525.38 186.17 522.43 182.89 516.57 C 179.73 510.93 174.54 510.03 166.26 513.46 L 154.28 518.51 L 146.65 504.27 L 142.57 506.63 L 151.37 520.23 L 139.71 526.08 C 139.71 526.08 129.74 529.98 134.04 540.68 C 138.03 550.60 147.19 548.42 147.19 548.42 Z" fill="url(#SVGID_11_)" fill-rule="nonzero" group-id="17,44,47" node-id="371" stroke="none" target-height="77.80002" target-width="68.90999" target-x="129.74" target-y="504.27"></path><path d="M 126.90 487.70 L 162.96 487.70 C 162.96 487.70 174.61 488.03 176.93 474.72 C 179.48 460.11 168.85 458.10 168.85 458.10 C 168.85 458.10 175.25 455.16 173.86 444.11 C 172.47 433.06 162.74 431.67 158.69 432.18 C 159.35 425.63 160.73 410.80 145.33 410.65 C 130.46 410.50 130.55 425.47 131.66 431.37 C 126.36 431.43 110.35 439.38 121.61 456.82 C 115.48 462.07 112.89 465.10 113.16 472.67 C 113.42 480.25 118.06 487.70 126.90 487.70 Z" fill="url(#SVGID_12_)" fill-rule="nonzero" group-id="17,44,47" node-id="373" stroke="none" target-height="77.53" target-width="69.13" target-x="110.35" target-y="410.5"></path><path d="M 162.07 467.47 L 146.69 477.59 L 146.27 467.80 L 155.99 456.34 L 146.12 464.32 L 144.84 434.42 L 143.90 464.52 L 133.52 456.26 L 143.80 467.59 L 143.49 477.65 L 127.67 466.03 L 143.37 481.29 L 142.58 506.64 L 147.93 506.64 L 146.85 481.44 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="17,44,47" node-id="375" stroke="none" target-height="72.22" target-width="34.40001" target-x="127.67" target-y="434.42"></path></g><g node-id="487"><path d="M 669.62 530.11 C 669.62 530.11 666.37 534.73 671.80 541.59 C 676.64 547.71 684.30 546.52 686.84 544.55 C 687.62 549.87 694.16 561.08 704.49 554.75 C 714.20 548.79 709.53 539.73 706.42 536.17 C 712.49 534.46 717.01 519.91 703.09 514.90 C 705.16 508.90 705.53 506.18 702.50 500.79 C 699.59 495.60 694.81 494.76 687.19 497.93 L 676.15 502.58 L 669.12 489.47 L 665.37 491.64 L 673.47 504.16 L 662.74 509.55 C 662.74 509.55 653.56 513.14 657.52 523.00 C 661.18 532.12 669.62 530.11 669.62 530.11 Z" fill="url(#SVGID_13_)" fill-rule="nonzero" group-id="17,44,48" node-id="380" stroke="none" target-height="71.610016" target-width="63.450073" target-x="653.56" target-y="489.47"></path><path d="M 650.92 474.20 L 684.12 474.20 C 684.12 474.20 694.85 474.51 696.98 462.25 C 699.32 448.80 689.54 446.95 689.54 446.95 C 689.54 446.95 695.44 444.24 694.15 434.07 C 692.86 423.90 683.91 422.61 680.18 423.09 C 680.79 417.06 682.06 403.40 667.88 403.26 C 654.19 403.12 654.27 416.90 655.29 422.34 C 650.41 422.39 635.66 429.71 646.04 445.78 C 640.40 450.61 638.01 453.41 638.26 460.37 C 638.52 467.34 642.79 474.20 650.92 474.20 Z" fill="url(#SVGID_14_)" fill-rule="nonzero" group-id="17,44,48" node-id="382" stroke="none" target-height="71.390015" target-width="63.660034" target-x="635.66" target-y="403.12"></path><path d="M 683.31 455.57 L 669.15 464.89 L 668.77 455.88 L 677.72 445.32 L 668.63 452.67 L 667.45 425.14 L 666.58 452.85 L 657.03 445.25 L 666.49 455.68 L 666.20 464.95 L 651.64 454.25 L 666.10 468.29 L 665.36 491.64 L 670.30 491.64 L 669.30 468.43 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="17,44,48" node-id="384" stroke="none" target-height="66.5" target-width="31.669983" target-x="651.64" target-y="425.14"></path></g><g node-id="488"><path d="M 230.13 439.92 C 230.13 439.92 228.38 442.40 231.30 446.09 C 233.90 449.38 238.01 448.74 239.38 447.68 C 239.80 450.54 243.31 456.56 248.86 453.16 C 254.08 449.96 251.57 445.09 249.90 443.18 C 253.16 442.26 255.59 434.45 248.11 431.76 C 249.22 428.54 249.42 427.08 247.79 424.18 C 246.23 421.39 243.66 420.94 239.57 422.64 L 233.64 425.14 L 229.87 418.10 L 227.85 419.27 L 232.20 425.99 L 226.43 428.88 C 226.43 428.88 221.50 430.81 223.63 436.10 C 225.60 440.99 230.13 439.92 230.13 439.92 Z" fill="url(#SVGID_15_)" fill-rule="nonzero" group-id="17,44,49" node-id="389" stroke="none" target-height="38.45999" target-width="34.089996" target-x="221.5" target-y="418.1"></path><path d="M 220.09 409.88 L 237.92 409.88 C 237.92 409.88 243.68 410.04 244.83 403.46 C 246.09 396.23 240.83 395.24 240.83 395.24 C 240.83 395.24 244.00 393.78 243.31 388.32 C 242.62 382.86 237.81 382.17 235.81 382.42 C 236.14 379.18 236.82 371.84 229.20 371.77 C 221.84 371.70 221.89 379.10 222.44 382.02 C 219.82 382.05 211.90 385.98 217.47 394.61 C 214.44 397.20 213.15 398.71 213.29 402.45 C 213.42 406.20 215.72 409.88 220.09 409.88 Z" fill="url(#SVGID_16_)" fill-rule="nonzero" group-id="17,44,49" node-id="391" stroke="none" target-height="38.339966" target-width="34.190018" target-x="211.89998" target-y="371.7"></path><path d="M 237.48 399.88 L 229.88 404.88 L 229.67 400.04 L 234.48 394.37 L 229.60 398.32 L 228.96 383.53 L 228.50 398.42 L 223.36 394.33 L 228.45 399.93 L 228.29 404.91 L 220.47 399.17 L 228.24 406.71 L 227.84 419.25 L 230.49 419.25 L 229.96 406.79 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="17,44,49" node-id="393" stroke="none" target-height="35.72" target-width="17.009995" target-x="220.47" target-y="383.53"></path></g></g><g node-id="484"><path d="M 556.46 491.47 L 294.09 488.71 L 364.38 590.47 L 273.88 500.36 L 264.31 494.08 L 256.81 490.89 L 248.94 494.90 L 460.69 729.89 L 724.94 617.82 Z" fill="url(#SVGID_17_)" fill-rule="nonzero" group-id="17,45" node-id="399" stroke="none" target-height="241.18002" target-width="476" target-x="248.94002" target-y="488.71"></path><path d="M 514.45 429.86 L 589.34 473.10 C 603.41 481.22 621.00 471.07 621.00 454.82 L 621.00 368.35 C 621.00 352.10 603.41 341.95 589.34 350.07 L 514.45 393.31 C 500.38 401.43 500.38 421.74 514.45 429.86 Z" fill="url(#SVGID_18_)" fill-rule="nonzero" group-id="17,45" node-id="401" stroke="none" target-height="139.26999" target-width="120.619995" target-x="500.38" target-y="341.95"></path><path d="M 532.13 503.97 L 320.18 503.97 C 303.64 503.97 290.24 490.56 290.24 474.03 L 290.24 349.14 C 290.24 332.60 303.65 319.20 320.18 319.20 L 532.12 319.20 C 548.66 319.20 562.06 332.61 562.06 349.14 L 562.06 474.03 C 562.07 490.57 548.66 503.97 532.13 503.97 Z" fill="url(#SVGID_19_)" fill-rule="nonzero" group-id="17,45" node-id="403" stroke="none" target-height="184.76999" target-width="271.83002" target-x="290.24" target-y="319.2"></path><path d="M 408.18 276.72 C 408.18 292.84 395.12 305.90 379.00 305.90 C 362.88 305.90 349.82 292.84 349.82 276.72 C 349.82 260.60 362.88 247.54 379.00 247.54 C 395.12 247.54 408.18 260.60 408.18 276.72 Z" fill="url(#SVGID_20_)" fill-rule="nonzero" group-id="17,45" node-id="405" stroke="none" target-height="58.36" target-width="58.359955" target-x="349.82004" target-y="247.54"></path><path d="M 513.19 261.68 C 513.19 285.59 493.80 304.98 469.89 304.98 C 445.98 304.98 426.59 285.59 426.59 261.68 C 426.59 237.77 445.98 218.38 469.89 218.38 C 493.80 218.38 513.19 237.77 513.19 261.68 Z" fill="url(#SVGID_21_)" fill-rule="nonzero" group-id="17,45" node-id="407" stroke="none" target-height="86.600006" target-width="86.599945" target-x="426.59006" target-y="218.37997"></path><path d="M 461.57 423.42 L 413.82 450.99 C 404.71 456.25 393.32 449.68 393.32 439.16 L 393.32 384.02 C 393.32 373.50 404.71 366.93 413.82 372.19 L 461.57 399.76 C 470.68 405.01 470.68 418.16 461.57 423.42 Z" fill="url(#SVGID_22_)" fill-rule="nonzero" group-id="17,45" node-id="409" stroke="none" target-height="89.32001" target-width="77.359985" target-x="393.32" target-y="366.93"></path></g><g node-id="485"><path d="M 258.16 487.23 C 258.16 487.23 258.71 488.07 256.81 490.89 C 259.39 491.95 262.91 491.08 262.91 491.08 L 263.00 486.22 L 258.16 487.23 Z" fill="#ffbe92" fill-rule="nonzero" group-id="17,46" node-id="414" stroke="none" target-height="5.7300415" target-width="6.1900024" target-x="256.81" target-y="486.21997"></path><path d="M 264.31 494.08 L 248.98 493.97 C 248.98 493.97 248.23 489.37 254.27 489.60 C 255.49 489.65 256.51 488.28 257.51 488.33 C 259.79 490.43 263.79 490.11 263.79 490.11 L 264.31 494.08 Z" fill="#f8b62d" fill-rule="nonzero" group-id="17,46" node-id="416" stroke="none" target-height="5.8000183" target-width="16.080002" target-x="248.23" target-y="488.27997"></path><path d="M 264.61 495.08 L 257.86 495.63 L 257.61 494.40 L 248.94 494.90 L 248.78 493.86 L 264.34 492.81 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="17,46" node-id="418" stroke="none" target-height="2.8200073" target-width="15.829987" target-x="248.78" target-y="492.81"></path><path d="M 266.04 492.56 C 266.04 492.56 267.50 493.46 265.75 496.75 C 268.66 497.60 271.61 496.19 271.61 496.19 L 271.19 490.89 L 266.04 492.56 Z" fill="#ffbe92" fill-rule="nonzero" group-id="17,46" node-id="420" stroke="none" target-height="6.710022" target-width="5.8599854" target-x="265.75" target-y="490.88998"></path><path d="M 273.44 499.30 L 256.79 500.95 C 256.79 500.95 255.49 496.03 262.06 495.58 C 263.39 495.49 264.35 493.89 265.44 493.82 C 268.14 495.84 272.45 495.03 272.45 495.03 L 273.44 499.30 Z" fill="#f8b62d" fill-rule="nonzero" group-id="17,46" node-id="422" stroke="none" target-height="7.1299744" target-width="17.949997" target-x="255.49" target-y="493.82004"></path><path d="M 273.88 500.36 L 266.61 501.74 L 266.22 500.43 L 256.86 501.97 L 256.57 500.85 L 273.34 497.91 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="17,46" node-id="424" stroke="none" target-height="4.0599976" target-width="17.309998" target-x="256.57" target-y="497.91"></path><path d="M 269.12 453.12 C 269.12 453.12 260.40 463.57 259.91 469.47 C 259.48 474.55 257.92 489.44 257.92 489.44 L 263.23 489.44 L 265.22 475.77 L 269.12 453.12 Z" fill="url(#SVGID_23_)" fill-rule="nonzero" group-id="17,46" node-id="426" stroke="none" target-height="36.320007" target-width="11.199982" target-x="257.92" target-y="453.12"></path><path d="M 271.95 447.61 C 271.95 447.61 261.03 460.59 262.62 470.29 C 264.31 480.61 266.45 493.88 266.45 493.88 L 271.72 494.07 C 271.72 494.07 270.70 479.92 270.81 473.70 C 270.93 466.61 277.64 462.60 279.18 461.85 C 281.19 460.87 289.68 456.62 288.83 451.53 C 287.98 446.44 271.95 447.61 271.95 447.61 Z" fill="url(#SVGID_24_)" fill-rule="nonzero" group-id="17,46" node-id="428" stroke="none" target-height="47.630005" target-width="28.649994" target-x="261.03" target-y="446.44"></path><path d="M 263.27 411.71 C 263.27 411.71 263.62 415.57 268.14 418.07 C 269.08 418.48 270.78 419.13 271.59 416.72 C 271.70 416.56 271.99 416.68 272.20 416.84 C 272.41 417.00 275.90 419.92 275.90 419.92 L 280.66 415.61 C 280.66 415.61 270.93 409.38 269.49 407.72 C 268.74 406.87 266.53 406.23 264.70 407.75 C 262.87 409.29 263.27 411.71 263.27 411.71 Z" fill="#ffbe92" fill-rule="nonzero" group-id="17,46" node-id="430" stroke="none" target-height="13.689972" target-width="17.790009" target-x="262.87" target-y="406.23"></path><path d="M 261.18 407.37 C 261.18 407.37 259.87 406.90 259.15 408.78 C 258.43 410.65 260.13 411.24 260.45 411.49 C 260.76 411.74 260.79 412.13 260.25 412.33 C 259.71 412.53 258.91 413.05 259.25 414.39 C 259.59 415.72 262.77 417.15 264.10 415.50 C 265.43 413.85 265.48 412.35 265.53 411.27 C 265.57 410.20 266.03 408.54 266.80 409.06 C 267.57 409.58 268.81 411.02 268.93 410.53 C 269.04 410.07 267.56 408.79 268.42 408.00 C 269.28 407.21 270.34 408.51 270.39 409.69 C 270.41 410.19 270.38 410.13 270.72 410.34 C 271.07 410.55 271.23 410.77 271.85 410.83 C 272.48 410.89 272.78 410.96 272.58 410.22 C 272.38 409.49 271.99 408.09 269.89 406.31 C 269.26 405.84 269.41 405.64 269.41 405.05 C 269.41 404.46 269.38 403.57 268.28 403.24 C 267.18 402.91 266.86 403.37 266.34 403.89 C 265.82 404.40 265.67 404.19 265.37 403.87 C 265.07 403.56 263.56 402.69 262.51 403.68 C 261.47 404.67 261.56 405.69 261.76 406.45 C 261.96 407.21 261.50 407.38 261.18 407.37 Z" fill="#171c61" fill-rule="nonzero" group-id="17,46" node-id="432" stroke="none" target-height="14.459991" target-width="14.350006" target-x="258.43" target-y="402.69"></path><path d="M 288.66 423.02 C 288.66 423.02 284.95 411.76 275.20 412.01 C 274.00 414.33 269.98 422.10 271.95 429.82 C 273.34 435.45 273.34 435.68 273.86 439.32 C 274.39 442.96 264.90 452.73 268.44 453.02 C 270.76 453.21 280.69 456.24 283.17 454.92 C 286.29 453.25 290.39 457.47 290.25 452.08 C 290.13 447.49 291.28 431.87 288.66 423.02 Z" fill="url(#SVGID_25_)" fill-rule="nonzero" group-id="17,46" node-id="434" stroke="none" target-height="45.70996" target-width="26.380005" target-x="264.9" target-y="411.76004"></path><path d="M 284.68 421.60 C 284.68 421.60 292.98 429.35 292.87 431.27 C 292.76 433.19 290.58 440.12 290.58 441.37 C 290.58 442.63 290.63 444.98 290.47 445.93 C 290.31 446.88 288.29 443.00 288.56 440.55 C 288.83 438.09 289.60 431.88 288.51 431.28 C 287.42 430.68 281.19 425.48 281.19 425.48 L 284.68 421.60 Z" fill="#ffbe92" fill-rule="nonzero" group-id="17,46" node-id="436" stroke="none" target-height="25.279999" target-width="11.790009" target-x="281.19" target-y="421.6"></path><path d="M 286.43 421.78 L 280.86 429.44 C 280.86 429.44 271.73 422.51 276.39 417.39 C 281.06 412.27 286.43 421.78 286.43 421.78 Z" fill="url(#SVGID_26_)" fill-rule="nonzero" group-id="17,46" node-id="438" stroke="none" target-height="17.170013" target-width="14.699982" target-x="271.73" target-y="412.27"></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="177"><linearGradient gradientUnits="objectBoundingBox" id="SVGID_1_" node-id="7" spreadMethod="pad" x1="254.428" x2="254.428" y1="428.1164" y2="331.3282"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_2_" node-id="11" spreadMethod="pad" x1="189.8111" x2="189.8111" y1="486.1083" y2="269.6193"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_3_" node-id="15" spreadMethod="pad" x1="565.5927" x2="565.5927" y1="443.4294" y2="286.9486"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_4_" node-id="19" spreadMethod="pad" x1="628.1175" x2="628.1175" y1="466.0994" y2="296.3588"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_5_" node-id="23" spreadMethod="pad" x1="119.405" x2="119.405" y1="508.1779" y2="357.6645"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_6_" node-id="27" spreadMethod="pad" x1="682.0781" x2="682.0781" y1="491.5725" y2="368.4403"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_7_" node-id="31" spreadMethod="pad" x1="125.3686" x2="125.3686" y1="235.8706" y2="171.3294"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_8_" node-id="35" spreadMethod="pad" x1="642.4371" x2="642.4371" y1="199.0502" y2="134.5089"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_9_" node-id="39" spreadMethod="pad" x1="512.6661" x2="512.6661" y1="242.2237" y2="195.5064"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_10_" node-id="43" spreadMethod="pad" x1="398.8834" x2="398.8834" y1="757.7485" y2="405.6196"><stop offset="0.4065" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dae4ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_11_" node-id="49" spreadMethod="pad" x1="189.813" x2="138.3768" y1="581.2043" y2="519.905"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_12_" node-id="53" spreadMethod="pad" x1="110.7652" x2="174.952" y1="460.9139" y2="460.9139"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_13_" node-id="59" spreadMethod="pad" x1="708.6751" x2="661.3097" y1="561.2317" y2="504.7838"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_14_" node-id="63" spreadMethod="pad" x1="635.8834" x2="694.9902" y1="450.4615" y2="450.4615"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_15_" node-id="69" spreadMethod="pad" x1="250.0125" x2="224.5712" y1="462.061" y2="431.7412"><stop offset="0.0000001438503" stop-color="#eaeff6"></stop><stop offset="1" stop-color="#cddae9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_16_" node-id="73" spreadMethod="pad" x1="210.914" x2="242.662" y1="402.5632" y2="402.5632"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_17_" node-id="79" spreadMethod="pad" x1="542.574" x2="479.4996" y1="694.0817" y2="441.1039"><stop offset="0.182" stop-color="#ffffff"></stop><stop offset="1" stop-color="#bbcbe0"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_18_" node-id="83" spreadMethod="pad" x1="528.4815" x2="445.5399" y1="278.2911" y2="278.2911"><stop offset="0" stop-color="#cad8e7"></stop><stop offset="0.4573" stop-color="#b3c7dd"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_19_" node-id="87" spreadMethod="pad" x1="410.1656" x2="410.1656" y1="246.8909" y2="494.8575"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_20_" node-id="95" spreadMethod="pad" x1="371.323" x2="371.323" y1="438.91" y2="498.7176"><stop offset="0" stop-color="#dce5f0"></stop><stop offset="1" stop-color="#b8cbdf"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_21_" node-id="100" spreadMethod="pad" x1="348.5686" x2="460.3421" y1="251.3972" y2="251.3972"><stop offset="0.2247" stop-color="#e3eaf3"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_22_" node-id="111" spreadMethod="pad" x1="359.5936" x2="406.6544" y1="232.2229" y2="232.2229"><stop offset="0" stop-color="#78c8ff"></stop><stop offset="0.6903" stop-color="#4d8fe9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_23_" node-id="117" spreadMethod="pad" x1="419.1735" x2="419.1735" y1="253.7056" y2="230.9977"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_24_" node-id="123" spreadMethod="pad" x1="428.4131" x2="428.4131" y1="249.1134" y2="236.6056"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_25_" node-id="128" spreadMethod="pad" x1="283.9644" x2="368.3864" y1="557.6495" y2="557.6495"><stop offset="0" stop-color="#dae3ef"></stop><stop offset="0.6329" stop-color="#9cb6d2"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_26_" node-id="132" spreadMethod="pad" x1="320.5338" x2="366.7301" y1="548.3926" y2="548.3926"><stop offset="0" stop-color="#d5e0ee"></stop><stop offset="1" stop-color="#f5f9fa"></stop></linearGradient></defs><g node-id="445"><g node-id="486"><path d="M 268.88 334.73 L 268.88 331.32 L 239.38 331.32 L 239.38 335.28 L 232.90 335.28 L 232.90 428.11 L 275.95 428.11 L 275.95 334.73 L 268.88 334.73 Z M 272.23 417.47 L 236.19 417.47 L 236.19 414.72 L 272.23 414.72 L 272.23 417.47 Z M 272.23 404.79 L 236.19 404.79 L 236.19 402.04 L 272.23 402.04 L 272.23 404.79 Z M 272.23 392.12 L 236.19 392.12 L 236.19 389.37 L 272.23 389.37 L 272.23 392.12 Z M 272.23 379.78 L 236.19 379.78 L 236.19 377.03 L 272.23 377.03 L 272.23 379.78 Z M 272.23 367.46 L 236.19 367.46 L 236.19 364.71 L 272.23 364.71 L 272.23 367.46 Z M 272.23 354.78 L 236.19 354.78 L 236.19 352.03 L 272.23 352.03 L 272.23 354.78 Z M 272.23 342.44 L 236.19 342.44 L 236.19 339.69 L 272.23 339.69 L 272.23 342.44 Z" fill="url(#SVGID_1_)" fill-rule="nonzero" group-id="2,43" node-id="339" stroke="none" target-height="96.78998" target-width="43.05002" target-x="232.9" target-y="331.32"></path><path d="M 210.90 386.55 L 210.90 278.36 L 178.15 278.36 L 178.15 269.62 L 164.29 269.62 L 164.29 322.95 L 160.56 322.95 L 160.56 486.11 L 219.07 486.11 L 219.07 386.55 L 210.90 386.55 Z M 186.40 418.35 L 178.14 418.35 L 178.14 410.34 L 186.40 410.34 L 186.40 418.35 Z M 186.40 405.83 L 178.14 405.83 L 178.14 397.82 L 186.40 397.82 L 186.40 405.83 Z M 186.40 393.35 L 178.14 393.35 L 178.14 385.34 L 186.40 385.34 L 186.40 393.35 Z M 186.40 380.91 L 178.14 380.91 L 178.14 372.90 L 186.40 372.90 L 186.40 380.91 Z M 186.40 368.38 L 178.14 368.38 L 178.14 360.37 L 186.40 360.37 L 186.40 368.38 Z M 186.40 343.38 L 178.14 343.38 L 178.14 335.37 L 186.40 335.37 L 186.40 343.38 Z M 186.40 330.85 L 178.14 330.85 L 178.14 322.84 L 186.40 322.84 L 186.40 330.85 Z M 186.40 318.38 L 178.14 318.38 L 178.14 310.37 L 186.40 310.37 L 186.40 318.38 Z M 186.40 305.94 L 178.14 305.94 L 178.14 297.93 L 186.40 297.93 L 186.40 305.94 Z M 186.40 293.41 L 178.14 293.41 L 178.14 285.40 L 186.40 285.40 L 186.40 293.41 Z M 198.76 418.35 L 190.50 418.35 L 190.50 410.34 L 198.76 410.34 L 198.76 418.35 Z M 198.76 405.83 L 190.50 405.83 L 190.50 397.82 L 198.76 397.82 L 198.76 405.83 Z M 198.76 393.35 L 190.50 393.35 L 190.50 385.34 L 198.76 385.34 L 198.76 393.35 Z M 198.76 380.91 L 190.50 380.91 L 190.50 372.90 L 198.76 372.90 L 198.76 380.91 Z M 198.76 368.38 L 190.50 368.38 L 190.50 360.37 L 198.76 360.37 L 198.76 368.38 Z M 198.76 343.38 L 190.50 343.38 L 190.50 335.37 L 198.76 335.37 L 198.76 343.38 Z M 198.76 330.85 L 190.50 330.85 L 190.50 322.84 L 198.76 322.84 L 198.76 330.85 Z M 198.76 318.38 L 190.50 318.38 L 190.50 310.37 L 198.76 310.37 L 198.76 318.38 Z M 198.76 305.94 L 190.50 305.94 L 190.50 297.93 L 198.76 297.93 L 198.76 305.94 Z M 198.76 293.41 L 190.50 293.41 L 190.50 285.40 L 198.76 285.40 L 198.76 293.41 Z" fill="url(#SVGID_2_)" fill-rule="nonzero" group-id="2,43" node-id="341" stroke="none" target-height="216.49002" target-width="58.51001" target-x="160.56" target-y="269.62"></path><path d="M 533.21 443.43 C 533.57 438.78 533.21 286.95 533.21 286.95 L 551.74 286.95 L 551.74 320.66 L 581.24 320.66 L 581.24 391.11 L 597.97 391.11 L 597.97 443.43 L 533.21 443.43 Z" fill="url(#SVGID_3_)" fill-rule="nonzero" group-id="2,43" node-id="343" stroke="none" target-height="156.48001" target-width="64.75995" target-x="533.21" target-y="286.95"></path><path d="M 654.43 375.28 L 654.43 370.43 L 649.43 370.43 L 649.43 328.10 L 637.23 328.10 L 637.23 323.40 L 629.00 323.40 L 629.00 316.49 L 624.71 316.49 L 624.71 296.35 L 621.62 296.35 L 621.62 316.63 L 617.68 316.63 L 617.68 323.54 L 605.48 323.54 L 605.48 334.86 L 598.43 334.86 L 598.43 466.10 L 657.81 466.10 L 657.81 375.28 L 654.43 375.28 Z M 608.91 428.07 L 604.89 428.07 L 604.89 412.83 L 608.91 412.83 L 608.91 428.07 Z M 608.91 409.42 L 604.89 409.42 L 604.89 394.18 L 608.91 394.18 L 608.91 409.42 Z M 608.91 390.76 L 604.89 390.76 L 604.89 375.52 L 608.91 375.52 L 608.91 390.76 Z M 608.91 371.78 L 604.89 371.78 L 604.89 356.54 L 608.91 356.54 L 608.91 371.78 Z M 608.91 352.80 L 604.89 352.80 L 604.89 337.56 L 608.91 337.56 L 608.91 352.80 Z M 617.19 428.07 L 613.17 428.07 L 613.17 412.83 L 617.19 412.83 L 617.19 428.07 Z M 617.19 409.42 L 613.17 409.42 L 613.17 394.18 L 617.19 394.18 L 617.19 409.42 Z M 617.19 390.76 L 613.17 390.76 L 613.17 375.52 L 617.19 375.52 L 617.19 390.76 Z M 617.19 371.78 L 613.17 371.78 L 613.17 356.54 L 617.19 356.54 L 617.19 371.78 Z M 617.19 352.80 L 613.17 352.80 L 613.17 337.56 L 617.19 337.56 L 617.19 352.80 Z M 625.47 428.07 L 621.45 428.07 L 621.45 412.83 L 625.47 412.83 L 625.47 428.07 Z M 625.47 409.42 L 621.45 409.42 L 621.45 394.18 L 625.47 394.18 L 625.47 409.42 Z M 625.47 390.76 L 621.45 390.76 L 621.45 375.52 L 625.47 375.52 L 625.47 390.76 Z M 625.47 371.78 L 621.45 371.78 L 621.45 356.54 L 625.47 356.54 L 625.47 371.78 Z M 625.47 352.80 L 621.45 352.80 L 621.45 337.56 L 625.47 337.56 L 625.47 352.80 Z M 633.75 428.07 L 629.73 428.07 L 629.73 412.83 L 633.75 412.83 L 633.75 428.07 Z M 633.75 409.42 L 629.73 409.42 L 629.73 394.18 L 633.75 394.18 L 633.75 409.42 Z M 633.75 390.76 L 629.73 390.76 L 629.73 375.52 L 633.75 375.52 L 633.75 390.76 Z M 633.75 371.78 L 629.73 371.78 L 629.73 356.54 L 633.75 356.54 L 633.75 371.78 Z M 633.75 352.80 L 629.73 352.80 L 629.73 337.56 L 633.75 337.56 L 633.75 352.80 Z M 642.03 428.07 L 638.01 428.07 L 638.01 412.83 L 642.03 412.83 L 642.03 428.07 Z M 642.03 409.42 L 638.01 409.42 L 638.01 394.18 L 642.03 394.18 L 642.03 409.42 Z M 642.03 390.76 L 638.01 390.76 L 638.01 375.52 L 642.03 375.52 L 642.03 390.76 Z M 642.03 371.78 L 638.01 371.78 L 638.01 356.54 L 642.03 356.54 L 642.03 371.78 Z M 642.03 352.80 L 638.01 352.80 L 638.01 337.56 L 642.03 337.56 L 642.03 352.80 Z" fill="url(#SVGID_4_)" fill-rule="nonzero" group-id="2,43" node-id="345" stroke="none" target-height="169.75" target-width="59.380005" target-x="598.43" target-y="296.35"></path><path d="M 92.78 508.18 L 92.78 418.63 L 103.03 418.63 L 103.03 372.94 L 138.29 357.66 L 138.29 417.91 L 146.03 417.91 L 146.03 508.18 Z" fill="url(#SVGID_5_)" fill-rule="nonzero" group-id="2,43" node-id="347" stroke="none" target-height="150.51999" target-width="53.25" target-x="92.78" target-y="357.66"></path><path d="M 697.55 491.57 L 666.61 491.57 L 666.61 368.44 L 697.55 383.41 Z" fill="url(#SVGID_6_)" fill-rule="nonzero" group-id="2,43" node-id="349" stroke="none" target-height="123.130005" target-width="30.939941" target-x="666.61" target-y="368.44"></path><path d="M 87.60 194.76 C 87.60 194.76 96.94 169.28 119.90 179.28 C 125.20 173.90 131.76 169.99 140.63 171.75 C 149.50 173.51 155.22 180.16 157.16 184.58 C 159.94 184.45 182.20 185.19 182.20 208.28 C 182.20 231.37 155.26 230.93 153.31 229.10 C 150.91 231.24 139.37 242.85 125.37 229.60 C 122.34 232.19 112.44 243.16 96.79 228.02 C 89.54 231.05 72.31 233.38 68.97 215.59 C 65.62 197.81 82.76 192.79 87.60 194.76 Z" fill="url(#SVGID_7_)" fill-rule="nonzero" group-id="2,43" node-id="351" stroke="none" target-height="73.880005" target-width="116.579994" target-x="65.62" target-y="169.28"></path><path d="M 604.67 157.94 C 604.67 157.94 614.01 132.46 636.97 142.46 C 642.27 137.08 648.83 133.17 657.70 134.93 C 666.57 136.69 672.29 143.34 674.23 147.76 C 677.01 147.63 699.27 148.37 699.27 171.46 C 699.27 194.55 672.33 194.11 670.38 192.28 C 667.98 194.42 656.44 206.03 642.44 192.78 C 639.41 195.37 629.51 206.34 613.86 191.20 C 606.61 194.23 589.38 196.56 586.04 178.77 C 582.69 160.99 599.83 155.97 604.67 157.94 Z" fill="url(#SVGID_8_)" fill-rule="nonzero" group-id="2,43" node-id="353" stroke="none" target-height="73.87999" target-width="116.58002" target-x="582.69" target-y="132.46"></path><path d="M 485.33 212.47 C 485.33 212.47 492.09 194.02 508.71 201.27 C 512.55 197.37 517.29 194.54 523.72 195.82 C 530.15 197.10 534.28 201.91 535.68 205.10 C 537.69 205.01 553.81 205.54 553.81 222.25 C 553.81 238.96 534.31 238.64 532.90 237.32 C 531.16 238.87 522.81 247.27 512.67 237.69 C 510.48 239.56 503.31 247.51 491.99 236.55 C 486.74 238.74 474.27 240.43 471.85 227.55 C 469.42 214.68 481.83 211.04 485.33 212.47 Z" fill="url(#SVGID_9_)" fill-rule="nonzero" group-id="2,43" node-id="355" stroke="none" target-height="53.48999" target-width="84.38995" target-x="469.42004" target-y="194.02"></path><path d="M 769.86 581.68 C 769.86 628.37 730.77 673.16 661.20 706.17 C 591.63 739.19 497.27 757.74 398.88 757.74 C 300.49 757.74 206.13 739.19 136.56 706.17 C 66.99 673.16 27.90 628.37 27.90 581.68 C 27.90 534.99 66.99 490.20 136.56 457.19 C 206.13 424.17 300.49 405.62 398.88 405.62 C 497.27 405.62 591.63 424.17 661.20 457.19 C 730.77 490.20 769.86 534.99 769.86 581.68 Z" fill="url(#SVGID_10_)" fill-rule="nonzero" group-id="2,43" node-id="357" stroke="none" target-height="352.12" target-width="741.95996" target-x="27.899994" target-y="405.62"></path></g><g node-id="487"><g node-id="491"><path d="M 144.83 560.15 C 144.83 560.15 141.30 565.16 147.20 572.62 C 152.46 579.26 160.77 577.97 163.53 575.84 C 164.38 581.62 171.47 593.80 182.69 586.91 C 193.24 580.44 188.16 570.60 184.79 566.73 C 191.38 564.87 196.29 549.08 181.17 543.63 C 183.41 537.11 183.81 534.16 180.53 528.30 C 177.37 522.66 172.18 521.76 163.90 525.19 L 151.92 530.24 L 144.29 516.00 L 140.21 518.36 L 149.01 531.96 L 137.35 537.81 C 137.35 537.81 127.38 541.71 131.68 552.41 C 135.67 562.33 144.83 560.15 144.83 560.15 Z" fill="url(#SVGID_11_)" fill-rule="nonzero" group-id="2,44,48" node-id="363" stroke="none" target-height="77.79999" target-width="68.909996" target-x="127.38" target-y="516"></path><path d="M 124.53 499.44 L 160.59 499.44 C 160.59 499.44 172.24 499.77 174.56 486.46 C 177.11 471.85 166.48 469.84 166.48 469.84 C 166.48 469.84 172.88 466.90 171.49 455.85 C 170.10 444.80 160.37 443.41 156.32 443.92 C 156.98 437.37 158.36 422.54 142.96 422.39 C 128.09 422.24 128.18 437.21 129.29 443.11 C 123.99 443.17 107.98 451.12 119.24 468.56 C 113.11 473.81 110.52 476.84 110.79 484.41 C 111.06 491.98 115.70 499.44 124.53 499.44 Z" fill="url(#SVGID_12_)" fill-rule="nonzero" group-id="2,44,48" node-id="365" stroke="none" target-height="77.52997" target-width="69.13" target-x="107.98" target-y="422.24002"></path><path d="M 159.71 479.20 L 144.33 489.32 L 143.91 479.53 L 153.63 468.07 L 143.76 476.06 L 142.48 446.15 L 141.53 476.25 L 131.16 467.99 L 141.44 479.32 L 141.12 489.39 L 125.31 477.76 L 141.01 493.02 L 140.21 518.37 L 145.57 518.37 L 144.49 493.17 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="2,44,48" node-id="367" stroke="none" target-height="72.22" target-width="34.400017" target-x="125.30999" target-y="446.15"></path></g><g node-id="492"><path d="M 667.25 541.84 C 667.25 541.84 664.00 546.46 669.43 553.32 C 674.27 559.44 681.93 558.25 684.47 556.28 C 685.25 561.60 691.79 572.81 702.12 566.48 C 711.83 560.52 707.16 551.46 704.05 547.90 C 710.12 546.19 714.64 531.64 700.72 526.63 C 702.79 520.63 703.16 517.91 700.13 512.52 C 697.22 507.33 692.44 506.49 684.82 509.66 L 673.78 514.31 L 666.75 501.20 L 663.00 503.37 L 671.10 515.89 L 660.37 521.28 C 660.37 521.28 651.19 524.87 655.15 534.73 C 658.82 543.85 667.25 541.84 667.25 541.84 Z" fill="url(#SVGID_13_)" fill-rule="nonzero" group-id="2,44,49" node-id="372" stroke="none" target-height="71.610016" target-width="63.450012" target-x="651.19" target-y="501.19998"></path><path d="M 648.56 485.93 L 681.76 485.93 C 681.76 485.93 692.49 486.24 694.62 473.98 C 696.96 460.53 687.18 458.68 687.18 458.68 C 687.18 458.68 693.08 455.97 691.79 445.80 C 690.50 435.63 681.55 434.34 677.82 434.82 C 678.43 428.79 679.70 415.13 665.52 414.99 C 651.83 414.85 651.91 428.63 652.93 434.07 C 648.05 434.12 633.30 441.44 643.68 457.51 C 638.04 462.34 635.65 465.14 635.90 472.10 C 636.16 479.07 640.43 485.93 648.56 485.93 Z" fill="url(#SVGID_14_)" fill-rule="nonzero" group-id="2,44,49" node-id="374" stroke="none" target-height="71.390015" target-width="63.660034" target-x="633.3" target-y="414.85"></path><path d="M 680.95 467.30 L 666.79 476.62 L 666.40 467.61 L 675.36 457.05 L 666.27 464.40 L 665.09 436.87 L 664.22 464.58 L 654.66 456.98 L 664.13 467.41 L 663.84 476.68 L 649.27 465.98 L 663.73 480.03 L 663.00 503.37 L 667.93 503.37 L 666.94 480.17 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="2,44,49" node-id="376" stroke="none" target-height="66.50003" target-width="31.679993" target-x="649.27" target-y="436.87"></path></g><g node-id="493"><path d="M 227.76 451.65 C 227.76 451.65 226.01 454.13 228.93 457.82 C 231.53 461.11 235.64 460.47 237.01 459.41 C 237.43 462.27 240.94 468.29 246.49 464.89 C 251.71 461.69 249.20 456.82 247.53 454.91 C 250.79 453.99 253.22 446.18 245.74 443.49 C 246.85 440.27 247.05 438.81 245.42 435.91 C 243.86 433.12 241.29 432.67 237.20 434.37 L 231.27 436.87 L 227.50 429.83 L 225.48 431.00 L 229.83 437.72 L 224.06 440.61 C 224.06 440.61 219.13 442.54 221.26 447.83 C 223.23 452.72 227.76 451.65 227.76 451.65 Z" fill="url(#SVGID_15_)" fill-rule="nonzero" group-id="2,44,50" node-id="381" stroke="none" target-height="38.460052" target-width="34.089996" target-x="219.13" target-y="429.83"></path><path d="M 217.72 421.62 L 235.55 421.62 C 235.55 421.62 241.31 421.78 242.46 415.20 C 243.72 407.97 238.46 406.98 238.46 406.98 C 238.46 406.98 241.63 405.52 240.94 400.06 C 240.25 394.60 235.44 393.91 233.44 394.16 C 233.77 390.92 234.45 383.58 226.83 383.51 C 219.47 383.44 219.52 390.84 220.07 393.76 C 217.45 393.79 209.53 397.72 215.10 406.35 C 212.07 408.94 210.78 410.45 210.92 414.19 C 211.06 417.93 213.35 421.62 217.72 421.62 Z" fill="url(#SVGID_16_)" fill-rule="nonzero" group-id="2,44,50" node-id="383" stroke="none" target-height="38.339996" target-width="34.190002" target-x="209.53" target-y="383.44"></path><path d="M 235.12 411.61 L 227.51 416.61 L 227.31 411.77 L 232.12 406.10 L 227.23 410.05 L 226.60 395.26 L 226.13 410.15 L 221.00 406.06 L 226.09 411.67 L 225.93 416.65 L 218.11 410.90 L 225.87 418.44 L 225.48 430.98 L 228.13 430.98 L 227.60 418.52 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="2,44,50" node-id="385" stroke="none" target-height="35.71997" target-width="17.010025" target-x="218.10999" target-y="395.26004"></path></g></g><g node-id="488"><path d="M 272.41 492.74 L 407.48 678.45 L 749.66 642.45 L 468.02 472.29 Z" fill="url(#SVGID_17_)" fill-rule="nonzero" group-id="2,45" node-id="390" stroke="none" target-height="206.16" target-width="477.24997" target-x="272.41" target-y="472.29"></path><path d="M 445.54 308.42 L 528.47 308.42 L 528.47 266.95 C 528.47 266.95 529.80 248.16 500.53 248.16 C 471.27 248.16 446.53 248.16 446.53 248.16 L 445.54 308.42 Z" fill="url(#SVGID_18_)" fill-rule="nonzero" group-id="2,45" node-id="392" stroke="none" target-height="60.26001" target-width="84.25995" target-x="445.54004" target-y="248.16"></path><path d="M 323.33 247.68 C 323.33 247.68 302.57 249.91 302.57 280.58 C 302.57 311.25 302.57 468.28 302.57 468.28 L 451.72 494.85 C 451.72 494.85 472.70 495.50 479.11 482.00 C 485.51 468.50 484.74 455.65 484.74 436.86 C 484.74 418.07 484.74 283.25 484.74 283.25 C 484.74 283.25 482.75 245.05 517.76 251.32 C 512.35 247.65 495.67 246.89 488.28 246.89 C 480.89 246.89 323.33 247.68 323.33 247.68 Z" fill="url(#SVGID_19_)" fill-rule="nonzero" group-id="2,45" node-id="394" stroke="none" target-height="250.45" target-width="215.19" target-x="302.57" target-y="245.05"></path><path d="M 332.66 291.17 L 448.83 291.17 L 448.83 305.10 L 332.66 305.10 Z" fill="#f7f8f8" fill-rule="nonzero" group-id="2,45" node-id="396" stroke="none" target-height="13.929993" target-width="116.17001" target-x="332.66" target-y="291.17"></path><path d="M 332.66 324.32 L 448.83 324.32 L 448.83 338.25 L 332.66 338.25 Z" fill="#f7f8f8" fill-rule="nonzero" group-id="2,45" node-id="398" stroke="none" target-height="13.929993" target-width="116.17001" target-x="332.66" target-y="324.32"></path><path d="M 332.66 359.32 L 448.83 359.32 L 448.83 373.25 L 332.66 373.25 Z" fill="#f7f8f8" fill-rule="nonzero" group-id="2,45" node-id="400" stroke="none" target-height="13.929993" target-width="116.17001" target-x="332.66" target-y="359.32"></path><path d="M 332.66 390.56 L 406.21 390.56 L 406.21 404.49 L 332.66 404.49 Z" fill="#f7f8f8" fill-rule="nonzero" group-id="2,45" node-id="402" stroke="none" target-height="13.929993" target-width="73.55002" target-x="332.66" target-y="390.56"></path><path d="M 440.39 438.91 C 440.39 438.91 281.61 438.91 270.35 438.91 C 263.36 451.21 263.08 463.84 264.47 477.26 C 265.11 483.48 269.56 498.67 287.11 498.67 C 308.46 498.67 450.55 498.67 450.55 498.67 C 450.55 498.67 474.87 500.46 478.84 482.46 C 474.13 487.36 460.41 497.09 447.45 483.84 C 442.74 478.22 434.35 460.51 440.39 438.91 Z" fill="url(#SVGID_20_)" fill-rule="nonzero" group-id="2,45" node-id="404" stroke="none" target-height="61.55002" target-width="215.76004" target-x="263.08" target-y="438.91"></path></g><g node-id="489"><path d="M 456.44 245.31 C 456.44 245.31 462.38 248.52 459.60 250.83 C 457.63 252.47 456.77 252.09 455.69 254.24 C 453.46 256.99 451.20 256.78 448.45 254.88 C 445.70 252.98 443.21 253.57 440.00 254.62 C 436.79 255.67 427.23 255.93 420.48 255.87 C 413.73 255.80 409.34 255.87 405.22 256.98 C 401.09 258.09 396.64 257.37 392.58 254.55 C 388.52 251.73 389.57 251.14 383.74 251.07 C 377.91 251.00 370.90 253.04 367.62 253.56 C 364.34 254.08 355.89 254.54 350.72 253.82 C 345.54 253.10 351.38 249.62 351.38 249.62 L 363.30 247.26 L 403.72 247.26 L 456.44 245.31 Z" fill="url(#SVGID_21_)" fill-rule="nonzero" group-id="2,46" node-id="408" stroke="none" target-height="12.779999" target-width="116.84" target-x="345.54" target-y="245.31"></path><path d="M 362.90 219.93 C 362.90 219.93 360.00 221.63 356.34 219.94 C 356.27 223.51 360.10 226.16 360.10 226.16 L 365.53 225.64 L 362.90 219.93 Z" fill="#ffbe92" fill-rule="nonzero" group-id="2,46" node-id="410" stroke="none" target-height="6.230011" target-width="9.26001" target-x="356.27" target-y="219.93"></path><path d="M 363.90 241.50 L 359.04 247.11 L 365.55 248.97 L 369.01 246.17 Z" fill="#ffbe92" fill-rule="nonzero" group-id="2,46" node-id="412" stroke="none" target-height="7.470001" target-width="9.969971" target-x="359.04" target-y="241.5"></path><path d="M 368.13 251.17 L 349.36 250.70 C 349.36 250.70 348.58 245.05 355.96 245.47 C 363.35 245.89 367.61 246.31 367.61 246.31 L 368.13 251.17 Z" fill="#f8b62d" fill-rule="nonzero" group-id="2,46" node-id="414" stroke="none" target-height="6.119995" target-width="19.549988" target-x="348.58002" target-y="245.05"></path><path d="M 368.47 252.41 L 360.18 252.93 L 359.92 251.42 L 349.29 251.83 L 349.11 250.55 L 368.20 249.62 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="2,46" node-id="416" stroke="none" target-height="3.3099976" target-width="19.360016" target-x="349.11" target-y="249.62"></path><path d="M 359.74 230.01 L 348.00 217.06 C 348.00 217.06 351.29 212.90 355.76 218.15 C 356.66 219.21 358.60 219.02 359.33 219.90 C 359.33 223.42 362.64 226.25 362.64 226.25 L 359.74 230.01 Z" fill="#f8b62d" fill-rule="nonzero" group-id="2,46" node-id="418" stroke="none" target-height="17.109985" target-width="14.640015" target-x="348" target-y="212.90001"></path><path d="M 359.13 231.03 L 353.45 225.79 L 354.30 224.64 L 347.19 217.75 L 347.93 216.81 L 360.83 229.06 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="2,46" node-id="420" stroke="none" target-height="14.220001" target-width="13.640015" target-x="347.18997" target-y="216.81"></path><path d="M 405.08 235.93 L 404.84 235.71 L 386.02 218.68 C 386.02 218.68 379.80 217.83 373.05 227.53 C 366.30 237.23 361.43 244.35 361.43 244.35 L 367.61 247.56 L 381.57 233.96 C 381.57 233.96 382.55 233.76 383.40 235.34 C 384.25 236.91 388.64 243.14 389.23 244.26 C 389.82 245.38 390.61 254.03 404.76 252.65 C 405.21 238.62 405.08 235.93 405.08 235.93 Z" fill="#4d8fe9" fill-rule="nonzero" group-id="2,46" node-id="422" stroke="none" target-height="36.199997" target-width="43.78003" target-x="361.42996" target-y="217.83002"></path><path d="M 403.84 232.85 C 403.84 232.85 394.57 217.21 392.54 214.65 C 390.51 212.09 390.41 211.54 385.73 212.62 C 381.05 213.70 359.60 220.60 359.60 220.60 L 362.17 226.72 C 362.17 226.72 377.67 223.41 383.80 222.52 C 383.80 222.52 385.54 221.63 385.86 224.68 C 386.19 227.73 386.15 236.12 389.23 244.84 C 390.93 248.97 392.70 252.64 403.51 252.32 C 410.39 245.84 403.84 232.85 403.84 232.85 Z" fill="url(#SVGID_22_)" fill-rule="nonzero" group-id="2,46" node-id="424" stroke="none" target-height="41.09999" target-width="50.789978" target-x="359.6" target-y="211.54"></path><path d="M 453.17 240.36 C 453.17 240.36 449.93 236.33 443.25 237.28 C 441.94 237.61 439.65 238.28 440.56 241.66 C 440.56 241.94 440.17 242.04 439.82 242.04 C 439.48 242.04 433.58 241.66 433.58 241.66 L 431.70 250.43 C 431.70 250.43 446.72 249.33 449.49 249.99 C 450.91 250.32 453.76 249.20 454.58 245.97 C 455.40 242.74 453.17 240.36 453.17 240.36 Z" fill="#ffbe92" fill-rule="nonzero" group-id="2,46" node-id="426" stroke="none" target-height="14.099991" target-width="23.699982" target-x="431.7" target-y="236.33"></path><path d="M 458.71 243.44 C 458.71 243.44 460.45 242.88 459.83 240.18 C 459.21 237.48 456.95 238.24 456.43 238.22 C 455.91 238.20 455.59 237.78 456.02 237.11 C 456.45 236.44 456.91 235.19 455.56 233.98 C 454.21 232.77 449.76 233.81 449.56 236.77 C 449.36 239.72 450.43 241.45 451.18 242.69 C 451.93 243.93 452.67 246.16 451.47 246.22 C 450.26 246.27 447.55 246.01 448.11 246.34 C 448.67 246.67 450.86 247.15 450.53 248.75 C 450.20 250.35 448.10 249.78 447.17 248.50 C 446.78 247.95 446.86 248.00 446.33 248.05 C 445.80 248.10 445.58 248.46 444.73 248.58 C 443.88 248.70 443.67 249.07 444.43 249.73 C 445.19 250.39 446.64 251.62 450.21 251.87 C 451.23 251.88 451.22 252.22 451.65 252.88 C 452.08 253.54 452.78 254.51 454.20 253.97 C 455.62 253.43 455.62 252.64 455.79 251.64 C 455.96 250.64 456.28 250.75 456.84 250.85 C 457.39 250.95 459.66 250.67 460.03 248.69 C 460.40 246.71 459.55 245.65 458.78 244.96 C 458.01 244.27 458.36 243.70 458.71 243.44 Z" fill="#171c61" fill-rule="nonzero" group-id="2,46" node-id="428" stroke="none" target-height="21.73999" target-width="16.779999" target-x="443.66998" target-y="232.77"></path><path d="M 425.32 253.38 C 425.32 253.38 439.70 254.46 439.34 248.92 C 438.98 243.38 438.68 238.10 426.30 234.79 C 421.62 233.68 414.41 233.87 410.71 233.05 C 407.01 232.23 402.85 229.67 401.31 231.87 C 399.77 234.07 398.82 246.17 399.02 249.64 C 399.22 253.12 399.09 253.67 403.15 253.71 C 407.21 253.75 417.63 253.08 425.32 253.38 Z" fill="url(#SVGID_23_)" fill-rule="nonzero" group-id="2,46" node-id="430" stroke="none" target-height="24.790024" target-width="40.880005" target-x="398.82004" target-y="229.66998"></path><path d="M 433.53 221.11 C 433.79 221.01 443.13 218.18 443.17 218.26 C 443.21 218.34 443.73 220.02 443.73 220.02 L 434.20 222.81 L 433.14 222.93 L 433.53 221.11 Z" fill="#171c61" fill-rule="nonzero" group-id="2,46" node-id="432" stroke="none" target-height="4.7500153" target-width="10.590027" target-x="433.13998" target-y="218.18"></path><path d="M 430.24 238.72 C 430.24 238.72 425.83 235.23 424.56 234.44 C 423.28 233.65 423.81 232.52 424.43 231.92 C 425.28 231.10 429.72 226.17 430.28 225.58 C 430.84 224.99 430.89 224.92 431.66 224.84 C 432.43 224.76 434.66 223.94 435.87 223.32 C 437.08 222.70 438.15 222.70 437.36 222.17 C 436.57 221.65 435.15 222.17 434.74 222.15 C 434.33 222.13 434.36 221.08 435.18 220.72 C 436.00 220.36 435.93 220.36 436.74 220.41 C 437.54 220.46 438.51 220.08 437.76 219.30 C 437.01 218.51 433.44 217.86 431.88 218.64 C 430.32 219.43 429.96 220.23 429.60 221.07 C 429.24 221.91 428.44 222.33 427.18 223.10 C 425.92 223.87 418.10 229.43 417.32 230.13 C 416.44 230.93 416.08 231.76 416.91 233.87 C 417.66 235.77 419.85 240.00 424.43 243.80 C 427.03 241.80 430.24 238.72 430.24 238.72 Z" fill="#ffbe92" fill-rule="nonzero" group-id="2,46" node-id="434" stroke="none" target-height="25.940002" target-width="22.430023" target-x="416.08" target-y="217.86"></path><path d="M 429.20 236.61 L 421.27 242.93 C 421.27 242.93 428.76 252.84 434.04 247.58 C 439.32 242.32 429.20 236.61 429.20 236.61 Z" fill="url(#SVGID_24_)" fill-rule="nonzero" group-id="2,46" node-id="436" stroke="none" target-height="16.229996" target-width="18.050018" target-x="421.27" target-y="236.61"></path></g><g node-id="490"><path d="M 343.74 533.89 C 330.13 533.89 319.10 539.79 319.10 547.06 C 319.10 548.38 319.10 552.50 319.10 554.94 C 318.36 555.42 317.55 556.21 317.14 557.48 C 314.34 558.30 293.45 567.12 284.67 574.04 C 284.01 574.56 283.79 575.46 284.11 576.23 C 284.79 577.87 285.35 579.26 285.75 580.24 C 286.11 581.14 287.10 581.61 288.03 581.33 C 292.41 580.01 305.17 575.73 321.98 566.10 C 323.29 566.25 325.22 566.39 326.27 565.67 C 330.73 568.07 336.92 569.56 343.75 569.56 C 357.36 569.56 368.39 563.66 368.39 556.39 C 368.39 554.75 368.39 548.70 368.39 547.06 C 368.39 539.79 357.35 533.89 343.74 533.89 Z" fill="url(#SVGID_25_)" fill-rule="nonzero" group-id="2,47" node-id="440" stroke="none" target-height="47.71997" target-width="84.600006" target-x="283.79" target-y="533.89"></path><path d="M 366.73 548.39 C 366.73 554.66 356.39 559.75 343.63 559.75 C 330.87 559.75 320.53 554.66 320.53 548.39 C 320.53 542.12 330.87 537.03 343.63 537.03 C 356.39 537.03 366.73 542.12 366.73 548.39 Z" fill="url(#SVGID_26_)" fill-rule="nonzero" group-id="2,47" node-id="442" stroke="none" target-height="22.71997" target-width="46.19998" target-x="320.53" target-y="537.03"></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="164"><linearGradient gradientUnits="objectBoundingBox" id="SVGID_1_" node-id="12" spreadMethod="pad" x1="254.6796" x2="254.6796" y1="427.5056" y2="330.7174"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_2_" node-id="16" spreadMethod="pad" x1="190.0626" x2="190.0626" y1="485.4976" y2="269.0085"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_3_" node-id="20" spreadMethod="pad" x1="565.8442" x2="565.8442" y1="442.8187" y2="286.3379"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_4_" node-id="24" spreadMethod="pad" x1="628.369" x2="628.369" y1="465.4887" y2="295.748"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_5_" node-id="28" spreadMethod="pad" x1="119.6565" x2="119.6565" y1="507.5672" y2="357.0538"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_6_" node-id="32" spreadMethod="pad" x1="682.3297" x2="682.3297" y1="490.9618" y2="367.8296"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_7_" node-id="36" spreadMethod="pad" x1="125.6201" x2="125.6201" y1="235.2599" y2="170.7186"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_8_" node-id="40" spreadMethod="pad" x1="642.6886" x2="642.6886" y1="198.4395" y2="133.8982"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_9_" node-id="44" spreadMethod="pad" x1="512.9177" x2="512.9177" y1="241.6129" y2="194.8957"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_10_" node-id="48" spreadMethod="pad" x1="399.135" x2="399.135" y1="757.1378" y2="405.0089"><stop offset="0.4065" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dae4ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_11_" node-id="54" spreadMethod="pad" x1="190.0645" x2="138.6283" y1="580.5936" y2="519.2943"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_12_" node-id="58" spreadMethod="pad" x1="111.0167" x2="175.2035" y1="460.3032" y2="460.3032"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_13_" node-id="64" spreadMethod="pad" x1="708.9266" x2="661.5612" y1="560.621" y2="504.1731"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_14_" node-id="68" spreadMethod="pad" x1="636.1349" x2="695.2418" y1="449.8507" y2="449.8507"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_15_" node-id="74" spreadMethod="pad" x1="250.264" x2="224.8227" y1="461.4502" y2="431.1305"><stop offset="0.0000001438503" stop-color="#eaeff6"></stop><stop offset="1" stop-color="#cddae9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_16_" node-id="78" spreadMethod="pad" x1="211.1655" x2="242.9135" y1="401.9525" y2="401.9525"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_17_" node-id="84" spreadMethod="pad" x1="525.3731" x2="471.3414" y1="708.309" y2="401.8798"><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="255.0594" x2="489.129" y1="361.9296" y2="361.9296"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_19_" node-id="94" spreadMethod="pad" x1="370.9672" x2="598.9915" y1="442.0394" y2="442.0394"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_20_" node-id="107" spreadMethod="pad" x1="309.847" x2="355.4126" y1="486.69" y2="486.69"><stop offset="0" stop-color="#609af0"></stop><stop offset="0.6903" stop-color="#3f88e0"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_21_" node-id="111" spreadMethod="pad" x1="7909.2583" x2="7891.895" y1="-1951.8392" y2="-1901.9119"><stop offset="0" stop-color="#78c8ff"></stop><stop offset="0.5112" stop-color="#4f92ea"></stop><stop offset="0.6903" stop-color="#4d8fe9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_22_" node-id="118" spreadMethod="pad" x1="12030.561" x2="12030.561" y1="286.5852" y2="265.3934"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_23_" node-id="124" spreadMethod="pad" x1="12042.672" x2="12042.672" y1="281.8855" y2="270.1249"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient></defs><g node-id="416"><g node-id="452"><path d="M 269.14 334.12 L 269.14 330.71 L 239.64 330.71 L 239.64 334.67 L 233.16 334.67 L 233.16 427.50 L 276.21 427.50 L 276.21 334.12 L 269.14 334.12 Z M 272.48 416.86 L 236.44 416.86 L 236.44 414.11 L 272.48 414.11 L 272.48 416.86 Z M 272.48 404.18 L 236.44 404.18 L 236.44 401.43 L 272.48 401.43 L 272.48 404.18 Z M 272.48 391.51 L 236.44 391.51 L 236.44 388.76 L 272.48 388.76 L 272.48 391.51 Z M 272.48 379.17 L 236.44 379.17 L 236.44 376.42 L 272.48 376.42 L 272.48 379.17 Z M 272.48 366.85 L 236.44 366.85 L 236.44 364.10 L 272.48 364.10 L 272.48 366.85 Z M 272.48 354.17 L 236.44 354.17 L 236.44 351.42 L 272.48 351.42 L 272.48 354.17 Z M 272.48 341.83 L 236.44 341.83 L 236.44 339.08 L 272.48 339.08 L 272.48 341.83 Z" fill="url(#SVGID_1_)" fill-rule="nonzero" group-id="7,43" node-id="315" stroke="none" target-height="96.79001" target-width="43.049988" target-x="233.16" target-y="330.71"></path><path d="M 211.15 385.94 L 211.15 277.75 L 178.40 277.75 L 178.40 269.01 L 164.54 269.01 L 164.54 322.34 L 160.81 322.34 L 160.81 485.50 L 219.32 485.50 L 219.32 385.94 L 211.15 385.94 Z M 186.66 417.74 L 178.40 417.74 L 178.40 409.73 L 186.66 409.73 L 186.66 417.74 Z M 186.66 405.21 L 178.40 405.21 L 178.40 397.20 L 186.66 397.20 L 186.66 405.21 Z M 186.66 392.74 L 178.40 392.74 L 178.40 384.73 L 186.66 384.73 L 186.66 392.74 Z M 186.66 380.30 L 178.40 380.30 L 178.40 372.29 L 186.66 372.29 L 186.66 380.30 Z M 186.66 367.77 L 178.40 367.77 L 178.40 359.76 L 186.66 359.76 L 186.66 367.77 Z M 186.66 342.77 L 178.40 342.77 L 178.40 334.76 L 186.66 334.76 L 186.66 342.77 Z M 186.66 330.24 L 178.40 330.24 L 178.40 322.23 L 186.66 322.23 L 186.66 330.24 Z M 186.66 317.77 L 178.40 317.77 L 178.40 309.76 L 186.66 309.76 L 186.66 317.77 Z M 186.66 305.33 L 178.40 305.33 L 178.40 297.32 L 186.66 297.32 L 186.66 305.33 Z M 186.66 292.80 L 178.40 292.80 L 178.40 284.79 L 186.66 284.79 L 186.66 292.80 Z M 199.01 417.74 L 190.75 417.74 L 190.75 409.73 L 199.01 409.73 L 199.01 417.74 Z M 199.01 405.21 L 190.75 405.21 L 190.75 397.20 L 199.01 397.20 L 199.01 405.21 Z M 199.01 392.74 L 190.75 392.74 L 190.75 384.73 L 199.01 384.73 L 199.01 392.74 Z M 199.01 380.30 L 190.75 380.30 L 190.75 372.29 L 199.01 372.29 L 199.01 380.30 Z M 199.01 367.77 L 190.75 367.77 L 190.75 359.76 L 199.01 359.76 L 199.01 367.77 Z M 199.01 342.77 L 190.75 342.77 L 190.75 334.76 L 199.01 334.76 L 199.01 342.77 Z M 199.01 330.24 L 190.75 330.24 L 190.75 322.23 L 199.01 322.23 L 199.01 330.24 Z M 199.01 317.77 L 190.75 317.77 L 190.75 309.76 L 199.01 309.76 L 199.01 317.77 Z M 199.01 305.33 L 190.75 305.33 L 190.75 297.32 L 199.01 297.32 L 199.01 305.33 Z M 199.01 292.80 L 190.75 292.80 L 190.75 284.79 L 199.01 284.79 L 199.01 292.80 Z" fill="url(#SVGID_2_)" fill-rule="nonzero" group-id="7,43" node-id="317" stroke="none" target-height="216.48999" target-width="58.51001" target-x="160.81" target-y="269.01"></path><path d="M 533.46 442.82 C 533.82 438.17 533.46 286.34 533.46 286.34 L 551.99 286.34 L 551.99 320.05 L 581.49 320.05 L 581.49 390.50 L 598.22 390.50 L 598.22 442.82 L 533.46 442.82 Z" fill="url(#SVGID_3_)" fill-rule="nonzero" group-id="7,43" node-id="319" stroke="none" target-height="156.48001" target-width="64.75995" target-x="533.46" target-y="286.34"></path><path d="M 654.68 374.67 L 654.68 369.82 L 649.68 369.82 L 649.68 327.49 L 637.48 327.49 L 637.48 322.79 L 629.25 322.79 L 629.25 315.88 L 624.96 315.88 L 624.96 295.74 L 621.87 295.74 L 621.87 316.02 L 617.93 316.02 L 617.93 322.93 L 605.73 322.93 L 605.73 334.25 L 598.68 334.25 L 598.68 465.48 L 658.06 465.48 L 658.06 374.66 L 654.68 374.66 Z M 609.16 427.46 L 605.14 427.46 L 605.14 412.22 L 609.16 412.22 L 609.16 427.46 Z M 609.16 408.81 L 605.14 408.81 L 605.14 393.57 L 609.16 393.57 L 609.16 408.81 Z M 609.16 390.15 L 605.14 390.15 L 605.14 374.91 L 609.16 374.91 L 609.16 390.15 Z M 609.16 371.17 L 605.14 371.17 L 605.14 355.93 L 609.16 355.93 L 609.16 371.17 Z M 609.16 352.19 L 605.14 352.19 L 605.14 336.95 L 609.16 336.95 L 609.16 352.19 Z M 617.44 427.46 L 613.42 427.46 L 613.42 412.22 L 617.44 412.22 L 617.44 427.46 Z M 617.44 408.81 L 613.42 408.81 L 613.42 393.57 L 617.44 393.57 L 617.44 408.81 Z M 617.44 390.15 L 613.42 390.15 L 613.42 374.91 L 617.44 374.91 L 617.44 390.15 Z M 617.44 371.17 L 613.42 371.17 L 613.42 355.93 L 617.44 355.93 L 617.44 371.17 Z M 617.44 352.19 L 613.42 352.19 L 613.42 336.95 L 617.44 336.95 L 617.44 352.19 Z M 625.72 427.46 L 621.70 427.46 L 621.70 412.22 L 625.72 412.22 L 625.72 427.46 Z M 625.72 408.81 L 621.70 408.81 L 621.70 393.57 L 625.72 393.57 L 625.72 408.81 Z M 625.72 390.15 L 621.70 390.15 L 621.70 374.91 L 625.72 374.91 L 625.72 390.15 Z M 625.72 371.17 L 621.70 371.17 L 621.70 355.93 L 625.72 355.93 L 625.72 371.17 Z M 625.72 352.19 L 621.70 352.19 L 621.70 336.95 L 625.72 336.95 L 625.72 352.19 Z M 634.00 427.46 L 629.98 427.46 L 629.98 412.22 L 634.00 412.22 L 634.00 427.46 Z M 634.00 408.81 L 629.98 408.81 L 629.98 393.57 L 634.00 393.57 L 634.00 408.81 Z M 634.00 390.15 L 629.98 390.15 L 629.98 374.91 L 634.00 374.91 L 634.00 390.15 Z M 634.00 371.17 L 629.98 371.17 L 629.98 355.93 L 634.00 355.93 L 634.00 371.17 Z M 634.00 352.19 L 629.98 352.19 L 629.98 336.95 L 634.00 336.95 L 634.00 352.19 Z M 642.28 427.46 L 638.26 427.46 L 638.26 412.22 L 642.28 412.22 L 642.28 427.46 Z M 642.28 408.81 L 638.26 408.81 L 638.26 393.57 L 642.28 393.57 L 642.28 408.81 Z M 642.28 390.15 L 638.26 390.15 L 638.26 374.91 L 642.28 374.91 L 642.28 390.15 Z M 642.28 371.17 L 638.26 371.17 L 638.26 355.93 L 642.28 355.93 L 642.28 371.17 Z M 642.28 352.19 L 638.26 352.19 L 638.26 336.95 L 642.28 336.95 L 642.28 352.19 Z" fill="url(#SVGID_4_)" fill-rule="nonzero" group-id="7,43" node-id="321" stroke="none" target-height="169.74002" target-width="59.380005" target-x="598.68" target-y="295.74"></path><path d="M 93.03 507.57 L 93.03 418.02 L 103.29 418.02 L 103.29 372.33 L 138.55 357.05 L 138.55 417.30 L 146.28 417.30 L 146.28 507.57 Z" fill="url(#SVGID_5_)" fill-rule="nonzero" group-id="7,43" node-id="323" stroke="none" target-height="150.52002" target-width="53.25" target-x="93.03" target-y="357.05"></path><path d="M 697.80 490.96 L 666.86 490.96 L 666.86 367.83 L 697.80 382.80 Z" fill="url(#SVGID_6_)" fill-rule="nonzero" group-id="7,43" node-id="325" stroke="none" target-height="123.130005" target-width="30.940002" target-x="666.86" target-y="367.83"></path><path d="M 87.85 194.15 C 87.85 194.15 97.19 168.67 120.15 178.67 C 125.45 173.29 132.01 169.38 140.88 171.14 C 149.75 172.90 155.47 179.55 157.41 183.97 C 160.19 183.84 182.45 184.58 182.45 207.67 C 182.45 230.76 155.51 230.32 153.56 228.49 C 151.16 230.63 139.62 242.24 125.62 228.99 C 122.59 231.58 112.69 242.55 97.04 227.41 C 89.79 230.44 72.56 232.77 69.22 214.98 C 65.88 197.20 83.01 192.18 87.85 194.15 Z" fill="url(#SVGID_7_)" fill-rule="nonzero" group-id="7,43" node-id="327" stroke="none" target-height="73.880005" target-width="116.57" target-x="65.88" target-y="168.67"></path><path d="M 604.92 157.33 C 604.92 157.33 614.26 131.85 637.22 141.85 C 642.52 136.47 649.08 132.56 657.95 134.32 C 666.82 136.09 672.54 142.73 674.48 147.15 C 677.26 147.02 699.52 147.76 699.52 170.85 C 699.52 193.94 672.58 193.50 670.63 191.67 C 668.23 193.81 656.69 205.42 642.69 192.17 C 639.66 194.76 629.76 205.73 614.11 190.59 C 606.86 193.62 589.63 195.95 586.29 178.16 C 582.94 160.38 600.08 155.35 604.92 157.33 Z" fill="url(#SVGID_8_)" fill-rule="nonzero" group-id="7,43" node-id="329" stroke="none" target-height="73.87999" target-width="116.58002" target-x="582.94" target-y="131.85"></path><path d="M 485.58 211.86 C 485.58 211.86 492.34 193.41 508.96 200.66 C 512.80 196.76 517.54 193.93 523.97 195.21 C 530.39 196.49 534.53 201.30 535.93 204.49 C 537.94 204.40 554.06 204.93 554.06 221.64 C 554.06 238.35 534.56 238.03 533.15 236.71 C 531.41 238.26 523.06 246.66 512.92 237.08 C 510.73 238.95 503.56 246.90 492.24 235.94 C 486.99 238.13 474.52 239.82 472.10 226.94 C 469.67 214.06 482.08 210.43 485.58 211.86 Z" fill="url(#SVGID_9_)" fill-rule="nonzero" group-id="7,43" node-id="331" stroke="none" target-height="53.48999" target-width="84.389984" target-x="469.67" target-y="193.41"></path><path d="M 770.11 581.07 C 770.11 627.76 731.02 672.55 661.45 705.56 C 591.88 738.58 497.52 757.13 399.13 757.13 C 300.74 757.13 206.38 738.58 136.81 705.56 C 67.24 672.55 28.15 627.76 28.15 581.07 C 28.15 534.38 67.24 489.59 136.81 456.58 C 206.38 423.56 300.74 405.01 399.13 405.01 C 497.52 405.01 591.88 423.56 661.45 456.58 C 731.02 489.59 770.11 534.38 770.11 581.07 Z" fill="url(#SVGID_10_)" fill-rule="nonzero" group-id="7,43" node-id="333" stroke="none" target-height="352.12" target-width="741.95996" target-x="28.149994" target-y="405.01"></path></g><g node-id="453"><g node-id="456"><path d="M 145.08 559.54 C 145.08 559.54 141.55 564.55 147.45 572.01 C 152.71 578.65 161.02 577.36 163.78 575.23 C 164.63 581.01 171.72 593.19 182.94 586.30 C 193.49 579.83 188.41 569.99 185.04 566.12 C 191.63 564.26 196.54 548.47 181.42 543.02 C 183.66 536.50 184.06 533.55 180.78 527.69 C 177.62 522.05 172.43 521.15 164.15 524.58 L 152.17 529.63 L 144.54 515.39 L 140.46 517.75 L 149.26 531.35 L 137.60 537.20 C 137.60 537.20 127.63 541.10 131.93 551.80 C 135.92 561.72 145.08 559.54 145.08 559.54 Z" fill="url(#SVGID_11_)" fill-rule="nonzero" group-id="7,44,47" node-id="339" stroke="none" target-height="77.79999" target-width="68.909996" target-x="127.63" target-y="515.39"></path><path d="M 124.79 498.82 L 160.85 498.82 C 160.85 498.82 172.50 499.15 174.82 485.84 C 177.37 471.23 166.74 469.22 166.74 469.22 C 166.74 469.22 173.14 466.28 171.75 455.23 C 170.36 444.18 160.63 442.79 156.58 443.30 C 157.24 436.75 158.62 421.92 143.22 421.77 C 128.35 421.62 128.44 436.59 129.55 442.49 C 124.25 442.55 108.24 450.50 119.50 467.94 C 113.37 473.19 110.78 476.22 111.05 483.79 C 111.31 491.37 115.95 498.82 124.79 498.82 Z" fill="url(#SVGID_12_)" fill-rule="nonzero" group-id="7,44,47" node-id="341" stroke="none" target-height="77.53" target-width="69.13" target-x="108.24" target-y="421.62"></path><path d="M 159.96 478.59 L 144.58 488.71 L 144.16 478.92 L 153.88 467.46 L 144.01 475.44 L 142.73 445.54 L 141.79 475.64 L 131.41 467.38 L 141.69 478.71 L 141.37 488.78 L 125.56 477.15 L 141.26 492.41 L 140.47 517.76 L 145.82 517.76 L 144.74 492.56 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="7,44,47" node-id="343" stroke="none" target-height="72.21997" target-width="34.4" target-x="125.560005" target-y="445.54004"></path></g><g node-id="457"><path d="M 667.51 541.23 C 667.51 541.23 664.26 545.85 669.69 552.71 C 674.53 558.83 682.19 557.64 684.73 555.67 C 685.51 560.99 692.05 572.20 702.38 565.87 C 712.09 559.91 707.42 550.85 704.31 547.29 C 710.38 545.58 714.90 531.03 700.98 526.02 C 703.05 520.02 703.42 517.30 700.39 511.91 C 697.48 506.72 692.70 505.88 685.08 509.05 L 674.04 513.70 L 667.01 500.59 L 663.26 502.76 L 671.36 515.28 L 660.63 520.67 C 660.63 520.67 651.45 524.26 655.41 534.12 C 659.07 543.24 667.51 541.23 667.51 541.23 Z" fill="url(#SVGID_13_)" fill-rule="nonzero" group-id="7,44,48" node-id="348" stroke="none" target-height="71.61005" target-width="63.450012" target-x="651.45" target-y="500.58997"></path><path d="M 648.81 485.32 L 682.01 485.32 C 682.01 485.32 692.74 485.63 694.87 473.37 C 697.21 459.92 687.43 458.07 687.43 458.07 C 687.43 458.07 693.33 455.36 692.04 445.19 C 690.75 435.02 681.80 433.73 678.07 434.21 C 678.68 428.18 679.95 414.52 665.77 414.38 C 652.08 414.24 652.16 428.02 653.18 433.46 C 648.30 433.51 633.55 440.83 643.93 456.90 C 638.29 461.73 635.90 464.53 636.15 471.49 C 636.40 478.45 640.68 485.32 648.81 485.32 Z" fill="url(#SVGID_14_)" fill-rule="nonzero" group-id="7,44,48" node-id="350" stroke="none" target-height="71.390015" target-width="63.660095" target-x="633.55" target-y="414.24"></path><path d="M 681.20 466.69 L 667.04 476.01 L 666.65 467.00 L 675.61 456.44 L 666.52 463.79 L 665.34 436.26 L 664.47 463.97 L 654.91 456.37 L 664.38 466.80 L 664.09 476.07 L 649.53 465.37 L 663.99 479.42 L 663.25 502.76 L 668.19 502.76 L 667.19 479.56 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="7,44,48" node-id="352" stroke="none" target-height="66.5" target-width="31.669983" target-x="649.53" target-y="436.26"></path></g><g node-id="458"><path d="M 228.02 451.04 C 228.02 451.04 226.27 453.52 229.19 457.21 C 231.79 460.50 235.90 459.86 237.27 458.80 C 237.69 461.66 241.20 467.68 246.75 464.28 C 251.97 461.08 249.46 456.21 247.79 454.30 C 251.05 453.38 253.48 445.57 246.00 442.88 C 247.11 439.66 247.31 438.20 245.68 435.30 C 244.12 432.51 241.55 432.06 237.46 433.76 L 231.53 436.26 L 227.76 429.22 L 225.74 430.39 L 230.09 437.11 L 224.32 440.00 C 224.32 440.00 219.39 441.93 221.52 447.22 C 223.48 452.11 228.02 451.04 228.02 451.04 Z" fill="url(#SVGID_15_)" fill-rule="nonzero" group-id="7,44,49" node-id="357" stroke="none" target-height="38.460022" target-width="34.089996" target-x="219.39" target-y="429.22"></path><path d="M 217.98 421.01 L 235.81 421.01 C 235.81 421.01 241.57 421.17 242.72 414.59 C 243.98 407.36 238.72 406.37 238.72 406.37 C 238.72 406.37 241.89 404.91 241.20 399.45 C 240.51 393.99 235.70 393.30 233.70 393.55 C 234.03 390.31 234.71 382.97 227.09 382.90 C 219.73 382.83 219.78 390.23 220.33 393.15 C 217.71 393.18 209.79 397.11 215.36 405.74 C 212.33 408.33 211.04 409.84 211.18 413.58 C 211.31 417.32 213.61 421.01 217.98 421.01 Z" fill="url(#SVGID_16_)" fill-rule="nonzero" group-id="7,44,49" node-id="359" stroke="none" target-height="38.340027" target-width="34.190002" target-x="209.79" target-y="382.83"></path><path d="M 235.37 411.00 L 227.77 416.00 L 227.56 411.16 L 232.37 405.49 L 227.48 409.44 L 226.85 394.65 L 226.38 409.54 L 221.25 405.45 L 226.34 411.06 L 226.18 416.04 L 218.36 410.29 L 226.12 417.83 L 225.73 430.37 L 228.38 430.37 L 227.85 417.91 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="7,44,49" node-id="361" stroke="none" target-height="35.71997" target-width="17.010025" target-x="218.35999" target-y="394.65002"></path></g></g><g node-id="454"><path d="M 280.57 435.52 L 262.51 447.24 L 303.52 497.88 L 281.85 509.95 L 431.20 724.91 L 726.09 616.91 L 585.86 500.58 L 437.71 421.85 Z" fill="url(#SVGID_17_)" fill-rule="nonzero" group-id="7,45" node-id="366" stroke="none" target-height="303.06" target-width="463.58002" target-x="262.51" target-y="421.84998"></path><path d="M 472.20 449.85 L 271.99 449.85 C 262.64 449.85 255.06 441.79 255.06 431.85 L 255.06 292.00 C 255.06 282.06 262.64 274.00 271.99 274.00 L 472.20 274.00 C 481.55 274.00 489.13 282.06 489.13 292.00 L 489.13 431.85 C 489.13 441.79 481.55 449.85 472.20 449.85 Z" fill="url(#SVGID_18_)" fill-rule="nonzero" group-id="7,45" node-id="368" stroke="none" target-height="175.85" target-width="234.07005" target-x="255.05998" target-y="274"></path><path d="M 425.14 327.15 L 291.80 327.15 C 286.48 327.15 282.18 322.84 282.18 317.53 L 282.18 317.53 C 282.18 312.21 286.49 307.91 291.80 307.91 L 425.14 307.91 C 430.46 307.91 434.76 312.22 434.76 317.53 L 434.76 317.53 C 434.77 322.84 430.46 327.15 425.14 327.15 Z" fill="#ffffff" fill-rule="nonzero" group-id="7,45" node-id="370" stroke="none" target-height="19.23999" target-width="152.59" target-x="282.18" target-y="307.91"></path><path d="M 348.85 377.64 L 291.80 377.64 C 286.48 377.64 282.18 373.33 282.18 368.02 L 282.18 368.02 C 282.18 362.70 286.49 358.40 291.80 358.40 L 348.85 358.40 C 354.17 358.40 358.47 362.71 358.47 368.02 L 358.47 368.02 C 358.47 373.33 354.16 377.64 348.85 377.64 Z" fill="#ffffff" fill-rule="nonzero" group-id="7,45" node-id="372" stroke="none" target-height="19.24002" target-width="76.29001" target-x="282.18" target-y="358.4"></path><path d="M 387.46 515.58 L 527.50 515.58 C 527.83 515.58 528.16 515.66 528.46 515.83 L 568.60 537.92 C 570.00 538.69 571.66 537.59 571.68 535.87 L 571.81 517.87 C 571.82 516.60 572.77 515.58 573.93 515.58 L 582.52 515.58 C 591.63 515.58 599.01 507.53 599.01 497.60 L 599.01 363.89 C 599.01 353.96 591.63 345.91 582.52 345.91 L 387.46 345.91 C 378.35 345.91 370.97 353.96 370.97 363.89 L 370.97 497.61 C 370.97 507.53 378.35 515.58 387.46 515.58 Z" fill="url(#SVGID_19_)" fill-rule="nonzero" group-id="7,45" node-id="374" stroke="none" target-height="192.78003" target-width="228.04001" target-x="370.97" target-y="345.90997"></path><path d="M 419.74 404.38 L 553.08 404.38 C 558.40 404.38 562.70 400.07 562.70 394.76 L 562.70 394.76 C 562.70 389.44 558.39 385.14 553.08 385.14 L 419.74 385.14 C 414.42 385.14 410.12 389.45 410.12 394.76 L 410.12 394.76 C 410.12 400.08 414.43 404.38 419.74 404.38 Z" fill="#ffffff" fill-rule="nonzero" group-id="7,45" node-id="376" stroke="none" target-height="19.24002" target-width="152.58002" target-x="410.12" target-y="385.13998"></path><path d="M 473.49 454.88 L 553.08 454.88 C 558.40 454.88 562.70 450.57 562.70 445.26 L 562.70 445.26 C 562.70 439.94 558.39 435.64 553.08 435.64 L 473.49 435.64 C 468.17 435.64 463.87 439.95 463.87 445.26 L 463.87 445.26 C 463.87 450.57 468.18 454.88 473.49 454.88 Z" fill="#ffffff" fill-rule="nonzero" group-id="7,45" node-id="378" stroke="none" target-height="19.23996" target-width="98.83002" target-x="463.87" target-y="435.64005"></path></g><g node-id="455"><path d="M 288.02 500.64 C 288.02 500.64 284.83 501.71 281.38 499.26 C 280.77 502.78 284.24 506.22 284.24 506.22 L 289.81 506.86 L 288.02 500.64 Z" fill="#ffbe92" fill-rule="nonzero" group-id="7,46" node-id="382" stroke="none" target-height="7.5999756" target-width="9.040009" target-x="280.77" target-y="499.26"></path><path d="M 311.83 496.47 L 307.93 502.86 L 314.89 503.53 L 317.89 500.15 Z" fill="#ffbe92" fill-rule="nonzero" group-id="7,46" node-id="384" stroke="none" target-height="7.0599976" target-width="9.960022" target-x="307.93" target-y="496.47"></path><path d="M 317.78 504.22 L 298.47 502.88 C 298.47 502.88 297.71 497.18 305.31 497.94 C 312.91 498.70 317.29 499.32 317.29 499.32 L 317.78 504.22 Z" fill="#f8b62d" fill-rule="nonzero" group-id="7,46" node-id="386" stroke="none" target-height="7.0400696" target-width="20.070007" target-x="297.71" target-y="497.17996"></path><path d="M 318.12 505.48 L 309.58 505.62 L 309.33 504.09 L 298.38 504.02 L 298.21 502.73 L 317.87 502.67 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="7,46" node-id="388" stroke="none" target-height="2.9499817" target-width="19.910004" target-x="298.21" target-y="502.67"></path><path d="M 283.31 509.95 L 273.40 494.64 C 273.40 494.64 277.36 491.22 281.08 497.36 C 281.83 498.60 283.82 498.82 284.43 499.85 C 283.90 503.34 286.81 506.84 286.81 506.84 L 283.31 509.95 Z" fill="#f8b62d" fill-rule="nonzero" group-id="7,46" node-id="390" stroke="none" target-height="18.72998" target-width="13.410004" target-x="273.4" target-y="491.22"></path><path d="M 282.53 510.84 L 277.59 504.44 L 278.62 503.49 L 272.48 495.15 L 273.37 494.38 L 284.55 509.24 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="7,46" node-id="392" stroke="none" target-height="16.460022" target-width="12.069977" target-x="272.48" target-y="494.38"></path><path d="M 352.65 483.62 L 352.36 483.45 L 335.09 473.08 C 330.74 470.47 325.21 471.39 321.98 475.44 C 320.82 476.90 319.64 478.75 318.54 481.10 C 313.48 491.86 309.84 499.73 309.84 499.73 L 316.71 501.78 L 328.38 485.90 C 328.38 485.90 329.34 485.53 330.50 486.93 C 331.66 488.33 337.27 493.67 338.07 494.66 C 338.88 495.65 341.28 504.03 355.40 500.14 C 353.28 486.24 352.65 483.62 352.65 483.62 Z" fill="url(#SVGID_20_)" fill-rule="nonzero" group-id="7,46" node-id="394" stroke="none" target-height="33.559998" target-width="45.559998" target-x="309.84" target-y="470.47"></path><path d="M 351.67 486.06 C 351.67 486.06 330.15 488.08 326.95 488.64 C 323.75 489.20 322.23 488.76 317.92 491.23 C 312.82 494.14 285.90 500.01 285.90 500.01 L 287.58 507.41 C 287.58 507.41 313.85 506.12 321.81 502.22 C 322.88 501.70 324.06 501.49 325.22 501.65 C 326.80 501.86 328.95 502.17 330.55 502.50 C 336.51 503.75 344.53 505.18 353.36 506.14 C 357.66 506.69 367.27 508.14 367.27 496.39 C 365.84 486.70 351.67 486.06 351.67 486.06 Z" fill="url(#SVGID_21_)" fill-rule="nonzero" group-id="7,46" node-id="396" stroke="none" target-height="22.080017" target-width="81.369965" target-x="285.9" target-y="486.06"></path><path d="M 357.39 441.87 C 357.39 441.87 353.60 445.11 354.49 451.79 C 354.80 453.10 355.43 455.39 358.61 454.48 C 358.87 454.48 358.96 454.87 358.96 455.22 C 358.96 455.56 358.61 461.46 358.61 461.46 L 366.86 463.34 C 366.86 463.34 365.83 448.32 366.44 445.55 C 366.75 444.13 365.70 441.28 362.66 440.46 C 359.62 439.64 357.39 441.87 357.39 441.87 Z" fill="#ffbe92" fill-rule="nonzero" group-id="7,46" node-id="398" stroke="none" target-height="23.699982" target-width="13.26001" target-x="353.6" target-y="439.64"></path><path d="M 360.29 436.32 C 360.29 436.32 359.76 434.58 357.22 435.20 C 354.68 435.82 355.40 438.08 355.38 438.60 C 355.36 439.12 354.97 439.44 354.34 439.01 C 353.71 438.58 352.53 438.12 351.39 439.47 C 350.25 440.82 351.23 445.27 354.01 445.47 C 356.79 445.67 358.41 444.60 359.58 443.85 C 360.75 443.10 362.85 442.36 362.90 443.56 C 362.95 444.77 362.70 447.48 363.01 446.92 C 363.32 446.36 363.77 444.17 365.27 444.50 C 366.77 444.83 366.24 446.93 365.03 447.86 C 364.51 448.25 364.56 448.17 364.61 448.70 C 364.66 449.23 364.99 449.45 365.11 450.30 C 365.22 451.15 365.57 451.36 366.19 450.60 C 366.81 449.84 367.97 448.39 368.21 444.82 C 368.22 443.80 368.54 443.81 369.16 443.38 C 369.78 442.94 370.69 442.25 370.19 440.83 C 369.69 439.42 368.94 439.41 367.99 439.24 C 367.05 439.07 367.15 438.75 367.25 438.19 C 367.35 437.64 367.08 435.37 365.22 435.00 C 363.36 434.63 362.36 435.48 361.72 436.25 C 361.06 437.04 360.53 436.68 360.29 436.32 Z" fill="#171c61" fill-rule="nonzero" group-id="7,46" node-id="400" stroke="none" target-height="16.779999" target-width="20.440033" target-x="350.24997" target-y="434.58"></path><path d="M 369.63 469.71 C 369.63 469.71 370.65 455.33 365.44 455.69 C 360.23 456.05 355.27 456.35 352.15 468.73 C 351.10 473.41 351.29 480.62 350.52 484.32 C 349.75 488.02 348.06 494.73 350.12 496.27 C 352.19 497.81 363.05 501.97 366.31 501.77 C 369.58 501.57 370.29 499.93 370.32 495.87 C 370.35 491.81 369.35 477.41 369.63 469.71 Z" fill="url(#SVGID_22_)" fill-rule="nonzero" group-id="7,46" node-id="402" stroke="none" target-height="46.640015" target-width="22.589966" target-x="348.06003" target-y="455.33"></path><path d="M 339.29 461.50 C 339.19 461.24 336.54 451.90 336.61 451.86 C 336.68 451.81 338.27 451.30 338.27 451.30 L 340.90 460.83 L 341.01 461.89 L 339.29 461.50 Z" fill="#171c61" fill-rule="nonzero" group-id="7,46" node-id="404" stroke="none" target-height="10.590027" target-width="4.470001" target-x="336.54" target-y="451.3"></path><path d="M 355.85 464.80 C 355.85 464.80 352.57 469.21 351.83 470.48 C 351.09 471.75 350.02 471.23 349.46 470.61 C 348.69 469.76 344.05 465.32 343.49 464.76 C 342.94 464.20 342.87 464.15 342.80 463.38 C 342.72 462.61 341.95 460.38 341.37 459.17 C 340.79 457.96 340.78 456.89 340.29 457.68 C 339.80 458.47 340.29 459.89 340.27 460.30 C 340.25 460.71 339.27 460.68 338.93 459.86 C 338.59 459.04 338.59 459.11 338.64 458.30 C 338.69 457.50 338.33 456.53 337.59 457.28 C 336.85 458.03 336.23 461.60 336.97 463.16 C 337.71 464.72 338.47 465.08 339.25 465.44 C 340.04 465.80 340.44 466.60 341.16 467.86 C 341.88 469.12 347.11 476.94 347.77 477.72 C 348.52 478.60 349.30 478.96 351.28 478.13 C 353.07 477.38 357.05 475.19 360.62 470.61 C 358.74 468.01 355.85 464.80 355.85 464.80 Z" fill="#ffbe92" fill-rule="nonzero" group-id="7,46" node-id="406" stroke="none" target-height="22.429993" target-width="24.389984" target-x="336.23" target-y="456.53"></path><path d="M 353.86 465.84 L 359.80 473.77 C 359.80 473.77 369.12 466.28 364.17 461.00 C 359.22 455.72 353.86 465.84 353.86 465.84 Z" fill="url(#SVGID_23_)" fill-rule="nonzero" group-id="7,46" node-id="408" stroke="none" target-height="18.049957" target-width="15.26001" target-x="353.86" target-y="455.72003"></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="218"><linearGradient gradientUnits="objectBoundingBox" id="SVGID_1_" node-id="38" spreadMethod="pad" x1="255.8308" x2="255.8308" y1="423.3921" y2="326.6038"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_2_" node-id="42" spreadMethod="pad" x1="191.2138" x2="191.2138" y1="481.384" y2="264.895"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_3_" node-id="46" spreadMethod="pad" x1="566.9954" x2="566.9954" y1="438.7051" y2="282.2243"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_4_" node-id="50" spreadMethod="pad" x1="629.5203" x2="629.5203" y1="461.3751" y2="291.6344"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_5_" node-id="54" spreadMethod="pad" x1="120.8077" x2="120.8077" y1="503.4536" y2="352.9402"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_6_" node-id="58" spreadMethod="pad" x1="683.4809" x2="683.4809" y1="486.8482" y2="363.7159"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_7_" node-id="62" spreadMethod="pad" x1="126.7714" x2="126.7714" y1="231.1463" y2="166.605"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_8_" node-id="66" spreadMethod="pad" x1="643.8398" x2="643.8398" y1="194.3259" y2="129.7846"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_9_" node-id="70" spreadMethod="pad" x1="514.0689" x2="514.0689" y1="237.4993" y2="190.7821"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_10_" node-id="74" spreadMethod="pad" x1="400.2862" x2="400.2862" y1="753.0242" y2="400.8953"><stop offset="0.4065" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dae4ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_11_" node-id="80" spreadMethod="pad" x1="191.2157" x2="139.7795" y1="576.48" y2="515.1807"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_12_" node-id="84" spreadMethod="pad" x1="112.1679" x2="176.3548" y1="456.1896" y2="456.1896"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_13_" node-id="90" spreadMethod="pad" x1="710.0778" x2="662.7124" y1="556.5074" y2="500.0595"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_14_" node-id="94" spreadMethod="pad" x1="637.2861" x2="696.393" y1="445.7372" y2="445.7372"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_15_" node-id="100" spreadMethod="pad" x1="251.4152" x2="225.974" y1="457.3366" y2="427.0169"><stop offset="0.0000001438503" stop-color="#eaeff6"></stop><stop offset="1" stop-color="#cddae9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_16_" node-id="104" spreadMethod="pad" x1="212.3168" x2="244.0647" y1="397.8389" y2="397.8389"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_17_" node-id="110" spreadMethod="pad" x1="541.3365" x2="463.5646" y1="667.4052" y2="396.1824"><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="114" spreadMethod="pad" x1="287.9778" x2="454.4445" y1="367.5066" y2="367.5066"><stop offset="0.0000002877006" stop-color="#e0e8f2"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_19_" node-id="118" spreadMethod="pad" x1="287.9778" x2="454.4445" y1="408.9109" y2="408.9109"><stop offset="0.1453" stop-color="#f5f8fb"></stop><stop offset="1" stop-color="#d8e3ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_20_" node-id="122" spreadMethod="pad" x1="454.3232" x2="567.0399" y1="382.7337" y2="382.7337"><stop offset="0" stop-color="#d5e0ed"></stop><stop offset="1" stop-color="#9fb7ce"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_21_" node-id="126" spreadMethod="pad" x1="543.0164" x2="567.04" y1="420.8317" y2="420.8317"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_22_" node-id="132" spreadMethod="pad" x1="280.2353" x2="576.5266" y1="448.7512" y2="448.7512"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_23_" node-id="137" spreadMethod="pad" x1="308.2401" x2="370.4831" y1="456.4172" y2="456.4172"><stop offset="0" stop-color="#dfe8f3"></stop><stop offset="1" stop-color="#9fb7ce"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_24_" node-id="141" spreadMethod="pad" x1="323.1892" x2="355.5341" y1="456.4172" y2="456.4172"><stop offset="0.1453" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d8e3ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_25_" node-id="145" spreadMethod="pad" x1="487.8712" x2="550.1143" y1="456.4172" y2="456.4172"><stop offset="0" stop-color="#dfe8f3"></stop><stop offset="1" stop-color="#9fb7ce"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_26_" node-id="149" spreadMethod="pad" x1="502.8203" x2="535.1652" y1="456.4172" y2="456.4172"><stop offset="0.1453" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d8e3ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_27_" node-id="154" spreadMethod="pad" x1="377.365" x2="399.79" y1="329.6396" y2="329.6396"><stop offset="0.1453" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d8e3ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_28_" node-id="158" spreadMethod="pad" x1="345.0221" x2="367.5405" y1="329.6439" y2="329.6439"><stop offset="0.1453" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d8e3ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_29_" node-id="162" spreadMethod="pad" x1="342.9775" x2="401.7012" y1="360.8237" y2="360.8237"><stop offset="0.1453" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d8e3ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_30_" node-id="167" spreadMethod="pad" x1="300.9272" x2="259.0834" y1="684.5671" y2="538.6403"><stop offset="0.2949" stop-color="#ffffff"></stop><stop offset="0.9362" stop-color="#d6e1ed"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_31_" node-id="177" spreadMethod="pad" x1="236.9659" x2="236.9659" y1="533.4318" y2="479.8275"><stop offset="0" stop-color="#4ea2f4"></stop><stop offset="0.6903" stop-color="#1e77cf"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_32_" node-id="181" spreadMethod="pad" x1="250.7812" x2="250.7812" y1="531.9191" y2="476.974"><stop offset="0" stop-color="#78c8ff"></stop><stop offset="0.6903" stop-color="#2a80e2"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_33_" node-id="187" spreadMethod="pad" x1="8796.536" x2="8796.536" y1="-2887.6318" y2="-2911.836"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_34_" node-id="191" spreadMethod="pad" x1="207.3071" x2="234.7297" y1="459.3751" y2="461.5116"><stop offset="0" stop-color="#dfe8f3"></stop><stop offset="1" stop-color="#9fb7ce"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_35_" node-id="195" spreadMethod="pad" x1="216.2736" x2="225.9058" y1="454.9916" y2="455.742"><stop offset="0.1453" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d8e3ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_36_" node-id="199" spreadMethod="pad" x1="205.6915" x2="236.0458" y1="445.8642" y2="448.2292"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_37_" node-id="204" spreadMethod="pad" x1="8801.209" x2="8815.112" y1="-2900.5781" y2="-2899.4949"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient></defs><g node-id="633"><g node-id="643"><path d="M 270.29 330.01 L 270.29 326.60 L 240.79 326.60 L 240.79 330.56 L 234.31 330.56 L 234.31 423.39 L 277.36 423.39 L 277.36 330.01 L 270.29 330.01 Z M 273.63 412.75 L 237.59 412.75 L 237.59 410.00 L 273.63 410.00 L 273.63 412.75 Z M 273.63 400.07 L 237.59 400.07 L 237.59 397.32 L 273.63 397.32 L 273.63 400.07 Z M 273.63 387.39 L 237.59 387.39 L 237.59 384.64 L 273.63 384.64 L 273.63 387.39 Z M 273.63 375.05 L 237.59 375.05 L 237.59 372.30 L 273.63 372.30 L 273.63 375.05 Z M 273.63 362.74 L 237.59 362.74 L 237.59 359.99 L 273.63 359.99 L 273.63 362.74 Z M 273.63 350.06 L 237.59 350.06 L 237.59 347.31 L 273.63 347.31 L 273.63 350.06 Z M 273.63 337.72 L 237.59 337.72 L 237.59 334.97 L 273.63 334.97 L 273.63 337.72 Z" fill="url(#SVGID_1_)" fill-rule="nonzero" group-id="33,43" node-id="477" stroke="none" target-height="96.79001" target-width="43.049988" target-x="234.31" target-y="326.6"></path><path d="M 212.30 381.82 L 212.30 273.64 L 179.55 273.64 L 179.55 264.90 L 165.69 264.90 L 165.69 318.23 L 161.96 318.23 L 161.96 481.39 L 220.47 481.39 L 220.47 381.83 L 212.30 381.83 Z M 187.81 413.63 L 179.55 413.63 L 179.55 405.62 L 187.81 405.62 L 187.81 413.63 Z M 187.81 401.10 L 179.55 401.10 L 179.55 393.09 L 187.81 393.09 L 187.81 401.10 Z M 187.81 388.63 L 179.55 388.63 L 179.55 380.62 L 187.81 380.62 L 187.81 388.63 Z M 187.81 376.19 L 179.55 376.19 L 179.55 368.18 L 187.81 368.18 L 187.81 376.19 Z M 187.81 363.66 L 179.55 363.66 L 179.55 355.65 L 187.81 355.65 L 187.81 363.66 Z M 187.81 338.66 L 179.55 338.66 L 179.55 330.65 L 187.81 330.65 L 187.81 338.66 Z M 187.81 326.13 L 179.55 326.13 L 179.55 318.12 L 187.81 318.12 L 187.81 326.13 Z M 187.81 313.65 L 179.55 313.65 L 179.55 305.64 L 187.81 305.64 L 187.81 313.65 Z M 187.81 301.22 L 179.55 301.22 L 179.55 293.21 L 187.81 293.21 L 187.81 301.22 Z M 187.81 288.69 L 179.55 288.69 L 179.55 280.68 L 187.81 280.68 L 187.81 288.69 Z M 200.16 413.63 L 191.90 413.63 L 191.90 405.62 L 200.16 405.62 L 200.16 413.63 Z M 200.16 401.10 L 191.90 401.10 L 191.90 393.09 L 200.16 393.09 L 200.16 401.10 Z M 200.16 388.63 L 191.90 388.63 L 191.90 380.62 L 200.16 380.62 L 200.16 388.63 Z M 200.16 376.19 L 191.90 376.19 L 191.90 368.18 L 200.16 368.18 L 200.16 376.19 Z M 200.16 363.66 L 191.90 363.66 L 191.90 355.65 L 200.16 355.65 L 200.16 363.66 Z M 200.16 338.66 L 191.90 338.66 L 191.90 330.65 L 200.16 330.65 L 200.16 338.66 Z M 200.16 326.13 L 191.90 326.13 L 191.90 318.12 L 200.16 318.12 L 200.16 326.13 Z M 200.16 313.65 L 191.90 313.65 L 191.90 305.64 L 200.16 305.64 L 200.16 313.65 Z M 200.16 301.22 L 191.90 301.22 L 191.90 293.21 L 200.16 293.21 L 200.16 301.22 Z M 200.16 288.69 L 191.90 288.69 L 191.90 280.68 L 200.16 280.68 L 200.16 288.69 Z" fill="url(#SVGID_2_)" fill-rule="nonzero" group-id="33,43" node-id="479" stroke="none" target-height="216.49002" target-width="58.509995" target-x="161.96" target-y="264.9"></path><path d="M 534.61 438.71 C 534.97 434.06 534.61 282.23 534.61 282.23 L 553.14 282.23 L 553.14 315.94 L 582.64 315.94 L 582.64 386.39 L 599.37 386.39 L 599.37 438.71 L 534.61 438.71 Z" fill="url(#SVGID_3_)" fill-rule="nonzero" group-id="33,43" node-id="481" stroke="none" target-height="156.47998" target-width="64.76001" target-x="534.61" target-y="282.23"></path><path d="M 655.83 370.56 L 655.83 365.71 L 650.83 365.71 L 650.83 323.38 L 638.63 323.38 L 638.63 318.68 L 630.40 318.68 L 630.40 311.77 L 626.11 311.77 L 626.11 291.63 L 623.02 291.63 L 623.02 311.91 L 619.08 311.91 L 619.08 318.82 L 606.88 318.82 L 606.88 330.14 L 599.83 330.14 L 599.83 461.37 L 659.21 461.37 L 659.21 370.55 L 655.83 370.55 Z M 610.32 423.34 L 606.30 423.34 L 606.30 408.10 L 610.32 408.10 L 610.32 423.34 Z M 610.32 404.69 L 606.30 404.69 L 606.30 389.45 L 610.32 389.45 L 610.32 404.69 Z M 610.32 386.04 L 606.30 386.04 L 606.30 370.80 L 610.32 370.80 L 610.32 386.04 Z M 610.32 367.06 L 606.30 367.06 L 606.30 351.82 L 610.32 351.82 L 610.32 367.06 Z M 610.32 348.07 L 606.30 348.07 L 606.30 332.83 L 610.32 332.83 L 610.32 348.07 Z M 618.60 423.34 L 614.58 423.34 L 614.58 408.10 L 618.60 408.10 L 618.60 423.34 Z M 618.60 404.69 L 614.58 404.69 L 614.58 389.45 L 618.60 389.45 L 618.60 404.69 Z M 618.60 386.04 L 614.58 386.04 L 614.58 370.80 L 618.60 370.80 L 618.60 386.04 Z M 618.60 367.06 L 614.58 367.06 L 614.58 351.82 L 618.60 351.82 L 618.60 367.06 Z M 618.60 348.07 L 614.58 348.07 L 614.58 332.83 L 618.60 332.83 L 618.60 348.07 Z M 626.87 423.34 L 622.85 423.34 L 622.85 408.10 L 626.87 408.10 L 626.87 423.34 Z M 626.87 404.69 L 622.85 404.69 L 622.85 389.45 L 626.87 389.45 L 626.87 404.69 Z M 626.87 386.04 L 622.85 386.04 L 622.85 370.80 L 626.87 370.80 L 626.87 386.04 Z M 626.87 367.06 L 622.85 367.06 L 622.85 351.82 L 626.87 351.82 L 626.87 367.06 Z M 626.87 348.07 L 622.85 348.07 L 622.85 332.83 L 626.87 332.83 L 626.87 348.07 Z M 635.15 423.34 L 631.13 423.34 L 631.13 408.10 L 635.15 408.10 L 635.15 423.34 Z M 635.15 404.69 L 631.13 404.69 L 631.13 389.45 L 635.15 389.45 L 635.15 404.69 Z M 635.15 386.04 L 631.13 386.04 L 631.13 370.80 L 635.15 370.80 L 635.15 386.04 Z M 635.15 367.06 L 631.13 367.06 L 631.13 351.82 L 635.15 351.82 L 635.15 367.06 Z M 635.15 348.07 L 631.13 348.07 L 631.13 332.83 L 635.15 332.83 L 635.15 348.07 Z M 643.43 423.34 L 639.41 423.34 L 639.41 408.10 L 643.43 408.10 L 643.43 423.34 Z M 643.43 404.69 L 639.41 404.69 L 639.41 389.45 L 643.43 389.45 L 643.43 404.69 Z M 643.43 386.04 L 639.41 386.04 L 639.41 370.80 L 643.43 370.80 L 643.43 386.04 Z M 643.43 367.06 L 639.41 367.06 L 639.41 351.82 L 643.43 351.82 L 643.43 367.06 Z M 643.43 348.07 L 639.41 348.07 L 639.41 332.83 L 643.43 332.83 L 643.43 348.07 Z" fill="url(#SVGID_4_)" fill-rule="nonzero" group-id="33,43" node-id="483" stroke="none" target-height="169.73999" target-width="59.380005" target-x="599.83" target-y="291.63"></path><path d="M 94.18 503.45 L 94.18 413.91 L 104.44 413.91 L 104.44 368.21 L 139.70 352.94 L 139.70 413.19 L 147.43 413.19 L 147.43 503.45 Z" fill="url(#SVGID_5_)" fill-rule="nonzero" group-id="33,43" node-id="485" stroke="none" target-height="150.51001" target-width="53.249992" target-x="94.18" target-y="352.94"></path><path d="M 698.95 486.85 L 668.01 486.85 L 668.01 363.72 L 698.95 378.69 Z" fill="url(#SVGID_6_)" fill-rule="nonzero" group-id="33,43" node-id="487" stroke="none" target-height="123.129974" target-width="30.940002" target-x="668.01" target-y="363.72"></path><path d="M 89.00 190.04 C 89.00 190.04 98.34 164.56 121.30 174.56 C 126.60 169.18 133.16 165.27 142.03 167.03 C 150.90 168.79 156.62 175.44 158.56 179.86 C 161.34 179.73 183.60 180.47 183.60 203.56 C 183.60 226.65 156.66 226.21 154.71 224.38 C 152.31 226.52 140.77 238.13 126.77 224.88 C 123.74 227.47 113.84 238.44 98.19 223.30 C 90.94 226.33 73.71 228.66 70.37 210.87 C 67.03 193.09 84.16 188.06 89.00 190.04 Z" fill="url(#SVGID_7_)" fill-rule="nonzero" group-id="33,43" node-id="489" stroke="none" target-height="73.880005" target-width="116.57001" target-x="67.03" target-y="164.56"></path><path d="M 606.07 153.22 C 606.07 153.22 615.41 127.74 638.37 137.74 C 643.67 132.36 650.23 128.45 659.10 130.21 C 667.97 131.98 673.69 138.62 675.63 143.04 C 678.41 142.91 700.67 143.65 700.67 166.74 C 700.67 189.83 673.73 189.39 671.78 187.56 C 669.38 189.70 657.84 201.31 643.84 188.06 C 640.81 190.65 630.91 201.62 615.26 186.48 C 608.01 189.51 590.78 191.84 587.44 174.05 C 584.10 156.27 601.23 151.24 606.07 153.22 Z" fill="url(#SVGID_8_)" fill-rule="nonzero" group-id="33,43" node-id="491" stroke="none" target-height="73.88" target-width="116.56995" target-x="584.1" target-y="127.74"></path><path d="M 486.73 207.74 C 486.73 207.74 493.49 189.29 510.11 196.54 C 513.95 192.64 518.69 189.81 525.12 191.09 C 531.54 192.37 535.68 197.18 537.08 200.37 C 539.09 200.28 555.21 200.81 555.21 217.52 C 555.21 234.23 535.71 233.91 534.30 232.59 C 532.56 234.14 524.21 242.54 514.07 232.96 C 511.88 234.83 504.71 242.78 493.39 231.82 C 488.14 234.01 475.67 235.70 473.25 222.82 C 470.83 209.94 483.23 206.31 486.73 207.74 Z" fill="url(#SVGID_9_)" fill-rule="nonzero" group-id="33,43" node-id="493" stroke="none" target-height="53.49002" target-width="84.380035" target-x="470.83" target-y="189.28998"></path><path d="M 771.27 576.96 C 771.27 623.65 732.18 668.44 662.61 701.45 C 593.04 734.47 498.68 753.02 400.29 753.02 C 301.90 753.02 207.54 734.47 137.97 701.45 C 68.40 668.44 29.31 623.65 29.31 576.96 C 29.31 530.27 68.40 485.48 137.97 452.47 C 207.54 419.45 301.90 400.90 400.29 400.90 C 498.68 400.90 593.04 419.45 662.61 452.47 C 732.18 485.48 771.27 530.27 771.27 576.96 Z" fill="url(#SVGID_10_)" fill-rule="nonzero" group-id="33,43" node-id="495" stroke="none" target-height="352.12" target-width="741.96" target-x="29.309998" target-y="400.90002"></path></g><g node-id="644"><g node-id="647"><path d="M 146.23 555.43 C 146.23 555.43 142.70 560.44 148.60 567.90 C 153.86 574.54 162.17 573.25 164.93 571.12 C 165.78 576.90 172.87 589.08 184.09 582.19 C 194.64 575.72 189.56 565.88 186.19 562.01 C 192.78 560.15 197.69 544.36 182.57 538.91 C 184.81 532.39 185.21 529.44 181.93 523.58 C 178.77 517.94 173.58 517.04 165.30 520.47 L 153.32 525.52 L 145.69 511.28 L 141.61 513.64 L 150.41 527.24 L 138.75 533.09 C 138.75 533.09 128.78 536.99 133.08 547.69 C 137.07 557.60 146.23 555.43 146.23 555.43 Z" fill="url(#SVGID_11_)" fill-rule="nonzero" group-id="33,44,47" node-id="501" stroke="none" target-height="77.80002" target-width="68.91" target-x="128.78" target-y="511.28"></path><path d="M 125.94 494.71 L 162.00 494.71 C 162.00 494.71 173.65 495.04 175.97 481.73 C 178.52 467.12 167.89 465.11 167.89 465.11 C 167.89 465.11 174.29 462.17 172.90 451.12 C 171.51 440.07 161.78 438.68 157.73 439.19 C 158.39 432.64 159.77 417.81 144.37 417.66 C 129.50 417.51 129.59 432.48 130.70 438.38 C 125.40 438.44 109.39 446.39 120.65 463.83 C 114.52 469.08 111.93 472.11 112.20 479.68 C 112.46 487.26 117.10 494.71 125.94 494.71 Z" fill="url(#SVGID_12_)" fill-rule="nonzero" group-id="33,44,47" node-id="503" stroke="none" target-height="77.53003" target-width="69.130005" target-x="109.39" target-y="417.50998"></path><path d="M 161.11 474.48 L 145.73 484.60 L 145.31 474.81 L 155.03 463.35 L 145.16 471.33 L 143.88 441.43 L 142.94 471.53 L 132.56 463.27 L 142.84 474.59 L 142.53 484.66 L 126.71 473.04 L 142.41 488.30 L 141.62 513.65 L 146.97 513.65 L 145.89 488.45 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="33,44,47" node-id="505" stroke="none" target-height="72.22006" target-width="34.4" target-x="126.71" target-y="441.42996"></path></g><g node-id="648"><path d="M 668.66 537.12 C 668.66 537.12 665.41 541.74 670.84 548.60 C 675.68 554.72 683.34 553.53 685.88 551.56 C 686.66 556.88 693.20 568.09 703.53 561.76 C 713.24 555.80 708.57 546.74 705.46 543.18 C 711.53 541.47 716.05 526.92 702.13 521.91 C 704.20 515.91 704.57 513.19 701.54 507.80 C 698.63 502.61 693.85 501.77 686.23 504.94 L 675.19 509.59 L 668.16 496.48 L 664.41 498.65 L 672.51 511.17 L 661.78 516.56 C 661.78 516.56 652.60 520.15 656.56 530.01 C 660.22 539.13 668.66 537.12 668.66 537.12 Z" fill="url(#SVGID_13_)" fill-rule="nonzero" group-id="33,44,48" node-id="510" stroke="none" target-height="71.610016" target-width="63.450073" target-x="652.6" target-y="496.48"></path><path d="M 649.96 481.21 L 683.16 481.21 C 683.16 481.21 693.89 481.52 696.02 469.26 C 698.36 455.81 688.58 453.96 688.58 453.96 C 688.58 453.96 694.48 451.25 693.19 441.08 C 691.90 430.91 682.95 429.62 679.22 430.10 C 679.83 424.07 681.10 410.41 666.92 410.27 C 653.23 410.13 653.31 423.91 654.33 429.35 C 649.45 429.40 634.70 436.72 645.08 452.79 C 639.44 457.62 637.05 460.42 637.30 467.38 C 637.56 474.35 641.83 481.21 649.96 481.21 Z" fill="url(#SVGID_14_)" fill-rule="nonzero" group-id="33,44,48" node-id="512" stroke="none" target-height="71.38995" target-width="63.659973" target-x="634.7" target-y="410.13004"></path><path d="M 682.35 462.58 L 668.19 471.89 L 667.81 462.88 L 676.76 452.33 L 667.67 459.68 L 666.49 432.14 L 665.62 459.86 L 656.07 452.25 L 665.53 462.68 L 665.24 471.96 L 650.68 461.25 L 665.14 475.30 L 664.40 498.65 L 669.34 498.65 L 668.34 475.44 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="33,44,48" node-id="514" stroke="none" target-height="66.50998" target-width="31.669983" target-x="650.68" target-y="432.14"></path></g><g node-id="649"><path d="M 229.17 446.92 C 229.17 446.92 227.42 449.40 230.34 453.09 C 232.94 456.38 237.05 455.74 238.42 454.68 C 238.84 457.54 242.35 463.56 247.90 460.16 C 253.12 456.96 250.61 452.09 248.94 450.18 C 252.20 449.26 254.63 441.45 247.15 438.76 C 248.26 435.54 248.46 434.08 246.83 431.18 C 245.27 428.39 242.70 427.94 238.61 429.64 L 232.68 432.14 L 228.91 425.10 L 226.89 426.27 L 231.24 432.99 L 225.47 435.88 C 225.47 435.88 220.54 437.81 222.67 443.10 C 224.64 448.00 229.17 446.92 229.17 446.92 Z" fill="url(#SVGID_15_)" fill-rule="nonzero" group-id="33,44,49" node-id="519" stroke="none" target-height="38.45999" target-width="34.09001" target-x="220.54" target-y="425.1"></path><path d="M 219.13 416.89 L 236.96 416.89 C 236.96 416.89 242.72 417.05 243.87 410.47 C 245.13 403.24 239.87 402.25 239.87 402.25 C 239.87 402.25 243.04 400.79 242.35 395.33 C 241.66 389.87 236.85 389.18 234.85 389.43 C 235.18 386.19 235.86 378.85 228.24 378.78 C 220.88 378.71 220.93 386.11 221.48 389.03 C 218.86 389.06 210.94 392.99 216.51 401.62 C 213.48 404.21 212.19 405.72 212.33 409.46 C 212.47 413.20 214.76 416.89 219.13 416.89 Z" fill="url(#SVGID_16_)" fill-rule="nonzero" group-id="33,44,49" node-id="521" stroke="none" target-height="38.339996" target-width="34.190018" target-x="210.94" target-y="378.70996"></path><path d="M 236.52 406.88 L 228.92 411.89 L 228.71 407.05 L 233.52 401.38 L 228.64 405.33 L 228.00 390.54 L 227.54 405.42 L 222.40 401.34 L 227.49 406.94 L 227.33 411.92 L 219.51 406.17 L 227.28 413.72 L 226.88 426.26 L 229.53 426.26 L 229.00 413.79 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="33,44,49" node-id="523" stroke="none" target-height="35.72003" target-width="17.010025" target-x="219.50998" target-y="390.54"></path></g></g><g node-id="645"><path d="M 567.21 453.16 C 573.39 458.90 721.37 603.34 721.37 603.34 L 416.58 703.17 L 280.24 448.75 L 567.21 453.16 Z" fill="url(#SVGID_17_)" fill-rule="nonzero" group-id="33,45" node-id="529" stroke="none" target-height="254.41995" target-width="441.13" target-x="280.24" target-y="448.75003"></path><path d="M 454.44 440.55 L 287.98 440.55 L 287.98 301.28 C 287.98 297.51 291.03 294.46 294.80 294.46 L 447.63 294.46 C 451.40 294.46 454.45 297.51 454.45 301.28 L 454.45 440.55 Z" fill="url(#SVGID_18_)" fill-rule="nonzero" group-id="33,45" node-id="531" stroke="none" target-height="146.09" target-width="166.47" target-x="287.98" target-y="294.46"></path><path d="M 287.98 403.36 L 454.45 403.36 L 454.45 414.46 L 287.98 414.46 Z" fill="url(#SVGID_19_)" fill-rule="nonzero" group-id="33,45" node-id="533" stroke="none" target-height="11.100006" target-width="166.47" target-x="287.98" target-y="403.36"></path><path d="M 524.96 324.92 L 454.33 324.92 L 454.33 440.55 L 567.05 440.55 L 567.05 399.29 C 567.05 397.42 566.60 395.59 565.74 393.93 L 532.20 329.32 C 530.79 326.62 528.00 324.92 524.96 324.92 Z M 479.68 389.53 L 463.12 389.53 L 463.12 336.75 L 479.68 336.75 L 479.68 389.53 Z M 492.06 389.53 L 492.06 336.75 L 519.27 336.75 L 548.84 389.53 L 492.06 389.53 Z" fill="url(#SVGID_20_)" fill-rule="nonzero" group-id="33,45" node-id="535" stroke="none" target-height="115.629974" target-width="112.72" target-x="454.33" target-y="324.92"></path><path d="M 543.02 413.01 L 567.04 413.01 L 567.04 428.66 L 543.02 428.66 Z" fill="url(#SVGID_21_)" fill-rule="nonzero" group-id="33,45" node-id="537" stroke="none" target-height="15.649994" target-width="24.02002" target-x="543.02" target-y="413.01"></path><path d="M 509.08 378.19 L 531.19 357.92 L 533.68 362.35 L 523.64 371.54 L 512.41 381.82 C 511.44 382.70 509.95 382.68 509.02 381.76 L 509.02 381.76 C 508.01 380.77 508.04 379.14 509.08 378.19 Z" fill="#aabfd4" fill-rule="nonzero" group-id="33,45" node-id="539" stroke="none" target-height="24.779968" target-width="25.669983" target-x="508.01" target-y="357.92004"></path><path d="M 542.59 389.53 L 523.91 371.03 L 519.78 374.85 L 534.89 389.47 Z" fill="#aabfd4" fill-rule="nonzero" group-id="33,45" node-id="541" stroke="none" target-height="18.49997" target-width="22.809998" target-x="519.78" target-y="371.03003"></path><path d="M 568.32 456.96 L 288.44 456.96 C 283.91 456.96 280.23 453.29 280.23 448.75 L 280.23 448.75 C 280.23 444.22 283.90 440.54 288.44 440.54 L 568.32 440.54 C 572.85 440.54 576.53 444.21 576.53 448.75 L 576.53 448.75 C 576.53 453.28 572.85 456.96 568.32 456.96 Z" fill="url(#SVGID_22_)" fill-rule="nonzero" group-id="33,45" node-id="543" stroke="none" target-height="16.419983" target-width="296.30002" target-x="280.23" target-y="440.54"></path><path d="M 491.51 408.36 L 474.40 408.36 C 472.84 408.36 471.58 407.10 471.58 405.54 L 471.58 405.54 C 471.58 403.98 472.84 402.72 474.40 402.72 L 491.51 402.72 C 493.07 402.72 494.33 403.98 494.33 405.54 L 494.33 405.54 C 494.33 407.10 493.07 408.36 491.51 408.36 Z" fill="#aabfd4" fill-rule="nonzero" group-id="33,45" node-id="545" stroke="none" target-height="5.639984" target-width="22.75" target-x="471.58" target-y="402.72"></path><path d="M 370.48 456.42 C 370.48 473.61 356.55 487.54 339.36 487.54 C 322.17 487.54 308.24 473.61 308.24 456.42 C 308.24 439.23 322.17 425.30 339.36 425.30 C 356.55 425.30 370.48 439.23 370.48 456.42 Z" fill="url(#SVGID_23_)" fill-rule="nonzero" group-id="33,45" node-id="547" stroke="none" target-height="62.23999" target-width="62.23996" target-x="308.24" target-y="425.30002"></path><path d="M 355.53 456.42 C 355.53 460.71 353.83 464.82 350.79 467.85 C 347.76 470.89 343.65 472.59 339.36 472.59 C 335.07 472.59 330.96 470.89 327.93 467.85 C 324.89 464.82 323.19 460.71 323.19 456.42 C 323.19 452.13 324.89 448.02 327.93 444.99 C 330.96 441.95 335.07 440.25 339.36 440.25 C 343.65 440.25 347.76 441.95 350.79 444.99 C 353.83 448.02 355.53 452.13 355.53 456.42 Z" fill="url(#SVGID_24_)" fill-rule="nonzero" group-id="33,45" node-id="549" stroke="none" target-height="32.339996" target-width="32.340057" target-x="323.18997" target-y="440.25"></path><path d="M 550.11 456.42 C 550.11 473.61 536.18 487.54 518.99 487.54 C 501.80 487.54 487.87 473.61 487.87 456.42 C 487.87 439.23 501.80 425.30 518.99 425.30 C 536.18 425.30 550.11 439.23 550.11 456.42 Z" fill="url(#SVGID_25_)" fill-rule="nonzero" group-id="33,45" node-id="551" stroke="none" target-height="62.23999" target-width="62.23996" target-x="487.87003" target-y="425.30002"></path><path d="M 535.16 456.42 C 535.16 465.35 527.92 472.59 518.99 472.59 C 514.70 472.59 510.59 470.89 507.56 467.85 C 504.52 464.82 502.82 460.71 502.82 456.42 C 502.82 452.13 504.52 448.02 507.56 444.99 C 510.59 441.95 514.70 440.25 518.99 440.25 C 527.92 440.25 535.16 447.49 535.16 456.42 Z" fill="url(#SVGID_26_)" fill-rule="nonzero" group-id="33,45" node-id="553" stroke="none" target-height="32.339996" target-width="32.339996" target-x="502.81998" target-y="440.25"></path><g node-id="650"><path d="M 378.42 334.04 C 378.42 334.50 378.80 334.88 379.27 334.87 L 398.84 334.87 L 398.85 334.87 C 399.49 334.87 400.00 334.60 399.69 333.80 L 393.32 325.04 C 393.07 324.60 392.50 324.40 392.04 324.40 L 378.21 324.40 C 377.74 324.40 377.36 324.78 377.36 325.26 L 378.42 334.02 C 378.42 334.03 378.42 334.04 378.42 334.04 Z" fill="url(#SVGID_27_)" fill-rule="nonzero" group-id="33,45,50" node-id="557" stroke="none" target-height="10.480011" target-width="22.640015" target-x="377.36" target-y="324.4"></path><path d="M 345.96 334.88 L 365.61 334.88 L 365.61 334.88 C 366.09 334.88 366.46 334.50 366.46 334.03 L 367.53 325.27 C 367.53 324.79 367.15 324.41 366.67 324.41 L 352.80 324.41 C 352.32 324.41 351.76 324.61 351.52 325.05 L 345.11 333.81 C 344.81 334.59 345.31 334.88 345.96 334.88 Z" fill="url(#SVGID_28_)" fill-rule="nonzero" group-id="33,45,50" node-id="559" stroke="none" target-height="10.470001" target-width="22.720001" target-x="344.81" target-y="324.41"></path><path d="M 400.85 338.50 L 379.05 338.50 C 378.59 338.50 378.21 338.88 378.21 339.36 L 378.21 343.84 C 378.21 344.32 377.83 344.70 377.36 344.70 L 367.32 344.70 C 366.84 344.70 366.47 344.32 366.47 343.84 L 366.47 339.36 C 366.47 338.88 366.09 338.50 365.62 338.50 L 343.84 338.50 C 343.36 338.50 342.99 338.88 342.99 339.36 L 342.99 382.29 C 342.99 382.76 343.37 383.14 343.84 383.14 L 400.86 383.14 L 400.86 383.14 C 400.87 383.14 400.87 383.14 400.88 383.14 C 401.34 383.13 401.71 382.74 401.70 382.28 L 401.70 339.36 C 401.70 338.88 401.31 338.50 400.85 338.50 Z M 386.71 364.95 L 376.89 375.96 C 375.91 377.01 374.26 377.06 373.22 376.08 C 372.17 375.10 372.12 373.45 373.10 372.41 L 379.17 365.54 L 379.17 365.54 L 357.59 365.54 C 356.91 365.54 356.36 364.38 356.36 362.94 C 356.36 361.50 356.91 360.34 357.59 360.34 L 378.75 360.34 L 373.11 353.95 C 372.13 352.90 372.18 351.26 373.23 350.28 C 374.28 349.30 375.92 349.35 376.90 350.40 L 386.71 361.41 C 387.65 362.40 387.65 363.95 386.71 364.95 Z" fill="url(#SVGID_29_)" fill-rule="nonzero" group-id="33,45,50" node-id="561" stroke="none" target-height="44.640015" target-width="58.72" target-x="342.99" target-y="338.5"></path></g></g><g node-id="646"><path d="M 270.37 536.59 L 342.97 662.83 L 274.21 684.85 L 210.27 539.53 L 229.22 537.24 L 270.38 585.68 L 251.09 542.50 Z" fill="url(#SVGID_30_)" fill-rule="nonzero" group-id="33,46" node-id="567" stroke="none" target-height="148.25995" target-width="132.7" target-x="210.27" target-y="536.59"></path><path d="M 259.44 530.38 C 259.44 530.38 261.35 530.98 260.31 535.21 C 263.85 535.34 266.79 532.90 266.79 532.90 L 264.79 527.01 L 259.44 530.38 Z" fill="#ffbe92" fill-rule="nonzero" group-id="33,46" node-id="569" stroke="none" target-height="8.330017" target-width="7.350006" target-x="259.44" target-y="527.01"></path><path d="M 222.31 530.07 C 222.31 530.07 222.98 531.16 220.46 534.69 C 223.71 536.13 228.24 535.15 228.24 535.15 L 228.53 528.95 L 222.31 530.07 Z" fill="#ffbe92" fill-rule="nonzero" group-id="33,46" node-id="571" stroke="none" target-height="7.1799927" target-width="8.069992" target-x="220.46" target-y="528.95"></path><path d="M 229.91 539.03 L 210.35 538.34 C 210.35 538.34 209.56 532.44 217.25 532.95 C 218.80 533.05 220.16 531.35 221.43 531.44 C 224.27 534.20 229.38 533.94 229.38 533.94 L 229.91 539.03 Z" fill="#f8b62d" fill-rule="nonzero" group-id="33,46" node-id="573" stroke="none" target-height="7.6800537" target-width="20.34999" target-x="209.56" target-y="531.35"></path><path d="M 230.26 540.33 L 221.62 540.79 L 221.36 539.21 L 210.27 539.53 L 210.10 538.19 L 229.99 537.41 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="33,46" node-id="575" stroke="none" target-height="3.380005" target-width="20.159988" target-x="210.1" target-y="537.41"></path><path d="M 269.76 535.89 L 251.38 542.55 C 251.38 542.55 248.49 537.35 255.81 534.95 C 257.29 534.47 257.92 532.37 259.14 531.98 C 262.78 533.49 267.43 531.34 267.43 531.34 L 269.76 535.89 Z" fill="#f8b62d" fill-rule="nonzero" group-id="33,46" node-id="577" stroke="none" target-height="11.209961" target-width="21.270004" target-x="248.49" target-y="531.34"></path><path d="M 270.56 536.96 L 262.72 540.62 L 261.90 539.24 L 251.74 543.68 L 251.09 542.50 L 269.25 534.35 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="33,46" node-id="579" stroke="none" target-height="9.330017" target-width="19.470001" target-x="251.09" target-y="534.35"></path><path d="M 235.74 480.11 C 235.74 480.11 228.51 494.63 227.35 502.97 C 226.19 511.31 222.01 530.63 222.01 530.63 L 228.61 533.43 C 228.61 533.43 236.83 510.70 237.51 508.27 C 238.19 505.84 247.23 494.58 247.23 494.58 L 251.93 479.83 L 235.74 480.11 Z" fill="url(#SVGID_31_)" fill-rule="nonzero" group-id="33,46" node-id="581" stroke="none" target-height="53.600006" target-width="29.919998" target-x="222.01" target-y="479.83"></path><path d="M 234.24 479.55 C 234.24 479.55 238.29 497.96 244.24 507.79 C 250.19 517.62 259.68 531.92 259.68 531.92 L 267.32 530.25 C 267.32 530.25 258.03 511.20 254.40 503.75 C 252.85 496.13 253.77 491.38 253.98 489.39 C 254.19 487.40 256.19 484.92 253.77 479.40 C 251.35 473.86 234.24 479.55 234.24 479.55 Z" fill="url(#SVGID_32_)" fill-rule="nonzero" group-id="33,46" node-id="583" stroke="none" target-height="58.059998" target-width="33.08" target-x="234.24" target-y="473.86"></path><path d="M 236.84 426.09 C 236.84 426.09 234.38 429.90 236.74 435.46 C 237.32 436.51 238.40 438.34 240.89 436.71 C 241.11 436.64 241.29 436.96 241.37 437.26 C 241.45 437.56 242.56 442.76 242.56 442.76 L 250.04 442.23 C 250.04 442.23 245.57 429.48 245.44 426.92 C 245.36 425.60 243.79 423.41 241.00 423.50 C 238.22 423.57 236.84 426.09 236.84 426.09 Z" fill="#ffbe92" fill-rule="nonzero" group-id="33,46" node-id="585" stroke="none" target-height="19.350037" target-width="15.659988" target-x="234.38" target-y="423.41"></path><path d="M 238.05 420.59 C 238.05 420.59 237.18 419.22 235.17 420.42 C 233.16 421.62 234.30 423.39 234.41 423.85 C 234.52 424.31 234.26 424.69 233.62 424.48 C 232.98 424.28 231.87 424.18 231.22 425.65 C 230.57 427.12 232.47 430.72 234.89 430.16 C 237.31 429.60 238.44 428.25 239.25 427.30 C 240.06 426.34 241.68 425.15 242.01 426.18 C 242.34 427.21 242.45 429.43 242.91 429.06 C 243.34 428.72 242.90 426.48 244.26 426.37 C 245.62 426.26 245.67 428.22 244.86 429.35 C 244.51 429.82 244.53 429.74 244.70 430.19 C 244.86 430.64 244.86 430.95 245.39 431.45 C 245.93 431.96 246.15 432.24 246.50 431.41 C 246.84 430.59 247.49 429.03 246.84 425.87 C 246.60 424.99 246.88 424.91 247.31 424.37 C 247.74 423.83 248.34 422.99 247.58 421.89 C 246.81 420.80 246.17 420.99 245.33 421.09 C 244.49 421.19 244.50 420.88 244.45 420.38 C 244.40 419.87 243.63 417.98 241.96 418.15 C 240.28 418.31 239.64 419.32 239.27 420.16 C 238.88 421.00 238.34 420.83 238.05 420.59 Z" fill="#171c61" fill-rule="nonzero" group-id="33,46" node-id="587" stroke="none" target-height="14.259979" target-width="17.769974" target-x="230.57" target-y="417.98"></path><path d="M 252.64 453.05 C 252.64 453.05 252.38 436.61 247.20 437.42 C 242.02 438.24 236.16 439.03 234.14 453.36 C 233.51 458.77 234.33 466.96 233.89 471.23 C 233.45 475.50 231.41 480.42 233.61 482.02 C 235.81 483.61 248.20 483.73 251.45 483.26 C 254.70 482.78 257.09 482.75 256.76 478.12 C 256.43 473.49 253.04 461.84 252.64 453.05 Z" fill="url(#SVGID_33_)" fill-rule="nonzero" group-id="33,46" node-id="589" stroke="none" target-height="47.120056" target-width="25.679977" target-x="231.41002" target-y="436.60995"></path><path d="M 231.69 470.43 L 210.53 470.43 C 209.13 470.43 207.99 469.29 207.99 467.89 L 207.99 450.66 L 234.23 450.66 L 234.23 467.89 C 234.23 469.29 233.09 470.43 231.69 470.43 Z" fill="url(#SVGID_34_)" fill-rule="nonzero" group-id="33,46" node-id="591" stroke="none" target-height="19.77002" target-width="26.240005" target-x="207.99" target-y="450.65997"></path><path d="M 225.57 460.01 L 221.06 458.29 L 216.61 460.01 L 216.61 450.73 L 225.57 450.73 Z" fill="url(#SVGID_35_)" fill-rule="nonzero" group-id="33,46" node-id="593" stroke="none" target-height="9.279999" target-width="8.960022" target-x="216.61" target-y="450.73"></path><path d="M 234.38 451.20 L 207.35 451.20 C 206.50 451.20 205.80 450.51 205.80 449.65 L 205.80 444.44 C 205.80 443.59 206.49 442.89 207.35 442.89 L 234.38 442.89 C 235.23 442.89 235.93 443.58 235.93 444.44 L 235.93 449.65 C 235.93 450.51 235.24 451.20 234.38 451.20 Z" fill="url(#SVGID_36_)" fill-rule="nonzero" group-id="33,46" node-id="595" stroke="none" target-height="8.310028" target-width="30.12999" target-x="205.8" target-y="442.88998"></path><path d="M 238.41 449.42 C 238.27 449.71 235.20 457.81 233.94 459.11 C 232.68 460.41 225.62 468.11 224.79 468.15 C 223.96 468.19 221.13 467.99 220.59 468.41 C 220.05 468.83 221.22 469.27 221.56 469.44 C 221.90 469.61 221.95 470.45 220.34 470.00 C 218.15 469.39 216.57 470.44 217.91 471.40 C 219.25 472.36 222.95 473.70 225.88 471.70 C 228.81 469.70 236.90 463.84 238.76 461.30 C 240.62 458.76 244.94 450.68 244.94 450.68 L 238.41 449.42 Z" fill="#ffbe92" fill-rule="nonzero" group-id="33,46" node-id="597" stroke="none" target-height="24.279999" target-width="28.37001" target-x="216.56999" target-y="449.42"></path><path d="M 236.34 449.01 L 242.77 456.23 C 242.77 456.23 251.35 448.27 246.09 443.54 C 240.83 438.81 236.34 449.01 236.34 449.01 Z" fill="url(#SVGID_37_)" fill-rule="nonzero" group-id="33,46" node-id="599" stroke="none" target-height="17.420013" target-width="15.010025" target-x="236.34" target-y="438.81"></path></g></g></svg>
|