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="173"><linearGradient gradientUnits="objectBoundingBox" id="SVGID_1_" node-id="14" spreadMethod="pad" x1="255.5862" x2="255.5862" y1="426.1587" y2="329.3705"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_2_" node-id="18" spreadMethod="pad" x1="190.9693" x2="190.9693" y1="484.1506" y2="267.6616"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_3_" node-id="22" spreadMethod="pad" x1="566.7509" x2="566.7509" y1="441.4717" y2="284.991"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_4_" node-id="26" spreadMethod="pad" x1="629.2757" x2="629.2757" y1="464.1417" y2="294.4011"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_5_" node-id="30" spreadMethod="pad" x1="120.5632" x2="120.5632" y1="506.2202" y2="355.7068"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_6_" node-id="34" spreadMethod="pad" x1="683.2363" x2="683.2363" y1="489.6148" y2="366.4826"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_7_" node-id="38" spreadMethod="pad" x1="126.5268" x2="126.5268" y1="233.9129" y2="169.3717"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_8_" node-id="42" spreadMethod="pad" x1="643.5953" x2="643.5953" y1="197.0925" y2="132.5513"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_9_" node-id="46" spreadMethod="pad" x1="513.8243" x2="513.8243" y1="240.266" y2="193.5488"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_10_" node-id="50" spreadMethod="pad" x1="400.0416" x2="400.0416" y1="755.7908" y2="403.6619"><stop offset="0.4065" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dae4ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_11_" node-id="56" spreadMethod="pad" x1="190.9712" x2="139.5349" y1="579.2466" y2="517.9473"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_12_" node-id="60" spreadMethod="pad" x1="111.9234" x2="176.1102" y1="458.9563" y2="458.9563"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_13_" node-id="66" spreadMethod="pad" x1="709.8333" x2="662.4678" y1="559.274" y2="502.8261"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_14_" node-id="70" spreadMethod="pad" x1="637.0415" x2="696.1484" y1="448.5038" y2="448.5038"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_15_" node-id="76" spreadMethod="pad" x1="251.1707" x2="225.7294" y1="460.1033" y2="429.7835"><stop offset="0.0000001438503" stop-color="#eaeff6"></stop><stop offset="1" stop-color="#cddae9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_16_" node-id="80" spreadMethod="pad" x1="212.0722" x2="243.8202" y1="400.6055" y2="400.6055"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_17_" node-id="86" spreadMethod="pad" x1="527.9703" x2="455.895" y1="708.4512" y2="457.0948"><stop offset="0.1887" stop-color="#ffffff"></stop><stop offset="1" stop-color="#bbcbe0"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_18_" node-id="90" spreadMethod="pad" x1="264.8584" x2="560.6429" y1="412.6717" y2="412.6717"><stop offset="0" stop-color="#dde5f0"></stop><stop offset="1" stop-color="#9fb7ce"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_19_" node-id="94" spreadMethod="pad" x1="546.0043" x2="560.6429" y1="423.0945" y2="423.0945"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_20_" node-id="98" spreadMethod="pad" x1="369.0192" x2="542.3521" y1="341.2912" y2="341.2912"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_21_" node-id="102" spreadMethod="pad" x1="430.5006" x2="430.5006" y1="422.08" y2="245.6464"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_22_" node-id="106" spreadMethod="pad" x1="409.2008" x2="476.6866" y1="296.4685" y2="296.4685"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_23_" node-id="110" spreadMethod="pad" x1="264.8584" x2="546.0043" y1="419.7757" y2="419.7757"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_24_" node-id="114" spreadMethod="pad" x1="434.4932" x2="546.0043" y1="427.3102" y2="427.3102"><stop offset="0" stop-color="#bdcde2"></stop><stop offset="1" stop-color="#9fb3cc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_25_" node-id="118" spreadMethod="pad" x1="449.5622" x2="467.6451" y1="427.3102" y2="427.3102"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_26_" node-id="129" spreadMethod="pad" x1="408.9443" x2="386.9762" y1="555.663" y2="495.3061"><stop offset="0" stop-color="#78c8ff"></stop><stop offset="0.6903" stop-color="#2a80e2"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_27_" node-id="135" spreadMethod="pad" x1="395.5743" x2="395.5743" y1="502.1913" y2="454.648"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient></defs><g node-id="449"><g node-id="483"><path d="M 270.04 332.78 L 270.04 329.37 L 240.54 329.37 L 240.54 333.33 L 234.06 333.33 L 234.06 426.16 L 277.11 426.16 L 277.11 332.78 L 270.04 332.78 Z M 273.38 415.51 L 237.34 415.51 L 237.34 412.76 L 273.38 412.76 L 273.38 415.51 Z M 273.38 402.84 L 237.34 402.84 L 237.34 400.09 L 273.38 400.09 L 273.38 402.84 Z M 273.38 390.16 L 237.34 390.16 L 237.34 387.41 L 273.38 387.41 L 273.38 390.16 Z M 273.38 377.82 L 237.34 377.82 L 237.34 375.07 L 273.38 375.07 L 273.38 377.82 Z M 273.38 365.50 L 237.34 365.50 L 237.34 362.75 L 273.38 362.75 L 273.38 365.50 Z M 273.38 352.83 L 237.34 352.83 L 237.34 350.08 L 273.38 350.08 L 273.38 352.83 Z M 273.38 340.48 L 237.34 340.48 L 237.34 337.73 L 273.38 337.73 L 273.38 340.48 Z" fill="url(#SVGID_1_)" fill-rule="nonzero" group-id="9,43" node-id="348" stroke="none" target-height="96.79001" target-width="43.049988" target-x="234.06" target-y="329.37"></path><path d="M 212.06 384.59 L 212.06 276.40 L 179.31 276.40 L 179.31 267.66 L 165.45 267.66 L 165.45 320.99 L 161.72 320.99 L 161.72 484.15 L 220.23 484.15 L 220.23 384.59 L 212.06 384.59 Z M 187.56 416.40 L 179.30 416.40 L 179.30 408.39 L 187.56 408.39 L 187.56 416.40 Z M 187.56 403.87 L 179.30 403.87 L 179.30 395.86 L 187.56 395.86 L 187.56 403.87 Z M 187.56 391.39 L 179.30 391.39 L 179.30 383.38 L 187.56 383.38 L 187.56 391.39 Z M 187.56 378.96 L 179.30 378.96 L 179.30 370.95 L 187.56 370.95 L 187.56 378.96 Z M 187.56 366.42 L 179.30 366.42 L 179.30 358.41 L 187.56 358.41 L 187.56 366.42 Z M 187.56 341.42 L 179.30 341.42 L 179.30 333.41 L 187.56 333.41 L 187.56 341.42 Z M 187.56 328.89 L 179.30 328.89 L 179.30 320.88 L 187.56 320.88 L 187.56 328.89 Z M 187.56 316.42 L 179.30 316.42 L 179.30 308.41 L 187.56 308.41 L 187.56 316.42 Z M 187.56 303.98 L 179.30 303.98 L 179.30 295.97 L 187.56 295.97 L 187.56 303.98 Z M 187.56 291.45 L 179.30 291.45 L 179.30 283.44 L 187.56 283.44 L 187.56 291.45 Z M 199.91 416.40 L 191.65 416.40 L 191.65 408.39 L 199.91 408.39 L 199.91 416.40 Z M 199.91 403.87 L 191.65 403.87 L 191.65 395.86 L 199.91 395.86 L 199.91 403.87 Z M 199.91 391.39 L 191.65 391.39 L 191.65 383.38 L 199.91 383.38 L 199.91 391.39 Z M 199.91 378.96 L 191.65 378.96 L 191.65 370.95 L 199.91 370.95 L 199.91 378.96 Z M 199.91 366.42 L 191.65 366.42 L 191.65 358.41 L 199.91 358.41 L 199.91 366.42 Z M 199.91 341.42 L 191.65 341.42 L 191.65 333.41 L 199.91 333.41 L 199.91 341.42 Z M 199.91 328.89 L 191.65 328.89 L 191.65 320.88 L 199.91 320.88 L 199.91 328.89 Z M 199.91 316.42 L 191.65 316.42 L 191.65 308.41 L 199.91 308.41 L 199.91 316.42 Z M 199.91 303.98 L 191.65 303.98 L 191.65 295.97 L 199.91 295.97 L 199.91 303.98 Z M 199.91 291.45 L 191.65 291.45 L 191.65 283.44 L 199.91 283.44 L 199.91 291.45 Z" fill="url(#SVGID_2_)" fill-rule="nonzero" group-id="9,43" node-id="350" stroke="none" target-height="216.48999" target-width="58.509995" target-x="161.72" target-y="267.66"></path><path d="M 534.37 441.47 C 534.73 436.82 534.37 284.99 534.37 284.99 L 552.90 284.99 L 552.90 318.70 L 582.40 318.70 L 582.40 389.15 L 599.13 389.15 L 599.13 441.47 L 534.37 441.47 Z" fill="url(#SVGID_3_)" fill-rule="nonzero" group-id="9,43" node-id="352" stroke="none" target-height="156.48001" target-width="64.76001" target-x="534.37" target-y="284.99"></path><path d="M 655.58 373.33 L 655.58 368.48 L 650.58 368.48 L 650.58 326.15 L 638.38 326.15 L 638.38 321.45 L 630.15 321.45 L 630.15 314.54 L 625.86 314.54 L 625.86 294.40 L 622.77 294.40 L 622.77 314.68 L 618.83 314.68 L 618.83 321.59 L 606.63 321.59 L 606.63 332.91 L 599.58 332.91 L 599.58 464.14 L 658.96 464.14 L 658.96 373.32 L 655.58 373.32 Z M 610.07 426.11 L 606.05 426.11 L 606.05 410.87 L 610.07 410.87 L 610.07 426.11 Z M 610.07 407.46 L 606.05 407.46 L 606.05 392.22 L 610.07 392.22 L 610.07 407.46 Z M 610.07 388.81 L 606.05 388.81 L 606.05 373.57 L 610.07 373.57 L 610.07 388.81 Z M 610.07 369.82 L 606.05 369.82 L 606.05 354.58 L 610.07 354.58 L 610.07 369.82 Z M 610.07 350.84 L 606.05 350.84 L 606.05 335.60 L 610.07 335.60 L 610.07 350.84 Z M 618.35 426.11 L 614.33 426.11 L 614.33 410.87 L 618.35 410.87 L 618.35 426.11 Z M 618.35 407.46 L 614.33 407.46 L 614.33 392.22 L 618.35 392.22 L 618.35 407.46 Z M 618.35 388.81 L 614.33 388.81 L 614.33 373.57 L 618.35 373.57 L 618.35 388.81 Z M 618.35 369.82 L 614.33 369.82 L 614.33 354.58 L 618.35 354.58 L 618.35 369.82 Z M 618.35 350.84 L 614.33 350.84 L 614.33 335.60 L 618.35 335.60 L 618.35 350.84 Z M 626.63 426.11 L 622.61 426.11 L 622.61 410.87 L 626.63 410.87 L 626.63 426.11 Z M 626.63 407.46 L 622.61 407.46 L 622.61 392.22 L 626.63 392.22 L 626.63 407.46 Z M 626.63 388.81 L 622.61 388.81 L 622.61 373.57 L 626.63 373.57 L 626.63 388.81 Z M 626.63 369.82 L 622.61 369.82 L 622.61 354.58 L 626.63 354.58 L 626.63 369.82 Z M 626.63 350.84 L 622.61 350.84 L 622.61 335.60 L 626.63 335.60 L 626.63 350.84 Z M 634.91 426.11 L 630.89 426.11 L 630.89 410.87 L 634.91 410.87 L 634.91 426.11 Z M 634.91 407.46 L 630.89 407.46 L 630.89 392.22 L 634.91 392.22 L 634.91 407.46 Z M 634.91 388.81 L 630.89 388.81 L 630.89 373.57 L 634.91 373.57 L 634.91 388.81 Z M 634.91 369.82 L 630.89 369.82 L 630.89 354.58 L 634.91 354.58 L 634.91 369.82 Z M 634.91 350.84 L 630.89 350.84 L 630.89 335.60 L 634.91 335.60 L 634.91 350.84 Z M 643.19 426.11 L 639.17 426.11 L 639.17 410.87 L 643.19 410.87 L 643.19 426.11 Z M 643.19 407.46 L 639.17 407.46 L 639.17 392.22 L 643.19 392.22 L 643.19 407.46 Z M 643.19 388.81 L 639.17 388.81 L 639.17 373.57 L 643.19 373.57 L 643.19 388.81 Z M 643.19 369.82 L 639.17 369.82 L 639.17 354.58 L 643.19 354.58 L 643.19 369.82 Z M 643.19 350.84 L 639.17 350.84 L 639.17 335.60 L 643.19 335.60 L 643.19 350.84 Z" fill="url(#SVGID_4_)" fill-rule="nonzero" group-id="9,43" node-id="354" stroke="none" target-height="169.74002" target-width="59.380005" target-x="599.58" target-y="294.4"></path><path d="M 93.94 506.22 L 93.94 416.68 L 104.19 416.68 L 104.19 370.98 L 139.45 355.71 L 139.45 415.96 L 147.19 415.96 L 147.19 506.22 Z" fill="url(#SVGID_5_)" fill-rule="nonzero" group-id="9,43" node-id="356" stroke="none" target-height="150.51001" target-width="53.25" target-x="93.94" target-y="355.71"></path><path d="M 698.71 489.61 L 667.77 489.61 L 667.77 366.48 L 698.71 381.45 Z" fill="url(#SVGID_6_)" fill-rule="nonzero" group-id="9,43" node-id="358" stroke="none" target-height="123.129974" target-width="30.940002" target-x="667.77" target-y="366.48"></path><path d="M 88.76 192.80 C 88.76 192.80 98.10 167.32 121.06 177.32 C 126.36 171.94 132.92 168.03 141.79 169.79 C 150.66 171.55 156.38 178.20 158.32 182.62 C 161.10 182.49 183.36 183.23 183.36 206.32 C 183.36 229.41 156.42 228.97 154.47 227.14 C 152.07 229.28 140.53 240.89 126.53 227.64 C 123.50 230.23 113.60 241.20 97.95 226.06 C 90.70 229.09 73.47 231.42 70.13 213.63 C 66.79 195.84 83.92 190.83 88.76 192.80 Z" fill="url(#SVGID_7_)" fill-rule="nonzero" group-id="9,43" node-id="360" stroke="none" target-height="73.880005" target-width="116.57" target-x="66.79" target-y="167.32"></path><path d="M 605.82 155.98 C 605.82 155.98 615.16 130.50 638.12 140.50 C 643.42 135.12 649.98 131.21 658.85 132.97 C 667.72 134.74 673.44 141.38 675.38 145.80 C 678.16 145.67 700.42 146.41 700.42 169.50 C 700.42 192.59 673.48 192.15 671.53 190.32 C 669.13 192.46 657.59 204.07 643.59 190.82 C 640.56 193.41 630.66 204.38 615.01 189.24 C 607.76 192.27 590.53 194.60 587.19 176.81 C 583.85 159.03 600.99 154.01 605.82 155.98 Z" fill="url(#SVGID_8_)" fill-rule="nonzero" group-id="9,43" node-id="362" stroke="none" target-height="73.87999" target-width="116.57007" target-x="583.85" target-y="130.5"></path><path d="M 486.48 210.51 C 486.48 210.51 493.24 192.06 509.86 199.31 C 513.70 195.41 518.44 192.58 524.87 193.86 C 531.30 195.14 535.43 199.95 536.83 203.14 C 538.84 203.05 554.96 203.58 554.96 220.29 C 554.96 237.00 535.46 236.68 534.05 235.36 C 532.31 236.91 523.96 245.31 513.82 235.73 C 511.63 237.60 504.46 245.55 493.14 234.59 C 487.89 236.78 475.42 238.47 473.00 225.59 C 470.58 212.72 482.98 209.08 486.48 210.51 Z" fill="url(#SVGID_9_)" fill-rule="nonzero" group-id="9,43" node-id="364" stroke="none" target-height="53.48999" target-width="84.380035" target-x="470.58" target-y="192.06001"></path><path d="M 771.02 579.73 C 771.02 626.42 731.93 671.21 662.36 704.22 C 592.79 737.24 498.43 755.79 400.04 755.79 C 301.65 755.79 207.29 737.24 137.72 704.22 C 68.15 671.21 29.06 626.42 29.06 579.73 C 29.06 533.04 68.15 488.25 137.72 455.24 C 207.29 422.22 301.65 403.67 400.04 403.67 C 498.43 403.67 592.79 422.22 662.36 455.24 C 731.93 488.25 771.02 533.04 771.02 579.73 Z" fill="url(#SVGID_10_)" fill-rule="nonzero" group-id="9,43" node-id="366" stroke="none" target-height="352.12" target-width="741.95996" target-x="29.06" target-y="403.66998"></path></g><g node-id="484"><g node-id="487"><path d="M 145.99 558.19 C 145.99 558.19 142.46 563.20 148.36 570.66 C 153.62 577.30 161.93 576.01 164.69 573.88 C 165.54 579.66 172.63 591.84 183.85 584.95 C 194.40 578.48 189.32 568.64 185.95 564.77 C 192.54 562.91 197.45 547.12 182.33 541.67 C 184.57 535.15 184.97 532.20 181.69 526.34 C 178.53 520.70 173.34 519.80 165.06 523.23 L 153.08 528.28 L 145.45 514.04 L 141.37 516.40 L 150.17 530.00 L 138.51 535.85 C 138.51 535.85 128.54 539.75 132.84 550.45 C 136.83 560.37 145.99 558.19 145.99 558.19 Z" fill="url(#SVGID_11_)" fill-rule="nonzero" group-id="9,44,47" node-id="372" stroke="none" target-height="77.80005" target-width="68.91" target-x="128.54" target-y="514.04"></path><path d="M 125.69 497.48 L 161.75 497.48 C 161.75 497.48 173.40 497.81 175.72 484.50 C 178.27 469.89 167.64 467.88 167.64 467.88 C 167.64 467.88 174.04 464.94 172.65 453.89 C 171.25 442.85 161.53 441.45 157.48 441.96 C 158.14 435.41 159.52 420.58 144.12 420.43 C 129.25 420.28 129.34 435.25 130.45 441.15 C 125.15 441.21 109.14 449.16 120.40 466.60 C 114.27 471.85 111.68 474.88 111.95 482.45 C 112.22 490.02 116.86 497.48 125.69 497.48 Z" fill="url(#SVGID_12_)" fill-rule="nonzero" group-id="9,44,47" node-id="374" stroke="none" target-height="77.52997" target-width="69.130005" target-x="109.14" target-y="420.28"></path><path d="M 160.86 477.24 L 145.48 487.36 L 145.07 477.58 L 154.79 466.12 L 144.92 474.10 L 143.64 444.20 L 142.69 474.29 L 132.32 466.03 L 142.60 477.36 L 142.28 487.43 L 126.46 475.81 L 142.17 491.06 L 141.37 516.42 L 146.73 516.42 L 145.65 491.21 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="9,44,47" node-id="376" stroke="none" target-height="72.21997" target-width="34.4" target-x="126.46" target-y="444.2"></path></g><g node-id="488"><path d="M 668.41 539.89 C 668.41 539.89 665.16 544.51 670.59 551.37 C 675.43 557.49 683.09 556.30 685.63 554.33 C 686.41 559.65 692.95 570.86 703.28 564.53 C 712.99 558.57 708.32 549.51 705.21 545.95 C 711.28 544.24 715.80 529.69 701.88 524.68 C 703.95 518.68 704.32 515.96 701.29 510.57 C 698.38 505.38 693.60 504.54 685.98 507.71 L 674.94 512.36 L 667.91 499.25 L 664.16 501.42 L 672.26 513.94 L 661.53 519.33 C 661.53 519.33 652.35 522.92 656.31 532.78 C 659.98 541.89 668.41 539.89 668.41 539.89 Z" fill="url(#SVGID_13_)" fill-rule="nonzero" group-id="9,44,48" node-id="381" stroke="none" target-height="71.609985" target-width="63.450012" target-x="652.35" target-y="499.25"></path><path d="M 649.72 483.98 L 682.92 483.98 C 682.92 483.98 693.65 484.29 695.78 472.03 C 698.12 458.58 688.34 456.73 688.34 456.73 C 688.34 456.73 694.24 454.02 692.95 443.85 C 691.66 433.68 682.71 432.39 678.98 432.87 C 679.59 426.84 680.86 413.18 666.68 413.04 C 652.99 412.90 653.07 426.68 654.09 432.12 C 649.21 432.17 634.46 439.49 644.84 455.56 C 639.20 460.39 636.81 463.19 637.06 470.15 C 637.31 477.11 641.58 483.98 649.72 483.98 Z" fill="url(#SVGID_14_)" fill-rule="nonzero" group-id="9,44,48" node-id="383" stroke="none" target-height="71.390045" target-width="63.660034" target-x="634.46" target-y="412.9"></path><path d="M 682.11 465.34 L 667.95 474.66 L 667.56 465.65 L 676.52 455.10 L 667.42 462.45 L 666.24 434.91 L 665.38 462.63 L 655.82 455.02 L 665.29 465.45 L 665.00 474.72 L 650.43 464.02 L 664.89 478.07 L 664.16 501.42 L 669.09 501.42 L 668.10 478.21 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="9,44,48" node-id="385" stroke="none" target-height="66.51004" target-width="31.679993" target-x="650.43" target-y="434.91"></path></g><g node-id="489"><path d="M 228.92 449.69 C 228.92 449.69 227.17 452.17 230.09 455.86 C 232.69 459.15 236.80 458.51 238.17 457.45 C 238.59 460.31 242.10 466.33 247.65 462.93 C 252.87 459.73 250.36 454.86 248.69 452.95 C 251.95 452.03 254.38 444.22 246.90 441.53 C 248.01 438.31 248.21 436.85 246.58 433.95 C 245.02 431.16 242.45 430.71 238.36 432.41 L 232.43 434.91 L 228.66 427.87 L 226.64 429.04 L 230.99 435.76 L 225.22 438.65 C 225.22 438.65 220.29 440.58 222.42 445.87 C 224.39 450.77 228.92 449.69 228.92 449.69 Z" fill="url(#SVGID_15_)" fill-rule="nonzero" group-id="9,44,49" node-id="390" stroke="none" target-height="38.45996" target-width="34.09001" target-x="220.29" target-y="427.87"></path><path d="M 218.88 419.66 L 236.71 419.66 C 236.71 419.66 242.47 419.82 243.62 413.24 C 244.88 406.01 239.62 405.02 239.62 405.02 C 239.62 405.02 242.79 403.56 242.10 398.10 C 241.41 392.64 236.60 391.95 234.60 392.20 C 234.93 388.96 235.61 381.62 227.99 381.55 C 220.63 381.48 220.68 388.88 221.23 391.80 C 218.61 391.83 210.69 395.76 216.26 404.39 C 213.23 406.98 211.94 408.49 212.08 412.23 C 212.22 415.97 214.51 419.66 218.88 419.66 Z" fill="url(#SVGID_16_)" fill-rule="nonzero" group-id="9,44,49" node-id="392" stroke="none" target-height="38.339996" target-width="34.189987" target-x="210.69" target-y="381.48"></path><path d="M 236.28 409.65 L 228.67 414.66 L 228.46 409.82 L 233.27 404.15 L 228.39 408.09 L 227.76 393.30 L 227.29 408.19 L 222.16 404.11 L 227.24 409.71 L 227.09 414.69 L 219.26 408.94 L 227.03 416.49 L 226.64 429.03 L 229.29 429.03 L 228.75 416.56 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="9,44,49" node-id="394" stroke="none" target-height="35.73004" target-width="17.02002" target-x="219.25998" target-y="393.29996"></path></g></g><g node-id="485"><path d="M 554.96 506.22 L 711.05 633.00 L 434.49 735.26 L 266.73 511.34 L 405.43 497.48 Z" fill="url(#SVGID_17_)" fill-rule="nonzero" group-id="9,45" node-id="400" stroke="none" target-height="237.78" target-width="444.31992" target-x="266.73" target-y="497.48"></path><path d="M 546.60 518.37 L 278.90 518.37 C 271.14 518.37 264.86 512.08 264.86 504.33 L 264.86 321.02 C 264.86 313.26 271.15 306.98 278.90 306.98 L 546.60 306.98 C 554.36 306.98 560.64 313.27 560.64 321.02 L 560.64 504.33 C 560.64 512.08 554.36 518.37 546.60 518.37 Z" fill="url(#SVGID_18_)" fill-rule="nonzero" group-id="9,45" node-id="402" stroke="none" target-height="211.38998" target-width="295.78003" target-x="264.86" target-y="306.98"></path><path d="M 560.64 441.91 L 546.00 450.34 L 546.00 404.28 L 560.64 395.84 Z" fill="url(#SVGID_19_)" fill-rule="nonzero" group-id="9,45" node-id="404" stroke="none" target-height="54.50003" target-width="14.640015" target-x="546" target-y="395.83997"></path><path d="M 542.35 363.02 L 436.79 429.51 L 370.64 324.48 C 367.54 319.56 369.02 313.06 373.94 309.96 L 461.69 254.70 C 466.61 251.60 473.11 253.08 476.21 258.00 L 542.35 363.02 Z" fill="url(#SVGID_20_)" fill-rule="nonzero" group-id="9,45" node-id="406" stroke="none" target-height="177.90999" target-width="174.80997" target-x="367.54" target-y="251.60002"></path><path d="M 517.17 355.59 L 411.61 422.08 L 345.46 317.05 C 342.36 312.13 343.84 305.63 348.76 302.53 L 436.51 247.27 C 441.43 244.17 447.93 245.65 451.03 250.57 L 517.17 355.59 Z" fill="url(#SVGID_21_)" fill-rule="nonzero" group-id="9,45" node-id="408" stroke="none" target-height="177.90999" target-width="174.81" target-x="342.36" target-y="244.17"></path><path d="M 409.20 264.46 L 455.70 339.30 L 476.69 334.53 L 426.38 253.64 Z" fill="url(#SVGID_22_)" fill-rule="nonzero" group-id="9,45" node-id="410" stroke="none" target-height="85.65997" target-width="67.49002" target-x="409.2" target-y="253.64001"></path><path d="M 531.96 518.37 L 278.90 518.37 C 271.14 518.37 264.86 512.08 264.86 504.33 L 264.86 335.23 C 264.86 327.47 271.15 321.19 278.90 321.19 L 531.96 321.19 C 539.72 321.19 546.00 327.48 546.00 335.23 L 546.00 504.33 C 546.00 512.08 539.72 518.37 531.96 518.37 Z" fill="url(#SVGID_23_)" fill-rule="nonzero" group-id="9,45" node-id="412" stroke="none" target-height="197.18" target-width="281.14" target-x="264.86" target-y="321.19"></path><path d="M 546.00 450.34 L 447.25 450.34 C 440.20 450.34 434.48 444.62 434.48 437.57 L 434.48 417.03 C 434.48 409.98 440.20 404.26 447.25 404.26 L 546.00 404.26 L 546.00 450.34 Z" fill="url(#SVGID_24_)" fill-rule="nonzero" group-id="9,45" node-id="414" stroke="none" target-height="46.079987" target-width="111.51999" target-x="434.48" target-y="404.26"></path><path d="M 467.64 427.31 C 467.64 429.71 466.69 432.01 464.99 433.70 C 463.30 435.40 461.00 436.35 458.60 436.35 C 456.20 436.35 453.90 435.40 452.21 433.70 C 450.51 432.01 449.56 429.71 449.56 427.31 C 449.56 424.91 450.51 422.61 452.21 420.92 C 453.90 419.22 456.20 418.27 458.60 418.27 C 461.00 418.27 463.30 419.22 464.99 420.92 C 466.69 422.61 467.64 424.91 467.64 427.31 Z" fill="url(#SVGID_25_)" fill-rule="nonzero" group-id="9,45" node-id="416" stroke="none" target-height="18.080017" target-width="18.080048" target-x="449.56" target-y="418.27"></path></g><g node-id="486"><path d="M 392.61 447.21 L 390.35 448.13 C 390.35 448.13 389.55 449.47 389.89 452.37 C 390.23 455.26 391.74 456.37 392.07 457.43 C 392.41 458.49 392.20 462.56 392.20 462.56 L 398.20 462.56 L 398.45 456.86 C 398.45 456.86 399.81 455.15 400.25 453.98 C 400.70 452.81 401.59 450.88 401.28 449.95 C 400.97 449.03 397.00 445.48 392.61 447.21 Z" fill="#ffbe92" fill-rule="nonzero" group-id="9,46" node-id="421" stroke="none" target-height="17.079987" target-width="12.040009" target-x="389.55" target-y="445.48"></path><path d="M 395.41 444.25 C 395.41 444.25 396.38 442.50 397.14 443.44 C 397.90 444.38 398.39 444.86 399.27 444.66 C 400.15 444.45 401.88 444.64 401.26 446.25 C 400.64 447.86 401.23 448.01 401.48 448.45 C 401.63 448.72 402.69 449.63 401.97 450.80 C 401.26 451.95 400.27 451.53 400.45 452.62 C 400.63 453.71 400.22 454.68 399.57 455.02 C 398.94 455.35 399.10 455.94 399.21 456.28 C 399.32 456.61 398.97 457.69 397.91 457.31 C 396.85 456.93 395.90 456.78 395.06 457.16 C 394.22 457.54 390.76 457.76 391.49 456.21 C 392.16 454.80 391.23 454.51 390.60 453.88 C 389.97 453.25 389.46 452.16 389.79 451.09 C 389.98 450.47 390.25 448.99 389.50 448.06 C 388.72 447.10 390.06 444.48 390.94 444.58 C 391.83 444.66 393.04 442.16 395.41 444.25 Z" fill="#171c61" fill-rule="nonzero" group-id="9,46" node-id="423" stroke="none" target-height="15.599976" target-width="13.970032" target-x="388.71997" target-y="442.16"></path><path d="M 403.59 546.41 C 403.59 546.41 399.60 545.23 399.53 548.82 C 400.25 552.06 400.89 553.17 400.86 554.68 C 400.83 556.19 402.26 558.62 405.37 559.04 C 408.48 559.46 409.86 557.02 408.79 553.60 C 407.72 550.19 407.35 547.06 403.59 546.41 Z" fill="#f8b62d" fill-rule="nonzero" group-id="9,46" node-id="425" stroke="none" target-height="14.2300415" target-width="10.329987" target-x="399.53" target-y="545.23"></path><path d="M 399.63 548.05 C 399.63 548.05 400.09 550.71 400.56 551.63 C 401.03 552.55 401.34 553.76 401.57 554.76 C 401.80 555.76 402.32 558.18 405.97 558.31 C 408.21 558.22 409.14 557.15 409.13 556.20 C 409.12 556.82 409.24 557.77 408.78 558.37 C 408.28 559.02 407.15 559.28 405.93 559.29 C 403.54 559.31 401.80 558.73 400.85 555.45 C 400.68 554.11 400.59 553.08 400.33 552.29 C 400.07 551.50 399.17 548.99 399.63 548.05 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="9,46" node-id="427" stroke="none" target-height="11.26001" target-width="10.069977" target-x="399.17" target-y="548.05"></path><path d="M 390.52 546.57 C 390.52 546.57 385.68 545.51 385.68 548.95 C 385.90 552.00 386.41 553.36 386.38 554.87 C 386.35 556.38 387.78 558.81 390.89 559.23 C 394.00 559.65 395.38 557.21 394.31 553.79 C 393.24 550.37 394.27 547.22 390.52 546.57 Z" fill="#f8b62d" fill-rule="nonzero" group-id="9,46" node-id="429" stroke="none" target-height="14.140015" target-width="9.700043" target-x="385.67996" target-y="545.51"></path><path d="M 386.25 547.31 C 386.25 547.31 385.40 548.52 386.31 551.83 C 386.62 552.81 386.85 553.93 387.09 554.94 C 387.33 555.95 387.84 558.36 391.49 558.49 C 393.73 558.40 394.66 557.33 394.65 556.38 C 394.64 557.00 394.81 557.80 394.36 558.40 C 393.86 559.05 392.68 559.46 391.45 559.47 C 389.06 559.49 387.32 558.91 386.37 555.63 C 386.20 554.29 386.11 553.26 385.85 552.47 C 385.59 551.68 385.22 548.02 386.25 547.31 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="9,46" node-id="431" stroke="none" target-height="12.179993" target-width="9.589996" target-x="385.22" target-y="547.31"></path><path d="M 386.99 495.30 C 386.99 495.30 384.47 501.37 385.14 511.92 C 385.81 522.47 388.90 556.19 388.90 556.19 L 393.69 556.19 L 397.38 509.81 L 403.03 556.19 L 407.47 556.19 C 407.47 556.19 411.63 499.83 406.94 495.30 C 398.90 495.30 386.99 495.30 386.99 495.30 Z" fill="url(#SVGID_26_)" fill-rule="nonzero" group-id="9,46" node-id="433" stroke="none" target-height="60.890015" target-width="27.160004" target-x="384.47" target-y="495.3"></path><path d="M 402.98 430.29 C 402.98 430.29 403.10 432.72 404.09 433.56 C 405.08 434.40 405.57 435.74 405.98 436.63 C 406.39 437.52 408.09 441.67 408.42 442.27 C 408.75 442.86 409.37 444.40 409.08 446.28 C 408.79 448.16 405.75 456.94 405.54 457.58 C 406.12 459.61 409.61 464.92 409.61 464.92 C 409.61 464.92 415.12 450.25 414.91 445.49 C 414.70 440.73 411.07 437.52 408.69 433.31 C 407.87 432.17 407.91 431.13 407.99 430.48 C 408.07 429.84 408.05 425.83 405.34 424.57 C 403.70 423.82 402.91 429.64 402.98 430.29 Z" fill="#ffbe92" fill-rule="nonzero" group-id="9,46" node-id="435" stroke="none" target-height="41.100006" target-width="12.210022" target-x="402.91" target-y="423.82"></path><path d="M 388.63 430.62 C 388.63 430.62 388.50 433.05 387.43 433.89 C 386.36 434.73 385.83 436.07 385.38 436.96 C 384.93 437.85 383.09 442.00 382.74 442.60 C 382.38 443.19 381.72 444.73 382.03 446.61 C 382.34 448.49 385.64 457.27 385.86 457.91 C 385.24 459.94 381.45 465.25 381.45 465.25 C 381.45 465.25 375.48 450.58 375.71 445.82 C 375.93 441.06 379.87 437.85 382.45 433.64 C 383.34 432.50 383.30 431.46 383.21 430.81 C 383.12 430.17 383.15 426.16 386.08 424.90 C 387.85 424.15 388.70 429.97 388.63 430.62 Z" fill="#ffbe92" fill-rule="nonzero" group-id="9,46" node-id="437" stroke="none" target-height="41.100067" target-width="13.220001" target-x="375.47998" target-y="424.14996"></path><path d="M 414.92 459.06 L 404.78 454.64 C 403.16 459.00 400.99 460.26 400.11 459.88 C 398.73 459.14 396.93 459.05 395.57 459.04 C 394.21 459.05 392.41 459.13 391.03 459.88 C 390.15 460.26 387.98 459.00 386.36 454.64 L 376.22 459.06 C 376.22 459.06 379.52 466.33 381.03 469.57 C 381.42 471.02 382.90 476.00 382.78 478.07 C 382.67 480.14 379.54 499.86 382.84 501.09 C 384.60 501.75 390.28 502.09 395.57 502.19 C 400.86 502.09 406.54 501.75 408.30 501.09 C 411.60 499.86 408.47 480.14 408.36 478.07 C 408.25 476.00 409.72 471.02 410.11 469.57 C 411.62 466.33 414.92 459.06 414.92 459.06 Z" fill="url(#SVGID_27_)" fill-rule="nonzero" group-id="9,46" node-id="439" stroke="none" target-height="47.549988" target-width="38.69998" target-x="376.22003" target-y="454.64"></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="183"><linearGradient gradientUnits="objectBoundingBox" id="SVGID_1_" node-id="37" spreadMethod="pad" x1="258.248" x2="258.248" 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="41" spreadMethod="pad" x1="193.631" x2="193.631" 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="45" spreadMethod="pad" x1="569.4126" x2="569.4126" 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="49" spreadMethod="pad" x1="631.9374" x2="631.9374" 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="53" spreadMethod="pad" x1="123.2249" x2="123.2249" 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="57" spreadMethod="pad" x1="685.8981" x2="685.8981" 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="61" spreadMethod="pad" x1="129.1886" x2="129.1886" 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="65" spreadMethod="pad" x1="646.257" x2="646.257" 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="69" spreadMethod="pad" x1="516.4861" x2="516.4861" 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="73" spreadMethod="pad" x1="402.7034" x2="402.7034" 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="79" spreadMethod="pad" x1="193.6329" x2="142.1967" 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="83" spreadMethod="pad" x1="114.5851" x2="178.7719" 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="89" spreadMethod="pad" x1="712.495" x2="665.1296" 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="93" spreadMethod="pad" x1="639.7032" x2="698.8102" 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="99" spreadMethod="pad" x1="253.8324" x2="228.3911" 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="103" spreadMethod="pad" x1="214.7339" x2="246.4819" 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="109" spreadMethod="pad" x1="536.4573" x2="498.9254" y1="686.3049" y2="449.3378"><stop offset="0.1468" stop-color="#ffffff"></stop><stop offset="1" stop-color="#bbcbe0"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_18_" node-id="113" spreadMethod="pad" x1="295.8143" x2="409.6212" y1="398.7847" y2="398.7847"><stop offset="0.0000005309115" stop-color="#e5ecf3"></stop><stop offset="1" stop-color="#becfe0"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_19_" node-id="117" spreadMethod="pad" x1="409.6212" x2="546.9032" y1="373.3691" y2="373.3691"><stop offset="0" stop-color="#d9e3ed"></stop><stop offset="1" stop-color="#acc2db"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_20_" node-id="121" spreadMethod="pad" x1="276.0708" x2="276.0708" y1="417.7526" y2="353.0554"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="0.9705" stop-color="#9cb6d2"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_21_" node-id="125" spreadMethod="pad" x1="295.8143" x2="430.0915" y1="444.5141" y2="444.5141"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_22_" node-id="129" spreadMethod="pad" x1="403.7328" x2="561.6102" y1="504.5598" y2="372.0849"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="0.9705" stop-color="#9cb6d2"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_23_" node-id="133" spreadMethod="pad" x1="430.0915" x2="586.4664" y1="403.7614" y2="403.7614"><stop offset="0" stop-color="#d5e0ee"></stop><stop offset="1" stop-color="#f5f9fa"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_24_" node-id="137" spreadMethod="pad" x1="260.3201" x2="430.0915" y1="405.7333" y2="405.7333"><stop offset="0.0000004424263" stop-color="#f7fafb"></stop><stop offset="1" stop-color="#d5e0ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_25_" node-id="141" spreadMethod="pad" x1="447.3969" x2="472.2547" y1="316.4088" y2="359.4638"><stop offset="0.3735" stop-color="#cfdbe8"></stop><stop offset="1" stop-color="#9fb7ce"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_26_" node-id="145" spreadMethod="pad" x1="432.3996" x2="471.9781" y1="260.5178" y2="260.5178"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_27_" node-id="149" spreadMethod="pad" x1="336.9254" x2="375.6631" y1="251.9931" y2="251.9931"><stop offset="0" stop-color="#dde5f0"></stop><stop offset="1" stop-color="#9fb7ce"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_28_" node-id="162" spreadMethod="pad" x1="569.4727" x2="619.6047" y1="530.5295" y2="530.5295"><stop offset="0" stop-color="#78c8ff"></stop><stop offset="0.6903" stop-color="#2a80e2"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_29_" node-id="166" spreadMethod="pad" x1="606.6335" x2="606.6335" y1="512.3148" y2="465.0279"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient></defs><g node-id="524"><g node-id="535"><path d="M 272.70 330.01 L 272.70 326.60 L 243.20 326.60 L 243.20 330.56 L 236.72 330.56 L 236.72 423.39 L 279.77 423.39 L 279.77 330.01 L 272.70 330.01 Z M 276.05 412.75 L 240.01 412.75 L 240.01 410.00 L 276.05 410.00 L 276.05 412.75 Z M 276.05 400.07 L 240.01 400.07 L 240.01 397.32 L 276.05 397.32 L 276.05 400.07 Z M 276.05 387.39 L 240.01 387.39 L 240.01 384.64 L 276.05 384.64 L 276.05 387.39 Z M 276.05 375.05 L 240.01 375.05 L 240.01 372.30 L 276.05 372.30 L 276.05 375.05 Z M 276.05 362.74 L 240.01 362.74 L 240.01 359.99 L 276.05 359.99 L 276.05 362.74 Z M 276.05 350.06 L 240.01 350.06 L 240.01 347.31 L 276.05 347.31 L 276.05 350.06 Z M 276.05 337.72 L 240.01 337.72 L 240.01 334.97 L 276.05 334.97 L 276.05 337.72 Z" fill="url(#SVGID_1_)" fill-rule="nonzero" group-id="32,43" node-id="393" stroke="none" target-height="96.79001" target-width="43.049988" target-x="236.72" target-y="326.6"></path><path d="M 214.72 381.82 L 214.72 273.64 L 181.97 273.64 L 181.97 264.90 L 168.11 264.90 L 168.11 318.23 L 164.38 318.23 L 164.38 481.39 L 222.89 481.39 L 222.89 381.83 L 214.72 381.83 Z M 190.22 413.63 L 181.96 413.63 L 181.96 405.62 L 190.22 405.62 L 190.22 413.63 Z M 190.22 401.10 L 181.96 401.10 L 181.96 393.09 L 190.22 393.09 L 190.22 401.10 Z M 190.22 388.63 L 181.96 388.63 L 181.96 380.62 L 190.22 380.62 L 190.22 388.63 Z M 190.22 376.19 L 181.96 376.19 L 181.96 368.18 L 190.22 368.18 L 190.22 376.19 Z M 190.22 363.66 L 181.96 363.66 L 181.96 355.65 L 190.22 355.65 L 190.22 363.66 Z M 190.22 338.66 L 181.96 338.66 L 181.96 330.65 L 190.22 330.65 L 190.22 338.66 Z M 190.22 326.13 L 181.96 326.13 L 181.96 318.12 L 190.22 318.12 L 190.22 326.13 Z M 190.22 313.65 L 181.96 313.65 L 181.96 305.64 L 190.22 305.64 L 190.22 313.65 Z M 190.22 301.22 L 181.96 301.22 L 181.96 293.21 L 190.22 293.21 L 190.22 301.22 Z M 190.22 288.69 L 181.96 288.69 L 181.96 280.68 L 190.22 280.68 L 190.22 288.69 Z M 202.58 413.63 L 194.32 413.63 L 194.32 405.62 L 202.58 405.62 L 202.58 413.63 Z M 202.58 401.10 L 194.32 401.10 L 194.32 393.09 L 202.58 393.09 L 202.58 401.10 Z M 202.58 388.63 L 194.32 388.63 L 194.32 380.62 L 202.58 380.62 L 202.58 388.63 Z M 202.58 376.19 L 194.32 376.19 L 194.32 368.18 L 202.58 368.18 L 202.58 376.19 Z M 202.58 363.66 L 194.32 363.66 L 194.32 355.65 L 202.58 355.65 L 202.58 363.66 Z M 202.58 338.66 L 194.32 338.66 L 194.32 330.65 L 202.58 330.65 L 202.58 338.66 Z M 202.58 326.13 L 194.32 326.13 L 194.32 318.12 L 202.58 318.12 L 202.58 326.13 Z M 202.58 313.65 L 194.32 313.65 L 194.32 305.64 L 202.58 305.64 L 202.58 313.65 Z M 202.58 301.22 L 194.32 301.22 L 194.32 293.21 L 202.58 293.21 L 202.58 301.22 Z M 202.58 288.69 L 194.32 288.69 L 194.32 280.68 L 202.58 280.68 L 202.58 288.69 Z" fill="url(#SVGID_2_)" fill-rule="nonzero" group-id="32,43" node-id="395" stroke="none" target-height="216.49002" target-width="58.509995" target-x="164.38" target-y="264.9"></path><path d="M 537.03 438.71 C 537.39 434.06 537.03 282.23 537.03 282.23 L 555.56 282.23 L 555.56 315.94 L 585.06 315.94 L 585.06 386.39 L 601.79 386.39 L 601.79 438.71 L 537.03 438.71 Z" fill="url(#SVGID_3_)" fill-rule="nonzero" group-id="32,43" node-id="397" stroke="none" target-height="156.47998" target-width="64.75995" target-x="537.03" target-y="282.23"></path><path d="M 658.25 370.56 L 658.25 365.71 L 653.25 365.71 L 653.25 323.38 L 641.05 323.38 L 641.05 318.68 L 632.82 318.68 L 632.82 311.77 L 628.53 311.77 L 628.53 291.63 L 625.44 291.63 L 625.44 311.91 L 621.50 311.91 L 621.50 318.82 L 609.30 318.82 L 609.30 330.14 L 602.25 330.14 L 602.25 461.37 L 661.63 461.37 L 661.63 370.55 L 658.25 370.55 Z M 612.73 423.34 L 608.71 423.34 L 608.71 408.10 L 612.73 408.10 L 612.73 423.34 Z M 612.73 404.69 L 608.71 404.69 L 608.71 389.45 L 612.73 389.45 L 612.73 404.69 Z M 612.73 386.04 L 608.71 386.04 L 608.71 370.80 L 612.73 370.80 L 612.73 386.04 Z M 612.73 367.06 L 608.71 367.06 L 608.71 351.82 L 612.73 351.82 L 612.73 367.06 Z M 612.73 348.07 L 608.71 348.07 L 608.71 332.83 L 612.73 332.83 L 612.73 348.07 Z M 621.01 423.34 L 617.00 423.34 L 617.00 408.10 L 621.02 408.10 L 621.02 423.34 Z M 621.01 404.69 L 617.00 404.69 L 617.00 389.45 L 621.02 389.45 L 621.02 404.69 Z M 621.01 386.04 L 617.00 386.04 L 617.00 370.80 L 621.02 370.80 L 621.02 386.04 Z M 621.01 367.06 L 617.00 367.06 L 617.00 351.82 L 621.02 351.82 L 621.02 367.06 Z M 621.01 348.07 L 617.00 348.07 L 617.00 332.83 L 621.02 332.83 L 621.02 348.07 Z M 629.29 423.34 L 625.27 423.34 L 625.27 408.10 L 629.29 408.10 L 629.29 423.34 Z M 629.29 404.69 L 625.27 404.69 L 625.27 389.45 L 629.29 389.45 L 629.29 404.69 Z M 629.29 386.04 L 625.27 386.04 L 625.27 370.80 L 629.29 370.80 L 629.29 386.04 Z M 629.29 367.06 L 625.27 367.06 L 625.27 351.82 L 629.29 351.82 L 629.29 367.06 Z M 629.29 348.07 L 625.27 348.07 L 625.27 332.83 L 629.29 332.83 L 629.29 348.07 Z M 637.57 423.34 L 633.55 423.34 L 633.55 408.10 L 637.57 408.10 L 637.57 423.34 Z M 637.57 404.69 L 633.55 404.69 L 633.55 389.45 L 637.57 389.45 L 637.57 404.69 Z M 637.57 386.04 L 633.55 386.04 L 633.55 370.80 L 637.57 370.80 L 637.57 386.04 Z M 637.57 367.06 L 633.55 367.06 L 633.55 351.82 L 637.57 351.82 L 637.57 367.06 Z M 637.57 348.07 L 633.55 348.07 L 633.55 332.83 L 637.57 332.83 L 637.57 348.07 Z M 645.85 423.34 L 641.83 423.34 L 641.83 408.10 L 645.85 408.10 L 645.85 423.34 Z M 645.85 404.69 L 641.83 404.69 L 641.83 389.45 L 645.85 389.45 L 645.85 404.69 Z M 645.85 386.04 L 641.83 386.04 L 641.83 370.80 L 645.85 370.80 L 645.85 386.04 Z M 645.85 367.06 L 641.83 367.06 L 641.83 351.82 L 645.85 351.82 L 645.85 367.06 Z M 645.85 348.07 L 641.83 348.07 L 641.83 332.83 L 645.85 332.83 L 645.85 348.07 Z" fill="url(#SVGID_4_)" fill-rule="nonzero" group-id="32,43" node-id="399" stroke="none" target-height="169.73999" target-width="59.380005" target-x="602.25" target-y="291.63"></path><path d="M 96.60 503.45 L 96.60 413.91 L 106.85 413.91 L 106.85 368.21 L 142.11 352.94 L 142.11 413.19 L 149.85 413.19 L 149.85 503.45 Z" fill="url(#SVGID_5_)" fill-rule="nonzero" group-id="32,43" node-id="401" stroke="none" target-height="150.51001" target-width="53.25" target-x="96.600006" target-y="352.94"></path><path d="M 701.37 486.85 L 670.43 486.85 L 670.43 363.72 L 701.37 378.69 Z" fill="url(#SVGID_6_)" fill-rule="nonzero" group-id="32,43" node-id="403" stroke="none" target-height="123.129974" target-width="30.939941" target-x="670.43" target-y="363.72"></path><path d="M 91.42 190.04 C 91.42 190.04 100.76 164.56 123.72 174.56 C 129.02 169.18 135.58 165.27 144.45 167.03 C 153.32 168.79 159.04 175.44 160.98 179.86 C 163.76 179.73 186.02 180.47 186.02 203.56 C 186.02 226.65 159.08 226.21 157.13 224.38 C 154.73 226.52 143.19 238.13 129.19 224.88 C 126.16 227.47 116.26 238.44 100.61 223.30 C 93.36 226.33 76.13 228.66 72.79 210.87 C 69.44 193.09 86.58 188.06 91.42 190.04 Z" fill="url(#SVGID_7_)" fill-rule="nonzero" group-id="32,43" node-id="405" stroke="none" target-height="73.880005" target-width="116.58" target-x="69.44" target-y="164.56"></path><path d="M 608.49 153.22 C 608.49 153.22 617.83 127.74 640.79 137.74 C 646.09 132.36 652.65 128.45 661.52 130.21 C 670.39 131.98 676.11 138.62 678.05 143.04 C 680.83 142.91 703.09 143.65 703.09 166.74 C 703.09 189.83 676.15 189.39 674.20 187.56 C 671.80 189.70 660.26 201.31 646.26 188.06 C 643.23 190.65 633.33 201.62 617.68 186.48 C 610.43 189.51 593.20 191.84 589.86 174.05 C 586.51 156.27 603.65 151.24 608.49 153.22 Z" fill="url(#SVGID_8_)" fill-rule="nonzero" group-id="32,43" node-id="407" stroke="none" target-height="73.88" target-width="116.58002" target-x="586.51" target-y="127.74"></path><path d="M 489.15 207.74 C 489.15 207.74 495.91 189.29 512.53 196.54 C 516.37 192.64 521.11 189.81 527.54 191.09 C 533.96 192.37 538.10 197.18 539.50 200.37 C 541.51 200.28 557.63 200.81 557.63 217.52 C 557.63 234.23 538.13 233.91 536.72 232.59 C 534.98 234.14 526.63 242.54 516.49 232.96 C 514.30 234.83 507.13 242.78 495.81 231.82 C 490.56 234.01 478.09 235.70 475.67 222.82 C 473.25 209.94 485.65 206.31 489.15 207.74 Z" fill="url(#SVGID_9_)" fill-rule="nonzero" group-id="32,43" node-id="409" stroke="none" target-height="53.49002" target-width="84.380005" target-x="473.25" target-y="189.28998"></path><path d="M 773.68 576.96 C 773.68 623.65 734.59 668.44 665.02 701.45 C 595.45 734.47 501.09 753.02 402.70 753.02 C 304.31 753.02 209.95 734.47 140.38 701.45 C 70.81 668.44 31.72 623.65 31.72 576.96 C 31.72 530.27 70.81 485.48 140.38 452.47 C 209.95 419.45 304.31 400.90 402.70 400.90 C 501.09 400.90 595.45 419.45 665.02 452.47 C 734.59 485.48 773.68 530.27 773.68 576.96 Z" fill="url(#SVGID_10_)" fill-rule="nonzero" group-id="32,43" node-id="411" stroke="none" target-height="352.12" target-width="741.96014" target-x="31.72" target-y="400.90002"></path></g><g node-id="536"><g node-id="539"><path d="M 148.65 555.43 C 148.65 555.43 145.12 560.44 151.02 567.90 C 156.28 574.54 164.59 573.25 167.35 571.12 C 168.20 576.90 175.29 589.08 186.51 582.19 C 197.06 575.72 191.98 565.88 188.61 562.01 C 195.20 560.15 200.11 544.36 184.99 538.91 C 187.23 532.39 187.63 529.44 184.35 523.58 C 181.19 517.94 176.00 517.04 167.72 520.47 L 155.74 525.52 L 148.11 511.28 L 144.03 513.64 L 152.83 527.24 L 141.17 533.09 C 141.17 533.09 131.20 536.99 135.50 547.69 C 139.49 557.60 148.65 555.43 148.65 555.43 Z" fill="url(#SVGID_11_)" fill-rule="nonzero" group-id="32,44,47" node-id="417" stroke="none" target-height="77.80002" target-width="68.91" target-x="131.2" target-y="511.28"></path><path d="M 128.35 494.71 L 164.41 494.71 C 164.41 494.71 176.06 495.04 178.38 481.73 C 180.93 467.12 170.30 465.11 170.30 465.11 C 170.30 465.11 176.70 462.17 175.31 451.12 C 173.92 440.07 164.19 438.68 160.14 439.19 C 160.80 432.64 162.18 417.81 146.78 417.66 C 131.91 417.51 132.00 432.48 133.11 438.38 C 127.81 438.44 111.80 446.39 123.06 463.83 C 116.93 469.08 114.34 472.11 114.61 479.68 C 114.88 487.26 119.52 494.71 128.35 494.71 Z" fill="url(#SVGID_12_)" fill-rule="nonzero" group-id="32,44,47" node-id="419" stroke="none" target-height="77.53003" target-width="69.12999" target-x="111.8" target-y="417.50998"></path><path d="M 163.53 474.48 L 148.15 484.60 L 147.73 474.81 L 157.45 463.35 L 147.58 471.33 L 146.30 441.43 L 145.35 471.53 L 134.98 463.27 L 145.26 474.59 L 144.94 484.66 L 129.13 473.04 L 144.83 488.30 L 144.03 513.65 L 149.39 513.65 L 148.31 488.45 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="32,44,47" node-id="421" stroke="none" target-height="72.22006" target-width="34.399994" target-x="129.13" target-y="441.42996"></path></g><g node-id="540"><path d="M 671.07 537.12 C 671.07 537.12 667.82 541.74 673.25 548.60 C 678.09 554.72 685.75 553.53 688.29 551.56 C 689.07 556.88 695.61 568.09 705.94 561.76 C 715.65 555.80 710.98 546.74 707.87 543.18 C 713.94 541.47 718.46 526.92 704.54 521.91 C 706.61 515.91 706.98 513.19 703.95 507.80 C 701.04 502.61 696.26 501.77 688.64 504.94 L 677.60 509.59 L 670.57 496.48 L 666.82 498.65 L 674.92 511.17 L 664.19 516.56 C 664.19 516.56 655.01 520.15 658.97 530.01 C 662.64 539.13 671.07 537.12 671.07 537.12 Z" fill="url(#SVGID_13_)" fill-rule="nonzero" group-id="32,44,48" node-id="426" stroke="none" target-height="71.610016" target-width="63.450012" target-x="655.01" target-y="496.48"></path><path d="M 652.38 481.21 L 685.58 481.21 C 685.58 481.21 696.31 481.52 698.44 469.26 C 700.78 455.81 691.00 453.96 691.00 453.96 C 691.00 453.96 696.90 451.25 695.61 441.08 C 694.32 430.91 685.37 429.62 681.64 430.10 C 682.25 424.07 683.52 410.41 669.34 410.27 C 655.65 410.13 655.73 423.91 656.75 429.35 C 651.87 429.40 637.12 436.72 647.50 452.79 C 641.86 457.62 639.47 460.42 639.72 467.38 C 639.98 474.35 644.25 481.21 652.38 481.21 Z" fill="url(#SVGID_14_)" fill-rule="nonzero" group-id="32,44,48" node-id="428" stroke="none" target-height="71.38995" target-width="63.660034" target-x="637.12" target-y="410.13004"></path><path d="M 684.77 462.58 L 670.61 471.89 L 670.22 462.88 L 679.18 452.33 L 670.09 459.68 L 668.91 432.14 L 668.04 459.86 L 658.48 452.25 L 667.95 462.68 L 667.66 471.96 L 653.09 461.25 L 667.55 475.30 L 666.82 498.65 L 671.75 498.65 L 670.76 475.44 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="32,44,48" node-id="430" stroke="none" target-height="66.50998" target-width="31.679993" target-x="653.09" target-y="432.14"></path></g><g node-id="541"><path d="M 231.58 446.92 C 231.58 446.92 229.83 449.40 232.75 453.09 C 235.35 456.38 239.46 455.74 240.83 454.68 C 241.25 457.54 244.76 463.56 250.31 460.16 C 255.53 456.96 253.02 452.09 251.35 450.18 C 254.61 449.26 257.04 441.45 249.56 438.76 C 250.67 435.54 250.87 434.08 249.24 431.18 C 247.68 428.39 245.11 427.94 241.02 429.64 L 235.09 432.14 L 231.32 425.10 L 229.30 426.27 L 233.65 432.99 L 227.88 435.88 C 227.88 435.88 222.95 437.81 225.08 443.10 C 227.05 448.00 231.58 446.92 231.58 446.92 Z" fill="url(#SVGID_15_)" fill-rule="nonzero" group-id="32,44,49" node-id="435" stroke="none" target-height="38.45999" target-width="34.09001" target-x="222.95" target-y="425.1"></path><path d="M 221.54 416.89 L 239.37 416.89 C 239.37 416.89 245.13 417.05 246.28 410.47 C 247.54 403.24 242.28 402.25 242.28 402.25 C 242.28 402.25 245.45 400.79 244.76 395.33 C 244.07 389.87 239.26 389.18 237.26 389.43 C 237.59 386.19 238.27 378.85 230.65 378.78 C 223.29 378.71 223.34 386.11 223.89 389.03 C 221.27 389.06 213.35 392.99 218.92 401.62 C 215.89 404.21 214.60 405.72 214.74 409.46 C 214.88 413.20 217.17 416.89 221.54 416.89 Z" fill="url(#SVGID_16_)" fill-rule="nonzero" group-id="32,44,49" node-id="437" stroke="none" target-height="38.339996" target-width="34.189987" target-x="213.35" target-y="378.70996"></path><path d="M 238.94 406.88 L 231.33 411.89 L 231.13 407.05 L 235.94 401.38 L 231.05 405.33 L 230.42 390.54 L 229.95 405.42 L 224.82 401.34 L 229.91 406.94 L 229.75 411.92 L 221.93 406.17 L 229.69 413.72 L 229.30 426.26 L 231.95 426.26 L 231.42 413.79 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="32,44,49" node-id="439" stroke="none" target-height="35.72003" target-width="17.010025" target-x="221.92998" target-y="390.54"></path></g></g><g node-id="537"><path d="M 295.82 481.51 L 427.80 703.51 L 736.12 632.40 L 546.80 479.42 Z" fill="url(#SVGID_17_)" fill-rule="nonzero" group-id="32,45" node-id="444" stroke="none" target-height="224.09" target-width="440.3" target-x="295.82" target-y="479.42"></path><path d="M 295.81 474.37 L 409.62 474.37 L 409.62 323.20 L 295.81 353.06 Z" fill="url(#SVGID_18_)" fill-rule="nonzero" group-id="32,45" node-id="446" stroke="none" target-height="151.16998" target-width="113.81" target-x="295.81" target-y="323.2"></path><path d="M 546.90 423.54 L 409.62 423.54 L 409.62 323.20 L 546.90 354.56 Z" fill="url(#SVGID_19_)" fill-rule="nonzero" group-id="32,45" node-id="448" stroke="none" target-height="100.34" target-width="137.28003" target-x="409.62" target-y="323.2"></path><path d="M 295.81 353.06 L 256.33 400.10 L 295.81 417.75 Z" fill="url(#SVGID_20_)" fill-rule="nonzero" group-id="32,45" node-id="450" stroke="none" target-height="64.69003" target-width="39.48001" target-x="256.33" target-y="353.06"></path><path d="M 430.09 535.97 L 295.81 481.51 L 295.81 353.06 L 430.09 387.24 Z" fill="url(#SVGID_21_)" fill-rule="nonzero" group-id="32,45" node-id="452" stroke="none" target-height="182.90997" target-width="134.28" target-x="295.81" target-y="353.06"></path><path d="M 430.09 535.97 L 546.90 479.63 L 546.90 354.56 L 430.09 387.24 Z" fill="url(#SVGID_22_)" fill-rule="nonzero" group-id="32,45" node-id="454" stroke="none" target-height="181.40997" target-width="116.81003" target-x="430.09" target-y="354.56"></path><path d="M 546.90 354.56 L 586.47 407.52 L 471.91 452.97 L 430.09 387.24 Z" fill="url(#SVGID_23_)" fill-rule="nonzero" group-id="32,45" node-id="456" stroke="none" target-height="98.41" target-width="156.37997" target-x="430.09" target-y="354.56"></path><path d="M 295.81 353.06 L 260.32 412.40 L 399.67 458.41 L 430.09 387.24 Z" fill="url(#SVGID_24_)" fill-rule="nonzero" group-id="32,45" node-id="458" stroke="none" target-height="105.349976" target-width="169.76999" target-x="260.32" target-y="353.06"></path><path d="M 460.87 310.87 L 460.87 345.45 C 460.87 345.45 449.05 338.88 436.43 347.49 C 423.81 356.10 426.91 365.73 428.84 368.43 C 431.94 372.84 448.47 376.87 462.04 364.42 C 465.98 360.12 466.17 356.01 466.03 346.42 C 465.92 339.51 465.49 329.15 465.49 329.15 C 465.49 329.15 465.00 325.99 469.38 326.23 C 473.76 326.47 478.16 327.28 479.04 327.57 C 479.92 327.86 487.94 329.98 493.16 324.65 C 496.99 320.42 498.01 319.43 497.14 318.34 C 496.26 317.25 494.38 318.24 493.36 318.33 C 492.34 318.42 486.96 318.78 481.49 314.18 C 476.02 309.58 472.37 306.01 467.96 306.01 C 463.55 306.01 460.87 308.65 460.87 310.87 Z" fill="url(#SVGID_25_)" fill-rule="nonzero" group-id="32,45" node-id="460" stroke="none" target-height="70.860016" target-width="74.20004" target-x="423.81" target-y="306.01"></path><path d="M 441.92 234.57 L 432.10 260.49 C 432.10 260.49 428.18 256.55 422.12 259.00 C 416.06 261.45 415.27 265.31 415.12 267.12 C 414.97 268.93 417.37 273.78 423.80 273.46 C 430.23 273.14 432.86 270.19 434.67 265.41 C 436.48 260.63 441.62 247.05 441.62 247.05 L 459.28 249.67 L 452.70 267.23 C 452.70 267.23 447.73 263.61 442.86 265.54 C 437.99 267.47 435.69 270.84 435.66 273.62 C 435.63 276.41 438.84 281.02 445.61 279.97 C 452.38 278.93 454.37 274.22 455.31 271.73 C 456.25 269.25 467.68 239.06 467.68 239.06 C 467.68 239.06 468.86 236.88 466.67 236.60 C 464.48 236.32 443.72 233.38 443.72 233.38 C 443.72 233.38 442.51 233.01 441.92 234.57 Z" fill="url(#SVGID_26_)" fill-rule="nonzero" group-id="32,45" node-id="462" stroke="none" target-height="48.009995" target-width="53.889954" target-x="414.97003" target-y="233.01"></path><path d="M 366.39 302.38 C 366.74 302.88 366.94 303.19 367.16 303.47 C 369.75 306.87 371.92 306.91 374.73 303.63 C 377.00 300.98 377.64 297.84 377.42 294.46 C 377.16 290.46 375.57 286.89 373.73 283.40 C 373.14 282.27 372.37 282.93 371.74 283.23 C 368.70 284.67 365.52 285.20 362.19 284.89 C 353.33 284.07 343.45 276.51 343.85 263.66 C 344.01 258.60 345.31 253.84 347.57 249.34 C 348.02 248.44 347.98 247.85 347.36 247.00 C 341.56 238.99 340.61 230.38 344.39 221.25 C 344.76 220.36 345.27 219.53 345.76 218.70 C 346.06 218.19 346.45 217.73 346.84 217.19 C 351.85 219.46 355.81 222.73 358.50 227.57 C 361.82 233.56 361.76 239.52 358.73 245.53 C 357.59 247.79 356.37 250.01 355.12 252.21 C 354.64 253.05 354.61 253.66 355.31 254.41 C 356.34 255.51 357.23 256.74 358.22 257.95 C 359.46 256.90 360.52 255.80 361.76 254.99 C 366.36 251.98 371.26 251.03 376.20 253.97 C 381.25 256.98 383.48 261.68 383.04 267.50 C 382.62 273.05 379.83 277.40 375.57 280.85 C 374.80 281.48 374.63 281.90 375.11 282.88 C 376.56 285.85 378.14 288.81 379.10 291.95 C 380.60 296.87 379.40 301.47 376.08 305.38 C 371.19 311.12 362.84 310.18 358.84 303.52 C 355.88 298.60 356.62 292.64 360.75 289.55 C 362.07 288.56 363.71 287.75 365.31 287.41 C 368.68 286.70 371.62 288.77 373.30 292.61 C 375.11 296.77 372.78 300.88 367.99 302.01 C 367.52 302.13 367.07 302.22 366.39 302.38 Z M 378.50 264.28 C 378.40 263.93 378.31 263.57 378.19 263.22 C 376.87 259.26 373.07 257.30 369.09 258.45 C 366.60 259.17 364.96 260.91 363.47 262.89 C 362.93 263.61 362.90 264.18 363.46 264.97 C 366.39 269.20 369.26 273.46 372.11 277.74 C 373.17 279.33 373.19 279.39 374.61 278.11 C 378.78 274.31 379.65 269.57 378.50 264.28 Z M 364.46 275.26 C 362.57 275.04 360.61 273.95 359.35 272.10 C 357.07 268.74 356.02 265.07 356.89 260.99 C 356.96 260.66 356.97 260.19 356.80 259.94 C 355.76 258.45 354.66 257.01 353.31 255.19 C 352.53 257.00 351.74 258.41 351.30 259.92 C 349.22 267.07 353.28 276.44 359.87 279.92 C 363.70 281.94 367.52 281.67 371.69 279.91 C 368.45 275.53 365.33 271.31 362.14 266.99 C 361.93 267.28 361.74 267.42 361.74 267.56 C 361.72 268.11 361.62 268.72 361.81 269.20 C 362.64 271.24 363.57 273.25 364.46 275.26 Z M 349.67 245.17 C 355.85 240.03 356.04 228.57 350.04 223.84 C 346.83 228.37 346.72 240.46 349.67 245.17 Z" fill="url(#SVGID_27_)" fill-rule="nonzero" group-id="32,45" node-id="464" stroke="none" target-height="93.92998" target-width="42.870026" target-x="340.61" target-y="217.19002"></path></g><g node-id="538"><path d="M 597.25 559.80 L 596.38 563.38 L 600.97 568.64 L 602.22 567.34 L 602.45 561.34 Z" fill="#ffbe92" fill-rule="nonzero" group-id="32,46" node-id="469" stroke="none" target-height="8.840027" target-width="6.0700073" target-x="596.38" target-y="559.8"></path><path d="M 592.07 564.23 L 602.34 577.22 C 602.34 577.22 603.79 577.32 604.83 576.83 C 605.94 576.30 606.62 575.15 605.62 574.25 C 604.62 573.34 602.70 573.34 602.78 570.35 C 602.82 568.92 603.01 567.49 602.46 566.58 C 598.81 565.91 596.28 561.92 596.28 561.92 L 592.07 564.23 Z" fill="#f8b62d" fill-rule="nonzero" group-id="32,46" node-id="471" stroke="none" target-height="15.400024" target-width="14.549988" target-x="592.07" target-y="561.92"></path><path d="M 590.88 564.65 L 595.14 571.39 L 596.50 570.75 C 596.50 570.75 600.05 576.03 600.60 576.61 C 601.15 577.19 603.46 577.61 603.87 577.55 C 604.28 577.49 605.07 576.68 605.07 576.68 C 605.07 576.68 601.68 576.13 601.29 575.54 C 600.90 574.94 593.27 563.30 593.27 563.30 L 590.88 564.65 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="32,46" node-id="473" stroke="none" target-height="14.309998" target-width="14.190002" target-x="590.88" target-y="563.3"></path><path d="M 589.28 528.38 C 589.28 528.38 590.48 528.44 591.88 532.18 C 594.73 530.47 596.39 526.54 596.39 526.54 L 591.73 523.10 L 589.28 528.38 Z" fill="#ffbe92" fill-rule="nonzero" group-id="32,46" node-id="475" stroke="none" target-height="9.080017" target-width="7.1099854" target-x="589.28" target-y="523.1"></path><path d="M 600.36 527.72 L 589.38 542.13 C 589.38 542.13 584.37 539.66 588.88 534.11 C 589.79 532.99 589.19 531.08 589.94 530.17 C 593.60 529.46 596.13 525.46 596.13 525.46 L 600.36 527.72 Z" fill="#f8b62d" fill-rule="nonzero" group-id="32,46" node-id="477" stroke="none" target-height="16.669983" target-width="15.98999" target-x="584.37" target-y="525.46"></path><path d="M 601.56 528.13 L 597.30 534.89 L 595.93 534.27 L 590.26 542.81 L 589.13 542.25 L 599.15 526.81 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="32,46" node-id="479" stroke="none" target-height="16" target-width="12.429993" target-x="589.13" target-y="526.81"></path><path d="M 588.08 463.85 C 588.08 463.85 587.26 465.78 591.01 469.94 C 591.84 470.69 593.21 472.16 596.47 471.72 C 596.65 471.60 596.90 471.82 597.06 472.06 C 597.22 472.30 599.24 475.90 599.24 475.90 L 605.78 473.29 C 605.78 473.29 598.02 463.47 597.14 461.28 C 596.68 460.16 594.63 458.70 592.16 459.57 C 589.68 460.45 588.08 463.85 588.08 463.85 Z" fill="#ffbe92" fill-rule="nonzero" group-id="32,46" node-id="481" stroke="none" target-height="17.199982" target-width="18.52002" target-x="587.26" target-y="458.7"></path><path d="M 588.65 457.90 C 588.65 457.90 587.47 456.95 586.02 458.58 C 584.57 460.21 586.12 461.42 586.35 461.78 C 586.58 462.15 586.46 462.55 585.83 462.56 C 585.20 462.57 584.17 462.80 584.02 464.27 C 583.87 465.74 586.64 468.32 588.64 467.15 C 590.64 465.98 591.25 464.47 591.70 463.40 C 592.15 462.33 594.72 461.64 595.91 461.16 C 597.10 460.68 597.79 464.98 598.42 465.26 C 599.06 465.55 600.05 465.04 600.12 464.22 C 600.19 463.40 600.59 461.11 598.07 459.99 C 597.60 459.29 597.82 459.14 598.04 458.55 C 598.26 457.96 598.56 457.05 597.55 456.31 C 596.54 455.58 596.03 455.93 595.30 456.26 C 594.57 456.59 594.50 456.32 594.30 455.89 C 594.11 455.46 592.86 454.04 591.41 454.66 C 589.96 455.28 589.67 456.35 589.60 457.18 C 589.52 458.02 588.98 458.03 588.65 457.90 Z" fill="#171c61" fill-rule="nonzero" group-id="32,46" node-id="483" stroke="none" target-height="14.279999" target-width="16.720032" target-x="583.87" target-y="454.04"></path><path d="M 599.80 497.79 C 599.80 497.79 596.41 499.40 590.53 499.11 C 584.65 498.82 569.40 499.91 569.37 506.36 C 569.34 512.81 579.01 521.00 581.90 523.04 C 584.78 525.09 589.85 529.94 589.85 529.94 L 595.01 524.37 C 595.01 524.37 590.09 519.62 587.96 516.47 C 586.42 514.19 583.86 510.74 583.86 510.74 C 583.86 510.74 595.42 514.83 601.80 513.56 C 603.05 513.13 602.23 515.34 602.11 516.99 C 601.99 518.64 597.45 538.83 596.88 544.84 C 596.31 550.85 596.72 561.76 596.72 561.76 L 602.44 563.16 C 602.44 563.16 607.44 542.91 607.29 540.17 C 607.14 537.43 612.41 533.20 615.46 525.91 C 616.93 522.39 620.46 512.17 619.93 506.21 C 619.40 500.27 599.80 497.79 599.80 497.79 Z" fill="url(#SVGID_28_)" fill-rule="nonzero" group-id="32,46" node-id="485" stroke="none" target-height="65.369995" target-width="51.119995" target-x="569.34" target-y="497.78998"></path><path d="M 585.49 483.04 C 585.31 483.26 590.71 487.03 591.42 489.26 C 592.83 487.88 593.44 487.49 594.05 487.74 C 594.66 487.99 600.48 492.68 598.63 495.91 C 596.78 499.14 595.19 498.14 597.72 500.13 C 600.25 502.12 609.00 502.77 611.32 503.01 C 613.64 503.24 619.61 508.91 620.98 508.71 C 622.34 508.52 624.19 503.33 623.94 500.65 C 623.69 497.97 622.79 494.01 622.08 489.00 C 621.38 483.98 617.39 476.62 615.86 473.72 C 614.33 470.82 615.14 468.91 615.14 468.91 C 615.14 468.91 613.08 462.81 609.04 462.67 C 607.77 464.13 606.33 466.43 606.11 468.39 C 605.89 470.35 603.16 470.23 603.16 470.23 C 603.16 470.23 602.38 474.53 598.21 473.95 C 596.76 474.79 593.76 475.32 591.31 477.47 C 588.82 479.62 588.23 479.77 585.49 483.04 Z" fill="url(#SVGID_29_)" fill-rule="nonzero" group-id="32,46" node-id="487" stroke="none" target-height="46.23996" target-width="38.880005" target-x="585.31" target-y="462.67004"></path><path d="M 609.27 464.93 C 609.27 464.93 611.60 453.81 613.15 450.16 C 614.71 446.51 616.32 441.83 616.82 439.92 C 617.32 438.01 618.68 435.65 620.54 434.33 C 622.39 433.01 625.63 431.95 626.19 432.40 C 626.75 432.85 623.99 434.96 623.54 435.81 C 623.09 436.66 623.18 436.82 624.22 436.62 C 625.26 436.42 626.00 435.97 626.27 436.63 C 626.54 437.29 625.79 437.62 624.53 438.11 C 623.27 438.60 621.90 439.18 621.09 439.38 C 620.28 439.58 619.98 440.07 619.98 441.70 C 619.98 443.34 617.67 453.27 617.29 455.63 C 616.91 457.99 616.36 466.25 614.18 469.93 C 610.72 466.74 609.27 464.93 609.27 464.93 Z" fill="#ffbe92" fill-rule="nonzero" group-id="32,46" node-id="489" stroke="none" target-height="37.97995" target-width="17.47998" target-x="609.27" target-y="431.95004"></path><path d="M 586.21 483.41 C 586.21 483.41 574.78 486.06 571.06 487.70 C 567.34 489.34 562.55 491.07 560.59 491.63 C 558.63 492.19 556.24 493.60 554.93 495.45 C 553.63 497.30 552.65 500.50 553.13 501.02 C 553.61 501.54 555.71 498.78 556.57 498.32 C 557.43 497.86 557.60 497.94 557.43 498.96 C 557.26 499.98 556.82 500.72 557.52 500.96 C 558.21 501.21 558.53 500.46 558.99 499.21 C 559.45 497.96 560.01 496.61 560.19 495.81 C 560.37 495.01 560.86 494.71 562.55 494.65 C 564.24 494.59 574.44 492.00 576.87 491.55 C 579.30 491.10 587.82 490.28 591.56 488.03 C 588.14 484.77 586.21 483.41 586.21 483.41 Z" fill="#ffbe92" fill-rule="nonzero" group-id="32,46" node-id="491" stroke="none" target-height="18.130005" target-width="38.909973" target-x="552.65" target-y="483.41"></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="184"><linearGradient gradientUnits="objectBoundingBox" id="SVGID_1_" node-id="18" spreadMethod="pad" x1="257.8387" x2="257.8387" y1="422.442" y2="325.6537"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_2_" node-id="22" spreadMethod="pad" x1="193.2217" x2="193.2217" y1="480.4338" y2="263.9448"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_3_" node-id="26" spreadMethod="pad" x1="569.0033" x2="569.0033" y1="437.755" y2="281.2742"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_4_" node-id="30" spreadMethod="pad" x1="631.5281" x2="631.5281" y1="460.425" y2="290.6843"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_5_" node-id="34" spreadMethod="pad" x1="122.8156" x2="122.8156" y1="502.5035" y2="351.9901"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_6_" node-id="38" spreadMethod="pad" x1="685.4888" x2="685.4888" y1="485.8981" y2="362.7658"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_7_" node-id="42" spreadMethod="pad" x1="128.7792" x2="128.7792" y1="230.1962" y2="165.6549"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_8_" node-id="46" spreadMethod="pad" x1="645.8477" x2="645.8477" y1="193.3758" y2="128.8345"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_9_" node-id="50" spreadMethod="pad" x1="547.8824" x2="547.8824" y1="244.6428" y2="197.9256"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_10_" node-id="54" spreadMethod="pad" x1="402.2941" x2="402.2941" y1="752.074" y2="399.9452"><stop offset="0.4065" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dae4ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_11_" node-id="60" spreadMethod="pad" x1="193.2236" x2="141.7874" y1="575.5298" y2="514.2305"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_12_" node-id="64" spreadMethod="pad" x1="114.1758" x2="178.3626" y1="455.2395" y2="455.2395"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_13_" node-id="70" spreadMethod="pad" x1="712.0857" x2="664.7203" y1="555.5573" y2="499.1094"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_14_" node-id="74" spreadMethod="pad" x1="639.2939" x2="698.4009" y1="444.787" y2="444.787"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_15_" node-id="80" spreadMethod="pad" x1="253.4231" x2="227.9818" y1="456.3865" y2="426.0668"><stop offset="0.0000001438503" stop-color="#eaeff6"></stop><stop offset="1" stop-color="#cddae9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_16_" node-id="84" spreadMethod="pad" x1="214.3246" x2="246.0726" y1="396.8888" y2="396.8888"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_17_" node-id="90" spreadMethod="pad" x1="299.2637" x2="569.9445" y1="331.1527" y2="331.1527"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_18_" node-id="94" spreadMethod="pad" x1="390.2495" x2="390.2495" y1="326.6594" y2="522.4277"><stop offset="0" stop-color="#f4f7fa"></stop><stop offset="1" stop-color="#f1f4f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_19_" node-id="98" spreadMethod="pad" x1="378.0013" x2="483.7292" y1="343.5436" y2="343.5436"><stop offset="0" stop-color="#ffffff"></stop><stop offset="1" stop-color="#e3e9f3"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_20_" node-id="106" spreadMethod="pad" x1="463.3818" x2="486.1052" y1="210.6404" y2="210.6404"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_21_" node-id="110" spreadMethod="pad" x1="537.2941" x2="476.9906" y1="692.0218" y2="481.7184"><stop offset="0.2334" stop-color="#ffffff"></stop><stop offset="1" stop-color="#bbcbe0"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_22_" node-id="114" spreadMethod="pad" x1="386.8026" x2="527.96" y1="250.0846" y2="250.0846"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_23_" node-id="118" spreadMethod="pad" x1="469.6156" x2="497.9045" y1="191.6882" y2="191.6882"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_24_" node-id="123" spreadMethod="pad" x1="328.5219" x2="328.5219" y1="457.439" y2="528.6038"><stop offset="0" stop-color="#dde5f0"></stop><stop offset="1" stop-color="#9fb7ce"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_25_" node-id="128" spreadMethod="pad" x1="454.0164" x2="454.0164" y1="457.4391" y2="528.6037"><stop offset="0" stop-color="#dde5f0"></stop><stop offset="1" stop-color="#9fb7ce"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_26_" node-id="133" spreadMethod="pad" x1="390.2495" x2="390.2495" y1="455.9131" y2="530.1297"><stop offset="0" stop-color="#dde5f0"></stop><stop offset="1" stop-color="#9fb7ce"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_27_" node-id="145" spreadMethod="pad" x1="573.9847" x2="550.0026" y1="563.3937" y2="497.5033"><stop offset="0" stop-color="#78c8ff"></stop><stop offset="0.6903" stop-color="#2a80e2"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_28_" node-id="150" spreadMethod="pad" x1="2310.6587" x2="2310.6587" y1="504.8681" y2="456.3331"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient></defs><g node-id="505"><g node-id="535"><path d="M 272.30 329.06 L 272.30 325.65 L 242.80 325.65 L 242.80 329.61 L 236.32 329.61 L 236.32 422.44 L 279.37 422.44 L 279.37 329.06 L 272.30 329.06 Z M 275.64 411.80 L 239.60 411.80 L 239.60 409.05 L 275.64 409.05 L 275.64 411.80 Z M 275.64 399.12 L 239.60 399.12 L 239.60 396.37 L 275.64 396.37 L 275.64 399.12 Z M 275.64 386.44 L 239.60 386.44 L 239.60 383.69 L 275.64 383.69 L 275.64 386.44 Z M 275.64 374.10 L 239.60 374.10 L 239.60 371.35 L 275.64 371.35 L 275.64 374.10 Z M 275.64 361.79 L 239.60 361.79 L 239.60 359.04 L 275.64 359.04 L 275.64 361.79 Z M 275.64 349.11 L 239.60 349.11 L 239.60 346.36 L 275.64 346.36 L 275.64 349.11 Z M 275.64 336.77 L 239.60 336.77 L 239.60 334.02 L 275.64 334.02 L 275.64 336.77 Z" fill="url(#SVGID_1_)" fill-rule="nonzero" group-id="13,43" node-id="369" stroke="none" target-height="96.79004" target-width="43.049988" target-x="236.32" target-y="325.65"></path><path d="M 214.31 380.87 L 214.31 272.69 L 181.56 272.69 L 181.56 263.95 L 167.70 263.95 L 167.70 317.28 L 163.97 317.28 L 163.97 480.44 L 222.48 480.44 L 222.48 380.88 L 214.31 380.88 Z M 189.82 412.68 L 181.56 412.68 L 181.56 404.67 L 189.82 404.67 L 189.82 412.68 Z M 189.82 400.15 L 181.56 400.15 L 181.56 392.14 L 189.82 392.14 L 189.82 400.15 Z M 189.82 387.68 L 181.56 387.68 L 181.56 379.67 L 189.82 379.67 L 189.82 387.68 Z M 189.82 375.24 L 181.56 375.24 L 181.56 367.23 L 189.82 367.23 L 189.82 375.24 Z M 189.82 362.71 L 181.56 362.71 L 181.56 354.70 L 189.82 354.70 L 189.82 362.71 Z M 189.82 337.71 L 181.56 337.71 L 181.56 329.70 L 189.82 329.70 L 189.82 337.71 Z M 189.82 325.18 L 181.56 325.18 L 181.56 317.17 L 189.82 317.17 L 189.82 325.18 Z M 189.82 312.70 L 181.56 312.70 L 181.56 304.69 L 189.82 304.69 L 189.82 312.70 Z M 189.82 300.27 L 181.56 300.27 L 181.56 292.26 L 189.82 292.26 L 189.82 300.27 Z M 189.82 287.73 L 181.56 287.73 L 181.56 279.72 L 189.82 279.72 L 189.82 287.73 Z M 202.17 412.68 L 193.91 412.68 L 193.91 404.67 L 202.17 404.67 L 202.17 412.68 Z M 202.17 400.15 L 193.91 400.15 L 193.91 392.14 L 202.17 392.14 L 202.17 400.15 Z M 202.17 387.68 L 193.91 387.68 L 193.91 379.67 L 202.17 379.67 L 202.17 387.68 Z M 202.17 375.24 L 193.91 375.24 L 193.91 367.23 L 202.17 367.23 L 202.17 375.24 Z M 202.17 362.71 L 193.91 362.71 L 193.91 354.70 L 202.17 354.70 L 202.17 362.71 Z M 202.17 337.71 L 193.91 337.71 L 193.91 329.70 L 202.17 329.70 L 202.17 337.71 Z M 202.17 325.18 L 193.91 325.18 L 193.91 317.17 L 202.17 317.17 L 202.17 325.18 Z M 202.17 312.70 L 193.91 312.70 L 193.91 304.69 L 202.17 304.69 L 202.17 312.70 Z M 202.17 300.27 L 193.91 300.27 L 193.91 292.26 L 202.17 292.26 L 202.17 300.27 Z M 202.17 287.73 L 193.91 287.73 L 193.91 279.72 L 202.17 279.72 L 202.17 287.73 Z" fill="url(#SVGID_2_)" fill-rule="nonzero" group-id="13,43" node-id="371" stroke="none" target-height="216.48999" target-width="58.509995" target-x="163.97" target-y="263.95"></path><path d="M 536.62 437.75 C 536.98 433.10 536.62 281.27 536.62 281.27 L 555.15 281.27 L 555.15 314.98 L 584.65 314.98 L 584.65 385.43 L 601.38 385.43 L 601.38 437.75 L 536.62 437.75 Z" fill="url(#SVGID_3_)" fill-rule="nonzero" group-id="13,43" node-id="373" stroke="none" target-height="156.48001" target-width="64.76001" target-x="536.62" target-y="281.27"></path><path d="M 657.84 369.61 L 657.84 364.76 L 652.84 364.76 L 652.84 322.43 L 640.64 322.43 L 640.64 317.73 L 632.41 317.73 L 632.41 310.82 L 628.12 310.82 L 628.12 290.68 L 625.03 290.68 L 625.03 310.96 L 621.09 310.96 L 621.09 317.87 L 608.89 317.87 L 608.89 329.19 L 601.84 329.19 L 601.84 460.42 L 661.22 460.42 L 661.22 369.60 L 657.84 369.60 Z M 612.32 422.39 L 608.30 422.39 L 608.30 407.15 L 612.32 407.15 L 612.32 422.39 Z M 612.32 403.74 L 608.30 403.74 L 608.30 388.50 L 612.32 388.50 L 612.32 403.74 Z M 612.32 385.09 L 608.30 385.09 L 608.30 369.85 L 612.32 369.85 L 612.32 385.09 Z M 612.32 366.11 L 608.30 366.11 L 608.30 350.87 L 612.32 350.87 L 612.32 366.11 Z M 612.32 347.12 L 608.30 347.12 L 608.30 331.88 L 612.32 331.88 L 612.32 347.12 Z M 620.60 422.39 L 616.58 422.39 L 616.58 407.15 L 620.60 407.15 L 620.60 422.39 Z M 620.60 403.74 L 616.58 403.74 L 616.58 388.50 L 620.60 388.50 L 620.60 403.74 Z M 620.60 385.09 L 616.58 385.09 L 616.58 369.85 L 620.60 369.85 L 620.60 385.09 Z M 620.60 366.11 L 616.58 366.11 L 616.58 350.87 L 620.60 350.87 L 620.60 366.11 Z M 620.60 347.12 L 616.58 347.12 L 616.58 331.88 L 620.60 331.88 L 620.60 347.12 Z M 628.88 422.39 L 624.86 422.39 L 624.86 407.15 L 628.88 407.15 L 628.88 422.39 Z M 628.88 403.74 L 624.86 403.74 L 624.86 388.50 L 628.88 388.50 L 628.88 403.74 Z M 628.88 385.09 L 624.86 385.09 L 624.86 369.85 L 628.88 369.85 L 628.88 385.09 Z M 628.88 366.11 L 624.86 366.11 L 624.86 350.87 L 628.88 350.87 L 628.88 366.11 Z M 628.88 347.12 L 624.86 347.12 L 624.86 331.88 L 628.88 331.88 L 628.88 347.12 Z M 637.16 422.39 L 633.14 422.39 L 633.14 407.15 L 637.16 407.15 L 637.16 422.39 Z M 637.16 403.74 L 633.14 403.74 L 633.14 388.50 L 637.16 388.50 L 637.16 403.74 Z M 637.16 385.09 L 633.14 385.09 L 633.14 369.85 L 637.16 369.85 L 637.16 385.09 Z M 637.16 366.11 L 633.14 366.11 L 633.14 350.87 L 637.16 350.87 L 637.16 366.11 Z M 637.16 347.12 L 633.14 347.12 L 633.14 331.88 L 637.16 331.88 L 637.16 347.12 Z M 645.44 422.39 L 641.42 422.39 L 641.42 407.15 L 645.44 407.15 L 645.44 422.39 Z M 645.44 403.74 L 641.42 403.74 L 641.42 388.50 L 645.44 388.50 L 645.44 403.74 Z M 645.44 385.09 L 641.42 385.09 L 641.42 369.85 L 645.44 369.85 L 645.44 385.09 Z M 645.44 366.11 L 641.42 366.11 L 641.42 350.87 L 645.44 350.87 L 645.44 366.11 Z M 645.44 347.12 L 641.42 347.12 L 641.42 331.88 L 645.44 331.88 L 645.44 347.12 Z" fill="url(#SVGID_4_)" fill-rule="nonzero" group-id="13,43" node-id="375" stroke="none" target-height="169.74002" target-width="59.379944" target-x="601.84" target-y="290.68"></path><path d="M 96.19 502.50 L 96.19 412.96 L 106.44 412.96 L 106.44 367.26 L 141.71 351.99 L 141.71 412.24 L 149.44 412.24 L 149.44 502.50 Z" fill="url(#SVGID_5_)" fill-rule="nonzero" group-id="13,43" node-id="377" stroke="none" target-height="150.50995" target-width="53.25" target-x="96.19" target-y="351.99002"></path><path d="M 700.96 485.90 L 670.02 485.90 L 670.02 362.77 L 700.96 377.74 Z" fill="url(#SVGID_6_)" fill-rule="nonzero" group-id="13,43" node-id="379" stroke="none" target-height="123.130005" target-width="30.940002" target-x="670.02" target-y="362.77"></path><path d="M 91.01 189.09 C 91.01 189.09 100.35 163.61 123.31 173.61 C 128.61 168.23 135.17 164.32 144.04 166.08 C 152.91 167.85 158.63 174.49 160.57 178.91 C 163.35 178.78 185.61 179.52 185.61 202.61 C 185.61 225.70 158.67 225.26 156.72 223.43 C 154.32 225.57 142.78 237.18 128.78 223.93 C 125.75 226.52 115.85 237.49 100.20 222.35 C 92.95 225.38 75.72 227.71 72.38 209.92 C 69.04 192.13 86.17 187.11 91.01 189.09 Z" fill="url(#SVGID_7_)" fill-rule="nonzero" group-id="13,43" node-id="381" stroke="none" target-height="73.880005" target-width="116.57" target-x="69.04" target-y="163.61"></path><path d="M 608.08 152.27 C 608.08 152.27 617.42 126.79 640.38 136.79 C 645.68 131.41 652.24 127.50 661.11 129.26 C 669.98 131.03 675.70 137.67 677.64 142.09 C 680.42 141.96 702.68 142.70 702.68 165.79 C 702.68 188.88 675.74 188.44 673.79 186.61 C 671.39 188.75 659.85 200.36 645.85 187.11 C 642.82 189.70 632.92 200.67 617.27 185.53 C 610.02 188.56 592.79 190.89 589.45 173.10 C 586.10 155.32 603.24 150.29 608.08 152.27 Z" fill="url(#SVGID_8_)" fill-rule="nonzero" group-id="13,43" node-id="383" stroke="none" target-height="73.88" target-width="116.58002" target-x="586.1" target-y="126.79"></path><path d="M 520.54 214.89 C 520.54 214.89 527.30 196.44 543.92 203.69 C 547.76 199.79 552.50 196.96 558.93 198.24 C 565.35 199.52 569.49 204.33 570.89 207.52 C 572.90 207.43 589.02 207.96 589.02 224.67 C 589.02 241.38 569.52 241.06 568.11 239.74 C 566.37 241.29 558.02 249.69 547.88 240.11 C 545.69 241.98 538.52 249.93 527.20 238.97 C 521.95 241.16 509.48 242.85 507.06 229.97 C 504.64 217.09 517.04 213.46 520.54 214.89 Z" fill="url(#SVGID_9_)" fill-rule="nonzero" group-id="13,43" node-id="385" stroke="none" target-height="53.48999" target-width="84.380005" target-x="504.64" target-y="196.44"></path><path d="M 773.27 576.01 C 773.27 622.70 734.18 667.49 664.61 700.50 C 595.04 733.52 500.68 752.07 402.29 752.07 C 303.90 752.07 209.54 733.52 139.97 700.50 C 70.40 667.49 31.31 622.70 31.31 576.01 C 31.31 529.32 70.40 484.53 139.97 451.52 C 209.54 418.50 303.90 399.95 402.29 399.95 C 500.68 399.95 595.04 418.50 664.61 451.52 C 734.18 484.53 773.27 529.32 773.27 576.01 Z" fill="url(#SVGID_10_)" fill-rule="nonzero" group-id="13,43" node-id="387" stroke="none" target-height="352.11996" target-width="741.96" target-x="31.309998" target-y="399.95004"></path></g><g node-id="536"><g node-id="539"><path d="M 148.24 554.48 C 148.24 554.48 144.71 559.49 150.61 566.95 C 155.87 573.59 164.18 572.30 166.94 570.17 C 167.79 575.95 174.88 588.13 186.10 581.24 C 196.65 574.77 191.57 564.93 188.20 561.06 C 194.79 559.20 199.70 543.41 184.58 537.96 C 186.82 531.44 187.22 528.49 183.94 522.63 C 180.78 516.99 175.59 516.09 167.31 519.52 L 155.33 524.57 L 147.70 510.33 L 143.62 512.69 L 152.42 526.29 L 140.76 532.14 C 140.76 532.14 130.79 536.04 135.09 546.74 C 139.08 556.65 148.24 554.48 148.24 554.48 Z" fill="url(#SVGID_11_)" fill-rule="nonzero" group-id="13,44,47" node-id="393" stroke="none" target-height="77.80002" target-width="68.90999" target-x="130.79" target-y="510.33"></path><path d="M 127.94 493.76 L 164.00 493.76 C 164.00 493.76 175.65 494.09 177.97 480.78 C 180.52 466.17 169.89 464.16 169.89 464.16 C 169.89 464.16 176.29 461.22 174.90 450.17 C 173.50 439.13 163.78 437.73 159.73 438.24 C 160.39 431.69 161.77 416.86 146.37 416.71 C 131.50 416.56 131.59 431.53 132.70 437.43 C 127.40 437.49 111.39 445.44 122.65 462.88 C 116.52 468.13 113.93 471.16 114.20 478.73 C 114.47 486.31 119.11 493.76 127.94 493.76 Z" fill="url(#SVGID_12_)" fill-rule="nonzero" group-id="13,44,47" node-id="395" stroke="none" target-height="77.53" target-width="69.130005" target-x="111.39" target-y="416.56"></path><path d="M 163.12 473.52 L 147.74 483.65 L 147.32 473.86 L 157.04 462.40 L 147.17 470.38 L 145.89 440.48 L 144.95 470.58 L 134.57 462.32 L 144.85 473.64 L 144.53 483.71 L 128.72 472.09 L 144.42 487.35 L 143.63 512.70 L 148.98 512.70 L 147.90 487.50 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="13,44,47" node-id="397" stroke="none" target-height="72.21997" target-width="34.399994" target-x="128.72" target-y="440.48004"></path></g><g node-id="540"><path d="M 670.66 536.17 C 670.66 536.17 667.41 540.79 672.84 547.65 C 677.68 553.77 685.34 552.58 687.88 550.61 C 688.66 555.93 695.20 567.14 705.53 560.81 C 715.24 554.85 710.57 545.79 707.46 542.23 C 713.53 540.52 718.05 525.97 704.13 520.96 C 706.20 514.96 706.57 512.24 703.54 506.85 C 700.63 501.66 695.85 500.82 688.23 503.99 L 677.19 508.64 L 670.16 495.53 L 666.41 497.70 L 674.51 510.22 L 663.78 515.61 C 663.78 515.61 654.60 519.20 658.56 529.06 C 662.23 538.18 670.66 536.17 670.66 536.17 Z" fill="url(#SVGID_13_)" fill-rule="nonzero" group-id="13,44,48" node-id="402" stroke="none" target-height="71.610016" target-width="63.450012" target-x="654.6" target-y="495.53"></path><path d="M 651.97 480.26 L 685.17 480.26 C 685.17 480.26 695.90 480.57 698.03 468.31 C 700.37 454.86 690.59 453.01 690.59 453.01 C 690.59 453.01 696.49 450.30 695.20 440.13 C 693.91 429.96 684.96 428.67 681.23 429.15 C 681.84 423.12 683.11 409.46 668.93 409.32 C 655.24 409.18 655.32 422.96 656.34 428.40 C 651.46 428.45 636.71 435.77 647.09 451.84 C 641.45 456.67 639.06 459.47 639.31 466.43 C 639.57 473.40 643.84 480.26 651.97 480.26 Z" fill="url(#SVGID_14_)" fill-rule="nonzero" group-id="13,44,48" node-id="404" stroke="none" target-height="71.390015" target-width="63.659912" target-x="636.71" target-y="409.18"></path><path d="M 684.36 461.63 L 670.20 470.94 L 669.81 461.93 L 678.77 451.38 L 669.68 458.73 L 668.50 431.19 L 667.63 458.91 L 658.07 451.30 L 667.54 461.73 L 667.25 471.01 L 652.68 460.30 L 667.14 474.35 L 666.41 497.70 L 671.34 497.70 L 670.35 474.49 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="13,44,48" node-id="406" stroke="none" target-height="66.51001" target-width="31.679993" target-x="652.68" target-y="431.19"></path></g><g node-id="541"><path d="M 231.17 445.97 C 231.17 445.97 229.42 448.45 232.34 452.14 C 234.94 455.43 239.05 454.79 240.42 453.73 C 240.84 456.59 244.35 462.61 249.90 459.21 C 255.12 456.01 252.61 451.14 250.94 449.23 C 254.20 448.31 256.63 440.50 249.15 437.81 C 250.26 434.59 250.46 433.13 248.83 430.23 C 247.27 427.44 244.70 426.99 240.61 428.69 L 234.68 431.19 L 230.91 424.15 L 228.89 425.32 L 233.24 432.04 L 227.47 434.93 C 227.47 434.93 222.54 436.86 224.67 442.15 C 226.64 447.05 231.17 445.97 231.17 445.97 Z" fill="url(#SVGID_15_)" fill-rule="nonzero" group-id="13,44,49" node-id="411" stroke="none" target-height="38.460022" target-width="34.089996" target-x="222.54001" target-y="424.14996"></path><path d="M 221.13 415.94 L 238.96 415.94 C 238.96 415.94 244.72 416.10 245.87 409.52 C 247.13 402.29 241.87 401.30 241.87 401.30 C 241.87 401.30 245.04 399.84 244.35 394.38 C 243.66 388.92 238.85 388.23 236.85 388.48 C 237.18 385.24 237.86 377.90 230.24 377.83 C 222.88 377.76 222.93 385.16 223.48 388.08 C 220.86 388.11 212.94 392.04 218.51 400.67 C 215.48 403.26 214.19 404.77 214.33 408.51 C 214.47 412.26 216.77 415.94 221.13 415.94 Z" fill="url(#SVGID_16_)" fill-rule="nonzero" group-id="13,44,49" node-id="413" stroke="none" target-height="38.340057" target-width="34.190002" target-x="212.94" target-y="377.75998"></path><path d="M 238.53 405.93 L 230.92 410.94 L 230.72 406.10 L 235.53 400.43 L 230.64 404.38 L 230.01 389.59 L 229.54 404.47 L 224.41 400.39 L 229.50 405.99 L 229.34 410.97 L 221.52 405.22 L 229.28 412.77 L 228.89 425.31 L 231.54 425.31 L 231.01 412.84 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="13,44,49" node-id="415" stroke="none" target-height="35.71997" target-width="17.010025" target-x="221.51999" target-y="389.59003"></path></g></g><g node-id="537"><path d="M 567.83 371.35 C 554.74 414.74 484.47 431.93 410.90 409.72 C 337.32 387.52 288.29 334.34 301.38 290.95 C 314.47 247.56 384.74 230.37 458.31 252.58 C 531.88 274.79 580.92 327.96 567.83 371.35 Z" fill="url(#SVGID_17_)" fill-rule="nonzero" group-id="13,45" node-id="421" stroke="none" target-height="201.56" target-width="292.62997" target-x="288.29" target-y="230.37"></path><path d="M 269.29 462.61 L 379.33 326.65 L 482.87 359.23 L 511.21 503.22 C 511.21 503.22 454.02 533.22 373.53 518.23 C 305.86 505.63 269.29 462.61 269.29 462.61 Z" fill="url(#SVGID_18_)" fill-rule="nonzero" group-id="13,45" node-id="423" stroke="none" target-height="206.56998" target-width="241.91998" target-x="269.29" target-y="326.65"></path><path d="M 482.87 359.23 C 477.65 376.54 450.13 383.55 421.41 374.89 C 392.69 366.22 373.64 345.16 378.87 327.85 C 384.10 310.54 411.61 303.53 440.33 312.19 C 469.05 320.85 488.09 341.92 482.87 359.23 Z" fill="url(#SVGID_19_)" fill-rule="nonzero" group-id="13,45" node-id="425" stroke="none" target-height="80.01996" target-width="114.44998" target-x="373.64" target-y="303.53"></path><g node-id="542"><path d="M 427.08 272.00 C 434.99 273.08 440.86 277.82 440.21 282.59 C 439.56 287.36 432.63 290.34 424.72 289.26 C 416.82 288.18 410.95 283.44 411.60 278.68 C 412.25 273.91 419.18 270.92 427.08 272.00 Z" fill="#ffffff" fill-rule="nonzero" group-id="13,45,50" node-id="429" stroke="none" target-height="19.420929" target-width="29.917908" target-x="410.94574" target-y="270.92316"></path></g><g node-id="543"><path d="M 386.56 281.45 C 387.33 286.20 381.56 291.08 373.69 292.34 C 365.81 293.61 358.81 290.78 358.05 286.03 C 357.29 281.28 363.05 276.41 370.93 275.14 C 378.80 273.88 385.80 276.70 386.56 281.45 Z" fill="#ffffff" fill-rule="nonzero" group-id="13,45,51" node-id="434" stroke="none" target-height="19.728394" target-width="30.039063" target-x="357.28717" target-y="273.8792"></path></g><g node-id="544"><path d="M 478.17 287.79 C 485.28 291.39 489.29 297.78 487.12 302.08 C 484.95 306.37 477.42 306.93 470.31 303.33 C 463.19 299.73 459.18 293.33 461.35 289.04 C 463.52 284.75 471.05 284.19 478.17 287.79 Z" fill="#ffffff" fill-rule="nonzero" group-id="13,45,52" node-id="439" stroke="none" target-height="22.743683" target-width="30.112457" target-x="459.18054" target-y="284.1871"></path></g><g node-id="545"><path d="M 519.37 323.79 C 522.08 326.49 524.03 329.74 524.79 332.81 C 525.55 335.88 525.06 338.52 523.43 340.16 C 520.02 343.56 512.70 341.74 507.06 336.10 C 501.42 330.46 499.60 323.14 503.00 319.73 C 504.64 318.10 507.28 317.61 510.35 318.37 C 513.42 319.13 516.67 321.08 519.37 323.79 Z" fill="#ffffff" fill-rule="nonzero" group-id="13,45,53" node-id="444" stroke="none" target-height="25.946686" target-width="25.946686" target-x="499.60294" target-y="317.60977"></path></g><path d="M 463.38 217.91 L 476.65 196.10 L 486.11 199.73 L 479.74 225.18 Z" fill="url(#SVGID_20_)" fill-rule="nonzero" group-id="13,45" node-id="447" stroke="none" target-height="29.079971" target-width="22.730042" target-x="463.37997" target-y="196.10002"></path><path d="M 465.56 523.89 L 603.73 636.45 L 550.26 565.26 L 559.00 565.19 L 576.80 582.45 L 564.21 564.29 L 572.79 565.99 L 684.36 649.85 L 417.33 723.40 L 329.92 523.89 L 340.06 523.89 L 419.52 593.94 L 370.52 515.75 L 390.25 524.81 L 410.22 514.71 L 484.63 583.29 L 455.42 523.89 Z" fill="url(#SVGID_21_)" fill-rule="nonzero" group-id="13,45" node-id="449" stroke="none" target-height="208.69" target-width="354.43997" target-x="329.92" target-y="514.71"></path><path d="M 458.31 252.58 C 485.46 260.77 509.26 273.18 527.84 287.76 C 529.84 257.15 507.06 226.74 471.91 216.14 C 437.58 205.78 402.63 217.70 386.80 243.07 C 408.87 242.07 433.40 245.06 458.31 252.58 Z" fill="url(#SVGID_22_)" fill-rule="nonzero" group-id="13,45" node-id="451" stroke="none" target-height="81.979996" target-width="143.04004" target-x="386.8" target-y="205.78001"></path><path d="M 497.45 195.82 C 499.40 189.36 494.85 182.26 487.29 179.98 C 479.73 177.70 472.02 181.09 470.07 187.55 C 468.12 194.01 472.67 201.11 480.23 203.39 C 487.79 205.68 495.50 202.28 497.45 195.82 Z" fill="url(#SVGID_23_)" fill-rule="nonzero" group-id="13,45" node-id="453" stroke="none" target-height="27.97998" target-width="31.279999" target-x="468.12" target-y="177.7"></path><g node-id="546"><path d="M 334.99 528.60 C 332.19 528.60 329.92 526.49 329.92 523.89 L 329.92 506.25 L 305.60 506.25 C 303.71 506.25 301.98 505.28 301.11 503.72 C 300.24 502.17 300.36 500.29 301.44 498.85 L 330.83 459.47 C 332.09 457.78 334.39 457.04 336.51 457.66 C 338.62 458.28 340.06 460.10 340.06 462.16 L 340.06 496.83 L 351.45 496.83 C 354.25 496.83 356.52 498.94 356.52 501.54 C 356.52 504.14 354.25 506.25 351.45 506.25 L 340.06 506.25 L 340.06 523.89 C 340.06 526.49 337.79 528.60 334.99 528.60 Z M 315.29 496.82 L 329.93 496.82 L 329.93 477.21 L 315.29 496.82 Z" fill="url(#SVGID_24_)" fill-rule="nonzero" group-id="13,45,54" node-id="457" stroke="none" target-height="71.55997" target-width="56.28" target-x="300.24" target-y="457.04"></path></g><g node-id="547"><path d="M 460.49 528.60 C 457.69 528.60 455.42 526.49 455.42 523.89 L 455.42 506.25 L 431.09 506.25 C 429.20 506.25 427.47 505.28 426.60 503.72 C 425.73 502.17 425.85 500.29 426.93 498.85 L 456.32 459.47 C 457.58 457.78 459.88 457.04 462.00 457.66 C 464.11 458.28 465.55 460.10 465.55 462.16 L 465.55 496.83 L 476.94 496.83 C 479.74 496.83 482.01 498.94 482.01 501.54 C 482.01 504.14 479.74 506.25 476.94 506.25 L 465.55 506.25 L 465.55 523.89 C 465.56 526.49 463.29 528.60 460.49 528.60 Z M 440.78 496.82 L 455.42 496.82 L 455.42 477.21 L 440.78 496.82 Z" fill="url(#SVGID_25_)" fill-rule="nonzero" group-id="13,45,55" node-id="462" stroke="none" target-height="71.55997" target-width="56.28003" target-x="425.73" target-y="457.04"></path></g><path d="M 390.25 530.13 C 379.05 530.13 369.93 521.65 369.93 511.23 L 369.93 474.82 C 369.93 464.40 379.05 455.92 390.25 455.92 C 401.45 455.92 410.57 464.40 410.57 474.82 L 410.57 511.23 C 410.57 521.65 401.45 530.13 390.25 530.13 Z M 390.25 465.34 C 384.63 465.34 380.07 469.59 380.07 474.81 L 380.07 511.22 C 380.07 516.44 384.64 520.69 390.25 520.69 C 395.87 520.69 400.43 516.44 400.43 511.22 L 400.43 474.81 C 400.43 469.59 395.86 465.34 390.25 465.34 Z" fill="url(#SVGID_26_)" fill-rule="nonzero" group-id="13,45,56" node-id="467" stroke="none" target-height="74.20999" target-width="40.640015" target-x="369.93" target-y="455.92"></path></g><g node-id="538"><path d="M 559.77 444.42 L 557.43 445.43 C 557.43 445.43 556.61 446.90 556.95 450.08 C 557.30 453.26 558.86 454.47 559.21 455.64 C 559.56 456.81 559.34 461.28 559.34 461.28 L 565.54 461.28 L 565.80 455.01 C 565.80 455.01 567.20 453.14 567.66 451.85 C 568.12 450.56 569.05 448.44 568.73 447.43 C 568.41 446.42 564.31 442.52 559.77 444.42 Z" fill="#ffbe92" fill-rule="nonzero" group-id="13,46" node-id="473" stroke="none" target-height="18.76001" target-width="12.440002" target-x="556.61" target-y="442.52"></path><path d="M 562.66 441.17 C 562.66 441.17 563.66 439.25 564.45 440.28 C 565.24 441.31 565.74 441.84 566.65 441.62 C 567.56 441.39 569.35 441.60 568.71 443.37 C 568.07 445.14 568.68 445.30 568.93 445.78 C 569.08 446.08 570.18 447.08 569.44 448.36 C 568.71 449.62 567.68 449.16 567.86 450.36 C 568.04 451.56 567.62 452.62 566.95 452.99 C 566.30 453.35 566.46 454.00 566.58 454.37 C 566.70 454.73 566.33 455.92 565.23 455.50 C 564.13 455.08 563.15 454.92 562.29 455.33 C 561.42 455.75 557.84 455.99 558.60 454.29 C 559.30 452.74 558.33 452.42 557.68 451.73 C 557.03 451.04 556.50 449.84 556.85 448.66 C 557.05 447.98 557.33 446.35 556.55 445.33 C 555.75 444.27 557.13 441.40 558.04 441.50 C 558.96 441.63 560.21 438.87 562.66 441.17 Z" fill="#171c61" fill-rule="nonzero" group-id="13,46" node-id="475" stroke="none" target-height="17.120026" target-width="14.429993" target-x="555.75" target-y="438.86996"></path><path d="M 581.06 475.52 C 581.06 475.52 583.43 486.27 577.65 487.07 C 571.87 487.87 567.99 472.69 567.99 472.69 L 567.99 465.81 L 578.57 468.21 L 581.06 475.52 Z" fill="#ffbe92" fill-rule="nonzero" group-id="13,46" node-id="477" stroke="none" target-height="22.060059" target-width="15.440002" target-x="567.99" target-y="465.80997"></path><path d="M 565.55 553.80 C 565.55 553.80 561.29 553.21 561.80 557.12 C 563.06 560.51 563.89 561.60 564.11 563.25 C 564.33 564.90 566.18 567.29 569.42 567.20 C 572.66 567.12 573.68 564.24 572.03 560.71 C 570.38 557.19 569.50 553.86 565.55 553.80 Z" fill="#f8b62d" fill-rule="nonzero" group-id="13,46" node-id="479" stroke="none" target-height="14.079956" target-width="12.390015" target-x="561.29" target-y="553.21"></path><path d="M 561.77 556.26 C 561.77 556.26 562.67 559.07 563.30 559.98 C 563.93 560.89 564.44 562.15 564.84 563.21 C 565.25 564.26 566.16 566.80 569.91 566.30 C 572.19 565.82 572.96 564.50 572.80 563.47 C 572.89 564.14 573.17 565.16 572.79 565.88 C 572.38 566.67 571.28 567.15 570.03 567.37 C 567.59 567.80 565.72 567.47 564.22 564.08 C 563.83 562.66 563.57 561.55 563.18 560.74 C 562.78 559.93 561.45 557.36 561.77 556.26 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="13,46" node-id="481" stroke="none" target-height="11.539978" target-width="11.719971" target-x="561.45" target-y="556.26"></path><path d="M 551.17 554.20 C 551.17 554.20 546.09 554.88 547.28 558.44 C 548.55 561.51 549.52 562.73 550.01 564.31 C 550.51 565.89 552.74 567.88 555.91 567.17 C 559.08 566.46 559.58 563.43 557.36 560.29 C 555.14 557.13 555.06 553.49 551.17 554.20 Z" fill="#f8b62d" fill-rule="nonzero" group-id="13,46" node-id="483" stroke="none" target-height="14.390015" target-width="13.48999" target-x="546.09" target-y="553.49"></path><path d="M 547.26 556.53 C 547.26 556.53 546.85 558.09 548.88 561.19 C 549.53 562.09 550.13 563.17 550.71 564.12 C 551.29 565.07 552.62 567.39 556.23 566.18 C 558.39 565.26 558.92 563.81 558.58 562.84 C 558.78 563.48 559.23 564.25 558.99 565.04 C 558.73 565.90 557.72 566.76 556.53 567.22 C 554.21 568.12 552.31 568.16 550.25 565.11 C 549.62 563.79 549.17 562.75 548.65 562.03 C 548.13 561.31 546.51 557.65 547.26 556.53 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="13,46" node-id="485" stroke="none" target-height="11.629944" target-width="12.719971" target-x="546.51" target-y="556.53"></path><path d="M 550.66 497.26 C 550.66 497.26 548.06 503.93 548.75 515.53 C 549.44 527.12 552.64 564.17 552.64 564.17 L 557.60 564.17 L 561.42 513.21 L 567.27 564.17 L 571.87 564.17 C 571.87 564.17 576.17 502.24 571.32 497.27 C 562.97 497.26 550.66 497.26 550.66 497.26 Z" fill="url(#SVGID_27_)" fill-rule="nonzero" group-id="13,46" node-id="487" stroke="none" target-height="66.90997" target-width="28.109985" target-x="548.06" target-y="497.26"></path><path d="M 559.88 450.07 C 559.88 450.07 557.84 451.49 556.44 451.01 C 555.04 450.53 553.61 450.87 552.60 451.02 C 551.58 451.16 543.72 452.64 543.21 453.17 C 542.48 453.92 551.45 459.03 551.08 459.65 C 549.03 460.35 545.35 465.04 545.35 465.04 C 545.35 465.04 531.89 452.37 535.87 449.55 C 539.85 446.73 548.19 446.33 553.31 446.10 C 554.82 446.22 555.63 445.51 556.09 445.02 C 556.55 444.52 559.79 442.00 562.77 443.99 C 564.57 445.19 560.83 446.82 560.21 446.91 C 559.59 447.00 557.20 448.10 559.31 449.07 C 560.16 449.32 560.45 449.73 559.88 450.07 Z" fill="#ffbe92" fill-rule="nonzero" group-id="13,46" node-id="489" stroke="none" target-height="23.040009" target-width="32.679993" target-x="531.89" target-y="442"></path><path d="M 547.60 456.33 L 541.46 464.30 C 541.46 464.30 546.73 469.55 548.29 473.12 C 548.69 474.72 548.79 476.20 548.67 478.48 C 548.55 480.75 546.04 502.28 549.46 503.63 C 552.87 504.98 570.50 505.12 573.10 504.56 C 575.70 504.01 574.61 484.97 573.63 479.26 C 575.07 477.97 581.15 475.20 581.15 475.20 C 581.15 475.20 579.86 462.28 574.97 460.49 C 570.46 458.83 568.86 458.69 568.51 458.50 C 567.90 457.85 564.78 457.44 563.35 457.44 C 561.92 457.44 559.62 457.39 557.93 458.36 C 554.67 460.30 551.87 457.75 547.60 456.33 Z" fill="url(#SVGID_28_)" fill-rule="nonzero" group-id="13,46" node-id="491" stroke="none" target-height="48.79001" target-width="39.690002" target-x="541.46" target-y="456.33"></path></g></g></svg>
@@ -0,0 +1,30 @@
1
+ import { defineStore } from 'pinia'
2
+ import { nextTick } from 'vue'
3
+
4
+ const FOLD_KEY = 'vome_admin_sidebar_fold'
5
+
6
+ export const useAppStore = defineStore('app', {
7
+ state: () => ({
8
+ /** 桌面端手动折叠侧栏 */
9
+ sidebarFold: localStorage.getItem(FOLD_KEY) === '1',
10
+ /** 移动端抽屉开合 */
11
+ mobileOpen: false,
12
+ /** 为 false 时卸掉 RouterView,用于「刷新当前页」 */
13
+ viewAlive: true,
14
+ }),
15
+ actions: {
16
+ toggleSidebarFold() {
17
+ this.sidebarFold = !this.sidebarFold
18
+ localStorage.setItem(FOLD_KEY, this.sidebarFold ? '1' : '0')
19
+ },
20
+ setMobileOpen(open: boolean) {
21
+ this.mobileOpen = open
22
+ },
23
+ /** 重挂载当前视图(非浏览器整页刷新) */
24
+ async reloadView() {
25
+ this.viewAlive = false
26
+ await nextTick()
27
+ this.viewAlive = true
28
+ },
29
+ },
30
+ })
@@ -0,0 +1,73 @@
1
+ import { defineStore } from 'pinia'
2
+ import type { RouteLocationNormalized } from 'vue-router'
3
+ export const useTagsStore = defineStore('tags', {
4
+ state: () => ({
5
+ list: [] as TagItem[],
6
+ /** KeepAlive :include,值为页面组件 name(如 base-role) */
7
+ caches: [] as string[],
8
+ }),
9
+ actions: {
10
+ add(route: RouteLocationNormalized) {
11
+ if (route.meta.public || route.path === '/login') return
12
+ const title = String(route.meta.title || route.name || route.path)
13
+ const componentName =
14
+ typeof route.meta.componentName === 'string'
15
+ ? route.meta.componentName
16
+ : undefined
17
+ const keepAlive = route.meta.keepAlive !== false
18
+
19
+ if (componentName && keepAlive) {
20
+ this.addCache(componentName)
21
+ }
22
+
23
+ const exists = this.list.find((t) => t.path === route.path)
24
+ if (exists) {
25
+ exists.fullPath = route.fullPath
26
+ exists.title = title
27
+ exists.componentName = componentName
28
+ exists.keepAlive = keepAlive
29
+ return
30
+ }
31
+ this.list.push({
32
+ path: route.path,
33
+ fullPath: route.fullPath,
34
+ title,
35
+ name: route.name,
36
+ componentName,
37
+ keepAlive,
38
+ })
39
+ },
40
+ addCache(name: string) {
41
+ if (!name || this.caches.includes(name)) return
42
+ this.caches.push(name)
43
+ },
44
+ removeCache(name?: string) {
45
+ if (!name) return
46
+ this.caches = this.caches.filter((c) => c !== name)
47
+ },
48
+ remove(path: string) {
49
+ const i = this.list.findIndex((t) => t.path === path)
50
+ if (i < 0) return
51
+ const [tag] = this.list.splice(i, 1)
52
+ // 无其它 tab 引用同一组件名时才踢出缓存
53
+ const still =
54
+ tag?.componentName &&
55
+ this.list.some((t) => t.componentName === tag.componentName)
56
+ if (tag?.componentName && !still) {
57
+ this.removeCache(tag.componentName)
58
+ }
59
+ },
60
+ closeOthers(path: string) {
61
+ const keep = this.list.filter((t) => t.path === path || t.path === '/')
62
+ this.list = keep
63
+ this.caches = keep
64
+ .filter((t) => t.keepAlive && t.componentName)
65
+ .map((t) => t.componentName!)
66
+ .filter((n, i, arr) => arr.indexOf(n) === i)
67
+ },
68
+ clear() {
69
+ this.list = this.list.filter((t) => t.path === '/')
70
+ this.caches = []
71
+ },
72
+ },
73
+ })
@@ -0,0 +1,52 @@
1
+ import { defineStore } from 'pinia'
2
+ import { api, clearTokens } from '../api/client'
3
+ import { filterShowMenus } from '../lib/menu'
4
+ import { setServicePerms } from '../service'
5
+ export const useUserStore = defineStore('user', {
6
+ state: () => ({
7
+ adminId: 0,
8
+ username: '',
9
+ isSuper: false,
10
+ perms: [] as string[],
11
+ menus: [] as MenuTreeNode[],
12
+ loaded: false,
13
+ }),
14
+ getters: {
15
+ navMenus(state): MenuTreeNode[] {
16
+ return filterShowMenus(state.menus)
17
+ },
18
+ },
19
+ actions: {
20
+ async load() {
21
+ // toast:false:引导期鉴权失败由路由跳转登录,避免再弹 Unauthorized
22
+ const [me, authz] = await Promise.all([
23
+ api.me({ toast: false }),
24
+ api.perms({ toast: false }),
25
+ ])
26
+ this.adminId = me.adminId
27
+ this.username = me.username || `admin#${me.adminId}`
28
+ this.isSuper = authz.isSuper
29
+ this.perms = authz.perms
30
+ this.menus = authz.menus
31
+ this.loaded = true
32
+ setServicePerms(this.perms, this.isSuper)
33
+ },
34
+ /** 菜单 CRUD 后刷新侧栏/权限(不重拉 me) */
35
+ async reloadMenus() {
36
+ const authz = await api.perms({ toast: false })
37
+ this.isSuper = authz.isSuper
38
+ this.perms = authz.perms
39
+ this.menus = authz.menus
40
+ setServicePerms(this.perms, this.isSuper)
41
+ },
42
+ hasPerm(code: string | string[]) {
43
+ if (this.isSuper) return true
44
+ const codes = Array.isArray(code) ? code : [code]
45
+ return codes.some((c) => this.perms.includes(c))
46
+ },
47
+ logout() {
48
+ clearTokens()
49
+ this.$reset()
50
+ },
51
+ },
52
+ })
@@ -0,0 +1,137 @@
1
+ /**
2
+ * 框架结构样式(锁定):尺寸、控件高度、聚焦行为、滚动条形态、页面过渡、浮层指针。
3
+ * 宿主只应提供主题色(admin/src/styles/theme.css);勿改此文件做换肤。
4
+ * 业务自定义请用 scoped + :deep() 穿透覆盖。
5
+ */
6
+
7
+ :root {
8
+ --radius: 20px;
9
+ --shadow-soft: 0 10px 30px rgba(40, 50, 120, 0.06);
10
+ --shadow-card: 0 8px 24px rgba(40, 50, 120, 0.05);
11
+
12
+ --vm-control-height: 32px;
13
+ --vm-control-radius: 10px;
14
+ --vm-control-padding-x: 10px;
15
+ --vm-control-font-size: 13px;
16
+ }
17
+
18
+ .dark {
19
+ --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
20
+ --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.28);
21
+ }
22
+
23
+ /* 全局骨架(不依赖 @apply,避免 core CSS 绑死 Tailwind 构建) */
24
+ * {
25
+ border-color: var(--border);
26
+ }
27
+
28
+ html {
29
+ font-size: 16px;
30
+ }
31
+
32
+ html,
33
+ body,
34
+ #app {
35
+ height: 100%;
36
+ }
37
+
38
+ body {
39
+ background: var(--background);
40
+ color: var(--foreground);
41
+ font-size: 14px;
42
+ font-weight: 500;
43
+ -webkit-font-smoothing: antialiased;
44
+ -moz-osx-font-smoothing: grayscale;
45
+ }
46
+
47
+ /* 表单聚焦:细边框,无外圈粗 ring */
48
+ :where(
49
+ input:not([type='checkbox']):not([type='radio']):not([type='range']):not([type='file']):not([type='hidden']):not([type='button']):not([type='submit']):not([type='reset']),
50
+ textarea,
51
+ [data-slot='input'],
52
+ [data-slot='select-trigger']
53
+ ) {
54
+ outline: none;
55
+ }
56
+
57
+ :where(
58
+ input:not([type='checkbox']):not([type='radio']):not([type='range']):not([type='file']):not([type='hidden']):not([type='button']):not([type='submit']):not([type='reset']),
59
+ textarea,
60
+ [data-slot='input'],
61
+ [data-slot='select-trigger']
62
+ ):is(:focus, :focus-visible) {
63
+ border-color: var(--focus-border) !important;
64
+ box-shadow: none !important;
65
+ --tw-ring-shadow: 0 0 #0000 !important;
66
+ --tw-ring-offset-shadow: 0 0 #0000 !important;
67
+ }
68
+
69
+ [data-slot='input'],
70
+ [data-slot='select-trigger'] {
71
+ height: var(--vm-control-height) !important;
72
+ min-height: var(--vm-control-height);
73
+ padding-top: 0 !important;
74
+ padding-bottom: 0 !important;
75
+ font-size: var(--vm-control-font-size) !important;
76
+ line-height: 1.4;
77
+ }
78
+
79
+ [data-slot='select-item'] {
80
+ min-height: 28px;
81
+ padding-top: 4px !important;
82
+ padding-bottom: 4px !important;
83
+ font-size: var(--vm-control-font-size);
84
+ }
85
+
86
+ .page-enter-active,
87
+ .page-leave-active {
88
+ transition:
89
+ opacity 0.2s ease,
90
+ transform 0.2s ease;
91
+ }
92
+ .page-enter-from {
93
+ opacity: 0;
94
+ transform: translateY(6px);
95
+ }
96
+ .page-leave-to {
97
+ opacity: 0;
98
+ transform: translateY(-3px);
99
+ }
100
+
101
+ /* 细圆角滚动条(无轨道背景);颜色由主题 --scrollbar-thumb* 提供 */
102
+ * {
103
+ scrollbar-width: thin;
104
+ scrollbar-color: var(--scrollbar-thumb) transparent;
105
+ }
106
+
107
+ *::-webkit-scrollbar {
108
+ width: 8px;
109
+ height: 8px;
110
+ }
111
+
112
+ *::-webkit-scrollbar-track {
113
+ background: transparent;
114
+ }
115
+
116
+ *::-webkit-scrollbar-thumb {
117
+ background: var(--scrollbar-thumb);
118
+ border: 2px solid transparent;
119
+ background-clip: padding-box;
120
+ border-radius: 999px;
121
+ }
122
+
123
+ *::-webkit-scrollbar-thumb:hover {
124
+ background: var(--scrollbar-thumb-hover);
125
+ border: 2px solid transparent;
126
+ background-clip: padding-box;
127
+ }
128
+
129
+ .vm-scroll {
130
+ scrollbar-width: thin;
131
+ scrollbar-color: var(--scrollbar-thumb) transparent;
132
+ }
133
+
134
+ /* Dialog 内 Teleport 浮层:modal 时 body pointer-events:none,浮层需显式恢复 */
135
+ .vm-dialog-float {
136
+ pointer-events: auto;
137
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "extends": "../../../../admin/tsconfig.json",
3
+ "compilerOptions": {
4
+ "baseUrl": "../../../../admin",
5
+ "typeRoots": [
6
+ "../../../../admin/node_modules/@types",
7
+ "../../../../admin/node_modules"
8
+ ]
9
+ },
10
+ "include": [
11
+ "./**/*.ts",
12
+ "./**/*.vue",
13
+ "env.d.ts",
14
+ "../../../../admin/typings/**/*.ts",
15
+ "../../../../admin/typings/**/*.d.ts",
16
+ "../../typings/admin/**/*.ts",
17
+ "../../typings/admin/**/*.d.ts"
18
+ ]
19
+ }
@@ -0,0 +1,23 @@
1
+ import type { MenuTreeNode } from './permission'
2
+
3
+ export type TokenPair = {
4
+ accessToken: string
5
+ refreshToken: string
6
+ }
7
+
8
+ export type AuthMe = {
9
+ adminId: number
10
+ username?: string
11
+ isSuper: boolean
12
+ perms: string[]
13
+ tenantId?: number | null
14
+ tenantEnabled?: boolean
15
+ }
16
+
17
+ export type AuthPerms = {
18
+ isSuper: boolean
19
+ perms: string[]
20
+ menus: MenuTreeNode[]
21
+ tenantEnabled?: boolean
22
+ tenantId?: number | null
23
+ }