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.
Files changed (209) hide show
  1. package/dist/index.d.ts +1 -0
  2. package/dist/index.js +1 -0
  3. package/dist/server/index.d.ts +1 -0
  4. package/dist/server/index.js +1 -0
  5. package/dist/src/auth/define-macro.d.ts +8 -0
  6. package/dist/src/auth/index.d.ts +2 -0
  7. package/dist/src/comm/daily-log.d.ts +8 -0
  8. package/dist/src/comm/env.d.ts +4 -0
  9. package/dist/src/comm/format-time.d.ts +10 -0
  10. package/dist/src/comm/merge.d.ts +2 -0
  11. package/dist/src/comm/scan.d.ts +4 -0
  12. package/dist/src/comm/startBanner.d.ts +1 -0
  13. package/dist/src/core/app.d.ts +37 -0
  14. package/dist/src/core/config.d.ts +2 -0
  15. package/dist/src/core/context/index.d.ts +22 -0
  16. package/dist/src/core/host-infra.d.ts +20 -0
  17. package/dist/src/core/index.d.ts +20 -0
  18. package/dist/src/core/plugins/async-context.d.ts +3 -0
  19. package/dist/src/core/plugins/error.d.ts +5 -0
  20. package/dist/src/core/plugins/logging.d.ts +3 -0
  21. package/dist/src/core/plugins/openapi.d.ts +3 -0
  22. package/dist/src/core/vome-config.d.ts +2 -0
  23. package/dist/src/ext/base-plugin.d.ts +13 -0
  24. package/dist/src/ext/index.d.ts +15 -0
  25. package/dist/src/ext/load-plugin.d.ts +12 -0
  26. package/dist/src/ext/micro-apps.d.ts +60 -0
  27. package/dist/src/ext/module-gateway.d.ts +10 -0
  28. package/dist/src/ext/module-registry.d.ts +45 -0
  29. package/dist/src/ext/path.d.ts +8 -0
  30. package/dist/src/index.d.ts +10 -0
  31. package/dist/src/ioc/container.d.ts +29 -0
  32. package/dist/src/ioc/decorators.d.ts +35 -0
  33. package/dist/src/ioc/host.d.ts +2 -0
  34. package/dist/src/ioc/index.d.ts +6 -0
  35. package/dist/src/ioc/metadata.d.ts +12 -0
  36. package/dist/src/ioc/scope.d.ts +9 -0
  37. package/dist/src/logger/bootstrap.d.ts +2 -0
  38. package/dist/src/logger/exception.d.ts +22 -0
  39. package/dist/src/logger/index.d.ts +5 -0
  40. package/dist/src/logger/logger.d.ts +18 -0
  41. package/dist/src/logger/pino.d.ts +8 -0
  42. package/dist/src/orm/base-columns.d.ts +11 -0
  43. package/dist/src/orm/column-comments.d.ts +25 -0
  44. package/dist/src/orm/crud-config.d.ts +7 -0
  45. package/dist/src/orm/crud-register.d.ts +5 -0
  46. package/dist/src/orm/data-scope.d.ts +24 -0
  47. package/dist/src/orm/db-store.d.ts +12 -0
  48. package/dist/src/orm/entity-schema.d.ts +7 -0
  49. package/dist/src/orm/index.d.ts +22 -0
  50. package/dist/src/orm/query-builder.d.ts +12 -0
  51. package/dist/src/orm/query-op.d.ts +27 -0
  52. package/dist/src/orm/repository.d.ts +74 -0
  53. package/dist/src/orm/service.d.ts +71 -0
  54. package/dist/src/orm/tenant.d.ts +24 -0
  55. package/dist/src/routing/base.d.ts +27 -0
  56. package/dist/src/routing/context.d.ts +14 -0
  57. package/dist/src/routing/crud-summary.d.ts +2 -0
  58. package/dist/src/routing/decorators.d.ts +48 -0
  59. package/dist/src/routing/eps.d.ts +16 -0
  60. package/dist/src/routing/index.d.ts +8 -0
  61. package/dist/src/routing/metadata.d.ts +28 -0
  62. package/dist/src/routing/openapi-tags.d.ts +23 -0
  63. package/dist/src/routing/path-utils.d.ts +5 -0
  64. package/dist/src/routing/perm.d.ts +18 -0
  65. package/dist/src/routing/register.d.ts +7 -0
  66. package/dist/src/server/index.d.ts +10 -0
  67. package/dist/src/shared/index.d.ts +8 -0
  68. package/dist/src/shared/tree.d.ts +18 -0
  69. package/dist/typings/comm/crud.d.ts +24 -0
  70. package/dist/typings/comm/page.d.ts +16 -0
  71. package/dist/typings/comm/scan.d.ts +6 -0
  72. package/dist/typings/common.d.ts +6 -0
  73. package/dist/typings/context/data.d.ts +10 -0
  74. package/dist/typings/ext/module.d.ts +45 -0
  75. package/dist/typings/ext/plugin.d.ts +40 -0
  76. package/dist/typings/ioc/metadata.d.ts +31 -0
  77. package/dist/typings/logger/config.d.ts +6 -0
  78. package/dist/typings/routing/crud.d.ts +99 -0
  79. package/dist/typings/routing/eps.d.ts +53 -0
  80. package/dist/typings/routing/meta.d.ts +56 -0
  81. package/dist/typings/routing/register.d.ts +15 -0
  82. package/dist/typings/routing/scan-context.d.ts +6 -0
  83. package/package.json +96 -0
  84. package/src/admin/api/client.ts +184 -0
  85. package/src/admin/components/vm-aside.vue +227 -0
  86. package/src/admin/components/vm-auto-perm-dialog.vue +361 -0
  87. package/src/admin/components/vm-check-tree.vue +338 -0
  88. package/src/admin/components/vm-dept-tree.vue +549 -0
  89. package/src/admin/components/vm-empty.vue +62 -0
  90. package/src/admin/components/vm-eps-perm-picker.vue +114 -0
  91. package/src/admin/components/vm-group-cascader.vue +563 -0
  92. package/src/admin/components/vm-icon-picker.vue +616 -0
  93. package/src/admin/components/vm-markdown.vue +141 -0
  94. package/src/admin/components/vm-ri-icon.vue +21 -0
  95. package/src/admin/components/vm-role-picker.vue +314 -0
  96. package/src/admin/components/vm-view-path-picker.vue +56 -0
  97. package/src/admin/config/plugin-dev.ts +31 -0
  98. package/src/admin/crud/components/vm-column-custom.vue +196 -0
  99. package/src/admin/crud/components/vm-context-menu.vue +99 -0
  100. package/src/admin/crud/components/vm-date-picker.vue +74 -0
  101. package/src/admin/crud/components/vm-date-range.vue +291 -0
  102. package/src/admin/crud/components/vm-date-text.vue +41 -0
  103. package/src/admin/crud/components/vm-dict-tag.vue +47 -0
  104. package/src/admin/crud/components/vm-file-icon.vue +54 -0
  105. package/src/admin/crud/components/vm-multi-select.vue +181 -0
  106. package/src/admin/crud/components/vm-number-range.vue +200 -0
  107. package/src/admin/crud/components/vm-radio.vue +87 -0
  108. package/src/admin/crud/components/vm-select.vue +131 -0
  109. package/src/admin/crud/components/vm-switch.vue +128 -0
  110. package/src/admin/crud/components/vm-tree-select.vue +456 -0
  111. package/src/admin/crud/components/vm-upload-item.vue +215 -0
  112. package/src/admin/crud/components/vm-upload.vue +323 -0
  113. package/src/admin/crud/components/vm-user-select.vue +234 -0
  114. package/src/admin/crud/config.ts +38 -0
  115. package/src/admin/crud/confirm.ts +135 -0
  116. package/src/admin/crud/dict.ts +49 -0
  117. package/src/admin/crud/index.ts +79 -0
  118. package/src/admin/crud/key.ts +47 -0
  119. package/src/admin/crud/mitt.ts +27 -0
  120. package/src/admin/crud/plugins.ts +298 -0
  121. package/src/admin/crud/registry.ts +45 -0
  122. package/src/admin/crud/span.ts +48 -0
  123. package/src/admin/crud/style.ts +112 -0
  124. package/src/admin/crud/useCrud.ts +81 -0
  125. package/src/admin/crud/validate.ts +109 -0
  126. package/src/admin/crud/vm-add-btn.vue +68 -0
  127. package/src/admin/crud/vm-adv-search.vue +73 -0
  128. package/src/admin/crud/vm-crud.vue +517 -0
  129. package/src/admin/crud/vm-dialog.vue +234 -0
  130. package/src/admin/crud/vm-flex1.vue +14 -0
  131. package/src/admin/crud/vm-form.vue +239 -0
  132. package/src/admin/crud/vm-multi-delete-btn.vue +48 -0
  133. package/src/admin/crud/vm-pagination.vue +125 -0
  134. package/src/admin/crud/vm-refresh-btn.vue +34 -0
  135. package/src/admin/crud/vm-row.vue +42 -0
  136. package/src/admin/crud/vm-search-key.vue +76 -0
  137. package/src/admin/crud/vm-search.vue +367 -0
  138. package/src/admin/crud/vm-table.vue +852 -0
  139. package/src/admin/crud/vm-toolbar.vue +245 -0
  140. package/src/admin/crud/vm-upsert.vue +530 -0
  141. package/src/admin/data/remixicon-all.json +1 -0
  142. package/src/admin/directives/perm.ts +18 -0
  143. package/src/admin/env.d.ts +5 -0
  144. package/src/admin/hooks/useBrowser.ts +27 -0
  145. package/src/admin/hooks/useUpload.ts +82 -0
  146. package/src/admin/hooks/useVome.ts +13 -0
  147. package/src/admin/index.ts +59 -0
  148. package/src/admin/lib/browser.ts +28 -0
  149. package/src/admin/lib/cn.ts +7 -0
  150. package/src/admin/lib/dialog-float.ts +14 -0
  151. package/src/admin/lib/eps.ts +43 -0
  152. package/src/admin/lib/menu.ts +15 -0
  153. package/src/admin/lib/module.ts +112 -0
  154. package/src/admin/lib/tree.ts +2 -0
  155. package/src/admin/lib/upload.ts +102 -0
  156. package/src/admin/router/index.ts +61 -0
  157. package/src/admin/router/menu-routes.ts +126 -0
  158. package/src/admin/service/base.ts +96 -0
  159. package/src/admin/service/index.ts +281 -0
  160. package/src/admin/static/fileicon/demo.css +539 -0
  161. package/src/admin/static/fileicon/demo_index.html +901 -0
  162. package/src/admin/static/fileicon/iconfont.css +139 -0
  163. package/src/admin/static/fileicon/iconfont.js +1 -0
  164. package/src/admin/static/fileicon/iconfont.json +226 -0
  165. package/src/admin/static/fileicon/iconfont.ttf +0 -0
  166. package/src/admin/static/fileicon/iconfont.woff +0 -0
  167. package/src/admin/static/fileicon/iconfont.woff2 +0 -0
  168. package/src/admin/static/scarce//344/270/213/350/275/275/345/244/261/350/264/245.svg +1 -0
  169. package/src/admin/static/scarce//346/224/257/344/273/230/346/210/220/345/212/237.svg +1 -0
  170. package/src/admin/static/scarce//346/232/202/346/227/240/344/274/230/346/203/240/345/210/270.svg +1 -0
  171. package/src/admin/static/scarce//346/232/202/346/227/240/345/206/205/345/256/271.svg +1 -0
  172. package/src/admin/static/scarce//346/232/202/346/227/240/345/217/221/347/245/250.svg +1 -0
  173. package/src/admin/static/scarce//346/232/202/346/227/240/345/233/276/347/211/207.svg +1 -0
  174. package/src/admin/static/scarce//346/232/202/346/227/240/345/234/260/345/235/200.svg +1 -0
  175. package/src/admin/static/scarce//346/232/202/346/227/240/345/272/227/351/223/272.svg +1 -0
  176. package/src/admin/static/scarce//346/232/202/346/227/240/346/216/250/351/200/201.svg +1 -0
  177. 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
  178. package/src/admin/static/scarce//346/232/202/346/227/240/346/224/266/350/227/217.svg +1 -0
  179. package/src/admin/static/scarce//346/232/202/346/227/240/346/225/260/346/215/256.svg +1 -0
  180. package/src/admin/static/scarce//346/232/202/346/227/240/346/235/203/351/231/220.svg +1 -0
  181. package/src/admin/static/scarce//346/232/202/346/227/240/346/266/210/346/201/257.svg +1 -0
  182. package/src/admin/static/scarce//346/232/202/346/227/240/347/244/274/347/211/251.svg +1 -0
  183. package/src/admin/static/scarce//346/232/202/346/227/240/347/247/257/345/210/206.svg +1 -0
  184. package/src/admin/static/scarce//346/232/202/346/227/240/347/275/221/347/273/234.svg +1 -0
  185. package/src/admin/static/scarce//346/232/202/346/227/240/350/247/206/351/242/221.svg +1 -0
  186. package/src/admin/static/scarce//346/232/202/346/227/240/350/256/242/345/215/225.svg +1 -0
  187. package/src/admin/static/scarce//346/232/202/346/227/240/350/257/204/350/256/272.svg +1 -0
  188. package/src/admin/static/scarce//346/232/202/346/227/240/351/205/215/351/200/201.svg +1 -0
  189. package/src/admin/static/scarce//346/232/202/346/227/240/351/223/266/350/241/214/345/215/241.svg +1 -0
  190. package/src/admin/static/scarce//346/232/202/346/227/240/351/237/263/344/271/220.svg +1 -0
  191. package/src/admin/static/scarce//351/241/265/351/235/242/344/270/215/345/255/230/345/234/250.svg +1 -0
  192. package/src/admin/stores/app.ts +30 -0
  193. package/src/admin/stores/tags.ts +73 -0
  194. package/src/admin/stores/user.ts +52 -0
  195. package/src/admin/styles/base.css +137 -0
  196. package/src/admin/tsconfig.json +19 -0
  197. package/typings/admin/base/auth.ts +23 -0
  198. package/typings/admin/base/permission.ts +19 -0
  199. package/typings/admin/comm/cascader.ts +7 -0
  200. package/typings/admin/comm/check-tree.ts +7 -0
  201. package/typings/admin/comm/crud.ts +294 -0
  202. package/typings/admin/comm/eps.ts +52 -0
  203. package/typings/admin/comm/request.ts +12 -0
  204. package/typings/admin/comm/service.ts +35 -0
  205. package/typings/admin/comm/upload.ts +39 -0
  206. package/typings/admin/host.d.ts +61 -0
  207. package/typings/admin/vome/browser.ts +11 -0
  208. package/typings/admin/vome/module.ts +13 -0
  209. 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="189"><linearGradient gradientUnits="objectBoundingBox" id="SVGID_1_" node-id="44" spreadMethod="pad" x1="256.7882" x2="256.7882" 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="48" spreadMethod="pad" x1="192.1712" x2="192.1712" 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="52" spreadMethod="pad" x1="567.9528" x2="567.9528" 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="56" spreadMethod="pad" x1="630.4777" x2="630.4777" 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="60" spreadMethod="pad" x1="121.7651" x2="121.7651" 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="64" spreadMethod="pad" x1="684.4383" x2="684.4383" 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="68" spreadMethod="pad" x1="127.7288" x2="127.7288" 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="72" spreadMethod="pad" x1="644.7972" x2="644.7972" 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="76" spreadMethod="pad" x1="515.0263" x2="515.0263" 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="80" spreadMethod="pad" x1="401.2436" x2="401.2436" 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="86" spreadMethod="pad" x1="192.1731" x2="140.7369" 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="90" spreadMethod="pad" x1="113.1253" x2="177.3122" 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="96" spreadMethod="pad" x1="711.0353" x2="663.6699" 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="100" spreadMethod="pad" x1="638.2435" x2="697.3504" 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="106" spreadMethod="pad" x1="252.3727" x2="226.9314" 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="110" spreadMethod="pad" x1="213.2742" x2="245.0221" 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="116" spreadMethod="pad" x1="558.533" x2="463.8543" y1="674.5671" y2="414.4396"><stop offset="0.0698" stop-color="#ffffff"></stop><stop offset="0.7853" stop-color="#bbcbe0"></stop><stop offset="1" stop-color="#bbcbe0"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_18_" node-id="121" spreadMethod="pad" x1="295.5128" x2="516.5991" y1="365.3846" y2="365.3846"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_19_" node-id="125" spreadMethod="pad" x1="313.0832" x2="499.0288" y1="365.3846" y2="365.3846"><stop offset="0" stop-color="#dde5f0"></stop><stop offset="1" stop-color="#9fb7ce"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_20_" node-id="129" spreadMethod="pad" x1="347.2882" x2="464.8236" y1="233.2728" y2="233.2728"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_21_" node-id="133" spreadMethod="pad" x1="445.5512" x2="558.8508" y1="458.1855" y2="458.1855"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_22_" node-id="137" spreadMethod="pad" x1="445.5512" x2="558.8508" y1="458.1855" y2="458.1855"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_23_" node-id="141" spreadMethod="pad" x1="458.1" x2="546.3019" y1="458.1855" y2="458.1855"><stop offset="0" stop-color="#dde5f0"></stop><stop offset="1" stop-color="#9fb7ce"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_24_" node-id="145" spreadMethod="pad" x1="341.4109" x2="470.7164" y1="296.3963" y2="296.3963"><stop offset="0.1453" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d8e3ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_25_" node-id="149" spreadMethod="pad" x1="341.4109" x2="470.7164" y1="348.1242" y2="348.1242"><stop offset="0.1453" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d8e3ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_26_" node-id="153" spreadMethod="pad" x1="341.4109" x2="437.3798" y1="399.8521" y2="399.8521"><stop offset="0.1453" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d8e3ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_27_" node-id="157" spreadMethod="pad" x1="472.7579" x2="529.8228" y1="459.9113" y2="459.9113"><stop offset="0.1453" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d8e3ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_28_" node-id="162" spreadMethod="pad" x1="283.1011" x2="251.8786" y1="562.3826" y2="453.4967"><stop offset="0.2949" stop-color="#ffffff"></stop><stop offset="0.9362" stop-color="#d6e1ed"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_29_" node-id="168" spreadMethod="pad" x1="245.6395" x2="245.6395" y1="487.7712" y2="471.1535"><stop offset="0.3408" stop-color="#f4ae7f"></stop><stop offset="1" stop-color="#ffbe92"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_30_" node-id="176" spreadMethod="pad" x1="258.9152" x2="237.8207" y1="578.4083" y2="520.4515"><stop offset="0" stop-color="#78c8ff"></stop><stop offset="0.6903" stop-color="#2a80e2"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_31_" node-id="181" spreadMethod="pad" x1="245.5532" x2="245.5532" y1="528.1408" y2="484.8606"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient></defs><g node-id="557"><g node-id="561"><path d="M 271.24 330.01 L 271.24 326.60 L 241.74 326.60 L 241.74 330.56 L 235.26 330.56 L 235.26 423.39 L 278.31 423.39 L 278.31 330.01 L 271.24 330.01 Z M 274.59 412.75 L 238.55 412.75 L 238.55 410.00 L 274.59 410.00 L 274.59 412.75 Z M 274.59 400.07 L 238.55 400.07 L 238.55 397.32 L 274.59 397.32 L 274.59 400.07 Z M 274.59 387.39 L 238.55 387.39 L 238.55 384.64 L 274.59 384.64 L 274.59 387.39 Z M 274.59 375.05 L 238.55 375.05 L 238.55 372.30 L 274.59 372.30 L 274.59 375.05 Z M 274.59 362.74 L 238.55 362.74 L 238.55 359.99 L 274.59 359.99 L 274.59 362.74 Z M 274.59 350.06 L 238.55 350.06 L 238.55 347.31 L 274.59 347.31 L 274.59 350.06 Z M 274.59 337.72 L 238.55 337.72 L 238.55 334.97 L 274.59 334.97 L 274.59 337.72 Z" fill="url(#SVGID_1_)" fill-rule="nonzero" group-id="39,43" node-id="420" stroke="none" target-height="96.79001" target-width="43.05002" target-x="235.25998" target-y="326.6"></path><path d="M 213.26 381.82 L 213.26 273.64 L 180.51 273.64 L 180.51 264.90 L 166.65 264.90 L 166.65 318.23 L 162.92 318.23 L 162.92 481.39 L 221.43 481.39 L 221.43 381.83 L 213.26 381.83 Z M 188.76 413.63 L 180.50 413.63 L 180.50 405.62 L 188.76 405.62 L 188.76 413.63 Z M 188.76 401.10 L 180.50 401.10 L 180.50 393.09 L 188.76 393.09 L 188.76 401.10 Z M 188.76 388.63 L 180.50 388.63 L 180.50 380.62 L 188.76 380.62 L 188.76 388.63 Z M 188.76 376.19 L 180.50 376.19 L 180.50 368.18 L 188.76 368.18 L 188.76 376.19 Z M 188.76 363.66 L 180.50 363.66 L 180.50 355.65 L 188.76 355.65 L 188.76 363.66 Z M 188.76 338.66 L 180.50 338.66 L 180.50 330.65 L 188.76 330.65 L 188.76 338.66 Z M 188.76 326.13 L 180.50 326.13 L 180.50 318.12 L 188.76 318.12 L 188.76 326.13 Z M 188.76 313.65 L 180.50 313.65 L 180.50 305.64 L 188.76 305.64 L 188.76 313.65 Z M 188.76 301.22 L 180.50 301.22 L 180.50 293.21 L 188.76 293.21 L 188.76 301.22 Z M 188.76 288.69 L 180.50 288.69 L 180.50 280.68 L 188.76 280.68 L 188.76 288.69 Z M 201.12 413.63 L 192.86 413.63 L 192.86 405.62 L 201.12 405.62 L 201.12 413.63 Z M 201.12 401.10 L 192.86 401.10 L 192.86 393.09 L 201.12 393.09 L 201.12 401.10 Z M 201.12 388.63 L 192.86 388.63 L 192.86 380.62 L 201.12 380.62 L 201.12 388.63 Z M 201.12 376.19 L 192.86 376.19 L 192.86 368.18 L 201.12 368.18 L 201.12 376.19 Z M 201.12 363.66 L 192.86 363.66 L 192.86 355.65 L 201.12 355.65 L 201.12 363.66 Z M 201.12 338.66 L 192.86 338.66 L 192.86 330.65 L 201.12 330.65 L 201.12 338.66 Z M 201.12 326.13 L 192.86 326.13 L 192.86 318.12 L 201.12 318.12 L 201.12 326.13 Z M 201.12 313.65 L 192.86 313.65 L 192.86 305.64 L 201.12 305.64 L 201.12 313.65 Z M 201.12 301.22 L 192.86 301.22 L 192.86 293.21 L 201.12 293.21 L 201.12 301.22 Z M 201.12 288.69 L 192.86 288.69 L 192.86 280.68 L 201.12 280.68 L 201.12 288.69 Z" fill="url(#SVGID_2_)" fill-rule="nonzero" group-id="39,43" node-id="422" stroke="none" target-height="216.49002" target-width="58.509995" target-x="162.92" target-y="264.9"></path><path d="M 535.57 438.71 C 535.93 434.06 535.57 282.23 535.57 282.23 L 554.10 282.23 L 554.10 315.94 L 583.60 315.94 L 583.60 386.39 L 600.33 386.39 L 600.33 438.71 L 535.57 438.71 Z" fill="url(#SVGID_3_)" fill-rule="nonzero" group-id="39,43" node-id="424" stroke="none" target-height="156.47998" target-width="64.76001" target-x="535.57" target-y="282.23"></path><path d="M 656.79 370.56 L 656.79 365.71 L 651.79 365.71 L 651.79 323.38 L 639.59 323.38 L 639.59 318.68 L 631.36 318.68 L 631.36 311.77 L 627.07 311.77 L 627.07 291.63 L 623.98 291.63 L 623.98 311.91 L 620.04 311.91 L 620.04 318.82 L 607.84 318.82 L 607.84 330.14 L 600.79 330.14 L 600.79 461.37 L 660.17 461.37 L 660.17 370.55 L 656.79 370.55 Z M 611.27 423.34 L 607.25 423.34 L 607.25 408.10 L 611.27 408.10 L 611.27 423.34 Z M 611.27 404.69 L 607.25 404.69 L 607.25 389.45 L 611.27 389.45 L 611.27 404.69 Z M 611.27 386.04 L 607.25 386.04 L 607.25 370.80 L 611.27 370.80 L 611.27 386.04 Z M 611.27 367.06 L 607.25 367.06 L 607.25 351.82 L 611.27 351.82 L 611.27 367.06 Z M 611.27 348.07 L 607.25 348.07 L 607.25 332.83 L 611.27 332.83 L 611.27 348.07 Z M 619.55 423.34 L 615.53 423.34 L 615.53 408.10 L 619.55 408.10 L 619.55 423.34 Z M 619.55 404.69 L 615.53 404.69 L 615.53 389.45 L 619.55 389.45 L 619.55 404.69 Z M 619.55 386.04 L 615.53 386.04 L 615.53 370.80 L 619.55 370.80 L 619.55 386.04 Z M 619.55 367.06 L 615.53 367.06 L 615.53 351.82 L 619.55 351.82 L 619.55 367.06 Z M 619.55 348.07 L 615.53 348.07 L 615.53 332.83 L 619.55 332.83 L 619.55 348.07 Z M 627.83 423.34 L 623.81 423.34 L 623.81 408.10 L 627.83 408.10 L 627.83 423.34 Z M 627.83 404.69 L 623.81 404.69 L 623.81 389.45 L 627.83 389.45 L 627.83 404.69 Z M 627.83 386.04 L 623.81 386.04 L 623.81 370.80 L 627.83 370.80 L 627.83 386.04 Z M 627.83 367.06 L 623.81 367.06 L 623.81 351.82 L 627.83 351.82 L 627.83 367.06 Z M 627.83 348.07 L 623.81 348.07 L 623.81 332.83 L 627.83 332.83 L 627.83 348.07 Z M 636.11 423.34 L 632.09 423.34 L 632.09 408.10 L 636.11 408.10 L 636.11 423.34 Z M 636.11 404.69 L 632.09 404.69 L 632.09 389.45 L 636.11 389.45 L 636.11 404.69 Z M 636.11 386.04 L 632.09 386.04 L 632.09 370.80 L 636.11 370.80 L 636.11 386.04 Z M 636.11 367.06 L 632.09 367.06 L 632.09 351.82 L 636.11 351.82 L 636.11 367.06 Z M 636.11 348.07 L 632.09 348.07 L 632.09 332.83 L 636.11 332.83 L 636.11 348.07 Z M 644.39 423.34 L 640.37 423.34 L 640.37 408.10 L 644.39 408.10 L 644.39 423.34 Z M 644.39 404.69 L 640.37 404.69 L 640.37 389.45 L 644.39 389.45 L 644.39 404.69 Z M 644.39 386.04 L 640.37 386.04 L 640.37 370.80 L 644.39 370.80 L 644.39 386.04 Z M 644.39 367.06 L 640.37 367.06 L 640.37 351.82 L 644.39 351.82 L 644.39 367.06 Z M 644.39 348.07 L 640.37 348.07 L 640.37 332.83 L 644.39 332.83 L 644.39 348.07 Z" fill="url(#SVGID_4_)" fill-rule="nonzero" group-id="39,43" node-id="426" stroke="none" target-height="169.73999" target-width="59.380005" target-x="600.79" target-y="291.63"></path><path d="M 95.14 503.45 L 95.14 413.91 L 105.39 413.91 L 105.39 368.21 L 140.66 352.94 L 140.66 413.19 L 148.39 413.19 L 148.39 503.45 Z" fill="url(#SVGID_5_)" fill-rule="nonzero" group-id="39,43" node-id="428" stroke="none" target-height="150.51001" target-width="53.249992" target-x="95.14001" target-y="352.94"></path><path d="M 699.91 486.85 L 668.97 486.85 L 668.97 363.72 L 699.91 378.69 Z" fill="url(#SVGID_6_)" fill-rule="nonzero" group-id="39,43" node-id="430" stroke="none" target-height="123.129974" target-width="30.940002" target-x="668.97" target-y="363.72"></path><path d="M 89.96 190.04 C 89.96 190.04 99.30 164.56 122.26 174.56 C 127.56 169.18 134.12 165.27 142.99 167.03 C 151.86 168.79 157.58 175.44 159.52 179.86 C 162.30 179.73 184.56 180.47 184.56 203.56 C 184.56 226.65 157.62 226.21 155.67 224.38 C 153.27 226.52 141.73 238.13 127.73 224.88 C 124.70 227.47 114.80 238.44 99.15 223.30 C 91.90 226.33 74.67 228.66 71.33 210.87 C 67.98 193.09 85.12 188.06 89.96 190.04 Z" fill="url(#SVGID_7_)" fill-rule="nonzero" group-id="39,43" node-id="432" stroke="none" target-height="73.880005" target-width="116.579994" target-x="67.98" target-y="164.56"></path><path d="M 607.03 153.22 C 607.03 153.22 616.37 127.74 639.33 137.74 C 644.63 132.36 651.19 128.45 660.06 130.21 C 668.93 131.97 674.65 138.62 676.59 143.04 C 679.37 142.91 701.63 143.65 701.63 166.74 C 701.63 189.83 674.69 189.39 672.74 187.56 C 670.34 189.70 658.80 201.31 644.80 188.06 C 641.77 190.65 631.87 201.62 616.22 186.48 C 608.97 189.51 591.74 191.84 588.40 174.05 C 585.05 156.27 602.19 151.24 607.03 153.22 Z" fill="url(#SVGID_8_)" fill-rule="nonzero" group-id="39,43" node-id="434" stroke="none" target-height="73.88" target-width="116.579956" target-x="585.05" target-y="127.74"></path><path d="M 487.69 207.74 C 487.69 207.74 494.45 189.29 511.07 196.54 C 514.91 192.64 519.65 189.81 526.08 191.09 C 532.51 192.37 536.64 197.18 538.04 200.37 C 540.05 200.28 556.17 200.81 556.17 217.52 C 556.17 234.23 536.67 233.91 535.26 232.59 C 533.52 234.14 525.17 242.54 515.03 232.96 C 512.84 234.83 505.67 242.78 494.35 231.82 C 489.10 234.01 476.63 235.70 474.21 222.82 C 471.78 209.95 484.19 206.31 487.69 207.74 Z" fill="url(#SVGID_9_)" fill-rule="nonzero" group-id="39,43" node-id="436" stroke="none" target-height="53.49002" target-width="84.390015" target-x="471.77997" target-y="189.28998"></path><path d="M 772.22 576.96 C 772.22 623.65 733.13 668.44 663.56 701.45 C 593.99 734.47 499.63 753.02 401.24 753.02 C 302.85 753.02 208.49 734.47 138.92 701.45 C 69.35 668.44 30.26 623.65 30.26 576.96 C 30.26 530.27 69.35 485.48 138.92 452.47 C 208.49 419.45 302.85 400.90 401.24 400.90 C 499.63 400.90 593.99 419.45 663.56 452.47 C 733.13 485.48 772.22 530.27 772.22 576.96 Z" fill="url(#SVGID_10_)" fill-rule="nonzero" group-id="39,43" node-id="438" stroke="none" target-height="352.12" target-width="741.96" target-x="30.259977" target-y="400.90002"></path></g><g node-id="562"><g node-id="565"><path d="M 147.19 555.43 C 147.19 555.43 143.66 560.44 149.56 567.90 C 154.82 574.54 163.13 573.25 165.89 571.12 C 166.74 576.90 173.83 589.08 185.05 582.19 C 195.60 575.72 190.52 565.88 187.15 562.01 C 193.74 560.15 198.65 544.36 183.53 538.91 C 185.77 532.39 186.17 529.44 182.89 523.58 C 179.73 517.94 174.54 517.04 166.26 520.47 L 154.28 525.52 L 146.65 511.28 L 142.57 513.64 L 151.37 527.24 L 139.71 533.09 C 139.71 533.09 129.74 536.99 134.04 547.69 C 138.03 557.60 147.19 555.43 147.19 555.43 Z" fill="url(#SVGID_11_)" fill-rule="nonzero" group-id="39,44,47" node-id="444" stroke="none" target-height="77.80002" target-width="68.90999" target-x="129.74" target-y="511.28"></path><path d="M 126.89 494.71 L 162.95 494.71 C 162.95 494.71 174.60 495.04 176.92 481.73 C 179.47 467.12 168.84 465.11 168.84 465.11 C 168.84 465.11 175.24 462.17 173.85 451.12 C 172.46 440.07 162.73 438.68 158.68 439.19 C 159.34 432.64 160.72 417.81 145.32 417.66 C 130.45 417.51 130.54 432.48 131.65 438.38 C 126.35 438.44 110.34 446.39 121.60 463.83 C 115.47 469.08 112.88 472.11 113.15 479.68 C 113.42 487.26 118.06 494.71 126.89 494.71 Z" fill="url(#SVGID_12_)" fill-rule="nonzero" group-id="39,44,47" node-id="446" stroke="none" target-height="77.53003" target-width="69.130005" target-x="110.34" target-y="417.50998"></path><path d="M 162.07 474.48 L 146.69 484.60 L 146.27 474.81 L 155.99 463.35 L 146.12 471.33 L 144.84 441.43 L 143.90 471.53 L 133.52 463.27 L 143.80 474.59 L 143.48 484.66 L 127.67 473.04 L 143.37 488.30 L 142.57 513.65 L 147.93 513.65 L 146.85 488.45 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="39,44,47" node-id="448" stroke="none" target-height="72.22006" target-width="34.40001" target-x="127.67" target-y="441.42996"></path></g><g node-id="566"><path d="M 669.61 537.12 C 669.61 537.12 666.36 541.74 671.79 548.60 C 676.63 554.72 684.29 553.53 686.83 551.56 C 687.61 556.88 694.15 568.09 704.48 561.76 C 714.19 555.80 709.52 546.74 706.41 543.18 C 712.48 541.47 717.00 526.92 703.08 521.91 C 705.15 515.91 705.52 513.19 702.49 507.80 C 699.58 502.61 694.80 501.77 687.18 504.94 L 676.14 509.59 L 669.11 496.48 L 665.36 498.65 L 673.46 511.17 L 662.73 516.56 C 662.73 516.56 653.55 520.15 657.51 530.01 C 661.18 539.13 669.61 537.12 669.61 537.12 Z" fill="url(#SVGID_13_)" fill-rule="nonzero" group-id="39,44,48" node-id="453" stroke="none" target-height="71.610016" target-width="63.450012" target-x="653.55" target-y="496.48"></path><path d="M 650.92 481.21 L 684.12 481.21 C 684.12 481.21 694.85 481.52 696.98 469.26 C 699.32 455.81 689.54 453.96 689.54 453.96 C 689.54 453.96 695.44 451.25 694.15 441.08 C 692.86 430.91 683.91 429.62 680.18 430.10 C 680.79 424.07 682.06 410.41 667.88 410.27 C 654.19 410.13 654.27 423.91 655.29 429.35 C 650.41 429.40 635.66 436.72 646.04 452.79 C 640.40 457.62 638.01 460.42 638.26 467.38 C 638.52 474.35 642.79 481.21 650.92 481.21 Z" fill="url(#SVGID_14_)" fill-rule="nonzero" group-id="39,44,48" node-id="455" stroke="none" target-height="71.38995" target-width="63.660034" target-x="635.66" target-y="410.13004"></path><path d="M 683.31 462.58 L 669.15 471.89 L 668.76 462.88 L 677.72 452.33 L 668.63 459.68 L 667.45 432.14 L 666.58 459.86 L 657.02 452.25 L 666.49 462.68 L 666.20 471.96 L 651.63 461.25 L 666.09 475.30 L 665.36 498.65 L 670.29 498.65 L 669.30 475.44 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="39,44,48" node-id="457" stroke="none" target-height="66.50998" target-width="31.679993" target-x="651.63" target-y="432.14"></path></g><g node-id="567"><path d="M 230.12 446.92 C 230.12 446.92 228.37 449.40 231.29 453.09 C 233.89 456.38 238.00 455.74 239.37 454.68 C 239.79 457.54 243.30 463.56 248.85 460.16 C 254.07 456.96 251.56 452.09 249.89 450.18 C 253.15 449.26 255.58 441.45 248.10 438.76 C 249.21 435.54 249.41 434.08 247.78 431.18 C 246.22 428.39 243.65 427.94 239.56 429.64 L 233.63 432.14 L 229.86 425.10 L 227.84 426.27 L 232.19 432.99 L 226.42 435.88 C 226.42 435.88 221.49 437.81 223.62 443.10 C 225.59 448.00 230.12 446.92 230.12 446.92 Z" fill="url(#SVGID_15_)" fill-rule="nonzero" group-id="39,44,49" node-id="462" stroke="none" target-height="38.45999" target-width="34.089996" target-x="221.49" target-y="425.1"></path><path d="M 220.08 416.89 L 237.91 416.89 C 237.91 416.89 243.67 417.05 244.82 410.47 C 246.08 403.24 240.82 402.25 240.82 402.25 C 240.82 402.25 243.99 400.79 243.30 395.33 C 242.61 389.87 237.80 389.18 235.80 389.43 C 236.13 386.19 236.81 378.85 229.19 378.78 C 221.83 378.71 221.88 386.11 222.43 389.03 C 219.81 389.06 211.89 392.99 217.46 401.62 C 214.43 404.21 213.14 405.72 213.28 409.46 C 213.42 413.20 215.71 416.89 220.08 416.89 Z" fill="url(#SVGID_16_)" fill-rule="nonzero" group-id="39,44,49" node-id="464" stroke="none" target-height="38.339996" target-width="34.190018" target-x="211.88998" target-y="378.70996"></path><path d="M 237.48 406.88 L 229.87 411.89 L 229.67 407.05 L 234.48 401.38 L 229.59 405.33 L 228.96 390.54 L 228.49 405.42 L 223.36 401.34 L 228.45 406.94 L 228.29 411.92 L 220.47 406.17 L 228.23 413.72 L 227.84 426.26 L 230.49 426.26 L 229.96 413.79 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="39,44,49" node-id="466" stroke="none" target-height="35.72003" target-width="17.009995" target-x="220.47" target-y="390.54"></path></g></g><g node-id="563"><path d="M 323.85 465.40 L 300.27 481.21 L 437.38 704.57 L 724.45 614.18 L 546.30 475.79 L 506.15 445.74 Z" fill="url(#SVGID_17_)" fill-rule="nonzero" group-id="39,45" node-id="472" stroke="none" target-height="258.83002" target-width="424.18002" target-x="300.27" target-y="445.74"></path><path d="M 489.28 493.13 L 322.83 493.13 C 307.74 493.13 295.51 480.90 295.51 465.81 L 295.51 264.96 C 295.51 249.87 307.74 237.64 322.83 237.64 L 489.28 237.64 C 504.37 237.64 516.60 249.87 516.60 264.96 L 516.60 465.82 C 516.60 480.90 504.37 493.13 489.28 493.13 Z" fill="url(#SVGID_18_)" fill-rule="nonzero" group-id="39,45" node-id="474" stroke="none" target-height="255.48999" target-width="221.08997" target-x="295.51" target-y="237.64001"></path><path d="M 486.39 475.79 L 325.72 475.79 C 318.74 475.79 313.08 470.13 313.08 463.15 L 313.08 267.62 C 313.08 260.64 318.74 254.98 325.72 254.98 L 486.39 254.98 C 493.37 254.98 499.03 260.64 499.03 267.62 L 499.03 463.16 C 499.03 470.13 493.37 475.79 486.39 475.79 Z" fill="url(#SVGID_19_)" fill-rule="nonzero" group-id="39,45" node-id="476" stroke="none" target-height="220.81001" target-width="185.95004" target-x="313.08" target-y="254.98"></path><path d="M 458.02 221.85 L 429.35 221.85 C 427.18 221.85 425.35 220.33 424.85 218.22 C 422.83 209.70 415.18 203.36 406.05 203.36 C 396.91 203.36 389.26 209.70 387.25 218.22 C 386.75 220.33 384.92 221.85 382.75 221.85 L 354.08 221.85 C 350.32 221.85 347.28 224.90 347.28 228.65 L 347.28 256.38 C 347.28 260.14 350.32 263.18 354.08 263.18 L 458.01 263.18 C 461.77 263.18 464.81 260.14 464.81 256.38 L 464.81 228.65 C 464.82 224.90 461.78 221.85 458.02 221.85 Z M 406.06 232.58 C 400.33 232.58 395.68 227.93 395.68 222.20 C 395.68 216.47 400.33 211.82 406.06 211.82 C 411.79 211.82 416.44 216.47 416.44 222.20 C 416.44 227.93 411.79 232.58 406.06 232.58 Z" fill="url(#SVGID_20_)" fill-rule="nonzero" group-id="39,45" node-id="478" stroke="none" target-height="59.819977" target-width="117.53998" target-x="347.28003" target-y="203.36002"></path><path d="M 558.85 458.19 C 558.85 473.21 552.88 487.62 542.26 498.25 C 531.63 508.87 517.22 514.84 502.20 514.84 C 470.91 514.84 445.55 489.48 445.55 458.19 C 445.55 426.90 470.91 401.54 502.20 401.54 C 533.49 401.54 558.85 426.90 558.85 458.19 Z" fill="url(#SVGID_21_)" fill-rule="nonzero" group-id="39,45" node-id="480" stroke="none" target-height="113.30002" target-width="113.30002" target-x="445.55002" target-y="401.54"></path><path d="M 558.85 458.19 C 558.85 473.21 552.88 487.62 542.26 498.25 C 531.63 508.87 517.22 514.84 502.20 514.84 C 470.91 514.84 445.55 489.48 445.55 458.19 C 445.55 426.90 470.91 401.54 502.20 401.54 C 533.49 401.54 558.85 426.90 558.85 458.19 Z" fill="url(#SVGID_22_)" fill-rule="nonzero" group-id="39,45" node-id="482" stroke="none" target-height="113.30002" target-width="113.30002" target-x="445.55002" target-y="401.54"></path><path d="M 546.30 458.19 C 546.30 482.55 526.56 502.29 502.20 502.29 C 477.84 502.29 458.10 482.55 458.10 458.19 C 458.10 433.83 477.84 414.09 502.20 414.09 C 526.56 414.09 546.30 433.83 546.30 458.19 Z" fill="url(#SVGID_23_)" fill-rule="nonzero" group-id="39,45" node-id="484" stroke="none" target-height="88.20001" target-width="88.19998" target-x="458.1" target-y="414.09"></path><path d="M 341.41 286.80 L 470.72 286.80 L 470.72 305.99 L 341.41 305.99 Z" fill="url(#SVGID_24_)" fill-rule="nonzero" group-id="39,45" node-id="486" stroke="none" target-height="19.190002" target-width="129.31003" target-x="341.41" target-y="286.8"></path><path d="M 341.41 338.53 L 470.72 338.53 L 470.72 357.72 L 341.41 357.72 Z" fill="url(#SVGID_25_)" fill-rule="nonzero" group-id="39,45" node-id="488" stroke="none" target-height="19.189972" target-width="129.31003" target-x="341.41" target-y="338.53"></path><path d="M 341.41 390.26 L 437.38 390.26 L 437.38 409.45 L 341.41 409.45 Z" fill="url(#SVGID_26_)" fill-rule="nonzero" group-id="39,45" node-id="490" stroke="none" target-height="19.190002" target-width="95.97" target-x="341.41" target-y="390.26"></path><path d="M 495.28 481.12 C 492.84 481.12 490.52 480.23 488.69 478.58 C 488.58 478.48 488.48 478.39 488.38 478.28 L 474.28 463.47 C 472.17 461.25 472.26 457.75 474.47 455.64 C 476.68 453.53 480.19 453.62 482.30 455.83 L 495.26 469.44 L 520.08 440.62 C 522.08 438.30 525.57 438.04 527.89 440.04 C 530.21 442.04 530.47 445.53 528.47 447.85 L 502.78 477.68 C 501.03 479.71 498.60 480.92 495.92 481.09 C 495.71 481.11 495.50 481.12 495.28 481.12 Z" fill="url(#SVGID_27_)" fill-rule="nonzero" group-id="39,45" node-id="492" stroke="none" target-height="43.079987" target-width="58.299957" target-x="472.17" target-y="438.04"></path></g><g node-id="564"><path d="M 260.04 580.90 L 319.72 687.49 L 277.44 692.16 L 237.96 586.65 L 245.30 585.54 L 266.23 622.42 L 253.28 586.75 Z" fill="url(#SVGID_28_)" fill-rule="nonzero" group-id="39,46" node-id="497" stroke="none" target-height="111.25989" target-width="81.759995" target-x="237.96" target-y="580.9"></path><path d="M 240.56 513.01 C 240.56 513.01 239.12 511.04 237.76 511.11 C 234.62 511.28 223.53 505.09 222.77 503.41 C 222.01 501.73 234.20 499.54 234.04 498.90 C 232.41 497.65 232.63 491.07 232.63 491.07 C 232.63 491.07 210.77 498.87 214.98 505.05 C 217.56 508.84 229.20 512.35 233.67 514.20 C 235.04 514.59 235.57 515.44 235.85 516.00 C 236.13 516.56 238.33 519.73 241.50 519.02 C 243.42 518.60 240.53 516.03 240.00 515.75 C 239.48 515.47 237.65 513.78 239.77 513.65 C 240.61 513.73 240.98 513.48 240.56 513.01 Z" fill="#ffbe92" fill-rule="nonzero" group-id="39,46" node-id="499" stroke="none" target-height="28.659973" target-width="32.649994" target-x="210.77" target-y="491.07"></path><path d="M 245.64 467.22 C 245.64 467.22 246.70 465.87 248.20 466.02 C 249.81 466.18 249.39 467.20 250.49 467.43 C 251.60 467.66 252.29 467.58 251.99 469.69 C 251.82 470.86 251.96 470.85 252.27 471.40 C 252.46 471.73 253.79 472.85 252.89 474.30 C 252.00 475.71 251.75 475.19 251.98 476.54 C 252.20 477.89 251.69 479.08 250.88 479.49 C 250.09 479.89 250.29 480.62 250.44 481.04 C 250.58 481.45 250.14 482.78 248.80 482.30 C 247.46 481.82 246.27 481.65 245.22 482.11 C 244.17 482.57 239.81 482.84 240.74 480.94 C 241.59 479.20 240.41 478.85 239.61 478.07 C 238.81 477.29 238.18 475.95 238.59 474.63 C 238.83 473.86 239.17 473.04 238.22 471.89 C 237.24 470.70 238.92 467.48 240.03 467.60 C 241.14 467.73 242.66 464.64 245.64 467.22 Z" fill="#171c61" fill-rule="nonzero" group-id="39,46" node-id="501" stroke="none" target-height="18.199982" target-width="16.550003" target-x="237.24" target-y="464.64"></path><path d="M 242.23 472.65 C 241.24 473.68 241.33 473.44 241.10 474.07 C 239.57 473.25 239.50 477.60 240.78 477.71 C 241.14 480.00 242.12 480.64 242.69 481.19 C 243.06 482.45 242.18 487.77 242.18 487.77 L 248.75 487.77 L 248.39 481.04 C 248.39 481.04 249.87 480.57 250.18 477.90 C 251.40 478.04 252.09 473.27 250.42 474.43 C 250.47 473.17 248.55 472.85 248.30 471.40 C 248.27 471.22 248.11 471.10 247.96 471.17 C 247.28 471.47 246.14 472.27 244.98 472.24 C 244.03 472.21 242.90 471.94 242.23 472.65 Z" fill="url(#SVGID_29_)" fill-rule="nonzero" group-id="39,46" node-id="503" stroke="none" target-height="16.669983" target-width="12.589996" target-x="239.5" target-y="471.1"></path><path d="M 258.09 576.99 C 258.04 577.28 257.89 577.55 257.67 577.75 C 257.22 578.17 257.00 578.77 255.87 578.63 C 254.17 578.41 253.83 577.88 253.47 576.87 C 252.75 578.37 253.73 579.91 253.40 582.04 C 253.07 584.17 252.32 587.60 255.51 589.26 C 258.70 590.92 261.17 587.28 261.05 584.44 C 260.93 581.60 258.48 578.32 258.71 577.11 C 258.76 576.26 258.38 575.58 258.38 575.58 C 258.38 575.58 258.19 576.44 258.09 576.99 Z" fill="#f8b62d" fill-rule="nonzero" group-id="39,46" node-id="505" stroke="none" target-height="15.339966" target-width="8.850006" target-x="252.32" target-y="575.58"></path><path d="M 260.61 582.28 C 260.61 582.28 261.52 586.40 259.38 588.04 C 258.80 588.54 255.79 590.01 253.52 587.20 C 253.72 587.73 254.56 589.55 256.54 589.99 C 257.43 590.06 259.25 590.08 260.64 587.90 C 262.02 585.71 260.61 582.28 260.61 582.28 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="39,46" node-id="507" stroke="none" target-height="7.799988" target-width="8.5" target-x="253.51999" target-y="582.28"></path><path d="M 239.13 577.25 C 239.18 577.54 239.33 577.81 239.55 578.01 C 240.00 578.43 240.22 579.03 241.35 578.89 C 243.05 578.67 243.39 578.14 243.75 577.13 C 244.47 578.63 244.49 580.17 244.82 582.30 C 245.14 584.43 246.90 587.86 243.71 589.52 C 240.52 591.18 237.66 587.22 237.78 584.38 C 237.90 581.54 238.74 578.58 238.51 577.38 C 238.46 576.53 238.84 575.85 238.84 575.85 C 238.84 575.85 239.03 576.70 239.13 577.25 Z" fill="#f8b62d" fill-rule="nonzero" group-id="39,46" node-id="509" stroke="none" target-height="15.330017" target-width="9.23999" target-x="237.66" target-y="575.85"></path><path d="M 237.93 582.53 C 237.93 582.53 237.84 586.75 239.84 588.29 C 240.42 588.79 243.08 590.57 245.36 587.75 C 245.14 588.22 244.66 589.80 242.68 590.24 C 241.79 590.31 239.97 590.33 238.58 588.15 C 237.19 585.97 237.93 582.53 237.93 582.53 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="39,46" node-id="511" stroke="none" target-height="8.039978" target-width="8.169998" target-x="237.19" target-y="582.53"></path><path d="M 236.95 520.77 C 236.95 520.77 234.35 527.05 235.04 537.96 C 235.63 547.20 238.01 569.63 238.73 577.50 C 238.85 578.77 239.91 579.74 241.19 579.74 L 241.61 579.74 C 242.90 579.74 243.97 578.75 244.07 577.47 L 247.71 535.78 L 253.28 577.52 C 253.43 578.79 254.41 579.30 255.69 579.30 L 255.92 579.25 C 257.25 579.25 258.22 578.71 258.31 577.39 C 259.05 566.45 261.86 524.89 257.59 520.77 L 236.95 520.77 Z" fill="url(#SVGID_30_)" fill-rule="nonzero" group-id="39,46" node-id="513" stroke="none" target-height="58.96997" target-width="27.509995" target-x="234.34999" target-y="520.77"></path><path d="M 294.65 492.32 C 294.22 490.50 293.44 489.53 292.62 489.56 C 292.61 489.56 292.61 489.55 292.60 489.55 C 292.17 489.42 291.23 489.87 290.38 490.31 C 290.41 490.21 290.45 490.12 290.48 490.05 C 290.77 489.48 291.65 486.73 290.32 486.53 C 289.92 486.47 289.77 487.01 289.34 488.45 C 288.84 490.11 287.46 491.36 287.17 492.87 C 286.88 494.39 275.47 498.15 272.54 499.56 C 270.63 499.18 261.82 491.39 261.82 491.39 C 261.82 491.39 260.88 493.83 259.48 498.67 C 264.55 502.86 270.71 506.23 273.28 505.85 C 275.86 505.47 285.48 499.03 286.53 498.31 C 287.46 497.68 287.68 497.71 288.34 497.50 C 288.34 497.50 288.34 497.50 288.34 497.50 C 290.62 497.23 293.25 496.03 293.25 496.03 C 293.77 495.94 295.20 494.68 294.65 492.32 Z" fill="#ffbe92" fill-rule="nonzero" group-id="39,46" node-id="515" stroke="none" target-height="19.76001" target-width="35.72" target-x="259.48" target-y="486.47"></path><path d="M 267.38 494.78 L 262.64 502.63 C 262.64 502.63 261.08 501.66 259.53 500.90 C 259.62 502.02 259.64 502.46 259.75 504.60 C 259.87 506.74 263.09 525.87 259.68 527.14 C 256.27 528.41 236.71 528.29 234.11 527.77 C 231.51 527.25 232.55 511.43 233.13 505.60 C 233.53 501.75 233.29 500.65 233.29 500.65 L 227.08 502.47 L 223.73 493.21 C 223.73 493.21 226.98 491.07 231.72 488.58 C 233.40 487.49 236.05 484.86 242.52 484.96 C 242.75 485.78 243.36 487.28 245.57 487.35 C 247.00 487.39 248.38 486.50 248.62 484.86 C 249.17 485.09 252.58 484.94 257.40 486.17 C 262.06 487.35 264.06 491.65 267.38 494.78 Z" fill="url(#SVGID_31_)" fill-rule="nonzero" group-id="39,46" node-id="517" stroke="none" target-height="43.549988" target-width="43.65001" target-x="223.73" target-y="484.86"></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="168"><linearGradient gradientUnits="objectBoundingBox" id="SVGID_1_" node-id="9" spreadMethod="pad" x1="256.1458" x2="256.1458" y1="428.6516" y2="331.8633"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_2_" node-id="13" spreadMethod="pad" x1="191.5289" x2="191.5289" y1="486.6435" y2="270.1544"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_3_" node-id="17" spreadMethod="pad" x1="567.3105" x2="567.3105" y1="443.9646" y2="287.4838"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_4_" node-id="21" spreadMethod="pad" x1="629.8353" x2="629.8353" y1="466.6346" y2="296.894"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_5_" node-id="25" spreadMethod="pad" x1="121.1228" x2="121.1228" y1="508.7131" y2="358.1997"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_6_" node-id="29" spreadMethod="pad" x1="683.7959" x2="683.7959" y1="492.1077" y2="368.9754"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_7_" node-id="33" spreadMethod="pad" x1="127.0864" x2="127.0864" y1="236.4058" y2="171.8645"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_8_" node-id="37" spreadMethod="pad" x1="644.1548" x2="644.1548" y1="199.5854" y2="135.0441"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_9_" node-id="41" spreadMethod="pad" x1="514.3839" x2="514.3839" y1="242.7588" y2="196.0416"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_10_" node-id="45" spreadMethod="pad" x1="400.6012" x2="400.6012" y1="758.2836" y2="406.1548"><stop offset="0.4065" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dae4ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_11_" node-id="51" spreadMethod="pad" x1="191.5308" x2="140.0945" y1="581.7394" y2="520.4402"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_12_" node-id="55" spreadMethod="pad" x1="112.483" x2="176.6698" y1="461.4491" y2="461.4491"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_13_" node-id="61" spreadMethod="pad" x1="710.3929" x2="663.0275" y1="561.7669" y2="505.319"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_14_" node-id="65" spreadMethod="pad" x1="637.6011" x2="696.7081" y1="450.9966" y2="450.9966"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_15_" node-id="71" spreadMethod="pad" x1="251.7303" x2="226.289" y1="462.5961" y2="432.2764"><stop offset="0.0000001438503" stop-color="#eaeff6"></stop><stop offset="1" stop-color="#cddae9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_16_" node-id="75" spreadMethod="pad" x1="212.6318" x2="244.3798" y1="403.0984" y2="403.0984"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_17_" node-id="81" spreadMethod="pad" x1="529.7545" x2="468.7463" y1="685.7957" y2="458.1103"><stop offset="0.0938" stop-color="#ffffff"></stop><stop offset="1" stop-color="#bbcbe0"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_18_" node-id="85" spreadMethod="pad" x1="496.0797" x2="288.1534" y1="250.9345" y2="250.9345"><stop offset="0.0000005754013" stop-color="#dfe7f1"></stop><stop offset="1" stop-color="#afc4db"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_19_" node-id="89" spreadMethod="pad" x1="522.3669" x2="306.3021" y1="237.9666" y2="477.9308"><stop offset="0.0000005754013" stop-color="#eff3f9"></stop><stop offset="0.8631" stop-color="#becfe2"></stop><stop offset="1" stop-color="#9fb7ce"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_20_" node-id="94" spreadMethod="pad" x1="298.0162" x2="356.8063" y1="417.8605" y2="392.9056"><stop offset="0.0172" stop-color="#a7bed3"></stop><stop offset="0.3871" stop-color="#e7edf5"></stop><stop offset="0.6716" stop-color="#dfe7f1"></stop><stop offset="0.933" stop-color="#cad8e8"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_21_" node-id="112" spreadMethod="pad" x1="318.9774" x2="318.9774" y1="514.7993" y2="450.6568"><stop offset="0" stop-color="#4ea2f4"></stop><stop offset="0.6903" stop-color="#1e77cf"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_22_" node-id="116" spreadMethod="pad" x1="307.3958" x2="307.3958" y1="509.6771" y2="455.5446"><stop offset="0" stop-color="#78c8ff"></stop><stop offset="0.6903" stop-color="#2a80e2"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_23_" node-id="124" spreadMethod="pad" x1="323.6617" x2="286.0098" y1="442.6867" y2="442.6867"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient></defs><g node-id="425"><g node-id="464"><path d="M 270.60 335.27 L 270.60 331.86 L 241.10 331.86 L 241.10 335.82 L 234.62 335.82 L 234.62 428.65 L 277.67 428.65 L 277.67 335.27 L 270.60 335.27 Z M 273.94 418.01 L 237.90 418.01 L 237.90 415.26 L 273.94 415.26 L 273.94 418.01 Z M 273.94 405.33 L 237.90 405.33 L 237.90 402.58 L 273.94 402.58 L 273.94 405.33 Z M 273.94 392.65 L 237.90 392.65 L 237.90 389.90 L 273.94 389.90 L 273.94 392.65 Z M 273.94 380.31 L 237.90 380.31 L 237.90 377.56 L 273.94 377.56 L 273.94 380.31 Z M 273.94 368.00 L 237.90 368.00 L 237.90 365.25 L 273.94 365.25 L 273.94 368.00 Z M 273.94 355.32 L 237.90 355.32 L 237.90 352.57 L 273.94 352.57 L 273.94 355.32 Z M 273.94 342.98 L 237.90 342.98 L 237.90 340.23 L 273.94 340.23 L 273.94 342.98 Z" fill="url(#SVGID_1_)" fill-rule="nonzero" group-id="4,43" node-id="320" stroke="none" target-height="96.79001" target-width="43.050034" target-x="234.61998" target-y="331.86"></path><path d="M 212.62 387.08 L 212.62 278.90 L 179.87 278.90 L 179.87 270.16 L 166.00 270.16 L 166.00 323.49 L 162.27 323.49 L 162.27 486.65 L 220.78 486.65 L 220.78 387.09 L 212.62 387.09 Z M 188.12 418.89 L 179.86 418.89 L 179.86 410.88 L 188.12 410.88 L 188.12 418.89 Z M 188.12 406.36 L 179.86 406.36 L 179.86 398.35 L 188.12 398.35 L 188.12 406.36 Z M 188.12 393.89 L 179.86 393.89 L 179.86 385.88 L 188.12 385.88 L 188.12 393.89 Z M 188.12 381.45 L 179.86 381.45 L 179.86 373.44 L 188.12 373.44 L 188.12 381.45 Z M 188.12 368.92 L 179.86 368.92 L 179.86 360.91 L 188.12 360.91 L 188.12 368.92 Z M 188.12 343.92 L 179.86 343.92 L 179.86 335.91 L 188.12 335.91 L 188.12 343.92 Z M 188.12 331.39 L 179.86 331.39 L 179.86 323.38 L 188.12 323.38 L 188.12 331.39 Z M 188.12 318.91 L 179.86 318.91 L 179.86 310.90 L 188.12 310.90 L 188.12 318.91 Z M 188.12 306.48 L 179.86 306.48 L 179.86 298.47 L 188.12 298.47 L 188.12 306.48 Z M 188.12 293.94 L 179.86 293.94 L 179.86 285.93 L 188.12 285.93 L 188.12 293.94 Z M 200.47 418.89 L 192.21 418.89 L 192.21 410.88 L 200.47 410.88 L 200.47 418.89 Z M 200.47 406.36 L 192.21 406.36 L 192.21 398.35 L 200.47 398.35 L 200.47 406.36 Z M 200.47 393.89 L 192.21 393.89 L 192.21 385.88 L 200.47 385.88 L 200.47 393.89 Z M 200.47 381.45 L 192.21 381.45 L 192.21 373.44 L 200.47 373.44 L 200.47 381.45 Z M 200.47 368.92 L 192.21 368.92 L 192.21 360.91 L 200.47 360.91 L 200.47 368.92 Z M 200.47 343.92 L 192.21 343.92 L 192.21 335.91 L 200.47 335.91 L 200.47 343.92 Z M 200.47 331.39 L 192.21 331.39 L 192.21 323.38 L 200.47 323.38 L 200.47 331.39 Z M 200.47 318.91 L 192.21 318.91 L 192.21 310.90 L 200.47 310.90 L 200.47 318.91 Z M 200.47 306.48 L 192.21 306.48 L 192.21 298.47 L 200.47 298.47 L 200.47 306.48 Z M 200.47 293.94 L 192.21 293.94 L 192.21 285.93 L 200.47 285.93 L 200.47 293.94 Z" fill="url(#SVGID_2_)" fill-rule="nonzero" group-id="4,43" node-id="322" stroke="none" target-height="216.48999" target-width="58.50998" target-x="162.27" target-y="270.16"></path><path d="M 534.93 443.96 C 535.29 439.31 534.93 287.48 534.93 287.48 L 553.46 287.48 L 553.46 321.19 L 582.96 321.19 L 582.96 391.64 L 599.69 391.64 L 599.69 443.96 L 534.93 443.96 Z" fill="url(#SVGID_3_)" fill-rule="nonzero" group-id="4,43" node-id="324" stroke="none" target-height="156.47998" target-width="64.76001" target-x="534.93" target-y="287.48"></path><path d="M 656.14 375.82 L 656.14 370.97 L 651.14 370.97 L 651.14 328.64 L 638.94 328.64 L 638.94 323.94 L 630.71 323.94 L 630.71 317.03 L 626.42 317.03 L 626.42 296.89 L 623.33 296.89 L 623.33 317.17 L 619.39 317.17 L 619.39 324.08 L 607.19 324.08 L 607.19 335.40 L 600.14 335.40 L 600.14 466.63 L 659.52 466.63 L 659.52 375.81 L 656.14 375.81 Z M 610.63 428.60 L 606.61 428.60 L 606.61 413.36 L 610.63 413.36 L 610.63 428.60 Z M 610.63 409.95 L 606.61 409.95 L 606.61 394.71 L 610.63 394.71 L 610.63 409.95 Z M 610.63 391.30 L 606.61 391.30 L 606.61 376.06 L 610.63 376.06 L 610.63 391.30 Z M 610.63 372.32 L 606.61 372.32 L 606.61 357.08 L 610.63 357.08 L 610.63 372.32 Z M 610.63 353.33 L 606.61 353.33 L 606.61 338.10 L 610.63 338.10 L 610.63 353.33 Z M 618.91 428.60 L 614.89 428.60 L 614.89 413.36 L 618.91 413.36 L 618.91 428.60 Z M 618.91 409.95 L 614.89 409.95 L 614.89 394.71 L 618.91 394.71 L 618.91 409.95 Z M 618.91 391.30 L 614.89 391.30 L 614.89 376.06 L 618.91 376.06 L 618.91 391.30 Z M 618.91 372.32 L 614.89 372.32 L 614.89 357.08 L 618.91 357.08 L 618.91 372.32 Z M 618.91 353.33 L 614.89 353.33 L 614.89 338.10 L 618.91 338.10 L 618.91 353.33 Z M 627.19 428.60 L 623.17 428.60 L 623.17 413.36 L 627.19 413.36 L 627.19 428.60 Z M 627.19 409.95 L 623.17 409.95 L 623.17 394.71 L 627.19 394.71 L 627.19 409.95 Z M 627.19 391.30 L 623.17 391.30 L 623.17 376.06 L 627.19 376.06 L 627.19 391.30 Z M 627.19 372.32 L 623.17 372.32 L 623.17 357.08 L 627.19 357.08 L 627.19 372.32 Z M 627.19 353.33 L 623.17 353.33 L 623.17 338.10 L 627.19 338.10 L 627.19 353.33 Z M 635.47 428.60 L 631.45 428.60 L 631.45 413.36 L 635.47 413.36 L 635.47 428.60 Z M 635.47 409.95 L 631.45 409.95 L 631.45 394.71 L 635.47 394.71 L 635.47 409.95 Z M 635.47 391.30 L 631.45 391.30 L 631.45 376.06 L 635.47 376.06 L 635.47 391.30 Z M 635.47 372.32 L 631.45 372.32 L 631.45 357.08 L 635.47 357.08 L 635.47 372.32 Z M 635.47 353.33 L 631.45 353.33 L 631.45 338.10 L 635.47 338.10 L 635.47 353.33 Z M 643.75 428.60 L 639.73 428.60 L 639.73 413.36 L 643.75 413.36 L 643.75 428.60 Z M 643.75 409.95 L 639.73 409.95 L 639.73 394.71 L 643.75 394.71 L 643.75 409.95 Z M 643.75 391.30 L 639.73 391.30 L 639.73 376.06 L 643.75 376.06 L 643.75 391.30 Z M 643.75 372.32 L 639.73 372.32 L 639.73 357.08 L 643.75 357.08 L 643.75 372.32 Z M 643.75 353.33 L 639.73 353.33 L 639.73 338.10 L 643.75 338.10 L 643.75 353.33 Z" fill="url(#SVGID_4_)" fill-rule="nonzero" group-id="4,43" node-id="326" stroke="none" target-height="169.73999" target-width="59.380005" target-x="600.14" target-y="296.89"></path><path d="M 94.50 508.71 L 94.50 419.17 L 104.75 419.17 L 104.75 373.47 L 140.01 358.20 L 140.01 418.45 L 147.75 418.45 L 147.75 508.71 Z" fill="url(#SVGID_5_)" fill-rule="nonzero" group-id="4,43" node-id="328" stroke="none" target-height="150.51004" target-width="53.249992" target-x="94.50001" target-y="358.19998"></path><path d="M 699.27 492.11 L 668.33 492.11 L 668.33 368.98 L 699.27 383.95 Z" fill="url(#SVGID_6_)" fill-rule="nonzero" group-id="4,43" node-id="330" stroke="none" target-height="123.129974" target-width="30.940002" target-x="668.33" target-y="368.98"></path><path d="M 89.32 195.30 C 89.32 195.30 98.66 169.82 121.62 179.82 C 126.92 174.44 133.48 170.53 142.35 172.29 C 151.22 174.06 156.94 180.70 158.88 185.12 C 161.66 184.99 183.92 185.73 183.92 208.82 C 183.92 231.91 156.98 231.47 155.03 229.64 C 152.63 231.78 141.09 243.39 127.09 230.14 C 124.06 232.73 114.16 243.70 98.51 228.56 C 91.26 231.59 74.03 233.92 70.69 216.13 C 67.35 198.34 84.48 193.32 89.32 195.30 Z" fill="url(#SVGID_7_)" fill-rule="nonzero" group-id="4,43" node-id="332" stroke="none" target-height="73.87999" target-width="116.57" target-x="67.35" target-y="169.82"></path><path d="M 606.38 158.48 C 606.38 158.48 615.72 133.00 638.68 143.00 C 643.98 137.62 650.54 133.71 659.41 135.47 C 668.28 137.24 674.00 143.88 675.94 148.30 C 678.72 148.17 700.98 148.91 700.98 172.00 C 700.98 195.09 674.04 194.65 672.09 192.82 C 669.69 194.96 658.15 206.57 644.15 193.32 C 641.12 195.91 631.22 206.88 615.57 191.74 C 608.32 194.77 591.09 197.10 587.75 179.31 C 584.41 161.53 601.55 156.50 606.38 158.48 Z" fill="url(#SVGID_8_)" fill-rule="nonzero" group-id="4,43" node-id="334" stroke="none" target-height="73.880005" target-width="116.57007" target-x="584.41" target-y="133"></path><path d="M 487.04 213.00 C 487.04 213.00 493.80 194.55 510.42 201.80 C 514.26 197.90 519.00 195.07 525.43 196.35 C 531.85 197.63 535.99 202.44 537.39 205.63 C 539.40 205.54 555.52 206.07 555.52 222.78 C 555.52 239.49 536.02 239.17 534.61 237.85 C 532.87 239.40 524.52 247.80 514.38 238.22 C 512.19 240.09 505.02 248.04 493.70 237.08 C 488.45 239.27 475.98 240.96 473.56 228.08 C 471.14 215.20 483.54 211.57 487.04 213.00 Z" fill="url(#SVGID_9_)" fill-rule="nonzero" group-id="4,43" node-id="336" stroke="none" target-height="53.48999" target-width="84.380005" target-x="471.14" target-y="194.55"></path><path d="M 771.58 582.22 C 771.58 628.91 732.49 673.70 662.92 706.71 C 593.35 739.73 498.99 758.28 400.60 758.28 C 302.21 758.28 207.85 739.73 138.28 706.71 C 68.71 673.70 29.62 628.91 29.62 582.22 C 29.62 535.53 68.71 490.74 138.28 457.73 C 207.85 424.71 302.21 406.16 400.60 406.16 C 498.99 406.16 593.35 424.71 662.92 457.73 C 732.49 490.74 771.58 535.53 771.58 582.22 Z" fill="url(#SVGID_10_)" fill-rule="nonzero" group-id="4,43" node-id="338" stroke="none" target-height="352.12" target-width="741.95996" target-x="29.619997" target-y="406.15997"></path></g><g node-id="465"><g node-id="468"><path d="M 146.55 560.69 C 146.55 560.69 143.02 565.70 148.92 573.16 C 154.18 579.80 162.49 578.51 165.25 576.38 C 166.10 582.16 173.19 594.34 184.41 587.45 C 194.96 580.98 189.88 571.14 186.51 567.27 C 193.10 565.41 198.01 549.62 182.89 544.17 C 185.13 537.65 185.53 534.70 182.25 528.84 C 179.09 523.20 173.90 522.30 165.62 525.73 L 153.64 530.78 L 146.01 516.54 L 141.93 518.90 L 150.73 532.50 L 139.07 538.35 C 139.07 538.35 129.10 542.25 133.40 552.95 C 137.39 562.86 146.55 560.69 146.55 560.69 Z" fill="url(#SVGID_11_)" fill-rule="nonzero" group-id="4,44,47" node-id="344" stroke="none" target-height="77.80005" target-width="68.90999" target-x="129.1" target-y="516.54"></path><path d="M 126.25 499.97 L 162.31 499.97 C 162.31 499.97 173.96 500.30 176.28 486.99 C 178.83 472.38 168.20 470.37 168.20 470.37 C 168.20 470.37 174.60 467.43 173.21 456.38 C 171.82 445.33 162.09 443.94 158.04 444.45 C 158.70 437.90 160.08 423.07 144.68 422.92 C 129.81 422.77 129.90 437.74 131.01 443.64 C 125.71 443.70 109.70 451.65 120.96 469.09 C 114.83 474.34 112.24 477.37 112.51 484.94 C 112.78 492.52 117.42 499.97 126.25 499.97 Z" fill="url(#SVGID_12_)" fill-rule="nonzero" group-id="4,44,47" node-id="346" stroke="none" target-height="77.53" target-width="69.130005" target-x="109.7" target-y="422.77"></path><path d="M 161.42 479.73 L 146.04 489.85 L 145.63 480.07 L 155.35 468.61 L 145.48 476.59 L 144.20 446.69 L 143.25 476.79 L 132.88 468.53 L 143.16 479.85 L 142.84 489.92 L 127.02 478.30 L 142.73 493.56 L 141.93 518.91 L 147.29 518.91 L 146.21 493.71 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="4,44,47" node-id="348" stroke="none" target-height="72.21997" target-width="34.399994" target-x="127.020004" target-y="446.69"></path></g><g node-id="469"><path d="M 668.97 542.38 C 668.97 542.38 665.72 547.00 671.15 553.86 C 675.99 559.98 683.65 558.79 686.19 556.82 C 686.97 562.14 693.51 573.35 703.84 567.02 C 713.55 561.06 708.88 552.00 705.77 548.44 C 711.84 546.73 716.36 532.18 702.44 527.17 C 704.51 521.17 704.88 518.45 701.85 513.06 C 698.94 507.87 694.16 507.03 686.54 510.20 L 675.50 514.85 L 668.47 501.74 L 664.72 503.91 L 672.82 516.43 L 662.09 521.82 C 662.09 521.82 652.91 525.41 656.87 535.27 C 660.54 544.38 668.97 542.38 668.97 542.38 Z" fill="url(#SVGID_13_)" fill-rule="nonzero" group-id="4,44,48" node-id="353" stroke="none" target-height="71.610016" target-width="63.450012" target-x="652.91" target-y="501.73996"></path><path d="M 650.28 486.47 L 683.48 486.47 C 683.48 486.47 694.21 486.78 696.34 474.52 C 698.68 461.07 688.90 459.22 688.90 459.22 C 688.90 459.22 694.80 456.51 693.51 446.34 C 692.22 436.17 683.27 434.88 679.54 435.36 C 680.15 429.33 681.42 415.67 667.24 415.53 C 653.55 415.39 653.63 429.17 654.65 434.61 C 649.77 434.66 635.02 441.98 645.40 458.05 C 639.76 462.88 637.37 465.68 637.62 472.64 C 637.87 479.61 642.14 486.47 650.28 486.47 Z" fill="url(#SVGID_14_)" fill-rule="nonzero" group-id="4,44,48" node-id="355" stroke="none" target-height="71.389984" target-width="63.660034" target-x="635.02" target-y="415.39"></path><path d="M 682.67 467.83 L 668.51 477.15 L 668.12 468.14 L 677.08 457.59 L 667.98 464.94 L 666.80 437.40 L 665.94 465.12 L 656.38 457.51 L 665.85 467.94 L 665.56 477.22 L 650.99 466.51 L 665.45 480.56 L 664.72 503.91 L 669.65 503.91 L 668.66 480.70 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="4,44,48" node-id="357" stroke="none" target-height="66.51001" target-width="31.679993" target-x="650.99" target-y="437.4"></path></g><g node-id="470"><path d="M 229.48 452.18 C 229.48 452.18 227.73 454.66 230.65 458.35 C 233.25 461.64 237.36 461.00 238.73 459.94 C 239.15 462.80 242.66 468.82 248.21 465.42 C 253.43 462.22 250.92 457.35 249.25 455.44 C 252.51 454.52 254.94 446.71 247.46 444.02 C 248.57 440.80 248.77 439.34 247.14 436.44 C 245.58 433.65 243.01 433.20 238.92 434.90 L 232.99 437.40 L 229.22 430.36 L 227.20 431.53 L 231.55 438.25 L 225.78 441.14 C 225.78 441.14 220.85 443.07 222.98 448.36 C 224.95 453.26 229.48 452.18 229.48 452.18 Z" fill="url(#SVGID_15_)" fill-rule="nonzero" group-id="4,44,49" node-id="362" stroke="none" target-height="38.45999" target-width="34.089996" target-x="220.85" target-y="430.36002"></path><path d="M 219.44 422.15 L 237.27 422.15 C 237.27 422.15 243.03 422.31 244.18 415.73 C 245.44 408.50 240.18 407.51 240.18 407.51 C 240.18 407.51 243.35 406.05 242.66 400.59 C 241.97 395.13 237.16 394.44 235.16 394.69 C 235.49 391.45 236.17 384.11 228.55 384.04 C 221.19 383.97 221.24 391.37 221.79 394.29 C 219.17 394.32 211.25 398.25 216.82 406.88 C 213.79 409.47 212.50 410.98 212.64 414.72 C 212.78 418.46 215.07 422.15 219.44 422.15 Z" fill="url(#SVGID_16_)" fill-rule="nonzero" group-id="4,44,49" node-id="364" stroke="none" target-height="38.339966" target-width="34.190018" target-x="211.24998" target-y="383.97003"></path><path d="M 236.84 412.14 L 229.23 417.15 L 229.02 412.31 L 233.83 406.64 L 228.95 410.59 L 228.32 395.80 L 227.85 410.68 L 222.72 406.60 L 227.80 412.20 L 227.65 417.18 L 219.82 411.43 L 227.59 418.98 L 227.20 431.52 L 229.85 431.52 L 229.31 419.05 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="4,44,49" node-id="366" stroke="none" target-height="35.72" target-width="17.019989" target-x="219.82" target-y="395.8"></path></g></g><g node-id="466"><path d="M 527.72 490.75 L 324.39 496.79 L 332.19 515.28 L 329.25 520.34 L 346.21 542.56 L 309.39 515.06 L 294.06 517.00 L 427.74 704.47 L 707.47 638.18 Z" fill="url(#SVGID_17_)" fill-rule="nonzero" group-id="4,45" node-id="371" stroke="none" target-height="213.71997" target-width="413.40997" target-x="294.06" target-y="490.75"></path><path d="M 301.92 294.56 L 288.15 239.12 L 485.60 207.35 C 491.22 206.81 496.08 211.23 496.08 216.87 L 496.08 277.31 L 301.92 294.56 Z" fill="url(#SVGID_18_)" fill-rule="nonzero" group-id="4,45" node-id="373" stroke="none" target-height="87.750015" target-width="207.93" target-x="288.15" target-y="206.80998"></path><path d="M 529.20 299.07 L 529.20 248.16 C 529.20 243.15 525.14 239.08 520.12 239.08 L 287.99 239.08 C 282.98 239.08 278.91 243.14 278.91 248.16 L 278.91 299.08 C 283.78 299.13 287.72 303.09 287.72 307.98 C 287.72 312.87 283.78 316.83 278.91 316.88 L 278.91 330.44 L 330.42 499.67 L 330.63 499.67 L 520.12 499.67 C 525.13 499.67 529.20 495.61 529.20 490.59 L 529.20 316.89 C 524.28 316.89 520.30 312.91 520.30 307.99 C 520.30 303.05 524.28 299.07 529.20 299.07 Z" fill="url(#SVGID_19_)" fill-rule="nonzero" group-id="4,45" node-id="375" stroke="none" target-height="260.59003" target-width="250.29001" target-x="278.91" target-y="239.08"></path><path d="M 278.91 330.42 L 330.42 499.65 L 374.77 456.32 C 378.51 452.66 378.64 446.69 375.06 442.87 L 278.91 330.42 Z" fill="url(#SVGID_20_)" fill-rule="nonzero" group-id="4,45" node-id="377" stroke="none" target-height="169.22998" target-width="99.73001" target-x="278.91" target-y="330.42"></path><g node-id="471"><g node-id="472"><path d="M 298.80 309.13 L 302.80 309.13" fill="none" group-id="4,45,50,51" node-id="383" stroke="#f7f8f8" stroke-linecap="round" stroke-width="5" target-height="0" target-width="4" target-x="298.8" target-y="309.13"></path><path d="M 314.32 309.13 L 500.55 309.18" fill="none" group-id="4,45,50,51" node-id="385" stroke="#f7f8f8" stroke-dasharray="7.6796 11.5194" stroke-linecap="round" stroke-width="5" target-height="0.049987793" target-width="186.22998" target-x="314.32" target-y="309.13"></path><path d="M 506.31 309.18 L 510.31 309.18" fill="none" group-id="4,45,50,51" node-id="387" stroke="#f7f8f8" stroke-linecap="round" stroke-width="5" target-height="0" target-width="4" target-x="506.31" target-y="309.18"></path></g></g><path d="M 377.75 371.42 C 377.75 356.73 390.11 344.93 405.00 345.85 C 417.76 346.64 428.14 357.03 428.93 369.78 C 429.62 380.93 423.18 390.66 413.74 394.85 C 407.49 397.62 403.36 403.72 403.36 410.56 L 403.36 422.66" fill="none" group-id="4,45" node-id="391" stroke="#f7f8f8" stroke-linecap="round" stroke-width="10" target-height="77.73004" target-width="51.869965" target-x="377.75" target-y="344.92996"></path><path d="M 409.65 441.93 C 409.65 443.51 409.02 445.02 407.91 446.13 C 406.80 447.24 405.29 447.87 403.71 447.87 C 402.13 447.87 400.62 447.24 399.51 446.13 C 398.40 445.02 397.77 443.51 397.77 441.93 C 397.77 440.35 398.40 438.84 399.51 437.73 C 400.62 436.62 402.13 435.99 403.71 435.99 C 405.29 435.99 406.80 436.62 407.91 437.73 C 409.02 438.84 409.65 440.35 409.65 441.93 Z" fill="#f7f8f8" fill-rule="nonzero" group-id="4,45" node-id="393" stroke="none" target-height="11.880005" target-width="11.880035" target-x="397.77" target-y="435.99"></path></g><g node-id="467"><path d="M 303.59 510.10 C 303.59 510.10 304.30 510.86 302.89 514.07 C 305.71 514.67 309.13 513.14 309.13 513.14 L 308.33 508.17 L 303.59 510.10 Z" fill="#ffbe92" fill-rule="nonzero" group-id="4,46" node-id="398" stroke="none" target-height="6.5" target-width="6.23999" target-x="302.89" target-y="508.16998"></path><path d="M 309.96 516.86 L 294.12 516.06 C 294.12 516.06 293.55 511.27 299.78 511.78 C 301.04 511.88 302.15 510.52 303.19 510.61 C 305.46 512.88 309.60 512.73 309.60 512.73 L 309.96 516.86 Z" fill="#f8b62d" fill-rule="nonzero" group-id="4,46" node-id="400" stroke="none" target-height="6.3399963" target-width="16.410004" target-x="293.55" target-y="510.52"></path><path d="M 310.23 517.91 L 303.22 518.18 L 303.03 516.89 L 294.05 517.02 L 293.92 515.93 L 310.05 515.55 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="4,46" node-id="402" stroke="none" target-height="2.630005" target-width="16.309998" target-x="293.92" target-y="515.55"></path><path d="M 329.09 515.99 C 329.09 515.99 329.58 517.36 329.40 518.06 C 329.22 518.76 328.92 520.12 330.89 520.03 C 332.86 519.94 334.99 519.54 335.38 519.46 C 335.77 519.39 335.47 518.03 335.80 517.22 C 336.13 516.41 337.70 513.62 337.73 513.29 C 337.78 512.73 337.68 511.00 336.02 510.63 C 334.36 510.26 332.89 511.93 332.22 512.63 C 331.55 513.33 329.09 515.99 329.09 515.99 Z" fill="#f8b62d" fill-rule="nonzero" group-id="4,46" node-id="404" stroke="none" target-height="9.859985" target-width="8.859985" target-x="328.92" target-y="510.26"></path><path d="M 320.32 452.80 C 320.53 452.81 325.21 456.80 325.45 468.25 C 326.27 475.65 326.05 479.99 327.57 485.40 C 329.04 490.62 333.51 508.05 334.35 515.80 C 330.53 517.81 329.33 516.52 329.33 516.52 C 329.33 516.52 320.69 493.00 318.60 488.41 C 316.51 483.82 311.62 475.05 303.81 468.96 C 302.13 460.02 312.03 452.45 320.32 452.80 Z" fill="url(#SVGID_21_)" fill-rule="nonzero" group-id="4,46" node-id="406" stroke="none" target-height="65.359985" target-width="32.22" target-x="302.13" target-y="452.45"></path><path d="M 315.37 458.17 C 315.37 458.17 321.69 464.31 314.53 474.10 C 307.37 483.88 305.27 487.07 306.12 490.03 C 306.97 492.98 308.70 507.52 309.19 511.28 C 307.53 511.64 306.41 511.42 303.67 511.34 C 302.42 508.43 298.76 496.46 297.95 492.12 C 297.14 487.78 296.34 484.78 297.23 480.80 C 298.12 476.82 301.49 463.32 301.49 463.32 C 301.49 463.32 305.99 454.70 315.37 458.17 Z" fill="url(#SVGID_22_)" fill-rule="nonzero" group-id="4,46" node-id="408" stroke="none" target-height="56.939972" target-width="25.350006" target-x="296.34" target-y="454.70004"></path><path d="M 293.42 406.66 C 293.42 406.66 296.74 408.76 297.42 410.32 C 298.10 411.88 298.86 415.56 298.51 417.61 C 298.08 419.20 296.72 418.83 297.62 423.05 C 295.61 426.22 292.08 428.40 292.08 428.40 L 289.79 416.83 C 289.79 416.83 287.65 408.72 288.37 408.10 C 289.09 407.48 293.42 406.66 293.42 406.66 Z" fill="#ffbe92" fill-rule="nonzero" group-id="4,46" node-id="410" stroke="none" target-height="21.73999" target-width="11.209991" target-x="287.65" target-y="406.66"></path><path d="M 289.56 406.56 C 289.56 406.56 289.89 404.41 291.08 405.04 C 292.27 405.67 292.98 405.95 293.83 405.38 C 294.68 404.81 296.60 404.28 296.58 406.15 C 296.56 408.02 297.41 408.44 297.69 408.64 C 297.97 408.84 298.91 409.48 298.22 410.78 C 297.53 412.08 296.70 412.21 297.33 413.23 C 297.95 414.25 298.03 416.00 297.31 416.41 C 296.60 416.82 297.25 417.52 297.55 417.61 C 297.86 417.70 298.04 418.80 296.75 418.85 C 295.46 418.90 294.15 419.28 293.40 420.00 C 292.66 420.73 289.22 421.77 289.47 420.35 C 289.76 418.67 288.57 418.73 287.65 418.36 C 286.73 417.99 285.46 417.40 285.38 416.18 C 285.34 415.48 285.96 413.44 284.79 412.82 C 283.58 412.18 283.96 409.00 284.93 408.73 C 285.90 408.46 286.20 405.45 289.56 406.56 Z" fill="#171c61" fill-rule="nonzero" group-id="4,46" node-id="412" stroke="none" target-height="17.48999" target-width="15.330017" target-x="283.58" target-y="404.28"></path><path d="M 314.25 417.70 C 314.25 417.70 318.05 417.41 318.72 417.21 C 319.23 417.05 316.24 412.89 315.66 412.47 C 315.08 412.05 315.04 412.00 313.83 411.93 C 311.35 411.80 309.42 409.90 308.93 408.38 C 308.74 407.87 309.57 407.87 310.65 408.66 C 311.07 408.97 311.63 408.77 310.61 408.10 C 309.08 407.10 306.02 403.06 311.69 403.43 C 314.23 403.76 315.34 405.18 316.22 406.32 C 317.10 407.46 316.96 407.94 318.67 409.77 C 320.56 411.78 324.57 415.03 325.76 417.20 C 326.95 419.37 325.33 421.61 318.08 423.48 C 310.12 424.22 314.25 417.70 314.25 417.70 Z" fill="#ffbe92" fill-rule="nonzero" group-id="4,46" node-id="414" stroke="none" target-height="21.160034" target-width="20.930023" target-x="306.02" target-y="403.06"></path><path d="M 288.91 443.04 C 288.91 443.04 291.86 450.11 293.12 451.99 C 294.37 453.87 295.00 455.12 298.22 455.70 C 301.44 456.28 297.86 439.42 297.86 439.42 L 289.76 440.49 L 288.91 443.04 Z" fill="#ffbe92" fill-rule="nonzero" group-id="4,46" node-id="416" stroke="none" target-height="16.859955" target-width="12.529999" target-x="288.91" target-y="439.42"></path><path d="M 286.32 434.04 C 286.32 434.04 287.79 430.38 290.55 426.90 C 290.83 424.71 294.79 418.05 299.42 419.63 C 302.40 418.32 304.31 417.01 309.95 416.98 C 314.87 416.80 315.53 417.04 315.53 417.04 L 317.65 424.17 L 312.01 425.99 C 312.01 425.99 316.39 441.71 322.72 452.03 C 323.44 453.16 324.90 455.47 321.65 458.56 C 318.41 461.65 311.74 463.70 301.54 468.18 C 298.77 469.43 297.02 466.26 297.78 462.23 C 298.54 458.20 295.27 446.36 292.83 442.84 C 289.91 444.33 287.96 445.20 287.96 445.20 C 287.96 445.20 285.08 437.62 286.32 434.04 Z" fill="url(#SVGID_23_)" fill-rule="nonzero" group-id="4,46" node-id="418" stroke="none" target-height="52.630005" target-width="39.820007" target-x="285.08" target-y="416.8"></path><path d="M 337.56 511.98 C 337.56 511.98 337.40 514.07 336.70 514.88 C 336.00 515.69 335.34 518.04 334.93 518.59 C 334.51 519.14 333.30 519.75 332.01 519.74 C 330.72 519.73 329.83 519.35 329.25 518.79 C 329.12 519.54 329.22 520.15 329.26 520.34 C 329.27 520.39 329.29 520.42 329.32 520.46 C 329.59 520.72 331.00 521.85 334.24 520.79 C 334.60 520.69 335.44 520.36 335.73 519.66 C 336.08 518.83 336.22 518.09 336.22 518.09 L 336.21 517.09 C 336.21 517.09 336.41 516.12 336.79 515.68 C 337.17 515.24 338.01 513.59 337.83 512.62 C 337.63 512.14 337.56 511.98 337.56 511.98 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="4,46" node-id="420" stroke="none" target-height="9.869965" target-width="8.890015" target-x="329.12" target-y="511.98"></path></g></g></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg height="800" node-id="1" sillyvg="true" template-height="800" template-width="800" version="1.1" viewBox="0 0 800 800" width="800" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs node-id="199"><linearGradient gradientUnits="objectBoundingBox" id="SVGID_1_" node-id="6" spreadMethod="pad" x1="256.1428" x2="256.1428" y1="427.0489" y2="330.2607"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_2_" node-id="10" spreadMethod="pad" x1="191.5258" x2="191.5258" y1="485.0408" y2="268.5518"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_3_" node-id="14" spreadMethod="pad" x1="567.3074" x2="567.3074" y1="442.3619" y2="285.8811"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_4_" node-id="18" spreadMethod="pad" x1="629.8322" x2="629.8322" y1="465.0319" y2="295.2913"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_5_" node-id="22" spreadMethod="pad" x1="121.1197" x2="121.1197" y1="507.1104" y2="356.597"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_6_" node-id="26" spreadMethod="pad" x1="683.7928" x2="683.7928" y1="490.505" y2="367.3728"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_7_" node-id="30" spreadMethod="pad" x1="127.0833" x2="127.0833" y1="234.8031" y2="170.2619"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_8_" node-id="34" spreadMethod="pad" x1="644.1518" x2="644.1518" y1="197.9827" y2="133.4415"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_9_" node-id="38" spreadMethod="pad" x1="514.3809" x2="514.3809" y1="241.1562" y2="194.4389"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_10_" node-id="42" spreadMethod="pad" x1="400.5981" x2="400.5981" y1="756.681" y2="404.5521"><stop offset="0.4065" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dae4ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_11_" node-id="47" spreadMethod="pad" x1="514.17" x2="476.6381" y1="646.2693" y2="409.3021"><stop offset="0.1468" stop-color="#ffffff"></stop><stop offset="1" stop-color="#bbcbe0"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_12_" node-id="51" spreadMethod="pad" x1="273.527" x2="387.3339" y1="358.7491" y2="358.7491"><stop offset="0.0000005309115" stop-color="#e5ecf3"></stop><stop offset="1" stop-color="#becfe0"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_13_" node-id="55" spreadMethod="pad" x1="387.3339" x2="524.6158" y1="333.3335" y2="333.3335"><stop offset="0" stop-color="#d9e3ed"></stop><stop offset="1" stop-color="#acc2db"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_14_" node-id="59" spreadMethod="pad" x1="253.7835" x2="253.7835" y1="377.7169" y2="313.0197"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="0.9705" stop-color="#9cb6d2"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_15_" node-id="63" spreadMethod="pad" x1="273.527" x2="407.8041" y1="404.4785" y2="404.4785"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_16_" node-id="67" spreadMethod="pad" x1="381.4455" x2="539.3229" y1="464.5241" y2="332.0493"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="0.9705" stop-color="#9cb6d2"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_17_" node-id="71" spreadMethod="pad" x1="407.8041" x2="564.1791" y1="363.7258" y2="363.7258"><stop offset="0" stop-color="#d5e0ee"></stop><stop offset="1" stop-color="#f5f9fa"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_18_" node-id="75" spreadMethod="pad" x1="238.0327" x2="407.8041" y1="365.6977" y2="365.6977"><stop offset="0.0000004424263" stop-color="#f7fafb"></stop><stop offset="1" stop-color="#d5e0ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_19_" node-id="81" spreadMethod="pad" x1="191.5277" x2="140.0915" y1="580.1368" y2="518.8375"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_20_" node-id="85" spreadMethod="pad" x1="112.4799" x2="176.6667" y1="459.8465" y2="459.8465"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_21_" node-id="91" spreadMethod="pad" x1="710.3898" x2="663.0244" y1="560.1642" y2="503.7163"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_22_" node-id="95" spreadMethod="pad" x1="637.5981" x2="696.705" y1="449.394" y2="449.394"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_23_" node-id="101" spreadMethod="pad" x1="251.7272" x2="226.2859" y1="460.9935" y2="430.6737"><stop offset="0.0000001438503" stop-color="#eaeff6"></stop><stop offset="1" stop-color="#cddae9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_24_" node-id="105" spreadMethod="pad" x1="212.6287" x2="244.3767" y1="401.4957" y2="401.4957"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_25_" node-id="113" spreadMethod="pad" x1="478.348" x2="478.348" y1="344.3563" y2="156.6276"><stop offset="0.0000005358273" stop-color="#f3f6f9"></stop><stop offset="1" stop-color="#d0dae8"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_26_" node-id="118" spreadMethod="pad" x1="422.0042" x2="422.0042" y1="342.4409" y2="156.652"><stop offset="0.0000005358273" stop-color="#f3f6f9"></stop><stop offset="1" stop-color="#d0dae8"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_27_" node-id="123" spreadMethod="pad" x1="410.8723" x2="410.8723" y1="344.3387" y2="156.6483"><stop offset="0.0000005358273" stop-color="#f3f6f9"></stop><stop offset="1" stop-color="#d0dae8"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_28_" node-id="127" spreadMethod="pad" x1="464.4846" x2="540.3865" y1="141.2945" y2="141.2945"><stop offset="0" stop-color="#f3f6f9"></stop><stop offset="1" stop-color="#b5c6d8"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_29_" node-id="131" spreadMethod="pad" x1="503.1624" x2="503.1624" y1="163.6749" y2="129.7113"><stop offset="0" stop-color="#d5e0ee"></stop><stop offset="1" stop-color="#f5f9fa"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_30_" node-id="137" spreadMethod="pad" x1="276.1667" x2="351.9331" y1="326.6254" y2="360.3588"><stop offset="0.2247" stop-color="#f1f5f9"></stop><stop offset="1" stop-color="#bbcde1"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_31_" node-id="141" spreadMethod="pad" x1="275.2982" x2="330.1212" y1="332.6706" y2="332.6706"><stop offset="0" stop-color="#61aaf3"></stop><stop offset="0.6903" stop-color="#448be0"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_32_" node-id="147" spreadMethod="pad" x1="282.4514" x2="335.0777" y1="347.1733" y2="326.972"><stop offset="0" stop-color="#78c8ff"></stop><stop offset="0.6903" stop-color="#4d8fe9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_33_" node-id="153" spreadMethod="pad" x1="338.3401" x2="338.3401" y1="336.3351" y2="311.2137"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient></defs><g node-id="513"><g node-id="555"><path d="M 270.60 333.67 L 270.60 330.26 L 241.10 330.26 L 241.10 334.22 L 234.62 334.22 L 234.62 427.05 L 277.67 427.05 L 277.67 333.67 L 270.60 333.67 Z M 273.94 416.40 L 237.90 416.40 L 237.90 413.65 L 273.94 413.65 L 273.94 416.40 Z M 273.94 403.73 L 237.90 403.73 L 237.90 400.98 L 273.94 400.98 L 273.94 403.73 Z M 273.94 391.05 L 237.90 391.05 L 237.90 388.30 L 273.94 388.30 L 273.94 391.05 Z M 273.94 378.71 L 237.90 378.71 L 237.90 375.96 L 273.94 375.96 L 273.94 378.71 Z M 273.94 366.39 L 237.90 366.39 L 237.90 363.64 L 273.94 363.64 L 273.94 366.39 Z M 273.94 353.72 L 237.90 353.72 L 237.90 350.97 L 273.94 350.97 L 273.94 353.72 Z M 273.94 341.38 L 237.90 341.38 L 237.90 338.63 L 273.94 338.63 L 273.94 341.38 Z" fill="url(#SVGID_1_)" fill-rule="nonzero" group-id="1,43" node-id="402" stroke="none" target-height="96.78998" target-width="43.050034" target-x="234.61998" target-y="330.26"></path><path d="M 212.62 385.48 L 212.62 277.29 L 179.87 277.29 L 179.87 268.55 L 166.00 268.55 L 166.00 321.88 L 162.27 321.88 L 162.27 485.04 L 220.78 485.04 L 220.78 385.48 L 212.62 385.48 Z M 188.12 417.29 L 179.86 417.29 L 179.86 409.28 L 188.12 409.28 L 188.12 417.29 Z M 188.12 404.76 L 179.86 404.76 L 179.86 396.75 L 188.12 396.75 L 188.12 404.76 Z M 188.12 392.28 L 179.86 392.28 L 179.86 384.27 L 188.12 384.27 L 188.12 392.28 Z M 188.12 379.85 L 179.86 379.85 L 179.86 371.84 L 188.12 371.84 L 188.12 379.85 Z M 188.12 367.31 L 179.86 367.31 L 179.86 359.30 L 188.12 359.30 L 188.12 367.31 Z M 188.12 342.31 L 179.86 342.31 L 179.86 334.30 L 188.12 334.30 L 188.12 342.31 Z M 188.12 329.78 L 179.86 329.78 L 179.86 321.77 L 188.12 321.77 L 188.12 329.78 Z M 188.12 317.31 L 179.86 317.31 L 179.86 309.30 L 188.12 309.30 L 188.12 317.31 Z M 188.12 304.87 L 179.86 304.87 L 179.86 296.86 L 188.12 296.86 L 188.12 304.87 Z M 188.12 292.34 L 179.86 292.34 L 179.86 284.33 L 188.12 284.33 L 188.12 292.34 Z M 200.47 417.29 L 192.21 417.29 L 192.21 409.28 L 200.47 409.28 L 200.47 417.29 Z M 200.47 404.76 L 192.21 404.76 L 192.21 396.75 L 200.47 396.75 L 200.47 404.76 Z M 200.47 392.28 L 192.21 392.28 L 192.21 384.27 L 200.47 384.27 L 200.47 392.28 Z M 200.47 379.85 L 192.21 379.85 L 192.21 371.84 L 200.47 371.84 L 200.47 379.85 Z M 200.47 367.31 L 192.21 367.31 L 192.21 359.30 L 200.47 359.30 L 200.47 367.31 Z M 200.47 342.31 L 192.21 342.31 L 192.21 334.30 L 200.47 334.30 L 200.47 342.31 Z M 200.47 329.78 L 192.21 329.78 L 192.21 321.77 L 200.47 321.77 L 200.47 329.78 Z M 200.47 317.31 L 192.21 317.31 L 192.21 309.30 L 200.47 309.30 L 200.47 317.31 Z M 200.47 304.87 L 192.21 304.87 L 192.21 296.86 L 200.47 296.86 L 200.47 304.87 Z M 200.47 292.34 L 192.21 292.34 L 192.21 284.33 L 200.47 284.33 L 200.47 292.34 Z" fill="url(#SVGID_2_)" fill-rule="nonzero" group-id="1,43" node-id="404" stroke="none" target-height="216.49002" target-width="58.50998" target-x="162.27" target-y="268.55"></path><path d="M 534.92 442.36 C 535.28 437.71 534.92 285.88 534.92 285.88 L 553.45 285.88 L 553.45 319.59 L 582.95 319.59 L 582.95 390.04 L 599.68 390.04 L 599.68 442.36 L 534.92 442.36 Z" fill="url(#SVGID_3_)" fill-rule="nonzero" group-id="1,43" node-id="406" stroke="none" target-height="156.47998" target-width="64.76001" target-x="534.92" target-y="285.88"></path><path d="M 656.14 374.22 L 656.14 369.37 L 651.14 369.37 L 651.14 327.04 L 638.94 327.04 L 638.94 322.34 L 630.71 322.34 L 630.71 315.43 L 626.42 315.43 L 626.42 295.29 L 623.33 295.29 L 623.33 315.57 L 619.39 315.57 L 619.39 322.48 L 607.19 322.48 L 607.19 333.80 L 600.14 333.80 L 600.14 465.03 L 659.52 465.03 L 659.52 374.21 L 656.14 374.21 Z M 610.63 427.00 L 606.61 427.00 L 606.61 411.76 L 610.63 411.76 L 610.63 427.00 Z M 610.63 408.35 L 606.61 408.35 L 606.61 393.11 L 610.63 393.11 L 610.63 408.35 Z M 610.63 389.70 L 606.61 389.70 L 606.61 374.46 L 610.63 374.46 L 610.63 389.70 Z M 610.63 370.71 L 606.61 370.71 L 606.61 355.47 L 610.63 355.47 L 610.63 370.71 Z M 610.63 351.73 L 606.61 351.73 L 606.61 336.49 L 610.63 336.49 L 610.63 351.73 Z M 618.91 427.00 L 614.89 427.00 L 614.89 411.76 L 618.91 411.76 L 618.91 427.00 Z M 618.91 408.35 L 614.89 408.35 L 614.89 393.11 L 618.91 393.11 L 618.91 408.35 Z M 618.91 389.70 L 614.89 389.70 L 614.89 374.46 L 618.91 374.46 L 618.91 389.70 Z M 618.91 370.71 L 614.89 370.71 L 614.89 355.47 L 618.91 355.47 L 618.91 370.71 Z M 618.91 351.73 L 614.89 351.73 L 614.89 336.49 L 618.91 336.49 L 618.91 351.73 Z M 627.19 427.00 L 623.17 427.00 L 623.17 411.76 L 627.19 411.76 L 627.19 427.00 Z M 627.19 408.35 L 623.17 408.35 L 623.17 393.11 L 627.19 393.11 L 627.19 408.35 Z M 627.19 389.70 L 623.17 389.70 L 623.17 374.46 L 627.19 374.46 L 627.19 389.70 Z M 627.19 370.71 L 623.17 370.71 L 623.17 355.47 L 627.19 355.47 L 627.19 370.71 Z M 627.19 351.73 L 623.17 351.73 L 623.17 336.49 L 627.19 336.49 L 627.19 351.73 Z M 635.47 427.00 L 631.45 427.00 L 631.45 411.76 L 635.47 411.76 L 635.47 427.00 Z M 635.47 408.35 L 631.45 408.35 L 631.45 393.11 L 635.47 393.11 L 635.47 408.35 Z M 635.47 389.70 L 631.45 389.70 L 631.45 374.46 L 635.47 374.46 L 635.47 389.70 Z M 635.47 370.71 L 631.45 370.71 L 631.45 355.47 L 635.47 355.47 L 635.47 370.71 Z M 635.47 351.73 L 631.45 351.73 L 631.45 336.49 L 635.47 336.49 L 635.47 351.73 Z M 643.75 427.00 L 639.73 427.00 L 639.73 411.76 L 643.75 411.76 L 643.75 427.00 Z M 643.75 408.35 L 639.73 408.35 L 639.73 393.11 L 643.75 393.11 L 643.75 408.35 Z M 643.75 389.70 L 639.73 389.70 L 639.73 374.46 L 643.75 374.46 L 643.75 389.70 Z M 643.75 370.71 L 639.73 370.71 L 639.73 355.47 L 643.75 355.47 L 643.75 370.71 Z M 643.75 351.73 L 639.73 351.73 L 639.73 336.49 L 643.75 336.49 L 643.75 351.73 Z" fill="url(#SVGID_4_)" fill-rule="nonzero" group-id="1,43" node-id="408" stroke="none" target-height="169.73996" target-width="59.380005" target-x="600.14" target-y="295.29"></path><path d="M 94.49 507.11 L 94.49 417.57 L 104.75 417.57 L 104.75 371.87 L 140.01 356.60 L 140.01 416.85 L 147.75 416.85 L 147.75 507.11 Z" fill="url(#SVGID_5_)" fill-rule="nonzero" group-id="1,43" node-id="410" stroke="none" target-height="150.50998" target-width="53.260002" target-x="94.49" target-y="356.6"></path><path d="M 699.26 490.51 L 668.32 490.51 L 668.32 367.37 L 699.26 382.34 Z" fill="url(#SVGID_6_)" fill-rule="nonzero" group-id="1,43" node-id="412" stroke="none" target-height="123.140015" target-width="30.940002" target-x="668.32" target-y="367.37"></path><path d="M 89.31 193.69 C 89.31 193.69 98.65 168.21 121.61 178.21 C 126.91 172.83 133.47 168.92 142.34 170.68 C 151.21 172.45 156.93 179.09 158.87 183.51 C 161.65 183.38 183.91 184.12 183.91 207.21 C 183.91 230.30 156.97 229.86 155.02 228.03 C 152.62 230.17 141.08 241.78 127.08 228.53 C 124.05 231.12 114.15 242.09 98.50 226.95 C 91.25 229.98 74.02 232.31 70.68 214.52 C 67.34 196.73 84.48 191.72 89.31 193.69 Z" fill="url(#SVGID_7_)" fill-rule="nonzero" group-id="1,43" node-id="414" stroke="none" target-height="73.880005" target-width="116.57001" target-x="67.34" target-y="168.21"></path><path d="M 606.38 156.87 C 606.38 156.87 615.72 131.39 638.68 141.39 C 643.98 136.01 650.54 132.10 659.41 133.86 C 668.28 135.63 674.00 142.27 675.94 146.69 C 678.72 146.56 700.98 147.30 700.98 170.39 C 700.98 193.48 674.04 193.04 672.09 191.21 C 669.69 193.35 658.15 204.96 644.15 191.71 C 641.12 194.30 631.22 205.27 615.57 190.13 C 608.32 193.16 591.09 195.49 587.75 177.70 C 584.41 159.92 601.54 154.90 606.38 156.87 Z" fill="url(#SVGID_8_)" fill-rule="nonzero" group-id="1,43" node-id="416" stroke="none" target-height="73.87999" target-width="116.57007" target-x="584.41" target-y="131.39"></path><path d="M 487.04 211.40 C 487.04 211.40 493.80 192.95 510.42 200.20 C 514.26 196.30 519.00 193.47 525.43 194.75 C 531.85 196.03 535.99 200.84 537.39 204.03 C 539.40 203.94 555.52 204.47 555.52 221.18 C 555.52 237.89 536.02 237.57 534.61 236.25 C 532.87 237.80 524.52 246.20 514.38 236.62 C 512.19 238.49 505.02 246.44 493.70 235.48 C 488.45 237.67 475.98 239.36 473.56 226.48 C 471.14 213.61 483.54 209.97 487.04 211.40 Z" fill="url(#SVGID_9_)" fill-rule="nonzero" group-id="1,43" node-id="418" stroke="none" target-height="53.48999" target-width="84.380005" target-x="471.14" target-y="192.95001"></path><path d="M 771.58 580.62 C 771.58 627.31 732.49 672.10 662.92 705.11 C 593.35 738.13 498.99 756.68 400.60 756.68 C 302.21 756.68 207.85 738.13 138.28 705.11 C 68.71 672.10 29.62 627.31 29.62 580.62 C 29.62 533.93 68.71 489.14 138.28 456.13 C 207.85 423.11 302.21 404.56 400.60 404.56 C 498.99 404.56 593.35 423.11 662.92 456.13 C 732.49 489.14 771.58 533.93 771.58 580.62 Z" fill="url(#SVGID_10_)" fill-rule="nonzero" group-id="1,43" node-id="420" stroke="none" target-height="352.12" target-width="741.95996" target-x="29.619997" target-y="404.56"></path></g><g node-id="556"><path d="M 273.53 441.47 L 405.52 663.48 L 713.83 592.36 L 524.51 439.38 Z" fill="url(#SVGID_11_)" fill-rule="nonzero" group-id="1,44" node-id="424" stroke="none" target-height="224.09998" target-width="440.30002" target-x="273.53" target-y="439.38"></path><path d="M 273.53 434.34 L 387.33 434.34 L 387.33 283.16 L 273.53 313.02 Z" fill="url(#SVGID_12_)" fill-rule="nonzero" group-id="1,44" node-id="426" stroke="none" target-height="151.18" target-width="113.80002" target-x="273.53" target-y="283.16"></path><path d="M 524.62 383.51 L 387.33 383.51 L 387.33 283.16 L 524.62 314.52 Z" fill="url(#SVGID_13_)" fill-rule="nonzero" group-id="1,44" node-id="428" stroke="none" target-height="100.350006" target-width="137.28998" target-x="387.33002" target-y="283.16"></path><path d="M 273.53 313.02 L 234.04 360.07 L 273.53 377.72 Z" fill="url(#SVGID_14_)" fill-rule="nonzero" group-id="1,44" node-id="430" stroke="none" target-height="64.70001" target-width="39.490005" target-x="234.04" target-y="313.02"></path><path d="M 407.80 495.94 L 273.53 441.48 L 273.53 313.02 L 407.80 347.20 Z" fill="url(#SVGID_15_)" fill-rule="nonzero" group-id="1,44" node-id="432" stroke="none" target-height="182.92001" target-width="134.26996" target-x="273.53" target-y="313.02"></path><path d="M 407.80 495.94 L 524.62 439.60 L 524.62 314.52 L 407.80 347.20 Z" fill="url(#SVGID_16_)" fill-rule="nonzero" group-id="1,44" node-id="434" stroke="none" target-height="181.42001" target-width="116.82004" target-x="407.79996" target-y="314.52"></path><path d="M 524.62 314.52 L 564.18 367.48 L 449.62 412.93 L 407.80 347.20 Z" fill="url(#SVGID_17_)" fill-rule="nonzero" group-id="1,44" node-id="436" stroke="none" target-height="98.41" target-width="156.38004" target-x="407.79996" target-y="314.52"></path><path d="M 273.53 313.02 L 238.03 372.36 L 377.38 418.38 L 407.80 347.20 Z" fill="url(#SVGID_18_)" fill-rule="nonzero" group-id="1,44" node-id="438" stroke="none" target-height="105.36005" target-width="169.76994" target-x="238.03001" target-y="313.02"></path></g><g node-id="557"><g node-id="560"><path d="M 146.55 559.08 C 146.55 559.08 143.02 564.09 148.92 571.55 C 154.18 578.19 162.49 576.90 165.25 574.77 C 166.10 580.55 173.19 592.73 184.41 585.84 C 194.96 579.37 189.88 569.53 186.51 565.66 C 193.10 563.80 198.01 548.01 182.89 542.56 C 185.13 536.04 185.53 533.09 182.25 527.23 C 179.09 521.59 173.90 520.69 165.62 524.12 L 153.64 529.17 L 146.01 514.93 L 141.93 517.29 L 150.73 530.89 L 139.07 536.74 C 139.07 536.74 129.10 540.64 133.40 551.34 C 137.39 561.26 146.55 559.08 146.55 559.08 Z" fill="url(#SVGID_19_)" fill-rule="nonzero" group-id="1,45,48" node-id="444" stroke="none" target-height="77.79999" target-width="68.90999" target-x="129.1" target-y="514.93"></path><path d="M 126.25 498.37 L 162.31 498.37 C 162.31 498.37 173.96 498.70 176.28 485.39 C 178.83 470.78 168.20 468.77 168.20 468.77 C 168.20 468.77 174.60 465.83 173.21 454.78 C 171.82 443.73 162.09 442.34 158.04 442.85 C 158.70 436.30 160.08 421.47 144.68 421.32 C 129.81 421.17 129.90 436.14 131.01 442.04 C 125.71 442.10 109.70 450.05 120.96 467.49 C 114.83 472.74 112.24 475.77 112.51 483.34 C 112.78 490.91 117.41 498.37 126.25 498.37 Z" fill="url(#SVGID_20_)" fill-rule="nonzero" group-id="1,45,48" node-id="446" stroke="none" target-height="77.53" target-width="69.130005" target-x="109.7" target-y="421.17"></path><path d="M 161.42 478.13 L 146.04 488.25 L 145.62 478.47 L 155.35 467.01 L 145.47 474.99 L 144.19 445.09 L 143.25 475.18 L 132.87 466.92 L 143.15 478.25 L 142.84 488.32 L 127.02 476.70 L 142.72 491.95 L 141.93 517.31 L 147.29 517.31 L 146.21 492.10 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="1,45,48" node-id="448" stroke="none" target-height="72.22" target-width="34.399994" target-x="127.020004" target-y="445.09"></path></g><g node-id="561"><path d="M 668.97 540.78 C 668.97 540.78 665.72 545.40 671.15 552.26 C 675.99 558.38 683.65 557.19 686.19 555.22 C 686.97 560.54 693.51 571.75 703.84 565.42 C 713.55 559.46 708.88 550.40 705.77 546.84 C 711.84 545.13 716.36 530.58 702.44 525.57 C 704.51 519.57 704.88 516.85 701.85 511.46 C 698.94 506.27 694.16 505.43 686.54 508.60 L 675.50 513.25 L 668.47 500.14 L 664.72 502.31 L 672.82 514.83 L 662.09 520.22 C 662.09 520.22 652.91 523.81 656.87 533.67 C 660.53 542.78 668.97 540.78 668.97 540.78 Z" fill="url(#SVGID_21_)" fill-rule="nonzero" group-id="1,45,49" node-id="453" stroke="none" target-height="71.609955" target-width="63.450012" target-x="652.91" target-y="500.14005"></path><path d="M 650.28 484.87 L 683.48 484.87 C 683.48 484.87 694.21 485.18 696.34 472.92 C 698.68 459.47 688.90 457.62 688.90 457.62 C 688.90 457.62 694.80 454.91 693.51 444.74 C 692.22 434.57 683.27 433.28 679.54 433.76 C 680.15 427.73 681.42 414.07 667.24 413.93 C 653.55 413.79 653.63 427.57 654.65 433.01 C 649.77 433.06 635.02 440.38 645.40 456.45 C 639.76 461.28 637.37 464.08 637.62 471.04 C 637.87 478.00 642.14 484.87 650.28 484.87 Z" fill="url(#SVGID_22_)" fill-rule="nonzero" group-id="1,45,49" node-id="455" stroke="none" target-height="71.389984" target-width="63.660034" target-x="635.02" target-y="413.79"></path><path d="M 682.66 466.23 L 668.50 475.55 L 668.12 466.54 L 677.07 455.99 L 667.98 463.34 L 666.80 435.80 L 665.93 463.52 L 656.38 455.91 L 665.84 466.34 L 665.55 475.61 L 650.99 464.91 L 665.45 478.96 L 664.72 502.31 L 669.65 502.31 L 668.66 479.10 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="1,45,49" node-id="457" stroke="none" target-height="66.51001" target-width="31.669983" target-x="650.99" target-y="435.8"></path></g><g node-id="562"><path d="M 229.48 450.58 C 229.48 450.58 227.73 453.06 230.65 456.75 C 233.25 460.04 237.36 459.40 238.73 458.34 C 239.15 461.20 242.66 467.22 248.21 463.82 C 253.43 460.62 250.92 455.75 249.25 453.84 C 252.51 452.92 254.94 445.11 247.46 442.42 C 248.57 439.20 248.77 437.74 247.14 434.84 C 245.58 432.05 243.01 431.60 238.92 433.30 L 232.99 435.80 L 229.22 428.76 L 227.20 429.93 L 231.55 436.65 L 225.78 439.54 C 225.78 439.54 220.85 441.47 222.98 446.76 C 224.95 451.66 229.48 450.58 229.48 450.58 Z" fill="url(#SVGID_23_)" fill-rule="nonzero" group-id="1,45,50" node-id="462" stroke="none" target-height="38.45999" target-width="34.089996" target-x="220.85" target-y="428.76"></path><path d="M 219.44 420.55 L 237.27 420.55 C 237.27 420.55 243.03 420.71 244.18 414.13 C 245.44 406.90 240.18 405.91 240.18 405.91 C 240.18 405.91 243.35 404.45 242.66 398.99 C 241.97 393.53 237.16 392.84 235.16 393.09 C 235.49 389.85 236.17 382.51 228.55 382.44 C 221.19 382.37 221.24 389.77 221.79 392.69 C 219.17 392.72 211.25 396.65 216.82 405.28 C 213.79 407.87 212.50 409.38 212.64 413.12 C 212.78 416.86 215.07 420.55 219.44 420.55 Z" fill="url(#SVGID_24_)" fill-rule="nonzero" group-id="1,45,50" node-id="464" stroke="none" target-height="38.339996" target-width="34.190018" target-x="211.24998" target-y="382.37"></path><path d="M 236.84 410.54 L 229.23 415.55 L 229.02 410.71 L 233.83 405.04 L 228.95 408.99 L 228.31 394.19 L 227.85 409.08 L 222.72 405.00 L 227.80 410.60 L 227.64 415.58 L 219.82 409.83 L 227.59 417.38 L 227.19 429.92 L 229.84 429.92 L 229.31 417.45 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="1,45,50" node-id="466" stroke="none" target-height="35.73001" target-width="17.019989" target-x="219.82" target-y="394.19"></path></g></g><g node-id="558"><g node-id="563"><g node-id="564"><path d="M 477.43 159.39 C 477.04 159.39 476.67 159.16 476.51 158.78 C 476.29 158.27 476.53 157.68 477.03 157.47 C 478.25 156.95 478.91 156.69 478.91 156.69 C 479.43 156.49 480.00 156.74 480.20 157.26 C 480.40 157.77 480.15 158.35 479.63 158.55 C 479.62 158.55 478.99 158.80 477.82 159.30 C 477.69 159.37 477.56 159.39 477.43 159.39 Z" fill="url(#SVGID_25_)" fill-rule="nonzero" group-id="1,46,51,52" node-id="475" stroke="none" target-height="2.899994" target-width="4.109955" target-x="476.29" target-y="156.49"></path></g><g node-id="565"><path d="M 408.55 339.08 C 408.15 339.08 407.76 338.83 407.61 338.43 C 407.13 337.14 406.75 335.79 406.48 334.42 C 406.38 333.88 406.73 333.35 407.27 333.25 C 407.81 333.14 408.34 333.50 408.44 334.04 C 408.68 335.30 409.03 336.54 409.48 337.72 C 409.67 338.24 409.41 338.81 408.90 339.01 C 408.79 339.06 408.67 339.08 408.55 339.08 Z M 421.97 331.39 C 421.96 331.39 421.95 331.39 421.95 331.39 C 420.58 331.36 419.21 331.27 417.88 331.13 C 417.33 331.07 416.93 330.58 416.99 330.03 C 417.05 329.48 417.54 329.08 418.09 329.14 C 419.37 329.28 420.68 329.36 422.00 329.39 C 422.55 329.40 422.99 329.86 422.98 330.41 C 422.96 330.96 422.51 331.39 421.97 331.39 Z M 425.97 331.33 C 425.44 331.33 425.00 330.92 424.97 330.38 C 424.94 329.83 425.36 329.36 425.91 329.33 C 427.20 329.26 428.51 329.14 429.82 328.97 C 430.37 328.90 430.87 329.29 430.94 329.84 C 431.01 330.39 430.62 330.89 430.07 330.96 C 428.71 331.13 427.35 331.26 426.01 331.33 C 426.01 331.33 425.99 331.33 425.97 331.33 Z M 407.04 331.26 C 406.50 331.26 406.06 330.83 406.04 330.29 C 406.03 330.06 406.03 329.82 406.03 329.58 C 406.03 329.14 406.04 328.70 406.06 328.26 C 406.04 328.25 406.03 328.25 406.01 328.24 C 404.73 327.77 403.47 327.25 402.25 326.71 C 401.75 326.48 401.52 325.89 401.74 325.39 C 401.97 324.89 402.56 324.66 403.06 324.88 C 404.09 325.34 405.16 325.78 406.24 326.19 C 406.24 326.17 406.24 326.16 406.25 326.14 C 406.32 325.59 406.82 325.21 407.37 325.27 C 407.92 325.34 408.31 325.84 408.24 326.39 C 408.10 327.46 408.04 328.53 408.04 329.58 C 408.04 329.80 408.04 330.02 408.05 330.23 C 408.06 330.78 407.63 331.24 407.08 331.26 C 407.06 331.26 407.05 331.26 407.04 331.26 Z M 414.03 330.53 C 413.96 330.53 413.90 330.52 413.83 330.51 C 412.73 330.29 411.64 330.03 410.59 329.73 L 409.86 329.52 C 409.33 329.36 409.03 328.81 409.19 328.28 C 409.35 327.75 409.90 327.45 410.43 327.61 L 411.13 327.82 C 412.13 328.11 413.17 328.36 414.22 328.57 C 414.76 328.68 415.11 329.21 415.00 329.75 C 414.91 330.21 414.50 330.53 414.03 330.53 Z M 433.91 330.32 C 433.44 330.32 433.02 329.99 432.93 329.51 C 432.82 328.97 433.17 328.44 433.72 328.33 C 435.00 328.08 436.28 327.78 437.55 327.44 C 438.08 327.30 438.63 327.61 438.78 328.15 C 438.93 328.69 438.61 329.23 438.07 329.38 C 436.76 329.73 435.43 330.04 434.11 330.30 C 434.04 330.31 433.97 330.32 433.91 330.32 Z M 441.63 328.25 C 441.21 328.25 440.82 327.99 440.68 327.57 C 440.50 327.05 440.78 326.48 441.30 326.30 C 442.54 325.88 443.78 325.41 444.98 324.91 C 445.49 324.70 446.08 324.94 446.29 325.45 C 446.50 325.96 446.26 326.55 445.75 326.76 C 444.51 327.28 443.23 327.76 441.95 328.20 C 441.85 328.23 441.74 328.25 441.63 328.25 Z M 449.01 325.17 C 448.64 325.17 448.29 324.97 448.12 324.62 C 447.87 324.13 448.07 323.53 448.56 323.28 C 449.75 322.68 450.90 322.04 451.99 321.38 C 452.46 321.09 453.08 321.25 453.36 321.72 C 453.64 322.19 453.49 322.81 453.02 323.09 C 451.88 323.78 450.68 324.44 449.45 325.06 C 449.31 325.13 449.16 325.17 449.01 325.17 Z M 399.07 325.04 C 398.91 325.04 398.75 325.00 398.60 324.92 C 397.40 324.28 396.22 323.59 395.08 322.87 C 394.61 322.58 394.47 321.96 394.77 321.49 C 395.06 321.02 395.68 320.88 396.15 321.18 C 397.24 321.87 398.39 322.54 399.54 323.15 C 400.03 323.41 400.21 324.02 399.95 324.50 C 399.77 324.85 399.42 325.04 399.07 325.04 Z M 408.02 323.35 C 407.93 323.35 407.85 323.34 407.76 323.32 C 407.23 323.18 406.91 322.63 407.05 322.09 C 407.40 320.80 407.84 319.49 408.37 318.19 C 408.58 317.68 409.16 317.43 409.67 317.64 C 410.18 317.85 410.43 318.43 410.22 318.94 C 409.73 320.16 409.31 321.40 408.98 322.61 C 408.87 323.05 408.46 323.35 408.02 323.35 Z M 455.84 321.01 C 455.53 321.01 455.23 320.87 455.04 320.60 C 454.71 320.16 454.81 319.53 455.25 319.20 C 456.34 318.40 457.34 317.56 458.24 316.72 C 458.64 316.34 459.28 316.36 459.65 316.76 C 460.03 317.16 460.01 317.80 459.61 318.17 C 458.66 319.06 457.59 319.95 456.44 320.80 C 456.25 320.95 456.04 321.01 455.84 321.01 Z M 392.31 320.77 C 392.10 320.77 391.89 320.71 391.72 320.57 C 390.63 319.76 389.56 318.91 388.54 318.02 C 388.12 317.66 388.08 317.03 388.44 316.61 C 388.80 316.19 389.43 316.15 389.85 316.51 C 390.83 317.36 391.86 318.19 392.91 318.96 C 393.35 319.29 393.45 319.92 393.12 320.36 C 392.92 320.63 392.62 320.77 392.31 320.77 Z M 410.99 315.94 C 410.83 315.94 410.67 315.90 410.52 315.82 C 410.03 315.56 409.85 314.96 410.11 314.47 C 410.74 313.29 411.46 312.11 412.26 310.96 C 412.57 310.51 413.20 310.39 413.65 310.71 C 414.10 311.02 414.22 311.65 413.90 312.10 C 413.15 313.18 412.47 314.30 411.88 315.41 C 411.69 315.75 411.35 315.94 410.99 315.94 Z M 386.28 315.54 C 386.02 315.54 385.77 315.44 385.57 315.24 C 384.62 314.28 383.69 313.27 382.81 312.24 C 382.45 311.82 382.50 311.19 382.92 310.83 C 383.34 310.47 383.97 310.52 384.33 310.94 C 385.18 311.93 386.07 312.90 386.98 313.83 C 387.37 314.22 387.37 314.86 386.97 315.24 C 386.79 315.44 386.53 315.54 386.28 315.54 Z M 461.60 315.50 C 461.39 315.50 461.18 315.43 460.99 315.30 C 460.55 314.97 460.47 314.34 460.80 313.90 C 460.92 313.74 461.04 313.58 461.16 313.41 C 461.81 312.49 462.40 311.57 462.91 310.66 C 463.18 310.18 463.79 310.01 464.27 310.28 C 464.75 310.55 464.92 311.16 464.65 311.64 C 464.11 312.61 463.48 313.59 462.79 314.57 C 462.66 314.75 462.53 314.93 462.39 315.11 C 462.20 315.37 461.90 315.50 461.60 315.50 Z M 381.10 309.46 C 380.79 309.46 380.49 309.32 380.29 309.05 C 379.50 307.96 378.73 306.83 378.01 305.68 C 377.72 305.21 377.86 304.59 378.33 304.30 C 378.80 304.01 379.42 304.15 379.71 304.62 C 380.40 305.73 381.14 306.82 381.91 307.87 C 382.24 308.32 382.14 308.94 381.69 309.27 C 381.51 309.40 381.30 309.46 381.10 309.46 Z M 415.52 309.37 C 415.29 309.37 415.06 309.29 414.87 309.13 C 414.45 308.77 414.40 308.14 414.76 307.72 C 415.63 306.71 416.57 305.71 417.57 304.74 C 417.97 304.36 418.60 304.36 418.98 304.76 C 419.36 305.16 419.36 305.79 418.96 306.17 C 418.01 307.09 417.11 308.05 416.28 309.01 C 416.09 309.25 415.81 309.37 415.52 309.37 Z M 465.45 308.52 C 465.34 308.52 465.23 308.50 465.12 308.46 C 464.60 308.28 464.33 307.70 464.51 307.18 C 464.96 305.92 465.24 304.70 465.36 303.53 C 465.41 302.98 465.90 302.58 466.45 302.63 C 467.00 302.68 467.40 303.17 467.35 303.72 C 467.22 305.05 466.90 306.43 466.40 307.84 C 466.25 308.27 465.86 308.52 465.45 308.52 Z M 421.25 303.79 C 420.96 303.79 420.68 303.67 420.48 303.43 C 420.13 303.00 420.19 302.37 420.61 302.02 C 421.64 301.17 422.73 300.34 423.85 299.54 C 424.30 299.22 424.92 299.33 425.24 299.78 C 425.56 300.23 425.45 300.85 425.00 301.17 C 423.92 301.94 422.87 302.74 421.88 303.56 C 421.70 303.72 421.47 303.79 421.25 303.79 Z M 376.87 302.68 C 376.51 302.68 376.16 302.49 375.98 302.15 C 375.35 300.96 374.76 299.72 374.21 298.49 C 373.99 297.98 374.22 297.39 374.72 297.17 C 375.23 296.95 375.82 297.18 376.04 297.68 C 376.57 298.88 377.14 300.07 377.75 301.22 C 378.01 301.71 377.82 302.31 377.33 302.57 C 377.18 302.64 377.02 302.68 376.87 302.68 Z M 466.11 300.66 C 465.66 300.66 465.25 300.35 465.14 299.89 C 464.86 298.71 464.35 297.61 463.65 296.63 C 463.33 296.18 463.43 295.56 463.88 295.23 C 464.33 294.91 464.95 295.01 465.28 295.46 C 466.14 296.66 466.75 297.99 467.09 299.42 C 467.22 299.96 466.89 300.50 466.35 300.63 C 466.26 300.65 466.18 300.66 466.11 300.66 Z M 427.77 299.16 C 427.43 299.16 427.10 298.99 426.92 298.68 C 426.63 298.21 426.78 297.59 427.25 297.31 C 428.40 296.61 429.59 295.93 430.79 295.30 C 431.28 295.04 431.88 295.23 432.14 295.72 C 432.40 296.21 432.21 296.81 431.72 297.07 C 430.56 297.68 429.41 298.33 428.30 299.01 C 428.13 299.11 427.95 299.16 427.77 299.16 Z M 434.85 295.44 C 434.47 295.44 434.10 295.22 433.94 294.85 C 433.72 294.35 433.94 293.75 434.45 293.53 C 435.70 292.98 436.97 292.46 438.22 292.01 C 438.74 291.82 439.31 292.09 439.50 292.61 C 439.69 293.13 439.42 293.70 438.90 293.89 C 437.69 294.33 436.46 294.83 435.25 295.36 C 435.12 295.41 434.99 295.44 434.85 295.44 Z M 373.64 295.36 C 373.23 295.36 372.85 295.11 372.70 294.70 C 372.24 293.43 371.82 292.13 371.45 290.83 C 371.30 290.30 371.61 289.75 372.14 289.59 C 372.67 289.44 373.22 289.75 373.38 290.28 C 373.74 291.54 374.14 292.80 374.58 294.02 C 374.77 294.54 374.50 295.11 373.98 295.30 C 373.87 295.35 373.75 295.36 373.64 295.36 Z M 461.60 294.27 C 461.40 294.27 461.20 294.21 461.02 294.09 C 460.06 293.41 458.95 292.82 457.71 292.33 C 457.20 292.13 456.94 291.55 457.15 291.03 C 457.35 290.52 457.93 290.26 458.45 290.47 C 459.84 291.02 461.10 291.68 462.18 292.45 C 462.63 292.77 462.74 293.39 462.42 293.84 C 462.23 294.12 461.92 294.27 461.60 294.27 Z M 442.37 292.71 C 441.93 292.71 441.53 292.42 441.41 291.98 C 441.26 291.45 441.57 290.90 442.10 290.75 C 443.46 290.37 444.80 290.06 446.08 289.82 C 446.62 289.72 447.14 290.08 447.25 290.62 C 447.35 291.16 446.99 291.68 446.45 291.79 C 445.22 292.02 443.94 292.32 442.64 292.68 C 442.55 292.70 442.46 292.71 442.37 292.71 Z M 454.23 291.38 C 454.19 291.38 454.15 291.38 454.11 291.37 C 453.40 291.28 452.64 291.24 451.84 291.24 C 451.36 291.22 450.83 291.26 450.30 291.29 C 449.75 291.32 449.27 290.91 449.24 290.35 C 449.21 289.80 449.62 289.32 450.18 289.29 C 450.75 289.25 451.30 289.24 451.84 289.24 C 451.84 289.24 451.84 289.24 451.85 289.24 C 452.73 289.24 453.57 289.29 454.36 289.39 C 454.91 289.46 455.30 289.96 455.23 290.50 C 455.16 291.01 454.72 291.38 454.23 291.38 Z M 371.45 287.67 C 370.99 287.67 370.57 287.35 370.47 286.88 C 370.19 285.55 369.95 284.21 369.77 282.87 C 369.69 282.32 370.07 281.82 370.62 281.74 C 371.17 281.66 371.67 282.04 371.75 282.59 C 371.93 283.88 372.16 285.18 372.43 286.46 C 372.54 287.00 372.20 287.53 371.66 287.65 C 371.59 287.67 371.52 287.67 371.45 287.67 Z M 370.35 279.75 C 369.83 279.75 369.39 279.35 369.35 278.82 C 369.27 277.60 369.23 276.38 369.23 275.18 L 369.23 274.74 C 369.23 274.19 369.69 273.72 370.24 273.75 C 370.79 273.75 371.24 274.21 371.23 274.76 L 371.23 275.18 C 371.23 276.33 371.27 277.51 371.35 278.68 C 371.39 279.23 370.97 279.71 370.42 279.75 C 370.39 279.75 370.37 279.75 370.35 279.75 Z M 370.43 271.76 C 370.40 271.76 370.37 271.76 370.34 271.76 C 369.79 271.71 369.38 271.22 369.43 270.67 C 369.54 269.42 369.71 268.18 369.92 267.00 L 369.96 266.84 L 370.09 266.48 C 370.27 265.96 370.84 265.69 371.36 265.87 C 371.88 266.05 372.16 266.62 371.97 267.14 L 371.87 267.42 C 371.69 268.47 371.53 269.65 371.42 270.84 C 371.37 271.37 370.94 271.76 370.43 271.76 Z M 372.40 264.06 C 372.28 264.06 372.16 264.04 372.04 263.99 C 371.52 263.79 371.26 263.22 371.46 262.70 C 371.94 261.44 372.43 260.19 372.94 258.96 C 373.15 258.45 373.73 258.20 374.24 258.41 C 374.75 258.62 375.00 259.20 374.79 259.71 C 374.29 260.93 373.80 262.16 373.33 263.41 C 373.18 263.81 372.80 264.06 372.40 264.06 Z M 375.43 256.66 C 375.30 256.66 375.16 256.63 375.03 256.58 C 374.52 256.36 374.30 255.77 374.52 255.26 C 375.06 254.03 375.62 252.81 376.19 251.60 C 376.43 251.10 377.02 250.89 377.52 251.12 C 378.02 251.36 378.23 251.95 378.00 252.45 C 377.44 253.64 376.89 254.85 376.35 256.07 C 376.18 256.44 375.82 256.66 375.43 256.66 Z M 378.84 249.43 C 378.69 249.43 378.54 249.40 378.39 249.32 C 377.90 249.07 377.70 248.47 377.95 247.98 C 378.55 246.78 379.17 245.59 379.80 244.41 C 380.06 243.92 380.67 243.74 381.15 244.00 C 381.64 244.26 381.82 244.87 381.56 245.35 C 380.94 246.51 380.33 247.69 379.73 248.88 C 379.56 249.22 379.21 249.43 378.84 249.43 Z M 382.61 242.37 C 382.44 242.37 382.27 242.33 382.12 242.24 C 381.64 241.97 381.47 241.36 381.74 240.88 C 382.40 239.71 383.08 238.55 383.77 237.40 C 384.05 236.93 384.67 236.77 385.14 237.06 C 385.61 237.34 385.77 237.96 385.48 238.43 C 384.80 239.56 384.13 240.71 383.48 241.86 C 383.30 242.19 382.96 242.37 382.61 242.37 Z M 386.72 235.51 C 386.54 235.51 386.35 235.46 386.19 235.35 C 385.72 235.05 385.58 234.44 385.88 233.97 C 386.60 232.83 387.33 231.71 388.07 230.60 C 388.38 230.14 389.00 230.02 389.46 230.32 C 389.92 230.63 390.04 231.25 389.74 231.71 C 389.01 232.81 388.29 233.92 387.57 235.04 C 387.38 235.35 387.05 235.51 386.72 235.51 Z M 391.16 228.86 C 390.96 228.86 390.76 228.80 390.59 228.68 C 390.14 228.36 390.03 227.74 390.35 227.29 C 391.12 226.19 391.91 225.10 392.70 224.02 C 393.03 223.57 393.65 223.48 394.10 223.81 C 394.54 224.14 394.64 224.76 394.31 225.21 C 393.53 226.27 392.75 227.35 391.99 228.44 C 391.78 228.71 391.47 228.86 391.16 228.86 Z M 395.90 222.41 C 395.69 222.41 395.47 222.34 395.29 222.20 C 394.85 221.86 394.77 221.23 395.11 220.80 C 395.93 219.73 396.76 218.68 397.60 217.64 C 397.95 217.21 398.58 217.14 399.01 217.49 C 399.44 217.84 399.51 218.47 399.16 218.90 C 398.33 219.93 397.51 220.97 396.69 222.02 C 396.50 222.28 396.20 222.41 395.90 222.41 Z M 400.93 216.19 C 400.70 216.19 400.47 216.11 400.29 215.95 C 399.87 215.59 399.81 214.96 400.17 214.54 C 401.04 213.51 401.92 212.50 402.80 211.50 C 403.16 211.09 403.80 211.05 404.21 211.41 C 404.62 211.78 404.66 212.41 404.30 212.82 C 403.43 213.81 402.56 214.81 401.70 215.83 C 401.49 216.07 401.21 216.19 400.93 216.19 Z M 406.22 210.19 C 405.98 210.19 405.74 210.10 405.54 209.93 C 405.13 209.56 405.11 208.92 405.48 208.52 C 406.39 207.53 407.31 206.55 408.23 205.59 C 408.61 205.19 409.25 205.18 409.64 205.56 C 410.04 205.94 410.05 206.58 409.67 206.97 C 408.76 207.92 407.85 208.89 406.94 209.87 C 406.76 210.08 406.49 210.19 406.22 210.19 Z M 411.76 204.42 C 411.50 204.42 411.25 204.32 411.05 204.13 C 410.66 203.74 410.66 203.11 411.05 202.72 C 412.00 201.77 412.96 200.83 413.92 199.90 C 414.32 199.52 414.95 199.53 415.33 199.93 C 415.71 200.33 415.70 200.96 415.30 201.34 C 414.35 202.25 413.40 203.18 412.46 204.13 C 412.27 204.32 412.02 204.42 411.76 204.42 Z M 417.53 198.87 C 417.26 198.87 416.99 198.76 416.80 198.55 C 416.43 198.14 416.45 197.51 416.86 197.14 C 417.85 196.22 418.84 195.32 419.84 194.44 C 420.25 194.07 420.88 194.11 421.25 194.52 C 421.62 194.93 421.58 195.56 421.17 195.93 C 420.19 196.81 419.20 197.70 418.22 198.61 C 418.01 198.78 417.77 198.87 417.53 198.87 Z M 423.51 193.55 C 423.23 193.55 422.95 193.43 422.75 193.20 C 422.39 192.78 422.44 192.15 422.86 191.79 C 423.89 190.91 424.91 190.05 425.94 189.20 C 426.37 188.85 427.00 188.91 427.35 189.34 C 427.70 189.77 427.64 190.40 427.21 190.75 C 426.20 191.59 425.18 192.44 424.16 193.31 C 423.97 193.47 423.74 193.55 423.51 193.55 Z M 429.68 188.46 C 429.39 188.46 429.09 188.33 428.90 188.08 C 428.56 187.65 428.63 187.02 429.06 186.67 C 430.12 185.83 431.18 185.00 432.23 184.20 C 432.67 183.86 433.30 183.95 433.63 184.39 C 433.97 184.83 433.88 185.46 433.44 185.79 C 432.40 186.59 431.35 187.40 430.30 188.24 C 430.12 188.39 429.90 188.46 429.68 188.46 Z M 436.04 183.59 C 435.73 183.59 435.43 183.45 435.23 183.18 C 434.90 182.74 435.00 182.11 435.44 181.78 C 436.53 180.97 437.62 180.19 438.70 179.42 C 439.15 179.10 439.77 179.21 440.09 179.66 C 440.41 180.11 440.30 180.73 439.85 181.05 C 438.78 181.81 437.71 182.59 436.62 183.39 C 436.45 183.53 436.24 183.59 436.04 183.59 Z M 442.56 178.96 C 442.24 178.96 441.93 178.81 441.73 178.53 C 441.42 178.07 441.53 177.45 441.99 177.14 C 443.12 176.37 444.23 175.62 445.33 174.90 C 445.79 174.60 446.41 174.72 446.72 175.18 C 447.02 175.64 446.90 176.26 446.44 176.57 C 445.35 177.29 444.25 178.03 443.13 178.79 C 442.95 178.90 442.75 178.96 442.56 178.96 Z M 449.24 174.55 C 448.91 174.55 448.59 174.39 448.40 174.09 C 448.10 173.62 448.24 173.01 448.71 172.71 C 449.87 171.97 451.01 171.27 452.12 170.58 C 452.59 170.29 453.21 170.44 453.49 170.91 C 453.78 171.38 453.63 172.00 453.16 172.28 C 452.05 172.96 450.93 173.66 449.78 174.39 C 449.61 174.50 449.42 174.55 449.24 174.55 Z M 456.07 170.37 C 455.73 170.37 455.39 170.19 455.21 169.88 C 454.93 169.40 455.09 168.79 455.56 168.51 C 456.75 167.81 457.92 167.14 459.04 166.50 C 459.52 166.23 460.13 166.40 460.40 166.88 C 460.67 167.36 460.50 167.97 460.02 168.24 C 458.90 168.87 457.75 169.53 456.57 170.23 C 456.42 170.32 456.24 170.37 456.07 170.37 Z M 463.05 166.43 C 462.69 166.43 462.35 166.24 462.17 165.91 C 461.91 165.42 462.09 164.82 462.57 164.55 C 463.81 163.88 465.00 163.25 466.13 162.67 C 466.62 162.42 467.22 162.61 467.48 163.10 C 467.73 163.59 467.54 164.19 467.05 164.45 C 465.93 165.03 464.76 165.65 463.53 166.31 C 463.37 166.39 463.21 166.43 463.05 166.43 Z M 470.16 162.75 C 469.79 162.75 469.44 162.54 469.26 162.19 C 469.02 161.69 469.22 161.10 469.72 160.85 C 471.06 160.19 472.28 159.61 473.36 159.11 C 473.86 158.88 474.46 159.10 474.69 159.60 C 474.92 160.10 474.70 160.70 474.20 160.93 C 473.14 161.42 471.93 162.00 470.60 162.65 C 470.46 162.72 470.31 162.75 470.16 162.75 Z" fill="url(#SVGID_26_)" fill-rule="nonzero" group-id="1,46,51,53" node-id="480" stroke="none" target-height="180.19998" target-width="105.68997" target-x="369.23004" target-y="158.88"></path></g><path d="M 411.44 344.34 C 411.16 344.34 410.88 344.22 410.68 343.99 C 410.66 343.96 410.13 343.35 409.44 342.22 C 409.15 341.75 409.30 341.13 409.77 340.85 C 410.24 340.56 410.86 340.71 411.14 341.18 C 411.73 342.15 412.18 342.68 412.18 342.68 C 412.54 343.10 412.49 343.73 412.07 344.09 C 411.91 344.26 411.67 344.34 411.44 344.34 Z" fill="url(#SVGID_27_)" fill-rule="nonzero" group-id="1,46,51,54" node-id="485" stroke="none" target-height="3.7799988" target-width="3.3900146" target-x="409.15002" target-y="340.56"></path></g><path d="M 464.48 131.58 L 540.39 118.91 L 516.68 163.67 Z" fill="url(#SVGID_28_)" fill-rule="nonzero" group-id="1,46" node-id="489" stroke="none" target-height="44.759995" target-width="75.91" target-x="464.48" target-y="118.91"></path><path d="M 522.01 129.71 L 493.42 148.68 L 489.72 163.67 L 484.32 143.77 Z" fill="url(#SVGID_29_)" fill-rule="nonzero" group-id="1,46" node-id="491" stroke="none" target-height="33.95999" target-width="37.690002" target-x="484.32" target-y="129.71"></path><path d="M 503.49 155.56 L 489.72 163.67 L 493.20 148.51 Z" fill="#b4c6d9" fill-rule="nonzero" group-id="1,46" node-id="493" stroke="none" target-height="15.160004" target-width="13.769989" target-x="489.72" target-y="148.51"></path></g><g node-id="559"><path d="M 351.95 330.02 L 362.88 335.76 C 362.88 335.76 340.57 336.09 330.97 344.26 C 321.37 352.43 312.97 370.21 282.16 359.61 C 251.35 349.01 274.76 337.63 286.58 339.62 C 298.40 341.61 314.52 337.41 322.58 329.02 C 330.64 320.63 349.19 327.81 351.95 330.02 Z" fill="url(#SVGID_30_)" fill-rule="nonzero" group-id="1,47" node-id="497" stroke="none" target-height="49.579987" target-width="111.52998" target-x="251.35002" target-y="320.63"></path><path d="M 320.13 318.58 C 320.13 318.58 310.36 318.75 303.73 327.75 C 301.85 330.40 300.75 332.11 299.86 333.49 C 298.97 334.87 296.49 337.30 292.85 334.32 C 289.21 331.34 280.10 323.66 280.10 323.66 L 275.30 330.13 C 275.30 330.13 291.14 347.56 297.60 346.74 C 304.06 345.91 311.29 346.57 319.63 336.25 C 327.97 325.92 330.12 323.44 330.12 323.44 L 320.13 318.58 Z" fill="url(#SVGID_31_)" fill-rule="nonzero" group-id="1,47" node-id="499" stroke="none" target-height="28.980042" target-width="54.820007" target-x="275.3" target-y="318.58"></path><path d="M 277.75 318.91 L 266.04 334.67 C 266.04 334.67 270.18 338.95 274.60 332.60 C 279.02 326.25 281.42 322.47 281.42 322.47 L 277.75 318.91 Z" fill="#f8b62d" fill-rule="nonzero" group-id="1,47" node-id="501" stroke="none" target-height="20.040009" target-width="15.380005" target-x="266.04" target-y="318.91"></path><path d="M 276.95 317.83 L 271.18 324.32 L 272.26 325.51 L 265.06 334.00 L 266.00 334.96 L 279.08 319.85 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="1,47" node-id="503" stroke="none" target-height="17.130005" target-width="14.019989" target-x="265.06" target-y="317.83"></path><path d="M 320.59 319.09 C 320.59 319.09 313.12 321.30 308.55 330.35 C 303.99 339.41 303.29 342.79 298.24 340.29 C 293.20 337.79 283.92 333.15 283.92 333.15 L 279.83 340.36 C 279.83 340.36 298.09 355.12 305.19 351.88 C 312.29 348.64 334.20 333.84 334.20 333.84 C 334.20 333.84 335.75 328.32 335.49 328.06 C 335.24 327.82 320.59 319.09 320.59 319.09 Z" fill="url(#SVGID_32_)" fill-rule="nonzero" group-id="1,47" node-id="505" stroke="none" target-height="36.03" target-width="55.920013" target-x="279.83" target-y="319.09"></path><path d="M 281.04 329.49 L 269.33 345.25 C 269.33 345.25 273.47 349.53 277.89 343.18 C 282.31 336.83 284.71 333.05 284.71 333.05 L 281.04 329.49 Z" fill="#f8b62d" fill-rule="nonzero" group-id="1,47" node-id="507" stroke="none" target-height="20.040009" target-width="15.380005" target-x="269.33" target-y="329.49"></path><path d="M 280.24 328.41 L 274.47 334.90 L 275.55 336.09 L 268.36 344.58 L 269.30 345.54 L 282.37 330.43 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="1,47" node-id="509" stroke="none" target-height="17.130005" target-width="14.01001" target-x="268.36" target-y="328.41"></path><path d="M 362.89 335.76 C 362.89 335.76 356.69 314.06 338.99 311.74 C 321.28 309.42 314.24 315.26 313.82 317.51 C 313.53 319.03 315.29 319.55 315.29 319.55 C 315.29 319.55 329.57 325.03 331.85 335.27 C 332.22 336.96 333.47 336.45 337.00 335.05 C 340.53 333.65 345.88 331.97 352.76 333.18 C 357.15 334.43 362.89 335.76 362.89 335.76 Z" fill="url(#SVGID_33_)" fill-rule="nonzero" group-id="1,47" node-id="511" stroke="none" target-height="27.539978" target-width="49.359985" target-x="313.53" target-y="309.42"></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="187"><linearGradient gradientUnits="objectBoundingBox" id="SVGID_1_" node-id="15" spreadMethod="pad" x1="256.9322" x2="256.9322" y1="424.1624" y2="327.3742"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_2_" node-id="19" spreadMethod="pad" x1="192.3152" x2="192.3152" y1="482.1544" y2="265.6653"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_3_" node-id="23" spreadMethod="pad" x1="568.0968" x2="568.0968" y1="439.4755" y2="282.9947"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_4_" node-id="27" spreadMethod="pad" x1="630.6216" x2="630.6216" y1="462.1455" y2="292.4048"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_5_" node-id="31" spreadMethod="pad" x1="121.9091" x2="121.9091" y1="504.224" y2="353.7106"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_6_" node-id="35" spreadMethod="pad" x1="684.5823" x2="684.5823" y1="487.6186" y2="364.4864"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_7_" node-id="39" spreadMethod="pad" x1="127.8727" x2="127.8727" y1="231.9167" y2="167.3754"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_8_" node-id="43" spreadMethod="pad" x1="644.9412" x2="644.9412" y1="195.0963" y2="130.555"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_9_" node-id="47" spreadMethod="pad" x1="515.1702" x2="515.1702" y1="238.2697" y2="191.5525"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_10_" node-id="51" spreadMethod="pad" x1="401.3875" x2="401.3875" y1="753.7946" y2="401.6656"><stop offset="0.4065" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dae4ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_11_" node-id="57" spreadMethod="pad" x1="192.3171" x2="140.8809" y1="577.2504" y2="515.951"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_12_" node-id="61" spreadMethod="pad" x1="113.2693" x2="177.4561" y1="456.96" y2="456.96"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_13_" node-id="67" spreadMethod="pad" x1="711.1792" x2="663.8138" y1="557.2778" y2="500.8299"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_14_" node-id="71" spreadMethod="pad" x1="638.3875" x2="697.4944" y1="446.5075" y2="446.5075"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_15_" node-id="77" spreadMethod="pad" x1="252.5166" x2="227.0753" y1="458.107" y2="427.7873"><stop offset="0.0000001438503" stop-color="#eaeff6"></stop><stop offset="1" stop-color="#cddae9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_16_" node-id="81" spreadMethod="pad" x1="213.4181" x2="245.1661" y1="398.6093" y2="398.6093"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_17_" node-id="87" spreadMethod="pad" x1="548.1365" x2="482.0446" y1="707.0806" y2="460.4221"><stop offset="0.1887" stop-color="#ffffff"></stop><stop offset="1" stop-color="#bbcbe0"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_18_" node-id="91" spreadMethod="pad" x1="283.3438" x2="529.4313" y1="312.3871" y2="312.3871"><stop offset="0" stop-color="#dde5f0"></stop><stop offset="1" stop-color="#9fb7ce"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_19_" node-id="95" spreadMethod="pad" x1="283.3438" x2="525.6797" y1="309.886" y2="309.886"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_20_" node-id="99" spreadMethod="pad" x1="297.2326" x2="511.7909" y1="307.6511" y2="307.6511"><stop offset="0" stop-color="#b5c7de"></stop><stop offset="1" stop-color="#8dabc6"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_21_" node-id="103" spreadMethod="pad" x1="404.5117" x2="404.5117" y1="529.1269" y2="307.6508"><stop offset="0" stop-color="#a7bed3"></stop><stop offset="0.8156" stop-color="#edf1f8"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_22_" node-id="115" spreadMethod="pad" x1="554.8403" x2="554.8403" y1="468.7226" y2="453.7133"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_23_" node-id="119" spreadMethod="pad" x1="571.7307" x2="576.4164" y1="564.766" y2="469.7379"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_24_" node-id="133" spreadMethod="pad" x1="568.832" x2="568.832" y1="549.6045" y2="495.9055"><stop offset="0" stop-color="#4ea2f4"></stop><stop offset="0.6903" stop-color="#1e77cf"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_25_" node-id="137" spreadMethod="pad" x1="581.9956" x2="581.9956" y1="547.835" y2="493.0521"><stop offset="0" stop-color="#78c8ff"></stop><stop offset="0.6903" stop-color="#2a80e2"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_26_" node-id="143" spreadMethod="pad" x1="5468.224" x2="5514.0283" y1="6329.1772" y2="6336.202"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_27_" node-id="148" spreadMethod="pad" x1="5495.8164" x2="5509.6055" y1="6328.6367" y2="6330.7515"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient></defs><g node-id="491"><g node-id="524"><path d="M 271.39 330.78 L 271.39 327.37 L 241.89 327.37 L 241.89 331.33 L 235.41 331.33 L 235.41 424.16 L 278.46 424.16 L 278.46 330.78 L 271.39 330.78 Z M 274.73 413.52 L 238.69 413.52 L 238.69 410.77 L 274.73 410.77 L 274.73 413.52 Z M 274.73 400.84 L 238.69 400.84 L 238.69 398.09 L 274.73 398.09 L 274.73 400.84 Z M 274.73 388.16 L 238.69 388.16 L 238.69 385.41 L 274.73 385.41 L 274.73 388.16 Z M 274.73 375.82 L 238.69 375.82 L 238.69 373.07 L 274.73 373.07 L 274.73 375.82 Z M 274.73 363.51 L 238.69 363.51 L 238.69 360.76 L 274.73 360.76 L 274.73 363.51 Z M 274.73 350.83 L 238.69 350.83 L 238.69 348.08 L 274.73 348.08 L 274.73 350.83 Z M 274.73 338.49 L 238.69 338.49 L 238.69 335.74 L 274.73 335.74 L 274.73 338.49 Z" fill="url(#SVGID_1_)" fill-rule="nonzero" group-id="10,43" node-id="363" stroke="none" target-height="96.79001" target-width="43.049988" target-x="235.41" target-y="327.37"></path><path d="M 213.41 382.59 L 213.41 274.41 L 180.66 274.41 L 180.66 265.67 L 166.80 265.67 L 166.80 319.00 L 163.07 319.00 L 163.07 482.16 L 221.58 482.16 L 221.58 382.60 L 213.41 382.60 Z M 188.91 414.40 L 180.65 414.40 L 180.65 406.39 L 188.91 406.39 L 188.91 414.40 Z M 188.91 401.87 L 180.65 401.87 L 180.65 393.86 L 188.91 393.86 L 188.91 401.87 Z M 188.91 389.40 L 180.65 389.40 L 180.65 381.39 L 188.91 381.39 L 188.91 389.40 Z M 188.91 376.96 L 180.65 376.96 L 180.65 368.95 L 188.91 368.95 L 188.91 376.96 Z M 188.91 364.43 L 180.65 364.43 L 180.65 356.42 L 188.91 356.42 L 188.91 364.43 Z M 188.91 339.43 L 180.65 339.43 L 180.65 331.42 L 188.91 331.42 L 188.91 339.43 Z M 188.91 326.90 L 180.65 326.90 L 180.65 318.89 L 188.91 318.89 L 188.91 326.90 Z M 188.91 314.42 L 180.65 314.42 L 180.65 306.41 L 188.91 306.41 L 188.91 314.42 Z M 188.91 301.99 L 180.65 301.99 L 180.65 293.98 L 188.91 293.98 L 188.91 301.99 Z M 188.91 289.46 L 180.65 289.46 L 180.65 281.45 L 188.91 281.45 L 188.91 289.46 Z M 201.26 414.40 L 193.00 414.40 L 193.00 406.39 L 201.26 406.39 L 201.26 414.40 Z M 201.26 401.87 L 193.00 401.87 L 193.00 393.86 L 201.26 393.86 L 201.26 401.87 Z M 201.26 389.40 L 193.00 389.40 L 193.00 381.39 L 201.26 381.39 L 201.26 389.40 Z M 201.26 376.96 L 193.00 376.96 L 193.00 368.95 L 201.26 368.95 L 201.26 376.96 Z M 201.26 364.43 L 193.00 364.43 L 193.00 356.42 L 201.26 356.42 L 201.26 364.43 Z M 201.26 339.43 L 193.00 339.43 L 193.00 331.42 L 201.26 331.42 L 201.26 339.43 Z M 201.26 326.90 L 193.00 326.90 L 193.00 318.89 L 201.26 318.89 L 201.26 326.90 Z M 201.26 314.42 L 193.00 314.42 L 193.00 306.41 L 201.26 306.41 L 201.26 314.42 Z M 201.26 301.99 L 193.00 301.99 L 193.00 293.98 L 201.26 293.98 L 201.26 301.99 Z M 201.26 289.46 L 193.00 289.46 L 193.00 281.45 L 201.26 281.45 L 201.26 289.46 Z" fill="url(#SVGID_2_)" fill-rule="nonzero" group-id="10,43" node-id="365" stroke="none" target-height="216.48996" target-width="58.509995" target-x="163.07" target-y="265.67"></path><path d="M 535.71 439.48 C 536.07 434.83 535.71 283.00 535.71 283.00 L 554.24 283.00 L 554.24 316.71 L 583.74 316.71 L 583.74 387.16 L 600.47 387.16 L 600.47 439.48 L 535.71 439.48 Z" fill="url(#SVGID_3_)" fill-rule="nonzero" group-id="10,43" node-id="367" stroke="none" target-height="156.47998" target-width="64.75995" target-x="535.71" target-y="283"></path><path d="M 656.93 371.33 L 656.93 366.48 L 651.93 366.48 L 651.93 324.15 L 639.73 324.15 L 639.73 319.45 L 631.50 319.45 L 631.50 312.54 L 627.21 312.54 L 627.21 292.40 L 624.12 292.40 L 624.12 312.68 L 620.18 312.68 L 620.18 319.59 L 607.98 319.59 L 607.98 330.91 L 600.93 330.91 L 600.93 462.14 L 660.31 462.14 L 660.31 371.32 L 656.93 371.32 Z M 611.42 424.11 L 607.40 424.11 L 607.40 408.87 L 611.42 408.87 L 611.42 424.11 Z M 611.42 405.46 L 607.40 405.46 L 607.40 390.22 L 611.42 390.22 L 611.42 405.46 Z M 611.42 386.81 L 607.40 386.81 L 607.40 371.57 L 611.42 371.57 L 611.42 386.81 Z M 611.42 367.83 L 607.40 367.83 L 607.40 352.59 L 611.42 352.59 L 611.42 367.83 Z M 611.42 348.84 L 607.40 348.84 L 607.40 333.60 L 611.42 333.60 L 611.42 348.84 Z M 619.70 424.11 L 615.68 424.11 L 615.68 408.87 L 619.70 408.87 L 619.70 424.11 Z M 619.70 405.46 L 615.68 405.46 L 615.68 390.22 L 619.70 390.22 L 619.70 405.46 Z M 619.70 386.81 L 615.68 386.81 L 615.68 371.57 L 619.70 371.57 L 619.70 386.81 Z M 619.70 367.83 L 615.68 367.83 L 615.68 352.59 L 619.70 352.59 L 619.70 367.83 Z M 619.70 348.84 L 615.68 348.84 L 615.68 333.60 L 619.70 333.60 L 619.70 348.84 Z M 627.98 424.11 L 623.96 424.11 L 623.96 408.87 L 627.98 408.87 L 627.98 424.11 Z M 627.98 405.46 L 623.96 405.46 L 623.96 390.22 L 627.98 390.22 L 627.98 405.46 Z M 627.98 386.81 L 623.96 386.81 L 623.96 371.57 L 627.98 371.57 L 627.98 386.81 Z M 627.98 367.83 L 623.96 367.83 L 623.96 352.59 L 627.98 352.59 L 627.98 367.83 Z M 627.98 348.84 L 623.96 348.84 L 623.96 333.60 L 627.98 333.60 L 627.98 348.84 Z M 636.26 424.11 L 632.24 424.11 L 632.24 408.87 L 636.26 408.87 L 636.26 424.11 Z M 636.26 405.46 L 632.24 405.46 L 632.24 390.22 L 636.26 390.22 L 636.26 405.46 Z M 636.26 386.81 L 632.24 386.81 L 632.24 371.57 L 636.26 371.57 L 636.26 386.81 Z M 636.26 367.83 L 632.24 367.83 L 632.24 352.59 L 636.26 352.59 L 636.26 367.83 Z M 636.26 348.84 L 632.24 348.84 L 632.24 333.60 L 636.26 333.60 L 636.26 348.84 Z M 644.54 424.11 L 640.52 424.11 L 640.52 408.87 L 644.54 408.87 L 644.54 424.11 Z M 644.54 405.46 L 640.52 405.46 L 640.52 390.22 L 644.54 390.22 L 644.54 405.46 Z M 644.54 386.81 L 640.52 386.81 L 640.52 371.57 L 644.54 371.57 L 644.54 386.81 Z M 644.54 367.83 L 640.52 367.83 L 640.52 352.59 L 644.54 352.59 L 644.54 367.83 Z M 644.54 348.84 L 640.52 348.84 L 640.52 333.60 L 644.54 333.60 L 644.54 348.84 Z" fill="url(#SVGID_4_)" fill-rule="nonzero" group-id="10,43" node-id="369" stroke="none" target-height="169.74002" target-width="59.380005" target-x="600.93" target-y="292.4"></path><path d="M 95.28 504.22 L 95.28 414.68 L 105.54 414.68 L 105.54 368.98 L 140.80 353.71 L 140.80 413.96 L 148.53 413.96 L 148.53 504.22 Z" fill="url(#SVGID_5_)" fill-rule="nonzero" group-id="10,43" node-id="371" stroke="none" target-height="150.51004" target-width="53.250008" target-x="95.27999" target-y="353.71"></path><path d="M 700.05 487.62 L 669.11 487.62 L 669.11 364.49 L 700.05 379.46 Z" fill="url(#SVGID_6_)" fill-rule="nonzero" group-id="10,43" node-id="373" stroke="none" target-height="123.130035" target-width="30.940002" target-x="669.11" target-y="364.48996"></path><path d="M 90.10 190.81 C 90.10 190.81 99.44 165.33 122.40 175.33 C 127.70 169.95 134.26 166.04 143.13 167.80 C 152.00 169.56 157.72 176.21 159.66 180.63 C 162.44 180.50 184.70 181.24 184.70 204.33 C 184.70 227.42 157.76 226.98 155.81 225.15 C 153.41 227.29 141.87 238.90 127.87 225.65 C 124.84 228.24 114.94 239.21 99.29 224.07 C 92.04 227.10 74.81 229.43 71.47 211.64 C 68.13 193.86 85.27 188.83 90.10 190.81 Z" fill="url(#SVGID_7_)" fill-rule="nonzero" group-id="10,43" node-id="375" stroke="none" target-height="73.880005" target-width="116.570015" target-x="68.13" target-y="165.33"></path><path d="M 607.17 153.99 C 607.17 153.99 616.51 128.51 639.47 138.51 C 644.77 133.13 651.33 129.22 660.20 130.98 C 669.07 132.75 674.79 139.39 676.73 143.81 C 679.51 143.68 701.77 144.42 701.77 167.51 C 701.77 190.60 674.83 190.16 672.88 188.33 C 670.48 190.47 658.94 202.08 644.94 188.83 C 641.91 191.42 632.01 202.39 616.36 187.25 C 609.11 190.28 591.88 192.61 588.54 174.82 C 585.20 157.04 602.33 152.01 607.17 153.99 Z" fill="url(#SVGID_8_)" fill-rule="nonzero" group-id="10,43" node-id="377" stroke="none" target-height="73.880005" target-width="116.57007" target-x="585.2" target-y="128.51"></path><path d="M 487.83 208.51 C 487.83 208.51 494.59 190.06 511.21 197.31 C 515.05 193.41 519.79 190.58 526.22 191.86 C 532.64 193.14 536.78 197.95 538.18 201.14 C 540.19 201.05 556.31 201.58 556.31 218.29 C 556.31 235.00 536.81 234.68 535.40 233.36 C 533.66 234.91 525.31 243.31 515.17 233.73 C 512.98 235.60 505.81 243.55 494.49 232.59 C 489.24 234.78 476.77 236.47 474.35 223.59 C 471.93 210.72 484.33 207.08 487.83 208.51 Z" fill="url(#SVGID_9_)" fill-rule="nonzero" group-id="10,43" node-id="379" stroke="none" target-height="53.490005" target-width="84.380005" target-x="471.93" target-y="190.06"></path><path d="M 772.37 577.73 C 772.37 624.42 733.28 669.21 663.71 702.22 C 594.14 735.24 499.78 753.79 401.39 753.79 C 303.00 753.79 208.64 735.24 139.07 702.22 C 69.50 669.21 30.41 624.42 30.41 577.73 C 30.41 531.04 69.50 486.25 139.07 453.24 C 208.64 420.22 303.00 401.67 401.39 401.67 C 499.78 401.67 594.14 420.22 663.71 453.24 C 733.28 486.25 772.37 531.04 772.37 577.73 Z" fill="url(#SVGID_10_)" fill-rule="nonzero" group-id="10,43" node-id="381" stroke="none" target-height="352.12" target-width="741.95996" target-x="30.410004" target-y="401.66998"></path></g><g node-id="525"><g node-id="528"><path d="M 147.34 556.20 C 147.34 556.20 143.81 561.21 149.71 568.67 C 154.97 575.31 163.28 574.02 166.04 571.89 C 166.89 577.67 173.98 589.85 185.20 582.96 C 195.75 576.49 190.67 566.65 187.30 562.78 C 193.89 560.92 198.80 545.13 183.68 539.68 C 185.92 533.16 186.32 530.21 183.04 524.35 C 179.88 518.71 174.69 517.81 166.41 521.24 L 154.43 526.29 L 146.80 512.05 L 142.72 514.41 L 151.52 528.01 L 139.86 533.86 C 139.86 533.86 129.89 537.76 134.19 548.46 C 138.18 558.37 147.34 556.20 147.34 556.20 Z" fill="url(#SVGID_11_)" fill-rule="nonzero" group-id="10,44,47" node-id="387" stroke="none" target-height="77.79999" target-width="68.90999" target-x="129.89" target-y="512.05"></path><path d="M 127.04 495.48 L 163.10 495.48 C 163.10 495.48 174.75 495.81 177.07 482.50 C 179.62 467.89 168.99 465.88 168.99 465.88 C 168.99 465.88 175.39 462.94 174.00 451.89 C 172.61 440.84 162.88 439.45 158.83 439.96 C 159.49 433.41 160.87 418.58 145.47 418.43 C 130.60 418.28 130.69 433.25 131.80 439.15 C 126.50 439.21 110.49 447.16 121.75 464.60 C 115.62 469.85 113.03 472.88 113.30 480.45 C 113.57 488.03 118.20 495.48 127.04 495.48 Z" fill="url(#SVGID_12_)" fill-rule="nonzero" group-id="10,44,47" node-id="389" stroke="none" target-height="77.53" target-width="69.13001" target-x="110.49" target-y="418.28"></path><path d="M 162.21 475.25 L 146.83 485.37 L 146.41 475.58 L 156.14 464.12 L 146.26 472.10 L 144.98 442.20 L 144.04 472.30 L 133.66 464.04 L 143.94 475.36 L 143.63 485.43 L 127.81 473.81 L 143.51 489.07 L 142.72 514.42 L 148.07 514.42 L 147.00 489.22 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="10,44,47" node-id="391" stroke="none" target-height="72.21997" target-width="34.40001" target-x="127.81" target-y="442.2"></path></g><g node-id="529"><path d="M 669.76 537.89 C 669.76 537.89 666.51 542.51 671.94 549.37 C 676.78 555.49 684.44 554.30 686.98 552.33 C 687.76 557.65 694.30 568.86 704.63 562.53 C 714.34 556.57 709.67 547.51 706.56 543.95 C 712.63 542.24 717.15 527.69 703.23 522.68 C 705.30 516.68 705.67 513.96 702.64 508.57 C 699.73 503.38 694.95 502.54 687.33 505.71 L 676.29 510.36 L 669.26 497.25 L 665.51 499.42 L 673.61 511.94 L 662.88 517.33 C 662.88 517.33 653.70 520.92 657.66 530.78 C 661.32 539.90 669.76 537.89 669.76 537.89 Z" fill="url(#SVGID_13_)" fill-rule="nonzero" group-id="10,44,48" node-id="396" stroke="none" target-height="71.609955" target-width="63.450012" target-x="653.7" target-y="497.25003"></path><path d="M 651.07 481.98 L 684.27 481.98 C 684.27 481.98 695.00 482.29 697.13 470.03 C 699.47 456.58 689.69 454.73 689.69 454.73 C 689.69 454.73 695.59 452.02 694.30 441.85 C 693.01 431.68 684.06 430.39 680.33 430.87 C 680.94 424.84 682.21 411.18 668.03 411.04 C 654.34 410.90 654.42 424.68 655.44 430.12 C 650.56 430.17 635.81 437.49 646.19 453.56 C 640.55 458.39 638.16 461.19 638.41 468.15 C 638.66 475.12 642.93 481.98 651.07 481.98 Z" fill="url(#SVGID_14_)" fill-rule="nonzero" group-id="10,44,48" node-id="398" stroke="none" target-height="71.389984" target-width="63.659973" target-x="635.81" target-y="410.9"></path><path d="M 683.45 463.35 L 669.29 472.67 L 668.91 463.65 L 677.86 453.10 L 668.77 460.45 L 667.59 432.92 L 666.72 460.63 L 657.17 453.02 L 666.63 463.45 L 666.34 472.73 L 651.78 462.02 L 666.24 476.07 L 665.51 499.42 L 670.44 499.42 L 669.44 476.21 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="10,44,48" node-id="400" stroke="none" target-height="66.49997" target-width="31.669983" target-x="651.78" target-y="432.92"></path></g><g node-id="530"><path d="M 230.27 447.69 C 230.27 447.69 228.52 450.17 231.44 453.86 C 234.04 457.15 238.15 456.51 239.52 455.45 C 239.94 458.31 243.45 464.33 249.00 460.93 C 254.22 457.73 251.71 452.86 250.04 450.95 C 253.30 450.03 255.73 442.22 248.25 439.53 C 249.36 436.31 249.56 434.85 247.93 431.95 C 246.37 429.16 243.80 428.71 239.71 430.41 L 233.78 432.91 L 230.01 425.87 L 227.99 427.04 L 232.34 433.76 L 226.57 436.65 C 226.57 436.65 221.64 438.58 223.77 443.87 C 225.74 448.77 230.27 447.69 230.27 447.69 Z" fill="url(#SVGID_15_)" fill-rule="nonzero" group-id="10,44,49" node-id="405" stroke="none" target-height="38.45999" target-width="34.08998" target-x="221.64001" target-y="425.87"></path><path d="M 220.23 417.66 L 238.06 417.66 C 238.06 417.66 243.82 417.82 244.97 411.24 C 246.23 404.01 240.97 403.02 240.97 403.02 C 240.97 403.02 244.14 401.56 243.45 396.10 C 242.76 390.64 237.95 389.95 235.95 390.20 C 236.28 386.96 236.96 379.62 229.34 379.55 C 221.98 379.48 222.03 386.88 222.58 389.80 C 219.96 389.83 212.04 393.76 217.61 402.39 C 214.58 404.98 213.29 406.49 213.43 410.23 C 213.56 413.98 215.86 417.66 220.23 417.66 Z" fill="url(#SVGID_16_)" fill-rule="nonzero" group-id="10,44,49" node-id="407" stroke="none" target-height="38.339996" target-width="34.190002" target-x="212.04" target-y="379.48"></path><path d="M 237.62 407.65 L 230.02 412.66 L 229.81 407.82 L 234.62 402.15 L 229.74 406.10 L 229.10 391.31 L 228.64 406.20 L 223.51 402.11 L 228.59 407.71 L 228.43 412.69 L 220.61 406.94 L 228.38 414.49 L 227.98 427.03 L 230.63 427.03 L 230.10 414.56 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="10,44,49" node-id="409" stroke="none" target-height="35.72" target-width="17.009995" target-x="220.61" target-y="391.31"></path></g></g><g node-id="526"><path d="M 321.66 503.40 L 306.57 528.65 L 468.31 728.47 L 725.32 645.26 L 593.89 555.78 L 575.13 554.36 L 573.91 556.82 L 607.37 583.72 L 544.16 551.29 L 502.45 526.25 L 483.28 499.89 Z" fill="url(#SVGID_17_)" fill-rule="nonzero" group-id="10,45" node-id="414" stroke="none" target-height="228.57996" target-width="418.75" target-x="306.57" target-y="499.89"></path><path d="M 519.41 359.11 L 290.62 359.11 C 286.60 359.11 283.34 355.85 283.34 351.83 L 283.34 272.94 C 283.34 268.92 286.60 265.66 290.62 265.66 L 522.15 265.66 C 526.17 265.66 529.43 268.92 529.43 272.94 L 529.43 349.08 C 529.43 354.62 524.94 359.11 519.41 359.11 Z" fill="url(#SVGID_18_)" fill-rule="nonzero" group-id="10,45" node-id="416" stroke="none" target-height="93.45001" target-width="246.09" target-x="283.34" target-y="265.66"></path><path d="M 518.40 354.11 L 290.62 354.11 C 286.60 354.11 283.34 350.85 283.34 346.83 L 283.34 272.94 C 283.34 268.92 286.60 265.66 290.62 265.66 L 518.40 265.66 C 522.42 265.66 525.68 268.92 525.68 272.94 L 525.68 346.83 C 525.68 350.85 522.42 354.11 518.40 354.11 Z" fill="url(#SVGID_19_)" fill-rule="nonzero" group-id="10,45" node-id="418" stroke="none" target-height="88.44998" target-width="242.34" target-x="283.34" target-y="265.66"></path><path d="M 507.32 313.24 L 301.70 313.24 C 299.23 313.24 297.23 311.24 297.23 308.77 L 297.23 306.53 C 297.23 304.06 299.23 302.06 301.70 302.06 L 507.32 302.06 C 509.79 302.06 511.79 304.06 511.79 306.53 L 511.79 308.77 C 511.79 311.24 509.79 313.24 507.32 313.24 Z" fill="url(#SVGID_20_)" fill-rule="nonzero" group-id="10,45" node-id="420" stroke="none" target-height="11.179993" target-width="214.56" target-x="297.23" target-y="302.06"></path><path d="M 306.57 307.65 L 306.57 424.03 L 306.57 476.85 L 306.57 528.64 C 307.37 528.95 309.50 529.12 310.48 529.12 C 314.99 529.12 317.36 525.58 320.10 521.48 C 323.19 516.86 326.69 511.62 333.88 511.62 C 341.06 511.62 344.57 516.86 347.65 521.49 C 350.39 525.59 352.75 529.13 357.26 529.13 C 361.77 529.13 364.14 525.59 366.88 521.49 C 369.97 516.87 373.47 511.63 380.66 511.63 C 387.85 511.63 391.35 516.87 394.44 521.50 C 397.18 525.60 399.54 529.14 404.06 529.14 C 408.57 529.14 410.94 525.60 413.68 521.50 C 416.77 516.88 420.27 511.63 427.46 511.63 C 434.64 511.63 438.15 516.87 441.23 521.50 C 443.97 525.60 446.33 529.14 450.84 529.14 C 455.35 529.14 457.72 525.60 460.46 521.50 C 463.55 516.88 467.05 511.64 474.24 511.64 C 481.43 511.64 484.93 516.88 488.02 521.50 C 490.76 525.60 493.13 529.14 497.64 529.14 C 500.20 529.14 500.82 528.00 502.46 526.26 L 502.46 476.86 L 502.46 424.04 L 502.46 307.65 L 306.57 307.65 Z" fill="url(#SVGID_21_)" fill-rule="nonzero" group-id="10,45" node-id="422" stroke="none" target-height="221.49002" target-width="195.88998" target-x="306.57" target-y="307.65"></path><path d="M 334.62 334.13 L 349.31 334.13 L 349.31 347.70 L 334.62 347.70 Z" fill="#ffffff" fill-rule="nonzero" group-id="10,45" node-id="424" stroke="none" target-height="13.570007" target-width="14.690002" target-x="334.62" target-y="334.13"></path><path d="M 364.07 334.13 L 475.42 334.13 L 475.42 347.70 L 364.07 347.70 Z" fill="#ffffff" fill-rule="nonzero" group-id="10,45" node-id="426" stroke="none" target-height="13.570007" target-width="111.350006" target-x="364.07" target-y="334.13"></path><path d="M 334.62 371.94 L 349.31 371.94 L 349.31 385.51 L 334.62 385.51 Z" fill="#ffffff" fill-rule="nonzero" group-id="10,45" node-id="428" stroke="none" target-height="13.570007" target-width="14.690002" target-x="334.62" target-y="371.93997"></path><path d="M 364.07 371.94 L 475.42 371.94 L 475.42 385.51 L 364.07 385.51 Z" fill="#ffffff" fill-rule="nonzero" group-id="10,45" node-id="430" stroke="none" target-height="13.570007" target-width="111.350006" target-x="364.07" target-y="371.93997"></path><path d="M 334.62 409.80 L 349.31 409.80 L 349.31 423.37 L 334.62 423.37 Z" fill="#ffffff" fill-rule="nonzero" group-id="10,45" node-id="432" stroke="none" target-height="13.570007" target-width="14.690002" target-x="334.62" target-y="409.80002"></path><path d="M 364.07 409.80 L 475.42 409.80 L 475.42 423.37 L 364.07 423.37 Z" fill="#ffffff" fill-rule="nonzero" group-id="10,45" node-id="434" stroke="none" target-height="13.570007" target-width="111.350006" target-x="364.07" target-y="409.80002"></path></g><g node-id="527"><path d="M 557.10 456.02 C 557.10 456.02 544.63 467.14 543.67 469.25 C 542.63 471.55 544.78 486.12 545.80 487.27 C 546.82 488.42 548.44 485.16 548.44 485.16 C 548.44 485.16 548.72 479.37 548.64 474.19 C 548.62 472.72 548.53 471.34 549.21 470.90 C 551.94 469.16 559.03 464.01 559.03 464.01 C 559.03 464.01 561.18 454.74 557.10 456.02 Z" fill="#ffbe92" fill-rule="nonzero" group-id="10,46" node-id="438" stroke="none" target-height="33.679993" target-width="18.549988" target-x="542.63" target-y="454.74002"></path><path d="M 550.33 459.64 C 550.33 459.64 557.67 453.81 559.02 453.71 C 560.16 459.70 557.96 467.65 557.96 467.65 L 553.29 468.72 L 550.33 459.64 Z" fill="url(#SVGID_22_)" fill-rule="nonzero" group-id="10,46" node-id="440" stroke="none" target-height="15.009979" target-width="9.829956" target-x="550.33" target-y="453.71"></path><path d="M 627.62 525.46 L 597.63 549.40 C 594.30 552.05 589.46 551.51 586.80 548.18 L 544.03 494.59 C 541.38 491.26 541.92 486.42 545.25 483.76 L 575.24 459.82 C 578.57 457.17 583.41 457.71 586.07 461.04 L 628.84 514.63 C 631.49 517.96 630.94 522.80 627.62 525.46 Z" fill="url(#SVGID_23_)" fill-rule="nonzero" group-id="10,46" node-id="442" stroke="none" target-height="94.879974" target-width="90.109985" target-x="541.38" target-y="457.17"></path><path d="M 577.48 515.87 L 567.51 503.48 C 566.85 502.66 566.98 501.45 567.80 500.79 L 567.80 500.79 C 568.62 500.13 569.83 500.26 570.49 501.08 L 580.46 513.47 C 581.12 514.29 580.99 515.50 580.17 516.16 L 580.17 516.16 C 579.35 516.82 578.14 516.69 577.48 515.87 Z" fill="#f7f8f8" fill-rule="nonzero" group-id="10,46" node-id="444" stroke="none" target-height="16.690002" target-width="14.27002" target-x="566.85" target-y="500.13"></path><path d="M 582.65 489.56 L 573.00 477.57 C 571.78 476.05 572.02 473.84 573.54 472.62 L 577.09 469.76 C 578.61 468.54 580.82 468.78 582.04 470.30 L 591.69 482.29 C 592.91 483.81 592.67 486.02 591.15 487.24 L 587.60 490.10 C 586.09 491.32 583.87 491.08 582.65 489.56 Z" fill="#aec1d6" fill-rule="nonzero" group-id="10,46" node-id="446" stroke="none" target-height="22.779999" target-width="21.129944" target-x="571.78" target-y="468.54"></path><path d="M 582.50 488.19 L 572.85 476.20 C 571.63 474.68 571.87 472.47 573.39 471.25 L 576.94 468.39 C 578.46 467.17 580.67 467.41 581.89 468.93 L 591.54 480.92 C 592.76 482.44 592.52 484.65 591.00 485.87 L 587.45 488.73 C 585.93 489.95 583.72 489.71 582.50 488.19 Z" fill="#f7f8f8" fill-rule="nonzero" group-id="10,46" node-id="448" stroke="none" target-height="22.779999" target-width="21.130005" target-x="571.63" target-y="467.17"></path><path d="M 592.75 534.84 L 582.78 522.45 C 582.12 521.63 582.25 520.42 583.07 519.76 L 583.07 519.76 C 583.89 519.10 585.10 519.23 585.76 520.05 L 595.73 532.44 C 596.39 533.26 596.26 534.47 595.44 535.13 L 595.44 535.13 C 594.62 535.80 593.42 535.67 592.75 534.84 Z" fill="#f7f8f8" fill-rule="nonzero" group-id="10,46" node-id="450" stroke="none" target-height="16.700012" target-width="14.27002" target-x="582.12" target-y="519.1"></path><path d="M 581.74 546.46 C 581.74 546.46 581.09 547.56 583.65 551.06 C 580.42 552.54 575.88 551.61 575.88 551.61 L 575.51 545.41 L 581.74 546.46 Z" fill="#ffbe92" fill-rule="nonzero" group-id="10,46" node-id="452" stroke="none" target-height="7.130005" target-width="8.140015" target-x="575.51" target-y="545.41"></path><path d="M 574.25 555.52 L 593.80 554.59 C 593.80 554.59 594.52 548.68 586.83 549.28 C 585.28 549.40 583.91 547.71 582.63 547.82 C 579.82 550.61 574.71 550.42 574.71 550.42 L 574.25 555.52 Z" fill="#f8b62d" fill-rule="nonzero" group-id="10,46" node-id="454" stroke="none" target-height="7.8099976" target-width="20.27002" target-x="574.25" target-y="547.71"></path><path d="M 573.91 556.82 L 582.56 557.17 L 582.80 555.59 L 593.89 555.78 L 594.05 554.44 L 574.14 553.90 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="10,46" node-id="456" stroke="none" target-height="3.2699585" target-width="20.140015" target-x="573.91" target-y="553.9"></path><path d="M 545.03 546.46 C 545.03 546.46 543.12 547.06 544.16 551.29 C 540.62 551.42 537.68 548.98 537.68 548.98 L 539.68 543.09 L 545.03 546.46 Z" fill="#ffbe92" fill-rule="nonzero" group-id="10,46" node-id="458" stroke="none" target-height="8.329956" target-width="7.3500366" target-x="537.68" target-y="543.09"></path><path d="M 534.70 551.96 L 553.09 558.62 C 553.09 558.62 555.98 553.42 548.66 551.02 C 547.18 550.54 546.55 548.44 545.33 548.05 C 541.69 549.56 537.04 547.41 537.04 547.41 L 534.70 551.96 Z" fill="#f8b62d" fill-rule="nonzero" group-id="10,46" node-id="460" stroke="none" target-height="11.210022" target-width="21.279968" target-x="534.7" target-y="547.41"></path><path d="M 533.91 553.04 L 541.75 556.70 L 542.57 555.32 L 552.72 559.76 L 553.38 558.58 L 535.22 550.42 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="10,46" node-id="462" stroke="none" target-height="9.340027" target-width="19.470032" target-x="533.91" target-y="550.42"></path><path d="M 569.38 496.24 C 569.38 496.24 577.05 510.99 578.21 519.33 C 579.37 527.67 582.18 547.83 582.18 547.83 L 575.50 549.61 C 575.50 549.61 569.89 526.16 569.20 523.73 C 568.52 521.30 562.02 512.72 562.02 512.72 L 552.53 495.91 L 569.38 496.24 Z" fill="url(#SVGID_24_)" fill-rule="nonzero" group-id="10,46" node-id="464" stroke="none" target-height="53.69998" target-width="29.649963" target-x="552.53" target-y="495.91"></path><path d="M 570.23 495.63 C 570.23 495.63 568.90 506.80 562.95 516.63 C 557.00 526.46 544.20 547.84 544.20 547.84 L 538.17 546.54 C 538.17 546.54 544.54 526.83 548.17 519.37 C 551.80 511.92 550.70 507.44 550.49 505.46 C 550.28 503.48 548.28 500.99 550.70 495.47 C 553.12 489.94 570.23 495.63 570.23 495.63 Z" fill="url(#SVGID_25_)" fill-rule="nonzero" group-id="10,46" node-id="466" stroke="none" target-height="57.900024" target-width="32.059998" target-x="538.17" target-y="489.94"></path><path d="M 573.68 443.24 C 573.68 443.24 575.67 447.31 572.67 452.55 C 571.97 453.53 570.68 455.21 568.40 453.30 C 568.19 453.21 567.98 453.50 567.86 453.79 C 567.74 454.08 566.03 459.11 566.03 459.11 L 558.66 457.69 C 558.66 457.69 564.60 445.56 565.04 443.03 C 565.27 441.73 567.10 439.74 569.85 440.16 C 572.62 440.58 573.68 443.24 573.68 443.24 Z" fill="#ffbe92" fill-rule="nonzero" group-id="10,46" node-id="468" stroke="none" target-height="19.369965" target-width="17.01001" target-x="558.66" target-y="439.74002"></path><path d="M 573.14 437.64 C 573.14 437.64 574.16 436.38 576.02 437.81 C 577.88 439.24 576.53 440.87 576.37 441.31 C 576.21 441.75 576.42 442.16 577.08 442.03 C 577.74 441.90 578.86 441.94 579.33 443.48 C 579.80 445.02 577.49 448.37 575.15 447.53 C 572.82 446.69 571.85 445.22 571.16 444.17 C 570.47 443.12 569.00 441.74 568.55 442.73 C 568.10 443.72 567.73 445.90 567.32 445.49 C 566.93 445.10 567.63 442.93 566.29 442.66 C 564.95 442.39 564.67 444.33 565.34 445.55 C 565.63 446.06 565.62 445.98 565.40 446.40 C 565.18 446.82 565.16 447.14 564.57 447.57 C 563.97 448.01 563.72 448.26 563.48 447.40 C 563.24 446.54 562.78 444.92 563.80 441.86 C 564.14 441.01 563.87 440.90 563.51 440.32 C 563.15 439.73 562.65 438.82 563.54 437.83 C 564.43 436.83 565.04 437.10 565.87 437.30 C 566.70 437.50 566.72 437.19 566.83 436.70 C 566.94 436.20 567.92 434.42 569.57 434.78 C 571.22 435.14 571.74 436.22 572.00 437.09 C 572.26 437.95 572.82 437.84 573.14 437.64 Z" fill="#171c61" fill-rule="nonzero" group-id="10,46" node-id="470" stroke="none" target-height="13.949982" target-width="17.149963" target-x="562.65" target-y="434.42"></path><path d="M 553.78 468.80 C 553.78 468.80 555.26 452.42 560.36 453.62 C 565.46 454.82 571.25 456.05 572.20 470.49 C 572.43 475.93 571.00 484.04 571.12 488.33 C 571.24 492.62 572.91 497.68 570.59 499.11 C 568.28 500.53 555.91 499.73 552.71 499.02 C 549.50 498.30 547.13 498.09 547.80 493.50 C 548.47 488.91 552.72 477.52 553.78 468.80 Z" fill="url(#SVGID_26_)" fill-rule="nonzero" group-id="10,46" node-id="472" stroke="none" target-height="48.110016" target-width="25.779968" target-x="547.13" target-y="452.41998"></path><path d="M 567.93 466.53 C 567.93 466.53 575.27 473.57 578.00 476.83 C 578.46 477.38 579.13 477.69 579.84 477.68 C 583.58 477.63 592.71 477.86 594.34 477.95 C 596.07 477.00 596.55 475.13 597.63 475.31 C 598.71 475.48 599.71 475.28 600.46 476.36 C 601.22 477.44 601.67 479.03 601.36 479.73 C 601.05 480.44 598.38 481.70 596.35 481.91 C 594.32 482.12 580.68 483.59 579.00 483.19 C 577.32 482.79 570.65 480.27 564.09 471.16 C 563.95 466.94 567.93 466.53 567.93 466.53 Z" fill="#ffbe92" fill-rule="nonzero" group-id="10,46" node-id="474" stroke="none" target-height="17.059937" target-width="37.71997" target-x="563.95" target-y="466.53003"></path><path d="M 570.33 465.98 L 563.38 472.70 C 563.38 472.70 555.42 464.12 561.01 459.79 C 566.60 455.46 570.33 465.98 570.33 465.98 Z" fill="url(#SVGID_27_)" fill-rule="nonzero" group-id="10,46" node-id="476" stroke="none" target-height="17.24002" target-width="14.910034" target-x="555.42" target-y="455.46"></path><path d="M 606.02 503.40 C 606.02 504.98 605.39 506.50 604.27 507.61 C 603.16 508.73 601.64 509.36 600.06 509.36 C 598.48 509.36 596.96 508.73 595.85 507.61 C 594.73 506.50 594.10 504.98 594.10 503.40 C 594.10 501.82 594.73 500.30 595.85 499.19 C 596.96 498.07 598.48 497.44 600.06 497.44 C 601.64 497.44 603.16 498.07 604.27 499.19 C 605.39 500.30 606.02 501.82 606.02 503.40 Z" fill="#aec1d6" fill-rule="nonzero" group-id="10,46" node-id="478" stroke="none" target-height="11.920013" target-width="11.920044" target-x="594.1" target-y="497.44"></path><path d="M 605.73 501.86 C 605.73 503.44 605.10 504.96 603.98 506.07 C 602.87 507.19 601.35 507.82 599.77 507.82 C 598.19 507.82 596.67 507.19 595.56 506.07 C 594.44 504.96 593.81 503.44 593.81 501.86 C 593.81 500.28 594.44 498.76 595.56 497.65 C 596.67 496.53 598.19 495.90 599.77 495.90 C 601.35 495.90 602.87 496.53 603.98 497.65 C 605.10 498.76 605.73 500.28 605.73 501.86 Z" fill="#f7f8f8" fill-rule="nonzero" group-id="10,46" node-id="480" stroke="none" target-height="11.920013" target-width="11.920044" target-x="593.81" target-y="495.89996"></path></g></g></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg height="800" node-id="1" sillyvg="true" template-height="800" template-width="800" version="1.1" viewBox="0 0 800 800" width="800" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs node-id="172"><linearGradient gradientUnits="objectBoundingBox" id="SVGID_1_" node-id="21" spreadMethod="pad" x1="257.2187" x2="257.2187" y1="416.7411" y2="319.9529"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_2_" node-id="25" spreadMethod="pad" x1="192.6017" x2="192.6017" y1="474.733" y2="258.244"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_3_" node-id="29" spreadMethod="pad" x1="568.3833" x2="568.3833" y1="432.0542" y2="275.5734"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_4_" node-id="33" spreadMethod="pad" x1="630.9081" x2="630.9081" y1="454.7242" y2="284.9835"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_5_" node-id="37" spreadMethod="pad" x1="122.1956" x2="122.1956" y1="496.8027" y2="346.2893"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_6_" node-id="41" spreadMethod="pad" x1="684.8688" x2="684.8688" y1="480.1973" y2="357.065"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_7_" node-id="45" spreadMethod="pad" x1="128.1592" x2="128.1592" y1="224.4954" y2="159.9541"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_8_" node-id="49" spreadMethod="pad" x1="645.2277" x2="645.2277" y1="187.6749" y2="123.1337"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_9_" node-id="53" spreadMethod="pad" x1="515.4567" x2="515.4567" y1="230.8484" y2="184.1312"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_10_" node-id="57" spreadMethod="pad" x1="401.674" x2="401.674" y1="746.3732" y2="394.2444"><stop offset="0.4065" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dae4ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_11_" node-id="63" spreadMethod="pad" x1="192.6036" x2="141.1674" y1="569.829" y2="508.5298"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_12_" node-id="67" spreadMethod="pad" x1="113.5558" x2="177.7426" y1="449.5387" y2="449.5387"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_13_" node-id="73" spreadMethod="pad" x1="711.4657" x2="664.1003" y1="549.8564" y2="493.4086"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_14_" node-id="77" spreadMethod="pad" x1="638.674" x2="697.7809" y1="439.0862" y2="439.0862"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_15_" node-id="83" spreadMethod="pad" x1="252.8031" x2="227.3618" y1="450.6857" y2="420.366"><stop offset="0.0000001438503" stop-color="#eaeff6"></stop><stop offset="1" stop-color="#cddae9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_16_" node-id="87" spreadMethod="pad" x1="213.7046" x2="245.4526" y1="391.1879" y2="391.1879"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_17_" node-id="93" spreadMethod="pad" x1="537.9337" x2="445.4891" y1="702.793" y2="380.4003"><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="97" spreadMethod="pad" x1="248.0848" x2="523.8126" y1="342.3759" y2="342.3759"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#a7bed3"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_19_" node-id="101" spreadMethod="pad" x1="292.6555" x2="568.3833" y1="387.7963" y2="387.7963"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#a7bed3"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_20_" node-id="105" spreadMethod="pad" x1="368.9556" x2="568.3833" y1="434.3968" y2="434.3968"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_21_" node-id="109" spreadMethod="pad" x1="292.6555" x2="513.9545" y1="430.5593" y2="430.5593"><stop offset="0.067" stop-color="#ffffff"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_22_" node-id="113" spreadMethod="pad" x1="452.1983" x2="504.0772" y1="341.4023" y2="341.4023"><stop offset="0" stop-color="#ffffff"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_23_" node-id="123" spreadMethod="pad" x1="579.1113" x2="614.1082" y1="550.5175" y2="550.5175"><stop offset="0" stop-color="#4ea2f4"></stop><stop offset="0.6903" stop-color="#1e77cf"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_24_" node-id="127" spreadMethod="pad" x1="582.1901" x2="629.238" y1="548.2892" y2="548.2892"><stop offset="0" stop-color="#78c8ff"></stop><stop offset="0.6903" stop-color="#2a80e2"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_25_" node-id="134" spreadMethod="pad" x1="7972.236" x2="7972.236" y1="1994.9803" y2="1968.8289"><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="8001.7983" x2="8001.7983" y1="1982.8364" y2="1969.5857"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient></defs><g node-id="460"><g node-id="487"><path d="M 271.68 323.36 L 271.68 319.95 L 242.18 319.95 L 242.18 323.91 L 235.70 323.91 L 235.70 416.74 L 278.75 416.74 L 278.75 323.36 L 271.68 323.36 Z M 275.02 406.10 L 238.98 406.10 L 238.98 403.35 L 275.02 403.35 L 275.02 406.10 Z M 275.02 393.42 L 238.98 393.42 L 238.98 390.67 L 275.02 390.67 L 275.02 393.42 Z M 275.02 380.74 L 238.98 380.74 L 238.98 377.99 L 275.02 377.99 L 275.02 380.74 Z M 275.02 368.40 L 238.98 368.40 L 238.98 365.65 L 275.02 365.65 L 275.02 368.40 Z M 275.02 356.09 L 238.98 356.09 L 238.98 353.34 L 275.02 353.34 L 275.02 356.09 Z M 275.02 343.41 L 238.98 343.41 L 238.98 340.66 L 275.02 340.66 L 275.02 343.41 Z M 275.02 331.07 L 238.98 331.07 L 238.98 328.32 L 275.02 328.32 L 275.02 331.07 Z" fill="url(#SVGID_1_)" fill-rule="nonzero" group-id="16,43" node-id="348" stroke="none" target-height="96.78998" target-width="43.050003" target-x="235.7" target-y="319.95"></path><path d="M 213.69 375.17 L 213.69 266.99 L 180.94 266.99 L 180.94 258.25 L 167.08 258.25 L 167.08 311.58 L 163.35 311.58 L 163.35 474.74 L 221.86 474.74 L 221.86 375.18 L 213.69 375.18 Z M 189.20 406.98 L 180.94 406.98 L 180.94 398.97 L 189.20 398.97 L 189.20 406.98 Z M 189.20 394.45 L 180.94 394.45 L 180.94 386.44 L 189.20 386.44 L 189.20 394.45 Z M 189.20 381.98 L 180.94 381.98 L 180.94 373.97 L 189.20 373.97 L 189.20 381.98 Z M 189.20 369.54 L 180.94 369.54 L 180.94 361.53 L 189.20 361.53 L 189.20 369.54 Z M 189.20 357.01 L 180.94 357.01 L 180.94 349.00 L 189.20 349.00 L 189.20 357.01 Z M 189.20 332.01 L 180.94 332.01 L 180.94 324.00 L 189.20 324.00 L 189.20 332.01 Z M 189.20 319.48 L 180.94 319.48 L 180.94 311.47 L 189.20 311.47 L 189.20 319.48 Z M 189.20 307.00 L 180.94 307.00 L 180.94 299.00 L 189.20 299.00 L 189.20 307.00 Z M 189.20 294.56 L 180.94 294.56 L 180.94 286.55 L 189.20 286.55 L 189.20 294.56 Z M 189.20 282.03 L 180.94 282.03 L 180.94 274.02 L 189.20 274.02 L 189.20 282.03 Z M 201.55 406.98 L 193.29 406.98 L 193.29 398.97 L 201.55 398.97 L 201.55 406.98 Z M 201.55 394.45 L 193.29 394.45 L 193.29 386.44 L 201.55 386.44 L 201.55 394.45 Z M 201.55 381.98 L 193.29 381.98 L 193.29 373.97 L 201.55 373.97 L 201.55 381.98 Z M 201.55 369.54 L 193.29 369.54 L 193.29 361.53 L 201.55 361.53 L 201.55 369.54 Z M 201.55 357.01 L 193.29 357.01 L 193.29 349.00 L 201.55 349.00 L 201.55 357.01 Z M 201.55 332.01 L 193.29 332.01 L 193.29 324.00 L 201.55 324.00 L 201.55 332.01 Z M 201.55 319.48 L 193.29 319.48 L 193.29 311.47 L 201.55 311.47 L 201.55 319.48 Z M 201.55 307.00 L 193.29 307.00 L 193.29 299.00 L 201.55 299.00 L 201.55 307.00 Z M 201.55 294.56 L 193.29 294.56 L 193.29 286.55 L 201.55 286.55 L 201.55 294.56 Z M 201.55 282.03 L 193.29 282.03 L 193.29 274.02 L 201.55 274.02 L 201.55 282.03 Z" fill="url(#SVGID_2_)" fill-rule="nonzero" group-id="16,43" node-id="350" stroke="none" target-height="216.48999" target-width="58.509995" target-x="163.35" target-y="258.25"></path><path d="M 536.00 432.05 C 536.36 427.40 536.00 275.57 536.00 275.57 L 554.53 275.57 L 554.53 309.28 L 584.03 309.28 L 584.03 379.73 L 600.76 379.73 L 600.76 432.05 L 536.00 432.05 Z" fill="url(#SVGID_3_)" fill-rule="nonzero" group-id="16,43" node-id="352" stroke="none" target-height="156.47995" target-width="64.76001" target-x="536" target-y="275.57"></path><path d="M 657.22 363.91 L 657.22 359.06 L 652.22 359.06 L 652.22 316.73 L 640.02 316.73 L 640.02 312.03 L 631.79 312.03 L 631.79 305.12 L 627.50 305.12 L 627.50 284.98 L 624.41 284.98 L 624.41 305.26 L 620.47 305.26 L 620.47 312.17 L 608.27 312.17 L 608.27 323.49 L 601.22 323.49 L 601.22 454.72 L 660.60 454.72 L 660.60 363.90 L 657.22 363.90 Z M 611.70 416.69 L 607.68 416.69 L 607.68 401.45 L 611.70 401.45 L 611.70 416.69 Z M 611.70 398.04 L 607.68 398.04 L 607.68 382.80 L 611.70 382.80 L 611.70 398.04 Z M 611.70 379.39 L 607.68 379.39 L 607.68 364.15 L 611.70 364.15 L 611.70 379.39 Z M 611.70 360.41 L 607.68 360.41 L 607.68 345.17 L 611.70 345.17 L 611.70 360.41 Z M 611.70 341.42 L 607.68 341.42 L 607.68 326.18 L 611.70 326.18 L 611.70 341.42 Z M 619.98 416.69 L 615.96 416.69 L 615.96 401.45 L 619.98 401.45 L 619.98 416.69 Z M 619.98 398.04 L 615.96 398.04 L 615.96 382.80 L 619.98 382.80 L 619.98 398.04 Z M 619.98 379.39 L 615.96 379.39 L 615.96 364.15 L 619.98 364.15 L 619.98 379.39 Z M 619.98 360.41 L 615.96 360.41 L 615.96 345.17 L 619.98 345.17 L 619.98 360.41 Z M 619.98 341.42 L 615.96 341.42 L 615.96 326.18 L 619.98 326.18 L 619.98 341.42 Z M 628.26 416.69 L 624.24 416.69 L 624.24 401.45 L 628.26 401.45 L 628.26 416.69 Z M 628.26 398.04 L 624.24 398.04 L 624.24 382.80 L 628.26 382.80 L 628.26 398.04 Z M 628.26 379.39 L 624.24 379.39 L 624.24 364.15 L 628.26 364.15 L 628.26 379.39 Z M 628.26 360.41 L 624.24 360.41 L 624.24 345.17 L 628.26 345.17 L 628.26 360.41 Z M 628.26 341.42 L 624.24 341.42 L 624.24 326.18 L 628.26 326.18 L 628.26 341.42 Z M 636.54 416.69 L 632.52 416.69 L 632.52 401.45 L 636.54 401.45 L 636.54 416.69 Z M 636.54 398.04 L 632.52 398.04 L 632.52 382.80 L 636.54 382.80 L 636.54 398.04 Z M 636.54 379.39 L 632.52 379.39 L 632.52 364.15 L 636.54 364.15 L 636.54 379.39 Z M 636.54 360.41 L 632.52 360.41 L 632.52 345.17 L 636.54 345.17 L 636.54 360.41 Z M 636.54 341.42 L 632.52 341.42 L 632.52 326.18 L 636.54 326.18 L 636.54 341.42 Z M 644.82 416.69 L 640.80 416.69 L 640.80 401.45 L 644.82 401.45 L 644.82 416.69 Z M 644.82 398.04 L 640.80 398.04 L 640.80 382.80 L 644.82 382.80 L 644.82 398.04 Z M 644.82 379.39 L 640.80 379.39 L 640.80 364.15 L 644.82 364.15 L 644.82 379.39 Z M 644.82 360.41 L 640.80 360.41 L 640.80 345.17 L 644.82 345.17 L 644.82 360.41 Z M 644.82 341.42 L 640.80 341.42 L 640.80 326.18 L 644.82 326.18 L 644.82 341.42 Z" fill="url(#SVGID_4_)" fill-rule="nonzero" group-id="16,43" node-id="354" stroke="none" target-height="169.74002" target-width="59.380005" target-x="601.22" target-y="284.98"></path><path d="M 95.57 496.80 L 95.57 407.26 L 105.82 407.26 L 105.82 361.56 L 141.09 346.29 L 141.09 406.54 L 148.82 406.54 L 148.82 496.80 Z" fill="url(#SVGID_5_)" fill-rule="nonzero" group-id="16,43" node-id="356" stroke="none" target-height="150.50998" target-width="53.250008" target-x="95.57" target-y="346.29"></path><path d="M 700.34 480.20 L 669.40 480.20 L 669.40 357.07 L 700.34 372.04 Z" fill="url(#SVGID_6_)" fill-rule="nonzero" group-id="16,43" node-id="358" stroke="none" target-height="123.130035" target-width="30.940063" target-x="669.4" target-y="357.06998"></path><path d="M 90.39 183.39 C 90.39 183.39 99.73 157.91 122.69 167.91 C 127.99 162.53 134.55 158.62 143.42 160.38 C 152.29 162.14 158.01 168.79 159.95 173.21 C 162.73 173.08 184.99 173.82 184.99 196.91 C 184.99 220.00 158.05 219.56 156.10 217.73 C 153.70 219.87 142.16 231.48 128.16 218.23 C 125.13 220.82 115.23 231.79 99.58 216.65 C 92.33 219.68 75.10 222.01 71.76 204.22 C 68.42 186.44 85.55 181.41 90.39 183.39 Z" fill="url(#SVGID_7_)" fill-rule="nonzero" group-id="16,43" node-id="360" stroke="none" target-height="73.87999" target-width="116.57001" target-x="68.42" target-y="157.91"></path><path d="M 607.46 146.57 C 607.46 146.57 616.80 121.09 639.76 131.09 C 645.06 125.71 651.62 121.80 660.49 123.56 C 669.36 125.33 675.08 131.97 677.02 136.39 C 679.80 136.26 702.06 137.00 702.06 160.09 C 702.06 183.18 675.12 182.74 673.17 180.91 C 670.77 183.05 659.23 194.66 645.23 181.41 C 642.20 184.00 632.30 194.97 616.65 179.83 C 609.40 182.86 592.17 185.19 588.83 167.40 C 585.48 149.62 602.62 144.59 607.46 146.57 Z" fill="url(#SVGID_8_)" fill-rule="nonzero" group-id="16,43" node-id="362" stroke="none" target-height="73.88002" target-width="116.58002" target-x="585.48" target-y="121.09"></path><path d="M 488.12 201.09 C 488.12 201.09 494.88 182.64 511.50 189.89 C 515.34 185.99 520.08 183.16 526.51 184.44 C 532.93 185.72 537.07 190.53 538.47 193.72 C 540.48 193.63 556.60 194.16 556.60 210.87 C 556.60 227.58 537.10 227.26 535.69 225.94 C 533.95 227.49 525.60 235.89 515.46 226.31 C 513.27 228.18 506.10 236.13 494.78 225.17 C 489.53 227.36 477.06 229.05 474.64 216.17 C 472.21 203.30 484.62 199.66 488.12 201.09 Z" fill="url(#SVGID_9_)" fill-rule="nonzero" group-id="16,43" node-id="364" stroke="none" target-height="53.48999" target-width="84.389984" target-x="472.21" target-y="182.64"></path><path d="M 772.65 570.31 C 772.65 617.00 733.56 661.79 663.99 694.80 C 594.42 727.82 500.06 746.37 401.67 746.37 C 303.28 746.37 208.92 727.82 139.35 694.80 C 69.78 661.79 30.69 617.00 30.69 570.31 C 30.69 523.62 69.78 478.83 139.35 445.82 C 208.92 412.80 303.28 394.25 401.67 394.25 C 500.06 394.25 594.42 412.80 663.99 445.82 C 733.56 478.83 772.65 523.62 772.65 570.31 Z" fill="url(#SVGID_10_)" fill-rule="nonzero" group-id="16,43" node-id="366" stroke="none" target-height="352.12" target-width="741.96" target-x="30.690002" target-y="394.25"></path></g><g node-id="488"><g node-id="491"><path d="M 147.62 548.78 C 147.62 548.78 144.09 553.79 149.99 561.25 C 155.25 567.89 163.56 566.60 166.32 564.47 C 167.17 570.25 174.26 582.43 185.48 575.54 C 196.03 569.07 190.95 559.23 187.58 555.36 C 194.17 553.50 199.08 537.71 183.96 532.26 C 186.20 525.74 186.60 522.79 183.32 516.93 C 180.16 511.29 174.97 510.39 166.69 513.82 L 154.71 518.87 L 147.08 504.63 L 143.00 506.99 L 151.80 520.59 L 140.14 526.44 C 140.14 526.44 130.17 530.34 134.47 541.04 C 138.46 550.95 147.62 548.78 147.62 548.78 Z" fill="url(#SVGID_11_)" fill-rule="nonzero" group-id="16,44,47" node-id="372" stroke="none" target-height="77.80002" target-width="68.91" target-x="130.17" target-y="504.62997"></path><path d="M 127.32 488.06 L 163.38 488.06 C 163.38 488.06 175.03 488.39 177.35 475.08 C 179.90 460.47 169.27 458.46 169.27 458.46 C 169.27 458.46 175.67 455.52 174.28 444.47 C 172.89 433.42 163.16 432.03 159.11 432.54 C 159.77 425.99 161.15 411.16 145.75 411.01 C 130.88 410.86 130.97 425.83 132.08 431.73 C 126.78 431.79 110.77 439.74 122.03 457.18 C 115.90 462.43 113.31 465.46 113.58 473.03 C 113.85 480.61 118.49 488.06 127.32 488.06 Z" fill="url(#SVGID_12_)" fill-rule="nonzero" group-id="16,44,47" node-id="374" stroke="none" target-height="77.53003" target-width="69.12999" target-x="110.76999" target-y="410.86"></path><path d="M 162.50 467.82 L 147.12 477.94 L 146.70 468.16 L 156.42 456.70 L 146.55 464.68 L 145.27 434.78 L 144.33 464.88 L 133.95 456.62 L 144.23 467.94 L 143.91 478.01 L 128.10 466.39 L 143.80 481.64 L 143.01 507.00 L 148.36 507.00 L 147.28 481.80 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="16,44,47" node-id="376" stroke="none" target-height="72.22" target-width="34.399994" target-x="128.1" target-y="434.78"></path></g><g node-id="492"><path d="M 670.04 530.47 C 670.04 530.47 666.79 535.09 672.22 541.95 C 677.06 548.07 684.72 546.88 687.26 544.91 C 688.04 550.23 694.58 561.44 704.91 555.11 C 714.62 549.15 709.95 540.09 706.84 536.53 C 712.91 534.82 717.43 520.27 703.51 515.26 C 705.58 509.26 705.95 506.54 702.92 501.15 C 700.01 495.96 695.23 495.12 687.61 498.29 L 676.57 502.94 L 669.54 489.83 L 665.79 492.00 L 673.89 504.52 L 663.16 509.91 C 663.16 509.91 653.98 513.50 657.94 523.36 C 661.61 532.47 670.04 530.47 670.04 530.47 Z" fill="url(#SVGID_13_)" fill-rule="nonzero" group-id="16,44,48" node-id="381" stroke="none" target-height="71.610016" target-width="63.450012" target-x="653.98" target-y="489.83"></path><path d="M 651.35 474.56 L 684.55 474.56 C 684.55 474.56 695.28 474.87 697.41 462.61 C 699.75 449.16 689.97 447.31 689.97 447.31 C 689.97 447.31 695.87 444.60 694.58 434.43 C 693.29 424.26 684.34 422.97 680.61 423.45 C 681.22 417.42 682.49 403.76 668.31 403.62 C 654.62 403.48 654.70 417.26 655.72 422.70 C 650.84 422.75 636.09 430.07 646.47 446.14 C 640.83 450.97 638.44 453.77 638.69 460.73 C 638.95 467.70 643.22 474.56 651.35 474.56 Z" fill="url(#SVGID_14_)" fill-rule="nonzero" group-id="16,44,48" node-id="383" stroke="none" target-height="71.389984" target-width="63.659973" target-x="636.09" target-y="403.48"></path><path d="M 683.74 455.92 L 669.58 465.24 L 669.19 456.23 L 678.15 445.68 L 669.06 453.03 L 667.88 425.49 L 667.01 453.21 L 657.45 445.60 L 666.92 456.03 L 666.63 465.31 L 652.06 454.60 L 666.52 468.65 L 665.79 492.00 L 670.72 492.00 L 669.73 468.79 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="16,44,48" node-id="385" stroke="none" target-height="66.51001" target-width="31.679993" target-x="652.06" target-y="425.49"></path></g><g node-id="493"><path d="M 230.55 440.27 C 230.55 440.27 228.80 442.75 231.72 446.44 C 234.32 449.73 238.43 449.09 239.80 448.03 C 240.22 450.89 243.73 456.91 249.28 453.51 C 254.50 450.31 251.99 445.44 250.32 443.53 C 253.58 442.61 256.01 434.80 248.53 432.11 C 249.64 428.89 249.84 427.43 248.21 424.53 C 246.65 421.74 244.08 421.29 239.99 422.99 L 234.06 425.49 L 230.29 418.45 L 228.27 419.62 L 232.62 426.34 L 226.85 429.23 C 226.85 429.23 221.92 431.16 224.05 436.45 C 226.02 441.35 230.55 440.27 230.55 440.27 Z" fill="url(#SVGID_15_)" fill-rule="nonzero" group-id="16,44,49" node-id="390" stroke="none" target-height="38.45996" target-width="34.090027" target-x="221.91998" target-y="418.45"></path><path d="M 220.51 410.24 L 238.34 410.24 C 238.34 410.24 244.10 410.40 245.25 403.82 C 246.51 396.59 241.25 395.60 241.25 395.60 C 241.25 395.60 244.42 394.14 243.73 388.68 C 243.04 383.22 238.23 382.53 236.23 382.78 C 236.56 379.54 237.24 372.20 229.62 372.13 C 222.26 372.06 222.31 379.46 222.86 382.38 C 220.24 382.41 212.32 386.34 217.89 394.97 C 214.86 397.56 213.57 399.07 213.71 402.81 C 213.85 406.55 216.15 410.24 220.51 410.24 Z" fill="url(#SVGID_16_)" fill-rule="nonzero" group-id="16,44,49" node-id="392" stroke="none" target-height="38.339996" target-width="34.189987" target-x="212.32" target-y="372.06"></path><path d="M 237.91 400.23 L 230.30 405.24 L 230.10 400.40 L 234.91 394.73 L 230.02 398.68 L 229.39 383.89 L 228.92 398.77 L 223.79 394.69 L 228.88 400.29 L 228.72 405.27 L 220.90 399.52 L 228.66 407.07 L 228.27 419.61 L 230.92 419.61 L 230.39 407.14 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="16,44,49" node-id="394" stroke="none" target-height="35.71994" target-width="17.00998" target-x="220.90001" target-y="383.89"></path></g></g><g node-id="489"><path d="M 565.07 481.32 C 572.75 485.17 724.41 615.00 724.41 615.00 L 423.39 735.64 L 249.92 436.48 L 536.00 456.45 L 565.07 481.32 Z" fill="url(#SVGID_17_)" fill-rule="nonzero" group-id="16,45" node-id="400" stroke="none" target-height="299.16" target-width="474.49" target-x="249.92" target-y="436.48"></path><path d="M 501.80 449.69 L 270.09 449.69 C 257.93 449.69 248.08 439.84 248.08 427.68 L 248.08 257.07 C 248.08 244.91 257.93 235.06 270.09 235.06 L 501.80 235.06 C 513.96 235.06 523.81 244.91 523.81 257.07 L 523.81 427.68 C 523.81 439.84 513.96 449.69 501.80 449.69 Z" fill="url(#SVGID_18_)" fill-rule="nonzero" group-id="16,45" node-id="402" stroke="none" target-height="214.63" target-width="275.72998" target-x="248.08" target-y="235.06"></path><path d="M 546.37 491.73 L 314.67 491.73 C 302.51 491.73 292.66 481.88 292.66 469.72 L 292.66 305.88 C 292.66 293.72 302.51 283.87 314.67 283.87 L 546.38 283.87 C 558.54 283.87 568.39 293.72 568.39 305.88 L 568.39 469.72 C 568.38 481.87 558.53 491.73 546.37 491.73 Z" fill="url(#SVGID_19_)" fill-rule="nonzero" group-id="16,45" node-id="404" stroke="none" target-height="207.86002" target-width="275.73" target-x="292.66" target-y="283.87"></path><path d="M 568.38 474.26 L 568.38 377.06 L 368.95 454.44 L 390.98 491.72 L 550.92 491.72 C 560.56 491.73 568.38 483.91 568.38 474.26 Z" fill="url(#SVGID_20_)" fill-rule="nonzero" group-id="16,45" node-id="406" stroke="none" target-height="114.67001" target-width="199.43" target-x="368.95" target-y="377.06"></path><path d="M 389.62 369.39 L 292.66 421.38 L 292.66 474.26 C 292.66 483.91 300.48 491.72 310.12 491.72 L 513.95 491.72 L 389.62 369.39 Z" fill="url(#SVGID_21_)" fill-rule="nonzero" group-id="16,45" node-id="408" stroke="none" target-height="122.32999" target-width="221.29001" target-x="292.66" target-y="369.39"></path><path d="M 504.08 341.40 C 504.08 355.73 492.47 367.34 478.14 367.34 C 463.81 367.34 452.20 355.73 452.20 341.40 C 452.20 327.07 463.81 315.46 478.14 315.46 C 492.47 315.46 504.08 327.07 504.08 341.40 Z" fill="url(#SVGID_22_)" fill-rule="nonzero" group-id="16,45" node-id="410" stroke="none" target-height="51.880005" target-width="51.880005" target-x="452.2" target-y="315.46"></path></g><g node-id="490"><path d="M 582.01 554.80 C 582.01 554.80 582.77 555.83 580.56 559.56 C 583.92 560.72 588.35 559.35 588.35 559.35 L 588.11 553.14 L 582.01 554.80 Z" fill="#ffbe92" fill-rule="nonzero" group-id="16,46" node-id="415" stroke="none" target-height="7.579956" target-width="7.789978" target-x="580.56" target-y="553.14"></path><path d="M 590.81 563.56 L 571.27 564.55 C 571.27 564.55 569.98 558.74 577.69 558.59 C 579.25 558.56 580.45 556.74 581.73 556.73 C 584.80 559.24 589.87 558.54 589.87 558.54 L 590.81 563.56 Z" fill="#f8b62d" fill-rule="nonzero" group-id="16,46" node-id="417" stroke="none" target-height="7.8200073" target-width="20.830017" target-x="569.98" target-y="556.73"></path><path d="M 591.27 564.82 L 582.70 566.02 L 582.31 564.47 L 571.29 565.74 L 571.00 564.43 L 590.76 561.94 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="16,46" node-id="419" stroke="none" target-height="4.080017" target-width="20.27002" target-x="571" target-y="561.94"></path><path d="M 604.27 484.98 C 604.27 484.98 602.20 489.01 605.09 494.31 C 605.77 495.30 607.03 497.01 609.34 495.14 C 609.56 495.05 609.76 495.35 609.87 495.64 C 609.98 495.93 611.59 501.00 611.59 501.00 L 618.98 499.73 C 618.98 499.73 613.28 487.48 612.90 484.95 C 612.69 483.65 610.91 481.62 608.15 481.98 C 605.39 482.34 604.27 484.98 604.27 484.98 Z" fill="#ffbe92" fill-rule="nonzero" group-id="16,46" node-id="421" stroke="none" target-height="19.380005" target-width="16.779968" target-x="602.2" target-y="481.62"></path><path d="M 604.93 479.39 C 604.93 479.39 603.93 478.11 602.04 479.51 C 600.15 480.91 601.47 482.56 601.62 483.00 C 601.77 483.44 601.55 483.85 600.90 483.71 C 600.24 483.57 599.13 483.59 598.62 485.11 C 598.11 486.63 600.36 490.03 602.71 489.24 C 605.06 488.45 606.05 486.99 606.77 485.96 C 607.49 484.93 608.98 483.58 609.41 484.57 C 609.84 485.57 610.16 487.76 610.59 487.35 C 610.99 486.97 610.33 484.78 611.67 484.54 C 613.01 484.30 613.25 486.25 612.56 487.44 C 612.26 487.95 612.27 487.86 612.48 488.29 C 612.69 488.72 612.71 489.03 613.29 489.48 C 613.88 489.93 614.13 490.19 614.39 489.34 C 614.65 488.49 615.14 486.87 614.18 483.79 C 613.86 482.94 614.13 482.83 614.50 482.25 C 614.87 481.67 615.39 480.77 614.52 479.76 C 613.65 478.75 613.03 479.00 612.20 479.19 C 611.37 479.38 611.35 479.06 611.25 478.57 C 611.15 478.07 610.20 476.26 608.55 476.59 C 606.90 476.92 606.35 477.98 606.07 478.85 C 605.79 479.72 605.24 479.60 604.93 479.39 Z" fill="#171c61" fill-rule="nonzero" group-id="16,46" node-id="423" stroke="none" target-height="13.929993" target-width="17.28003" target-x="598.11" target-y="476.26"></path><path d="M 611.96 532.19 C 611.26 531.84 584.02 519.99 578.72 525.08 C 573.42 530.18 581.74 556.29 581.74 556.29 L 589.11 555.77 L 588.15 537.87 L 602.27 546.48 L 611.96 532.19 Z" fill="url(#SVGID_23_)" fill-rule="nonzero" group-id="16,46" node-id="425" stroke="none" target-height="36.299988" target-width="38.54004" target-x="573.42" target-y="519.99"></path><path d="M 607.40 534.71 C 607.40 534.71 579.00 552.80 582.49 562.95 C 582.49 562.95 583.28 567.55 592.17 566.04 C 601.06 564.53 615.41 559.21 615.41 559.21 L 615.88 552.12 C 615.88 552.12 627.59 552.42 629.06 541.32 C 630.84 527.85 618.98 527.94 607.40 534.71 Z" fill="url(#SVGID_24_)" fill-rule="nonzero" group-id="16,46" node-id="427" stroke="none" target-height="39.700012" target-width="51.840027" target-x="579" target-y="527.85"></path><path d="M 620.45 550.97 L 620.46 568.88 C 620.46 568.88 619.31 569.91 618.11 570.16 C 616.82 570.43 615.49 569.86 615.73 568.44 C 615.97 567.00 617.58 565.76 615.52 563.22 C 614.54 562.01 613.43 560.89 613.29 559.75 C 615.90 556.80 615.38 551.71 615.38 551.71 L 620.45 550.97 Z" fill="#f8b62d" fill-rule="nonzero" group-id="16,46" node-id="429" stroke="none" target-height="19.460022" target-width="7.170044" target-x="613.29" target-y="550.97"></path><path d="M 621.73 550.56 L 622.63 559.16 L 621.06 559.49 C 621.06 559.49 621.59 566.36 621.51 567.23 C 621.43 568.09 619.77 569.96 619.39 570.17 C 619.01 570.38 617.81 570.20 617.81 570.20 C 617.81 570.20 620.29 567.53 620.22 566.76 C 620.15 565.99 618.83 550.96 618.83 550.96 L 621.73 550.56 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="16,46" node-id="431" stroke="none" target-height="19.820007" target-width="4.8200073" target-x="617.81" target-y="550.56"></path><path d="M 610.06 502.15 C 610.06 502.15 599.84 510.44 595.87 514.17 C 596.03 511.66 598.48 501.14 597.95 498.60 C 597.94 496.43 597.98 495.20 596.68 494.39 C 595.38 493.58 593.65 492.78 592.75 492.24 C 591.90 491.73 590.74 492.40 592.22 493.84 C 593.24 494.84 591.23 493.79 590.18 493.06 C 589.13 492.33 587.93 491.11 587.11 491.47 C 586.11 491.91 587.11 495.35 589.30 496.57 C 591.49 497.79 593.27 498.09 593.27 500.28 C 593.27 502.47 586.65 522.42 591.19 524.15 C 595.73 525.88 613.09 509.23 613.09 509.23 L 610.06 502.15 Z" fill="#f2ad7e" fill-rule="nonzero" group-id="16,46" node-id="433" stroke="none" target-height="34.77002" target-width="26.980042" target-x="586.11" target-y="491.11"></path><path d="M 627.85 507.84 C 627.85 507.84 624.50 492.24 615.39 495.41 C 610.44 497.14 606.21 501.00 604.86 511.84 C 604.39 517.27 605.45 525.43 605.14 529.71 C 604.82 533.99 603.59 535.84 607.56 537.07 C 610.16 537.87 619.92 543.80 623.19 544.07 C 627.02 544.39 630.50 544.30 630.53 539.67 C 630.56 534.31 629.57 516.17 627.85 507.84 Z" fill="url(#SVGID_25_)" fill-rule="nonzero" group-id="16,46" node-id="435" stroke="none" target-height="52.150024" target-width="26.96997" target-x="603.59" target-y="492.24"></path><path d="M 601.41 494.30 C 600.84 490.76 598.57 489.47 598.57 489.47 L 598.57 487.66 L 598.57 486.38 L 598.57 486.23 L 598.45 486.25 C 598.44 486.25 598.43 486.23 598.41 486.23 L 594.89 486.23 C 594.80 486.23 594.74 486.30 594.74 486.38 L 594.74 487.12 L 592.63 487.12 C 592.24 487.12 591.93 487.43 591.93 487.82 L 591.93 487.95 C 591.93 488.34 591.62 488.65 591.23 488.65 L 583.48 488.65 C 582.93 488.65 582.49 489.09 582.49 489.64 L 582.49 494.01 C 582.49 494.52 582.87 494.94 583.38 494.99 L 586.38 495.30 L 598.35 497.98 C 598.35 497.98 598.59 493.67 598.45 491.23 C 599.74 492.00 599.89 494.73 599.89 494.73 L 600.61 499.28 L 601.76 499.66 C 601.75 499.66 601.84 499.09 601.41 494.30 Z" fill="#171c61" fill-rule="nonzero" group-id="16,46" node-id="437" stroke="none" target-height="13.430023" target-width="19.350037" target-x="582.49" target-y="486.23"></path><path d="M 609.11 505.33 C 609.11 505.33 598.94 512.17 594.97 515.89 C 595.13 513.38 597.00 502.30 596.48 499.76 C 596.47 497.59 596.51 496.36 595.21 495.55 C 593.91 494.74 592.18 493.94 591.28 493.40 C 590.43 492.89 589.27 493.56 590.75 495.00 C 591.77 495.99 589.76 494.95 588.71 494.22 C 587.66 493.49 586.46 492.27 585.64 492.63 C 584.64 493.07 585.64 496.51 587.83 497.73 C 590.02 498.95 591.80 499.25 591.80 501.44 C 591.80 503.63 585.18 523.58 589.72 525.31 C 594.26 527.04 611.83 513.39 611.83 513.39 L 609.11 505.33 Z" fill="#ffbe92" fill-rule="nonzero" group-id="16,46" node-id="439" stroke="none" target-height="34.76999" target-width="27.190002" target-x="584.64" target-y="492.27"></path><path d="M 605.71 506.63 L 611.33 516.17 C 611.33 516.17 622.73 509.13 617.88 502.65 C 613.03 496.17 605.71 506.63 605.71 506.63 Z" fill="url(#SVGID_26_)" fill-rule="nonzero" group-id="16,46" node-id="441" stroke="none" target-height="19.99997" target-width="17.019958" target-x="605.71" target-y="496.17"></path><path d="M 615.39 551.70 C 615.39 551.70 598.87 555.38 594.08 559.59 C 600.72 558.18 615.39 551.70 615.39 551.70 Z" fill="#4286e7" fill-rule="nonzero" group-id="16,46" node-id="443" stroke="none" target-height="7.8900146" target-width="21.309998" target-x="594.08" target-y="551.7"></path></g></g></svg>