@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.
- package/README.md +213 -0
- package/bin/hermes-webui.mjs +588 -0
- package/package.json +25 -0
- package/scripts/sync-vendor.mjs +74 -0
- package/templates/launchd/com.bitseek.hermes-webui.plist +21 -0
- package/templates/systemd/hermes-webui.service +13 -0
- package/templates/windows/hermes-webui-task.ps1 +3 -0
- package/vendor/agent-frontend-shell/.bitseek-source.json +6 -0
- package/vendor/agent-frontend-shell/.dockerignore +7 -0
- package/vendor/agent-frontend-shell/.env.docker.example +89 -0
- package/vendor/agent-frontend-shell/.env.example +34 -0
- package/vendor/agent-frontend-shell/.github/FUNDING.yml +3 -0
- package/vendor/agent-frontend-shell/.github/workflows/browser-smoke.yml +42 -0
- package/vendor/agent-frontend-shell/.github/workflows/docker-smoke.yml +233 -0
- package/vendor/agent-frontend-shell/.github/workflows/native-windows-startup.yml +132 -0
- package/vendor/agent-frontend-shell/.github/workflows/release.yml +57 -0
- package/vendor/agent-frontend-shell/.github/workflows/tests.yml +88 -0
- package/vendor/agent-frontend-shell/.vscode/launch.json +59 -0
- package/vendor/agent-frontend-shell/.vscode/settings.json +13 -0
- package/vendor/agent-frontend-shell/AGENTS.md +80 -0
- package/vendor/agent-frontend-shell/ARCHITECTURE.md +1658 -0
- package/vendor/agent-frontend-shell/BUGS.md +52 -0
- package/vendor/agent-frontend-shell/CHANGELOG.md +7295 -0
- package/vendor/agent-frontend-shell/CONTRIBUTING.md +205 -0
- package/vendor/agent-frontend-shell/CONTRIBUTORS.md +107 -0
- package/vendor/agent-frontend-shell/DESIGN.md +173 -0
- package/vendor/agent-frontend-shell/Dockerfile +91 -0
- package/vendor/agent-frontend-shell/LICENSE +21 -0
- package/vendor/agent-frontend-shell/README-CUSTOM.md +76 -0
- package/vendor/agent-frontend-shell/README.md +705 -0
- package/vendor/agent-frontend-shell/ROADMAP.md +351 -0
- package/vendor/agent-frontend-shell/SPRINTS.md +147 -0
- package/vendor/agent-frontend-shell/TESTING.md +1932 -0
- package/vendor/agent-frontend-shell/THEMES.md +170 -0
- package/vendor/agent-frontend-shell/api/__init__.py +1 -0
- package/vendor/agent-frontend-shell/api/agent_health.py +392 -0
- package/vendor/agent-frontend-shell/api/agent_sessions.py +782 -0
- package/vendor/agent-frontend-shell/api/auth.py +592 -0
- package/vendor/agent-frontend-shell/api/background.py +87 -0
- package/vendor/agent-frontend-shell/api/clarify.py +238 -0
- package/vendor/agent-frontend-shell/api/commands.py +124 -0
- package/vendor/agent-frontend-shell/api/compression_anchor.py +134 -0
- package/vendor/agent-frontend-shell/api/config.py +5178 -0
- package/vendor/agent-frontend-shell/api/dashboard_probe.py +255 -0
- package/vendor/agent-frontend-shell/api/extensions.py +253 -0
- package/vendor/agent-frontend-shell/api/gateway_chat.py +435 -0
- package/vendor/agent-frontend-shell/api/gateway_watcher.py +230 -0
- package/vendor/agent-frontend-shell/api/goals.py +608 -0
- package/vendor/agent-frontend-shell/api/helpers.py +474 -0
- package/vendor/agent-frontend-shell/api/kanban_bridge.py +1255 -0
- package/vendor/agent-frontend-shell/api/metering.py +194 -0
- package/vendor/agent-frontend-shell/api/models.py +4210 -0
- package/vendor/agent-frontend-shell/api/oauth.py +770 -0
- package/vendor/agent-frontend-shell/api/onboarding.py +1046 -0
- package/vendor/agent-frontend-shell/api/passkeys.py +365 -0
- package/vendor/agent-frontend-shell/api/profiles.py +1499 -0
- package/vendor/agent-frontend-shell/api/providers.py +2175 -0
- package/vendor/agent-frontend-shell/api/request_diagnostics.py +160 -0
- package/vendor/agent-frontend-shell/api/rollback.py +320 -0
- package/vendor/agent-frontend-shell/api/routes.py +13990 -0
- package/vendor/agent-frontend-shell/api/run_journal.py +284 -0
- package/vendor/agent-frontend-shell/api/runner_client.py +156 -0
- package/vendor/agent-frontend-shell/api/runtime_adapter.py +431 -0
- package/vendor/agent-frontend-shell/api/session_discoverability.py +640 -0
- package/vendor/agent-frontend-shell/api/session_events.py +45 -0
- package/vendor/agent-frontend-shell/api/session_lifecycle.py +208 -0
- package/vendor/agent-frontend-shell/api/session_ops.py +207 -0
- package/vendor/agent-frontend-shell/api/session_recovery.py +655 -0
- package/vendor/agent-frontend-shell/api/skill_usage.py +32 -0
- package/vendor/agent-frontend-shell/api/startup.py +128 -0
- package/vendor/agent-frontend-shell/api/state_sync.py +187 -0
- package/vendor/agent-frontend-shell/api/streaming.py +7048 -0
- package/vendor/agent-frontend-shell/api/system_health.py +167 -0
- package/vendor/agent-frontend-shell/api/terminal.py +410 -0
- package/vendor/agent-frontend-shell/api/turn_journal.py +214 -0
- package/vendor/agent-frontend-shell/api/updates.py +1261 -0
- package/vendor/agent-frontend-shell/api/upload.py +322 -0
- package/vendor/agent-frontend-shell/api/usage.py +26 -0
- package/vendor/agent-frontend-shell/api/workspace.py +867 -0
- package/vendor/agent-frontend-shell/api/workspace_git.py +1261 -0
- package/vendor/agent-frontend-shell/api/worktrees.py +357 -0
- package/vendor/agent-frontend-shell/bootstrap.py +492 -0
- package/vendor/agent-frontend-shell/ctl.sh +427 -0
- package/vendor/agent-frontend-shell/docker-compose.custom.yml +26 -0
- package/vendor/agent-frontend-shell/docker-compose.three-container.yml +168 -0
- package/vendor/agent-frontend-shell/docker-compose.two-container.yml +147 -0
- package/vendor/agent-frontend-shell/docker-compose.yml +57 -0
- package/vendor/agent-frontend-shell/docker_init.bash +459 -0
- package/vendor/agent-frontend-shell/docs/CONTRACTS.md +207 -0
- package/vendor/agent-frontend-shell/docs/EXTENSIONS.md +212 -0
- package/vendor/agent-frontend-shell/docs/ISSUES.md +23 -0
- package/vendor/agent-frontend-shell/docs/UIUX-GUIDE.md +196 -0
- package/vendor/agent-frontend-shell/docs/advanced-chat-setup.md +83 -0
- package/vendor/agent-frontend-shell/docs/docker.md +337 -0
- package/vendor/agent-frontend-shell/docs/onboarding-agent-checklist.md +207 -0
- package/vendor/agent-frontend-shell/docs/onboarding.md +202 -0
- package/vendor/agent-frontend-shell/docs/remote-access.md +75 -0
- package/vendor/agent-frontend-shell/docs/rfcs/README.md +53 -0
- package/vendor/agent-frontend-shell/docs/rfcs/agent-source-boundary.md +70 -0
- package/vendor/agent-frontend-shell/docs/rfcs/canonical-session-resolution.md +124 -0
- package/vendor/agent-frontend-shell/docs/rfcs/hermes-run-adapter-contract.md +1079 -0
- package/vendor/agent-frontend-shell/docs/rfcs/turn-journal.md +195 -0
- package/vendor/agent-frontend-shell/docs/rfcs/webui-run-state-consistency-contract.md +157 -0
- package/vendor/agent-frontend-shell/docs/supervisor.md +280 -0
- package/vendor/agent-frontend-shell/docs/troubleshooting.md +132 -0
- package/vendor/agent-frontend-shell/docs/ui-ux/index.html +863 -0
- package/vendor/agent-frontend-shell/docs/ui-ux/two-stage-proposal.html +768 -0
- package/vendor/agent-frontend-shell/docs/why-hermes.md +489 -0
- package/vendor/agent-frontend-shell/docs/workspace-git.md +92 -0
- package/vendor/agent-frontend-shell/docs/wsl-autostart.md +126 -0
- package/vendor/agent-frontend-shell/eslint.runtime-guard.config.mjs +35 -0
- package/vendor/agent-frontend-shell/extensions/bitseek-design-system.md +330 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/apple-touch-icon.png +0 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/empty-logo.svg +739 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/favicon-192.png +0 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/favicon-32.png +0 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/favicon-512.png +0 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/favicon-512.svg +745 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/favicon.ico +0 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/favicon.svg +745 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/titlebar-icon-v2.svg +751 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/titlebar-icon-v3.svg +739 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/titlebar-icon.svg +745 -0
- package/vendor/agent-frontend-shell/extensions/branding/branding.js +112 -0
- package/vendor/agent-frontend-shell/extensions/branding/config.json +14 -0
- package/vendor/agent-frontend-shell/extensions/branding/manifest.json +53 -0
- package/vendor/agent-frontend-shell/extensions/index.js +67 -0
- package/vendor/agent-frontend-shell/extensions/loader/hermes-loader.js +77 -0
- package/vendor/agent-frontend-shell/extensions/manifest.json +16 -0
- package/vendor/agent-frontend-shell/extensions/pages/ai-teammates/page.css +333 -0
- package/vendor/agent-frontend-shell/extensions/pages/ai-teammates/page.js +487 -0
- package/vendor/agent-frontend-shell/extensions/pages/manifest.json +6 -0
- package/vendor/agent-frontend-shell/extensions/pages/registry.css +56 -0
- package/vendor/agent-frontend-shell/extensions/pages/registry.js +302 -0
- package/vendor/agent-frontend-shell/extensions/themes/bitseek/index.css +93 -0
- package/vendor/agent-frontend-shell/extensions/themes/bitseek/index.js +98 -0
- package/vendor/agent-frontend-shell/install.sh +63 -0
- package/vendor/agent-frontend-shell/mcp_server.py +567 -0
- package/vendor/agent-frontend-shell/package.json +12 -0
- package/vendor/agent-frontend-shell/pyproject.toml +56 -0
- package/vendor/agent-frontend-shell/pytest.ini +3 -0
- package/vendor/agent-frontend-shell/requirements.txt +5 -0
- package/vendor/agent-frontend-shell/server.py +624 -0
- package/vendor/agent-frontend-shell/start.ps1 +210 -0
- package/vendor/agent-frontend-shell/start.sh +65 -0
- package/vendor/agent-frontend-shell/static/apple-touch-icon.png +0 -0
- package/vendor/agent-frontend-shell/static/boot.js +1990 -0
- package/vendor/agent-frontend-shell/static/commands.js +1402 -0
- package/vendor/agent-frontend-shell/static/favicon-192.png +0 -0
- package/vendor/agent-frontend-shell/static/favicon-32.png +0 -0
- package/vendor/agent-frontend-shell/static/favicon-512.png +0 -0
- package/vendor/agent-frontend-shell/static/favicon-512.svg +18 -0
- package/vendor/agent-frontend-shell/static/favicon.ico +0 -0
- package/vendor/agent-frontend-shell/static/favicon.svg +20 -0
- package/vendor/agent-frontend-shell/static/i18n.js +15389 -0
- package/vendor/agent-frontend-shell/static/icons.js +92 -0
- package/vendor/agent-frontend-shell/static/index.html +1506 -0
- package/vendor/agent-frontend-shell/static/login.js +177 -0
- package/vendor/agent-frontend-shell/static/manifest.json +53 -0
- package/vendor/agent-frontend-shell/static/messages.js +3521 -0
- package/vendor/agent-frontend-shell/static/onboarding.js +800 -0
- package/vendor/agent-frontend-shell/static/panels.js +7995 -0
- package/vendor/agent-frontend-shell/static/pwa-startup.js +83 -0
- package/vendor/agent-frontend-shell/static/sessions.js +5165 -0
- package/vendor/agent-frontend-shell/static/style.css +4774 -0
- package/vendor/agent-frontend-shell/static/sw.js +173 -0
- package/vendor/agent-frontend-shell/static/terminal.js +632 -0
- package/vendor/agent-frontend-shell/static/ui.js +8997 -0
- package/vendor/agent-frontend-shell/static/vendor/js-yaml/4.1.0/js-yaml.min.js +2 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_AMS-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_AMS-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_AMS-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Bold.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Bold.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Bold.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Bold.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Bold.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Bold.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Bold.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-BoldItalic.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-BoldItalic.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-BoldItalic.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Italic.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Italic.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Italic.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-BoldItalic.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-BoldItalic.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-Italic.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-Italic.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-Italic.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Bold.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Bold.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Italic.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Italic.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Script-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Script-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Script-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size1-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size1-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size1-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size2-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size2-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size2-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size3-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size3-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size3-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size4-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size4-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size4-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Typewriter-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Typewriter-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/katex.min.css +1 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/katex.min.js +1 -0
- package/vendor/agent-frontend-shell/static/vendor/smd.min.js +29 -0
- package/vendor/agent-frontend-shell/static/workspace.js +680 -0
|
@@ -0,0 +1,745 @@
|
|
|
1
|
+
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_10832_20077)">
|
|
3
|
+
<rect width="64" height="64" rx="12" fill="white"/>
|
|
4
|
+
<path d="M35.6218 31.9675C42.1358 31.9675 47.4164 26.6859 47.4164 20.1706C47.4164 13.6553 42.1345 8.375 35.6218 8.375H28.3563L40.678 20.6009L29.3654 31.9675L40.678 43.3341L28.3563 55.56H35.6218C42.1358 55.56 47.4164 50.2784 47.4164 43.7631C47.4164 37.2477 42.1358 31.9662 35.6218 31.9662V31.9675Z" fill="#404040"/>
|
|
5
|
+
<path d="M45.9141 37.3232L56.75 31.9673L45.9141 26.6113V37.3232Z" fill="#404040"/>
|
|
6
|
+
<path d="M27.4404 8.375C26.9664 8.375 26.5814 8.76013 26.5814 9.23424C26.5814 9.70834 26.9664 10.0935 27.4404 10.0935C27.9144 10.0935 28.2995 9.70834 28.2995 9.23424C28.2995 8.76013 27.9144 8.375 27.4404 8.375Z" fill="#404040"/>
|
|
7
|
+
<path d="M25.2218 8.42627C24.7757 8.42627 24.4132 8.78882 24.4132 9.23504C24.4132 9.68126 24.7757 10.0438 25.2218 10.0438C25.6679 10.0438 26.0304 9.68126 26.0304 9.23504C26.0304 8.78882 25.6679 8.42627 25.2218 8.42627Z" fill="#404040"/>
|
|
8
|
+
<path d="M23.0051 8.47559C22.5869 8.47559 22.2469 8.81556 22.2469 9.23389C22.2469 9.65222 22.5869 9.9922 23.0051 9.9922C23.4233 9.9922 23.7633 9.65222 23.7633 9.23389C23.7633 8.81556 23.4233 8.47559 23.0051 8.47559Z" fill="#404040"/>
|
|
9
|
+
<path d="M20.7892 8.5249C20.3989 8.5249 20.0815 8.8423 20.0815 9.23274C20.0815 9.62318 20.3989 9.94058 20.7892 9.94058C21.1796 9.94058 21.4969 9.62318 21.4969 9.23274C21.4969 8.8423 21.1796 8.5249 20.7892 8.5249Z" fill="#404040"/>
|
|
10
|
+
<path d="M18.5725 8.57715C18.21 8.57715 17.9152 8.87064 17.9152 9.23452C17.9152 9.5984 18.21 9.8919 18.5725 9.8919C18.9349 9.8919 19.2297 9.59708 19.2297 9.23452C19.2297 8.87197 18.9349 8.57715 18.5725 8.57715Z" fill="#404040"/>
|
|
11
|
+
<path d="M16.3566 8.62695C16.022 8.62695 15.7498 8.89787 15.7498 9.23386C15.7498 9.56986 16.0207 9.84077 16.3566 9.84077C16.6925 9.84077 16.9634 9.56986 16.9634 9.23386C16.9634 8.89787 16.6925 8.62695 16.3566 8.62695Z" fill="#404040"/>
|
|
12
|
+
<path d="M14.1371 8.67871C13.8304 8.67871 13.5808 8.92705 13.5808 9.23516C13.5808 9.54326 13.8291 9.7916 14.1371 9.7916C14.4452 9.7916 14.6935 9.54326 14.6935 9.23516C14.6935 8.92705 14.4452 8.67871 14.1371 8.67871Z" fill="#404040"/>
|
|
13
|
+
<path d="M11.9213 8.72803C11.6425 8.72803 11.4154 8.95379 11.4154 9.23401C11.4154 9.51422 11.6411 9.73999 11.9213 9.73999C12.2014 9.73999 12.4272 9.51422 12.4272 9.23401C12.4272 8.95379 12.2014 8.72803 11.9213 8.72803Z" fill="#404040"/>
|
|
14
|
+
<path d="M9.70542 9.68837C9.95695 9.68837 10.1608 9.48443 10.1608 9.23286C10.1608 8.98128 9.95695 8.77734 9.70542 8.77734C9.4539 8.77734 9.25 8.98128 9.25 9.23286C9.25 9.48443 9.4539 9.68837 9.70542 9.68837Z" fill="#404040"/>
|
|
15
|
+
<path d="M29.6572 12.4166C30.1591 12.4166 30.5667 12.0089 30.5667 11.5069C30.5667 11.0049 30.1591 10.5972 29.6572 10.5972C29.1553 10.5972 28.7477 11.0049 28.7477 11.5069C28.7477 12.0089 29.1553 12.4166 29.6572 12.4166Z" fill="#404040"/>
|
|
16
|
+
<path d="M27.4404 10.6475C26.9664 10.6475 26.5814 11.0326 26.5814 11.5067C26.5814 11.9808 26.9664 12.3659 27.4404 12.3659C27.9144 12.3659 28.2995 11.9808 28.2995 11.5067C28.2995 11.0326 27.9144 10.6475 27.4404 10.6475Z" fill="#404040"/>
|
|
17
|
+
<path d="M25.2218 10.6992C24.7757 10.6992 24.4132 11.0618 24.4132 11.508C24.4132 11.9542 24.7757 12.3168 25.2218 12.3168C25.6679 12.3168 26.0304 11.9542 26.0304 11.508C26.0304 11.0618 25.6679 10.6992 25.2218 10.6992Z" fill="#404040"/>
|
|
18
|
+
<path d="M23.0051 10.7495C22.5869 10.7495 22.2469 11.0895 22.2469 11.5078C22.2469 11.9261 22.5869 12.2661 23.0051 12.2661C23.4233 12.2661 23.7633 11.9261 23.7633 11.5078C23.7633 11.0895 23.4233 10.7495 23.0051 10.7495Z" fill="#404040"/>
|
|
19
|
+
<path d="M20.7892 10.8008C20.3989 10.8008 20.0815 11.1182 20.0815 11.5086C20.0815 11.8991 20.3989 12.2165 20.7892 12.2165C21.1796 12.2165 21.4969 11.8991 21.4969 11.5086C21.4969 11.1182 21.1796 10.8008 20.7892 10.8008Z" fill="#404040"/>
|
|
20
|
+
<path d="M18.5725 10.8501C18.21 10.8501 17.9152 11.1449 17.9152 11.5075C17.9152 11.87 18.21 12.1648 18.5725 12.1648C18.9349 12.1648 19.2297 11.87 19.2297 11.5075C19.2297 11.1449 18.9349 10.8501 18.5725 10.8501Z" fill="#404040"/>
|
|
21
|
+
<path d="M16.3566 12.1132C16.6917 12.1132 16.9634 11.8415 16.9634 11.5063C16.9634 11.1711 16.6917 10.8994 16.3566 10.8994C16.0215 10.8994 15.7498 11.1711 15.7498 11.5063C15.7498 11.8415 16.0215 12.1132 16.3566 12.1132Z" fill="#404040"/>
|
|
22
|
+
<path d="M14.1371 12.0646C14.4444 12.0646 14.6935 11.8154 14.6935 11.5081C14.6935 11.2008 14.4444 10.9517 14.1371 10.9517C13.8299 10.9517 13.5808 11.2008 13.5808 11.5081C13.5808 11.8154 13.8299 12.0646 14.1371 12.0646Z" fill="#404040"/>
|
|
23
|
+
<path d="M31.873 14.7421C32.4028 14.7421 32.833 14.3118 32.833 13.7819C32.833 13.2521 32.4028 12.8218 31.873 12.8218C31.3432 12.8218 30.913 13.2521 30.913 13.7819C30.913 14.3118 31.3432 14.7421 31.873 14.7421Z" fill="#404040"/>
|
|
24
|
+
<path d="M29.6572 14.691C30.1591 14.691 30.5667 14.2833 30.5667 13.7813C30.5667 13.2793 30.1591 12.8716 29.6572 12.8716C29.1553 12.8716 28.7477 13.2793 28.7477 13.7813C28.7477 14.2833 29.1553 14.691 29.6572 14.691Z" fill="#404040"/>
|
|
25
|
+
<path d="M27.4404 12.9233C26.9664 12.9233 26.5814 13.3085 26.5814 13.7826C26.5814 14.2567 26.9664 14.6418 27.4404 14.6418C27.9144 14.6418 28.2995 14.2567 28.2995 13.7826C28.2995 13.3085 27.9144 12.9233 27.4404 12.9233Z" fill="#404040"/>
|
|
26
|
+
<path d="M25.2218 14.5902C25.6684 14.5902 26.0304 14.2281 26.0304 13.7814C26.0304 13.3348 25.6684 12.9727 25.2218 12.9727C24.7752 12.9727 24.4132 13.3348 24.4132 13.7814C24.4132 14.2281 24.7752 14.5902 25.2218 14.5902Z" fill="#404040"/>
|
|
27
|
+
<path d="M23.0051 13.0215C22.5869 13.0215 22.2469 13.3615 22.2469 13.7798C22.2469 14.1981 22.5869 14.5381 23.0051 14.5381C23.4233 14.5381 23.7633 14.1981 23.7633 13.7798C23.7633 13.3615 23.4233 13.0215 23.0051 13.0215Z" fill="#404040"/>
|
|
28
|
+
<path d="M20.7892 14.4894C21.1801 14.4894 21.4969 14.1725 21.4969 13.7816C21.4969 13.3906 21.1801 13.0737 20.7892 13.0737C20.3984 13.0737 20.0815 13.3906 20.0815 13.7816C20.0815 14.1725 20.3984 14.4894 20.7892 14.4894Z" fill="#404040"/>
|
|
29
|
+
<path d="M18.5725 13.124C18.21 13.124 17.9152 13.4188 17.9152 13.7814C17.9152 14.144 18.21 14.4388 18.5725 14.4388C18.9349 14.4388 19.2297 14.144 19.2297 13.7814C19.2297 13.4188 18.9349 13.124 18.5725 13.124Z" fill="#404040"/>
|
|
30
|
+
<path d="M34.0898 17.0667C34.6474 17.0667 35.1002 16.6138 35.1002 16.056C35.1002 15.4983 34.6474 15.0454 34.0898 15.0454C33.5321 15.0454 33.0793 15.4983 33.0793 16.056C33.0793 16.6138 33.5321 17.0667 34.0898 17.0667Z" fill="#404040"/>
|
|
31
|
+
<path d="M31.873 17.0121C32.4028 17.0121 32.833 16.5818 32.833 16.052C32.833 15.5221 32.4028 15.0918 31.873 15.0918C31.3432 15.0918 30.913 15.5221 30.913 16.052C30.913 16.5818 31.3432 17.0121 31.873 17.0121Z" fill="#404040"/>
|
|
32
|
+
<path d="M36.3056 19.3878C36.8912 19.3878 37.3665 18.9124 37.3665 18.3267C37.3665 17.7411 36.8912 17.2656 36.3056 17.2656C35.7201 17.2656 35.2448 17.7411 35.2448 18.3267C35.2448 18.9124 35.7201 19.3878 36.3056 19.3878Z" fill="#404040"/>
|
|
33
|
+
<path d="M34.0898 19.3377C34.6474 19.3377 35.1002 18.8848 35.1002 18.327C35.1002 17.7693 34.6474 17.3164 34.0898 17.3164C33.5321 17.3164 33.0793 17.7693 33.0793 18.327C33.0793 18.8848 33.5321 19.3377 34.0898 19.3377Z" fill="#404040"/>
|
|
34
|
+
<path d="M39.6364 20.6018C39.6364 19.9882 39.1385 19.4902 38.5251 19.4902C37.9117 19.4902 37.4138 19.9882 37.4138 20.6018C37.4138 21.2153 37.9117 21.7134 38.5251 21.7134C39.1385 21.7134 39.6364 21.2153 39.6364 20.6018Z" fill="#404040"/>
|
|
35
|
+
<path d="M36.3056 21.6613C36.8915 21.6613 37.3665 21.1862 37.3665 20.6002C37.3665 20.0141 36.8915 19.5391 36.3056 19.5391C35.7197 19.5391 35.2448 20.0141 35.2448 20.6002C35.2448 21.1862 35.7197 21.6613 36.3056 21.6613Z" fill="#404040"/>
|
|
36
|
+
<path d="M34.0898 21.6096C34.6474 21.6096 35.1002 21.1568 35.1002 20.599C35.1002 20.0412 34.6474 19.5884 34.0898 19.5884C33.5321 19.5884 33.0793 20.0412 33.0793 20.599C33.0793 21.1568 33.5321 21.6096 34.0898 21.6096Z" fill="#404040"/>
|
|
37
|
+
<path d="M29.6572 30.6041C30.1591 30.6041 30.5667 30.1964 30.5667 29.6944C30.5667 29.1924 30.1591 28.7847 29.6572 28.7847C29.1553 28.7847 28.7477 29.1924 28.7477 29.6944C28.7477 30.1964 29.1553 30.6041 29.6572 30.6041Z" fill="#404040"/>
|
|
38
|
+
<path d="M23.0051 28.9355C22.5869 28.9355 22.2469 29.2755 22.2469 29.6939C22.2469 30.1122 22.5869 30.4522 23.0051 30.4522C23.4233 30.4522 23.7633 30.1122 23.7633 29.6939C23.7633 29.2755 23.4233 28.9355 23.0051 28.9355Z" fill="#404040"/>
|
|
39
|
+
<path d="M20.7892 28.9873C20.3989 28.9873 20.0815 29.3047 20.0815 29.6951C20.0815 30.0856 20.3989 30.403 20.7892 30.403C21.1796 30.403 21.4969 30.0856 21.4969 29.6951C21.4969 29.3047 21.1796 28.9873 20.7892 28.9873Z" fill="#404040"/>
|
|
40
|
+
<path d="M16.3566 31.4375C16.6917 31.4375 16.9634 31.1657 16.9634 30.8305C16.9634 30.4954 16.6917 30.2236 16.3566 30.2236C16.0215 30.2236 15.7498 30.4954 15.7498 30.8305C15.7498 31.1657 16.0215 31.4375 16.3566 31.4375Z" fill="#404040"/>
|
|
41
|
+
<path d="M14.1371 31.3878C14.4444 31.3878 14.6935 31.1387 14.6935 30.8313C14.6935 30.524 14.4444 30.2749 14.1371 30.2749C13.8299 30.2749 13.5808 30.524 13.5808 30.8313C13.5808 31.1387 13.8299 31.3878 14.1371 31.3878Z" fill="#404040"/>
|
|
42
|
+
<path d="M31.873 28.3798C32.4028 28.3798 32.833 27.9495 32.833 27.4196C32.833 26.8898 32.4028 26.4595 31.873 26.4595C31.3432 26.4595 30.913 26.8898 30.913 27.4196C30.913 27.9495 31.3432 28.3798 31.873 28.3798Z" fill="#404040"/>
|
|
43
|
+
<path d="M29.6572 28.3306C30.1591 28.3306 30.5667 27.9229 30.5667 27.4209C30.5667 26.9189 30.1591 26.5112 29.6572 26.5112C29.1553 26.5112 28.7477 26.9189 28.7477 27.4209C28.7477 27.9229 29.1553 28.3306 29.6572 28.3306Z" fill="#404040"/>
|
|
44
|
+
<path d="M34.0898 26.158C34.6474 26.158 35.1002 25.7051 35.1002 25.1474C35.1002 24.5896 34.6474 24.1367 34.0898 24.1367C33.5321 24.1367 33.0793 24.5896 33.0793 25.1474C33.0793 25.7051 33.5321 26.158 34.0898 26.158Z" fill="#404040"/>
|
|
45
|
+
<path d="M31.873 26.1078C32.4028 26.1078 32.833 25.6776 32.833 25.1477C32.833 24.6178 32.4028 24.1875 31.873 24.1875C31.3432 24.1875 30.913 24.6178 30.913 25.1477C30.913 25.6776 31.3432 26.1078 31.873 26.1078Z" fill="#404040"/>
|
|
46
|
+
<path d="M29.6572 26.0582C30.1591 26.0582 30.5667 25.6505 30.5667 25.1485C30.5667 24.6465 30.1591 24.2388 29.6572 24.2388C29.1553 24.2388 28.7477 24.6465 28.7477 25.1485C28.7477 25.6505 29.1553 26.0582 29.6572 26.0582Z" fill="#404040"/>
|
|
47
|
+
<path d="M36.3056 23.9352C36.8912 23.9352 37.3665 23.4597 37.3665 22.8741C37.3665 22.2884 36.8912 21.813 36.3056 21.813C35.7201 21.813 35.2448 22.2884 35.2448 22.8741C35.2448 23.4597 35.7201 23.9352 36.3056 23.9352Z" fill="#404040"/>
|
|
48
|
+
<path d="M34.0898 23.8855C34.6474 23.8855 35.1002 23.4327 35.1002 22.8749C35.1002 22.3171 34.6474 21.8643 34.0898 21.8643C33.5321 21.8643 33.0793 22.3171 33.0793 22.8749C33.0793 23.4327 33.5321 23.8855 34.0898 23.8855Z" fill="#404040"/>
|
|
49
|
+
<path d="M31.873 23.8339C32.4028 23.8339 32.833 23.4036 32.833 22.8737C32.833 22.3439 32.4028 21.9136 31.873 21.9136C31.3432 21.9136 30.913 22.3439 30.913 22.8737C30.913 23.4036 31.3432 23.8339 31.873 23.8339Z" fill="#404040"/>
|
|
50
|
+
<path d="M27.4404 53.8418C26.9664 53.8418 26.5814 54.2269 26.5814 54.701C26.5814 55.1751 26.9664 55.5603 27.4404 55.5603C27.9144 55.5603 28.2995 55.1751 28.2995 54.701C28.2995 54.2269 27.9144 53.8418 27.4404 53.8418Z" fill="#404040"/>
|
|
51
|
+
<path d="M25.2218 55.5101C25.6684 55.5101 26.0304 55.148 26.0304 54.7013C26.0304 54.2547 25.6684 53.8926 25.2218 53.8926C24.7752 53.8926 24.4132 54.2547 24.4132 54.7013C24.4132 55.148 24.7752 55.5101 25.2218 55.5101Z" fill="#404040"/>
|
|
52
|
+
<path d="M23.0051 53.9443C22.5869 53.9443 22.2469 54.2843 22.2469 54.7026C22.2469 55.121 22.5869 55.4609 23.0051 55.4609C23.4233 55.4609 23.7633 55.121 23.7633 54.7026C23.7633 54.2843 23.4233 53.9443 23.0051 53.9443Z" fill="#404040"/>
|
|
53
|
+
<path d="M20.7892 55.4093C21.1801 55.4093 21.4969 55.0924 21.4969 54.7015C21.4969 54.3106 21.1801 53.9937 20.7892 53.9937C20.3984 53.9937 20.0815 54.3106 20.0815 54.7015C20.0815 55.0924 20.3984 55.4093 20.7892 55.4093Z" fill="#404040"/>
|
|
54
|
+
<path d="M18.5725 54.043C18.21 54.043 17.9152 54.3378 17.9152 54.7003C17.9152 55.0629 18.21 55.3577 18.5725 55.3577C18.9349 55.3577 19.2297 55.0642 19.2297 54.7003C19.2297 54.3365 18.9349 54.043 18.5725 54.043Z" fill="#404040"/>
|
|
55
|
+
<path d="M16.3566 55.3081C16.6917 55.3081 16.9634 55.0363 16.9634 54.7011C16.9634 54.366 16.6917 54.0942 16.3566 54.0942C16.0215 54.0942 15.7498 54.366 15.7498 54.7011C15.7498 55.0363 16.0215 55.3081 16.3566 55.3081Z" fill="#404040"/>
|
|
56
|
+
<path d="M14.1371 55.2574C14.4444 55.2574 14.6935 55.0083 14.6935 54.701C14.6935 54.3937 14.4444 54.1445 14.1371 54.1445C13.8299 54.1445 13.5808 54.3937 13.5808 54.701C13.5808 55.0083 13.8299 55.2574 14.1371 55.2574Z" fill="#404040"/>
|
|
57
|
+
<path d="M11.9213 55.2082C12.2007 55.2082 12.4272 54.9817 12.4272 54.7023C12.4272 54.4228 12.2007 54.1963 11.9213 54.1963C11.6419 54.1963 11.4154 54.4228 11.4154 54.7023C11.4154 54.9817 11.6419 55.2082 11.9213 55.2082Z" fill="#404040"/>
|
|
58
|
+
<path d="M9.70542 55.1576C9.95695 55.1576 10.1608 54.9537 10.1608 54.7021C10.1608 54.4505 9.95695 54.2466 9.70542 54.2466C9.4539 54.2466 9.25 54.4505 9.25 54.7021C9.25 54.9537 9.4539 55.1576 9.70542 55.1576Z" fill="#404040"/>
|
|
59
|
+
<path d="M29.6572 53.3375C30.1591 53.3375 30.5667 52.9298 30.5667 52.4278C30.5667 51.9258 30.1591 51.5181 29.6572 51.5181C29.1553 51.5181 28.7477 51.9258 28.7477 52.4278C28.7477 52.9298 29.1553 53.3375 29.6572 53.3375Z" fill="#404040"/>
|
|
60
|
+
<path d="M27.4404 51.5698C26.9664 51.5698 26.5814 51.955 26.5814 52.4291C26.5814 52.9032 26.9664 53.2883 27.4404 53.2883C27.9144 53.2883 28.2995 52.9032 28.2995 52.4291C28.2995 51.955 27.9144 51.5698 27.4404 51.5698Z" fill="#404040"/>
|
|
61
|
+
<path d="M25.2218 53.2367C25.6684 53.2367 26.0304 52.8746 26.0304 52.4279C26.0304 51.9812 25.6684 51.6191 25.2218 51.6191C24.7752 51.6191 24.4132 51.9812 24.4132 52.4279C24.4132 52.8746 24.7752 53.2367 25.2218 53.2367Z" fill="#404040"/>
|
|
62
|
+
<path d="M23.0051 51.6685C22.5869 51.6685 22.2469 52.0084 22.2469 52.4268C22.2469 52.8451 22.5869 53.1851 23.0051 53.1851C23.4233 53.1851 23.7633 52.8451 23.7633 52.4268C23.7633 52.0084 23.4233 51.6685 23.0051 51.6685Z" fill="#404040"/>
|
|
63
|
+
<path d="M20.7892 51.7197C20.3989 51.7197 20.0815 52.0371 20.0815 52.4276C20.0815 52.818 20.3989 53.1354 20.7892 53.1354C21.1796 53.1354 21.4969 52.818 21.4969 52.4276C21.4969 52.0371 21.1796 51.7197 20.7892 51.7197Z" fill="#404040"/>
|
|
64
|
+
<path d="M18.5725 51.7705C18.21 51.7705 17.9152 52.0653 17.9152 52.4279C17.9152 52.7904 18.21 53.0853 18.5725 53.0853C18.9349 53.0853 19.2297 52.7918 19.2297 52.4279C19.2297 52.064 18.9349 51.7705 18.5725 51.7705Z" fill="#404040"/>
|
|
65
|
+
<path d="M16.3566 51.8223C16.022 51.8223 15.7498 52.0932 15.7498 52.4292C15.7498 52.7652 16.0207 53.0361 16.3566 53.0361C16.6925 53.0361 16.9634 52.7652 16.9634 52.4292C16.9634 52.0932 16.6925 51.8223 16.3566 51.8223Z" fill="#404040"/>
|
|
66
|
+
<path d="M14.1371 52.9845C14.4444 52.9845 14.6935 52.7353 14.6935 52.428C14.6935 52.1207 14.4444 51.8716 14.1371 51.8716C13.8299 51.8716 13.5808 52.1207 13.5808 52.428C13.5808 52.7353 13.8299 52.9845 14.1371 52.9845Z" fill="#404040"/>
|
|
67
|
+
<path d="M31.873 51.1156C32.4028 51.1156 32.833 50.6854 32.833 50.1555C32.833 49.6256 32.4028 49.1953 31.873 49.1953C31.3432 49.1953 30.913 49.6256 30.913 50.1555C30.913 50.6854 31.3432 51.1156 31.873 51.1156Z" fill="#404040"/>
|
|
68
|
+
<path d="M29.6572 51.064C30.1591 51.064 30.5667 50.6563 30.5667 50.1543C30.5667 49.6523 30.1591 49.2446 29.6572 49.2446C29.1553 49.2446 28.7477 49.6523 28.7477 50.1543C28.7477 50.6563 29.1553 51.064 29.6572 51.064Z" fill="#404040"/>
|
|
69
|
+
<path d="M27.4404 49.2939C26.9664 49.2939 26.5814 49.6791 26.5814 50.1532C26.5814 50.6273 26.9664 51.0124 27.4404 51.0124C27.9144 51.0124 28.2995 50.6273 28.2995 50.1532C28.2995 49.6791 27.9144 49.2939 27.4404 49.2939Z" fill="#404040"/>
|
|
70
|
+
<path d="M25.2218 49.3457C24.7757 49.3457 24.4132 49.7083 24.4132 50.1545C24.4132 50.6007 24.7757 50.9632 25.2218 50.9632C25.6679 50.9632 26.0304 50.6007 26.0304 50.1545C26.0304 49.7083 25.6679 49.3457 25.2218 49.3457Z" fill="#404040"/>
|
|
71
|
+
<path d="M23.0051 49.396C22.5869 49.396 22.2469 49.736 22.2469 50.1543C22.2469 50.5726 22.5869 50.9126 23.0051 50.9126C23.4233 50.9126 23.7633 50.5726 23.7633 50.1543C23.7633 49.736 23.4233 49.396 23.0051 49.396Z" fill="#404040"/>
|
|
72
|
+
<path d="M20.7892 50.8634C21.1801 50.8634 21.4969 50.5465 21.4969 50.1556C21.4969 49.7647 21.1801 49.4478 20.7892 49.4478C20.3984 49.4478 20.0815 49.7647 20.0815 50.1556C20.0815 50.5465 20.3984 50.8634 20.7892 50.8634Z" fill="#404040"/>
|
|
73
|
+
<path d="M18.5725 49.4971C18.21 49.4971 17.9152 49.7906 17.9152 50.1544C17.9152 50.5183 18.21 50.8118 18.5725 50.8118C18.9349 50.8118 19.2297 50.517 19.2297 50.1544C19.2297 49.7919 18.9349 49.4971 18.5725 49.4971Z" fill="#404040"/>
|
|
74
|
+
<path d="M34.0898 48.8914C34.6474 48.8914 35.1002 48.4385 35.1002 47.8808C35.1002 47.323 34.6474 46.8701 34.0898 46.8701C33.5321 46.8701 33.0793 47.323 33.0793 47.8808C33.0793 48.4385 33.5321 48.8914 34.0898 48.8914Z" fill="#404040"/>
|
|
75
|
+
<path d="M31.873 48.8398C32.4028 48.8398 32.833 48.4095 32.833 47.8796C32.833 47.3497 32.4028 46.9194 31.873 46.9194C31.3432 46.9194 30.913 47.3497 30.913 47.8796C30.913 48.4095 31.3432 48.8398 31.873 48.8398Z" fill="#404040"/>
|
|
76
|
+
<path d="M36.3056 46.6671C36.8915 46.6671 37.3665 46.192 37.3665 45.606C37.3665 45.02 36.8915 44.5449 36.3056 44.5449C35.7197 44.5449 35.2448 45.02 35.2448 45.606C35.2448 46.192 35.7197 46.6671 36.3056 46.6671Z" fill="#404040"/>
|
|
77
|
+
<path d="M34.0898 46.6175C34.6474 46.6175 35.1002 46.1646 35.1002 45.6068C35.1002 45.049 34.6474 44.5962 34.0898 44.5962C33.5321 44.5962 33.0793 45.049 33.0793 45.6068C33.0793 46.1646 33.5321 46.6175 34.0898 46.6175Z" fill="#404040"/>
|
|
78
|
+
<path d="M39.6364 43.3342C39.6364 42.7207 39.1385 42.2227 38.5251 42.2227C37.9117 42.2227 37.4138 42.7207 37.4138 43.3342C37.4138 43.9478 37.9117 44.4458 38.5251 44.4458C39.1385 44.4458 39.6364 43.9478 39.6364 43.3342Z" fill="#404040"/>
|
|
79
|
+
<path d="M36.3056 44.3971C36.8912 44.3971 37.3665 43.9217 37.3665 43.336C37.3665 42.7503 36.8912 42.2749 36.3056 42.2749C35.7201 42.2749 35.2448 42.7503 35.2448 43.336C35.2448 43.9217 35.7201 44.3971 36.3056 44.3971Z" fill="#404040"/>
|
|
80
|
+
<path d="M34.0898 44.3455C34.6474 44.3455 35.1002 43.8926 35.1002 43.3349C35.1002 42.7771 34.6474 42.3242 34.0898 42.3242C33.5321 42.3242 33.0793 42.7771 33.0793 43.3349C33.0793 43.8926 33.5321 44.3455 34.0898 44.3455Z" fill="#404040"/>
|
|
81
|
+
<path d="M29.6572 35.1505C30.1591 35.1505 30.5667 34.7428 30.5667 34.2408C30.5667 33.7388 30.1591 33.3311 29.6572 33.3311C29.1553 33.3311 28.7477 33.7388 28.7477 34.2408C28.7477 34.7428 29.1553 35.1505 29.6572 35.1505Z" fill="#404040"/>
|
|
82
|
+
<path d="M23.0051 33.4819C22.5869 33.4819 22.2469 33.8219 22.2469 34.2402C22.2469 34.6586 22.5869 34.9985 23.0051 34.9985C23.4233 34.9985 23.7633 34.6586 23.7633 34.2402C23.7633 33.8219 23.4233 33.4819 23.0051 33.4819Z" fill="#404040"/>
|
|
83
|
+
<path d="M20.7892 34.9494C21.1801 34.9494 21.4969 34.6325 21.4969 34.2415C21.4969 33.8506 21.1801 33.5337 20.7892 33.5337C20.3984 33.5337 20.0815 33.8506 20.0815 34.2415C20.0815 34.6325 20.3984 34.9494 20.7892 34.9494Z" fill="#404040"/>
|
|
84
|
+
<path d="M16.3566 32.498C16.022 32.498 15.7498 32.769 15.7498 33.105C15.7498 33.441 16.0207 33.7119 16.3566 33.7119C16.6925 33.7119 16.9634 33.441 16.9634 33.105C16.9634 32.769 16.6925 32.498 16.3566 32.498Z" fill="#404040"/>
|
|
85
|
+
<path d="M31.873 37.474C32.4028 37.474 32.833 37.0438 32.833 36.5139C32.833 35.984 32.4028 35.5537 31.873 35.5537C31.3432 35.5537 30.913 35.984 30.913 36.5139C30.913 37.0438 31.3432 37.474 31.873 37.474Z" fill="#404040"/>
|
|
86
|
+
<path d="M29.6572 37.4239C30.1591 37.4239 30.5667 37.0162 30.5667 36.5142C30.5667 36.0122 30.1591 35.6045 29.6572 35.6045C29.1553 35.6045 28.7477 36.0122 28.7477 36.5142C28.7477 37.0162 29.1553 37.4239 29.6572 37.4239Z" fill="#404040"/>
|
|
87
|
+
<path d="M34.0898 39.7996C34.6474 39.7996 35.1002 39.3467 35.1002 38.789C35.1002 38.2312 34.6474 37.7783 34.0898 37.7783C33.5321 37.7783 33.0793 38.2312 33.0793 38.789C33.0793 39.3467 33.5321 39.7996 34.0898 39.7996Z" fill="#404040"/>
|
|
88
|
+
<path d="M31.873 39.7475C32.4028 39.7475 32.833 39.3172 32.833 38.7873C32.833 38.2574 32.4028 37.8271 31.873 37.8271C31.3432 37.8271 30.913 38.2574 30.913 38.7873C30.913 39.3172 31.3432 39.7475 31.873 39.7475Z" fill="#404040"/>
|
|
89
|
+
<path d="M29.6572 39.6964C30.1591 39.6964 30.5667 39.2886 30.5667 38.7867C30.5667 38.2847 30.1591 37.877 29.6572 37.877C29.1553 37.877 28.7477 38.2847 28.7477 38.7867C28.7477 39.2886 29.1553 39.6964 29.6572 39.6964Z" fill="#404040"/>
|
|
90
|
+
<path d="M36.3056 42.1212C36.8915 42.1212 37.3665 41.6461 37.3665 41.0601C37.3665 40.4741 36.8915 39.999 36.3056 39.999C35.7197 39.999 35.2448 40.4741 35.2448 41.0601C35.2448 41.6461 35.7197 42.1212 36.3056 42.1212Z" fill="#404040"/>
|
|
91
|
+
<path d="M34.0898 42.0716C34.6474 42.0716 35.1002 41.6187 35.1002 41.0609C35.1002 40.5032 34.6474 40.0503 34.0898 40.0503C33.5321 40.0503 33.0793 40.5032 33.0793 41.0609C33.0793 41.6187 33.5321 42.0716 34.0898 42.0716Z" fill="#404040"/>
|
|
92
|
+
<path d="M31.873 42.0214C32.4028 42.0214 32.833 41.5911 32.833 41.0612C32.833 40.5314 32.4028 40.1011 31.873 40.1011C31.3432 40.1011 30.913 40.5314 30.913 41.0612C30.913 41.5911 31.3432 42.0214 31.873 42.0214Z" fill="#404040"/>
|
|
93
|
+
<path d="M27.4404 26.562C26.9664 26.562 26.5814 26.9471 26.5814 27.4212C26.5814 27.8954 26.9664 28.2805 27.4404 28.2805C27.9144 28.2805 28.2995 27.8954 28.2995 27.4212C28.2995 26.9471 27.9144 26.562 27.4404 26.562Z" fill="#404040"/>
|
|
94
|
+
<path d="M27.4404 31.1074C26.9664 31.1074 26.5814 31.4926 26.5814 31.9667C26.5814 32.4408 26.9664 32.8259 27.4404 32.8259C27.9144 32.8259 28.2995 32.4408 28.2995 31.9667C28.2995 31.4926 27.9144 31.1074 27.4404 31.1074Z" fill="#404040"/>
|
|
95
|
+
<path d="M27.4404 33.3799C26.9664 33.3799 26.5814 33.765 26.5814 34.2391C26.5814 34.7132 26.9664 35.0984 27.4404 35.0984C27.9144 35.0984 28.2995 34.7132 28.2995 34.2391C28.2995 33.765 27.9144 33.3799 27.4404 33.3799Z" fill="#404040"/>
|
|
96
|
+
<path d="M27.4404 35.6558C26.9664 35.6558 26.5814 36.0409 26.5814 36.515C26.5814 36.9891 26.9664 37.3742 27.4404 37.3742C27.9144 37.3742 28.2995 36.9891 28.2995 36.515C28.2995 36.0409 27.9144 35.6558 27.4404 35.6558Z" fill="#404040"/>
|
|
97
|
+
<path d="M27.4404 28.834C26.9664 28.834 26.5814 29.2191 26.5814 29.6932C26.5814 30.1673 26.9664 30.5525 27.4404 30.5525C27.9144 30.5525 28.2995 30.1673 28.2995 29.6932C28.2995 29.2191 27.9144 28.834 27.4404 28.834Z" fill="#404040"/>
|
|
98
|
+
<path d="M25.2218 27.7495C24.7757 27.7495 24.4132 28.1121 24.4132 28.5583C24.4132 29.0045 24.7757 29.3671 25.2218 29.3671C25.6679 29.3671 26.0304 29.0045 26.0304 28.5583C26.0304 28.1121 25.6679 27.7495 25.2218 27.7495Z" fill="#404040"/>
|
|
99
|
+
<path d="M25.2218 32.2959C24.7757 32.2959 24.4132 32.6585 24.4132 33.1047C24.4132 33.5509 24.7757 33.9134 25.2218 33.9134C25.6679 33.9134 26.0304 33.5509 26.0304 33.1047C26.0304 32.6585 25.6679 32.2959 25.2218 32.2959Z" fill="#404040"/>
|
|
100
|
+
<path d="M25.2218 34.5684C24.7757 34.5684 24.4132 34.9309 24.4132 35.3771C24.4132 35.8233 24.7757 36.1859 25.2218 36.1859C25.6679 36.1859 26.0304 35.8233 26.0304 35.3771C26.0304 34.9309 25.6679 34.5684 25.2218 34.5684Z" fill="#404040"/>
|
|
101
|
+
<path d="M25.2218 30.0229C24.7757 30.0229 24.4132 30.3855 24.4132 30.8317C24.4132 30.9991 24.4637 31.1544 24.5513 31.2833C24.696 31.4984 24.943 31.6392 25.2218 31.6392C25.5006 31.6392 25.7463 31.4984 25.8923 31.2833C25.98 31.1544 26.0304 30.9991 26.0304 30.8317C26.0304 30.3855 25.6679 30.0229 25.2218 30.0229Z" fill="#404040"/>
|
|
102
|
+
<path d="M23.1578 31.2244C23.1087 31.2138 23.0569 31.2085 23.0051 31.2085C22.9533 31.2085 22.9015 31.2138 22.8524 31.2244C22.5072 31.2948 22.2469 31.6003 22.2469 31.9668C22.2469 32.3333 22.5072 32.6388 22.8524 32.7092C22.9015 32.7198 22.9533 32.7251 23.0051 32.7251C23.0569 32.7251 23.1087 32.7198 23.1578 32.7092C23.503 32.6388 23.7633 32.3333 23.7633 31.9668C23.7633 31.6003 23.503 31.2948 23.1578 31.2244Z" fill="#404040"/>
|
|
103
|
+
<path d="M21.1849 31.3816C21.0721 31.3059 20.9353 31.2607 20.7892 31.2607C20.6432 31.2607 20.5064 31.3059 20.3936 31.3816C20.205 31.5091 20.0815 31.7242 20.0815 31.9686C20.0815 32.1638 20.1612 32.3404 20.2887 32.4692C20.4161 32.5967 20.5941 32.6764 20.7892 32.6764C20.9844 32.6764 21.161 32.5967 21.2898 32.4692C21.4173 32.3418 21.4969 32.1638 21.4969 31.9686C21.4969 31.7242 21.3735 31.5091 21.1849 31.3816Z" fill="#404040"/>
|
|
104
|
+
<path d="M18.5725 32.4463C18.21 32.4463 17.9152 32.7398 17.9152 33.1037C17.9152 33.4675 18.21 33.761 18.5725 33.761C18.9349 33.761 19.2297 33.4662 19.2297 33.1037C19.2297 32.7411 18.9349 32.4463 18.5725 32.4463Z" fill="#404040"/>
|
|
105
|
+
<path d="M18.5747 30.1743C18.3477 30.1743 18.1485 30.2899 18.0304 30.4638C17.96 30.5687 17.9188 30.6949 17.9188 30.8317C17.9188 31.1942 18.2136 31.4891 18.5761 31.4891C18.9385 31.4891 19.2333 31.1956 19.2333 30.8317C19.2333 30.6962 19.1922 30.5687 19.1218 30.4638C19.0036 30.2885 18.8044 30.1743 18.5774 30.1743H18.5747Z" fill="#404040"/>
|
|
106
|
+
<path d="M12.4165 31.8658C12.4099 31.8326 12.3993 31.8007 12.3873 31.7715C12.3621 31.7104 12.3249 31.6559 12.2785 31.6108C12.1868 31.5192 12.0607 31.4634 11.9213 31.4634C11.7819 31.4634 11.6557 31.5205 11.5641 31.6108C11.519 31.6559 11.4818 31.7104 11.4552 31.7715C11.442 31.802 11.4327 31.8339 11.426 31.8658C11.4194 31.899 11.4154 31.9322 11.4154 31.968C11.4154 32.0026 11.4194 32.0371 11.426 32.0703C11.4327 32.1035 11.4433 32.1354 11.4552 32.1646C11.5323 32.3465 11.7115 32.4727 11.9213 32.4727C12.1311 32.4727 12.3103 32.3452 12.3873 32.1646C12.4006 32.134 12.4099 32.1022 12.4165 32.0703C12.4232 32.0371 12.4272 32.0039 12.4272 31.968C12.4272 31.9335 12.4232 31.899 12.4165 31.8658Z" fill="#404040"/>
|
|
107
|
+
<path d="M9.70542 31.5132C9.45448 31.5132 9.25 31.7164 9.25 31.9687C9.25 32.2197 9.45315 32.4242 9.70542 32.4242C9.9577 32.4242 10.1608 32.221 10.1608 31.9687C10.1608 31.7177 9.9577 31.5132 9.70542 31.5132Z" fill="#404040"/>
|
|
108
|
+
<path d="M14.1371 32.5488C13.8304 32.5488 13.5808 32.7972 13.5808 33.1053C13.5808 33.4134 13.8291 33.6617 14.1371 33.6617C14.4452 33.6617 14.6935 33.4134 14.6935 33.1053C14.6935 32.7972 14.4452 32.5488 14.1371 32.5488Z" fill="#404040"/>
|
|
109
|
+
<path d="M35.6218 31.9675C42.1358 31.9675 47.4164 26.6859 47.4164 20.1706C47.4164 13.6553 42.1345 8.375 35.6218 8.375H28.3563L40.678 20.6009L29.3654 31.9675L40.678 43.3341L28.3563 55.56H35.6218C42.1358 55.56 47.4164 50.2784 47.4164 43.7631C47.4164 37.2477 42.1358 31.9662 35.6218 31.9662V31.9675Z" fill="url(#paint0_linear_10832_20077)"/>
|
|
110
|
+
<path d="M45.9141 37.3232L56.75 31.9673L45.9141 26.6113V37.3232Z" fill="url(#paint1_linear_10832_20077)"/>
|
|
111
|
+
<path d="M27.4404 8.375C26.9664 8.375 26.5814 8.76013 26.5814 9.23424C26.5814 9.70834 26.9664 10.0935 27.4404 10.0935C27.9144 10.0935 28.2995 9.70834 28.2995 9.23424C28.2995 8.76013 27.9144 8.375 27.4404 8.375Z" fill="url(#paint2_linear_10832_20077)"/>
|
|
112
|
+
<path d="M25.2218 8.42627C24.7757 8.42627 24.4132 8.78882 24.4132 9.23504C24.4132 9.68126 24.7757 10.0438 25.2218 10.0438C25.6679 10.0438 26.0304 9.68126 26.0304 9.23504C26.0304 8.78882 25.6679 8.42627 25.2218 8.42627Z" fill="url(#paint3_linear_10832_20077)"/>
|
|
113
|
+
<path d="M23.0051 8.47559C22.5869 8.47559 22.2469 8.81556 22.2469 9.23389C22.2469 9.65222 22.5869 9.9922 23.0051 9.9922C23.4233 9.9922 23.7633 9.65222 23.7633 9.23389C23.7633 8.81556 23.4233 8.47559 23.0051 8.47559Z" fill="url(#paint4_linear_10832_20077)"/>
|
|
114
|
+
<path d="M20.7892 8.5249C20.3989 8.5249 20.0815 8.8423 20.0815 9.23274C20.0815 9.62318 20.3989 9.94058 20.7892 9.94058C21.1796 9.94058 21.4969 9.62318 21.4969 9.23274C21.4969 8.8423 21.1796 8.5249 20.7892 8.5249Z" fill="url(#paint5_linear_10832_20077)"/>
|
|
115
|
+
<path d="M18.5725 8.57715C18.21 8.57715 17.9152 8.87064 17.9152 9.23452C17.9152 9.5984 18.21 9.8919 18.5725 9.8919C18.9349 9.8919 19.2297 9.59708 19.2297 9.23452C19.2297 8.87197 18.9349 8.57715 18.5725 8.57715Z" fill="url(#paint6_linear_10832_20077)"/>
|
|
116
|
+
<path d="M16.3566 8.62695C16.022 8.62695 15.7498 8.89787 15.7498 9.23386C15.7498 9.56986 16.0207 9.84077 16.3566 9.84077C16.6925 9.84077 16.9634 9.56986 16.9634 9.23386C16.9634 8.89787 16.6925 8.62695 16.3566 8.62695Z" fill="url(#paint7_linear_10832_20077)"/>
|
|
117
|
+
<path d="M14.1371 8.67871C13.8304 8.67871 13.5808 8.92705 13.5808 9.23516C13.5808 9.54326 13.8291 9.7916 14.1371 9.7916C14.4452 9.7916 14.6935 9.54326 14.6935 9.23516C14.6935 8.92705 14.4452 8.67871 14.1371 8.67871Z" fill="url(#paint8_linear_10832_20077)"/>
|
|
118
|
+
<path d="M11.9213 8.72803C11.6425 8.72803 11.4154 8.95379 11.4154 9.23401C11.4154 9.51422 11.6411 9.73999 11.9213 9.73999C12.2014 9.73999 12.4272 9.51422 12.4272 9.23401C12.4272 8.95379 12.2014 8.72803 11.9213 8.72803Z" fill="url(#paint9_linear_10832_20077)"/>
|
|
119
|
+
<path d="M9.70542 9.68837C9.95695 9.68837 10.1608 9.48443 10.1608 9.23286C10.1608 8.98128 9.95695 8.77734 9.70542 8.77734C9.4539 8.77734 9.25 8.98128 9.25 9.23286C9.25 9.48443 9.4539 9.68837 9.70542 9.68837Z" fill="url(#paint10_linear_10832_20077)"/>
|
|
120
|
+
<path d="M29.6572 12.4166C30.1591 12.4166 30.5667 12.0089 30.5667 11.5069C30.5667 11.0049 30.1591 10.5972 29.6572 10.5972C29.1553 10.5972 28.7477 11.0049 28.7477 11.5069C28.7477 12.0089 29.1553 12.4166 29.6572 12.4166Z" fill="url(#paint11_linear_10832_20077)"/>
|
|
121
|
+
<path d="M27.4404 10.6475C26.9664 10.6475 26.5814 11.0326 26.5814 11.5067C26.5814 11.9808 26.9664 12.3659 27.4404 12.3659C27.9144 12.3659 28.2995 11.9808 28.2995 11.5067C28.2995 11.0326 27.9144 10.6475 27.4404 10.6475Z" fill="url(#paint12_linear_10832_20077)"/>
|
|
122
|
+
<path d="M25.2218 10.6992C24.7757 10.6992 24.4132 11.0618 24.4132 11.508C24.4132 11.9542 24.7757 12.3168 25.2218 12.3168C25.6679 12.3168 26.0304 11.9542 26.0304 11.508C26.0304 11.0618 25.6679 10.6992 25.2218 10.6992Z" fill="url(#paint13_linear_10832_20077)"/>
|
|
123
|
+
<path d="M23.0051 10.7495C22.5869 10.7495 22.2469 11.0895 22.2469 11.5078C22.2469 11.9261 22.5869 12.2661 23.0051 12.2661C23.4233 12.2661 23.7633 11.9261 23.7633 11.5078C23.7633 11.0895 23.4233 10.7495 23.0051 10.7495Z" fill="url(#paint14_linear_10832_20077)"/>
|
|
124
|
+
<path d="M20.7892 10.8008C20.3989 10.8008 20.0815 11.1182 20.0815 11.5086C20.0815 11.8991 20.3989 12.2165 20.7892 12.2165C21.1796 12.2165 21.4969 11.8991 21.4969 11.5086C21.4969 11.1182 21.1796 10.8008 20.7892 10.8008Z" fill="url(#paint15_linear_10832_20077)"/>
|
|
125
|
+
<path d="M18.5725 10.8501C18.21 10.8501 17.9152 11.1449 17.9152 11.5075C17.9152 11.87 18.21 12.1648 18.5725 12.1648C18.9349 12.1648 19.2297 11.87 19.2297 11.5075C19.2297 11.1449 18.9349 10.8501 18.5725 10.8501Z" fill="url(#paint16_linear_10832_20077)"/>
|
|
126
|
+
<path d="M16.3566 12.1132C16.6917 12.1132 16.9634 11.8415 16.9634 11.5063C16.9634 11.1711 16.6917 10.8994 16.3566 10.8994C16.0215 10.8994 15.7498 11.1711 15.7498 11.5063C15.7498 11.8415 16.0215 12.1132 16.3566 12.1132Z" fill="url(#paint17_linear_10832_20077)"/>
|
|
127
|
+
<path d="M14.1371 12.0646C14.4444 12.0646 14.6935 11.8154 14.6935 11.5081C14.6935 11.2008 14.4444 10.9517 14.1371 10.9517C13.8299 10.9517 13.5808 11.2008 13.5808 11.5081C13.5808 11.8154 13.8299 12.0646 14.1371 12.0646Z" fill="url(#paint18_linear_10832_20077)"/>
|
|
128
|
+
<path d="M31.873 14.7421C32.4028 14.7421 32.833 14.3118 32.833 13.7819C32.833 13.2521 32.4028 12.8218 31.873 12.8218C31.3432 12.8218 30.913 13.2521 30.913 13.7819C30.913 14.3118 31.3432 14.7421 31.873 14.7421Z" fill="url(#paint19_linear_10832_20077)"/>
|
|
129
|
+
<path d="M29.6572 14.691C30.1591 14.691 30.5667 14.2833 30.5667 13.7813C30.5667 13.2793 30.1591 12.8716 29.6572 12.8716C29.1553 12.8716 28.7477 13.2793 28.7477 13.7813C28.7477 14.2833 29.1553 14.691 29.6572 14.691Z" fill="url(#paint20_linear_10832_20077)"/>
|
|
130
|
+
<path d="M27.4404 12.9233C26.9664 12.9233 26.5814 13.3085 26.5814 13.7826C26.5814 14.2567 26.9664 14.6418 27.4404 14.6418C27.9144 14.6418 28.2995 14.2567 28.2995 13.7826C28.2995 13.3085 27.9144 12.9233 27.4404 12.9233Z" fill="url(#paint21_linear_10832_20077)"/>
|
|
131
|
+
<path d="M25.2218 14.5902C25.6684 14.5902 26.0304 14.2281 26.0304 13.7814C26.0304 13.3348 25.6684 12.9727 25.2218 12.9727C24.7752 12.9727 24.4132 13.3348 24.4132 13.7814C24.4132 14.2281 24.7752 14.5902 25.2218 14.5902Z" fill="url(#paint22_linear_10832_20077)"/>
|
|
132
|
+
<path d="M23.0051 13.0215C22.5869 13.0215 22.2469 13.3615 22.2469 13.7798C22.2469 14.1981 22.5869 14.5381 23.0051 14.5381C23.4233 14.5381 23.7633 14.1981 23.7633 13.7798C23.7633 13.3615 23.4233 13.0215 23.0051 13.0215Z" fill="url(#paint23_linear_10832_20077)"/>
|
|
133
|
+
<path d="M20.7892 14.4894C21.1801 14.4894 21.4969 14.1725 21.4969 13.7816C21.4969 13.3906 21.1801 13.0737 20.7892 13.0737C20.3984 13.0737 20.0815 13.3906 20.0815 13.7816C20.0815 14.1725 20.3984 14.4894 20.7892 14.4894Z" fill="url(#paint24_linear_10832_20077)"/>
|
|
134
|
+
<path d="M18.5725 13.124C18.21 13.124 17.9152 13.4188 17.9152 13.7814C17.9152 14.144 18.21 14.4388 18.5725 14.4388C18.9349 14.4388 19.2297 14.144 19.2297 13.7814C19.2297 13.4188 18.9349 13.124 18.5725 13.124Z" fill="url(#paint25_linear_10832_20077)"/>
|
|
135
|
+
<path d="M34.0898 17.0667C34.6474 17.0667 35.1002 16.6138 35.1002 16.056C35.1002 15.4983 34.6474 15.0454 34.0898 15.0454C33.5321 15.0454 33.0793 15.4983 33.0793 16.056C33.0793 16.6138 33.5321 17.0667 34.0898 17.0667Z" fill="url(#paint26_linear_10832_20077)"/>
|
|
136
|
+
<path d="M31.873 17.0121C32.4028 17.0121 32.833 16.5818 32.833 16.052C32.833 15.5221 32.4028 15.0918 31.873 15.0918C31.3432 15.0918 30.913 15.5221 30.913 16.052C30.913 16.5818 31.3432 17.0121 31.873 17.0121Z" fill="url(#paint27_linear_10832_20077)"/>
|
|
137
|
+
<path d="M36.3056 19.3878C36.8912 19.3878 37.3665 18.9124 37.3665 18.3267C37.3665 17.7411 36.8912 17.2656 36.3056 17.2656C35.7201 17.2656 35.2448 17.7411 35.2448 18.3267C35.2448 18.9124 35.7201 19.3878 36.3056 19.3878Z" fill="url(#paint28_linear_10832_20077)"/>
|
|
138
|
+
<path d="M34.0898 19.3377C34.6474 19.3377 35.1002 18.8848 35.1002 18.327C35.1002 17.7693 34.6474 17.3164 34.0898 17.3164C33.5321 17.3164 33.0793 17.7693 33.0793 18.327C33.0793 18.8848 33.5321 19.3377 34.0898 19.3377Z" fill="url(#paint29_linear_10832_20077)"/>
|
|
139
|
+
<path d="M39.6364 20.6018C39.6364 19.9882 39.1385 19.4902 38.5251 19.4902C37.9117 19.4902 37.4138 19.9882 37.4138 20.6018C37.4138 21.2153 37.9117 21.7134 38.5251 21.7134C39.1385 21.7134 39.6364 21.2153 39.6364 20.6018Z" fill="url(#paint30_linear_10832_20077)"/>
|
|
140
|
+
<path d="M36.3056 21.6613C36.8915 21.6613 37.3665 21.1862 37.3665 20.6002C37.3665 20.0141 36.8915 19.5391 36.3056 19.5391C35.7197 19.5391 35.2448 20.0141 35.2448 20.6002C35.2448 21.1862 35.7197 21.6613 36.3056 21.6613Z" fill="url(#paint31_linear_10832_20077)"/>
|
|
141
|
+
<path d="M34.0898 21.6096C34.6474 21.6096 35.1002 21.1568 35.1002 20.599C35.1002 20.0412 34.6474 19.5884 34.0898 19.5884C33.5321 19.5884 33.0793 20.0412 33.0793 20.599C33.0793 21.1568 33.5321 21.6096 34.0898 21.6096Z" fill="url(#paint32_linear_10832_20077)"/>
|
|
142
|
+
<path d="M29.6572 30.6041C30.1591 30.6041 30.5667 30.1964 30.5667 29.6944C30.5667 29.1924 30.1591 28.7847 29.6572 28.7847C29.1553 28.7847 28.7477 29.1924 28.7477 29.6944C28.7477 30.1964 29.1553 30.6041 29.6572 30.6041Z" fill="url(#paint33_linear_10832_20077)"/>
|
|
143
|
+
<path d="M23.0051 28.9355C22.5869 28.9355 22.2469 29.2755 22.2469 29.6939C22.2469 30.1122 22.5869 30.4522 23.0051 30.4522C23.4233 30.4522 23.7633 30.1122 23.7633 29.6939C23.7633 29.2755 23.4233 28.9355 23.0051 28.9355Z" fill="url(#paint34_linear_10832_20077)"/>
|
|
144
|
+
<path d="M20.7892 28.9873C20.3989 28.9873 20.0815 29.3047 20.0815 29.6951C20.0815 30.0856 20.3989 30.403 20.7892 30.403C21.1796 30.403 21.4969 30.0856 21.4969 29.6951C21.4969 29.3047 21.1796 28.9873 20.7892 28.9873Z" fill="url(#paint35_linear_10832_20077)"/>
|
|
145
|
+
<path d="M16.3566 31.4375C16.6917 31.4375 16.9634 31.1657 16.9634 30.8305C16.9634 30.4954 16.6917 30.2236 16.3566 30.2236C16.0215 30.2236 15.7498 30.4954 15.7498 30.8305C15.7498 31.1657 16.0215 31.4375 16.3566 31.4375Z" fill="url(#paint36_linear_10832_20077)"/>
|
|
146
|
+
<path d="M14.1371 31.3878C14.4444 31.3878 14.6935 31.1387 14.6935 30.8313C14.6935 30.524 14.4444 30.2749 14.1371 30.2749C13.8299 30.2749 13.5808 30.524 13.5808 30.8313C13.5808 31.1387 13.8299 31.3878 14.1371 31.3878Z" fill="url(#paint37_linear_10832_20077)"/>
|
|
147
|
+
<path d="M31.873 28.3798C32.4028 28.3798 32.833 27.9495 32.833 27.4196C32.833 26.8898 32.4028 26.4595 31.873 26.4595C31.3432 26.4595 30.913 26.8898 30.913 27.4196C30.913 27.9495 31.3432 28.3798 31.873 28.3798Z" fill="url(#paint38_linear_10832_20077)"/>
|
|
148
|
+
<path d="M29.6572 28.3306C30.1591 28.3306 30.5667 27.9229 30.5667 27.4209C30.5667 26.9189 30.1591 26.5112 29.6572 26.5112C29.1553 26.5112 28.7477 26.9189 28.7477 27.4209C28.7477 27.9229 29.1553 28.3306 29.6572 28.3306Z" fill="url(#paint39_linear_10832_20077)"/>
|
|
149
|
+
<path d="M34.0898 26.158C34.6474 26.158 35.1002 25.7051 35.1002 25.1474C35.1002 24.5896 34.6474 24.1367 34.0898 24.1367C33.5321 24.1367 33.0793 24.5896 33.0793 25.1474C33.0793 25.7051 33.5321 26.158 34.0898 26.158Z" fill="url(#paint40_linear_10832_20077)"/>
|
|
150
|
+
<path d="M31.873 26.1078C32.4028 26.1078 32.833 25.6776 32.833 25.1477C32.833 24.6178 32.4028 24.1875 31.873 24.1875C31.3432 24.1875 30.913 24.6178 30.913 25.1477C30.913 25.6776 31.3432 26.1078 31.873 26.1078Z" fill="url(#paint41_linear_10832_20077)"/>
|
|
151
|
+
<path d="M29.6572 26.0582C30.1591 26.0582 30.5667 25.6505 30.5667 25.1485C30.5667 24.6465 30.1591 24.2388 29.6572 24.2388C29.1553 24.2388 28.7477 24.6465 28.7477 25.1485C28.7477 25.6505 29.1553 26.0582 29.6572 26.0582Z" fill="url(#paint42_linear_10832_20077)"/>
|
|
152
|
+
<path d="M36.3056 23.9352C36.8912 23.9352 37.3665 23.4597 37.3665 22.8741C37.3665 22.2884 36.8912 21.813 36.3056 21.813C35.7201 21.813 35.2448 22.2884 35.2448 22.8741C35.2448 23.4597 35.7201 23.9352 36.3056 23.9352Z" fill="url(#paint43_linear_10832_20077)"/>
|
|
153
|
+
<path d="M34.0898 23.8855C34.6474 23.8855 35.1002 23.4327 35.1002 22.8749C35.1002 22.3171 34.6474 21.8643 34.0898 21.8643C33.5321 21.8643 33.0793 22.3171 33.0793 22.8749C33.0793 23.4327 33.5321 23.8855 34.0898 23.8855Z" fill="url(#paint44_linear_10832_20077)"/>
|
|
154
|
+
<path d="M31.873 23.8339C32.4028 23.8339 32.833 23.4036 32.833 22.8737C32.833 22.3439 32.4028 21.9136 31.873 21.9136C31.3432 21.9136 30.913 22.3439 30.913 22.8737C30.913 23.4036 31.3432 23.8339 31.873 23.8339Z" fill="url(#paint45_linear_10832_20077)"/>
|
|
155
|
+
<path d="M27.4404 53.8418C26.9664 53.8418 26.5814 54.2269 26.5814 54.701C26.5814 55.1751 26.9664 55.5603 27.4404 55.5603C27.9144 55.5603 28.2995 55.1751 28.2995 54.701C28.2995 54.2269 27.9144 53.8418 27.4404 53.8418Z" fill="url(#paint46_linear_10832_20077)"/>
|
|
156
|
+
<path d="M25.2218 55.5101C25.6684 55.5101 26.0304 55.148 26.0304 54.7013C26.0304 54.2547 25.6684 53.8926 25.2218 53.8926C24.7752 53.8926 24.4132 54.2547 24.4132 54.7013C24.4132 55.148 24.7752 55.5101 25.2218 55.5101Z" fill="url(#paint47_linear_10832_20077)"/>
|
|
157
|
+
<path d="M23.0051 53.9443C22.5869 53.9443 22.2469 54.2843 22.2469 54.7026C22.2469 55.121 22.5869 55.4609 23.0051 55.4609C23.4233 55.4609 23.7633 55.121 23.7633 54.7026C23.7633 54.2843 23.4233 53.9443 23.0051 53.9443Z" fill="url(#paint48_linear_10832_20077)"/>
|
|
158
|
+
<path d="M20.7892 55.4093C21.1801 55.4093 21.4969 55.0924 21.4969 54.7015C21.4969 54.3106 21.1801 53.9937 20.7892 53.9937C20.3984 53.9937 20.0815 54.3106 20.0815 54.7015C20.0815 55.0924 20.3984 55.4093 20.7892 55.4093Z" fill="url(#paint49_linear_10832_20077)"/>
|
|
159
|
+
<path d="M18.5725 54.043C18.21 54.043 17.9152 54.3378 17.9152 54.7003C17.9152 55.0629 18.21 55.3577 18.5725 55.3577C18.9349 55.3577 19.2297 55.0642 19.2297 54.7003C19.2297 54.3365 18.9349 54.043 18.5725 54.043Z" fill="url(#paint50_linear_10832_20077)"/>
|
|
160
|
+
<path d="M16.3566 55.3081C16.6917 55.3081 16.9634 55.0363 16.9634 54.7011C16.9634 54.366 16.6917 54.0942 16.3566 54.0942C16.0215 54.0942 15.7498 54.366 15.7498 54.7011C15.7498 55.0363 16.0215 55.3081 16.3566 55.3081Z" fill="url(#paint51_linear_10832_20077)"/>
|
|
161
|
+
<path d="M14.1371 55.2574C14.4444 55.2574 14.6935 55.0083 14.6935 54.701C14.6935 54.3937 14.4444 54.1445 14.1371 54.1445C13.8299 54.1445 13.5808 54.3937 13.5808 54.701C13.5808 55.0083 13.8299 55.2574 14.1371 55.2574Z" fill="url(#paint52_linear_10832_20077)"/>
|
|
162
|
+
<path d="M11.9213 55.2082C12.2007 55.2082 12.4272 54.9817 12.4272 54.7023C12.4272 54.4228 12.2007 54.1963 11.9213 54.1963C11.6419 54.1963 11.4154 54.4228 11.4154 54.7023C11.4154 54.9817 11.6419 55.2082 11.9213 55.2082Z" fill="url(#paint53_linear_10832_20077)"/>
|
|
163
|
+
<path d="M9.70542 55.1576C9.95695 55.1576 10.1608 54.9537 10.1608 54.7021C10.1608 54.4505 9.95695 54.2466 9.70542 54.2466C9.4539 54.2466 9.25 54.4505 9.25 54.7021C9.25 54.9537 9.4539 55.1576 9.70542 55.1576Z" fill="url(#paint54_linear_10832_20077)"/>
|
|
164
|
+
<path d="M29.6572 53.3375C30.1591 53.3375 30.5667 52.9298 30.5667 52.4278C30.5667 51.9258 30.1591 51.5181 29.6572 51.5181C29.1553 51.5181 28.7477 51.9258 28.7477 52.4278C28.7477 52.9298 29.1553 53.3375 29.6572 53.3375Z" fill="url(#paint55_linear_10832_20077)"/>
|
|
165
|
+
<path d="M27.4404 51.5698C26.9664 51.5698 26.5814 51.955 26.5814 52.4291C26.5814 52.9032 26.9664 53.2883 27.4404 53.2883C27.9144 53.2883 28.2995 52.9032 28.2995 52.4291C28.2995 51.955 27.9144 51.5698 27.4404 51.5698Z" fill="url(#paint56_linear_10832_20077)"/>
|
|
166
|
+
<path d="M25.2218 53.2367C25.6684 53.2367 26.0304 52.8746 26.0304 52.4279C26.0304 51.9812 25.6684 51.6191 25.2218 51.6191C24.7752 51.6191 24.4132 51.9812 24.4132 52.4279C24.4132 52.8746 24.7752 53.2367 25.2218 53.2367Z" fill="url(#paint57_linear_10832_20077)"/>
|
|
167
|
+
<path d="M23.0051 51.6685C22.5869 51.6685 22.2469 52.0084 22.2469 52.4268C22.2469 52.8451 22.5869 53.1851 23.0051 53.1851C23.4233 53.1851 23.7633 52.8451 23.7633 52.4268C23.7633 52.0084 23.4233 51.6685 23.0051 51.6685Z" fill="url(#paint58_linear_10832_20077)"/>
|
|
168
|
+
<path d="M20.7892 51.7197C20.3989 51.7197 20.0815 52.0371 20.0815 52.4276C20.0815 52.818 20.3989 53.1354 20.7892 53.1354C21.1796 53.1354 21.4969 52.818 21.4969 52.4276C21.4969 52.0371 21.1796 51.7197 20.7892 51.7197Z" fill="url(#paint59_linear_10832_20077)"/>
|
|
169
|
+
<path d="M18.5725 51.7705C18.21 51.7705 17.9152 52.0653 17.9152 52.4279C17.9152 52.7904 18.21 53.0853 18.5725 53.0853C18.9349 53.0853 19.2297 52.7918 19.2297 52.4279C19.2297 52.064 18.9349 51.7705 18.5725 51.7705Z" fill="url(#paint60_linear_10832_20077)"/>
|
|
170
|
+
<path d="M16.3566 51.8223C16.022 51.8223 15.7498 52.0932 15.7498 52.4292C15.7498 52.7652 16.0207 53.0361 16.3566 53.0361C16.6925 53.0361 16.9634 52.7652 16.9634 52.4292C16.9634 52.0932 16.6925 51.8223 16.3566 51.8223Z" fill="url(#paint61_linear_10832_20077)"/>
|
|
171
|
+
<path d="M14.1371 52.9845C14.4444 52.9845 14.6935 52.7353 14.6935 52.428C14.6935 52.1207 14.4444 51.8716 14.1371 51.8716C13.8299 51.8716 13.5808 52.1207 13.5808 52.428C13.5808 52.7353 13.8299 52.9845 14.1371 52.9845Z" fill="url(#paint62_linear_10832_20077)"/>
|
|
172
|
+
<path d="M31.873 51.1156C32.4028 51.1156 32.833 50.6854 32.833 50.1555C32.833 49.6256 32.4028 49.1953 31.873 49.1953C31.3432 49.1953 30.913 49.6256 30.913 50.1555C30.913 50.6854 31.3432 51.1156 31.873 51.1156Z" fill="url(#paint63_linear_10832_20077)"/>
|
|
173
|
+
<path d="M29.6572 51.064C30.1591 51.064 30.5667 50.6563 30.5667 50.1543C30.5667 49.6523 30.1591 49.2446 29.6572 49.2446C29.1553 49.2446 28.7477 49.6523 28.7477 50.1543C28.7477 50.6563 29.1553 51.064 29.6572 51.064Z" fill="url(#paint64_linear_10832_20077)"/>
|
|
174
|
+
<path d="M27.4404 49.2939C26.9664 49.2939 26.5814 49.6791 26.5814 50.1532C26.5814 50.6273 26.9664 51.0124 27.4404 51.0124C27.9144 51.0124 28.2995 50.6273 28.2995 50.1532C28.2995 49.6791 27.9144 49.2939 27.4404 49.2939Z" fill="url(#paint65_linear_10832_20077)"/>
|
|
175
|
+
<path d="M25.2218 49.3457C24.7757 49.3457 24.4132 49.7083 24.4132 50.1545C24.4132 50.6007 24.7757 50.9632 25.2218 50.9632C25.6679 50.9632 26.0304 50.6007 26.0304 50.1545C26.0304 49.7083 25.6679 49.3457 25.2218 49.3457Z" fill="url(#paint66_linear_10832_20077)"/>
|
|
176
|
+
<path d="M23.0051 49.396C22.5869 49.396 22.2469 49.736 22.2469 50.1543C22.2469 50.5726 22.5869 50.9126 23.0051 50.9126C23.4233 50.9126 23.7633 50.5726 23.7633 50.1543C23.7633 49.736 23.4233 49.396 23.0051 49.396Z" fill="url(#paint67_linear_10832_20077)"/>
|
|
177
|
+
<path d="M20.7892 50.8634C21.1801 50.8634 21.4969 50.5465 21.4969 50.1556C21.4969 49.7647 21.1801 49.4478 20.7892 49.4478C20.3984 49.4478 20.0815 49.7647 20.0815 50.1556C20.0815 50.5465 20.3984 50.8634 20.7892 50.8634Z" fill="url(#paint68_linear_10832_20077)"/>
|
|
178
|
+
<path d="M18.5725 49.4971C18.21 49.4971 17.9152 49.7906 17.9152 50.1544C17.9152 50.5183 18.21 50.8118 18.5725 50.8118C18.9349 50.8118 19.2297 50.517 19.2297 50.1544C19.2297 49.7919 18.9349 49.4971 18.5725 49.4971Z" fill="url(#paint69_linear_10832_20077)"/>
|
|
179
|
+
<path d="M34.0898 48.8914C34.6474 48.8914 35.1002 48.4385 35.1002 47.8808C35.1002 47.323 34.6474 46.8701 34.0898 46.8701C33.5321 46.8701 33.0793 47.323 33.0793 47.8808C33.0793 48.4385 33.5321 48.8914 34.0898 48.8914Z" fill="url(#paint70_linear_10832_20077)"/>
|
|
180
|
+
<path d="M31.873 48.8398C32.4028 48.8398 32.833 48.4095 32.833 47.8796C32.833 47.3497 32.4028 46.9194 31.873 46.9194C31.3432 46.9194 30.913 47.3497 30.913 47.8796C30.913 48.4095 31.3432 48.8398 31.873 48.8398Z" fill="url(#paint71_linear_10832_20077)"/>
|
|
181
|
+
<path d="M36.3056 46.6671C36.8915 46.6671 37.3665 46.192 37.3665 45.606C37.3665 45.02 36.8915 44.5449 36.3056 44.5449C35.7197 44.5449 35.2448 45.02 35.2448 45.606C35.2448 46.192 35.7197 46.6671 36.3056 46.6671Z" fill="url(#paint72_linear_10832_20077)"/>
|
|
182
|
+
<path d="M34.0898 46.6175C34.6474 46.6175 35.1002 46.1646 35.1002 45.6068C35.1002 45.049 34.6474 44.5962 34.0898 44.5962C33.5321 44.5962 33.0793 45.049 33.0793 45.6068C33.0793 46.1646 33.5321 46.6175 34.0898 46.6175Z" fill="url(#paint73_linear_10832_20077)"/>
|
|
183
|
+
<path d="M39.6364 43.3342C39.6364 42.7207 39.1385 42.2227 38.5251 42.2227C37.9117 42.2227 37.4138 42.7207 37.4138 43.3342C37.4138 43.9478 37.9117 44.4458 38.5251 44.4458C39.1385 44.4458 39.6364 43.9478 39.6364 43.3342Z" fill="url(#paint74_linear_10832_20077)"/>
|
|
184
|
+
<path d="M36.3056 44.3971C36.8912 44.3971 37.3665 43.9217 37.3665 43.336C37.3665 42.7503 36.8912 42.2749 36.3056 42.2749C35.7201 42.2749 35.2448 42.7503 35.2448 43.336C35.2448 43.9217 35.7201 44.3971 36.3056 44.3971Z" fill="url(#paint75_linear_10832_20077)"/>
|
|
185
|
+
<path d="M34.0898 44.3455C34.6474 44.3455 35.1002 43.8926 35.1002 43.3349C35.1002 42.7771 34.6474 42.3242 34.0898 42.3242C33.5321 42.3242 33.0793 42.7771 33.0793 43.3349C33.0793 43.8926 33.5321 44.3455 34.0898 44.3455Z" fill="url(#paint76_linear_10832_20077)"/>
|
|
186
|
+
<path d="M29.6572 35.1505C30.1591 35.1505 30.5667 34.7428 30.5667 34.2408C30.5667 33.7388 30.1591 33.3311 29.6572 33.3311C29.1553 33.3311 28.7477 33.7388 28.7477 34.2408C28.7477 34.7428 29.1553 35.1505 29.6572 35.1505Z" fill="url(#paint77_linear_10832_20077)"/>
|
|
187
|
+
<path d="M23.0051 33.4819C22.5869 33.4819 22.2469 33.8219 22.2469 34.2402C22.2469 34.6586 22.5869 34.9985 23.0051 34.9985C23.4233 34.9985 23.7633 34.6586 23.7633 34.2402C23.7633 33.8219 23.4233 33.4819 23.0051 33.4819Z" fill="url(#paint78_linear_10832_20077)"/>
|
|
188
|
+
<path d="M20.7892 34.9494C21.1801 34.9494 21.4969 34.6325 21.4969 34.2415C21.4969 33.8506 21.1801 33.5337 20.7892 33.5337C20.3984 33.5337 20.0815 33.8506 20.0815 34.2415C20.0815 34.6325 20.3984 34.9494 20.7892 34.9494Z" fill="url(#paint79_linear_10832_20077)"/>
|
|
189
|
+
<path d="M16.3566 32.498C16.022 32.498 15.7498 32.769 15.7498 33.105C15.7498 33.441 16.0207 33.7119 16.3566 33.7119C16.6925 33.7119 16.9634 33.441 16.9634 33.105C16.9634 32.769 16.6925 32.498 16.3566 32.498Z" fill="url(#paint80_linear_10832_20077)"/>
|
|
190
|
+
<path d="M31.873 37.474C32.4028 37.474 32.833 37.0438 32.833 36.5139C32.833 35.984 32.4028 35.5537 31.873 35.5537C31.3432 35.5537 30.913 35.984 30.913 36.5139C30.913 37.0438 31.3432 37.474 31.873 37.474Z" fill="url(#paint81_linear_10832_20077)"/>
|
|
191
|
+
<path d="M29.6572 37.4239C30.1591 37.4239 30.5667 37.0162 30.5667 36.5142C30.5667 36.0122 30.1591 35.6045 29.6572 35.6045C29.1553 35.6045 28.7477 36.0122 28.7477 36.5142C28.7477 37.0162 29.1553 37.4239 29.6572 37.4239Z" fill="url(#paint82_linear_10832_20077)"/>
|
|
192
|
+
<path d="M34.0898 39.7996C34.6474 39.7996 35.1002 39.3467 35.1002 38.789C35.1002 38.2312 34.6474 37.7783 34.0898 37.7783C33.5321 37.7783 33.0793 38.2312 33.0793 38.789C33.0793 39.3467 33.5321 39.7996 34.0898 39.7996Z" fill="url(#paint83_linear_10832_20077)"/>
|
|
193
|
+
<path d="M31.873 39.7475C32.4028 39.7475 32.833 39.3172 32.833 38.7873C32.833 38.2574 32.4028 37.8271 31.873 37.8271C31.3432 37.8271 30.913 38.2574 30.913 38.7873C30.913 39.3172 31.3432 39.7475 31.873 39.7475Z" fill="url(#paint84_linear_10832_20077)"/>
|
|
194
|
+
<path d="M29.6572 39.6964C30.1591 39.6964 30.5667 39.2886 30.5667 38.7867C30.5667 38.2847 30.1591 37.877 29.6572 37.877C29.1553 37.877 28.7477 38.2847 28.7477 38.7867C28.7477 39.2886 29.1553 39.6964 29.6572 39.6964Z" fill="url(#paint85_linear_10832_20077)"/>
|
|
195
|
+
<path d="M36.3056 42.1212C36.8915 42.1212 37.3665 41.6461 37.3665 41.0601C37.3665 40.4741 36.8915 39.999 36.3056 39.999C35.7197 39.999 35.2448 40.4741 35.2448 41.0601C35.2448 41.6461 35.7197 42.1212 36.3056 42.1212Z" fill="url(#paint86_linear_10832_20077)"/>
|
|
196
|
+
<path d="M34.0898 42.0716C34.6474 42.0716 35.1002 41.6187 35.1002 41.0609C35.1002 40.5032 34.6474 40.0503 34.0898 40.0503C33.5321 40.0503 33.0793 40.5032 33.0793 41.0609C33.0793 41.6187 33.5321 42.0716 34.0898 42.0716Z" fill="url(#paint87_linear_10832_20077)"/>
|
|
197
|
+
<path d="M31.873 42.0214C32.4028 42.0214 32.833 41.5911 32.833 41.0612C32.833 40.5314 32.4028 40.1011 31.873 40.1011C31.3432 40.1011 30.913 40.5314 30.913 41.0612C30.913 41.5911 31.3432 42.0214 31.873 42.0214Z" fill="url(#paint88_linear_10832_20077)"/>
|
|
198
|
+
<path d="M27.4404 26.562C26.9664 26.562 26.5814 26.9471 26.5814 27.4212C26.5814 27.8954 26.9664 28.2805 27.4404 28.2805C27.9144 28.2805 28.2995 27.8954 28.2995 27.4212C28.2995 26.9471 27.9144 26.562 27.4404 26.562Z" fill="url(#paint89_linear_10832_20077)"/>
|
|
199
|
+
<path d="M27.4404 31.1074C26.9664 31.1074 26.5814 31.4926 26.5814 31.9667C26.5814 32.4408 26.9664 32.8259 27.4404 32.8259C27.9144 32.8259 28.2995 32.4408 28.2995 31.9667C28.2995 31.4926 27.9144 31.1074 27.4404 31.1074Z" fill="url(#paint90_linear_10832_20077)"/>
|
|
200
|
+
<path d="M27.4404 33.3799C26.9664 33.3799 26.5814 33.765 26.5814 34.2391C26.5814 34.7132 26.9664 35.0984 27.4404 35.0984C27.9144 35.0984 28.2995 34.7132 28.2995 34.2391C28.2995 33.765 27.9144 33.3799 27.4404 33.3799Z" fill="url(#paint91_linear_10832_20077)"/>
|
|
201
|
+
<path d="M27.4404 35.6558C26.9664 35.6558 26.5814 36.0409 26.5814 36.515C26.5814 36.9891 26.9664 37.3742 27.4404 37.3742C27.9144 37.3742 28.2995 36.9891 28.2995 36.515C28.2995 36.0409 27.9144 35.6558 27.4404 35.6558Z" fill="url(#paint92_linear_10832_20077)"/>
|
|
202
|
+
<path d="M27.4404 28.834C26.9664 28.834 26.5814 29.2191 26.5814 29.6932C26.5814 30.1673 26.9664 30.5525 27.4404 30.5525C27.9144 30.5525 28.2995 30.1673 28.2995 29.6932C28.2995 29.2191 27.9144 28.834 27.4404 28.834Z" fill="url(#paint93_linear_10832_20077)"/>
|
|
203
|
+
<path d="M25.2218 27.7495C24.7757 27.7495 24.4132 28.1121 24.4132 28.5583C24.4132 29.0045 24.7757 29.3671 25.2218 29.3671C25.6679 29.3671 26.0304 29.0045 26.0304 28.5583C26.0304 28.1121 25.6679 27.7495 25.2218 27.7495Z" fill="url(#paint94_linear_10832_20077)"/>
|
|
204
|
+
<path d="M25.2218 32.2959C24.7757 32.2959 24.4132 32.6585 24.4132 33.1047C24.4132 33.5509 24.7757 33.9134 25.2218 33.9134C25.6679 33.9134 26.0304 33.5509 26.0304 33.1047C26.0304 32.6585 25.6679 32.2959 25.2218 32.2959Z" fill="url(#paint95_linear_10832_20077)"/>
|
|
205
|
+
<path d="M25.2218 34.5684C24.7757 34.5684 24.4132 34.9309 24.4132 35.3771C24.4132 35.8233 24.7757 36.1859 25.2218 36.1859C25.6679 36.1859 26.0304 35.8233 26.0304 35.3771C26.0304 34.9309 25.6679 34.5684 25.2218 34.5684Z" fill="url(#paint96_linear_10832_20077)"/>
|
|
206
|
+
<path d="M25.2218 30.0229C24.7757 30.0229 24.4132 30.3855 24.4132 30.8317C24.4132 30.9991 24.4637 31.1544 24.5513 31.2833C24.696 31.4984 24.943 31.6392 25.2218 31.6392C25.5006 31.6392 25.7463 31.4984 25.8923 31.2833C25.98 31.1544 26.0304 30.9991 26.0304 30.8317C26.0304 30.3855 25.6679 30.0229 25.2218 30.0229Z" fill="url(#paint97_linear_10832_20077)"/>
|
|
207
|
+
<path d="M23.1578 31.2244C23.1087 31.2138 23.0569 31.2085 23.0051 31.2085C22.9533 31.2085 22.9015 31.2138 22.8524 31.2244C22.5072 31.2948 22.2469 31.6003 22.2469 31.9668C22.2469 32.3333 22.5072 32.6388 22.8524 32.7092C22.9015 32.7198 22.9533 32.7251 23.0051 32.7251C23.0569 32.7251 23.1087 32.7198 23.1578 32.7092C23.503 32.6388 23.7633 32.3333 23.7633 31.9668C23.7633 31.6003 23.503 31.2948 23.1578 31.2244Z" fill="url(#paint98_linear_10832_20077)"/>
|
|
208
|
+
<path d="M21.1849 31.3816C21.0721 31.3059 20.9353 31.2607 20.7892 31.2607C20.6432 31.2607 20.5064 31.3059 20.3936 31.3816C20.205 31.5091 20.0815 31.7242 20.0815 31.9686C20.0815 32.1638 20.1612 32.3404 20.2887 32.4692C20.4161 32.5967 20.5941 32.6764 20.7892 32.6764C20.9844 32.6764 21.161 32.5967 21.2898 32.4692C21.4173 32.3418 21.4969 32.1638 21.4969 31.9686C21.4969 31.7242 21.3735 31.5091 21.1849 31.3816Z" fill="url(#paint99_linear_10832_20077)"/>
|
|
209
|
+
<path d="M18.5725 32.4463C18.21 32.4463 17.9152 32.7398 17.9152 33.1037C17.9152 33.4675 18.21 33.761 18.5725 33.761C18.9349 33.761 19.2297 33.4662 19.2297 33.1037C19.2297 32.7411 18.9349 32.4463 18.5725 32.4463Z" fill="url(#paint100_linear_10832_20077)"/>
|
|
210
|
+
<path d="M18.5747 30.1743C18.3477 30.1743 18.1485 30.2899 18.0304 30.4638C17.96 30.5687 17.9188 30.6949 17.9188 30.8317C17.9188 31.1942 18.2136 31.4891 18.5761 31.4891C18.9385 31.4891 19.2333 31.1956 19.2333 30.8317C19.2333 30.6962 19.1922 30.5687 19.1218 30.4638C19.0036 30.2885 18.8044 30.1743 18.5774 30.1743H18.5747Z" fill="url(#paint101_linear_10832_20077)"/>
|
|
211
|
+
<path d="M12.4165 31.8658C12.4099 31.8326 12.3993 31.8007 12.3873 31.7715C12.3621 31.7104 12.3249 31.6559 12.2785 31.6108C12.1868 31.5192 12.0607 31.4634 11.9213 31.4634C11.7819 31.4634 11.6557 31.5205 11.5641 31.6108C11.519 31.6559 11.4818 31.7104 11.4552 31.7715C11.442 31.802 11.4327 31.8339 11.426 31.8658C11.4194 31.899 11.4154 31.9322 11.4154 31.968C11.4154 32.0026 11.4194 32.0371 11.426 32.0703C11.4327 32.1035 11.4433 32.1354 11.4552 32.1646C11.5323 32.3465 11.7115 32.4727 11.9213 32.4727C12.1311 32.4727 12.3103 32.3452 12.3873 32.1646C12.4006 32.134 12.4099 32.1022 12.4165 32.0703C12.4232 32.0371 12.4272 32.0039 12.4272 31.968C12.4272 31.9335 12.4232 31.899 12.4165 31.8658Z" fill="url(#paint102_linear_10832_20077)"/>
|
|
212
|
+
<path d="M9.70542 31.5132C9.45448 31.5132 9.25 31.7164 9.25 31.9687C9.25 32.2197 9.45315 32.4242 9.70542 32.4242C9.9577 32.4242 10.1608 32.221 10.1608 31.9687C10.1608 31.7177 9.9577 31.5132 9.70542 31.5132Z" fill="url(#paint103_linear_10832_20077)"/>
|
|
213
|
+
<path d="M14.1371 32.5488C13.8304 32.5488 13.5808 32.7972 13.5808 33.1053C13.5808 33.4134 13.8291 33.6617 14.1371 33.6617C14.4452 33.6617 14.6935 33.4134 14.6935 33.1053C14.6935 32.7972 14.4452 32.5488 14.1371 32.5488Z" fill="url(#paint104_linear_10832_20077)"/>
|
|
214
|
+
</g>
|
|
215
|
+
<defs>
|
|
216
|
+
<linearGradient id="paint0_linear_10832_20077" x1="9.24835" y1="31.9675" x2="56.7493" y2="31.9675" gradientUnits="userSpaceOnUse">
|
|
217
|
+
<stop stop-color="#404040"/>
|
|
218
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
219
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
220
|
+
</linearGradient>
|
|
221
|
+
<linearGradient id="paint1_linear_10832_20077" x1="9.24908" y1="31.9673" x2="56.75" y2="31.9673" gradientUnits="userSpaceOnUse">
|
|
222
|
+
<stop stop-color="#404040"/>
|
|
223
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
224
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
225
|
+
</linearGradient>
|
|
226
|
+
<linearGradient id="paint2_linear_10832_20077" x1="9.25133" y1="31.9675" x2="56.7522" y2="31.9675" gradientUnits="userSpaceOnUse">
|
|
227
|
+
<stop stop-color="#404040"/>
|
|
228
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
229
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
230
|
+
</linearGradient>
|
|
231
|
+
<linearGradient id="paint3_linear_10832_20077" x1="9.24878" y1="31.9683" x2="56.7497" y2="31.9683" gradientUnits="userSpaceOnUse">
|
|
232
|
+
<stop stop-color="#404040"/>
|
|
233
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
234
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
235
|
+
</linearGradient>
|
|
236
|
+
<linearGradient id="paint4_linear_10832_20077" x1="9.24944" y1="31.9671" x2="56.7503" y2="31.9671" gradientUnits="userSpaceOnUse">
|
|
237
|
+
<stop stop-color="#404040"/>
|
|
238
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
239
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
240
|
+
</linearGradient>
|
|
241
|
+
<linearGradient id="paint5_linear_10832_20077" x1="9.24961" y1="31.966" x2="56.7505" y2="31.966" gradientUnits="userSpaceOnUse">
|
|
242
|
+
<stop stop-color="#404040"/>
|
|
243
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
244
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
245
|
+
</linearGradient>
|
|
246
|
+
<linearGradient id="paint6_linear_10832_20077" x1="9.25021" y1="31.9678" x2="56.7511" y2="31.9678" gradientUnits="userSpaceOnUse">
|
|
247
|
+
<stop stop-color="#404040"/>
|
|
248
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
249
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
250
|
+
</linearGradient>
|
|
251
|
+
<linearGradient id="paint7_linear_10832_20077" x1="9.25171" y1="31.9671" x2="56.7527" y2="31.9671" gradientUnits="userSpaceOnUse">
|
|
252
|
+
<stop stop-color="#404040"/>
|
|
253
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
254
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
255
|
+
</linearGradient>
|
|
256
|
+
<linearGradient id="paint8_linear_10832_20077" x1="9.2483" y1="31.9684" x2="56.7492" y2="31.9684" gradientUnits="userSpaceOnUse">
|
|
257
|
+
<stop stop-color="#404040"/>
|
|
258
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
259
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
260
|
+
</linearGradient>
|
|
261
|
+
<linearGradient id="paint9_linear_10832_20077" x1="9.24982" y1="31.9673" x2="56.7507" y2="31.9673" gradientUnits="userSpaceOnUse">
|
|
262
|
+
<stop stop-color="#404040"/>
|
|
263
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
264
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
265
|
+
</linearGradient>
|
|
266
|
+
<linearGradient id="paint10_linear_10832_20077" x1="9.25133" y1="31.9661" x2="56.7521" y2="31.9661" gradientUnits="userSpaceOnUse">
|
|
267
|
+
<stop stop-color="#404040"/>
|
|
268
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
269
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
270
|
+
</linearGradient>
|
|
271
|
+
<linearGradient id="paint11_linear_10832_20077" x1="9.25072" y1="31.9665" x2="56.7517" y2="31.9665" gradientUnits="userSpaceOnUse">
|
|
272
|
+
<stop stop-color="#404040"/>
|
|
273
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
274
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
275
|
+
</linearGradient>
|
|
276
|
+
<linearGradient id="paint12_linear_10832_20077" x1="9.25133" y1="31.9664" x2="56.7522" y2="31.9664" gradientUnits="userSpaceOnUse">
|
|
277
|
+
<stop stop-color="#404040"/>
|
|
278
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
279
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
280
|
+
</linearGradient>
|
|
281
|
+
<linearGradient id="paint13_linear_10832_20077" x1="9.24878" y1="31.9676" x2="56.7497" y2="31.9676" gradientUnits="userSpaceOnUse">
|
|
282
|
+
<stop stop-color="#404040"/>
|
|
283
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
284
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
285
|
+
</linearGradient>
|
|
286
|
+
<linearGradient id="paint14_linear_10832_20077" x1="9.24944" y1="31.9675" x2="56.7503" y2="31.9675" gradientUnits="userSpaceOnUse">
|
|
287
|
+
<stop stop-color="#404040"/>
|
|
288
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
289
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
290
|
+
</linearGradient>
|
|
291
|
+
<linearGradient id="paint15_linear_10832_20077" x1="9.24961" y1="31.9683" x2="56.7505" y2="31.9683" gradientUnits="userSpaceOnUse">
|
|
292
|
+
<stop stop-color="#404040"/>
|
|
293
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
294
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
295
|
+
</linearGradient>
|
|
296
|
+
<linearGradient id="paint16_linear_10832_20077" x1="9.25021" y1="31.9671" x2="56.7511" y2="31.9671" gradientUnits="userSpaceOnUse">
|
|
297
|
+
<stop stop-color="#404040"/>
|
|
298
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
299
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
300
|
+
</linearGradient>
|
|
301
|
+
<linearGradient id="paint17_linear_10832_20077" x1="9.25171" y1="31.966" x2="56.7527" y2="31.966" gradientUnits="userSpaceOnUse">
|
|
302
|
+
<stop stop-color="#404040"/>
|
|
303
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
304
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
305
|
+
</linearGradient>
|
|
306
|
+
<linearGradient id="paint18_linear_10832_20077" x1="9.2483" y1="31.9678" x2="56.7492" y2="31.9678" gradientUnits="userSpaceOnUse">
|
|
307
|
+
<stop stop-color="#404040"/>
|
|
308
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
309
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
310
|
+
</linearGradient>
|
|
311
|
+
<linearGradient id="paint19_linear_10832_20077" x1="9.24917" y1="31.968" x2="56.7501" y2="31.968" gradientUnits="userSpaceOnUse">
|
|
312
|
+
<stop stop-color="#404040"/>
|
|
313
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
314
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
315
|
+
</linearGradient>
|
|
316
|
+
<linearGradient id="paint20_linear_10832_20077" x1="9.25072" y1="31.9674" x2="56.7517" y2="31.9674" gradientUnits="userSpaceOnUse">
|
|
317
|
+
<stop stop-color="#404040"/>
|
|
318
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
319
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
320
|
+
</linearGradient>
|
|
321
|
+
<linearGradient id="paint21_linear_10832_20077" x1="9.25133" y1="31.9686" x2="56.7522" y2="31.9686" gradientUnits="userSpaceOnUse">
|
|
322
|
+
<stop stop-color="#404040"/>
|
|
323
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
324
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
325
|
+
</linearGradient>
|
|
326
|
+
<linearGradient id="paint22_linear_10832_20077" x1="9.24878" y1="31.9675" x2="56.7497" y2="31.9675" gradientUnits="userSpaceOnUse">
|
|
327
|
+
<stop stop-color="#404040"/>
|
|
328
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
329
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
330
|
+
</linearGradient>
|
|
331
|
+
<linearGradient id="paint23_linear_10832_20077" x1="9.24944" y1="31.9658" x2="56.7503" y2="31.9658" gradientUnits="userSpaceOnUse">
|
|
332
|
+
<stop stop-color="#404040"/>
|
|
333
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
334
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
335
|
+
</linearGradient>
|
|
336
|
+
<linearGradient id="paint24_linear_10832_20077" x1="9.24961" y1="31.9676" x2="56.7505" y2="31.9676" gradientUnits="userSpaceOnUse">
|
|
337
|
+
<stop stop-color="#404040"/>
|
|
338
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
339
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
340
|
+
</linearGradient>
|
|
341
|
+
<linearGradient id="paint25_linear_10832_20077" x1="9.25021" y1="31.9675" x2="56.7511" y2="31.9675" gradientUnits="userSpaceOnUse">
|
|
342
|
+
<stop stop-color="#404040"/>
|
|
343
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
344
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
345
|
+
</linearGradient>
|
|
346
|
+
<linearGradient id="paint26_linear_10832_20077" x1="9.24989" y1="31.9685" x2="56.7508" y2="31.9685" gradientUnits="userSpaceOnUse">
|
|
347
|
+
<stop stop-color="#404040"/>
|
|
348
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
349
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
350
|
+
</linearGradient>
|
|
351
|
+
<linearGradient id="paint27_linear_10832_20077" x1="9.24917" y1="31.9658" x2="56.7501" y2="31.9658" gradientUnits="userSpaceOnUse">
|
|
352
|
+
<stop stop-color="#404040"/>
|
|
353
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
354
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
355
|
+
</linearGradient>
|
|
356
|
+
<linearGradient id="paint28_linear_10832_20077" x1="9.24836" y1="31.9669" x2="56.7493" y2="31.9669" gradientUnits="userSpaceOnUse">
|
|
357
|
+
<stop stop-color="#404040"/>
|
|
358
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
359
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
360
|
+
</linearGradient>
|
|
361
|
+
<linearGradient id="paint29_linear_10832_20077" x1="9.24989" y1="31.9673" x2="56.7508" y2="31.9673" gradientUnits="userSpaceOnUse">
|
|
362
|
+
<stop stop-color="#404040"/>
|
|
363
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
364
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
365
|
+
</linearGradient>
|
|
366
|
+
<linearGradient id="paint30_linear_10832_20077" x1="9.25048" y1="31.9684" x2="56.7514" y2="31.9684" gradientUnits="userSpaceOnUse">
|
|
367
|
+
<stop stop-color="#404040"/>
|
|
368
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
369
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
370
|
+
</linearGradient>
|
|
371
|
+
<linearGradient id="paint31_linear_10832_20077" x1="9.24836" y1="31.9668" x2="56.7493" y2="31.9668" gradientUnits="userSpaceOnUse">
|
|
372
|
+
<stop stop-color="#404040"/>
|
|
373
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
374
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
375
|
+
</linearGradient>
|
|
376
|
+
<linearGradient id="paint32_linear_10832_20077" x1="9.24989" y1="31.9656" x2="56.7508" y2="31.9656" gradientUnits="userSpaceOnUse">
|
|
377
|
+
<stop stop-color="#404040"/>
|
|
378
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
379
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
380
|
+
</linearGradient>
|
|
381
|
+
<linearGradient id="paint33_linear_10832_20077" x1="9.25072" y1="31.968" x2="56.7517" y2="31.968" gradientUnits="userSpaceOnUse">
|
|
382
|
+
<stop stop-color="#404040"/>
|
|
383
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
384
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
385
|
+
</linearGradient>
|
|
386
|
+
<linearGradient id="paint34_linear_10832_20077" x1="9.24944" y1="31.9661" x2="56.7503" y2="31.9661" gradientUnits="userSpaceOnUse">
|
|
387
|
+
<stop stop-color="#404040"/>
|
|
388
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
389
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
390
|
+
</linearGradient>
|
|
391
|
+
<linearGradient id="paint35_linear_10832_20077" x1="9.24961" y1="31.9674" x2="56.7505" y2="31.9674" gradientUnits="userSpaceOnUse">
|
|
392
|
+
<stop stop-color="#404040"/>
|
|
393
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
394
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
395
|
+
</linearGradient>
|
|
396
|
+
<linearGradient id="paint36_linear_10832_20077" x1="9.25171" y1="31.9673" x2="56.7527" y2="31.9673" gradientUnits="userSpaceOnUse">
|
|
397
|
+
<stop stop-color="#404040"/>
|
|
398
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
399
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
400
|
+
</linearGradient>
|
|
401
|
+
<linearGradient id="paint37_linear_10832_20077" x1="9.2483" y1="31.9681" x2="56.7492" y2="31.9681" gradientUnits="userSpaceOnUse">
|
|
402
|
+
<stop stop-color="#404040"/>
|
|
403
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
404
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
405
|
+
</linearGradient>
|
|
406
|
+
<linearGradient id="paint38_linear_10832_20077" x1="9.24917" y1="31.9655" x2="56.7501" y2="31.9655" gradientUnits="userSpaceOnUse">
|
|
407
|
+
<stop stop-color="#404040"/>
|
|
408
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
409
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
410
|
+
</linearGradient>
|
|
411
|
+
<linearGradient id="paint39_linear_10832_20077" x1="9.25072" y1="31.9668" x2="56.7517" y2="31.9668" gradientUnits="userSpaceOnUse">
|
|
412
|
+
<stop stop-color="#404040"/>
|
|
413
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
414
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
415
|
+
</linearGradient>
|
|
416
|
+
<linearGradient id="paint40_linear_10832_20077" x1="9.24989" y1="31.9668" x2="56.7508" y2="31.9668" gradientUnits="userSpaceOnUse">
|
|
417
|
+
<stop stop-color="#404040"/>
|
|
418
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
419
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
420
|
+
</linearGradient>
|
|
421
|
+
<linearGradient id="paint41_linear_10832_20077" x1="9.24917" y1="31.9671" x2="56.7501" y2="31.9671" gradientUnits="userSpaceOnUse">
|
|
422
|
+
<stop stop-color="#404040"/>
|
|
423
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
424
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
425
|
+
</linearGradient>
|
|
426
|
+
<linearGradient id="paint42_linear_10832_20077" x1="9.25072" y1="31.9679" x2="56.7517" y2="31.9679" gradientUnits="userSpaceOnUse">
|
|
427
|
+
<stop stop-color="#404040"/>
|
|
428
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
429
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
430
|
+
</linearGradient>
|
|
431
|
+
<linearGradient id="paint43_linear_10832_20077" x1="9.24836" y1="31.9671" x2="56.7493" y2="31.9671" gradientUnits="userSpaceOnUse">
|
|
432
|
+
<stop stop-color="#404040"/>
|
|
433
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
434
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
435
|
+
</linearGradient>
|
|
436
|
+
<linearGradient id="paint44_linear_10832_20077" x1="9.24989" y1="31.9679" x2="56.7508" y2="31.9679" gradientUnits="userSpaceOnUse">
|
|
437
|
+
<stop stop-color="#404040"/>
|
|
438
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
439
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
440
|
+
</linearGradient>
|
|
441
|
+
<linearGradient id="paint45_linear_10832_20077" x1="9.24917" y1="31.9668" x2="56.7501" y2="31.9668" gradientUnits="userSpaceOnUse">
|
|
442
|
+
<stop stop-color="#404040"/>
|
|
443
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
444
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
445
|
+
</linearGradient>
|
|
446
|
+
<linearGradient id="paint46_linear_10832_20077" x1="9.25133" y1="31.9665" x2="56.7522" y2="31.9665" gradientUnits="userSpaceOnUse">
|
|
447
|
+
<stop stop-color="#404040"/>
|
|
448
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
449
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
450
|
+
</linearGradient>
|
|
451
|
+
<linearGradient id="paint47_linear_10832_20077" x1="9.24878" y1="31.9668" x2="56.7497" y2="31.9668" gradientUnits="userSpaceOnUse">
|
|
452
|
+
<stop stop-color="#404040"/>
|
|
453
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
454
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
455
|
+
</linearGradient>
|
|
456
|
+
<linearGradient id="paint48_linear_10832_20077" x1="9.24944" y1="31.9681" x2="56.7503" y2="31.9681" gradientUnits="userSpaceOnUse">
|
|
457
|
+
<stop stop-color="#404040"/>
|
|
458
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
459
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
460
|
+
</linearGradient>
|
|
461
|
+
<linearGradient id="paint49_linear_10832_20077" x1="9.24961" y1="31.9669" x2="56.7505" y2="31.9669" gradientUnits="userSpaceOnUse">
|
|
462
|
+
<stop stop-color="#404040"/>
|
|
463
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
464
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
465
|
+
</linearGradient>
|
|
466
|
+
<linearGradient id="paint50_linear_10832_20077" x1="9.25021" y1="31.9658" x2="56.7511" y2="31.9658" gradientUnits="userSpaceOnUse">
|
|
467
|
+
<stop stop-color="#404040"/>
|
|
468
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
469
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
470
|
+
</linearGradient>
|
|
471
|
+
<linearGradient id="paint51_linear_10832_20077" x1="9.25171" y1="31.9665" x2="56.7527" y2="31.9665" gradientUnits="userSpaceOnUse">
|
|
472
|
+
<stop stop-color="#404040"/>
|
|
473
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
474
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
475
|
+
</linearGradient>
|
|
476
|
+
<linearGradient id="paint52_linear_10832_20077" x1="9.2483" y1="31.9664" x2="56.7492" y2="31.9664" gradientUnits="userSpaceOnUse">
|
|
477
|
+
<stop stop-color="#404040"/>
|
|
478
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
479
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
480
|
+
</linearGradient>
|
|
481
|
+
<linearGradient id="paint53_linear_10832_20077" x1="9.24982" y1="31.9677" x2="56.7507" y2="31.9677" gradientUnits="userSpaceOnUse">
|
|
482
|
+
<stop stop-color="#404040"/>
|
|
483
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
484
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
485
|
+
</linearGradient>
|
|
486
|
+
<linearGradient id="paint54_linear_10832_20077" x1="9.25133" y1="31.9676" x2="56.7521" y2="31.9676" gradientUnits="userSpaceOnUse">
|
|
487
|
+
<stop stop-color="#404040"/>
|
|
488
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
489
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
490
|
+
</linearGradient>
|
|
491
|
+
<linearGradient id="paint55_linear_10832_20077" x1="9.25072" y1="31.9668" x2="56.7517" y2="31.9668" gradientUnits="userSpaceOnUse">
|
|
492
|
+
<stop stop-color="#404040"/>
|
|
493
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
494
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
495
|
+
</linearGradient>
|
|
496
|
+
<linearGradient id="paint56_linear_10832_20077" x1="9.25133" y1="31.9681" x2="56.7522" y2="31.9681" gradientUnits="userSpaceOnUse">
|
|
497
|
+
<stop stop-color="#404040"/>
|
|
498
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
499
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
500
|
+
</linearGradient>
|
|
501
|
+
<linearGradient id="paint57_linear_10832_20077" x1="9.24878" y1="31.9669" x2="56.7497" y2="31.9669" gradientUnits="userSpaceOnUse">
|
|
502
|
+
<stop stop-color="#404040"/>
|
|
503
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
504
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
505
|
+
</linearGradient>
|
|
506
|
+
<linearGradient id="paint58_linear_10832_20077" x1="9.24944" y1="31.9658" x2="56.7503" y2="31.9658" gradientUnits="userSpaceOnUse">
|
|
507
|
+
<stop stop-color="#404040"/>
|
|
508
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
509
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
510
|
+
</linearGradient>
|
|
511
|
+
<linearGradient id="paint59_linear_10832_20077" x1="9.24961" y1="31.9666" x2="56.7505" y2="31.9666" gradientUnits="userSpaceOnUse">
|
|
512
|
+
<stop stop-color="#404040"/>
|
|
513
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
514
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
515
|
+
</linearGradient>
|
|
516
|
+
<linearGradient id="paint60_linear_10832_20077" x1="9.25021" y1="31.9669" x2="56.7511" y2="31.9669" gradientUnits="userSpaceOnUse">
|
|
517
|
+
<stop stop-color="#404040"/>
|
|
518
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
519
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
520
|
+
</linearGradient>
|
|
521
|
+
<linearGradient id="paint61_linear_10832_20077" x1="9.25171" y1="31.9682" x2="56.7527" y2="31.9682" gradientUnits="userSpaceOnUse">
|
|
522
|
+
<stop stop-color="#404040"/>
|
|
523
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
524
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
525
|
+
</linearGradient>
|
|
526
|
+
<linearGradient id="paint62_linear_10832_20077" x1="9.2483" y1="31.967" x2="56.7492" y2="31.967" gradientUnits="userSpaceOnUse">
|
|
527
|
+
<stop stop-color="#404040"/>
|
|
528
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
529
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
530
|
+
</linearGradient>
|
|
531
|
+
<linearGradient id="paint63_linear_10832_20077" x1="9.24917" y1="31.9681" x2="56.7501" y2="31.9681" gradientUnits="userSpaceOnUse">
|
|
532
|
+
<stop stop-color="#404040"/>
|
|
533
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
534
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
535
|
+
</linearGradient>
|
|
536
|
+
<linearGradient id="paint64_linear_10832_20077" x1="9.25072" y1="31.9669" x2="56.7517" y2="31.9669" gradientUnits="userSpaceOnUse">
|
|
537
|
+
<stop stop-color="#404040"/>
|
|
538
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
539
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
540
|
+
</linearGradient>
|
|
541
|
+
<linearGradient id="paint65_linear_10832_20077" x1="9.25133" y1="31.9658" x2="56.7522" y2="31.9658" gradientUnits="userSpaceOnUse">
|
|
542
|
+
<stop stop-color="#404040"/>
|
|
543
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
544
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
545
|
+
</linearGradient>
|
|
546
|
+
<linearGradient id="paint66_linear_10832_20077" x1="9.24878" y1="31.9671" x2="56.7497" y2="31.9671" gradientUnits="userSpaceOnUse">
|
|
547
|
+
<stop stop-color="#404040"/>
|
|
548
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
549
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
550
|
+
</linearGradient>
|
|
551
|
+
<linearGradient id="paint67_linear_10832_20077" x1="9.24944" y1="31.9669" x2="56.7503" y2="31.9669" gradientUnits="userSpaceOnUse">
|
|
552
|
+
<stop stop-color="#404040"/>
|
|
553
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
554
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
555
|
+
</linearGradient>
|
|
556
|
+
<linearGradient id="paint68_linear_10832_20077" x1="9.24961" y1="31.9682" x2="56.7505" y2="31.9682" gradientUnits="userSpaceOnUse">
|
|
557
|
+
<stop stop-color="#404040"/>
|
|
558
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
559
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
560
|
+
</linearGradient>
|
|
561
|
+
<linearGradient id="paint69_linear_10832_20077" x1="9.25021" y1="31.9671" x2="56.7511" y2="31.9671" gradientUnits="userSpaceOnUse">
|
|
562
|
+
<stop stop-color="#404040"/>
|
|
563
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
564
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
565
|
+
</linearGradient>
|
|
566
|
+
<linearGradient id="paint70_linear_10832_20077" x1="9.24989" y1="31.9669" x2="56.7508" y2="31.9669" gradientUnits="userSpaceOnUse">
|
|
567
|
+
<stop stop-color="#404040"/>
|
|
568
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
569
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
570
|
+
</linearGradient>
|
|
571
|
+
<linearGradient id="paint71_linear_10832_20077" x1="9.24917" y1="31.9658" x2="56.7501" y2="31.9658" gradientUnits="userSpaceOnUse">
|
|
572
|
+
<stop stop-color="#404040"/>
|
|
573
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
574
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
575
|
+
</linearGradient>
|
|
576
|
+
<linearGradient id="paint72_linear_10832_20077" x1="9.24836" y1="31.9658" x2="56.7493" y2="31.9658" gradientUnits="userSpaceOnUse">
|
|
577
|
+
<stop stop-color="#404040"/>
|
|
578
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
579
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
580
|
+
</linearGradient>
|
|
581
|
+
<linearGradient id="paint73_linear_10832_20077" x1="9.24989" y1="31.9666" x2="56.7508" y2="31.9666" gradientUnits="userSpaceOnUse">
|
|
582
|
+
<stop stop-color="#404040"/>
|
|
583
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
584
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
585
|
+
</linearGradient>
|
|
586
|
+
<linearGradient id="paint74_linear_10832_20077" x1="9.25048" y1="31.9676" x2="56.7514" y2="31.9676" gradientUnits="userSpaceOnUse">
|
|
587
|
+
<stop stop-color="#404040"/>
|
|
588
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
589
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
590
|
+
</linearGradient>
|
|
591
|
+
<linearGradient id="paint75_linear_10832_20077" x1="9.24836" y1="31.9681" x2="56.7493" y2="31.9681" gradientUnits="userSpaceOnUse">
|
|
592
|
+
<stop stop-color="#404040"/>
|
|
593
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
594
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
595
|
+
</linearGradient>
|
|
596
|
+
<linearGradient id="paint76_linear_10832_20077" x1="9.24989" y1="31.9669" x2="56.7508" y2="31.9669" gradientUnits="userSpaceOnUse">
|
|
597
|
+
<stop stop-color="#404040"/>
|
|
598
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
599
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
600
|
+
</linearGradient>
|
|
601
|
+
<linearGradient id="paint77_linear_10832_20077" x1="9.25072" y1="31.9672" x2="56.7517" y2="31.9672" gradientUnits="userSpaceOnUse">
|
|
602
|
+
<stop stop-color="#404040"/>
|
|
603
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
604
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
605
|
+
</linearGradient>
|
|
606
|
+
<linearGradient id="paint78_linear_10832_20077" x1="9.24944" y1="31.9666" x2="56.7503" y2="31.9666" gradientUnits="userSpaceOnUse">
|
|
607
|
+
<stop stop-color="#404040"/>
|
|
608
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
609
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
610
|
+
</linearGradient>
|
|
611
|
+
<linearGradient id="paint79_linear_10832_20077" x1="9.24961" y1="31.9679" x2="56.7505" y2="31.9679" gradientUnits="userSpaceOnUse">
|
|
612
|
+
<stop stop-color="#404040"/>
|
|
613
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
614
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
615
|
+
</linearGradient>
|
|
616
|
+
<linearGradient id="paint80_linear_10832_20077" x1="9.25171" y1="31.9668" x2="56.7527" y2="31.9668" gradientUnits="userSpaceOnUse">
|
|
617
|
+
<stop stop-color="#404040"/>
|
|
618
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
619
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
620
|
+
</linearGradient>
|
|
621
|
+
<linearGradient id="paint81_linear_10832_20077" x1="9.24917" y1="31.9667" x2="56.7501" y2="31.9667" gradientUnits="userSpaceOnUse">
|
|
622
|
+
<stop stop-color="#404040"/>
|
|
623
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
624
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
625
|
+
</linearGradient>
|
|
626
|
+
<linearGradient id="paint82_linear_10832_20077" x1="9.25072" y1="31.967" x2="56.7517" y2="31.967" gradientUnits="userSpaceOnUse">
|
|
627
|
+
<stop stop-color="#404040"/>
|
|
628
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
629
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
630
|
+
</linearGradient>
|
|
631
|
+
<linearGradient id="paint83_linear_10832_20077" x1="9.24989" y1="31.9682" x2="56.7508" y2="31.9682" gradientUnits="userSpaceOnUse">
|
|
632
|
+
<stop stop-color="#404040"/>
|
|
633
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
634
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
635
|
+
</linearGradient>
|
|
636
|
+
<linearGradient id="paint84_linear_10832_20077" x1="9.24917" y1="31.9665" x2="56.7501" y2="31.9665" gradientUnits="userSpaceOnUse">
|
|
637
|
+
<stop stop-color="#404040"/>
|
|
638
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
639
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
640
|
+
</linearGradient>
|
|
641
|
+
<linearGradient id="paint85_linear_10832_20077" x1="9.25072" y1="31.9659" x2="56.7517" y2="31.9659" gradientUnits="userSpaceOnUse">
|
|
642
|
+
<stop stop-color="#404040"/>
|
|
643
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
644
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
645
|
+
</linearGradient>
|
|
646
|
+
<linearGradient id="paint86_linear_10832_20077" x1="9.24836" y1="31.9658" x2="56.7493" y2="31.9658" gradientUnits="userSpaceOnUse">
|
|
647
|
+
<stop stop-color="#404040"/>
|
|
648
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
649
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
650
|
+
</linearGradient>
|
|
651
|
+
<linearGradient id="paint87_linear_10832_20077" x1="9.24989" y1="31.9666" x2="56.7508" y2="31.9666" gradientUnits="userSpaceOnUse">
|
|
652
|
+
<stop stop-color="#404040"/>
|
|
653
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
654
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
655
|
+
</linearGradient>
|
|
656
|
+
<linearGradient id="paint88_linear_10832_20077" x1="9.24917" y1="31.9669" x2="56.7501" y2="31.9669" gradientUnits="userSpaceOnUse">
|
|
657
|
+
<stop stop-color="#404040"/>
|
|
658
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
659
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
660
|
+
</linearGradient>
|
|
661
|
+
<linearGradient id="paint89_linear_10832_20077" x1="9.25133" y1="31.9671" x2="56.7522" y2="31.9671" gradientUnits="userSpaceOnUse">
|
|
662
|
+
<stop stop-color="#404040"/>
|
|
663
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
664
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
665
|
+
</linearGradient>
|
|
666
|
+
<linearGradient id="paint90_linear_10832_20077" x1="9.25133" y1="31.9667" x2="56.7522" y2="31.9667" gradientUnits="userSpaceOnUse">
|
|
667
|
+
<stop stop-color="#404040"/>
|
|
668
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
669
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
670
|
+
</linearGradient>
|
|
671
|
+
<linearGradient id="paint91_linear_10832_20077" x1="9.25133" y1="31.9655" x2="56.7522" y2="31.9655" gradientUnits="userSpaceOnUse">
|
|
672
|
+
<stop stop-color="#404040"/>
|
|
673
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
674
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
675
|
+
</linearGradient>
|
|
676
|
+
<linearGradient id="paint92_linear_10832_20077" x1="9.25133" y1="31.9678" x2="56.7522" y2="31.9678" gradientUnits="userSpaceOnUse">
|
|
677
|
+
<stop stop-color="#404040"/>
|
|
678
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
679
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
680
|
+
</linearGradient>
|
|
681
|
+
<linearGradient id="paint93_linear_10832_20077" x1="9.25133" y1="31.9668" x2="56.7522" y2="31.9668" gradientUnits="userSpaceOnUse">
|
|
682
|
+
<stop stop-color="#404040"/>
|
|
683
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
684
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
685
|
+
</linearGradient>
|
|
686
|
+
<linearGradient id="paint94_linear_10832_20077" x1="9.24878" y1="31.9673" x2="56.7497" y2="31.9673" gradientUnits="userSpaceOnUse">
|
|
687
|
+
<stop stop-color="#404040"/>
|
|
688
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
689
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
690
|
+
</linearGradient>
|
|
691
|
+
<linearGradient id="paint95_linear_10832_20077" x1="9.24878" y1="31.9679" x2="56.7497" y2="31.9679" gradientUnits="userSpaceOnUse">
|
|
692
|
+
<stop stop-color="#404040"/>
|
|
693
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
694
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
695
|
+
</linearGradient>
|
|
696
|
+
<linearGradient id="paint96_linear_10832_20077" x1="9.24878" y1="31.9667" x2="56.7497" y2="31.9667" gradientUnits="userSpaceOnUse">
|
|
697
|
+
<stop stop-color="#404040"/>
|
|
698
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
699
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
700
|
+
</linearGradient>
|
|
701
|
+
<linearGradient id="paint97_linear_10832_20077" x1="9.24878" y1="31.9685" x2="56.7497" y2="31.9685" gradientUnits="userSpaceOnUse">
|
|
702
|
+
<stop stop-color="#404040"/>
|
|
703
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
704
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
705
|
+
</linearGradient>
|
|
706
|
+
<linearGradient id="paint98_linear_10832_20077" x1="9.24944" y1="31.9668" x2="56.7503" y2="31.9668" gradientUnits="userSpaceOnUse">
|
|
707
|
+
<stop stop-color="#404040"/>
|
|
708
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
709
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
710
|
+
</linearGradient>
|
|
711
|
+
<linearGradient id="paint99_linear_10832_20077" x1="9.25093" y1="31.9673" x2="56.7519" y2="31.9673" gradientUnits="userSpaceOnUse">
|
|
712
|
+
<stop stop-color="#404040"/>
|
|
713
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
714
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
715
|
+
</linearGradient>
|
|
716
|
+
<linearGradient id="paint100_linear_10832_20077" x1="9.25021" y1="31.9669" x2="56.7511" y2="31.9669" gradientUnits="userSpaceOnUse">
|
|
717
|
+
<stop stop-color="#404040"/>
|
|
718
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
719
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
720
|
+
</linearGradient>
|
|
721
|
+
<linearGradient id="paint101_linear_10832_20077" x1="9.25249" y1="31.9672" x2="56.7534" y2="31.9672" gradientUnits="userSpaceOnUse">
|
|
722
|
+
<stop stop-color="#404040"/>
|
|
723
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
724
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
725
|
+
</linearGradient>
|
|
726
|
+
<linearGradient id="paint102_linear_10832_20077" x1="9.24982" y1="31.9667" x2="56.7507" y2="31.9667" gradientUnits="userSpaceOnUse">
|
|
727
|
+
<stop stop-color="#404040"/>
|
|
728
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
729
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
730
|
+
</linearGradient>
|
|
731
|
+
<linearGradient id="paint103_linear_10832_20077" x1="9.25133" y1="31.9674" x2="56.7521" y2="31.9674" gradientUnits="userSpaceOnUse">
|
|
732
|
+
<stop stop-color="#404040"/>
|
|
733
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
734
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
735
|
+
</linearGradient>
|
|
736
|
+
<linearGradient id="paint104_linear_10832_20077" x1="9.2483" y1="31.9671" x2="56.7492" y2="31.9671" gradientUnits="userSpaceOnUse">
|
|
737
|
+
<stop stop-color="#404040"/>
|
|
738
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
739
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
740
|
+
</linearGradient>
|
|
741
|
+
<clipPath id="clip0_10832_20077">
|
|
742
|
+
<rect width="64" height="64" rx="12" fill="white"/>
|
|
743
|
+
</clipPath>
|
|
744
|
+
</defs>
|
|
745
|
+
</svg>
|