@bitseek/hermes-webui 0.1.0-beta.0

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 (233) hide show
  1. package/README.md +213 -0
  2. package/bin/hermes-webui.mjs +588 -0
  3. package/package.json +25 -0
  4. package/scripts/sync-vendor.mjs +74 -0
  5. package/templates/launchd/com.bitseek.hermes-webui.plist +21 -0
  6. package/templates/systemd/hermes-webui.service +13 -0
  7. package/templates/windows/hermes-webui-task.ps1 +3 -0
  8. package/vendor/agent-frontend-shell/.bitseek-source.json +6 -0
  9. package/vendor/agent-frontend-shell/.dockerignore +7 -0
  10. package/vendor/agent-frontend-shell/.env.docker.example +89 -0
  11. package/vendor/agent-frontend-shell/.env.example +34 -0
  12. package/vendor/agent-frontend-shell/.github/FUNDING.yml +3 -0
  13. package/vendor/agent-frontend-shell/.github/workflows/browser-smoke.yml +42 -0
  14. package/vendor/agent-frontend-shell/.github/workflows/docker-smoke.yml +233 -0
  15. package/vendor/agent-frontend-shell/.github/workflows/native-windows-startup.yml +132 -0
  16. package/vendor/agent-frontend-shell/.github/workflows/release.yml +57 -0
  17. package/vendor/agent-frontend-shell/.github/workflows/tests.yml +88 -0
  18. package/vendor/agent-frontend-shell/.vscode/launch.json +59 -0
  19. package/vendor/agent-frontend-shell/.vscode/settings.json +13 -0
  20. package/vendor/agent-frontend-shell/AGENTS.md +80 -0
  21. package/vendor/agent-frontend-shell/ARCHITECTURE.md +1658 -0
  22. package/vendor/agent-frontend-shell/BUGS.md +52 -0
  23. package/vendor/agent-frontend-shell/CHANGELOG.md +7295 -0
  24. package/vendor/agent-frontend-shell/CONTRIBUTING.md +205 -0
  25. package/vendor/agent-frontend-shell/CONTRIBUTORS.md +107 -0
  26. package/vendor/agent-frontend-shell/DESIGN.md +173 -0
  27. package/vendor/agent-frontend-shell/Dockerfile +91 -0
  28. package/vendor/agent-frontend-shell/LICENSE +21 -0
  29. package/vendor/agent-frontend-shell/README-CUSTOM.md +76 -0
  30. package/vendor/agent-frontend-shell/README.md +705 -0
  31. package/vendor/agent-frontend-shell/ROADMAP.md +351 -0
  32. package/vendor/agent-frontend-shell/SPRINTS.md +147 -0
  33. package/vendor/agent-frontend-shell/TESTING.md +1932 -0
  34. package/vendor/agent-frontend-shell/THEMES.md +170 -0
  35. package/vendor/agent-frontend-shell/api/__init__.py +1 -0
  36. package/vendor/agent-frontend-shell/api/agent_health.py +392 -0
  37. package/vendor/agent-frontend-shell/api/agent_sessions.py +782 -0
  38. package/vendor/agent-frontend-shell/api/auth.py +592 -0
  39. package/vendor/agent-frontend-shell/api/background.py +87 -0
  40. package/vendor/agent-frontend-shell/api/clarify.py +238 -0
  41. package/vendor/agent-frontend-shell/api/commands.py +124 -0
  42. package/vendor/agent-frontend-shell/api/compression_anchor.py +134 -0
  43. package/vendor/agent-frontend-shell/api/config.py +5178 -0
  44. package/vendor/agent-frontend-shell/api/dashboard_probe.py +255 -0
  45. package/vendor/agent-frontend-shell/api/extensions.py +253 -0
  46. package/vendor/agent-frontend-shell/api/gateway_chat.py +435 -0
  47. package/vendor/agent-frontend-shell/api/gateway_watcher.py +230 -0
  48. package/vendor/agent-frontend-shell/api/goals.py +608 -0
  49. package/vendor/agent-frontend-shell/api/helpers.py +474 -0
  50. package/vendor/agent-frontend-shell/api/kanban_bridge.py +1255 -0
  51. package/vendor/agent-frontend-shell/api/metering.py +194 -0
  52. package/vendor/agent-frontend-shell/api/models.py +4210 -0
  53. package/vendor/agent-frontend-shell/api/oauth.py +770 -0
  54. package/vendor/agent-frontend-shell/api/onboarding.py +1046 -0
  55. package/vendor/agent-frontend-shell/api/passkeys.py +365 -0
  56. package/vendor/agent-frontend-shell/api/profiles.py +1499 -0
  57. package/vendor/agent-frontend-shell/api/providers.py +2175 -0
  58. package/vendor/agent-frontend-shell/api/request_diagnostics.py +160 -0
  59. package/vendor/agent-frontend-shell/api/rollback.py +320 -0
  60. package/vendor/agent-frontend-shell/api/routes.py +13990 -0
  61. package/vendor/agent-frontend-shell/api/run_journal.py +284 -0
  62. package/vendor/agent-frontend-shell/api/runner_client.py +156 -0
  63. package/vendor/agent-frontend-shell/api/runtime_adapter.py +431 -0
  64. package/vendor/agent-frontend-shell/api/session_discoverability.py +640 -0
  65. package/vendor/agent-frontend-shell/api/session_events.py +45 -0
  66. package/vendor/agent-frontend-shell/api/session_lifecycle.py +208 -0
  67. package/vendor/agent-frontend-shell/api/session_ops.py +207 -0
  68. package/vendor/agent-frontend-shell/api/session_recovery.py +655 -0
  69. package/vendor/agent-frontend-shell/api/skill_usage.py +32 -0
  70. package/vendor/agent-frontend-shell/api/startup.py +128 -0
  71. package/vendor/agent-frontend-shell/api/state_sync.py +187 -0
  72. package/vendor/agent-frontend-shell/api/streaming.py +7048 -0
  73. package/vendor/agent-frontend-shell/api/system_health.py +167 -0
  74. package/vendor/agent-frontend-shell/api/terminal.py +410 -0
  75. package/vendor/agent-frontend-shell/api/turn_journal.py +214 -0
  76. package/vendor/agent-frontend-shell/api/updates.py +1261 -0
  77. package/vendor/agent-frontend-shell/api/upload.py +322 -0
  78. package/vendor/agent-frontend-shell/api/usage.py +26 -0
  79. package/vendor/agent-frontend-shell/api/workspace.py +867 -0
  80. package/vendor/agent-frontend-shell/api/workspace_git.py +1261 -0
  81. package/vendor/agent-frontend-shell/api/worktrees.py +357 -0
  82. package/vendor/agent-frontend-shell/bootstrap.py +492 -0
  83. package/vendor/agent-frontend-shell/ctl.sh +427 -0
  84. package/vendor/agent-frontend-shell/docker-compose.custom.yml +26 -0
  85. package/vendor/agent-frontend-shell/docker-compose.three-container.yml +168 -0
  86. package/vendor/agent-frontend-shell/docker-compose.two-container.yml +147 -0
  87. package/vendor/agent-frontend-shell/docker-compose.yml +57 -0
  88. package/vendor/agent-frontend-shell/docker_init.bash +459 -0
  89. package/vendor/agent-frontend-shell/docs/CONTRACTS.md +207 -0
  90. package/vendor/agent-frontend-shell/docs/EXTENSIONS.md +212 -0
  91. package/vendor/agent-frontend-shell/docs/ISSUES.md +23 -0
  92. package/vendor/agent-frontend-shell/docs/UIUX-GUIDE.md +196 -0
  93. package/vendor/agent-frontend-shell/docs/advanced-chat-setup.md +83 -0
  94. package/vendor/agent-frontend-shell/docs/docker.md +337 -0
  95. package/vendor/agent-frontend-shell/docs/onboarding-agent-checklist.md +207 -0
  96. package/vendor/agent-frontend-shell/docs/onboarding.md +202 -0
  97. package/vendor/agent-frontend-shell/docs/remote-access.md +75 -0
  98. package/vendor/agent-frontend-shell/docs/rfcs/README.md +53 -0
  99. package/vendor/agent-frontend-shell/docs/rfcs/agent-source-boundary.md +70 -0
  100. package/vendor/agent-frontend-shell/docs/rfcs/canonical-session-resolution.md +124 -0
  101. package/vendor/agent-frontend-shell/docs/rfcs/hermes-run-adapter-contract.md +1079 -0
  102. package/vendor/agent-frontend-shell/docs/rfcs/turn-journal.md +195 -0
  103. package/vendor/agent-frontend-shell/docs/rfcs/webui-run-state-consistency-contract.md +157 -0
  104. package/vendor/agent-frontend-shell/docs/supervisor.md +280 -0
  105. package/vendor/agent-frontend-shell/docs/troubleshooting.md +132 -0
  106. package/vendor/agent-frontend-shell/docs/ui-ux/index.html +863 -0
  107. package/vendor/agent-frontend-shell/docs/ui-ux/two-stage-proposal.html +768 -0
  108. package/vendor/agent-frontend-shell/docs/why-hermes.md +489 -0
  109. package/vendor/agent-frontend-shell/docs/workspace-git.md +92 -0
  110. package/vendor/agent-frontend-shell/docs/wsl-autostart.md +126 -0
  111. package/vendor/agent-frontend-shell/eslint.runtime-guard.config.mjs +35 -0
  112. package/vendor/agent-frontend-shell/extensions/bitseek-design-system.md +330 -0
  113. package/vendor/agent-frontend-shell/extensions/branding/assets/apple-touch-icon.png +0 -0
  114. package/vendor/agent-frontend-shell/extensions/branding/assets/empty-logo.svg +739 -0
  115. package/vendor/agent-frontend-shell/extensions/branding/assets/favicon-192.png +0 -0
  116. package/vendor/agent-frontend-shell/extensions/branding/assets/favicon-32.png +0 -0
  117. package/vendor/agent-frontend-shell/extensions/branding/assets/favicon-512.png +0 -0
  118. package/vendor/agent-frontend-shell/extensions/branding/assets/favicon-512.svg +745 -0
  119. package/vendor/agent-frontend-shell/extensions/branding/assets/favicon.ico +0 -0
  120. package/vendor/agent-frontend-shell/extensions/branding/assets/favicon.svg +745 -0
  121. package/vendor/agent-frontend-shell/extensions/branding/assets/titlebar-icon-v2.svg +751 -0
  122. package/vendor/agent-frontend-shell/extensions/branding/assets/titlebar-icon-v3.svg +739 -0
  123. package/vendor/agent-frontend-shell/extensions/branding/assets/titlebar-icon.svg +745 -0
  124. package/vendor/agent-frontend-shell/extensions/branding/branding.js +112 -0
  125. package/vendor/agent-frontend-shell/extensions/branding/config.json +14 -0
  126. package/vendor/agent-frontend-shell/extensions/branding/manifest.json +53 -0
  127. package/vendor/agent-frontend-shell/extensions/index.js +67 -0
  128. package/vendor/agent-frontend-shell/extensions/loader/hermes-loader.js +77 -0
  129. package/vendor/agent-frontend-shell/extensions/manifest.json +16 -0
  130. package/vendor/agent-frontend-shell/extensions/pages/ai-teammates/page.css +333 -0
  131. package/vendor/agent-frontend-shell/extensions/pages/ai-teammates/page.js +487 -0
  132. package/vendor/agent-frontend-shell/extensions/pages/manifest.json +6 -0
  133. package/vendor/agent-frontend-shell/extensions/pages/registry.css +56 -0
  134. package/vendor/agent-frontend-shell/extensions/pages/registry.js +302 -0
  135. package/vendor/agent-frontend-shell/extensions/themes/bitseek/index.css +93 -0
  136. package/vendor/agent-frontend-shell/extensions/themes/bitseek/index.js +98 -0
  137. package/vendor/agent-frontend-shell/install.sh +63 -0
  138. package/vendor/agent-frontend-shell/mcp_server.py +567 -0
  139. package/vendor/agent-frontend-shell/package.json +12 -0
  140. package/vendor/agent-frontend-shell/pyproject.toml +56 -0
  141. package/vendor/agent-frontend-shell/pytest.ini +3 -0
  142. package/vendor/agent-frontend-shell/requirements.txt +5 -0
  143. package/vendor/agent-frontend-shell/server.py +624 -0
  144. package/vendor/agent-frontend-shell/start.ps1 +210 -0
  145. package/vendor/agent-frontend-shell/start.sh +65 -0
  146. package/vendor/agent-frontend-shell/static/apple-touch-icon.png +0 -0
  147. package/vendor/agent-frontend-shell/static/boot.js +1990 -0
  148. package/vendor/agent-frontend-shell/static/commands.js +1402 -0
  149. package/vendor/agent-frontend-shell/static/favicon-192.png +0 -0
  150. package/vendor/agent-frontend-shell/static/favicon-32.png +0 -0
  151. package/vendor/agent-frontend-shell/static/favicon-512.png +0 -0
  152. package/vendor/agent-frontend-shell/static/favicon-512.svg +18 -0
  153. package/vendor/agent-frontend-shell/static/favicon.ico +0 -0
  154. package/vendor/agent-frontend-shell/static/favicon.svg +20 -0
  155. package/vendor/agent-frontend-shell/static/i18n.js +15389 -0
  156. package/vendor/agent-frontend-shell/static/icons.js +92 -0
  157. package/vendor/agent-frontend-shell/static/index.html +1506 -0
  158. package/vendor/agent-frontend-shell/static/login.js +177 -0
  159. package/vendor/agent-frontend-shell/static/manifest.json +53 -0
  160. package/vendor/agent-frontend-shell/static/messages.js +3521 -0
  161. package/vendor/agent-frontend-shell/static/onboarding.js +800 -0
  162. package/vendor/agent-frontend-shell/static/panels.js +7995 -0
  163. package/vendor/agent-frontend-shell/static/pwa-startup.js +83 -0
  164. package/vendor/agent-frontend-shell/static/sessions.js +5165 -0
  165. package/vendor/agent-frontend-shell/static/style.css +4774 -0
  166. package/vendor/agent-frontend-shell/static/sw.js +173 -0
  167. package/vendor/agent-frontend-shell/static/terminal.js +632 -0
  168. package/vendor/agent-frontend-shell/static/ui.js +8997 -0
  169. package/vendor/agent-frontend-shell/static/vendor/js-yaml/4.1.0/js-yaml.min.js +2 -0
  170. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_AMS-Regular.ttf +0 -0
  171. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_AMS-Regular.woff +0 -0
  172. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_AMS-Regular.woff2 +0 -0
  173. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Bold.ttf +0 -0
  174. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Bold.woff +0 -0
  175. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
  176. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Regular.ttf +0 -0
  177. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Regular.woff +0 -0
  178. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Regular.woff2 +0 -0
  179. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Bold.ttf +0 -0
  180. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Bold.woff +0 -0
  181. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
  182. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Regular.ttf +0 -0
  183. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Regular.woff +0 -0
  184. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
  185. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Bold.ttf +0 -0
  186. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Bold.woff +0 -0
  187. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Bold.woff2 +0 -0
  188. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-BoldItalic.ttf +0 -0
  189. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-BoldItalic.woff +0 -0
  190. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-BoldItalic.woff2 +0 -0
  191. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Italic.ttf +0 -0
  192. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Italic.woff +0 -0
  193. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Italic.woff2 +0 -0
  194. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Regular.ttf +0 -0
  195. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Regular.woff +0 -0
  196. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Regular.woff2 +0 -0
  197. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-BoldItalic.ttf +0 -0
  198. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-BoldItalic.woff +0 -0
  199. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
  200. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-Italic.ttf +0 -0
  201. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-Italic.woff +0 -0
  202. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-Italic.woff2 +0 -0
  203. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Bold.ttf +0 -0
  204. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Bold.woff +0 -0
  205. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
  206. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Italic.ttf +0 -0
  207. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Italic.woff +0 -0
  208. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
  209. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Regular.ttf +0 -0
  210. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Regular.woff +0 -0
  211. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
  212. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Script-Regular.ttf +0 -0
  213. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Script-Regular.woff +0 -0
  214. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Script-Regular.woff2 +0 -0
  215. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size1-Regular.ttf +0 -0
  216. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size1-Regular.woff +0 -0
  217. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size1-Regular.woff2 +0 -0
  218. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size2-Regular.ttf +0 -0
  219. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size2-Regular.woff +0 -0
  220. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size2-Regular.woff2 +0 -0
  221. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size3-Regular.ttf +0 -0
  222. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size3-Regular.woff +0 -0
  223. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size3-Regular.woff2 +0 -0
  224. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size4-Regular.ttf +0 -0
  225. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size4-Regular.woff +0 -0
  226. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size4-Regular.woff2 +0 -0
  227. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Typewriter-Regular.ttf +0 -0
  228. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Typewriter-Regular.woff +0 -0
  229. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
  230. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/katex.min.css +1 -0
  231. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/katex.min.js +1 -0
  232. package/vendor/agent-frontend-shell/static/vendor/smd.min.js +29 -0
  233. package/vendor/agent-frontend-shell/static/workspace.js +680 -0
@@ -0,0 +1,739 @@
1
+ <svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M43.5311 39.7869C52.3076 39.7869 59.4221 32.6708 59.4221 23.8925C59.4221 15.1142 52.3058 8 43.5311 8H33.7421L50.3433 24.4723L35.1017 39.7869L50.3433 55.1015L33.7421 71.5738H43.5311C52.3076 71.5738 59.4221 64.4577 59.4221 55.6794C59.4221 46.9011 52.3076 39.7851 43.5311 39.7851V39.7869Z" fill="#404040"/>
3
+ <path d="M57.3981 47.0028L71.9975 39.7865L57.3981 32.5703V47.0028Z" fill="#404040"/>
4
+ <path d="M32.5082 8C31.8695 8 31.3507 8.5189 31.3507 9.15768C31.3507 9.79645 31.8695 10.3154 32.5082 10.3154C33.1468 10.3154 33.6656 9.79645 33.6656 9.15768C33.6656 8.5189 33.1468 8 32.5082 8Z" fill="#404040"/>
5
+ <path d="M29.519 8.06934C28.918 8.06934 28.4296 8.55781 28.4296 9.15902C28.4296 9.76022 28.918 10.2487 29.519 10.2487C30.1201 10.2487 30.6085 9.76022 30.6085 9.15902C30.6085 8.55781 30.1201 8.06934 29.519 8.06934Z" fill="#404040"/>
6
+ <path d="M26.5324 8.13574C25.9688 8.13574 25.5109 8.5938 25.5109 9.15743C25.5109 9.72106 25.9688 10.1791 26.5324 10.1791C27.0959 10.1791 27.5538 9.72106 27.5538 9.15743C27.5538 8.5938 27.0959 8.13574 26.5324 8.13574Z" fill="#404040"/>
7
+ <path d="M23.5469 8.20215C23.021 8.20215 22.5934 8.62979 22.5934 9.15584C22.5934 9.6819 23.021 10.1095 23.5469 10.1095C24.0728 10.1095 24.5004 9.6819 24.5004 9.15584C24.5004 8.62979 24.0728 8.20215 23.5469 8.20215Z" fill="#404040"/>
8
+ <path d="M20.5602 8.27246C20.0718 8.27246 19.6747 8.6679 19.6747 9.15816C19.6747 9.64843 20.0718 10.0439 20.5602 10.0439C21.0486 10.0439 21.4457 9.64664 21.4457 9.15816C21.4457 8.66969 21.0486 8.27246 20.5602 8.27246Z" fill="#404040"/>
9
+ <path d="M17.5748 8.33984C17.1239 8.33984 16.7572 8.70486 16.7572 9.15755C16.7572 9.61024 17.1222 9.97526 17.5748 9.97526C18.0274 9.97526 18.3923 9.61024 18.3923 9.15755C18.3923 8.70486 18.0274 8.33984 17.5748 8.33984Z" fill="#404040"/>
10
+ <path d="M14.5844 8.40918C14.1712 8.40918 13.8349 8.74378 13.8349 9.1589C13.8349 9.57401 14.1694 9.90861 14.5844 9.90861C14.9994 9.90861 15.334 9.57401 15.334 9.1589C15.334 8.74378 14.9994 8.40918 14.5844 8.40918Z" fill="#404040"/>
11
+ <path d="M11.599 8.47559C11.2233 8.47559 10.9174 8.77977 10.9174 9.15731C10.9174 9.53485 11.2215 9.83903 11.599 9.83903C11.9764 9.83903 12.2805 9.53485 12.2805 9.15731C12.2805 8.77977 11.9764 8.47559 11.599 8.47559Z" fill="#404040"/>
12
+ <path d="M8.61349 9.76945C8.95238 9.76945 9.22709 9.49467 9.22709 9.15572C9.22709 8.81677 8.95238 8.54199 8.61349 8.54199C8.27461 8.54199 7.99989 8.81677 7.99989 9.15572C7.99989 9.49467 8.27461 9.76945 8.61349 9.76945Z" fill="#404040"/>
13
+ <path d="M35.4948 13.4455C36.1711 13.4455 36.7203 12.8962 36.7203 12.2198C36.7203 11.5435 36.1711 10.9941 35.4948 10.9941C34.8186 10.9941 34.2694 11.5435 34.2694 12.2198C34.2694 12.8962 34.8186 13.4455 35.4948 13.4455Z" fill="#404040"/>
14
+ <path d="M32.5082 11.0615C31.8695 11.0615 31.3507 11.5804 31.3507 12.2192C31.3507 12.858 31.8695 13.3769 32.5082 13.3769C33.1468 13.3769 33.6656 12.858 33.6656 12.2192C33.6656 11.5804 33.1468 11.0615 32.5082 11.0615Z" fill="#404040"/>
15
+ <path d="M29.519 11.1318C28.918 11.1318 28.4296 11.6203 28.4296 12.2215C28.4296 12.8227 28.918 13.3112 29.519 13.3112C30.1201 13.3112 30.6085 12.8227 30.6085 12.2215C30.6085 11.6203 30.1201 11.1318 29.519 11.1318Z" fill="#404040"/>
16
+ <path d="M26.5324 11.1992C25.9688 11.1992 25.5109 11.6573 25.5109 12.2209C25.5109 12.7845 25.9688 13.2426 26.5324 13.2426C27.0959 13.2426 27.5538 12.7845 27.5538 12.2209C27.5538 11.6573 27.0959 11.1992 26.5324 11.1992Z" fill="#404040"/>
17
+ <path d="M23.5469 11.2686C23.021 11.2686 22.5934 11.6962 22.5934 12.2223C22.5934 12.7483 23.021 13.1759 23.5469 13.1759C24.0728 13.1759 24.5004 12.7483 24.5004 12.2223C24.5004 11.6962 24.0728 11.2686 23.5469 11.2686Z" fill="#404040"/>
18
+ <path d="M20.5602 11.335C20.0718 11.335 19.6747 11.7322 19.6747 12.2207C19.6747 12.7091 20.0718 13.1064 20.5602 13.1064C21.0486 13.1064 21.4457 12.7091 21.4457 12.2207C21.4457 11.7322 21.0486 11.335 20.5602 11.335Z" fill="#404040"/>
19
+ <path d="M17.5748 13.0368C18.0263 13.0368 18.3923 12.6707 18.3923 12.2191C18.3923 11.7675 18.0263 11.4014 17.5748 11.4014C17.1232 11.4014 16.7572 11.7675 16.7572 12.2191C16.7572 12.6707 17.1232 13.0368 17.5748 13.0368Z" fill="#404040"/>
20
+ <path d="M14.5844 12.9711C14.9984 12.9711 15.334 12.6355 15.334 12.2214C15.334 11.8073 14.9984 11.4717 14.5844 11.4717C14.1704 11.4717 13.8349 11.8073 13.8349 12.2214C13.8349 12.6355 14.1704 12.9711 14.5844 12.9711Z" fill="#404040"/>
21
+ <path d="M38.4803 16.5785C39.1941 16.5785 39.7737 15.9988 39.7737 15.2849C39.7737 14.5709 39.1941 13.9912 38.4803 13.9912C37.7665 13.9912 37.1869 14.5709 37.1869 15.2849C37.1869 15.9988 37.7665 16.5785 38.4803 16.5785Z" fill="#404040"/>
22
+ <path d="M35.4948 16.5099C36.1711 16.5099 36.7203 15.9606 36.7203 15.2843C36.7203 14.6079 36.1711 14.0586 35.4948 14.0586C34.8186 14.0586 34.2694 14.6079 34.2694 15.2843C34.2694 15.9606 34.8186 16.5099 35.4948 16.5099Z" fill="#404040"/>
23
+ <path d="M32.5082 14.1279C31.8695 14.1279 31.3507 14.6468 31.3507 15.2856C31.3507 15.9244 31.8695 16.4433 32.5082 16.4433C33.1468 16.4433 33.6656 15.9244 33.6656 15.2856C33.6656 14.6468 33.1468 14.1279 32.5082 14.1279Z" fill="#404040"/>
24
+ <path d="M29.519 16.3737C30.1207 16.3737 30.6085 15.8858 30.6085 15.284C30.6085 14.6822 30.1207 14.1943 29.519 14.1943C28.9173 14.1943 28.4296 14.6822 28.4296 15.284C28.4296 15.8858 28.9173 16.3737 29.519 16.3737Z" fill="#404040"/>
25
+ <path d="M26.5324 14.2607C25.9688 14.2607 25.5109 14.7188 25.5109 15.2824C25.5109 15.8461 25.9688 16.3041 26.5324 16.3041C27.0959 16.3041 27.5538 15.8461 27.5538 15.2824C27.5538 14.7188 27.0959 14.2607 26.5324 14.2607Z" fill="#404040"/>
26
+ <path d="M23.5469 16.2384C24.0735 16.2384 24.5004 15.8115 24.5004 15.2848C24.5004 14.758 24.0735 14.3311 23.5469 14.3311C23.0203 14.3311 22.5934 14.758 22.5934 15.2848C22.5934 15.8115 23.0203 16.2384 23.5469 16.2384Z" fill="#404040"/>
27
+ <path d="M20.5602 14.3984C20.0718 14.3984 19.6747 14.7957 19.6747 15.2841C19.6747 15.7726 20.0718 16.1698 20.5602 16.1698C21.0486 16.1698 21.4457 15.7726 21.4457 15.2841C21.4457 14.7957 21.0486 14.3984 20.5602 14.3984Z" fill="#404040"/>
28
+ <path d="M41.467 19.7106C42.2183 19.7106 42.8284 19.1005 42.8284 18.349C42.8284 17.5975 42.2183 16.9873 41.467 16.9873C40.7156 16.9873 40.1056 17.5975 40.1056 18.349C40.1056 19.1005 40.7156 19.7106 41.467 19.7106Z" fill="#404040"/>
29
+ <path d="M38.4803 19.6371C39.1941 19.6371 39.7737 19.0574 39.7737 18.3435C39.7737 17.6295 39.1941 17.0498 38.4803 17.0498C37.7665 17.0498 37.1869 17.6295 37.1869 18.3435C37.1869 19.0574 37.7665 19.6371 38.4803 19.6371Z" fill="#404040"/>
30
+ <path d="M44.4524 22.8378C45.2414 22.8378 45.8818 22.1972 45.8818 21.4082C45.8818 20.6191 45.2414 19.9785 44.4524 19.9785C43.6635 19.9785 43.0231 20.6191 43.0231 21.4082C43.0231 22.1972 43.6635 22.8378 44.4524 22.8378Z" fill="#404040"/>
31
+ <path d="M41.467 22.7702C42.2183 22.7702 42.8284 22.16 42.8284 21.4085C42.8284 20.657 42.2183 20.0469 41.467 20.0469C40.7156 20.0469 40.1056 20.657 40.1056 21.4085C40.1056 22.16 40.7156 22.7702 41.467 22.7702Z" fill="#404040"/>
32
+ <path d="M48.9401 24.4732C48.9401 23.6466 48.2693 22.9756 47.4428 22.9756C46.6163 22.9756 45.9454 23.6466 45.9454 24.4732C45.9454 25.2999 46.6163 25.9709 47.4428 25.9709C48.2693 25.9709 48.9401 25.2999 48.9401 24.4732Z" fill="#404040"/>
33
+ <path d="M44.4524 25.9013C45.2418 25.9013 45.8818 25.2612 45.8818 24.4716C45.8818 23.6821 45.2418 23.042 44.4524 23.042C43.663 23.042 43.0231 23.6821 43.0231 24.4716C43.0231 25.2612 43.663 25.9013 44.4524 25.9013Z" fill="#404040"/>
34
+ <path d="M41.467 25.8317C42.2183 25.8317 42.8284 25.2216 42.8284 24.4701C42.8284 23.7185 42.2183 23.1084 41.467 23.1084C40.7156 23.1084 40.1056 23.7185 40.1056 24.4701C40.1056 25.2216 40.7156 25.8317 41.467 25.8317Z" fill="#404040"/>
35
+ <path d="M35.4948 37.9499C36.1711 37.9499 36.7203 37.4006 36.7203 36.7242C36.7203 36.0479 36.1711 35.4985 35.4948 35.4985C34.8186 35.4985 34.2694 36.0479 34.2694 36.7242C34.2694 37.4006 34.8186 37.9499 35.4948 37.9499Z" fill="#404040"/>
36
+ <path d="M26.5324 35.7021C25.9688 35.7021 25.5109 36.1602 25.5109 36.7238C25.5109 37.2875 25.9688 37.7455 26.5324 37.7455C27.0959 37.7455 27.5538 37.2875 27.5538 36.7238C27.5538 36.1602 27.0959 35.7021 26.5324 35.7021Z" fill="#404040"/>
37
+ <path d="M23.5469 35.772C23.021 35.772 22.5934 36.1996 22.5934 36.7257C22.5934 37.2517 23.021 37.6794 23.5469 37.6794C24.0728 37.6794 24.5004 37.2517 24.5004 36.7257C24.5004 36.1996 24.0728 35.772 23.5469 35.772Z" fill="#404040"/>
38
+ <path d="M17.5748 39.0724C18.0263 39.0724 18.3923 38.7063 18.3923 38.2547C18.3923 37.8031 18.0263 37.437 17.5748 37.437C17.1232 37.437 16.7572 37.8031 16.7572 38.2547C16.7572 38.7063 17.1232 39.0724 17.5748 39.0724Z" fill="#404040"/>
39
+ <path d="M14.5844 39.0058C14.9984 39.0058 15.334 38.6701 15.334 38.2561C15.334 37.842 14.9984 37.5063 14.5844 37.5063C14.1704 37.5063 13.8349 37.842 13.8349 38.2561C13.8349 38.6701 14.1704 39.0058 14.5844 39.0058Z" fill="#404040"/>
40
+ <path d="M38.4803 34.9535C39.1941 34.9535 39.7737 34.3738 39.7737 33.6599C39.7737 32.9459 39.1941 32.3662 38.4803 32.3662C37.7665 32.3662 37.1869 32.9459 37.1869 33.6599C37.1869 34.3738 37.7665 34.9535 38.4803 34.9535Z" fill="#404040"/>
41
+ <path d="M35.4948 34.8869C36.1711 34.8869 36.7203 34.3376 36.7203 33.6612C36.7203 32.9849 36.1711 32.4355 35.4948 32.4355C34.8186 32.4355 34.2694 32.9849 34.2694 33.6612C34.2694 34.3376 34.8186 34.8869 35.4948 34.8869Z" fill="#404040"/>
42
+ <path d="M41.467 31.9596C42.2183 31.9596 42.8284 31.3495 42.8284 30.598C42.8284 29.8465 42.2183 29.2363 41.467 29.2363C40.7156 29.2363 40.1056 29.8465 40.1056 30.598C40.1056 31.3495 40.7156 31.9596 41.467 31.9596Z" fill="#404040"/>
43
+ <path d="M38.4803 31.892C39.1941 31.892 39.7737 31.3123 39.7737 30.5984C39.7737 29.8844 39.1941 29.3047 38.4803 29.3047C37.7665 29.3047 37.1869 29.8844 37.1869 30.5984C37.1869 31.3123 37.7665 31.892 38.4803 31.892Z" fill="#404040"/>
44
+ <path d="M35.4948 31.8254C36.1711 31.8254 36.7203 31.276 36.7203 30.5997C36.7203 29.9233 36.1711 29.374 35.4948 29.374C34.8186 29.374 34.2694 29.9233 34.2694 30.5997C34.2694 31.276 34.8186 31.8254 35.4948 31.8254Z" fill="#404040"/>
45
+ <path d="M44.4524 28.9648C45.2414 28.9648 45.8818 28.3242 45.8818 27.5351C45.8818 26.746 45.2414 26.1055 44.4524 26.1055C43.6635 26.1055 43.0231 26.746 43.0231 27.5351C43.0231 28.3242 43.6635 28.9648 44.4524 28.9648Z" fill="#404040"/>
46
+ <path d="M41.467 28.8981C42.2183 28.8981 42.8284 28.288 42.8284 27.5365C42.8284 26.785 42.2183 26.1748 41.467 26.1748C40.7156 26.1748 40.1056 26.785 40.1056 27.5365C40.1056 28.288 40.7156 28.8981 41.467 28.8981Z" fill="#404040"/>
47
+ <path d="M38.4803 28.8285C39.1941 28.8285 39.7737 28.2488 39.7737 27.5349C39.7737 26.8209 39.1941 26.2412 38.4803 26.2412C37.7665 26.2412 37.1869 26.8209 37.1869 27.5349C37.1869 28.2488 37.7665 28.8285 38.4803 28.8285Z" fill="#404040"/>
48
+ <path d="M32.5082 69.2588C31.8695 69.2588 31.3507 69.7777 31.3507 70.4165C31.3507 71.0552 31.8695 71.5741 32.5082 71.5741C33.1468 71.5741 33.6656 71.0552 33.6656 70.4165C33.6656 69.7777 33.1468 69.2588 32.5082 69.2588Z" fill="#404040"/>
49
+ <path d="M29.519 71.5065C30.1207 71.5065 30.6085 71.0186 30.6085 70.4168C30.6085 69.815 30.1207 69.3271 29.519 69.3271C28.9173 69.3271 28.4296 69.815 28.4296 70.4168C28.4296 71.0186 28.9173 71.5065 29.519 71.5065Z" fill="#404040"/>
50
+ <path d="M26.5324 69.397C25.9688 69.397 25.5109 69.855 25.5109 70.4187C25.5109 70.9823 25.9688 71.4403 26.5324 71.4403C27.0959 71.4403 27.5538 70.9823 27.5538 70.4187C27.5538 69.855 27.0959 69.397 26.5324 69.397Z" fill="#404040"/>
51
+ <path d="M23.5469 71.3703C24.0735 71.3703 24.5004 70.9433 24.5004 70.4166C24.5004 69.8899 24.0735 69.4629 23.5469 69.4629C23.0203 69.4629 22.5934 69.8899 22.5934 70.4166C22.5934 70.9433 23.0203 71.3703 23.5469 71.3703Z" fill="#404040"/>
52
+ <path d="M20.5602 69.5298C20.0718 69.5298 19.6747 69.927 19.6747 70.4155C19.6747 70.904 20.0718 71.3012 20.5602 71.3012C21.0486 71.3012 21.4457 70.9058 21.4457 70.4155C21.4457 69.9252 21.0486 69.5298 20.5602 69.5298Z" fill="#404040"/>
53
+ <path d="M17.5748 71.2345C18.0263 71.2345 18.3923 70.8684 18.3923 70.4168C18.3923 69.9652 18.0263 69.5991 17.5748 69.5991C17.1232 69.5991 16.7572 69.9652 16.7572 70.4168C16.7572 70.8684 17.1232 71.2345 17.5748 71.2345Z" fill="#404040"/>
54
+ <path d="M14.5844 71.1659C14.9984 71.1659 15.334 70.8303 15.334 70.4162C15.334 70.0022 14.9984 69.6665 14.5844 69.6665C14.1704 69.6665 13.8349 70.0022 13.8349 70.4162C13.8349 70.8303 14.1704 71.1659 14.5844 71.1659Z" fill="#404040"/>
55
+ <path d="M11.599 71.0998C11.9754 71.0998 12.2805 70.7946 12.2805 70.4181C12.2805 70.0415 11.9754 69.7363 11.599 69.7363C11.2225 69.7363 10.9174 70.0415 10.9174 70.4181C10.9174 70.7946 11.2225 71.0998 11.599 71.0998Z" fill="#404040"/>
56
+ <path d="M8.61349 71.0317C8.95238 71.0317 9.22709 70.7569 9.22709 70.4179C9.22709 70.079 8.95238 69.8042 8.61349 69.8042C8.27461 69.8042 7.99989 70.079 7.99989 70.4179C7.99989 70.7569 8.27461 71.0317 8.61349 71.0317Z" fill="#404040"/>
57
+ <path d="M35.4948 68.5793C36.1711 68.5793 36.7203 68.03 36.7203 67.3536C36.7203 66.6772 36.1711 66.1279 35.4948 66.1279C34.8186 66.1279 34.2694 66.6772 34.2694 67.3536C34.2694 68.03 34.8186 68.5793 35.4948 68.5793Z" fill="#404040"/>
58
+ <path d="M32.5082 66.1978C31.8695 66.1978 31.3507 66.7167 31.3507 67.3554C31.3507 67.9942 31.8695 68.5131 32.5082 68.5131C33.1468 68.5131 33.6656 67.9942 33.6656 67.3554C33.6656 66.7167 33.1468 66.1978 32.5082 66.1978Z" fill="#404040"/>
59
+ <path d="M29.519 68.4435C30.1207 68.4435 30.6085 67.9557 30.6085 67.3538C30.6085 66.752 30.1207 66.2642 29.519 66.2642C28.9173 66.2642 28.4296 66.752 28.4296 67.3538C28.4296 67.9557 28.9173 68.4435 29.519 68.4435Z" fill="#404040"/>
60
+ <path d="M26.5324 66.3306C25.9688 66.3306 25.5109 66.7886 25.5109 67.3523C25.5109 67.9159 25.9688 68.3739 26.5324 68.3739C27.0959 68.3739 27.5538 67.9159 27.5538 67.3523C27.5538 66.7886 27.0959 66.3306 26.5324 66.3306Z" fill="#404040"/>
61
+ <path d="M23.5469 66.3999C23.021 66.3999 22.5934 66.8275 22.5934 67.3536C22.5934 67.8796 23.021 68.3073 23.5469 68.3073C24.0728 68.3073 24.5004 67.8796 24.5004 67.3536C24.5004 66.8275 24.0728 66.3999 23.5469 66.3999Z" fill="#404040"/>
62
+ <path d="M20.5602 66.4683C20.0718 66.4683 19.6747 66.8655 19.6747 67.354C19.6747 67.8424 20.0718 68.2397 20.5602 68.2397C21.0486 68.2397 21.4457 67.8442 21.4457 67.354C21.4457 66.8637 21.0486 66.4683 20.5602 66.4683Z" fill="#404040"/>
63
+ <path d="M17.5748 66.5376C17.1239 66.5376 16.7572 66.9026 16.7572 67.3553C16.7572 67.808 17.1222 68.173 17.5748 68.173C18.0274 68.173 18.3923 67.808 18.3923 67.3553C18.3923 66.9026 18.0274 66.5376 17.5748 66.5376Z" fill="#404040"/>
64
+ <path d="M14.5844 68.1034C14.9984 68.1034 15.334 67.7678 15.334 67.3537C15.334 66.9397 14.9984 66.604 14.5844 66.604C14.1704 66.604 13.8349 66.9397 13.8349 67.3537C13.8349 67.7678 14.1704 68.1034 14.5844 68.1034Z" fill="#404040"/>
65
+ <path d="M38.4803 65.5854C39.1941 65.5854 39.7737 65.0056 39.7737 64.2917C39.7737 63.5778 39.1941 62.998 38.4803 62.998C37.7665 62.998 37.1869 63.5778 37.1869 64.2917C37.1869 65.0056 37.7665 65.5854 38.4803 65.5854Z" fill="#404040"/>
66
+ <path d="M35.4948 65.5163C36.1711 65.5163 36.7203 64.967 36.7203 64.2906C36.7203 63.6143 36.1711 63.0649 35.4948 63.0649C34.8186 63.0649 34.2694 63.6143 34.2694 64.2906C34.2694 64.967 34.8186 65.5163 35.4948 65.5163Z" fill="#404040"/>
67
+ <path d="M32.5082 63.1313C31.8695 63.1313 31.3507 63.6502 31.3507 64.289C31.3507 64.9278 31.8695 65.4467 32.5082 65.4467C33.1468 65.4467 33.6656 64.9278 33.6656 64.289C33.6656 63.6502 33.1468 63.1313 32.5082 63.1313Z" fill="#404040"/>
68
+ <path d="M29.519 63.2007C28.918 63.2007 28.4296 63.6892 28.4296 64.2904C28.4296 64.8916 28.918 65.38 29.519 65.38C30.1201 65.38 30.6085 64.8916 30.6085 64.2904C30.6085 63.6892 30.1201 63.2007 29.519 63.2007Z" fill="#404040"/>
69
+ <path d="M26.5324 63.269C25.9688 63.269 25.5109 63.7271 25.5109 64.2907C25.5109 64.8544 25.9688 65.3124 26.5324 65.3124C27.0959 65.3124 27.5538 64.8544 27.5538 64.2907C27.5538 63.7271 27.0959 63.269 26.5324 63.269Z" fill="#404040"/>
70
+ <path d="M23.5469 65.2458C24.0735 65.2458 24.5004 64.8188 24.5004 64.2921C24.5004 63.7654 24.0735 63.3384 23.5469 63.3384C23.0203 63.3384 22.5934 63.7654 22.5934 64.2921C22.5934 64.8188 23.0203 65.2458 23.5469 65.2458Z" fill="#404040"/>
71
+ <path d="M20.5602 63.4048C20.0718 63.4048 19.6747 63.8002 19.6747 64.2905C19.6747 64.7808 20.0718 65.1762 20.5602 65.1762C21.0486 65.1762 21.4457 64.779 21.4457 64.2905C21.4457 63.802 21.0486 63.4048 20.5602 63.4048Z" fill="#404040"/>
72
+ <path d="M41.467 62.589C42.2183 62.589 42.8284 61.9789 42.8284 61.2274C42.8284 60.4759 42.2183 59.8657 41.467 59.8657C40.7156 59.8657 40.1056 60.4759 40.1056 61.2274C40.1056 61.9789 40.7156 62.589 41.467 62.589Z" fill="#404040"/>
73
+ <path d="M38.4803 62.5195C39.1941 62.5195 39.7737 61.9397 39.7737 61.2258C39.7737 60.5119 39.1941 59.9321 38.4803 59.9321C37.7665 59.9321 37.1869 60.5119 37.1869 61.2258C37.1869 61.9397 37.7665 62.5195 38.4803 62.5195Z" fill="#404040"/>
74
+ <path d="M44.4524 59.5922C45.2418 59.5922 45.8818 58.9521 45.8818 58.1626C45.8818 57.373 45.2418 56.7329 44.4524 56.7329C43.663 56.7329 43.0231 57.373 43.0231 58.1626C43.0231 58.9521 43.663 59.5922 44.4524 59.5922Z" fill="#404040"/>
75
+ <path d="M41.467 59.5256C42.2183 59.5256 42.8284 58.9154 42.8284 58.1639C42.8284 57.4124 42.2183 56.8022 41.467 56.8022C40.7156 56.8022 40.1056 57.4124 40.1056 58.1639C40.1056 58.9154 40.7156 59.5256 41.467 59.5256Z" fill="#404040"/>
76
+ <path d="M48.9401 55.1016C48.9401 54.275 48.2693 53.604 47.4428 53.604C46.6163 53.604 45.9454 54.275 45.9454 55.1016C45.9454 55.9283 46.6163 56.5993 47.4428 56.5993C48.2693 56.5993 48.9401 55.9283 48.9401 55.1016Z" fill="#404040"/>
77
+ <path d="M44.4524 56.5336C45.2414 56.5336 45.8818 55.893 45.8818 55.104C45.8818 54.3149 45.2414 53.6743 44.4524 53.6743C43.6635 53.6743 43.0231 54.3149 43.0231 55.104C43.0231 55.893 43.6635 56.5336 44.4524 56.5336Z" fill="#404040"/>
78
+ <path d="M41.467 56.464C42.2183 56.464 42.8284 55.8539 42.8284 55.1024C42.8284 54.3509 42.2183 53.7407 41.467 53.7407C40.7156 53.7407 40.1056 54.3509 40.1056 55.1024C40.1056 55.8539 40.7156 56.464 41.467 56.464Z" fill="#404040"/>
79
+ <path d="M35.4948 44.0754C36.1711 44.0754 36.7203 43.526 36.7203 42.8497C36.7203 42.1733 36.1711 41.624 35.4948 41.624C34.8186 41.624 34.2694 42.1733 34.2694 42.8497C34.2694 43.526 34.8186 44.0754 35.4948 44.0754Z" fill="#404040"/>
80
+ <path d="M26.5324 41.8276C25.9688 41.8276 25.5109 42.2857 25.5109 42.8493C25.5109 43.413 25.9688 43.871 26.5324 43.871C27.0959 43.871 27.5538 43.413 27.5538 42.8493C27.5538 42.2857 27.0959 41.8276 26.5324 41.8276Z" fill="#404040"/>
81
+ <path d="M23.5469 43.8049C24.0735 43.8049 24.5004 43.3779 24.5004 42.8512C24.5004 42.3244 24.0735 41.8975 23.5469 41.8975C23.0203 41.8975 22.5934 42.3244 22.5934 42.8512C22.5934 43.3779 23.0203 43.8049 23.5469 43.8049Z" fill="#404040"/>
82
+ <path d="M17.5748 40.502C17.1239 40.502 16.7572 40.867 16.7572 41.3197C16.7572 41.7724 17.1222 42.1374 17.5748 42.1374C18.0274 42.1374 18.3923 41.7724 18.3923 41.3197C18.3923 40.867 18.0274 40.502 17.5748 40.502Z" fill="#404040"/>
83
+ <path d="M38.4803 47.2065C39.1941 47.2065 39.7737 46.6267 39.7737 45.9128C39.7737 45.1989 39.1941 44.6191 38.4803 44.6191C37.7665 44.6191 37.1869 45.1989 37.1869 45.9128C37.1869 46.6267 37.7665 47.2065 38.4803 47.2065Z" fill="#404040"/>
84
+ <path d="M35.4948 47.1388C36.1711 47.1388 36.7203 46.5895 36.7203 45.9132C36.7203 45.2368 36.1711 44.6875 35.4948 44.6875C34.8186 44.6875 34.2694 45.2368 34.2694 45.9132C34.2694 46.5895 34.8186 47.1388 35.4948 47.1388Z" fill="#404040"/>
85
+ <path d="M41.467 50.3395C42.2183 50.3395 42.8284 49.7294 42.8284 48.9779C42.8284 48.2264 42.2183 47.6162 41.467 47.6162C40.7156 47.6162 40.1056 48.2264 40.1056 48.9779C40.1056 49.7294 40.7156 50.3395 41.467 50.3395Z" fill="#404040"/>
86
+ <path d="M38.4803 50.2695C39.1941 50.2695 39.7737 49.6897 39.7737 48.9758C39.7737 48.2619 39.1941 47.6821 38.4803 47.6821C37.7665 47.6821 37.1869 48.2619 37.1869 48.9758C37.1869 49.6897 37.7665 50.2695 38.4803 50.2695Z" fill="#404040"/>
87
+ <path d="M35.4948 50.2004C36.1711 50.2004 36.7203 49.651 36.7203 48.9747C36.7203 48.2983 36.1711 47.749 35.4948 47.749C34.8186 47.749 34.2694 48.2983 34.2694 48.9747C34.2694 49.651 34.8186 50.2004 35.4948 50.2004Z" fill="#404040"/>
88
+ <path d="M44.4524 53.4672C45.2418 53.4672 45.8818 52.8271 45.8818 52.0376C45.8818 51.248 45.2418 50.6079 44.4524 50.6079C43.663 50.6079 43.0231 51.248 43.0231 52.0376C43.0231 52.8271 43.663 53.4672 44.4524 53.4672Z" fill="#404040"/>
89
+ <path d="M41.467 53.4006C42.2183 53.4006 42.8284 52.7904 42.8284 52.0389C42.8284 51.2874 42.2183 50.6772 41.467 50.6772C40.7156 50.6772 40.1056 51.2874 40.1056 52.0389C40.1056 52.7904 40.7156 53.4006 41.467 53.4006Z" fill="#404040"/>
90
+ <path d="M38.4803 53.3329C39.1941 53.3329 39.7737 52.7532 39.7737 52.0393C39.7737 51.3253 39.1941 50.7456 38.4803 50.7456C37.7665 50.7456 37.1869 51.3253 37.1869 52.0393C37.1869 52.7532 37.7665 53.3329 38.4803 53.3329Z" fill="#404040"/>
91
+ <path d="M32.5082 32.5039C31.8695 32.5039 31.3507 33.0228 31.3507 33.6616C31.3507 34.3004 31.8695 34.8193 32.5082 34.8193C33.1468 34.8193 33.6656 34.3004 33.6656 33.6616C33.6656 33.0228 33.1468 32.5039 32.5082 32.5039Z" fill="#404040"/>
92
+ <path d="M32.5082 38.6284C31.8695 38.6284 31.3507 39.1473 31.3507 39.7861C31.3507 40.4249 31.8695 40.9438 32.5082 40.9438C33.1468 40.9438 33.6656 40.4249 33.6656 39.7861C33.6656 39.1473 33.1468 38.6284 32.5082 38.6284Z" fill="#404040"/>
93
+ <path d="M32.5082 41.6899C31.8695 41.6899 31.3507 42.2088 31.3507 42.8476C31.3507 43.4864 31.8695 44.0053 32.5082 44.0053C33.1468 44.0053 33.6656 43.4864 33.6656 42.8476C33.6656 42.2088 33.1468 41.6899 32.5082 41.6899Z" fill="#404040"/>
94
+ <path d="M32.5082 44.7563C31.8695 44.7563 31.3507 45.2752 31.3507 45.914C31.3507 46.5528 31.8695 47.0717 32.5082 47.0717C33.1468 47.0717 33.6656 46.5528 33.6656 45.914C33.6656 45.2752 33.1468 44.7563 32.5082 44.7563Z" fill="#404040"/>
95
+ <path d="M32.5082 35.5654C31.8695 35.5654 31.3507 36.0843 31.3507 36.7231C31.3507 37.3619 31.8695 37.8808 32.5082 37.8808C33.1468 37.8808 33.6656 37.3619 33.6656 36.7231C33.6656 36.0843 33.1468 35.5654 32.5082 35.5654Z" fill="#404040"/>
96
+ <path d="M29.519 34.1035C28.918 34.1035 28.4296 34.592 28.4296 35.1932C28.4296 35.7944 28.918 36.2829 29.519 36.2829C30.1201 36.2829 30.6085 35.7944 30.6085 35.1932C30.6085 34.592 30.1201 34.1035 29.519 34.1035Z" fill="#404040"/>
97
+ <path d="M29.519 40.2295C28.918 40.2295 28.4296 40.718 28.4296 41.3192C28.4296 41.9204 28.918 42.4089 29.519 42.4089C30.1201 42.4089 30.6085 41.9204 30.6085 41.3192C30.6085 40.718 30.1201 40.2295 29.519 40.2295Z" fill="#404040"/>
98
+ <path d="M29.519 43.2915C28.918 43.2915 28.4296 43.78 28.4296 44.3812C28.4296 44.9824 28.918 45.4709 29.519 45.4709C30.1201 45.4709 30.6085 44.9824 30.6085 44.3812C30.6085 43.78 30.1201 43.2915 29.519 43.2915Z" fill="#404040"/>
99
+ <path d="M29.519 37.167C28.918 37.167 28.4296 37.6555 28.4296 38.2567C28.4296 38.4821 28.4976 38.6915 28.6156 38.865C28.8106 39.1549 29.1434 39.3446 29.519 39.3446C29.8947 39.3446 30.2257 39.1549 30.4224 38.865C30.5405 38.6915 30.6085 38.4821 30.6085 38.2567C30.6085 37.6555 30.1201 37.167 29.519 37.167Z" fill="#404040"/>
100
+ <path d="M26.7381 38.7861C26.6719 38.7718 26.6021 38.7646 26.5324 38.7646C26.4626 38.7646 26.3928 38.7718 26.3266 38.7861C25.8615 38.881 25.5109 39.2925 25.5109 39.7863C25.5109 40.2802 25.8615 40.6917 26.3266 40.7866C26.3928 40.8009 26.4626 40.808 26.5324 40.808C26.6021 40.808 26.6719 40.8009 26.7381 40.7866C27.2032 40.6917 27.5538 40.2802 27.5538 39.7863C27.5538 39.2925 27.2032 38.881 26.7381 38.7861Z" fill="#404040"/>
101
+ <path d="M24.08 38.9973C23.9279 38.8953 23.7437 38.8345 23.5469 38.8345C23.3501 38.8345 23.1659 38.8953 23.0138 38.9973C22.7598 39.1691 22.5934 39.4589 22.5934 39.7882C22.5934 40.0512 22.7007 40.2892 22.8725 40.4627C23.0442 40.6345 23.2839 40.7419 23.5469 40.7419C23.8099 40.7419 24.0478 40.6345 24.2213 40.4627C24.3931 40.291 24.5004 40.0512 24.5004 39.7882C24.5004 39.4589 24.334 39.1691 24.08 38.9973Z" fill="#404040"/>
102
+ <path d="M20.5602 40.4326C20.0718 40.4326 19.6747 40.8281 19.6747 41.3183C19.6747 41.8086 20.0718 42.204 20.5602 42.204C21.0486 42.204 21.4457 41.8068 21.4457 41.3183C21.4457 40.8298 21.0486 40.4326 20.5602 40.4326Z" fill="#404040"/>
103
+ <path d="M20.5633 37.3711C20.2574 37.3711 19.9891 37.5268 19.8298 37.7612C19.735 37.9025 19.6796 38.0725 19.6796 38.2568C19.6796 38.7453 20.0767 39.1425 20.5651 39.1425C21.0535 39.1425 21.4506 38.7471 21.4506 38.2568C21.4506 38.0743 21.3952 37.9025 21.3003 37.7612C21.1411 37.525 20.8728 37.3711 20.5669 37.3711H20.5633Z" fill="#404040"/>
104
+ <path d="M12.2662 39.6501C12.2573 39.6053 12.243 39.5624 12.2269 39.523C12.1929 39.4407 12.1428 39.3674 12.0802 39.3065C11.9567 39.1831 11.7868 39.1079 11.599 39.1079C11.4111 39.1079 11.2412 39.1849 11.1177 39.3065C11.0569 39.3674 11.0068 39.4407 10.971 39.523C10.9532 39.5642 10.9406 39.6071 10.9317 39.6501C10.9227 39.6948 10.9174 39.7395 10.9174 39.7878C10.9174 39.8344 10.9227 39.8809 10.9317 39.9256C10.9406 39.9704 10.9549 40.0133 10.971 40.0527C11.0748 40.2978 11.3163 40.4678 11.599 40.4678C11.8816 40.4678 12.1231 40.296 12.2269 40.0527C12.2448 40.0115 12.2573 39.9686 12.2662 39.9256C12.2752 39.8809 12.2805 39.8362 12.2805 39.7878C12.2805 39.7413 12.2752 39.6948 12.2662 39.6501Z" fill="#404040"/>
105
+ <path d="M8.61349 39.1748C8.27539 39.1748 7.99989 39.4486 7.99989 39.7885C7.99989 40.1267 8.2736 40.4023 8.61349 40.4023C8.95339 40.4023 9.22709 40.1285 9.22709 39.7885C9.22709 39.4504 8.95339 39.1748 8.61349 39.1748Z" fill="#404040"/>
106
+ <path d="M14.5844 40.5703C14.1712 40.5703 13.8349 40.9049 13.8349 41.32C13.8349 41.7351 14.1694 42.0697 14.5844 42.0697C14.9994 42.0697 15.334 41.7351 15.334 41.32C15.334 40.9049 14.9994 40.5703 14.5844 40.5703Z" fill="#404040"/>
107
+ <path d="M43.5311 39.7869C52.3076 39.7869 59.4221 32.6708 59.4221 23.8925C59.4221 15.1142 52.3058 8 43.5311 8H33.7421L50.3433 24.4723L35.1017 39.7869L50.3433 55.1015L33.7421 71.5738H43.5311C52.3076 71.5738 59.4221 64.4577 59.4221 55.6794C59.4221 46.9011 52.3076 39.7851 43.5311 39.7851V39.7869Z" fill="url(#paint0_linear_10832_19396)"/>
108
+ <path d="M57.3981 47.0028L71.9975 39.7865L57.3981 32.5703V47.0028Z" fill="url(#paint1_linear_10832_19396)"/>
109
+ <path d="M32.5082 8C31.8695 8 31.3507 8.5189 31.3507 9.15768C31.3507 9.79645 31.8695 10.3154 32.5082 10.3154C33.1468 10.3154 33.6656 9.79645 33.6656 9.15768C33.6656 8.5189 33.1468 8 32.5082 8Z" fill="url(#paint2_linear_10832_19396)"/>
110
+ <path d="M29.519 8.06934C28.918 8.06934 28.4296 8.55781 28.4296 9.15902C28.4296 9.76022 28.918 10.2487 29.519 10.2487C30.1201 10.2487 30.6085 9.76022 30.6085 9.15902C30.6085 8.55781 30.1201 8.06934 29.519 8.06934Z" fill="url(#paint3_linear_10832_19396)"/>
111
+ <path d="M26.5324 8.13574C25.9688 8.13574 25.5109 8.5938 25.5109 9.15743C25.5109 9.72106 25.9688 10.1791 26.5324 10.1791C27.0959 10.1791 27.5538 9.72106 27.5538 9.15743C27.5538 8.5938 27.0959 8.13574 26.5324 8.13574Z" fill="url(#paint4_linear_10832_19396)"/>
112
+ <path d="M23.5469 8.20215C23.021 8.20215 22.5934 8.62979 22.5934 9.15584C22.5934 9.6819 23.021 10.1095 23.5469 10.1095C24.0728 10.1095 24.5004 9.6819 24.5004 9.15584C24.5004 8.62979 24.0728 8.20215 23.5469 8.20215Z" fill="url(#paint5_linear_10832_19396)"/>
113
+ <path d="M20.5602 8.27246C20.0718 8.27246 19.6747 8.6679 19.6747 9.15816C19.6747 9.64843 20.0718 10.0439 20.5602 10.0439C21.0486 10.0439 21.4457 9.64664 21.4457 9.15816C21.4457 8.66969 21.0486 8.27246 20.5602 8.27246Z" fill="url(#paint6_linear_10832_19396)"/>
114
+ <path d="M17.5748 8.33984C17.1239 8.33984 16.7572 8.70486 16.7572 9.15755C16.7572 9.61024 17.1222 9.97526 17.5748 9.97526C18.0274 9.97526 18.3923 9.61024 18.3923 9.15755C18.3923 8.70486 18.0274 8.33984 17.5748 8.33984Z" fill="url(#paint7_linear_10832_19396)"/>
115
+ <path d="M14.5844 8.40918C14.1712 8.40918 13.8349 8.74378 13.8349 9.1589C13.8349 9.57401 14.1694 9.90861 14.5844 9.90861C14.9994 9.90861 15.334 9.57401 15.334 9.1589C15.334 8.74378 14.9994 8.40918 14.5844 8.40918Z" fill="url(#paint8_linear_10832_19396)"/>
116
+ <path d="M11.599 8.47559C11.2233 8.47559 10.9174 8.77977 10.9174 9.15731C10.9174 9.53485 11.2215 9.83903 11.599 9.83903C11.9764 9.83903 12.2805 9.53485 12.2805 9.15731C12.2805 8.77977 11.9764 8.47559 11.599 8.47559Z" fill="url(#paint9_linear_10832_19396)"/>
117
+ <path d="M8.61349 9.76945C8.95238 9.76945 9.22709 9.49467 9.22709 9.15572C9.22709 8.81677 8.95238 8.54199 8.61349 8.54199C8.27461 8.54199 7.99989 8.81677 7.99989 9.15572C7.99989 9.49467 8.27461 9.76945 8.61349 9.76945Z" fill="url(#paint10_linear_10832_19396)"/>
118
+ <path d="M35.4948 13.4455C36.1711 13.4455 36.7203 12.8962 36.7203 12.2198C36.7203 11.5435 36.1711 10.9941 35.4948 10.9941C34.8186 10.9941 34.2694 11.5435 34.2694 12.2198C34.2694 12.8962 34.8186 13.4455 35.4948 13.4455Z" fill="url(#paint11_linear_10832_19396)"/>
119
+ <path d="M32.5082 11.0615C31.8695 11.0615 31.3507 11.5804 31.3507 12.2192C31.3507 12.858 31.8695 13.3769 32.5082 13.3769C33.1468 13.3769 33.6656 12.858 33.6656 12.2192C33.6656 11.5804 33.1468 11.0615 32.5082 11.0615Z" fill="url(#paint12_linear_10832_19396)"/>
120
+ <path d="M29.519 11.1318C28.918 11.1318 28.4296 11.6203 28.4296 12.2215C28.4296 12.8227 28.918 13.3112 29.519 13.3112C30.1201 13.3112 30.6085 12.8227 30.6085 12.2215C30.6085 11.6203 30.1201 11.1318 29.519 11.1318Z" fill="url(#paint13_linear_10832_19396)"/>
121
+ <path d="M26.5324 11.1992C25.9688 11.1992 25.5109 11.6573 25.5109 12.2209C25.5109 12.7845 25.9688 13.2426 26.5324 13.2426C27.0959 13.2426 27.5538 12.7845 27.5538 12.2209C27.5538 11.6573 27.0959 11.1992 26.5324 11.1992Z" fill="url(#paint14_linear_10832_19396)"/>
122
+ <path d="M23.5469 11.2686C23.021 11.2686 22.5934 11.6962 22.5934 12.2223C22.5934 12.7483 23.021 13.1759 23.5469 13.1759C24.0728 13.1759 24.5004 12.7483 24.5004 12.2223C24.5004 11.6962 24.0728 11.2686 23.5469 11.2686Z" fill="url(#paint15_linear_10832_19396)"/>
123
+ <path d="M20.5602 11.335C20.0718 11.335 19.6747 11.7322 19.6747 12.2207C19.6747 12.7091 20.0718 13.1064 20.5602 13.1064C21.0486 13.1064 21.4457 12.7091 21.4457 12.2207C21.4457 11.7322 21.0486 11.335 20.5602 11.335Z" fill="url(#paint16_linear_10832_19396)"/>
124
+ <path d="M17.5748 13.0368C18.0263 13.0368 18.3923 12.6707 18.3923 12.2191C18.3923 11.7675 18.0263 11.4014 17.5748 11.4014C17.1232 11.4014 16.7572 11.7675 16.7572 12.2191C16.7572 12.6707 17.1232 13.0368 17.5748 13.0368Z" fill="url(#paint17_linear_10832_19396)"/>
125
+ <path d="M14.5844 12.9711C14.9984 12.9711 15.334 12.6355 15.334 12.2214C15.334 11.8073 14.9984 11.4717 14.5844 11.4717C14.1704 11.4717 13.8349 11.8073 13.8349 12.2214C13.8349 12.6355 14.1704 12.9711 14.5844 12.9711Z" fill="url(#paint18_linear_10832_19396)"/>
126
+ <path d="M38.4803 16.5785C39.1941 16.5785 39.7737 15.9988 39.7737 15.2849C39.7737 14.5709 39.1941 13.9912 38.4803 13.9912C37.7665 13.9912 37.1869 14.5709 37.1869 15.2849C37.1869 15.9988 37.7665 16.5785 38.4803 16.5785Z" fill="url(#paint19_linear_10832_19396)"/>
127
+ <path d="M35.4948 16.5099C36.1711 16.5099 36.7203 15.9606 36.7203 15.2843C36.7203 14.6079 36.1711 14.0586 35.4948 14.0586C34.8186 14.0586 34.2694 14.6079 34.2694 15.2843C34.2694 15.9606 34.8186 16.5099 35.4948 16.5099Z" fill="url(#paint20_linear_10832_19396)"/>
128
+ <path d="M32.5082 14.1279C31.8695 14.1279 31.3507 14.6468 31.3507 15.2856C31.3507 15.9244 31.8695 16.4433 32.5082 16.4433C33.1468 16.4433 33.6656 15.9244 33.6656 15.2856C33.6656 14.6468 33.1468 14.1279 32.5082 14.1279Z" fill="url(#paint21_linear_10832_19396)"/>
129
+ <path d="M29.519 16.3737C30.1207 16.3737 30.6085 15.8858 30.6085 15.284C30.6085 14.6822 30.1207 14.1943 29.519 14.1943C28.9173 14.1943 28.4296 14.6822 28.4296 15.284C28.4296 15.8858 28.9173 16.3737 29.519 16.3737Z" fill="url(#paint22_linear_10832_19396)"/>
130
+ <path d="M26.5324 14.2607C25.9688 14.2607 25.5109 14.7188 25.5109 15.2824C25.5109 15.8461 25.9688 16.3041 26.5324 16.3041C27.0959 16.3041 27.5538 15.8461 27.5538 15.2824C27.5538 14.7188 27.0959 14.2607 26.5324 14.2607Z" fill="url(#paint23_linear_10832_19396)"/>
131
+ <path d="M23.5469 16.2384C24.0735 16.2384 24.5004 15.8115 24.5004 15.2848C24.5004 14.758 24.0735 14.3311 23.5469 14.3311C23.0203 14.3311 22.5934 14.758 22.5934 15.2848C22.5934 15.8115 23.0203 16.2384 23.5469 16.2384Z" fill="url(#paint24_linear_10832_19396)"/>
132
+ <path d="M20.5602 14.3984C20.0718 14.3984 19.6747 14.7957 19.6747 15.2841C19.6747 15.7726 20.0718 16.1698 20.5602 16.1698C21.0486 16.1698 21.4457 15.7726 21.4457 15.2841C21.4457 14.7957 21.0486 14.3984 20.5602 14.3984Z" fill="url(#paint25_linear_10832_19396)"/>
133
+ <path d="M41.467 19.7106C42.2183 19.7106 42.8284 19.1005 42.8284 18.349C42.8284 17.5975 42.2183 16.9873 41.467 16.9873C40.7156 16.9873 40.1056 17.5975 40.1056 18.349C40.1056 19.1005 40.7156 19.7106 41.467 19.7106Z" fill="url(#paint26_linear_10832_19396)"/>
134
+ <path d="M38.4803 19.6371C39.1941 19.6371 39.7737 19.0574 39.7737 18.3435C39.7737 17.6295 39.1941 17.0498 38.4803 17.0498C37.7665 17.0498 37.1869 17.6295 37.1869 18.3435C37.1869 19.0574 37.7665 19.6371 38.4803 19.6371Z" fill="url(#paint27_linear_10832_19396)"/>
135
+ <path d="M44.4524 22.8378C45.2414 22.8378 45.8818 22.1972 45.8818 21.4082C45.8818 20.6191 45.2414 19.9785 44.4524 19.9785C43.6635 19.9785 43.0231 20.6191 43.0231 21.4082C43.0231 22.1972 43.6635 22.8378 44.4524 22.8378Z" fill="url(#paint28_linear_10832_19396)"/>
136
+ <path d="M41.467 22.7702C42.2183 22.7702 42.8284 22.16 42.8284 21.4085C42.8284 20.657 42.2183 20.0469 41.467 20.0469C40.7156 20.0469 40.1056 20.657 40.1056 21.4085C40.1056 22.16 40.7156 22.7702 41.467 22.7702Z" fill="url(#paint29_linear_10832_19396)"/>
137
+ <path d="M48.9401 24.4732C48.9401 23.6466 48.2693 22.9756 47.4428 22.9756C46.6163 22.9756 45.9454 23.6466 45.9454 24.4732C45.9454 25.2999 46.6163 25.9709 47.4428 25.9709C48.2693 25.9709 48.9401 25.2999 48.9401 24.4732Z" fill="url(#paint30_linear_10832_19396)"/>
138
+ <path d="M44.4524 25.9013C45.2418 25.9013 45.8818 25.2612 45.8818 24.4716C45.8818 23.6821 45.2418 23.042 44.4524 23.042C43.663 23.042 43.0231 23.6821 43.0231 24.4716C43.0231 25.2612 43.663 25.9013 44.4524 25.9013Z" fill="url(#paint31_linear_10832_19396)"/>
139
+ <path d="M41.467 25.8317C42.2183 25.8317 42.8284 25.2216 42.8284 24.4701C42.8284 23.7185 42.2183 23.1084 41.467 23.1084C40.7156 23.1084 40.1056 23.7185 40.1056 24.4701C40.1056 25.2216 40.7156 25.8317 41.467 25.8317Z" fill="url(#paint32_linear_10832_19396)"/>
140
+ <path d="M35.4948 37.9499C36.1711 37.9499 36.7203 37.4006 36.7203 36.7242C36.7203 36.0479 36.1711 35.4985 35.4948 35.4985C34.8186 35.4985 34.2694 36.0479 34.2694 36.7242C34.2694 37.4006 34.8186 37.9499 35.4948 37.9499Z" fill="url(#paint33_linear_10832_19396)"/>
141
+ <path d="M26.5324 35.7021C25.9688 35.7021 25.5109 36.1602 25.5109 36.7238C25.5109 37.2875 25.9688 37.7455 26.5324 37.7455C27.0959 37.7455 27.5538 37.2875 27.5538 36.7238C27.5538 36.1602 27.0959 35.7021 26.5324 35.7021Z" fill="url(#paint34_linear_10832_19396)"/>
142
+ <path d="M23.5469 35.772C23.021 35.772 22.5934 36.1996 22.5934 36.7257C22.5934 37.2517 23.021 37.6794 23.5469 37.6794C24.0728 37.6794 24.5004 37.2517 24.5004 36.7257C24.5004 36.1996 24.0728 35.772 23.5469 35.772Z" fill="url(#paint35_linear_10832_19396)"/>
143
+ <path d="M17.5748 39.0724C18.0263 39.0724 18.3923 38.7063 18.3923 38.2547C18.3923 37.8031 18.0263 37.437 17.5748 37.437C17.1232 37.437 16.7572 37.8031 16.7572 38.2547C16.7572 38.7063 17.1232 39.0724 17.5748 39.0724Z" fill="url(#paint36_linear_10832_19396)"/>
144
+ <path d="M14.5844 39.0058C14.9984 39.0058 15.334 38.6701 15.334 38.2561C15.334 37.842 14.9984 37.5063 14.5844 37.5063C14.1704 37.5063 13.8349 37.842 13.8349 38.2561C13.8349 38.6701 14.1704 39.0058 14.5844 39.0058Z" fill="url(#paint37_linear_10832_19396)"/>
145
+ <path d="M38.4803 34.9535C39.1941 34.9535 39.7737 34.3738 39.7737 33.6599C39.7737 32.9459 39.1941 32.3662 38.4803 32.3662C37.7665 32.3662 37.1869 32.9459 37.1869 33.6599C37.1869 34.3738 37.7665 34.9535 38.4803 34.9535Z" fill="url(#paint38_linear_10832_19396)"/>
146
+ <path d="M35.4948 34.8869C36.1711 34.8869 36.7203 34.3376 36.7203 33.6612C36.7203 32.9849 36.1711 32.4355 35.4948 32.4355C34.8186 32.4355 34.2694 32.9849 34.2694 33.6612C34.2694 34.3376 34.8186 34.8869 35.4948 34.8869Z" fill="url(#paint39_linear_10832_19396)"/>
147
+ <path d="M41.467 31.9596C42.2183 31.9596 42.8284 31.3495 42.8284 30.598C42.8284 29.8465 42.2183 29.2363 41.467 29.2363C40.7156 29.2363 40.1056 29.8465 40.1056 30.598C40.1056 31.3495 40.7156 31.9596 41.467 31.9596Z" fill="url(#paint40_linear_10832_19396)"/>
148
+ <path d="M38.4803 31.892C39.1941 31.892 39.7737 31.3123 39.7737 30.5984C39.7737 29.8844 39.1941 29.3047 38.4803 29.3047C37.7665 29.3047 37.1869 29.8844 37.1869 30.5984C37.1869 31.3123 37.7665 31.892 38.4803 31.892Z" fill="url(#paint41_linear_10832_19396)"/>
149
+ <path d="M35.4948 31.8254C36.1711 31.8254 36.7203 31.276 36.7203 30.5997C36.7203 29.9233 36.1711 29.374 35.4948 29.374C34.8186 29.374 34.2694 29.9233 34.2694 30.5997C34.2694 31.276 34.8186 31.8254 35.4948 31.8254Z" fill="url(#paint42_linear_10832_19396)"/>
150
+ <path d="M44.4524 28.9648C45.2414 28.9648 45.8818 28.3242 45.8818 27.5351C45.8818 26.746 45.2414 26.1055 44.4524 26.1055C43.6635 26.1055 43.0231 26.746 43.0231 27.5351C43.0231 28.3242 43.6635 28.9648 44.4524 28.9648Z" fill="url(#paint43_linear_10832_19396)"/>
151
+ <path d="M41.467 28.8981C42.2183 28.8981 42.8284 28.288 42.8284 27.5365C42.8284 26.785 42.2183 26.1748 41.467 26.1748C40.7156 26.1748 40.1056 26.785 40.1056 27.5365C40.1056 28.288 40.7156 28.8981 41.467 28.8981Z" fill="url(#paint44_linear_10832_19396)"/>
152
+ <path d="M38.4803 28.8285C39.1941 28.8285 39.7737 28.2488 39.7737 27.5349C39.7737 26.8209 39.1941 26.2412 38.4803 26.2412C37.7665 26.2412 37.1869 26.8209 37.1869 27.5349C37.1869 28.2488 37.7665 28.8285 38.4803 28.8285Z" fill="url(#paint45_linear_10832_19396)"/>
153
+ <path d="M32.5082 69.2588C31.8695 69.2588 31.3507 69.7777 31.3507 70.4165C31.3507 71.0552 31.8695 71.5741 32.5082 71.5741C33.1468 71.5741 33.6656 71.0552 33.6656 70.4165C33.6656 69.7777 33.1468 69.2588 32.5082 69.2588Z" fill="url(#paint46_linear_10832_19396)"/>
154
+ <path d="M29.519 71.5065C30.1207 71.5065 30.6085 71.0186 30.6085 70.4168C30.6085 69.815 30.1207 69.3271 29.519 69.3271C28.9173 69.3271 28.4296 69.815 28.4296 70.4168C28.4296 71.0186 28.9173 71.5065 29.519 71.5065Z" fill="url(#paint47_linear_10832_19396)"/>
155
+ <path d="M26.5324 69.397C25.9688 69.397 25.5109 69.855 25.5109 70.4187C25.5109 70.9823 25.9688 71.4403 26.5324 71.4403C27.0959 71.4403 27.5538 70.9823 27.5538 70.4187C27.5538 69.855 27.0959 69.397 26.5324 69.397Z" fill="url(#paint48_linear_10832_19396)"/>
156
+ <path d="M23.5469 71.3703C24.0735 71.3703 24.5004 70.9433 24.5004 70.4166C24.5004 69.8899 24.0735 69.4629 23.5469 69.4629C23.0203 69.4629 22.5934 69.8899 22.5934 70.4166C22.5934 70.9433 23.0203 71.3703 23.5469 71.3703Z" fill="url(#paint49_linear_10832_19396)"/>
157
+ <path d="M20.5602 69.5298C20.0718 69.5298 19.6747 69.927 19.6747 70.4155C19.6747 70.904 20.0718 71.3012 20.5602 71.3012C21.0486 71.3012 21.4457 70.9058 21.4457 70.4155C21.4457 69.9252 21.0486 69.5298 20.5602 69.5298Z" fill="url(#paint50_linear_10832_19396)"/>
158
+ <path d="M17.5748 71.2345C18.0263 71.2345 18.3923 70.8684 18.3923 70.4168C18.3923 69.9652 18.0263 69.5991 17.5748 69.5991C17.1232 69.5991 16.7572 69.9652 16.7572 70.4168C16.7572 70.8684 17.1232 71.2345 17.5748 71.2345Z" fill="url(#paint51_linear_10832_19396)"/>
159
+ <path d="M14.5844 71.1659C14.9984 71.1659 15.334 70.8303 15.334 70.4162C15.334 70.0022 14.9984 69.6665 14.5844 69.6665C14.1704 69.6665 13.8349 70.0022 13.8349 70.4162C13.8349 70.8303 14.1704 71.1659 14.5844 71.1659Z" fill="url(#paint52_linear_10832_19396)"/>
160
+ <path d="M11.599 71.0998C11.9754 71.0998 12.2805 70.7946 12.2805 70.4181C12.2805 70.0415 11.9754 69.7363 11.599 69.7363C11.2225 69.7363 10.9174 70.0415 10.9174 70.4181C10.9174 70.7946 11.2225 71.0998 11.599 71.0998Z" fill="url(#paint53_linear_10832_19396)"/>
161
+ <path d="M8.61349 71.0317C8.95238 71.0317 9.22709 70.7569 9.22709 70.4179C9.22709 70.079 8.95238 69.8042 8.61349 69.8042C8.27461 69.8042 7.99989 70.079 7.99989 70.4179C7.99989 70.7569 8.27461 71.0317 8.61349 71.0317Z" fill="url(#paint54_linear_10832_19396)"/>
162
+ <path d="M35.4948 68.5793C36.1711 68.5793 36.7203 68.03 36.7203 67.3536C36.7203 66.6772 36.1711 66.1279 35.4948 66.1279C34.8186 66.1279 34.2694 66.6772 34.2694 67.3536C34.2694 68.03 34.8186 68.5793 35.4948 68.5793Z" fill="url(#paint55_linear_10832_19396)"/>
163
+ <path d="M32.5082 66.1978C31.8695 66.1978 31.3507 66.7167 31.3507 67.3554C31.3507 67.9942 31.8695 68.5131 32.5082 68.5131C33.1468 68.5131 33.6656 67.9942 33.6656 67.3554C33.6656 66.7167 33.1468 66.1978 32.5082 66.1978Z" fill="url(#paint56_linear_10832_19396)"/>
164
+ <path d="M29.519 68.4435C30.1207 68.4435 30.6085 67.9557 30.6085 67.3538C30.6085 66.752 30.1207 66.2642 29.519 66.2642C28.9173 66.2642 28.4296 66.752 28.4296 67.3538C28.4296 67.9557 28.9173 68.4435 29.519 68.4435Z" fill="url(#paint57_linear_10832_19396)"/>
165
+ <path d="M26.5324 66.3306C25.9688 66.3306 25.5109 66.7886 25.5109 67.3523C25.5109 67.9159 25.9688 68.3739 26.5324 68.3739C27.0959 68.3739 27.5538 67.9159 27.5538 67.3523C27.5538 66.7886 27.0959 66.3306 26.5324 66.3306Z" fill="url(#paint58_linear_10832_19396)"/>
166
+ <path d="M23.5469 66.3999C23.021 66.3999 22.5934 66.8275 22.5934 67.3536C22.5934 67.8796 23.021 68.3073 23.5469 68.3073C24.0728 68.3073 24.5004 67.8796 24.5004 67.3536C24.5004 66.8275 24.0728 66.3999 23.5469 66.3999Z" fill="url(#paint59_linear_10832_19396)"/>
167
+ <path d="M20.5602 66.4683C20.0718 66.4683 19.6747 66.8655 19.6747 67.354C19.6747 67.8424 20.0718 68.2397 20.5602 68.2397C21.0486 68.2397 21.4457 67.8442 21.4457 67.354C21.4457 66.8637 21.0486 66.4683 20.5602 66.4683Z" fill="url(#paint60_linear_10832_19396)"/>
168
+ <path d="M17.5748 66.5376C17.1239 66.5376 16.7572 66.9026 16.7572 67.3553C16.7572 67.808 17.1222 68.173 17.5748 68.173C18.0274 68.173 18.3923 67.808 18.3923 67.3553C18.3923 66.9026 18.0274 66.5376 17.5748 66.5376Z" fill="url(#paint61_linear_10832_19396)"/>
169
+ <path d="M14.5844 68.1034C14.9984 68.1034 15.334 67.7678 15.334 67.3537C15.334 66.9397 14.9984 66.604 14.5844 66.604C14.1704 66.604 13.8349 66.9397 13.8349 67.3537C13.8349 67.7678 14.1704 68.1034 14.5844 68.1034Z" fill="url(#paint62_linear_10832_19396)"/>
170
+ <path d="M38.4803 65.5854C39.1941 65.5854 39.7737 65.0056 39.7737 64.2917C39.7737 63.5778 39.1941 62.998 38.4803 62.998C37.7665 62.998 37.1869 63.5778 37.1869 64.2917C37.1869 65.0056 37.7665 65.5854 38.4803 65.5854Z" fill="url(#paint63_linear_10832_19396)"/>
171
+ <path d="M35.4948 65.5163C36.1711 65.5163 36.7203 64.967 36.7203 64.2906C36.7203 63.6143 36.1711 63.0649 35.4948 63.0649C34.8186 63.0649 34.2694 63.6143 34.2694 64.2906C34.2694 64.967 34.8186 65.5163 35.4948 65.5163Z" fill="url(#paint64_linear_10832_19396)"/>
172
+ <path d="M32.5082 63.1313C31.8695 63.1313 31.3507 63.6502 31.3507 64.289C31.3507 64.9278 31.8695 65.4467 32.5082 65.4467C33.1468 65.4467 33.6656 64.9278 33.6656 64.289C33.6656 63.6502 33.1468 63.1313 32.5082 63.1313Z" fill="url(#paint65_linear_10832_19396)"/>
173
+ <path d="M29.519 63.2007C28.918 63.2007 28.4296 63.6892 28.4296 64.2904C28.4296 64.8916 28.918 65.38 29.519 65.38C30.1201 65.38 30.6085 64.8916 30.6085 64.2904C30.6085 63.6892 30.1201 63.2007 29.519 63.2007Z" fill="url(#paint66_linear_10832_19396)"/>
174
+ <path d="M26.5324 63.269C25.9688 63.269 25.5109 63.7271 25.5109 64.2907C25.5109 64.8544 25.9688 65.3124 26.5324 65.3124C27.0959 65.3124 27.5538 64.8544 27.5538 64.2907C27.5538 63.7271 27.0959 63.269 26.5324 63.269Z" fill="url(#paint67_linear_10832_19396)"/>
175
+ <path d="M23.5469 65.2458C24.0735 65.2458 24.5004 64.8188 24.5004 64.2921C24.5004 63.7654 24.0735 63.3384 23.5469 63.3384C23.0203 63.3384 22.5934 63.7654 22.5934 64.2921C22.5934 64.8188 23.0203 65.2458 23.5469 65.2458Z" fill="url(#paint68_linear_10832_19396)"/>
176
+ <path d="M20.5602 63.4048C20.0718 63.4048 19.6747 63.8002 19.6747 64.2905C19.6747 64.7808 20.0718 65.1762 20.5602 65.1762C21.0486 65.1762 21.4457 64.779 21.4457 64.2905C21.4457 63.802 21.0486 63.4048 20.5602 63.4048Z" fill="url(#paint69_linear_10832_19396)"/>
177
+ <path d="M41.467 62.589C42.2183 62.589 42.8284 61.9789 42.8284 61.2274C42.8284 60.4759 42.2183 59.8657 41.467 59.8657C40.7156 59.8657 40.1056 60.4759 40.1056 61.2274C40.1056 61.9789 40.7156 62.589 41.467 62.589Z" fill="url(#paint70_linear_10832_19396)"/>
178
+ <path d="M38.4803 62.5195C39.1941 62.5195 39.7737 61.9397 39.7737 61.2258C39.7737 60.5119 39.1941 59.9321 38.4803 59.9321C37.7665 59.9321 37.1869 60.5119 37.1869 61.2258C37.1869 61.9397 37.7665 62.5195 38.4803 62.5195Z" fill="url(#paint71_linear_10832_19396)"/>
179
+ <path d="M44.4524 59.5922C45.2418 59.5922 45.8818 58.9521 45.8818 58.1626C45.8818 57.373 45.2418 56.7329 44.4524 56.7329C43.663 56.7329 43.0231 57.373 43.0231 58.1626C43.0231 58.9521 43.663 59.5922 44.4524 59.5922Z" fill="url(#paint72_linear_10832_19396)"/>
180
+ <path d="M41.467 59.5256C42.2183 59.5256 42.8284 58.9154 42.8284 58.1639C42.8284 57.4124 42.2183 56.8022 41.467 56.8022C40.7156 56.8022 40.1056 57.4124 40.1056 58.1639C40.1056 58.9154 40.7156 59.5256 41.467 59.5256Z" fill="url(#paint73_linear_10832_19396)"/>
181
+ <path d="M48.9401 55.1016C48.9401 54.275 48.2693 53.604 47.4428 53.604C46.6163 53.604 45.9454 54.275 45.9454 55.1016C45.9454 55.9283 46.6163 56.5993 47.4428 56.5993C48.2693 56.5993 48.9401 55.9283 48.9401 55.1016Z" fill="url(#paint74_linear_10832_19396)"/>
182
+ <path d="M44.4524 56.5336C45.2414 56.5336 45.8818 55.893 45.8818 55.104C45.8818 54.3149 45.2414 53.6743 44.4524 53.6743C43.6635 53.6743 43.0231 54.3149 43.0231 55.104C43.0231 55.893 43.6635 56.5336 44.4524 56.5336Z" fill="url(#paint75_linear_10832_19396)"/>
183
+ <path d="M41.467 56.464C42.2183 56.464 42.8284 55.8539 42.8284 55.1024C42.8284 54.3509 42.2183 53.7407 41.467 53.7407C40.7156 53.7407 40.1056 54.3509 40.1056 55.1024C40.1056 55.8539 40.7156 56.464 41.467 56.464Z" fill="url(#paint76_linear_10832_19396)"/>
184
+ <path d="M35.4948 44.0754C36.1711 44.0754 36.7203 43.526 36.7203 42.8497C36.7203 42.1733 36.1711 41.624 35.4948 41.624C34.8186 41.624 34.2694 42.1733 34.2694 42.8497C34.2694 43.526 34.8186 44.0754 35.4948 44.0754Z" fill="url(#paint77_linear_10832_19396)"/>
185
+ <path d="M26.5324 41.8276C25.9688 41.8276 25.5109 42.2857 25.5109 42.8493C25.5109 43.413 25.9688 43.871 26.5324 43.871C27.0959 43.871 27.5538 43.413 27.5538 42.8493C27.5538 42.2857 27.0959 41.8276 26.5324 41.8276Z" fill="url(#paint78_linear_10832_19396)"/>
186
+ <path d="M23.5469 43.8049C24.0735 43.8049 24.5004 43.3779 24.5004 42.8512C24.5004 42.3244 24.0735 41.8975 23.5469 41.8975C23.0203 41.8975 22.5934 42.3244 22.5934 42.8512C22.5934 43.3779 23.0203 43.8049 23.5469 43.8049Z" fill="url(#paint79_linear_10832_19396)"/>
187
+ <path d="M17.5748 40.502C17.1239 40.502 16.7572 40.867 16.7572 41.3197C16.7572 41.7724 17.1222 42.1374 17.5748 42.1374C18.0274 42.1374 18.3923 41.7724 18.3923 41.3197C18.3923 40.867 18.0274 40.502 17.5748 40.502Z" fill="url(#paint80_linear_10832_19396)"/>
188
+ <path d="M38.4803 47.2065C39.1941 47.2065 39.7737 46.6267 39.7737 45.9128C39.7737 45.1989 39.1941 44.6191 38.4803 44.6191C37.7665 44.6191 37.1869 45.1989 37.1869 45.9128C37.1869 46.6267 37.7665 47.2065 38.4803 47.2065Z" fill="url(#paint81_linear_10832_19396)"/>
189
+ <path d="M35.4948 47.1388C36.1711 47.1388 36.7203 46.5895 36.7203 45.9132C36.7203 45.2368 36.1711 44.6875 35.4948 44.6875C34.8186 44.6875 34.2694 45.2368 34.2694 45.9132C34.2694 46.5895 34.8186 47.1388 35.4948 47.1388Z" fill="url(#paint82_linear_10832_19396)"/>
190
+ <path d="M41.467 50.3395C42.2183 50.3395 42.8284 49.7294 42.8284 48.9779C42.8284 48.2264 42.2183 47.6162 41.467 47.6162C40.7156 47.6162 40.1056 48.2264 40.1056 48.9779C40.1056 49.7294 40.7156 50.3395 41.467 50.3395Z" fill="url(#paint83_linear_10832_19396)"/>
191
+ <path d="M38.4803 50.2695C39.1941 50.2695 39.7737 49.6897 39.7737 48.9758C39.7737 48.2619 39.1941 47.6821 38.4803 47.6821C37.7665 47.6821 37.1869 48.2619 37.1869 48.9758C37.1869 49.6897 37.7665 50.2695 38.4803 50.2695Z" fill="url(#paint84_linear_10832_19396)"/>
192
+ <path d="M35.4948 50.2004C36.1711 50.2004 36.7203 49.651 36.7203 48.9747C36.7203 48.2983 36.1711 47.749 35.4948 47.749C34.8186 47.749 34.2694 48.2983 34.2694 48.9747C34.2694 49.651 34.8186 50.2004 35.4948 50.2004Z" fill="url(#paint85_linear_10832_19396)"/>
193
+ <path d="M44.4524 53.4672C45.2418 53.4672 45.8818 52.8271 45.8818 52.0376C45.8818 51.248 45.2418 50.6079 44.4524 50.6079C43.663 50.6079 43.0231 51.248 43.0231 52.0376C43.0231 52.8271 43.663 53.4672 44.4524 53.4672Z" fill="url(#paint86_linear_10832_19396)"/>
194
+ <path d="M41.467 53.4006C42.2183 53.4006 42.8284 52.7904 42.8284 52.0389C42.8284 51.2874 42.2183 50.6772 41.467 50.6772C40.7156 50.6772 40.1056 51.2874 40.1056 52.0389C40.1056 52.7904 40.7156 53.4006 41.467 53.4006Z" fill="url(#paint87_linear_10832_19396)"/>
195
+ <path d="M38.4803 53.3329C39.1941 53.3329 39.7737 52.7532 39.7737 52.0393C39.7737 51.3253 39.1941 50.7456 38.4803 50.7456C37.7665 50.7456 37.1869 51.3253 37.1869 52.0393C37.1869 52.7532 37.7665 53.3329 38.4803 53.3329Z" fill="url(#paint88_linear_10832_19396)"/>
196
+ <path d="M32.5082 32.5039C31.8695 32.5039 31.3507 33.0228 31.3507 33.6616C31.3507 34.3004 31.8695 34.8193 32.5082 34.8193C33.1468 34.8193 33.6656 34.3004 33.6656 33.6616C33.6656 33.0228 33.1468 32.5039 32.5082 32.5039Z" fill="url(#paint89_linear_10832_19396)"/>
197
+ <path d="M32.5082 38.6284C31.8695 38.6284 31.3507 39.1473 31.3507 39.7861C31.3507 40.4249 31.8695 40.9438 32.5082 40.9438C33.1468 40.9438 33.6656 40.4249 33.6656 39.7861C33.6656 39.1473 33.1468 38.6284 32.5082 38.6284Z" fill="url(#paint90_linear_10832_19396)"/>
198
+ <path d="M32.5082 41.6899C31.8695 41.6899 31.3507 42.2088 31.3507 42.8476C31.3507 43.4864 31.8695 44.0053 32.5082 44.0053C33.1468 44.0053 33.6656 43.4864 33.6656 42.8476C33.6656 42.2088 33.1468 41.6899 32.5082 41.6899Z" fill="url(#paint91_linear_10832_19396)"/>
199
+ <path d="M32.5082 44.7563C31.8695 44.7563 31.3507 45.2752 31.3507 45.914C31.3507 46.5528 31.8695 47.0717 32.5082 47.0717C33.1468 47.0717 33.6656 46.5528 33.6656 45.914C33.6656 45.2752 33.1468 44.7563 32.5082 44.7563Z" fill="url(#paint92_linear_10832_19396)"/>
200
+ <path d="M32.5082 35.5654C31.8695 35.5654 31.3507 36.0843 31.3507 36.7231C31.3507 37.3619 31.8695 37.8808 32.5082 37.8808C33.1468 37.8808 33.6656 37.3619 33.6656 36.7231C33.6656 36.0843 33.1468 35.5654 32.5082 35.5654Z" fill="url(#paint93_linear_10832_19396)"/>
201
+ <path d="M29.519 34.1035C28.918 34.1035 28.4296 34.592 28.4296 35.1932C28.4296 35.7944 28.918 36.2829 29.519 36.2829C30.1201 36.2829 30.6085 35.7944 30.6085 35.1932C30.6085 34.592 30.1201 34.1035 29.519 34.1035Z" fill="url(#paint94_linear_10832_19396)"/>
202
+ <path d="M29.519 40.2295C28.918 40.2295 28.4296 40.718 28.4296 41.3192C28.4296 41.9204 28.918 42.4089 29.519 42.4089C30.1201 42.4089 30.6085 41.9204 30.6085 41.3192C30.6085 40.718 30.1201 40.2295 29.519 40.2295Z" fill="url(#paint95_linear_10832_19396)"/>
203
+ <path d="M29.519 43.2915C28.918 43.2915 28.4296 43.78 28.4296 44.3812C28.4296 44.9824 28.918 45.4709 29.519 45.4709C30.1201 45.4709 30.6085 44.9824 30.6085 44.3812C30.6085 43.78 30.1201 43.2915 29.519 43.2915Z" fill="url(#paint96_linear_10832_19396)"/>
204
+ <path d="M29.519 37.167C28.918 37.167 28.4296 37.6555 28.4296 38.2567C28.4296 38.4821 28.4976 38.6915 28.6156 38.865C28.8106 39.1549 29.1434 39.3446 29.519 39.3446C29.8947 39.3446 30.2257 39.1549 30.4224 38.865C30.5405 38.6915 30.6085 38.4821 30.6085 38.2567C30.6085 37.6555 30.1201 37.167 29.519 37.167Z" fill="url(#paint97_linear_10832_19396)"/>
205
+ <path d="M26.7381 38.7861C26.6719 38.7718 26.6021 38.7646 26.5324 38.7646C26.4626 38.7646 26.3928 38.7718 26.3266 38.7861C25.8615 38.881 25.5109 39.2925 25.5109 39.7863C25.5109 40.2802 25.8615 40.6917 26.3266 40.7866C26.3928 40.8009 26.4626 40.808 26.5324 40.808C26.6021 40.808 26.6719 40.8009 26.7381 40.7866C27.2032 40.6917 27.5538 40.2802 27.5538 39.7863C27.5538 39.2925 27.2032 38.881 26.7381 38.7861Z" fill="url(#paint98_linear_10832_19396)"/>
206
+ <path d="M24.08 38.9973C23.9279 38.8953 23.7437 38.8345 23.5469 38.8345C23.3501 38.8345 23.1659 38.8953 23.0138 38.9973C22.7598 39.1691 22.5934 39.4589 22.5934 39.7882C22.5934 40.0512 22.7007 40.2892 22.8725 40.4627C23.0442 40.6345 23.2839 40.7419 23.5469 40.7419C23.8099 40.7419 24.0478 40.6345 24.2213 40.4627C24.3931 40.291 24.5004 40.0512 24.5004 39.7882C24.5004 39.4589 24.334 39.1691 24.08 38.9973Z" fill="url(#paint99_linear_10832_19396)"/>
207
+ <path d="M20.5602 40.4326C20.0718 40.4326 19.6747 40.8281 19.6747 41.3183C19.6747 41.8086 20.0718 42.204 20.5602 42.204C21.0486 42.204 21.4457 41.8068 21.4457 41.3183C21.4457 40.8298 21.0486 40.4326 20.5602 40.4326Z" fill="url(#paint100_linear_10832_19396)"/>
208
+ <path d="M20.5633 37.3711C20.2574 37.3711 19.9891 37.5268 19.8298 37.7612C19.735 37.9025 19.6796 38.0725 19.6796 38.2568C19.6796 38.7453 20.0767 39.1425 20.5651 39.1425C21.0535 39.1425 21.4506 38.7471 21.4506 38.2568C21.4506 38.0743 21.3952 37.9025 21.3003 37.7612C21.1411 37.525 20.8728 37.3711 20.5669 37.3711H20.5633Z" fill="url(#paint101_linear_10832_19396)"/>
209
+ <path d="M12.2662 39.6501C12.2573 39.6053 12.243 39.5624 12.2269 39.523C12.1929 39.4407 12.1428 39.3674 12.0802 39.3065C11.9567 39.1831 11.7868 39.1079 11.599 39.1079C11.4111 39.1079 11.2412 39.1849 11.1177 39.3065C11.0569 39.3674 11.0068 39.4407 10.971 39.523C10.9532 39.5642 10.9406 39.6071 10.9317 39.6501C10.9227 39.6948 10.9174 39.7395 10.9174 39.7878C10.9174 39.8344 10.9227 39.8809 10.9317 39.9256C10.9406 39.9704 10.9549 40.0133 10.971 40.0527C11.0748 40.2978 11.3163 40.4678 11.599 40.4678C11.8816 40.4678 12.1231 40.296 12.2269 40.0527C12.2448 40.0115 12.2573 39.9686 12.2662 39.9256C12.2752 39.8809 12.2805 39.8362 12.2805 39.7878C12.2805 39.7413 12.2752 39.6948 12.2662 39.6501Z" fill="url(#paint102_linear_10832_19396)"/>
210
+ <path d="M8.61349 39.1748C8.27539 39.1748 7.99989 39.4486 7.99989 39.7885C7.99989 40.1267 8.2736 40.4023 8.61349 40.4023C8.95339 40.4023 9.22709 40.1285 9.22709 39.7885C9.22709 39.4504 8.95339 39.1748 8.61349 39.1748Z" fill="url(#paint103_linear_10832_19396)"/>
211
+ <path d="M14.5844 40.5703C14.1712 40.5703 13.8349 40.9049 13.8349 41.32C13.8349 41.7351 14.1694 42.0697 14.5844 42.0697C14.9994 42.0697 15.334 41.7351 15.334 41.32C15.334 40.9049 14.9994 40.5703 14.5844 40.5703Z" fill="url(#paint104_linear_10832_19396)"/>
212
+ <defs>
213
+ <linearGradient id="paint0_linear_10832_19396" x1="7.99764" y1="39.7869" x2="71.9965" y2="39.7869" gradientUnits="userSpaceOnUse">
214
+ <stop stop-color="#404040"/>
215
+ <stop offset="0.5" stop-color="#FF7F50"/>
216
+ <stop offset="1" stop-color="#F7BEA1"/>
217
+ </linearGradient>
218
+ <linearGradient id="paint1_linear_10832_19396" x1="7.99868" y1="39.7865" x2="71.9975" y2="39.7865" gradientUnits="userSpaceOnUse">
219
+ <stop stop-color="#404040"/>
220
+ <stop offset="0.5" stop-color="#FF7F50"/>
221
+ <stop offset="1" stop-color="#F7BEA1"/>
222
+ </linearGradient>
223
+ <linearGradient id="paint2_linear_10832_19396" x1="8.00165" y1="39.7869" x2="72.0005" y2="39.7869" gradientUnits="userSpaceOnUse">
224
+ <stop stop-color="#404040"/>
225
+ <stop offset="0.5" stop-color="#FF7F50"/>
226
+ <stop offset="1" stop-color="#F7BEA1"/>
227
+ </linearGradient>
228
+ <linearGradient id="paint3_linear_10832_19396" x1="7.99826" y1="39.7882" x2="71.9971" y2="39.7882" gradientUnits="userSpaceOnUse">
229
+ <stop stop-color="#404040"/>
230
+ <stop offset="0.5" stop-color="#FF7F50"/>
231
+ <stop offset="1" stop-color="#F7BEA1"/>
232
+ </linearGradient>
233
+ <linearGradient id="paint4_linear_10832_19396" x1="7.9991" y1="39.7866" x2="71.9979" y2="39.7866" gradientUnits="userSpaceOnUse">
234
+ <stop stop-color="#404040"/>
235
+ <stop offset="0.5" stop-color="#FF7F50"/>
236
+ <stop offset="1" stop-color="#F7BEA1"/>
237
+ </linearGradient>
238
+ <linearGradient id="paint5_linear_10832_19396" x1="7.99933" y1="39.785" x2="71.9982" y2="39.785" gradientUnits="userSpaceOnUse">
239
+ <stop stop-color="#404040"/>
240
+ <stop offset="0.5" stop-color="#FF7F50"/>
241
+ <stop offset="1" stop-color="#F7BEA1"/>
242
+ </linearGradient>
243
+ <linearGradient id="paint6_linear_10832_19396" x1="8.00017" y1="39.7874" x2="71.999" y2="39.7874" gradientUnits="userSpaceOnUse">
244
+ <stop stop-color="#404040"/>
245
+ <stop offset="0.5" stop-color="#FF7F50"/>
246
+ <stop offset="1" stop-color="#F7BEA1"/>
247
+ </linearGradient>
248
+ <linearGradient id="paint7_linear_10832_19396" x1="8.0022" y1="39.7867" x2="72.0011" y2="39.7867" gradientUnits="userSpaceOnUse">
249
+ <stop stop-color="#404040"/>
250
+ <stop offset="0.5" stop-color="#FF7F50"/>
251
+ <stop offset="1" stop-color="#F7BEA1"/>
252
+ </linearGradient>
253
+ <linearGradient id="paint8_linear_10832_19396" x1="7.99758" y1="39.7881" x2="71.9965" y2="39.7881" gradientUnits="userSpaceOnUse">
254
+ <stop stop-color="#404040"/>
255
+ <stop offset="0.5" stop-color="#FF7F50"/>
256
+ <stop offset="1" stop-color="#F7BEA1"/>
257
+ </linearGradient>
258
+ <linearGradient id="paint9_linear_10832_19396" x1="7.99964" y1="39.7865" x2="71.9984" y2="39.7865" gradientUnits="userSpaceOnUse">
259
+ <stop stop-color="#404040"/>
260
+ <stop offset="0.5" stop-color="#FF7F50"/>
261
+ <stop offset="1" stop-color="#F7BEA1"/>
262
+ </linearGradient>
263
+ <linearGradient id="paint10_linear_10832_19396" x1="8.00168" y1="39.7849" x2="72.0004" y2="39.7849" gradientUnits="userSpaceOnUse">
264
+ <stop stop-color="#404040"/>
265
+ <stop offset="0.5" stop-color="#FF7F50"/>
266
+ <stop offset="1" stop-color="#F7BEA1"/>
267
+ </linearGradient>
268
+ <linearGradient id="paint11_linear_10832_19396" x1="8.00081" y1="39.7857" x2="71.9997" y2="39.7857" gradientUnits="userSpaceOnUse">
269
+ <stop stop-color="#404040"/>
270
+ <stop offset="0.5" stop-color="#FF7F50"/>
271
+ <stop offset="1" stop-color="#F7BEA1"/>
272
+ </linearGradient>
273
+ <linearGradient id="paint12_linear_10832_19396" x1="8.00165" y1="39.7851" x2="72.0005" y2="39.7851" gradientUnits="userSpaceOnUse">
274
+ <stop stop-color="#404040"/>
275
+ <stop offset="0.5" stop-color="#FF7F50"/>
276
+ <stop offset="1" stop-color="#F7BEA1"/>
277
+ </linearGradient>
278
+ <linearGradient id="paint13_linear_10832_19396" x1="7.99826" y1="39.7874" x2="71.9971" y2="39.7874" gradientUnits="userSpaceOnUse">
279
+ <stop stop-color="#404040"/>
280
+ <stop offset="0.5" stop-color="#FF7F50"/>
281
+ <stop offset="1" stop-color="#F7BEA1"/>
282
+ </linearGradient>
283
+ <linearGradient id="paint14_linear_10832_19396" x1="7.9991" y1="39.7868" x2="71.9979" y2="39.7868" gradientUnits="userSpaceOnUse">
284
+ <stop stop-color="#404040"/>
285
+ <stop offset="0.5" stop-color="#FF7F50"/>
286
+ <stop offset="1" stop-color="#F7BEA1"/>
287
+ </linearGradient>
288
+ <linearGradient id="paint15_linear_10832_19396" x1="7.99933" y1="39.7882" x2="71.9982" y2="39.7882" gradientUnits="userSpaceOnUse">
289
+ <stop stop-color="#404040"/>
290
+ <stop offset="0.5" stop-color="#FF7F50"/>
291
+ <stop offset="1" stop-color="#F7BEA1"/>
292
+ </linearGradient>
293
+ <linearGradient id="paint16_linear_10832_19396" x1="8.00017" y1="39.7866" x2="71.999" y2="39.7866" gradientUnits="userSpaceOnUse">
294
+ <stop stop-color="#404040"/>
295
+ <stop offset="0.5" stop-color="#FF7F50"/>
296
+ <stop offset="1" stop-color="#F7BEA1"/>
297
+ </linearGradient>
298
+ <linearGradient id="paint17_linear_10832_19396" x1="8.0022" y1="39.785" x2="72.0011" y2="39.785" gradientUnits="userSpaceOnUse">
299
+ <stop stop-color="#404040"/>
300
+ <stop offset="0.5" stop-color="#FF7F50"/>
301
+ <stop offset="1" stop-color="#F7BEA1"/>
302
+ </linearGradient>
303
+ <linearGradient id="paint18_linear_10832_19396" x1="7.99758" y1="39.7873" x2="71.9965" y2="39.7873" gradientUnits="userSpaceOnUse">
304
+ <stop stop-color="#404040"/>
305
+ <stop offset="0.5" stop-color="#FF7F50"/>
306
+ <stop offset="1" stop-color="#F7BEA1"/>
307
+ </linearGradient>
308
+ <linearGradient id="paint19_linear_10832_19396" x1="7.99879" y1="39.7875" x2="71.9976" y2="39.7875" gradientUnits="userSpaceOnUse">
309
+ <stop stop-color="#404040"/>
310
+ <stop offset="0.5" stop-color="#FF7F50"/>
311
+ <stop offset="1" stop-color="#F7BEA1"/>
312
+ </linearGradient>
313
+ <linearGradient id="paint20_linear_10832_19396" x1="8.00081" y1="39.7869" x2="71.9997" y2="39.7869" gradientUnits="userSpaceOnUse">
314
+ <stop stop-color="#404040"/>
315
+ <stop offset="0.5" stop-color="#FF7F50"/>
316
+ <stop offset="1" stop-color="#F7BEA1"/>
317
+ </linearGradient>
318
+ <linearGradient id="paint21_linear_10832_19396" x1="8.00165" y1="39.7882" x2="72.0005" y2="39.7882" gradientUnits="userSpaceOnUse">
319
+ <stop stop-color="#404040"/>
320
+ <stop offset="0.5" stop-color="#FF7F50"/>
321
+ <stop offset="1" stop-color="#F7BEA1"/>
322
+ </linearGradient>
323
+ <linearGradient id="paint22_linear_10832_19396" x1="7.99826" y1="39.7867" x2="71.9971" y2="39.7867" gradientUnits="userSpaceOnUse">
324
+ <stop stop-color="#404040"/>
325
+ <stop offset="0.5" stop-color="#FF7F50"/>
326
+ <stop offset="1" stop-color="#F7BEA1"/>
327
+ </linearGradient>
328
+ <linearGradient id="paint23_linear_10832_19396" x1="7.9991" y1="39.7851" x2="71.9979" y2="39.7851" gradientUnits="userSpaceOnUse">
329
+ <stop stop-color="#404040"/>
330
+ <stop offset="0.5" stop-color="#FF7F50"/>
331
+ <stop offset="1" stop-color="#F7BEA1"/>
332
+ </linearGradient>
333
+ <linearGradient id="paint24_linear_10832_19396" x1="7.99933" y1="39.7874" x2="71.9982" y2="39.7874" gradientUnits="userSpaceOnUse">
334
+ <stop stop-color="#404040"/>
335
+ <stop offset="0.5" stop-color="#FF7F50"/>
336
+ <stop offset="1" stop-color="#F7BEA1"/>
337
+ </linearGradient>
338
+ <linearGradient id="paint25_linear_10832_19396" x1="8.00017" y1="39.7868" x2="71.999" y2="39.7868" gradientUnits="userSpaceOnUse">
339
+ <stop stop-color="#404040"/>
340
+ <stop offset="0.5" stop-color="#FF7F50"/>
341
+ <stop offset="1" stop-color="#F7BEA1"/>
342
+ </linearGradient>
343
+ <linearGradient id="paint26_linear_10832_19396" x1="7.99974" y1="39.7883" x2="71.9986" y2="39.7883" gradientUnits="userSpaceOnUse">
344
+ <stop stop-color="#404040"/>
345
+ <stop offset="0.5" stop-color="#FF7F50"/>
346
+ <stop offset="1" stop-color="#F7BEA1"/>
347
+ </linearGradient>
348
+ <linearGradient id="paint27_linear_10832_19396" x1="7.99879" y1="39.7846" x2="71.9976" y2="39.7846" gradientUnits="userSpaceOnUse">
349
+ <stop stop-color="#404040"/>
350
+ <stop offset="0.5" stop-color="#FF7F50"/>
351
+ <stop offset="1" stop-color="#F7BEA1"/>
352
+ </linearGradient>
353
+ <linearGradient id="paint28_linear_10832_19396" x1="7.99767" y1="39.786" x2="71.9966" y2="39.786" gradientUnits="userSpaceOnUse">
354
+ <stop stop-color="#404040"/>
355
+ <stop offset="0.5" stop-color="#FF7F50"/>
356
+ <stop offset="1" stop-color="#F7BEA1"/>
357
+ </linearGradient>
358
+ <linearGradient id="paint29_linear_10832_19396" x1="7.99974" y1="39.7864" x2="71.9986" y2="39.7864" gradientUnits="userSpaceOnUse">
359
+ <stop stop-color="#404040"/>
360
+ <stop offset="0.5" stop-color="#FF7F50"/>
361
+ <stop offset="1" stop-color="#F7BEA1"/>
362
+ </linearGradient>
363
+ <linearGradient id="paint30_linear_10832_19396" x1="8.00055" y1="39.7878" x2="71.9994" y2="39.7878" gradientUnits="userSpaceOnUse">
364
+ <stop stop-color="#404040"/>
365
+ <stop offset="0.5" stop-color="#FF7F50"/>
366
+ <stop offset="1" stop-color="#F7BEA1"/>
367
+ </linearGradient>
368
+ <linearGradient id="paint31_linear_10832_19396" x1="7.99767" y1="39.7862" x2="71.9966" y2="39.7862" gradientUnits="userSpaceOnUse">
369
+ <stop stop-color="#404040"/>
370
+ <stop offset="0.5" stop-color="#FF7F50"/>
371
+ <stop offset="1" stop-color="#F7BEA1"/>
372
+ </linearGradient>
373
+ <linearGradient id="paint32_linear_10832_19396" x1="7.99974" y1="39.7847" x2="71.9986" y2="39.7847" gradientUnits="userSpaceOnUse">
374
+ <stop stop-color="#404040"/>
375
+ <stop offset="0.5" stop-color="#FF7F50"/>
376
+ <stop offset="1" stop-color="#F7BEA1"/>
377
+ </linearGradient>
378
+ <linearGradient id="paint33_linear_10832_19396" x1="8.00081" y1="39.7875" x2="71.9997" y2="39.7875" gradientUnits="userSpaceOnUse">
379
+ <stop stop-color="#404040"/>
380
+ <stop offset="0.5" stop-color="#FF7F50"/>
381
+ <stop offset="1" stop-color="#F7BEA1"/>
382
+ </linearGradient>
383
+ <linearGradient id="paint34_linear_10832_19396" x1="7.9991" y1="39.7853" x2="71.9979" y2="39.7853" gradientUnits="userSpaceOnUse">
384
+ <stop stop-color="#404040"/>
385
+ <stop offset="0.5" stop-color="#FF7F50"/>
386
+ <stop offset="1" stop-color="#F7BEA1"/>
387
+ </linearGradient>
388
+ <linearGradient id="paint35_linear_10832_19396" x1="7.99933" y1="39.7872" x2="71.9982" y2="39.7872" gradientUnits="userSpaceOnUse">
389
+ <stop stop-color="#404040"/>
390
+ <stop offset="0.5" stop-color="#FF7F50"/>
391
+ <stop offset="1" stop-color="#F7BEA1"/>
392
+ </linearGradient>
393
+ <linearGradient id="paint36_linear_10832_19396" x1="8.0022" y1="39.7864" x2="72.0011" y2="39.7864" gradientUnits="userSpaceOnUse">
394
+ <stop stop-color="#404040"/>
395
+ <stop offset="0.5" stop-color="#FF7F50"/>
396
+ <stop offset="1" stop-color="#F7BEA1"/>
397
+ </linearGradient>
398
+ <linearGradient id="paint37_linear_10832_19396" x1="7.99758" y1="39.7877" x2="71.9965" y2="39.7877" gradientUnits="userSpaceOnUse">
399
+ <stop stop-color="#404040"/>
400
+ <stop offset="0.5" stop-color="#FF7F50"/>
401
+ <stop offset="1" stop-color="#F7BEA1"/>
402
+ </linearGradient>
403
+ <linearGradient id="paint38_linear_10832_19396" x1="7.99879" y1="39.7846" x2="71.9976" y2="39.7846" gradientUnits="userSpaceOnUse">
404
+ <stop stop-color="#404040"/>
405
+ <stop offset="0.5" stop-color="#FF7F50"/>
406
+ <stop offset="1" stop-color="#F7BEA1"/>
407
+ </linearGradient>
408
+ <linearGradient id="paint39_linear_10832_19396" x1="8.00081" y1="39.786" x2="71.9997" y2="39.786" gradientUnits="userSpaceOnUse">
409
+ <stop stop-color="#404040"/>
410
+ <stop offset="0.5" stop-color="#FF7F50"/>
411
+ <stop offset="1" stop-color="#F7BEA1"/>
412
+ </linearGradient>
413
+ <linearGradient id="paint40_linear_10832_19396" x1="7.99974" y1="39.786" x2="71.9986" y2="39.786" gradientUnits="userSpaceOnUse">
414
+ <stop stop-color="#404040"/>
415
+ <stop offset="0.5" stop-color="#FF7F50"/>
416
+ <stop offset="1" stop-color="#F7BEA1"/>
417
+ </linearGradient>
418
+ <linearGradient id="paint41_linear_10832_19396" x1="7.99879" y1="39.7864" x2="71.9976" y2="39.7864" gradientUnits="userSpaceOnUse">
419
+ <stop stop-color="#404040"/>
420
+ <stop offset="0.5" stop-color="#FF7F50"/>
421
+ <stop offset="1" stop-color="#F7BEA1"/>
422
+ </linearGradient>
423
+ <linearGradient id="paint42_linear_10832_19396" x1="8.00081" y1="39.7877" x2="71.9997" y2="39.7877" gradientUnits="userSpaceOnUse">
424
+ <stop stop-color="#404040"/>
425
+ <stop offset="0.5" stop-color="#FF7F50"/>
426
+ <stop offset="1" stop-color="#F7BEA1"/>
427
+ </linearGradient>
428
+ <linearGradient id="paint43_linear_10832_19396" x1="7.99767" y1="39.7864" x2="71.9966" y2="39.7864" gradientUnits="userSpaceOnUse">
429
+ <stop stop-color="#404040"/>
430
+ <stop offset="0.5" stop-color="#FF7F50"/>
431
+ <stop offset="1" stop-color="#F7BEA1"/>
432
+ </linearGradient>
433
+ <linearGradient id="paint44_linear_10832_19396" x1="7.99974" y1="39.7878" x2="71.9986" y2="39.7878" gradientUnits="userSpaceOnUse">
434
+ <stop stop-color="#404040"/>
435
+ <stop offset="0.5" stop-color="#FF7F50"/>
436
+ <stop offset="1" stop-color="#F7BEA1"/>
437
+ </linearGradient>
438
+ <linearGradient id="paint45_linear_10832_19396" x1="7.99879" y1="39.7862" x2="71.9976" y2="39.7862" gradientUnits="userSpaceOnUse">
439
+ <stop stop-color="#404040"/>
440
+ <stop offset="0.5" stop-color="#FF7F50"/>
441
+ <stop offset="1" stop-color="#F7BEA1"/>
442
+ </linearGradient>
443
+ <linearGradient id="paint46_linear_10832_19396" x1="8.00165" y1="39.7855" x2="72.0005" y2="39.7855" gradientUnits="userSpaceOnUse">
444
+ <stop stop-color="#404040"/>
445
+ <stop offset="0.5" stop-color="#FF7F50"/>
446
+ <stop offset="1" stop-color="#F7BEA1"/>
447
+ </linearGradient>
448
+ <linearGradient id="paint47_linear_10832_19396" x1="7.99826" y1="39.7859" x2="71.9971" y2="39.7859" gradientUnits="userSpaceOnUse">
449
+ <stop stop-color="#404040"/>
450
+ <stop offset="0.5" stop-color="#FF7F50"/>
451
+ <stop offset="1" stop-color="#F7BEA1"/>
452
+ </linearGradient>
453
+ <linearGradient id="paint48_linear_10832_19396" x1="7.9991" y1="39.7877" x2="71.9979" y2="39.7877" gradientUnits="userSpaceOnUse">
454
+ <stop stop-color="#404040"/>
455
+ <stop offset="0.5" stop-color="#FF7F50"/>
456
+ <stop offset="1" stop-color="#F7BEA1"/>
457
+ </linearGradient>
458
+ <linearGradient id="paint49_linear_10832_19396" x1="7.99933" y1="39.7856" x2="71.9982" y2="39.7856" gradientUnits="userSpaceOnUse">
459
+ <stop stop-color="#404040"/>
460
+ <stop offset="0.5" stop-color="#FF7F50"/>
461
+ <stop offset="1" stop-color="#F7BEA1"/>
462
+ </linearGradient>
463
+ <linearGradient id="paint50_linear_10832_19396" x1="8.00017" y1="39.7845" x2="71.999" y2="39.7845" gradientUnits="userSpaceOnUse">
464
+ <stop stop-color="#404040"/>
465
+ <stop offset="0.5" stop-color="#FF7F50"/>
466
+ <stop offset="1" stop-color="#F7BEA1"/>
467
+ </linearGradient>
468
+ <linearGradient id="paint51_linear_10832_19396" x1="8.0022" y1="39.7858" x2="72.0011" y2="39.7858" gradientUnits="userSpaceOnUse">
469
+ <stop stop-color="#404040"/>
470
+ <stop offset="0.5" stop-color="#FF7F50"/>
471
+ <stop offset="1" stop-color="#F7BEA1"/>
472
+ </linearGradient>
473
+ <linearGradient id="paint52_linear_10832_19396" x1="7.99758" y1="39.7852" x2="71.9965" y2="39.7852" gradientUnits="userSpaceOnUse">
474
+ <stop stop-color="#404040"/>
475
+ <stop offset="0.5" stop-color="#FF7F50"/>
476
+ <stop offset="1" stop-color="#F7BEA1"/>
477
+ </linearGradient>
478
+ <linearGradient id="paint53_linear_10832_19396" x1="7.99964" y1="39.7871" x2="71.9984" y2="39.7871" gradientUnits="userSpaceOnUse">
479
+ <stop stop-color="#404040"/>
480
+ <stop offset="0.5" stop-color="#FF7F50"/>
481
+ <stop offset="1" stop-color="#F7BEA1"/>
482
+ </linearGradient>
483
+ <linearGradient id="paint54_linear_10832_19396" x1="8.00168" y1="39.787" x2="72.0004" y2="39.787" gradientUnits="userSpaceOnUse">
484
+ <stop stop-color="#404040"/>
485
+ <stop offset="0.5" stop-color="#FF7F50"/>
486
+ <stop offset="1" stop-color="#F7BEA1"/>
487
+ </linearGradient>
488
+ <linearGradient id="paint55_linear_10832_19396" x1="8.00081" y1="39.7859" x2="71.9997" y2="39.7859" gradientUnits="userSpaceOnUse">
489
+ <stop stop-color="#404040"/>
490
+ <stop offset="0.5" stop-color="#FF7F50"/>
491
+ <stop offset="1" stop-color="#F7BEA1"/>
492
+ </linearGradient>
493
+ <linearGradient id="paint56_linear_10832_19396" x1="8.00165" y1="39.7877" x2="72.0005" y2="39.7877" gradientUnits="userSpaceOnUse">
494
+ <stop stop-color="#404040"/>
495
+ <stop offset="0.5" stop-color="#FF7F50"/>
496
+ <stop offset="1" stop-color="#F7BEA1"/>
497
+ </linearGradient>
498
+ <linearGradient id="paint57_linear_10832_19396" x1="7.99826" y1="39.7861" x2="71.9971" y2="39.7861" gradientUnits="userSpaceOnUse">
499
+ <stop stop-color="#404040"/>
500
+ <stop offset="0.5" stop-color="#FF7F50"/>
501
+ <stop offset="1" stop-color="#F7BEA1"/>
502
+ </linearGradient>
503
+ <linearGradient id="paint58_linear_10832_19396" x1="7.9991" y1="39.7846" x2="71.9979" y2="39.7846" gradientUnits="userSpaceOnUse">
504
+ <stop stop-color="#404040"/>
505
+ <stop offset="0.5" stop-color="#FF7F50"/>
506
+ <stop offset="1" stop-color="#F7BEA1"/>
507
+ </linearGradient>
508
+ <linearGradient id="paint59_linear_10832_19396" x1="7.99933" y1="39.786" x2="71.9982" y2="39.786" gradientUnits="userSpaceOnUse">
509
+ <stop stop-color="#404040"/>
510
+ <stop offset="0.5" stop-color="#FF7F50"/>
511
+ <stop offset="1" stop-color="#F7BEA1"/>
512
+ </linearGradient>
513
+ <linearGradient id="paint60_linear_10832_19396" x1="8.00017" y1="39.7862" x2="71.999" y2="39.7862" gradientUnits="userSpaceOnUse">
514
+ <stop stop-color="#404040"/>
515
+ <stop offset="0.5" stop-color="#FF7F50"/>
516
+ <stop offset="1" stop-color="#F7BEA1"/>
517
+ </linearGradient>
518
+ <linearGradient id="paint61_linear_10832_19396" x1="8.0022" y1="39.7876" x2="72.0011" y2="39.7876" gradientUnits="userSpaceOnUse">
519
+ <stop stop-color="#404040"/>
520
+ <stop offset="0.5" stop-color="#FF7F50"/>
521
+ <stop offset="1" stop-color="#F7BEA1"/>
522
+ </linearGradient>
523
+ <linearGradient id="paint62_linear_10832_19396" x1="7.99758" y1="39.786" x2="71.9965" y2="39.786" gradientUnits="userSpaceOnUse">
524
+ <stop stop-color="#404040"/>
525
+ <stop offset="0.5" stop-color="#FF7F50"/>
526
+ <stop offset="1" stop-color="#F7BEA1"/>
527
+ </linearGradient>
528
+ <linearGradient id="paint63_linear_10832_19396" x1="7.99879" y1="39.7873" x2="71.9976" y2="39.7873" gradientUnits="userSpaceOnUse">
529
+ <stop stop-color="#404040"/>
530
+ <stop offset="0.5" stop-color="#FF7F50"/>
531
+ <stop offset="1" stop-color="#F7BEA1"/>
532
+ </linearGradient>
533
+ <linearGradient id="paint64_linear_10832_19396" x1="8.00081" y1="39.7862" x2="71.9997" y2="39.7862" gradientUnits="userSpaceOnUse">
534
+ <stop stop-color="#404040"/>
535
+ <stop offset="0.5" stop-color="#FF7F50"/>
536
+ <stop offset="1" stop-color="#F7BEA1"/>
537
+ </linearGradient>
538
+ <linearGradient id="paint65_linear_10832_19396" x1="8.00165" y1="39.7846" x2="72.0005" y2="39.7846" gradientUnits="userSpaceOnUse">
539
+ <stop stop-color="#404040"/>
540
+ <stop offset="0.5" stop-color="#FF7F50"/>
541
+ <stop offset="1" stop-color="#F7BEA1"/>
542
+ </linearGradient>
543
+ <linearGradient id="paint66_linear_10832_19396" x1="7.99826" y1="39.7859" x2="71.9971" y2="39.7859" gradientUnits="userSpaceOnUse">
544
+ <stop stop-color="#404040"/>
545
+ <stop offset="0.5" stop-color="#FF7F50"/>
546
+ <stop offset="1" stop-color="#F7BEA1"/>
547
+ </linearGradient>
548
+ <linearGradient id="paint67_linear_10832_19396" x1="7.9991" y1="39.7863" x2="71.9979" y2="39.7863" gradientUnits="userSpaceOnUse">
549
+ <stop stop-color="#404040"/>
550
+ <stop offset="0.5" stop-color="#FF7F50"/>
551
+ <stop offset="1" stop-color="#F7BEA1"/>
552
+ </linearGradient>
553
+ <linearGradient id="paint68_linear_10832_19396" x1="7.99933" y1="39.7876" x2="71.9982" y2="39.7876" gradientUnits="userSpaceOnUse">
554
+ <stop stop-color="#404040"/>
555
+ <stop offset="0.5" stop-color="#FF7F50"/>
556
+ <stop offset="1" stop-color="#F7BEA1"/>
557
+ </linearGradient>
558
+ <linearGradient id="paint69_linear_10832_19396" x1="8.00017" y1="39.7861" x2="71.999" y2="39.7861" gradientUnits="userSpaceOnUse">
559
+ <stop stop-color="#404040"/>
560
+ <stop offset="0.5" stop-color="#FF7F50"/>
561
+ <stop offset="1" stop-color="#F7BEA1"/>
562
+ </linearGradient>
563
+ <linearGradient id="paint70_linear_10832_19396" x1="7.99974" y1="39.7862" x2="71.9986" y2="39.7862" gradientUnits="userSpaceOnUse">
564
+ <stop stop-color="#404040"/>
565
+ <stop offset="0.5" stop-color="#FF7F50"/>
566
+ <stop offset="1" stop-color="#F7BEA1"/>
567
+ </linearGradient>
568
+ <linearGradient id="paint71_linear_10832_19396" x1="7.99879" y1="39.7846" x2="71.9976" y2="39.7846" gradientUnits="userSpaceOnUse">
569
+ <stop stop-color="#404040"/>
570
+ <stop offset="0.5" stop-color="#FF7F50"/>
571
+ <stop offset="1" stop-color="#F7BEA1"/>
572
+ </linearGradient>
573
+ <linearGradient id="paint72_linear_10832_19396" x1="7.99767" y1="39.7847" x2="71.9966" y2="39.7847" gradientUnits="userSpaceOnUse">
574
+ <stop stop-color="#404040"/>
575
+ <stop offset="0.5" stop-color="#FF7F50"/>
576
+ <stop offset="1" stop-color="#F7BEA1"/>
577
+ </linearGradient>
578
+ <linearGradient id="paint73_linear_10832_19396" x1="7.99974" y1="39.786" x2="71.9986" y2="39.786" gradientUnits="userSpaceOnUse">
579
+ <stop stop-color="#404040"/>
580
+ <stop offset="0.5" stop-color="#FF7F50"/>
581
+ <stop offset="1" stop-color="#F7BEA1"/>
582
+ </linearGradient>
583
+ <linearGradient id="paint74_linear_10832_19396" x1="8.00055" y1="39.7871" x2="71.9994" y2="39.7871" gradientUnits="userSpaceOnUse">
584
+ <stop stop-color="#404040"/>
585
+ <stop offset="0.5" stop-color="#FF7F50"/>
586
+ <stop offset="1" stop-color="#F7BEA1"/>
587
+ </linearGradient>
588
+ <linearGradient id="paint75_linear_10832_19396" x1="7.99767" y1="39.7876" x2="71.9966" y2="39.7876" gradientUnits="userSpaceOnUse">
589
+ <stop stop-color="#404040"/>
590
+ <stop offset="0.5" stop-color="#FF7F50"/>
591
+ <stop offset="1" stop-color="#F7BEA1"/>
592
+ </linearGradient>
593
+ <linearGradient id="paint76_linear_10832_19396" x1="7.99974" y1="39.786" x2="71.9986" y2="39.786" gradientUnits="userSpaceOnUse">
594
+ <stop stop-color="#404040"/>
595
+ <stop offset="0.5" stop-color="#FF7F50"/>
596
+ <stop offset="1" stop-color="#F7BEA1"/>
597
+ </linearGradient>
598
+ <linearGradient id="paint77_linear_10832_19396" x1="8.00081" y1="39.7864" x2="71.9997" y2="39.7864" gradientUnits="userSpaceOnUse">
599
+ <stop stop-color="#404040"/>
600
+ <stop offset="0.5" stop-color="#FF7F50"/>
601
+ <stop offset="1" stop-color="#F7BEA1"/>
602
+ </linearGradient>
603
+ <linearGradient id="paint78_linear_10832_19396" x1="7.9991" y1="39.786" x2="71.9979" y2="39.786" gradientUnits="userSpaceOnUse">
604
+ <stop stop-color="#404040"/>
605
+ <stop offset="0.5" stop-color="#FF7F50"/>
606
+ <stop offset="1" stop-color="#F7BEA1"/>
607
+ </linearGradient>
608
+ <linearGradient id="paint79_linear_10832_19396" x1="7.99933" y1="39.7879" x2="71.9982" y2="39.7879" gradientUnits="userSpaceOnUse">
609
+ <stop stop-color="#404040"/>
610
+ <stop offset="0.5" stop-color="#FF7F50"/>
611
+ <stop offset="1" stop-color="#F7BEA1"/>
612
+ </linearGradient>
613
+ <linearGradient id="paint80_linear_10832_19396" x1="8.0022" y1="39.7862" x2="72.0011" y2="39.7862" gradientUnits="userSpaceOnUse">
614
+ <stop stop-color="#404040"/>
615
+ <stop offset="0.5" stop-color="#FF7F50"/>
616
+ <stop offset="1" stop-color="#F7BEA1"/>
617
+ </linearGradient>
618
+ <linearGradient id="paint81_linear_10832_19396" x1="7.99879" y1="39.7862" x2="71.9976" y2="39.7862" gradientUnits="userSpaceOnUse">
619
+ <stop stop-color="#404040"/>
620
+ <stop offset="0.5" stop-color="#FF7F50"/>
621
+ <stop offset="1" stop-color="#F7BEA1"/>
622
+ </linearGradient>
623
+ <linearGradient id="paint82_linear_10832_19396" x1="8.00081" y1="39.7866" x2="71.9997" y2="39.7866" gradientUnits="userSpaceOnUse">
624
+ <stop stop-color="#404040"/>
625
+ <stop offset="0.5" stop-color="#FF7F50"/>
626
+ <stop offset="1" stop-color="#F7BEA1"/>
627
+ </linearGradient>
628
+ <linearGradient id="paint83_linear_10832_19396" x1="7.99974" y1="39.788" x2="71.9986" y2="39.788" gradientUnits="userSpaceOnUse">
629
+ <stop stop-color="#404040"/>
630
+ <stop offset="0.5" stop-color="#FF7F50"/>
631
+ <stop offset="1" stop-color="#F7BEA1"/>
632
+ </linearGradient>
633
+ <linearGradient id="paint84_linear_10832_19396" x1="7.99879" y1="39.786" x2="71.9976" y2="39.786" gradientUnits="userSpaceOnUse">
634
+ <stop stop-color="#404040"/>
635
+ <stop offset="0.5" stop-color="#FF7F50"/>
636
+ <stop offset="1" stop-color="#F7BEA1"/>
637
+ </linearGradient>
638
+ <linearGradient id="paint85_linear_10832_19396" x1="8.00081" y1="39.7849" x2="71.9997" y2="39.7849" gradientUnits="userSpaceOnUse">
639
+ <stop stop-color="#404040"/>
640
+ <stop offset="0.5" stop-color="#FF7F50"/>
641
+ <stop offset="1" stop-color="#F7BEA1"/>
642
+ </linearGradient>
643
+ <linearGradient id="paint86_linear_10832_19396" x1="7.99767" y1="39.7845" x2="71.9966" y2="39.7845" gradientUnits="userSpaceOnUse">
644
+ <stop stop-color="#404040"/>
645
+ <stop offset="0.5" stop-color="#FF7F50"/>
646
+ <stop offset="1" stop-color="#F7BEA1"/>
647
+ </linearGradient>
648
+ <linearGradient id="paint87_linear_10832_19396" x1="7.99974" y1="39.7858" x2="71.9986" y2="39.7858" gradientUnits="userSpaceOnUse">
649
+ <stop stop-color="#404040"/>
650
+ <stop offset="0.5" stop-color="#FF7F50"/>
651
+ <stop offset="1" stop-color="#F7BEA1"/>
652
+ </linearGradient>
653
+ <linearGradient id="paint88_linear_10832_19396" x1="7.99879" y1="39.7862" x2="71.9976" y2="39.7862" gradientUnits="userSpaceOnUse">
654
+ <stop stop-color="#404040"/>
655
+ <stop offset="0.5" stop-color="#FF7F50"/>
656
+ <stop offset="1" stop-color="#F7BEA1"/>
657
+ </linearGradient>
658
+ <linearGradient id="paint89_linear_10832_19396" x1="8.00165" y1="39.7864" x2="72.0005" y2="39.7864" gradientUnits="userSpaceOnUse">
659
+ <stop stop-color="#404040"/>
660
+ <stop offset="0.5" stop-color="#FF7F50"/>
661
+ <stop offset="1" stop-color="#F7BEA1"/>
662
+ </linearGradient>
663
+ <linearGradient id="paint90_linear_10832_19396" x1="8.00165" y1="39.7861" x2="72.0005" y2="39.7861" gradientUnits="userSpaceOnUse">
664
+ <stop stop-color="#404040"/>
665
+ <stop offset="0.5" stop-color="#FF7F50"/>
666
+ <stop offset="1" stop-color="#F7BEA1"/>
667
+ </linearGradient>
668
+ <linearGradient id="paint91_linear_10832_19396" x1="8.00165" y1="39.7843" x2="72.0005" y2="39.7843" gradientUnits="userSpaceOnUse">
669
+ <stop stop-color="#404040"/>
670
+ <stop offset="0.5" stop-color="#FF7F50"/>
671
+ <stop offset="1" stop-color="#F7BEA1"/>
672
+ </linearGradient>
673
+ <linearGradient id="paint92_linear_10832_19396" x1="8.00165" y1="39.7875" x2="72.0005" y2="39.7875" gradientUnits="userSpaceOnUse">
674
+ <stop stop-color="#404040"/>
675
+ <stop offset="0.5" stop-color="#FF7F50"/>
676
+ <stop offset="1" stop-color="#F7BEA1"/>
677
+ </linearGradient>
678
+ <linearGradient id="paint93_linear_10832_19396" x1="8.00165" y1="39.7864" x2="72.0005" y2="39.7864" gradientUnits="userSpaceOnUse">
679
+ <stop stop-color="#404040"/>
680
+ <stop offset="0.5" stop-color="#FF7F50"/>
681
+ <stop offset="1" stop-color="#F7BEA1"/>
682
+ </linearGradient>
683
+ <linearGradient id="paint94_linear_10832_19396" x1="7.99826" y1="39.7863" x2="71.9971" y2="39.7863" gradientUnits="userSpaceOnUse">
684
+ <stop stop-color="#404040"/>
685
+ <stop offset="0.5" stop-color="#FF7F50"/>
686
+ <stop offset="1" stop-color="#F7BEA1"/>
687
+ </linearGradient>
688
+ <linearGradient id="paint95_linear_10832_19396" x1="7.99826" y1="39.7875" x2="71.9971" y2="39.7875" gradientUnits="userSpaceOnUse">
689
+ <stop stop-color="#404040"/>
690
+ <stop offset="0.5" stop-color="#FF7F50"/>
691
+ <stop offset="1" stop-color="#F7BEA1"/>
692
+ </linearGradient>
693
+ <linearGradient id="paint96_linear_10832_19396" x1="7.99826" y1="39.7863" x2="71.9971" y2="39.7863" gradientUnits="userSpaceOnUse">
694
+ <stop stop-color="#404040"/>
695
+ <stop offset="0.5" stop-color="#FF7F50"/>
696
+ <stop offset="1" stop-color="#F7BEA1"/>
697
+ </linearGradient>
698
+ <linearGradient id="paint97_linear_10832_19396" x1="7.99826" y1="39.7883" x2="71.9971" y2="39.7883" gradientUnits="userSpaceOnUse">
699
+ <stop stop-color="#404040"/>
700
+ <stop offset="0.5" stop-color="#FF7F50"/>
701
+ <stop offset="1" stop-color="#F7BEA1"/>
702
+ </linearGradient>
703
+ <linearGradient id="paint98_linear_10832_19396" x1="7.9991" y1="39.7863" x2="71.9979" y2="39.7863" gradientUnits="userSpaceOnUse">
704
+ <stop stop-color="#404040"/>
705
+ <stop offset="0.5" stop-color="#FF7F50"/>
706
+ <stop offset="1" stop-color="#F7BEA1"/>
707
+ </linearGradient>
708
+ <linearGradient id="paint99_linear_10832_19396" x1="8.00112" y1="39.7864" x2="72" y2="39.7864" gradientUnits="userSpaceOnUse">
709
+ <stop stop-color="#404040"/>
710
+ <stop offset="0.5" stop-color="#FF7F50"/>
711
+ <stop offset="1" stop-color="#F7BEA1"/>
712
+ </linearGradient>
713
+ <linearGradient id="paint100_linear_10832_19396" x1="8.00017" y1="39.7867" x2="71.999" y2="39.7867" gradientUnits="userSpaceOnUse">
714
+ <stop stop-color="#404040"/>
715
+ <stop offset="0.5" stop-color="#FF7F50"/>
716
+ <stop offset="1" stop-color="#F7BEA1"/>
717
+ </linearGradient>
718
+ <linearGradient id="paint101_linear_10832_19396" x1="8.00326" y1="39.7866" x2="72.0021" y2="39.7866" gradientUnits="userSpaceOnUse">
719
+ <stop stop-color="#404040"/>
720
+ <stop offset="0.5" stop-color="#FF7F50"/>
721
+ <stop offset="1" stop-color="#F7BEA1"/>
722
+ </linearGradient>
723
+ <linearGradient id="paint102_linear_10832_19396" x1="7.99964" y1="39.7861" x2="71.9984" y2="39.7861" gradientUnits="userSpaceOnUse">
724
+ <stop stop-color="#404040"/>
725
+ <stop offset="0.5" stop-color="#FF7F50"/>
726
+ <stop offset="1" stop-color="#F7BEA1"/>
727
+ </linearGradient>
728
+ <linearGradient id="paint103_linear_10832_19396" x1="8.00168" y1="39.7867" x2="72.0004" y2="39.7867" gradientUnits="userSpaceOnUse">
729
+ <stop stop-color="#404040"/>
730
+ <stop offset="0.5" stop-color="#FF7F50"/>
731
+ <stop offset="1" stop-color="#F7BEA1"/>
732
+ </linearGradient>
733
+ <linearGradient id="paint104_linear_10832_19396" x1="7.99758" y1="39.7866" x2="71.9965" y2="39.7866" gradientUnits="userSpaceOnUse">
734
+ <stop stop-color="#404040"/>
735
+ <stop offset="0.5" stop-color="#FF7F50"/>
736
+ <stop offset="1" stop-color="#F7BEA1"/>
737
+ </linearGradient>
738
+ </defs>
739
+ </svg>