insforge 1.2.10 → 1.4.8
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/.claude-plugin/marketplace.json +20 -20
- package/.dockerignore +60 -60
- package/.env.example +83 -77
- package/.github/ISSUE_TEMPLATE/bug_report.yml +36 -36
- package/.github/ISSUE_TEMPLATE/config.yml +11 -11
- package/.github/ISSUE_TEMPLATE/feature_request.yml +26 -26
- package/.github/PULL_REQUEST_TEMPLATE.md +7 -7
- package/.github/copilot-instructions.md +146 -146
- package/.github/workflows/build-image.yml +65 -65
- package/.github/workflows/ci-premerge-check.yml +23 -23
- package/.github/workflows/e2e.yml +63 -63
- package/.github/workflows/lint-and-format.yml +32 -32
- package/.prettierignore +64 -64
- package/CHANGELOG.md +46 -44
- package/CLAUDE_PLUGIN.md +104 -104
- package/CODE_OF_CONDUCT.md +128 -128
- package/CONTRIBUTING.md +125 -125
- package/Dockerfile +30 -30
- package/GITHUB_OAUTH_SETUP.md +49 -49
- package/GOOGLE_OAUTH_SETUP.md +148 -148
- package/LICENSE +201 -201
- package/README.md +182 -182
- package/assets/Dark.svg +23 -23
- package/auth/package.json +30 -28
- package/auth/src/lib/broadcastService.ts +4 -4
- package/auth/src/lib/insforge.ts +8 -0
- package/auth/src/main.tsx +2 -4
- package/auth/src/pages/SignInPage.tsx +5 -2
- package/auth/src/pages/SignUpPage.tsx +5 -2
- package/auth/src/pages/VerifyEmailPage.tsx +18 -0
- package/auth/tsconfig.json +33 -32
- package/auth/tsconfig.node.json +11 -11
- package/backend/package.json +82 -75
- package/backend/src/api/middlewares/rate-limiters.ts +127 -127
- package/backend/src/api/routes/ai/index.routes.ts +475 -468
- package/backend/src/api/routes/auth/index.routes.ts +720 -570
- package/backend/src/api/routes/auth/oauth.routes.ts +478 -448
- package/backend/src/api/routes/database/advance.routes.ts +37 -16
- package/backend/src/api/routes/database/index.routes.ts +80 -1
- package/backend/src/api/routes/database/records.routes.ts +48 -184
- package/backend/src/api/routes/database/rpc.routes.ts +69 -0
- package/backend/src/api/routes/database/tables.routes.ts +0 -14
- package/backend/src/api/routes/deployments/index.routes.ts +192 -0
- package/backend/src/api/routes/docs/index.routes.ts +76 -76
- package/backend/src/api/routes/email/index.routes.ts +35 -0
- package/backend/src/api/routes/functions/index.routes.ts +21 -15
- package/backend/src/api/routes/metadata/index.routes.ts +38 -0
- package/backend/src/api/routes/realtime/channels.routes.ts +81 -0
- package/backend/src/api/routes/realtime/index.routes.ts +12 -0
- package/backend/src/api/routes/realtime/messages.routes.ts +48 -0
- package/backend/src/api/routes/realtime/permissions.routes.ts +19 -0
- package/backend/src/api/routes/storage/index.routes.ts +18 -12
- package/backend/src/api/routes/usage/index.routes.ts +6 -4
- package/backend/src/api/routes/webhooks/index.routes.ts +109 -0
- package/backend/src/infra/database/database.manager.ts +14 -11
- package/backend/src/infra/database/migrations/000_create-base-tables.sql +141 -141
- package/backend/src/infra/database/migrations/001_create-helper-functions.sql +40 -40
- package/backend/src/infra/database/migrations/002_rename-auth-tables.sql +29 -29
- package/backend/src/infra/database/migrations/003_create-users-table.sql +55 -55
- package/backend/src/infra/database/migrations/004_add-reload-postgrest-func.sql +23 -23
- package/backend/src/infra/database/migrations/005_enable-project-admin-modify-users.sql +29 -29
- package/backend/src/infra/database/migrations/006_modify-ai-usage-table.sql +24 -24
- package/backend/src/infra/database/migrations/007_drop-metadata-table.sql +1 -1
- package/backend/src/infra/database/migrations/008_add-system-tables.sql +76 -76
- package/backend/src/infra/database/migrations/009_add-function-secrets.sql +23 -23
- package/backend/src/infra/database/migrations/010_modify-ai-config-modalities.sql +93 -93
- package/backend/src/infra/database/migrations/011_refactor-secrets-table.sql +15 -15
- package/backend/src/infra/database/migrations/012_add-storage-uploaded-by.sql +7 -7
- package/backend/src/infra/database/migrations/013_create-auth-schema-functions.sql +44 -44
- package/backend/src/infra/database/migrations/014_add-updated-at-trigger-user-table.sql +7 -7
- package/backend/src/infra/database/migrations/015_create-auth-config-and-email-otp-tables.sql +59 -59
- package/backend/src/infra/database/migrations/016_update-auth-config-and-email-otp.sql +24 -24
- package/backend/src/infra/database/migrations/017_create-realtime-schema.sql +233 -0
- package/backend/src/infra/database/migrations/018_schema-rework.sql +441 -0
- package/backend/src/infra/database/migrations/019_create-deployments-table.sql +36 -0
- package/backend/src/infra/database/migrations/020_add-audio-modality.sql +11 -0
- package/backend/src/infra/database/migrations/bootstrap/bootstrap-migrations.js +103 -0
- package/backend/src/infra/realtime/realtime.manager.ts +246 -0
- package/backend/src/infra/realtime/webhook-sender.ts +82 -0
- package/backend/src/infra/security/token.manager.ts +216 -125
- package/backend/src/infra/socket/socket.manager.ts +198 -64
- package/backend/src/providers/ai/openrouter.provider.ts +24 -12
- package/backend/src/providers/database/base.provider.ts +39 -0
- package/backend/src/providers/database/cloud.provider.ts +159 -0
- package/backend/src/providers/deployments/vercel.provider.ts +516 -0
- package/backend/src/providers/email/base.provider.ts +4 -7
- package/backend/src/providers/email/cloud.provider.ts +84 -0
- package/backend/src/providers/oauth/apple.provider.ts +266 -0
- package/backend/src/providers/oauth/index.ts +1 -0
- package/backend/src/server.ts +329 -284
- package/backend/src/services/ai/ai-config.service.ts +6 -6
- package/backend/src/services/ai/ai-model.service.ts +60 -60
- package/backend/src/services/ai/ai-usage.service.ts +7 -7
- package/backend/src/services/ai/chat-completion.service.ts +415 -220
- package/backend/src/services/ai/helpers.ts +64 -64
- package/backend/src/services/ai/image-generation.service.ts +3 -3
- package/backend/src/services/ai/index.ts +13 -13
- package/backend/src/services/auth/auth-config.service.ts +4 -4
- package/backend/src/services/auth/auth-otp.service.ts +6 -6
- package/backend/src/services/auth/auth.service.ts +148 -74
- package/backend/src/services/auth/index.ts +4 -4
- package/backend/src/services/auth/oauth-config.service.ts +12 -12
- package/backend/src/services/database/database-advance.service.ts +19 -55
- package/backend/src/services/database/database-table.service.ts +38 -94
- package/backend/src/services/database/database.service.ts +127 -0
- package/backend/src/services/database/postgrest-proxy.service.ts +165 -0
- package/backend/src/services/deployments/deployment.service.ts +693 -0
- package/backend/src/services/email/email.service.ts +5 -7
- package/backend/src/services/functions/function.service.ts +61 -41
- package/backend/src/services/logs/audit.service.ts +10 -10
- package/backend/src/services/realtime/index.ts +3 -0
- package/backend/src/services/realtime/realtime-auth.service.ts +104 -0
- package/backend/src/services/realtime/realtime-channel.service.ts +237 -0
- package/backend/src/services/realtime/realtime-message.service.ts +260 -0
- package/backend/src/services/secrets/secret.service.ts +101 -27
- package/backend/src/services/storage/storage.service.ts +30 -30
- package/backend/src/services/usage/usage.service.ts +6 -6
- package/backend/src/types/ai.ts +8 -0
- package/backend/src/types/auth.ts +16 -1
- package/backend/src/types/database.ts +2 -0
- package/backend/src/types/deployments.ts +33 -0
- package/backend/src/types/realtime.ts +18 -0
- package/backend/src/types/socket.ts +7 -31
- package/backend/src/types/storage.ts +1 -1
- package/backend/src/types/webhooks.ts +45 -0
- package/backend/src/utils/cookies.ts +34 -0
- package/backend/src/utils/environment.ts +0 -14
- package/backend/src/utils/s3-config-loader.ts +64 -0
- package/backend/src/utils/seed.ts +79 -43
- package/backend/src/utils/sql-parser.ts +216 -0
- package/backend/src/utils/utils.ts +114 -114
- package/backend/src/utils/validations.ts +10 -10
- package/backend/tests/README.md +133 -133
- package/backend/tests/cleanup-all-test-data.sh +230 -230
- package/backend/tests/cloud/test-s3-multitenant.sh +131 -131
- package/backend/tests/local/comprehensive-curl-tests.sh +155 -155
- package/backend/tests/local/test-ai-config.sh +129 -129
- package/backend/tests/local/test-ai-usage.sh +80 -80
- package/backend/tests/local/test-auth-router.sh +143 -143
- package/backend/tests/local/test-database-router.sh +222 -222
- package/backend/tests/local/test-e2e.sh +240 -240
- package/backend/tests/local/test-fk-errors.sh +96 -96
- package/backend/tests/local/test-functions.sh +123 -123
- package/backend/tests/local/test-id-field.sh +200 -200
- package/backend/tests/local/test-logs.sh +132 -132
- package/backend/tests/local/test-public-bucket.sh +264 -264
- package/backend/tests/local/test-rpc.sh +141 -0
- package/backend/tests/local/test-secrets.sh +249 -249
- package/backend/tests/local/test-serverless-functions.sh.disabled +325 -325
- package/backend/tests/local/test-traditional-rest.sh +208 -208
- package/backend/tests/manual/README.md +50 -50
- package/backend/tests/manual/create-large-table-simple.sql +10 -10
- package/backend/tests/manual/seed-large-table.sql +100 -100
- package/backend/tests/manual/setup-large-table-extras.sql +33 -33
- package/backend/tests/manual/test-ai-model-plugins.sh +258 -0
- package/backend/tests/manual/test-bulk-upsert.sh +409 -409
- package/backend/tests/manual/test-database-advance.sh +296 -296
- package/backend/tests/manual/test-postgrest-stability.sh +191 -191
- package/backend/tests/manual/test-rawsql-export-import.sh +411 -411
- package/backend/tests/manual/test-rawsql-modes.sh +244 -244
- package/backend/tests/manual/test-universal-storage.sh +263 -263
- package/backend/tests/manual/test-users.sql +17 -17
- package/backend/tests/run-all-tests.sh +139 -139
- package/backend/tests/setup.ts +0 -0
- package/backend/tests/test-config.sh +338 -338
- package/backend/tests/unit/analyze-query.test.ts +697 -0
- package/backend/tests/unit/database-advance.test.ts +326 -0
- package/backend/tests/unit/helpers.test.ts +2 -2
- package/backend/tsconfig.json +22 -22
- package/claude-plugin/.claude-plugin/plugin.json +24 -24
- package/claude-plugin/README.md +133 -133
- package/claude-plugin/skills/insforge-schema-patterns/SKILL.md +273 -270
- package/docker-compose.prod.yml +204 -200
- package/docker-compose.yml +232 -228
- package/docker-init/db/db-init.sql +97 -97
- package/docker-init/db/jwt.sql +5 -5
- package/docker-init/db/postgresql.conf +16 -16
- package/docker-init/logs/vector.yml +236 -236
- package/docs/README.md +44 -44
- package/docs/agent-docs/deployment.md +79 -0
- package/docs/agent-docs/real-time.md +269 -0
- package/docs/changelog.mdx +212 -67
- package/docs/core-concepts/ai/architecture.mdx +350 -372
- package/docs/core-concepts/ai/sdk.mdx +238 -213
- package/docs/core-concepts/authentication/architecture.mdx +276 -278
- package/docs/core-concepts/authentication/sdk.mdx +710 -414
- package/docs/core-concepts/authentication/ui-components/customization.mdx +733 -529
- package/docs/core-concepts/authentication/ui-components/nextjs.mdx +247 -221
- package/docs/core-concepts/authentication/ui-components/react-router.mdx +183 -184
- package/docs/core-concepts/authentication/ui-components/react.mdx +136 -129
- package/docs/core-concepts/database/architecture.mdx +292 -255
- package/docs/core-concepts/database/pgvector.mdx +138 -0
- package/docs/core-concepts/database/sdk.mdx +382 -382
- package/docs/core-concepts/deployments/architecture.mdx +152 -0
- package/docs/core-concepts/email/architecture.mdx +103 -0
- package/docs/core-concepts/email/sdk.mdx +53 -0
- package/docs/core-concepts/functions/architecture.mdx +105 -105
- package/docs/core-concepts/functions/sdk.mdx +183 -184
- package/docs/core-concepts/realtime/architecture.mdx +446 -0
- package/docs/core-concepts/realtime/sdk.mdx +409 -0
- package/docs/core-concepts/storage/architecture.mdx +243 -243
- package/docs/core-concepts/storage/sdk.mdx +253 -253
- package/docs/deployment/README.md +94 -94
- package/docs/deployment/deploy-to-aws-ec2.md +564 -564
- package/docs/deployment/deploy-to-azure-virtual-machines.md +312 -312
- package/docs/deployment/deploy-to-google-cloud-compute-engine.md +613 -613
- package/docs/deployment/deploy-to-render.md +441 -441
- package/docs/deprecated/insforge-auth-api.md +214 -214
- package/docs/deprecated/insforge-auth-sdk.md +99 -99
- package/docs/deprecated/insforge-db-api.md +358 -358
- package/docs/deprecated/insforge-db-sdk.md +139 -139
- package/docs/deprecated/insforge-debug-sdk.md +156 -156
- package/docs/deprecated/insforge-debug.md +64 -64
- package/docs/deprecated/insforge-instructions.md +123 -123
- package/docs/deprecated/insforge-project.md +117 -117
- package/docs/deprecated/insforge-storage-api.md +278 -278
- package/docs/deprecated/insforge-storage-sdk.md +158 -158
- package/docs/docs.json +240 -210
- package/docs/examples/framework-guides/nextjs.mdx +131 -131
- package/docs/examples/framework-guides/nuxt.mdx +165 -165
- package/docs/examples/framework-guides/react.mdx +165 -165
- package/docs/examples/framework-guides/svelte.mdx +153 -153
- package/docs/examples/framework-guides/vue.mdx +159 -159
- package/docs/examples/overview.mdx +67 -67
- package/docs/favicon.png +0 -0
- package/docs/favicon.svg +4 -19
- package/docs/images/changelog/dec-2025/ai-integration.png +0 -0
- package/docs/images/changelog/dec-2025/ai-models.webp +0 -0
- package/docs/images/changelog/dec-2025/alipay-payment.webp +0 -0
- package/docs/images/changelog/dec-2025/apple-login.jpg +0 -0
- package/docs/images/changelog/dec-2025/apple-oauth.mp4 +0 -0
- package/docs/images/changelog/dec-2025/mcp-installer.png +0 -0
- package/docs/images/changelog/dec-2025/moreModels.png +0 -0
- package/docs/images/changelog/dec-2025/multi-region.webp +0 -0
- package/docs/images/changelog/dec-2025/postgres-connection.webp +0 -0
- package/docs/images/changelog/dec-2025/realtime-module.jpg +0 -0
- package/docs/images/changelog/dec-2025/realtime2.png +0 -0
- package/docs/images/icons/ai.svg +4 -4
- package/docs/images/logos/nextjs.svg +4 -4
- package/docs/images/logos/nuxt.svg +4 -4
- package/docs/images/logos/react.svg +5 -5
- package/docs/images/logos/svelte.svg +4 -4
- package/docs/images/logos/vue.svg +5 -5
- package/docs/images/mcp-setup/CC-MCP-1.mp4 +0 -0
- package/docs/images/mcp-setup/CC-MCP-2.mp4 +0 -0
- package/docs/images/mcp-setup/Cursor-MCP-1.mp4 +0 -0
- package/docs/images/mcp-setup/Cursor-MCP-2.mp4 +0 -0
- package/docs/images/mcp-setup/Cursor-MCP-3.mp4 +0 -0
- package/docs/images/mcp-setup/claude-code-connect.png +0 -0
- package/docs/images/mcp-setup/cline-1.png +0 -0
- package/docs/images/mcp-setup/cline-2.png +0 -0
- package/docs/images/mcp-setup/cline-3.png +0 -0
- package/docs/images/mcp-setup/connect-project.png +0 -0
- package/docs/images/mcp-setup/copilot-1.png +0 -0
- package/docs/images/mcp-setup/copilot-2.png +0 -0
- package/docs/images/mcp-setup/copilot-3.png +0 -0
- package/docs/images/mcp-setup/mcp-json-1.png +0 -0
- package/docs/images/mcp-setup/mcp-json-2.png +0 -0
- package/docs/images/mcp-setup/qoder-1.png +0 -0
- package/docs/images/mcp-setup/qoder-2.png +0 -0
- package/docs/images/mcp-setup/roocode-1.png +0 -0
- package/docs/images/mcp-setup/roocode-2.png +0 -0
- package/docs/images/mcp-setup/trae-1.png +0 -0
- package/docs/images/mcp-setup/trae-2.png +0 -0
- package/docs/images/mcp-setup/trae-3.png +0 -0
- package/docs/images/mcp-setup/trae-4.png +0 -0
- package/docs/images/mcp-setup/trae-5.png +0 -0
- package/docs/images/mcp-setup/windsurf-1.png +0 -0
- package/docs/images/mcp-setup/windsurf-2.png +0 -0
- package/docs/insforge-instructions-sdk.md +93 -88
- package/docs/introduction.mdx +46 -45
- package/docs/logo/dark.svg +22 -22
- package/docs/logo/light.svg +20 -20
- package/docs/mcp-setup.mdx +332 -0
- package/docs/oauth-server.mdx +563 -0
- package/docs/partnership.mdx +720 -646
- package/docs/quickstart.mdx +82 -82
- package/docs/showcase.mdx +52 -52
- package/docs/snippets/sdk-installation.mdx +21 -21
- package/docs/snippets/service-icons.mdx +27 -27
- package/docs/vscode-extension.mdx +74 -0
- package/eslint.config.js +1 -0
- package/examples/oauth/frontend-oauth-example.html +250 -250
- package/examples/response-examples.md +443 -443
- package/frontend/components.json +17 -17
- package/frontend/package.json +69 -69
- package/frontend/src/App.tsx +8 -3
- package/frontend/src/assets/icons/checkbox_checked.svg +6 -6
- package/frontend/src/assets/icons/checkbox_undetermined.svg +6 -6
- package/frontend/src/assets/icons/checked.svg +3 -3
- package/frontend/src/assets/icons/connected.svg +3 -3
- package/frontend/src/assets/icons/error.svg +3 -3
- package/frontend/src/assets/icons/loader.svg +9 -9
- package/frontend/src/assets/icons/pencil.svg +4 -4
- package/frontend/src/assets/icons/refresh.svg +4 -4
- package/frontend/src/assets/icons/step_active.svg +3 -3
- package/frontend/src/assets/icons/step_inactive.svg +11 -11
- package/frontend/src/assets/icons/warning.svg +3 -3
- package/frontend/src/assets/logos/antigravity.svg +1 -0
- package/frontend/src/assets/logos/apple.svg +3 -3
- package/frontend/src/assets/logos/claude_code.svg +3 -3
- package/frontend/src/assets/logos/cline.svg +6 -6
- package/frontend/src/assets/logos/copilot.svg +10 -0
- package/frontend/src/assets/logos/cursor.svg +20 -20
- package/frontend/src/assets/logos/deepseek.svg +139 -0
- package/frontend/src/assets/logos/discord.svg +8 -8
- package/frontend/src/assets/logos/facebook.svg +3 -3
- package/frontend/src/assets/logos/gemini.svg +19 -19
- package/frontend/src/assets/logos/github.svg +5 -5
- package/frontend/src/assets/logos/google.svg +13 -13
- package/frontend/src/assets/logos/grok.svg +10 -10
- package/frontend/src/assets/logos/insforge_dark.svg +15 -15
- package/frontend/src/assets/logos/insforge_light.svg +15 -15
- package/frontend/src/assets/logos/instagram.svg +1 -1
- package/frontend/src/assets/logos/kiro.svg +9 -0
- package/frontend/src/assets/logos/linkedin.svg +3 -3
- package/frontend/src/assets/logos/openai.svg +10 -10
- package/frontend/src/assets/logos/qoder.svg +4 -0
- package/frontend/src/assets/logos/qwen.svg +15 -0
- package/frontend/src/assets/logos/roo_code.svg +9 -9
- package/frontend/src/assets/logos/spotify.svg +16 -16
- package/frontend/src/assets/logos/tiktok.svg +5 -5
- package/frontend/src/assets/logos/trae.svg +3 -3
- package/frontend/src/assets/logos/windsurf.svg +10 -10
- package/frontend/src/assets/logos/x.svg +3 -3
- package/frontend/src/components/CodeBlock.tsx +2 -2
- package/frontend/src/components/ConnectCTA.tsx +3 -2
- package/frontend/src/components/datagrid/DataGrid.tsx +90 -62
- package/frontend/src/components/datagrid/datagridTypes.tsx +2 -1
- package/frontend/src/components/datagrid/index.ts +1 -1
- package/frontend/src/components/index.ts +0 -1
- package/frontend/src/components/layout/AppHeader.tsx +13 -37
- package/frontend/src/components/layout/AppSidebar.tsx +85 -100
- package/frontend/src/components/layout/Layout.tsx +34 -32
- package/frontend/src/components/layout/PrimaryMenu.tsx +12 -4
- package/frontend/src/components/radix/Select.tsx +151 -151
- package/frontend/src/features/ai/components/AIConfigCard.tsx +200 -200
- package/frontend/src/features/ai/components/AIEmptyState.tsx +23 -23
- package/frontend/src/features/ai/components/ModalityFilterSidebar.tsx +102 -101
- package/frontend/src/features/ai/components/ModelSelectionDialog.tsx +135 -135
- package/frontend/src/features/ai/components/ModelSelectionGrid.tsx +51 -51
- package/frontend/src/features/ai/components/SystemPromptDialog.tsx +118 -118
- package/frontend/src/features/ai/components/index.ts +6 -6
- package/frontend/src/features/ai/helpers.ts +147 -141
- package/frontend/src/features/ai/{page → pages}/AIPage.tsx +166 -166
- package/frontend/src/features/auth/components/AuthPreview.tsx +96 -96
- package/frontend/src/features/auth/components/OAuthConfigDialog.tsx +1 -0
- package/frontend/src/features/auth/components/UsersDataGrid.tsx +61 -31
- package/frontend/src/features/auth/components/index.ts +5 -5
- package/frontend/src/features/auth/helpers.tsx +8 -0
- package/frontend/src/features/auth/{page → pages}/AuthMethodsPage.tsx +275 -275
- package/frontend/src/features/auth/{page → pages}/UsersPage.tsx +0 -28
- package/frontend/src/features/dashboard/{page → pages}/DashboardPage.tsx +1 -1
- package/frontend/src/features/database/components/DatabaseDataGrid.tsx +0 -2
- package/frontend/src/features/database/components/ForeignKeyCell.tsx +38 -11
- package/frontend/src/features/database/components/ForeignKeyPopover.tsx +18 -8
- package/frontend/src/features/database/components/LinkRecordModal.tsx +61 -13
- package/frontend/src/features/database/components/RecordFormField.tsx +1 -1
- package/frontend/src/features/database/components/SQLModal.tsx +75 -0
- package/frontend/src/features/database/components/TableForm.tsx +0 -4
- package/frontend/src/features/database/components/TableSidebar.tsx +0 -3
- package/frontend/src/features/database/components/TablesEmptyState.tsx +1 -1
- package/frontend/src/features/database/components/TemplatePreview.tsx +1 -2
- package/frontend/src/features/database/constants.ts +16 -28
- package/frontend/src/features/database/hooks/useCSVImport.ts +3 -2
- package/frontend/src/features/database/hooks/useDatabase.ts +66 -0
- package/frontend/src/features/database/hooks/useRawSQL.ts +3 -2
- package/frontend/src/features/database/hooks/useTables.ts +30 -28
- package/frontend/src/features/database/index.ts +1 -0
- package/frontend/src/features/database/{page → pages}/FunctionsPage.tsx +29 -42
- package/frontend/src/features/database/{page → pages}/IndexesPage.tsx +34 -51
- package/frontend/src/features/database/{page → pages}/PoliciesPage.tsx +42 -58
- package/frontend/src/features/database/{page → pages}/SQLEditorPage.tsx +2 -2
- package/frontend/src/features/database/{page → pages}/TablesPage.tsx +0 -42
- package/frontend/src/features/database/{page → pages}/TriggersPage.tsx +34 -51
- package/frontend/src/features/database/services/advance.service.ts +1 -41
- package/frontend/src/features/database/services/database.service.ts +55 -0
- package/frontend/src/features/database/services/record.service.ts +4 -20
- package/frontend/src/features/database/services/table.service.ts +1 -10
- package/frontend/src/features/database/templates/ai-chatbot.ts +6 -6
- package/frontend/src/features/database/templates/ecommerce-platform.ts +2 -2
- package/frontend/src/features/database/templates/instagram-clone.ts +10 -10
- package/frontend/src/features/database/templates/notion-clone.ts +8 -8
- package/frontend/src/features/database/templates/reddit-clone.ts +10 -10
- package/frontend/src/features/deployments/components/DeploymentRow.tsx +93 -0
- package/frontend/src/features/deployments/components/DeploymentsEmptyState.tsx +15 -0
- package/frontend/src/features/deployments/hooks/useDeployments.ts +157 -0
- package/frontend/src/features/deployments/pages/DeploymentsPage.tsx +318 -0
- package/frontend/src/features/deployments/services/deployments.service.ts +63 -0
- package/frontend/src/features/functions/components/FunctionRow.tsx +72 -72
- package/frontend/src/features/functions/components/FunctionsSidebar.tsx +56 -56
- package/frontend/src/features/functions/components/SecretRow.tsx +3 -3
- package/frontend/src/features/functions/components/index.ts +5 -5
- package/frontend/src/features/functions/hooks/useFunctions.ts +5 -4
- package/frontend/src/features/functions/hooks/useSecrets.ts +6 -9
- package/frontend/src/features/functions/{page → pages}/FunctionsPage.tsx +21 -44
- package/frontend/src/features/functions/{page → pages}/SecretsPage.tsx +118 -116
- package/frontend/src/features/functions/services/function.service.ts +8 -25
- package/frontend/src/features/functions/services/secret.service.ts +23 -41
- package/frontend/src/features/login/{page → pages}/CloudLoginPage.tsx +125 -118
- package/frontend/src/features/logs/components/LogDetailPanel.tsx +41 -0
- package/frontend/src/features/logs/components/LogsDataGrid.tsx +32 -1
- package/frontend/src/features/logs/components/index.ts +1 -0
- package/frontend/src/features/logs/hooks/useMcpUsage.ts +13 -66
- package/frontend/src/features/logs/{page → pages}/LogsPage.tsx +36 -6
- package/frontend/src/features/onboard/components/ApiCredentialsSection.tsx +59 -0
- package/frontend/src/features/onboard/components/ConnectionStringSection.tsx +180 -0
- package/frontend/src/features/onboard/components/McpConnectionSection.tsx +159 -0
- package/frontend/src/features/onboard/components/OnboardingController.tsx +68 -0
- package/frontend/src/features/onboard/components/OnboardingModal.tsx +121 -267
- package/frontend/src/features/onboard/components/ShowPasswordButton.tsx +21 -0
- package/frontend/src/features/onboard/components/index.ts +9 -4
- package/frontend/src/features/onboard/components/mcp/CursorDeeplinkGenerator.tsx +1 -1
- package/frontend/src/features/onboard/components/mcp/QoderDeeplinkGenerator.tsx +36 -0
- package/frontend/src/features/onboard/components/mcp/helpers.tsx +123 -98
- package/frontend/src/features/onboard/components/mcp/index.ts +4 -3
- package/frontend/src/features/onboard/index.ts +17 -13
- package/frontend/src/features/realtime/components/ChannelRow.tsx +83 -0
- package/frontend/src/features/realtime/components/EditChannelModal.tsx +246 -0
- package/frontend/src/features/realtime/components/MessageRow.tsx +85 -0
- package/frontend/src/features/realtime/components/RealtimeEmptyState.tsx +30 -0
- package/frontend/src/features/realtime/hooks/useRealtime.ts +218 -0
- package/frontend/src/features/realtime/index.ts +11 -0
- package/frontend/src/features/realtime/pages/RealtimeChannelsPage.tsx +172 -0
- package/frontend/src/features/realtime/pages/RealtimeMessagesPage.tsx +211 -0
- package/frontend/src/features/realtime/pages/RealtimePermissionsPage.tsx +191 -0
- package/frontend/src/features/realtime/services/realtime.service.ts +107 -0
- package/frontend/src/features/settings/pages/SettingsPage.tsx +349 -0
- package/frontend/src/features/storage/{page → pages}/StoragePage.tsx +1 -29
- package/frontend/src/features/visualizer/components/AuthNode.tsx +4 -4
- package/frontend/src/features/visualizer/components/SchemaVisualizer.tsx +24 -11
- package/frontend/src/features/visualizer/{page → pages}/VisualizerPage.tsx +11 -36
- package/frontend/src/index.css +249 -249
- package/frontend/src/lib/contexts/ModalContext.tsx +35 -0
- package/frontend/src/lib/contexts/SocketContext.tsx +119 -75
- package/frontend/src/lib/hooks/useMetadata.ts +45 -1
- package/frontend/src/lib/hooks/useModal.tsx +2 -0
- package/frontend/src/lib/routing/AppRoutes.tsx +103 -84
- package/frontend/src/lib/services/metadata.service.ts +20 -3
- package/frontend/src/lib/utils/cloudMessaging.ts +1 -1
- package/frontend/src/lib/utils/menuItems.ts +223 -183
- package/frontend/src/lib/utils/utils.ts +196 -183
- package/frontend/tsconfig.json +25 -25
- package/frontend/tsconfig.node.json +9 -9
- package/functions/deno.json +24 -24
- package/functions/server.ts +6 -6
- package/functions/worker-template.js +1 -1
- package/i18n/README.ar.md +130 -130
- package/i18n/README.de.md +130 -130
- package/i18n/README.es.md +154 -154
- package/i18n/README.fr.md +134 -134
- package/i18n/README.hi.md +129 -129
- package/i18n/README.ja.md +174 -174
- package/i18n/README.ko.md +136 -136
- package/i18n/README.pt-BR.md +131 -131
- package/i18n/README.ru.md +129 -129
- package/i18n/README.zh-CN.md +133 -133
- package/openapi/ai.yaml +825 -715
- package/openapi/auth.yaml +1324 -1244
- package/openapi/email.yaml +158 -0
- package/openapi/functions.yaml +475 -475
- package/openapi/health.yaml +29 -29
- package/openapi/logs.yaml +221 -223
- package/openapi/metadata.yaml +175 -177
- package/openapi/realtime.yaml +699 -0
- package/openapi/records.yaml +381 -381
- package/openapi/secrets.yaml +370 -370
- package/openapi/storage.yaml +875 -875
- package/openapi/tables.yaml +462 -463
- package/package.json +97 -97
- package/shared-schemas/package.json +31 -31
- package/shared-schemas/src/ai-api.schema.ts +251 -143
- package/shared-schemas/src/ai.schema.ts +8 -4
- package/shared-schemas/src/auth-api.schema.ts +380 -339
- package/shared-schemas/src/auth.schema.ts +18 -11
- package/shared-schemas/src/cloud-events.schema.ts +26 -0
- package/shared-schemas/src/database-api.schema.ts +32 -1
- package/shared-schemas/src/database.schema.ts +39 -0
- package/shared-schemas/src/deployments-api.schema.ts +55 -0
- package/shared-schemas/src/deployments.schema.ts +30 -0
- package/shared-schemas/src/docs.schema.ts +32 -0
- package/shared-schemas/src/email-api.schema.ts +30 -0
- package/shared-schemas/src/functions-api.schema.ts +13 -4
- package/shared-schemas/src/functions.schema.ts +1 -1
- package/shared-schemas/src/index.ts +22 -14
- package/shared-schemas/src/metadata.schema.ts +39 -4
- package/shared-schemas/src/realtime-api.schema.ts +111 -0
- package/shared-schemas/src/realtime.schema.ts +143 -0
- package/shared-schemas/src/secrets-api.schema.ts +44 -0
- package/shared-schemas/src/secrets.schema.ts +15 -0
- package/shared-schemas/tsconfig.json +21 -21
- package/tsconfig.json +7 -7
- package/zeabur/README.md +26 -13
- package/zeabur/template.yml +1001 -1032
- package/.cursor/rules/cursor-rules.mdc +0 -94
- package/backend/src/types/profile.ts +0 -55
- package/frontend/src/components/ProjectInfoModal.tsx +0 -128
- package/frontend/src/features/database/hooks/useFullMetadata.ts +0 -18
- package/test-gemini.sh +0 -35
- package/test-usage-admin.sh +0 -57
- package/test-usage.sh +0 -50
- /package/frontend/src/features/auth/{page → pages}/ConfigurationPage.tsx +0 -0
- /package/frontend/src/features/database/{page → pages}/TemplatesPage.tsx +0 -0
- /package/frontend/src/features/login/{page → pages}/LoginPage.tsx +0 -0
- /package/frontend/src/features/logs/{page → pages}/AuditsPage.tsx +0 -0
- /package/frontend/src/features/logs/{page → pages}/MCPLogsPage.tsx +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
|
2
|
-
<svg fill="
|
|
3
|
-
<path d="M18.71 19.5C17.88 20.74 17 21.95 15.66 21.97C14.32 22 13.89 21.18 12.37 21.18C10.84 21.18 10.37 21.95 9.09997 22C7.78997 22.05 6.79997 20.68 5.95997 19.47C4.24997 17 2.93997 12.45 4.69997 9.39C5.56997 7.87 7.12997 6.91 8.81997 6.88C10.1 6.86 11.32 7.75 12.11 7.75C12.89 7.75 14.37 6.68 15.92 6.84C16.57 6.87 18.39 7.1 19.56 8.82C19.47 8.88 17.39 10.1 17.41 12.63C17.44 15.65 20.06 16.66 20.09 16.67C20.06 16.74 19.67 18.11 18.71 19.5ZM13 3.5C13.73 2.67 14.94 2.04 15.94 2C16.07 3.17 15.6 4.35 14.9 5.19C14.21 6.04 13.07 6.7 11.95 6.61C11.8 5.46 12.36 4.26 13 3.5Z"/>
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
|
2
|
+
<svg fill="currentColor" width="800px" height="800px" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M18.71 19.5C17.88 20.74 17 21.95 15.66 21.97C14.32 22 13.89 21.18 12.37 21.18C10.84 21.18 10.37 21.95 9.09997 22C7.78997 22.05 6.79997 20.68 5.95997 19.47C4.24997 17 2.93997 12.45 4.69997 9.39C5.56997 7.87 7.12997 6.91 8.81997 6.88C10.1 6.86 11.32 7.75 12.11 7.75C12.89 7.75 14.37 6.68 15.92 6.84C16.57 6.87 18.39 7.1 19.56 8.82C19.47 8.88 17.39 10.1 17.41 12.63C17.44 15.65 20.06 16.66 20.09 16.67C20.06 16.74 19.67 18.11 18.71 19.5ZM13 3.5C13.73 2.67 14.94 2.04 15.94 2C16.07 3.17 15.6 4.35 14.9 5.19C14.21 6.04 13.07 6.7 11.95 6.61C11.8 5.46 12.36 4.26 13 3.5Z"/>
|
|
4
4
|
</svg>
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M5.92417 15.2958L9.8575 13.09L9.92417 12.8983L9.8575 12.7917H9.66667L9.00833 12.7517L6.76 12.6908L4.81083 12.61L2.9225 12.5083L2.44667 12.4075L2 11.82L2.04583 11.5267L2.44583 11.2592L3.0175 11.3092L4.28417 11.395L6.1825 11.5267L7.55917 11.6075L9.6 11.82H9.92417L9.97 11.6892L9.85833 11.6075L9.7725 11.5267L7.8075 10.1967L5.68083 8.79L4.5675 7.98L3.96417 7.57083L3.66083 7.18583L3.52917 6.34583L4.07583 5.74417L4.81 5.79417L4.9975 5.845L5.74167 6.41667L7.33167 7.64667L9.4075 9.17417L9.71167 9.4275L9.8325 9.34167L9.84833 9.28083L9.71167 9.0525L8.5825 7.01417L7.3775 4.93917L6.84083 4.07917L6.69917 3.56333C6.64519 3.36521 6.61608 3.16114 6.6125 2.95583L7.23583 2.11167L7.58 2L8.41 2.11167L8.76 2.415L9.27667 3.59333L10.1117 5.45083L11.4075 7.97583L11.7875 8.72417L11.99 9.4175L12.0658 9.63H12.1975V9.50833L12.3042 8.08667L12.5017 6.34083L12.6933 4.095L12.76 3.46167L13.0733 2.70333L13.6958 2.29333L14.1825 2.52667L14.5825 3.0975L14.5267 3.4675L14.2883 5.01L13.8225 7.42917L13.5192 9.0475H13.6958L13.8983 8.84583L14.7192 7.7575L16.0958 6.0375L16.7042 5.35417L17.4125 4.60083L17.8683 4.24167H18.7292L19.3625 5.1825L19.0792 6.15417L18.1925 7.27667L17.4583 8.22833L16.405 9.645L15.7467 10.7783L15.8075 10.87L15.9642 10.8533L18.3442 10.3483L19.63 10.115L21.1642 9.8525L21.8583 10.1758L21.9342 10.505L21.6608 11.1775L20.02 11.5825L18.0958 11.9675L15.23 12.645L15.195 12.67L15.2358 12.7208L16.5267 12.8425L17.0783 12.8725H18.43L20.9467 13.06L21.605 13.495L22 14.0267L21.9342 14.4308L20.9217 14.9475L19.555 14.6233L16.3642 13.865L15.2708 13.5908H15.1192V13.6825L16.03 14.5725L17.7017 16.0808L19.7925 18.0225L19.8983 18.5042L19.63 18.8833L19.3467 18.8425L17.5092 17.4617L16.8 16.8392L15.195 15.4892H15.0883V15.6308L15.4583 16.1717L17.4125 19.1058L17.5142 20.0058L17.3725 20.3L16.8658 20.4775L16.3092 20.3758L15.1642 18.7717L13.985 16.9658L13.0325 15.3467L12.9158 15.4133L12.3542 21.4583L12.0908 21.7667L11.4833 22L10.9775 21.6158L10.7092 20.9933L10.9775 19.7633L11.3017 18.16L11.5642 16.885L11.8025 15.3017L11.9442 14.775L11.9342 14.74L11.8175 14.755L10.6225 16.3942L8.80583 18.8483L7.3675 20.3858L7.0225 20.5225L6.425 20.2142L6.48083 19.6625L6.815 19.1717L8.805 16.6417L10.005 15.0733L10.78 14.1683L10.775 14.0367H10.7292L5.44333 17.4667L4.50167 17.5883L4.09583 17.2083L4.14667 16.5867L4.33917 16.3842L5.92917 15.2908L5.92417 15.2958Z" fill="#D97757"/>
|
|
3
|
-
</svg>
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M5.92417 15.2958L9.8575 13.09L9.92417 12.8983L9.8575 12.7917H9.66667L9.00833 12.7517L6.76 12.6908L4.81083 12.61L2.9225 12.5083L2.44667 12.4075L2 11.82L2.04583 11.5267L2.44583 11.2592L3.0175 11.3092L4.28417 11.395L6.1825 11.5267L7.55917 11.6075L9.6 11.82H9.92417L9.97 11.6892L9.85833 11.6075L9.7725 11.5267L7.8075 10.1967L5.68083 8.79L4.5675 7.98L3.96417 7.57083L3.66083 7.18583L3.52917 6.34583L4.07583 5.74417L4.81 5.79417L4.9975 5.845L5.74167 6.41667L7.33167 7.64667L9.4075 9.17417L9.71167 9.4275L9.8325 9.34167L9.84833 9.28083L9.71167 9.0525L8.5825 7.01417L7.3775 4.93917L6.84083 4.07917L6.69917 3.56333C6.64519 3.36521 6.61608 3.16114 6.6125 2.95583L7.23583 2.11167L7.58 2L8.41 2.11167L8.76 2.415L9.27667 3.59333L10.1117 5.45083L11.4075 7.97583L11.7875 8.72417L11.99 9.4175L12.0658 9.63H12.1975V9.50833L12.3042 8.08667L12.5017 6.34083L12.6933 4.095L12.76 3.46167L13.0733 2.70333L13.6958 2.29333L14.1825 2.52667L14.5825 3.0975L14.5267 3.4675L14.2883 5.01L13.8225 7.42917L13.5192 9.0475H13.6958L13.8983 8.84583L14.7192 7.7575L16.0958 6.0375L16.7042 5.35417L17.4125 4.60083L17.8683 4.24167H18.7292L19.3625 5.1825L19.0792 6.15417L18.1925 7.27667L17.4583 8.22833L16.405 9.645L15.7467 10.7783L15.8075 10.87L15.9642 10.8533L18.3442 10.3483L19.63 10.115L21.1642 9.8525L21.8583 10.1758L21.9342 10.505L21.6608 11.1775L20.02 11.5825L18.0958 11.9675L15.23 12.645L15.195 12.67L15.2358 12.7208L16.5267 12.8425L17.0783 12.8725H18.43L20.9467 13.06L21.605 13.495L22 14.0267L21.9342 14.4308L20.9217 14.9475L19.555 14.6233L16.3642 13.865L15.2708 13.5908H15.1192V13.6825L16.03 14.5725L17.7017 16.0808L19.7925 18.0225L19.8983 18.5042L19.63 18.8833L19.3467 18.8425L17.5092 17.4617L16.8 16.8392L15.195 15.4892H15.0883V15.6308L15.4583 16.1717L17.4125 19.1058L17.5142 20.0058L17.3725 20.3L16.8658 20.4775L16.3092 20.3758L15.1642 18.7717L13.985 16.9658L13.0325 15.3467L12.9158 15.4133L12.3542 21.4583L12.0908 21.7667L11.4833 22L10.9775 21.6158L10.7092 20.9933L10.9775 19.7633L11.3017 18.16L11.5642 16.885L11.8025 15.3017L11.9442 14.775L11.9342 14.74L11.8175 14.755L10.6225 16.3942L8.80583 18.8483L7.3675 20.3858L7.0225 20.5225L6.425 20.2142L6.48083 19.6625L6.815 19.1717L8.805 16.6417L10.005 15.0733L10.78 14.1683L10.775 14.0367H10.7292L5.44333 17.4667L4.50167 17.5883L4.09583 17.2083L4.14667 16.5867L4.33917 16.3842L5.92917 15.2908L5.92417 15.2958Z" fill="#D97757"/>
|
|
3
|
+
</svg>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_1018_35607)">
|
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.7762 5.99316C17.8387 5.99316 19.5112 7.67316 19.5112 9.74541V10.9957L20.5987 13.1677C20.6518 13.2735 20.6793 13.3903 20.679 13.5087C20.6788 13.6271 20.6507 13.7438 20.5972 13.8494L19.5112 15.9974V17.2484C19.5112 19.3199 17.8387 20.9999 15.7762 20.9999H8.30548C6.24223 20.9999 4.57048 19.3199 4.57048 17.2484V15.9974L3.46048 13.8562C3.40463 13.7489 3.37527 13.6298 3.37488 13.5088C3.37449 13.3879 3.40307 13.2686 3.45823 13.1609L4.56973 10.9957V9.74541C4.56973 7.67316 6.24223 5.99316 8.30473 5.99316H15.7762ZM9.19873 10.1999C8.74641 10.1999 8.3126 10.3796 7.99276 10.6994C7.67292 11.0193 7.49323 11.4531 7.49323 11.9054V14.9369C7.50259 15.3829 7.68634 15.8076 8.0051 16.1197C8.32385 16.4318 8.75222 16.6067 9.19836 16.6067C9.64449 16.6067 10.0729 16.4318 10.3916 16.1197C10.7104 15.8076 10.8941 15.3829 10.9035 14.9369V11.9054C10.9035 11.4532 10.7239 11.0195 10.4042 10.6997C10.0845 10.3799 9.65093 10.2001 9.19873 10.1999ZM14.6932 10.1999C14.2409 10.1999 13.8071 10.3796 13.4873 10.6994C13.1674 11.0193 12.9877 11.4531 12.9877 11.9054V14.9369C12.9877 15.3892 13.1674 15.823 13.4873 16.1429C13.8071 16.4627 14.2409 16.6424 14.6932 16.6424C15.1456 16.6424 15.5794 16.4627 15.8992 16.1429C16.219 15.823 16.3987 15.3892 16.3987 14.9369V11.9054C16.3987 11.6814 16.3546 11.4595 16.2688 11.2526C16.1831 11.0456 16.0574 10.8576 15.8989 10.6992C15.7405 10.5408 15.5524 10.4152 15.3454 10.3295C15.1384 10.2439 14.9173 10.1998 14.6932 10.1999Z" fill="currentColor"/>
|
|
4
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.0405 7.1685C12.5933 7.1685 13.1234 6.94891 13.5143 6.55804C13.9051 6.16716 14.1247 5.63703 14.1247 5.08425C14.1247 4.53147 13.9051 4.00134 13.5143 3.61046C13.1234 3.21959 12.5933 3 12.0405 3C11.4877 3 10.9576 3.21959 10.5667 3.61046C10.1758 4.00134 9.95624 4.53147 9.95624 5.08425C9.95624 5.63703 10.1758 6.16716 10.5667 6.55804C10.9576 6.94891 11.4877 7.1685 12.0405 7.1685Z" fill="currentColor"/>
|
|
5
|
-
</g>
|
|
6
|
-
</svg>
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1018_35607)">
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.7762 5.99316C17.8387 5.99316 19.5112 7.67316 19.5112 9.74541V10.9957L20.5987 13.1677C20.6518 13.2735 20.6793 13.3903 20.679 13.5087C20.6788 13.6271 20.6507 13.7438 20.5972 13.8494L19.5112 15.9974V17.2484C19.5112 19.3199 17.8387 20.9999 15.7762 20.9999H8.30548C6.24223 20.9999 4.57048 19.3199 4.57048 17.2484V15.9974L3.46048 13.8562C3.40463 13.7489 3.37527 13.6298 3.37488 13.5088C3.37449 13.3879 3.40307 13.2686 3.45823 13.1609L4.56973 10.9957V9.74541C4.56973 7.67316 6.24223 5.99316 8.30473 5.99316H15.7762ZM9.19873 10.1999C8.74641 10.1999 8.3126 10.3796 7.99276 10.6994C7.67292 11.0193 7.49323 11.4531 7.49323 11.9054V14.9369C7.50259 15.3829 7.68634 15.8076 8.0051 16.1197C8.32385 16.4318 8.75222 16.6067 9.19836 16.6067C9.64449 16.6067 10.0729 16.4318 10.3916 16.1197C10.7104 15.8076 10.8941 15.3829 10.9035 14.9369V11.9054C10.9035 11.4532 10.7239 11.0195 10.4042 10.6997C10.0845 10.3799 9.65093 10.2001 9.19873 10.1999ZM14.6932 10.1999C14.2409 10.1999 13.8071 10.3796 13.4873 10.6994C13.1674 11.0193 12.9877 11.4531 12.9877 11.9054V14.9369C12.9877 15.3892 13.1674 15.823 13.4873 16.1429C13.8071 16.4627 14.2409 16.6424 14.6932 16.6424C15.1456 16.6424 15.5794 16.4627 15.8992 16.1429C16.219 15.823 16.3987 15.3892 16.3987 14.9369V11.9054C16.3987 11.6814 16.3546 11.4595 16.2688 11.2526C16.1831 11.0456 16.0574 10.8576 15.8989 10.6992C15.7405 10.5408 15.5524 10.4152 15.3454 10.3295C15.1384 10.2439 14.9173 10.1998 14.6932 10.1999Z" fill="currentColor"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.0405 7.1685C12.5933 7.1685 13.1234 6.94891 13.5143 6.55804C13.9051 6.16716 14.1247 5.63703 14.1247 5.08425C14.1247 4.53147 13.9051 4.00134 13.5143 3.61046C13.1234 3.21959 12.5933 3 12.0405 3C11.4877 3 10.9576 3.21959 10.5667 3.61046C10.1758 4.00134 9.95624 4.53147 9.95624 5.08425C9.95624 5.63703 10.1758 6.16716 10.5667 6.55804C10.9576 6.94891 11.4877 7.1685 12.0405 7.1685Z" fill="currentColor"/>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_384_4970)">
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.0375 4.46998C17.1392 5.60331 17.6017 7.14998 17.7958 9.31748C18.3142 9.31748 18.7958 9.42998 19.1225 9.86248L19.7308 10.6658C19.9058 10.8975 20 11.1741 20 11.4616V13.645C20 13.9275 19.8558 14.2025 19.6225 14.3683C16.8658 16.335 13.4642 17.9166 10 17.9166C6.16667 17.9166 2.32917 15.7641 0.3775 14.3683C0.144167 14.2016 0.000833333 13.9266 0 13.645V11.4616C0 11.1741 0.0941667 10.8958 0.2675 10.665L0.875833 9.86248C1.2025 9.43165 1.6875 9.31748 2.20333 9.31748L2.2275 9.06998C2.43583 7.03165 2.9025 5.55915 3.9625 4.46998C6.01333 2.35331 8.72083 2.09415 9.9175 2.08331H10.0825C11.2792 2.09415 13.9867 2.35248 16.0375 4.46998ZM10.0008 8.07665C9.76417 8.07665 9.49 8.08998 9.19917 8.11831C9.09667 8.49081 8.945 8.82665 8.72417 9.04165C7.84917 9.89415 6.79417 10.025 6.22917 10.025C5.6975 10.025 5.14083 9.91665 4.68667 9.63831C4.25667 9.77581 3.84333 9.97415 3.81667 10.4683C3.78163 11.2689 3.76412 12.0702 3.76417 12.8716L3.7625 13.2716C3.76083 13.7408 3.75833 14.21 3.75167 14.68C3.75333 14.9516 3.92167 15.205 4.17667 15.3175C6.245 16.2358 8.20167 16.6983 10.0017 16.6983C11.7983 16.6983 13.755 16.2358 15.8225 15.3175C15.9469 15.2628 16.053 15.1736 16.1283 15.0605C16.2036 14.9473 16.245 14.815 16.2475 14.6791C16.2725 13.2775 16.2525 11.8691 16.1842 10.4683C16.1583 9.97165 15.7442 9.77665 15.3125 9.63831C14.8575 9.91581 14.3025 10.025 13.7708 10.025C13.2067 10.025 12.1525 9.89415 11.2767 9.04165C11.055 8.82665 10.9042 8.49081 10.8017 8.11831C10.535 8.09165 10.2675 8.07748 10.0008 8.07665ZM7.89667 11.4208C8.34583 11.4208 8.71 11.7758 8.71 12.2125V13.6733C8.71 14.1108 8.34583 14.465 7.89667 14.465C7.68389 14.4677 7.47874 14.3858 7.32626 14.2374C7.17377 14.0889 7.08641 13.8861 7.08333 13.6733V12.2133C7.08333 11.7758 7.4475 11.4208 7.89667 11.4208ZM12.0633 11.4208C12.5125 11.4208 12.8767 11.7758 12.8767 12.2125V13.6733C12.8767 14.1108 12.5125 14.465 12.0633 14.465C11.8506 14.4677 11.6454 14.3858 11.4929 14.2374C11.3404 14.0889 11.2531 13.8861 11.25 13.6733V12.2133C11.25 11.7758 11.6142 11.4208 12.0633 11.4208ZM6.3625 4.23915C5.4875 4.32415 4.75 4.60415 4.375 4.99415C3.5625 5.85831 3.7375 8.05081 4.2 8.51415C4.5375 8.84248 5.175 9.06165 5.8625 9.06165H5.9375C6.47833 9.05081 7.425 8.91498 8.2125 8.13665C8.575 7.79498 8.8 6.94248 8.775 6.07831C8.75 5.38331 8.55 4.81165 8.25 4.56748C7.925 4.28748 7.1875 4.16581 6.3625 4.23915ZM11.75 4.56748C11.45 4.81081 11.25 5.38415 11.225 6.07831C11.2 6.94248 11.425 7.79498 11.7875 8.13665C12.5942 8.93415 13.5675 9.05665 14.1008 9.06165H14.1375C14.825 9.06165 15.4625 8.84248 15.8 8.51415C16.2625 8.05081 16.4375 5.85831 15.625 4.99415C15.25 4.60415 14.5125 4.32415 13.6375 4.23915C12.8125 4.16581 12.075 4.28748 11.75 4.56748ZM10 6.34581C9.8 6.34581 9.5625 6.35831 9.3 6.38248C9.325 6.51581 9.3375 6.66248 9.35 6.82081L9.34917 6.95331C9.34824 7.02289 9.34435 7.0924 9.3375 7.16165C9.525 7.14331 9.69167 7.13915 9.8475 7.13831H10.1525C10.3083 7.13831 10.475 7.14331 10.6625 7.16165C10.65 7.03998 10.65 6.93081 10.65 6.82081C10.6625 6.66248 10.675 6.51665 10.7 6.38248C10.4673 6.35969 10.2338 6.34746 10 6.34581Z" fill="currentColor"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id="clip0_384_4970">
|
|
7
|
+
<rect width="20" height="20" fill="currentColor"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
10
|
+
</svg>
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M12.692 1.27301L20.5205 6.19851C20.819 6.38601 21 6.71401 21 7.06651V16.444C21 16.79 20.8225 17.1115 20.5295 17.2955L12.686 22.225C12.4175 22.394 12.077 22.398 11.8045 22.236L3.49 17.2915C3.299 17.178 3.1545 17.006 3.0735 16.8065C3.0255 16.6885 3 16.561 3 16.43V7.06851C3 6.71601 3.1855 6.38951 3.489 6.20901L11.8105 1.26151C12.083 1.09951 12.4235 1.10401 12.692 1.27301Z" fill="url(#paint0_linear_951_26263)"/>
|
|
3
|
-
<path d="M12.5 11.4995L20.8975 16.8745C20.814 17.0375 20.6915 17.178 20.5295 17.2955L12.712 22.2095C12.409 22.3905 12.0985 22.41 11.779 22.2225L3.48999 17.2915C3.29849 17.176 3.15749 17.0165 3.07349 16.8065L12.5 11.4995Z" fill="url(#paint1_linear_951_26263)"/>
|
|
4
|
-
<path d="M12.248 1.14593V11.5889L3.07351 16.8064C3.02351 16.6804 2.99951 16.5549 3.00001 16.4299V7.06843C3.02101 6.74043 3.11851 6.43493 3.48901 6.20893L11.8545 1.23843C11.993 1.17443 12.125 1.13993 12.248 1.14593Z" fill="url(#paint2_linear_951_26263)"/>
|
|
5
|
-
<path d="M4.26402 7.99939L11.74 11.8359C11.904 11.9324 12.005 12.1084 12.005 12.2989L11.9995 20.4759C11.9995 21.0284 12.733 21.2209 13.004 20.7394L20.001 7.78389C20.2025 7.42589 19.9435 6.98389 19.533 6.98389L4.53552 6.99989C3.98852 6.99989 3.79252 7.72239 4.26402 7.99939Z" fill="#E0E0E0"/>
|
|
6
|
-
<defs>
|
|
7
|
-
<linearGradient id="paint0_linear_951_26263" x1="15.451" y1="17.8605" x2="8.257" y2="5.11251" gradientUnits="userSpaceOnUse">
|
|
8
|
-
<stop stop-color="#636363"/>
|
|
9
|
-
<stop offset="1" stop-color="#444444"/>
|
|
10
|
-
</linearGradient>
|
|
11
|
-
<linearGradient id="paint1_linear_951_26263" x1="13.5605" y1="20.9035" x2="10.544" y2="13.1215" gradientUnits="userSpaceOnUse">
|
|
12
|
-
<stop stop-color="#A1AAB3"/>
|
|
13
|
-
<stop offset="1" stop-color="#8F979E"/>
|
|
14
|
-
</linearGradient>
|
|
15
|
-
<linearGradient id="paint2_linear_951_26263" x1="9.31051" y1="11.8994" x2="4.42451" y2="3.24193" gradientUnits="userSpaceOnUse">
|
|
16
|
-
<stop stop-color="#636363"/>
|
|
17
|
-
<stop offset="0.997" stop-color="#90989F"/>
|
|
18
|
-
</linearGradient>
|
|
19
|
-
</defs>
|
|
20
|
-
</svg>
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M12.692 1.27301L20.5205 6.19851C20.819 6.38601 21 6.71401 21 7.06651V16.444C21 16.79 20.8225 17.1115 20.5295 17.2955L12.686 22.225C12.4175 22.394 12.077 22.398 11.8045 22.236L3.49 17.2915C3.299 17.178 3.1545 17.006 3.0735 16.8065C3.0255 16.6885 3 16.561 3 16.43V7.06851C3 6.71601 3.1855 6.38951 3.489 6.20901L11.8105 1.26151C12.083 1.09951 12.4235 1.10401 12.692 1.27301Z" fill="url(#paint0_linear_951_26263)"/>
|
|
3
|
+
<path d="M12.5 11.4995L20.8975 16.8745C20.814 17.0375 20.6915 17.178 20.5295 17.2955L12.712 22.2095C12.409 22.3905 12.0985 22.41 11.779 22.2225L3.48999 17.2915C3.29849 17.176 3.15749 17.0165 3.07349 16.8065L12.5 11.4995Z" fill="url(#paint1_linear_951_26263)"/>
|
|
4
|
+
<path d="M12.248 1.14593V11.5889L3.07351 16.8064C3.02351 16.6804 2.99951 16.5549 3.00001 16.4299V7.06843C3.02101 6.74043 3.11851 6.43493 3.48901 6.20893L11.8545 1.23843C11.993 1.17443 12.125 1.13993 12.248 1.14593Z" fill="url(#paint2_linear_951_26263)"/>
|
|
5
|
+
<path d="M4.26402 7.99939L11.74 11.8359C11.904 11.9324 12.005 12.1084 12.005 12.2989L11.9995 20.4759C11.9995 21.0284 12.733 21.2209 13.004 20.7394L20.001 7.78389C20.2025 7.42589 19.9435 6.98389 19.533 6.98389L4.53552 6.99989C3.98852 6.99989 3.79252 7.72239 4.26402 7.99939Z" fill="#E0E0E0"/>
|
|
6
|
+
<defs>
|
|
7
|
+
<linearGradient id="paint0_linear_951_26263" x1="15.451" y1="17.8605" x2="8.257" y2="5.11251" gradientUnits="userSpaceOnUse">
|
|
8
|
+
<stop stop-color="#636363"/>
|
|
9
|
+
<stop offset="1" stop-color="#444444"/>
|
|
10
|
+
</linearGradient>
|
|
11
|
+
<linearGradient id="paint1_linear_951_26263" x1="13.5605" y1="20.9035" x2="10.544" y2="13.1215" gradientUnits="userSpaceOnUse">
|
|
12
|
+
<stop stop-color="#A1AAB3"/>
|
|
13
|
+
<stop offset="1" stop-color="#8F979E"/>
|
|
14
|
+
</linearGradient>
|
|
15
|
+
<linearGradient id="paint2_linear_951_26263" x1="9.31051" y1="11.8994" x2="4.42451" y2="3.24193" gradientUnits="userSpaceOnUse">
|
|
16
|
+
<stop stop-color="#636363"/>
|
|
17
|
+
<stop offset="0.997" stop-color="#90989F"/>
|
|
18
|
+
</linearGradient>
|
|
19
|
+
</defs>
|
|
20
|
+
</svg>
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
2
|
+
width="100%" viewBox="0 0 960 956" xml:space="preserve">
|
|
3
|
+
<path fill="#4D6BFE" opacity="1.000000" stroke="none"
|
|
4
|
+
d="
|
|
5
|
+
M260.763000,698.302734
|
|
6
|
+
C248.042023,688.617737 234.923004,679.932068 223.344925,669.531067
|
|
7
|
+
C210.352493,657.859497 197.717758,645.464905 186.838806,631.856812
|
|
8
|
+
C175.983704,618.278564 167.133331,603.026794 158.111664,588.081604
|
|
9
|
+
C153.126511,579.823303 148.799271,570.968445 145.595428,561.881897
|
|
10
|
+
C141.040009,548.961975 137.811005,535.575623 133.978714,522.399231
|
|
11
|
+
C130.265167,509.631104 129.133118,496.474701 127.987022,483.315063
|
|
12
|
+
C127.360497,476.121185 125.998192,468.917450 126.165337,461.746063
|
|
13
|
+
C126.405998,451.420593 127.810097,441.125977 128.583099,430.808136
|
|
14
|
+
C129.424179,419.582031 131.424606,408.565369 135.027374,397.925507
|
|
15
|
+
C138.857239,386.614990 142.649094,375.238220 147.450821,364.327484
|
|
16
|
+
C151.146591,355.929810 156.101288,348.034271 160.988449,340.223450
|
|
17
|
+
C171.395447,323.590668 184.015610,308.752411 198.749008,295.779419
|
|
18
|
+
C219.091171,277.867828 242.534225,265.379028 268.588593,258.417511
|
|
19
|
+
C281.235596,255.038361 294.459961,253.273193 307.539581,252.204163
|
|
20
|
+
C322.559174,250.976547 337.722809,250.781021 352.795166,251.191483
|
|
21
|
+
C362.523712,251.456436 372.182526,254.422607 381.907166,254.641327
|
|
22
|
+
C388.356689,254.786392 395.239410,253.132721 401.281982,250.687347
|
|
23
|
+
C420.630493,242.857132 440.231842,235.768661 460.808533,232.334641
|
|
24
|
+
C473.533600,230.210968 486.629211,229.902695 499.275208,234.022324
|
|
25
|
+
C501.057251,234.602859 503.040161,235.468246 504.212372,236.822845
|
|
26
|
+
C506.341187,239.282928 507.049561,241.586441 503.004852,243.705307
|
|
27
|
+
C491.792664,249.578903 483.012054,257.615784 479.625458,270.610840
|
|
28
|
+
C478.109283,276.428680 479.826965,281.366669 482.160919,286.070038
|
|
29
|
+
C485.300201,292.396271 490.376129,297.024994 496.329376,301.173218
|
|
30
|
+
C507.368896,308.865570 518.017395,317.198486 528.263367,325.928192
|
|
31
|
+
C538.619934,334.752167 548.486328,344.181610 558.206238,353.714111
|
|
32
|
+
C567.314758,362.647064 575.943359,372.068939 584.796021,381.263245
|
|
33
|
+
C598.013367,394.990692 613.406067,405.815094 630.038086,414.944855
|
|
34
|
+
C633.273315,416.720825 636.712646,418.150818 640.134033,419.554901
|
|
35
|
+
C643.775085,421.049194 647.566284,418.555817 648.931396,413.999420
|
|
36
|
+
C651.158142,406.566742 653.026794,398.994812 655.790222,391.765961
|
|
37
|
+
C657.632996,386.945374 656.109619,383.956787 652.605347,381.169250
|
|
38
|
+
C647.619202,377.203033 642.361633,373.534882 637.678406,369.239594
|
|
39
|
+
C626.201599,358.713348 615.950317,347.181335 609.959595,332.474731
|
|
40
|
+
C608.018860,327.710236 605.249023,323.139709 604.178040,318.194702
|
|
41
|
+
C601.979919,308.044556 600.981079,297.639099 598.921082,287.453491
|
|
42
|
+
C596.401428,274.995270 599.592896,262.948975 601.224060,250.866776
|
|
43
|
+
C602.065002,244.637558 605.366516,238.732956 607.621399,232.706055
|
|
44
|
+
C608.468201,230.442825 609.270142,228.112091 610.496460,226.052658
|
|
45
|
+
C612.766663,222.240112 615.095825,218.882629 620.611450,218.820358
|
|
46
|
+
C626.003174,218.759491 627.819458,221.988007 629.366028,225.837677
|
|
47
|
+
C631.104736,230.165787 632.828613,234.561691 633.900696,239.084167
|
|
48
|
+
C637.076477,252.480591 646.257446,260.309967 657.955322,265.990784
|
|
49
|
+
C668.809570,271.261932 680.433655,275.609589 688.835388,284.533173
|
|
50
|
+
C695.781067,291.910248 701.255493,300.617218 703.043396,311.041962
|
|
51
|
+
C703.254944,312.275879 703.920471,313.431946 704.375488,314.624084
|
|
52
|
+
C705.383728,314.092468 706.590393,313.763214 707.370300,312.998627
|
|
53
|
+
C717.891357,302.683777 730.296509,295.790741 744.774658,293.104431
|
|
54
|
+
C750.234314,292.091461 755.935181,291.945038 761.511108,292.070312
|
|
55
|
+
C781.194275,292.512543 797.424255,285.601624 810.182617,270.449951
|
|
56
|
+
C812.858032,267.272614 816.059143,264.284760 819.597229,262.186279
|
|
57
|
+
C821.574219,261.013733 825.048462,261.064606 827.308655,261.946533
|
|
58
|
+
C831.760925,263.683746 835.058105,267.295715 834.911560,272.337769
|
|
59
|
+
C834.712158,279.199402 834.083740,286.096649 832.983032,292.872009
|
|
60
|
+
C831.581970,301.496246 830.302795,310.271942 827.567810,318.516876
|
|
61
|
+
C823.480591,330.838379 817.848999,342.602081 809.691345,352.900391
|
|
62
|
+
C791.423401,375.962097 767.366882,389.589264 738.924194,395.897308
|
|
63
|
+
C735.584045,396.638092 732.089417,396.727417 728.656799,396.995239
|
|
64
|
+
C723.171204,397.423248 720.942261,399.558136 721.072510,405.037170
|
|
65
|
+
C721.205505,410.630920 722.241821,416.251221 721.888733,421.796600
|
|
66
|
+
C721.423523,429.104004 720.278625,436.404846 718.907043,443.609711
|
|
67
|
+
C716.481201,456.352509 714.262878,469.184570 710.848328,481.675995
|
|
68
|
+
C707.148804,495.209320 702.127197,508.378448 697.780029,521.738220
|
|
69
|
+
C691.872986,539.891846 682.746948,556.517395 672.706360,572.557861
|
|
70
|
+
C665.996765,583.276733 658.141907,593.344727 650.155579,603.181091
|
|
71
|
+
C641.109192,614.323059 631.343201,624.880737 620.821167,636.915039
|
|
72
|
+
C626.456116,639.465881 631.389771,641.887390 636.467529,643.955200
|
|
73
|
+
C644.669617,647.295288 653.025269,650.260864 661.205200,653.651855
|
|
74
|
+
C668.012329,656.473694 674.712708,659.569397 681.364136,662.745422
|
|
75
|
+
C688.454895,666.131104 690.560730,677.929443 685.534119,684.053223
|
|
76
|
+
C680.980835,689.600281 674.630737,691.565491 668.152161,692.912537
|
|
77
|
+
C652.883362,696.087341 637.347290,696.868408 621.837341,695.926514
|
|
78
|
+
C604.630005,694.881592 587.526489,692.843750 571.356812,686.048157
|
|
79
|
+
C569.589355,685.305298 566.361023,685.664978 564.935242,686.857910
|
|
80
|
+
C553.402405,696.506775 541.383850,705.558655 527.790710,711.921387
|
|
81
|
+
C513.100891,718.797546 498.172363,725.529236 482.723358,730.302307
|
|
82
|
+
C470.396057,734.111084 457.187012,735.363464 444.266907,736.874512
|
|
83
|
+
C430.711334,738.459900 417.013794,740.026123 403.414001,739.761841
|
|
84
|
+
C382.493744,739.355286 361.719818,737.302490 341.145569,732.345215
|
|
85
|
+
C319.888550,727.223511 299.975342,719.098572 280.456024,709.709839
|
|
86
|
+
C273.747589,706.483215 267.502014,702.294373 260.763000,698.302734
|
|
87
|
+
M354.619019,454.942871
|
|
88
|
+
C342.341888,447.436707 330.444031,439.198578 317.699463,432.594452
|
|
89
|
+
C298.151886,422.465057 277.432007,415.063416 255.836700,410.482574
|
|
90
|
+
C245.648148,408.321350 235.367859,405.749237 225.043671,405.291687
|
|
91
|
+
C213.078873,404.761444 200.970566,405.888611 189.018707,407.172699
|
|
92
|
+
C180.268097,408.112854 172.855331,411.755005 174.018921,423.742859
|
|
93
|
+
C175.285980,436.796417 175.878662,449.989899 178.283112,462.838318
|
|
94
|
+
C180.834839,476.473663 184.756088,489.901703 188.821671,503.193207
|
|
95
|
+
C194.941971,523.202148 203.547485,542.272644 214.248489,560.195801
|
|
96
|
+
C221.455200,572.266418 229.710236,583.840759 238.579041,594.757507
|
|
97
|
+
C250.461151,609.383423 264.031372,622.510315 279.311096,633.669678
|
|
98
|
+
C288.433380,640.331970 297.381653,647.479858 307.294922,652.737427
|
|
99
|
+
C316.002686,657.355652 325.776428,660.298950 335.389313,662.782166
|
|
100
|
+
C345.208496,665.318726 355.140320,664.728699 364.322632,659.287659
|
|
101
|
+
C370.242004,655.780151 372.905060,650.934448 370.905334,645.918518
|
|
102
|
+
C369.954285,643.533081 368.981659,641.010559 367.401794,639.046448
|
|
103
|
+
C360.366425,630.299683 357.179718,620.153931 355.635986,609.245789
|
|
104
|
+
C354.669800,602.418640 359.592896,596.204834 365.977081,597.023315
|
|
105
|
+
C375.510925,598.245667 384.347961,601.723572 392.344543,606.895630
|
|
106
|
+
C405.898834,615.662231 419.312073,624.662292 432.537750,633.916931
|
|
107
|
+
C443.928070,641.887451 455.263855,649.988708 466.100403,658.684326
|
|
108
|
+
C480.124603,669.937805 496.178070,676.328064 513.613159,678.775269
|
|
109
|
+
C524.533264,680.307922 535.757141,679.778625 546.848022,679.929749
|
|
110
|
+
C550.046387,679.973267 553.256348,679.167297 556.865906,678.698120
|
|
111
|
+
C538.809753,664.660339 521.117065,651.439392 506.774414,634.366577
|
|
112
|
+
C499.551849,625.769104 491.385468,617.913269 484.662933,608.958557
|
|
113
|
+
C473.282990,593.799927 462.640625,578.083557 451.821747,562.508972
|
|
114
|
+
C444.607971,552.124146 437.945862,541.342468 430.446136,531.174072
|
|
115
|
+
C423.560669,521.838501 416.162506,512.840271 408.477264,504.146881
|
|
116
|
+
C400.953156,495.635712 393.162018,487.281494 384.793030,479.617401
|
|
117
|
+
C375.379150,470.996429 365.187744,463.224579 354.619019,454.942871
|
|
118
|
+
M497.627228,445.037598
|
|
119
|
+
C498.375824,445.662292 499.049103,446.687439 499.885590,446.844757
|
|
120
|
+
C504.342682,447.682953 508.826904,448.781860 513.326965,448.910980
|
|
121
|
+
C527.095032,449.306030 536.549988,462.392029 533.267273,474.729950
|
|
122
|
+
C531.298401,482.129639 531.084229,489.860016 534.091614,497.338104
|
|
123
|
+
C537.586365,506.028046 544.179993,512.237671 551.820007,516.598145
|
|
124
|
+
C557.778503,519.998840 565.073608,522.297180 571.881958,522.589539
|
|
125
|
+
C577.668091,522.838074 583.805054,519.997803 589.429138,517.662537
|
|
126
|
+
C596.584778,514.691406 598.607361,511.208374 595.941772,502.937317
|
|
127
|
+
C594.374023,498.072998 592.582581,493.076324 589.818909,488.838898
|
|
128
|
+
C580.064026,473.881866 570.450378,458.837067 557.121399,446.522339
|
|
129
|
+
C548.640076,438.686401 540.207092,431.153961 528.817444,427.981262
|
|
130
|
+
C519.021484,425.252502 509.302124,424.170746 500.070496,430.003632
|
|
131
|
+
C494.183350,433.723358 492.953735,439.530487 497.627228,445.037598
|
|
132
|
+
M505.736450,479.993225
|
|
133
|
+
C507.700195,479.346405 510.039307,479.165222 511.545471,477.950867
|
|
134
|
+
C514.243469,475.775513 516.899231,473.249054 515.543274,468.999939
|
|
135
|
+
C514.294983,465.088135 511.938049,462.182922 507.769135,462.161804
|
|
136
|
+
C503.818481,462.141754 500.468170,463.488892 498.907104,468.098297
|
|
137
|
+
C496.742737,474.488892 500.875183,477.064850 505.736450,479.993225
|
|
138
|
+
z"/>
|
|
139
|
+
</svg>
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
|
3
|
-
<svg width="800px" height="800px" viewBox="0 -28.5 256 256" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
|
|
4
|
-
<g>
|
|
5
|
-
<path d="M216.856339,16.5966031 C200.285002,8.84328665 182.566144,3.2084988 164.041564,0 C161.766523,4.11318106 159.108624,9.64549908 157.276099,14.0464379 C137.583995,11.0849896 118.072967,11.0849896 98.7430163,14.0464379 C96.9108417,9.64549908 94.1925838,4.11318106 91.8971895,0 C73.3526068,3.2084988 55.6133949,8.86399117 39.0420583,16.6376612 C5.61752293,67.146514 -3.4433191,116.400813 1.08711069,164.955721 C23.2560196,181.510915 44.7403634,191.567697 65.8621325,198.148576 C71.0772151,190.971126 75.7283628,183.341335 79.7352139,175.300261 C72.104019,172.400575 64.7949724,168.822202 57.8887866,164.667963 C59.7209612,163.310589 61.5131304,161.891452 63.2445898,160.431257 C105.36741,180.133187 151.134928,180.133187 192.754523,160.431257 C194.506336,161.891452 196.298154,163.310589 198.110326,164.667963 C191.183787,168.842556 183.854737,172.420929 176.223542,175.320965 C180.230393,183.341335 184.861538,190.991831 190.096624,198.16893 C211.238746,191.588051 232.743023,181.531619 254.911949,164.955721 C260.227747,108.668201 245.831087,59.8662432 216.856339,16.5966031 Z M85.4738752,135.09489 C72.8290281,135.09489 62.4592217,123.290155 62.4592217,108.914901 C62.4592217,94.5396472 72.607595,82.7145587 85.4738752,82.7145587 C98.3405064,82.7145587 108.709962,94.5189427 108.488529,108.914901 C108.508531,123.290155 98.3405064,135.09489 85.4738752,135.09489 Z M170.525237,135.09489 C157.88039,135.09489 147.510584,123.290155 147.510584,108.914901 C147.510584,94.5396472 157.658606,82.7145587 170.525237,82.7145587 C183.391518,82.7145587 193.761324,94.5189427 193.539891,108.914901 C193.539891,123.290155 183.391518,135.09489 170.525237,135.09489 Z" fill="currentColor" fill-rule="nonzero">
|
|
6
|
-
|
|
7
|
-
</path>
|
|
8
|
-
</g>
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
|
3
|
+
<svg width="800px" height="800px" viewBox="0 -28.5 256 256" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
|
|
4
|
+
<g>
|
|
5
|
+
<path d="M216.856339,16.5966031 C200.285002,8.84328665 182.566144,3.2084988 164.041564,0 C161.766523,4.11318106 159.108624,9.64549908 157.276099,14.0464379 C137.583995,11.0849896 118.072967,11.0849896 98.7430163,14.0464379 C96.9108417,9.64549908 94.1925838,4.11318106 91.8971895,0 C73.3526068,3.2084988 55.6133949,8.86399117 39.0420583,16.6376612 C5.61752293,67.146514 -3.4433191,116.400813 1.08711069,164.955721 C23.2560196,181.510915 44.7403634,191.567697 65.8621325,198.148576 C71.0772151,190.971126 75.7283628,183.341335 79.7352139,175.300261 C72.104019,172.400575 64.7949724,168.822202 57.8887866,164.667963 C59.7209612,163.310589 61.5131304,161.891452 63.2445898,160.431257 C105.36741,180.133187 151.134928,180.133187 192.754523,160.431257 C194.506336,161.891452 196.298154,163.310589 198.110326,164.667963 C191.183787,168.842556 183.854737,172.420929 176.223542,175.320965 C180.230393,183.341335 184.861538,190.991831 190.096624,198.16893 C211.238746,191.588051 232.743023,181.531619 254.911949,164.955721 C260.227747,108.668201 245.831087,59.8662432 216.856339,16.5966031 Z M85.4738752,135.09489 C72.8290281,135.09489 62.4592217,123.290155 62.4592217,108.914901 C62.4592217,94.5396472 72.607595,82.7145587 85.4738752,82.7145587 C98.3405064,82.7145587 108.709962,94.5189427 108.488529,108.914901 C108.508531,123.290155 98.3405064,135.09489 85.4738752,135.09489 Z M170.525237,135.09489 C157.88039,135.09489 147.510584,123.290155 147.510584,108.914901 C147.510584,94.5396472 157.658606,82.7145587 170.525237,82.7145587 C183.391518,82.7145587 193.761324,94.5189427 193.539891,108.914901 C193.539891,123.290155 183.391518,135.09489 170.525237,135.09489 Z" fill="currentColor" fill-rule="nonzero">
|
|
6
|
+
|
|
7
|
+
</path>
|
|
8
|
+
</g>
|
|
9
9
|
</svg>
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#1877F2">
|
|
2
|
-
<path d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z"/>
|
|
3
|
-
</svg>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#1877F2">
|
|
2
|
+
<path d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z"/>
|
|
3
|
+
</svg>
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_1767_22962)">
|
|
3
|
-
<path d="M19.2154 9.61643L18.8008 9.59977H18.8C14.2679 9.42143 10.5779 5.73143 10.3995 1.19935L10.3829 0.784349C10.375 0.578516 10.2058 0.416016 9.99996 0.416016C9.79413 0.416016 9.62496 0.578516 9.61704 0.783932L9.60038 1.19893C9.42163 5.73102 5.73163 9.42102 1.19913 9.59977L0.784543 9.61643C0.579126 9.62435 0.416626 9.79352 0.416626 9.99935C0.416626 10.2052 0.579126 10.3743 0.784959 10.3823L1.19954 10.3985C5.73163 10.5777 9.42163 14.2677 9.60038 18.7998L9.61704 19.2148C9.62496 19.4202 9.79413 19.5827 9.99996 19.5827C10.2058 19.5827 10.375 19.4202 10.3829 19.2148L10.3995 18.7998C10.5783 14.2677 14.2683 10.5777 18.8004 10.3985L19.215 10.3823C19.4208 10.3743 19.5833 10.2052 19.5833 9.99935C19.5833 9.79352 19.4208 9.62435 19.2154 9.61643Z" fill="url(#paint0_linear_1767_22962)"/>
|
|
4
|
-
</g>
|
|
5
|
-
<defs>
|
|
6
|
-
<linearGradient id="paint0_linear_1767_22962" x1="1.62746" y1="1.62685" x2="18.9283" y2="18.9277" gradientUnits="userSpaceOnUse">
|
|
7
|
-
<stop stop-color="#CA5DF5"/>
|
|
8
|
-
<stop offset="0.036" stop-color="#C05FF4"/>
|
|
9
|
-
<stop offset="0.293" stop-color="#806CEA"/>
|
|
10
|
-
<stop offset="0.528" stop-color="#4D77E3"/>
|
|
11
|
-
<stop offset="0.731" stop-color="#297FDD"/>
|
|
12
|
-
<stop offset="0.895" stop-color="#1283DA"/>
|
|
13
|
-
<stop offset="1" stop-color="#0A85D9"/>
|
|
14
|
-
</linearGradient>
|
|
15
|
-
<clipPath id="clip0_1767_22962">
|
|
16
|
-
<rect width="20" height="20" fill="white"/>
|
|
17
|
-
</clipPath>
|
|
18
|
-
</defs>
|
|
19
|
-
</svg>
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1767_22962)">
|
|
3
|
+
<path d="M19.2154 9.61643L18.8008 9.59977H18.8C14.2679 9.42143 10.5779 5.73143 10.3995 1.19935L10.3829 0.784349C10.375 0.578516 10.2058 0.416016 9.99996 0.416016C9.79413 0.416016 9.62496 0.578516 9.61704 0.783932L9.60038 1.19893C9.42163 5.73102 5.73163 9.42102 1.19913 9.59977L0.784543 9.61643C0.579126 9.62435 0.416626 9.79352 0.416626 9.99935C0.416626 10.2052 0.579126 10.3743 0.784959 10.3823L1.19954 10.3985C5.73163 10.5777 9.42163 14.2677 9.60038 18.7998L9.61704 19.2148C9.62496 19.4202 9.79413 19.5827 9.99996 19.5827C10.2058 19.5827 10.375 19.4202 10.3829 19.2148L10.3995 18.7998C10.5783 14.2677 14.2683 10.5777 18.8004 10.3985L19.215 10.3823C19.4208 10.3743 19.5833 10.2052 19.5833 9.99935C19.5833 9.79352 19.4208 9.62435 19.2154 9.61643Z" fill="url(#paint0_linear_1767_22962)"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<linearGradient id="paint0_linear_1767_22962" x1="1.62746" y1="1.62685" x2="18.9283" y2="18.9277" gradientUnits="userSpaceOnUse">
|
|
7
|
+
<stop stop-color="#CA5DF5"/>
|
|
8
|
+
<stop offset="0.036" stop-color="#C05FF4"/>
|
|
9
|
+
<stop offset="0.293" stop-color="#806CEA"/>
|
|
10
|
+
<stop offset="0.528" stop-color="#4D77E3"/>
|
|
11
|
+
<stop offset="0.731" stop-color="#297FDD"/>
|
|
12
|
+
<stop offset="0.895" stop-color="#1283DA"/>
|
|
13
|
+
<stop offset="1" stop-color="#0A85D9"/>
|
|
14
|
+
</linearGradient>
|
|
15
|
+
<clipPath id="clip0_1767_22962">
|
|
16
|
+
<rect width="20" height="20" fill="white"/>
|
|
17
|
+
</clipPath>
|
|
18
|
+
</defs>
|
|
19
|
+
</svg>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_114_4196)">
|
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 0C18.6276 0 24 5.50792 24 12.3035C24 17.7383 20.5656 22.3487 15.8004 23.9771C15.192 24.0983 14.976 23.7141 14.976 23.3865C14.976 22.9809 14.9904 21.6562 14.9904 20.0098C14.9904 18.8626 14.6064 18.1138 14.1756 17.7322C16.848 17.4274 19.656 16.3869 19.656 11.6613C19.656 10.3173 19.1904 9.22058 18.42 8.35898C18.5448 8.04818 18.9564 6.79674 18.3024 5.10234C18.3024 5.10234 17.2968 4.77267 15.006 6.36387C14.0472 6.09147 13.02 5.95441 12 5.94961C10.98 5.95441 9.954 6.09147 8.9964 6.36387C6.7032 4.77267 5.6952 5.10234 5.6952 5.10234C5.0436 6.79674 5.4552 8.04818 5.5788 8.35898C4.812 9.22058 4.3428 10.3173 4.3428 11.6613C4.3428 16.3749 7.1448 17.4314 9.81 17.7422C9.4668 18.0494 9.156 18.5913 9.048 19.3869C8.364 19.7013 6.6264 20.2454 5.556 18.365C5.556 18.365 4.9212 17.1829 3.7164 17.0965C3.7164 17.0965 2.5464 17.0809 3.6348 17.8441C3.6348 17.8441 4.4208 18.2221 4.9668 19.6441C4.9668 19.6441 5.6712 21.8401 9.0096 21.0961C9.0156 22.1245 9.0264 23.0937 9.0264 23.3865C9.0264 23.7117 8.8056 24.0923 8.2068 23.9783C3.438 22.3523 0 17.7395 0 12.3035C0 5.50792 5.3736 0 12 0Z" fill="currentColor"/>
|
|
4
|
-
</g>
|
|
5
|
-
</svg>
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_114_4196)">
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 0C18.6276 0 24 5.50792 24 12.3035C24 17.7383 20.5656 22.3487 15.8004 23.9771C15.192 24.0983 14.976 23.7141 14.976 23.3865C14.976 22.9809 14.9904 21.6562 14.9904 20.0098C14.9904 18.8626 14.6064 18.1138 14.1756 17.7322C16.848 17.4274 19.656 16.3869 19.656 11.6613C19.656 10.3173 19.1904 9.22058 18.42 8.35898C18.5448 8.04818 18.9564 6.79674 18.3024 5.10234C18.3024 5.10234 17.2968 4.77267 15.006 6.36387C14.0472 6.09147 13.02 5.95441 12 5.94961C10.98 5.95441 9.954 6.09147 8.9964 6.36387C6.7032 4.77267 5.6952 5.10234 5.6952 5.10234C5.0436 6.79674 5.4552 8.04818 5.5788 8.35898C4.812 9.22058 4.3428 10.3173 4.3428 11.6613C4.3428 16.3749 7.1448 17.4314 9.81 17.7422C9.4668 18.0494 9.156 18.5913 9.048 19.3869C8.364 19.7013 6.6264 20.2454 5.556 18.365C5.556 18.365 4.9212 17.1829 3.7164 17.0965C3.7164 17.0965 2.5464 17.0809 3.6348 17.8441C3.6348 17.8441 4.4208 18.2221 4.9668 19.6441C4.9668 19.6441 5.6712 21.8401 9.0096 21.0961C9.0156 22.1245 9.0264 23.0937 9.0264 23.3865C9.0264 23.7117 8.8056 24.0923 8.2068 23.9783C3.438 22.3523 0 17.7395 0 12.3035C0 5.50792 5.3736 0 12 0Z" fill="currentColor"/>
|
|
4
|
+
</g>
|
|
5
|
+
</svg>
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_114_4184)">
|
|
3
|
-
<path d="M23.714 12.2244C23.714 11.2412 23.6342 10.5236 23.4615 9.77954H12.2336V14.2175H18.8241C18.6913 15.3204 17.9738 16.9814 16.3793 18.0975L16.3569 18.246L19.907 20.9962L20.1529 21.0208C22.4118 18.9346 23.714 15.8652 23.714 12.2244Z" fill="#4285F4"/>
|
|
4
|
-
<path d="M12.2336 23.9176C15.4624 23.9176 18.173 22.8545 20.1529 21.0209L16.3792 18.0976C15.3694 18.8018 14.014 19.2934 12.2336 19.2934C9.07115 19.2934 6.38709 17.2074 5.43029 14.324L5.29005 14.3359L1.59863 17.1927L1.55035 17.3269C3.51689 21.2334 7.55631 23.9176 12.2336 23.9176Z" fill="#34A853"/>
|
|
5
|
-
<path d="M5.43029 14.324C5.17783 13.58 5.03173 12.7826 5.03173 11.9589C5.03173 11.135 5.17783 10.3378 5.41701 9.59366L5.41032 9.43519L1.67264 6.53247L1.55035 6.59064C0.739849 8.21174 0.27478 10.0322 0.27478 11.9589C0.27478 13.8855 0.739849 15.7059 1.55035 17.327L5.43029 14.324Z" fill="#FBBC05"/>
|
|
6
|
-
<path d="M12.2336 4.62403C14.4791 4.62403 15.9939 5.59402 16.8576 6.40461L20.2326 3.10928C18.1598 1.1826 15.4624 0 12.2336 0C7.55631 0 3.51689 2.68406 1.55035 6.59056L5.41701 9.59359C6.38709 6.7102 9.07115 4.62403 12.2336 4.62403Z" fill="#EB4335"/>
|
|
7
|
-
</g>
|
|
8
|
-
<defs>
|
|
9
|
-
<clipPath id="clip0_114_4184">
|
|
10
|
-
<rect width="24" height="24" fill="white"/>
|
|
11
|
-
</clipPath>
|
|
12
|
-
</defs>
|
|
13
|
-
</svg>
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_114_4184)">
|
|
3
|
+
<path d="M23.714 12.2244C23.714 11.2412 23.6342 10.5236 23.4615 9.77954H12.2336V14.2175H18.8241C18.6913 15.3204 17.9738 16.9814 16.3793 18.0975L16.3569 18.246L19.907 20.9962L20.1529 21.0208C22.4118 18.9346 23.714 15.8652 23.714 12.2244Z" fill="#4285F4"/>
|
|
4
|
+
<path d="M12.2336 23.9176C15.4624 23.9176 18.173 22.8545 20.1529 21.0209L16.3792 18.0976C15.3694 18.8018 14.014 19.2934 12.2336 19.2934C9.07115 19.2934 6.38709 17.2074 5.43029 14.324L5.29005 14.3359L1.59863 17.1927L1.55035 17.3269C3.51689 21.2334 7.55631 23.9176 12.2336 23.9176Z" fill="#34A853"/>
|
|
5
|
+
<path d="M5.43029 14.324C5.17783 13.58 5.03173 12.7826 5.03173 11.9589C5.03173 11.135 5.17783 10.3378 5.41701 9.59366L5.41032 9.43519L1.67264 6.53247L1.55035 6.59064C0.739849 8.21174 0.27478 10.0322 0.27478 11.9589C0.27478 13.8855 0.739849 15.7059 1.55035 17.327L5.43029 14.324Z" fill="#FBBC05"/>
|
|
6
|
+
<path d="M12.2336 4.62403C14.4791 4.62403 15.9939 5.59402 16.8576 6.40461L20.2326 3.10928C18.1598 1.1826 15.4624 0 12.2336 0C7.55631 0 3.51689 2.68406 1.55035 6.59056L5.41701 9.59359C6.38709 6.7102 9.07115 4.62403 12.2336 4.62403Z" fill="#EB4335"/>
|
|
7
|
+
</g>
|
|
8
|
+
<defs>
|
|
9
|
+
<clipPath id="clip0_114_4184">
|
|
10
|
+
<rect width="24" height="24" fill="white"/>
|
|
11
|
+
</clipPath>
|
|
12
|
+
</defs>
|
|
13
|
+
</svg>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_1767_22966)">
|
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.725 12.741L14.3733 7.82685C14.6992 7.58518 15.165 7.67935 15.3208 8.05352C16.1375 10.0277 15.7725 12.3993 14.1458 14.0277C12.52 15.656 10.2567 16.0127 8.18833 15.1993L5.92917 16.2468C9.17 18.4643 13.105 17.916 15.5642 15.4527C17.515 13.4993 18.1192 10.8368 17.5542 8.43602L17.5592 8.44185C16.74 4.91518 17.7608 3.50518 19.8508 0.622682C19.9008 0.554349 19.9508 0.486016 20 0.416016L17.2492 3.17018V3.16185L7.7225 12.7427M6.3525 13.9352C4.02583 11.7102 4.4275 8.26768 6.41167 6.28185C7.87917 4.81268 10.2842 4.21268 12.3833 5.09435L14.6375 4.05268C14.169 3.70803 13.6564 3.42776 13.1133 3.21935C11.7482 2.6606 10.2482 2.51801 8.80224 2.80952C7.35623 3.10104 6.02872 3.81363 4.98667 4.85768C2.87583 6.97102 2.21167 10.221 3.35167 12.9943C4.20333 15.0668 2.8075 16.5327 1.40167 18.0127C0.9025 18.5377 0.4025 19.0618 0 19.6168L6.35 13.9377" fill="currentColor"/>
|
|
4
|
-
</g>
|
|
5
|
-
<defs>
|
|
6
|
-
<clipPath id="clip0_1767_22966">
|
|
7
|
-
<rect width="20" height="20" fill="currentColor"/>
|
|
8
|
-
</clipPath>
|
|
9
|
-
</defs>
|
|
10
|
-
</svg>
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1767_22966)">
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.725 12.741L14.3733 7.82685C14.6992 7.58518 15.165 7.67935 15.3208 8.05352C16.1375 10.0277 15.7725 12.3993 14.1458 14.0277C12.52 15.656 10.2567 16.0127 8.18833 15.1993L5.92917 16.2468C9.17 18.4643 13.105 17.916 15.5642 15.4527C17.515 13.4993 18.1192 10.8368 17.5542 8.43602L17.5592 8.44185C16.74 4.91518 17.7608 3.50518 19.8508 0.622682C19.9008 0.554349 19.9508 0.486016 20 0.416016L17.2492 3.17018V3.16185L7.7225 12.7427M6.3525 13.9352C4.02583 11.7102 4.4275 8.26768 6.41167 6.28185C7.87917 4.81268 10.2842 4.21268 12.3833 5.09435L14.6375 4.05268C14.169 3.70803 13.6564 3.42776 13.1133 3.21935C11.7482 2.6606 10.2482 2.51801 8.80224 2.80952C7.35623 3.10104 6.02872 3.81363 4.98667 4.85768C2.87583 6.97102 2.21167 10.221 3.35167 12.9943C4.20333 15.0668 2.8075 16.5327 1.40167 18.0127C0.9025 18.5377 0.4025 19.0618 0 19.6168L6.35 13.9377" fill="currentColor"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id="clip0_1767_22966">
|
|
7
|
+
<rect width="20" height="20" fill="currentColor"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
10
|
+
</svg>
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
<svg width="1000" height="240" viewBox="0 0 1000 240" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M26.1184 101.6C23.2939 98.7833 23.2939 94.2166 26.1184 91.4L97.7167 20L200 20L77.26 142.4C74.4355 145.217 69.8562 145.217 67.0317 142.4L26.1184 101.6Z" fill="url(#paint0_linear_1_42)"/>
|
|
3
|
-
<path d="M155.251 77.375L200 122V224L104.109 128.375L155.251 77.375Z" fill="url(#paint1_linear_1_42)"/>
|
|
4
|
-
<path d="M813.788 77.8691C822.77 77.8691 830.293 80.0567 836.358 84.4307C837.617 85.3176 838.812 86.2734 839.945 87.2959V80.4941H858.404V179.525C858.404 181.916 858.288 184.191 858.055 186.349C857.88 188.565 857.559 190.724 857.093 192.823C855.693 198.947 853.01 203.963 849.044 207.87C845.078 211.836 840.149 214.781 834.259 216.706C828.427 218.631 821.953 219.593 814.838 219.593C809.589 219.593 804.544 218.777 799.703 217.144C794.921 215.511 790.605 213.148 786.756 210.057C782.907 207.024 779.757 203.35 777.308 199.034L796.729 189.411C798.536 192.852 801.074 195.389 804.34 197.022C807.664 198.714 811.193 199.559 814.926 199.559C819.3 199.559 823.208 198.772 826.648 197.197C830.089 195.681 832.743 193.406 834.609 190.373C836.534 187.399 837.438 183.666 837.321 179.176V170.212C836.948 170.494 836.569 170.769 836.184 171.039C829.943 175.413 822.216 177.601 813.001 177.601C804.311 177.601 796.729 175.413 790.255 171.039C783.781 166.665 778.766 160.716 775.208 153.192C771.65 145.669 769.871 137.183 769.871 127.735C769.871 118.171 771.65 109.656 775.208 102.19C778.824 94.6669 783.927 88.7465 790.518 84.4307C797.108 80.0566 804.865 77.8692 813.788 77.8691ZM451.808 77.8691C459.156 77.8692 465.659 79.0067 471.316 81.2812C477.032 83.5558 481.639 86.793 485.139 90.9922C488.638 95.1913 490.796 100.119 491.612 105.776L470.092 109.626C469.567 105.602 467.729 102.424 464.58 100.091C461.489 97.7579 457.348 96.4449 452.157 96.1533C447.2 95.8617 443.205 96.6198 440.172 98.4277C437.139 100.177 435.623 102.657 435.623 105.864C435.623 107.672 436.235 109.218 437.46 110.501C438.685 111.784 441.134 113.067 444.809 114.351C448.541 115.634 454.082 117.208 461.431 119.074C468.954 120.999 474.961 123.215 479.452 125.723C484.001 128.172 487.267 131.118 489.25 134.559C491.291 138 492.312 142.17 492.312 147.069C492.312 156.576 488.842 164.041 481.901 169.465C475.019 174.889 465.484 177.601 453.295 177.601C441.63 177.601 432.153 174.977 424.862 169.728C417.572 164.479 413.14 157.1 411.565 147.594L433.086 144.27C434.194 148.935 436.644 152.609 440.435 155.292C444.226 157.975 449.008 159.316 454.782 159.316C459.856 159.316 463.764 158.325 466.505 156.342C469.304 154.301 470.704 151.53 470.704 148.031C470.704 145.873 470.179 144.153 469.129 142.87C468.137 141.529 465.921 140.245 462.48 139.021C459.039 137.796 453.761 136.25 446.646 134.384C438.714 132.284 432.415 130.039 427.749 127.647C423.083 125.198 419.73 122.311 417.688 118.986C415.647 115.662 414.627 111.638 414.627 106.914C414.627 101.024 416.173 95.8908 419.264 91.5166C422.355 87.1426 426.67 83.7889 432.211 81.4561C437.752 79.0648 444.284 77.8691 451.808 77.8691ZM642.225 77.8691C651.731 77.8691 660.013 79.9983 667.07 84.2559C674.127 88.5134 679.609 94.4042 683.517 101.928C687.424 109.393 689.378 117.996 689.378 127.735C689.378 137.533 687.396 146.194 683.43 153.718C679.522 161.183 674.039 167.044 666.982 171.302C659.925 175.501 651.673 177.601 642.225 177.601C632.777 177.601 624.524 175.472 617.467 171.215C610.41 166.957 604.928 161.095 601.021 153.63C597.171 146.106 595.246 137.475 595.246 127.735C595.246 117.821 597.229 109.13 601.195 101.665C605.161 94.1998 610.673 88.3672 617.729 84.168C624.786 79.9689 632.952 77.8692 642.225 77.8691ZM924.667 77.8691C934.465 77.8692 942.776 80.1729 949.6 84.7803C956.482 89.3294 961.585 95.7743 964.909 104.114C968.234 112.454 969.487 122.282 968.671 133.597H900.287C900.995 140.381 902.997 145.834 906.295 149.956C910.494 155.205 916.619 157.829 924.667 157.829C929.857 157.829 934.319 156.692 938.052 154.418C941.843 152.085 944.759 148.731 946.8 144.357L967.621 150.656C964.005 159.171 958.406 165.791 950.824 170.515C943.301 175.239 934.99 177.601 925.892 177.601C916.327 177.601 907.928 175.53 900.696 171.39C893.464 167.249 887.807 161.504 883.725 154.155C879.7 146.807 877.689 138.35 877.688 128.785C877.688 118.462 879.671 109.51 883.637 101.928C887.603 94.2875 893.114 88.3672 900.171 84.168C907.228 79.9688 915.394 77.8691 924.667 77.8691ZM281.084 174.977H260V49H281.084V174.977ZM356.805 77.7822C363.803 77.7822 369.577 78.9485 374.126 81.2812C378.675 83.6141 382.292 86.5891 384.975 90.2051C387.657 93.821 389.64 97.6705 390.923 101.753C392.206 105.835 393.023 109.714 393.373 113.388C393.781 117.004 393.985 119.949 393.985 122.224V174.977H372.639V129.485C372.639 126.511 372.435 123.216 372.026 119.6C371.618 115.984 370.656 112.513 369.14 109.188C367.682 105.806 365.465 103.036 362.491 100.878C359.575 98.72 355.608 97.6406 350.593 97.6406C347.91 97.6407 345.256 98.0783 342.632 98.9531C340.007 99.828 337.617 101.345 335.459 103.503C333.359 105.603 331.668 108.518 330.385 112.251C329.102 115.925 328.46 120.649 328.46 126.423V174.977H307.114V80.4941H325.923V90.9775C328.334 88.1488 331.163 85.7038 334.409 83.6436C340.475 79.7361 347.94 77.7822 356.805 77.7822ZM587.322 70.084H532.558V101.49H576.824V122.486H532.558V174.977H511.474V49H587.322V70.084ZM753.183 80.1445C756.157 79.9113 759.044 80.0276 761.843 80.4941V100.178C759.043 99.3614 755.807 99.0991 752.133 99.3906C748.517 99.6822 745.25 100.702 742.334 102.452C739.418 104.027 737.027 106.04 735.161 108.489C733.353 110.939 732.012 113.738 731.137 116.888C730.262 119.979 729.824 123.332 729.824 126.948V174.977H708.653V80.4941H727.287V95.5869C727.998 94.3174 728.785 93.1061 729.649 91.9541C731.632 89.3297 733.994 87.1718 736.735 85.4805C739.068 83.9059 741.634 82.6815 744.434 81.8066C747.291 80.8735 750.208 80.3195 753.183 80.1445ZM816.938 96.7656C811.28 96.7656 806.615 98.1655 802.94 100.965C799.266 103.706 796.554 107.439 794.805 112.163C793.055 116.829 792.18 122.02 792.18 127.735C792.18 133.509 793.025 138.758 794.717 143.482C796.466 148.148 799.12 151.852 802.678 154.593C806.235 157.334 810.755 158.704 816.237 158.704C821.894 158.704 826.444 157.421 829.885 154.855C833.384 152.231 835.921 148.586 837.496 143.92C839.129 139.254 839.945 133.859 839.945 127.735C839.945 121.553 839.129 116.158 837.496 111.551C835.921 106.885 833.442 103.269 830.06 100.703C826.677 98.0787 822.303 96.7656 816.938 96.7656ZM642.225 97.6406C636.567 97.6407 631.902 98.9241 628.228 101.49C624.612 103.998 621.928 107.526 620.179 112.075C618.429 116.566 617.555 121.786 617.555 127.735C617.555 136.892 619.625 144.211 623.766 149.693C627.965 155.117 634.118 157.829 642.225 157.829C650.623 157.829 656.864 155.03 660.946 149.431C665.029 143.832 667.07 136.6 667.07 127.735C667.07 118.579 664.999 111.288 660.858 105.864C656.718 100.382 650.506 97.6406 642.225 97.6406ZM925.541 96.3281C916.91 96.3282 910.494 99.0114 906.295 104.377C903.597 107.786 901.767 112.219 900.803 117.675H947.27C946.508 111.524 944.865 106.771 942.338 103.415C938.78 98.6909 933.181 96.3281 925.541 96.3281Z" fill="white"/>
|
|
5
|
-
<defs>
|
|
6
|
-
<linearGradient id="paint0_linear_1_42" x1="22.3955" y1="23.0754" x2="292.628" y2="116.332" gradientUnits="userSpaceOnUse">
|
|
7
|
-
<stop stop-color="white"/>
|
|
8
|
-
<stop offset="1" stop-color="white" stop-opacity="0.4"/>
|
|
9
|
-
</linearGradient>
|
|
10
|
-
<linearGradient id="paint1_linear_1_42" x1="309.006" y1="103.841" x2="130.001" y2="103.841" gradientUnits="userSpaceOnUse">
|
|
11
|
-
<stop stop-color="white"/>
|
|
12
|
-
<stop offset="1" stop-color="white" stop-opacity="0.4"/>
|
|
13
|
-
</linearGradient>
|
|
14
|
-
</defs>
|
|
15
|
-
</svg>
|
|
1
|
+
<svg width="1000" height="240" viewBox="0 0 1000 240" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M26.1184 101.6C23.2939 98.7833 23.2939 94.2166 26.1184 91.4L97.7167 20L200 20L77.26 142.4C74.4355 145.217 69.8562 145.217 67.0317 142.4L26.1184 101.6Z" fill="url(#paint0_linear_1_42)"/>
|
|
3
|
+
<path d="M155.251 77.375L200 122V224L104.109 128.375L155.251 77.375Z" fill="url(#paint1_linear_1_42)"/>
|
|
4
|
+
<path d="M813.788 77.8691C822.77 77.8691 830.293 80.0567 836.358 84.4307C837.617 85.3176 838.812 86.2734 839.945 87.2959V80.4941H858.404V179.525C858.404 181.916 858.288 184.191 858.055 186.349C857.88 188.565 857.559 190.724 857.093 192.823C855.693 198.947 853.01 203.963 849.044 207.87C845.078 211.836 840.149 214.781 834.259 216.706C828.427 218.631 821.953 219.593 814.838 219.593C809.589 219.593 804.544 218.777 799.703 217.144C794.921 215.511 790.605 213.148 786.756 210.057C782.907 207.024 779.757 203.35 777.308 199.034L796.729 189.411C798.536 192.852 801.074 195.389 804.34 197.022C807.664 198.714 811.193 199.559 814.926 199.559C819.3 199.559 823.208 198.772 826.648 197.197C830.089 195.681 832.743 193.406 834.609 190.373C836.534 187.399 837.438 183.666 837.321 179.176V170.212C836.948 170.494 836.569 170.769 836.184 171.039C829.943 175.413 822.216 177.601 813.001 177.601C804.311 177.601 796.729 175.413 790.255 171.039C783.781 166.665 778.766 160.716 775.208 153.192C771.65 145.669 769.871 137.183 769.871 127.735C769.871 118.171 771.65 109.656 775.208 102.19C778.824 94.6669 783.927 88.7465 790.518 84.4307C797.108 80.0566 804.865 77.8692 813.788 77.8691ZM451.808 77.8691C459.156 77.8692 465.659 79.0067 471.316 81.2812C477.032 83.5558 481.639 86.793 485.139 90.9922C488.638 95.1913 490.796 100.119 491.612 105.776L470.092 109.626C469.567 105.602 467.729 102.424 464.58 100.091C461.489 97.7579 457.348 96.4449 452.157 96.1533C447.2 95.8617 443.205 96.6198 440.172 98.4277C437.139 100.177 435.623 102.657 435.623 105.864C435.623 107.672 436.235 109.218 437.46 110.501C438.685 111.784 441.134 113.067 444.809 114.351C448.541 115.634 454.082 117.208 461.431 119.074C468.954 120.999 474.961 123.215 479.452 125.723C484.001 128.172 487.267 131.118 489.25 134.559C491.291 138 492.312 142.17 492.312 147.069C492.312 156.576 488.842 164.041 481.901 169.465C475.019 174.889 465.484 177.601 453.295 177.601C441.63 177.601 432.153 174.977 424.862 169.728C417.572 164.479 413.14 157.1 411.565 147.594L433.086 144.27C434.194 148.935 436.644 152.609 440.435 155.292C444.226 157.975 449.008 159.316 454.782 159.316C459.856 159.316 463.764 158.325 466.505 156.342C469.304 154.301 470.704 151.53 470.704 148.031C470.704 145.873 470.179 144.153 469.129 142.87C468.137 141.529 465.921 140.245 462.48 139.021C459.039 137.796 453.761 136.25 446.646 134.384C438.714 132.284 432.415 130.039 427.749 127.647C423.083 125.198 419.73 122.311 417.688 118.986C415.647 115.662 414.627 111.638 414.627 106.914C414.627 101.024 416.173 95.8908 419.264 91.5166C422.355 87.1426 426.67 83.7889 432.211 81.4561C437.752 79.0648 444.284 77.8691 451.808 77.8691ZM642.225 77.8691C651.731 77.8691 660.013 79.9983 667.07 84.2559C674.127 88.5134 679.609 94.4042 683.517 101.928C687.424 109.393 689.378 117.996 689.378 127.735C689.378 137.533 687.396 146.194 683.43 153.718C679.522 161.183 674.039 167.044 666.982 171.302C659.925 175.501 651.673 177.601 642.225 177.601C632.777 177.601 624.524 175.472 617.467 171.215C610.41 166.957 604.928 161.095 601.021 153.63C597.171 146.106 595.246 137.475 595.246 127.735C595.246 117.821 597.229 109.13 601.195 101.665C605.161 94.1998 610.673 88.3672 617.729 84.168C624.786 79.9689 632.952 77.8692 642.225 77.8691ZM924.667 77.8691C934.465 77.8692 942.776 80.1729 949.6 84.7803C956.482 89.3294 961.585 95.7743 964.909 104.114C968.234 112.454 969.487 122.282 968.671 133.597H900.287C900.995 140.381 902.997 145.834 906.295 149.956C910.494 155.205 916.619 157.829 924.667 157.829C929.857 157.829 934.319 156.692 938.052 154.418C941.843 152.085 944.759 148.731 946.8 144.357L967.621 150.656C964.005 159.171 958.406 165.791 950.824 170.515C943.301 175.239 934.99 177.601 925.892 177.601C916.327 177.601 907.928 175.53 900.696 171.39C893.464 167.249 887.807 161.504 883.725 154.155C879.7 146.807 877.689 138.35 877.688 128.785C877.688 118.462 879.671 109.51 883.637 101.928C887.603 94.2875 893.114 88.3672 900.171 84.168C907.228 79.9688 915.394 77.8691 924.667 77.8691ZM281.084 174.977H260V49H281.084V174.977ZM356.805 77.7822C363.803 77.7822 369.577 78.9485 374.126 81.2812C378.675 83.6141 382.292 86.5891 384.975 90.2051C387.657 93.821 389.64 97.6705 390.923 101.753C392.206 105.835 393.023 109.714 393.373 113.388C393.781 117.004 393.985 119.949 393.985 122.224V174.977H372.639V129.485C372.639 126.511 372.435 123.216 372.026 119.6C371.618 115.984 370.656 112.513 369.14 109.188C367.682 105.806 365.465 103.036 362.491 100.878C359.575 98.72 355.608 97.6406 350.593 97.6406C347.91 97.6407 345.256 98.0783 342.632 98.9531C340.007 99.828 337.617 101.345 335.459 103.503C333.359 105.603 331.668 108.518 330.385 112.251C329.102 115.925 328.46 120.649 328.46 126.423V174.977H307.114V80.4941H325.923V90.9775C328.334 88.1488 331.163 85.7038 334.409 83.6436C340.475 79.7361 347.94 77.7822 356.805 77.7822ZM587.322 70.084H532.558V101.49H576.824V122.486H532.558V174.977H511.474V49H587.322V70.084ZM753.183 80.1445C756.157 79.9113 759.044 80.0276 761.843 80.4941V100.178C759.043 99.3614 755.807 99.0991 752.133 99.3906C748.517 99.6822 745.25 100.702 742.334 102.452C739.418 104.027 737.027 106.04 735.161 108.489C733.353 110.939 732.012 113.738 731.137 116.888C730.262 119.979 729.824 123.332 729.824 126.948V174.977H708.653V80.4941H727.287V95.5869C727.998 94.3174 728.785 93.1061 729.649 91.9541C731.632 89.3297 733.994 87.1718 736.735 85.4805C739.068 83.9059 741.634 82.6815 744.434 81.8066C747.291 80.8735 750.208 80.3195 753.183 80.1445ZM816.938 96.7656C811.28 96.7656 806.615 98.1655 802.94 100.965C799.266 103.706 796.554 107.439 794.805 112.163C793.055 116.829 792.18 122.02 792.18 127.735C792.18 133.509 793.025 138.758 794.717 143.482C796.466 148.148 799.12 151.852 802.678 154.593C806.235 157.334 810.755 158.704 816.237 158.704C821.894 158.704 826.444 157.421 829.885 154.855C833.384 152.231 835.921 148.586 837.496 143.92C839.129 139.254 839.945 133.859 839.945 127.735C839.945 121.553 839.129 116.158 837.496 111.551C835.921 106.885 833.442 103.269 830.06 100.703C826.677 98.0787 822.303 96.7656 816.938 96.7656ZM642.225 97.6406C636.567 97.6407 631.902 98.9241 628.228 101.49C624.612 103.998 621.928 107.526 620.179 112.075C618.429 116.566 617.555 121.786 617.555 127.735C617.555 136.892 619.625 144.211 623.766 149.693C627.965 155.117 634.118 157.829 642.225 157.829C650.623 157.829 656.864 155.03 660.946 149.431C665.029 143.832 667.07 136.6 667.07 127.735C667.07 118.579 664.999 111.288 660.858 105.864C656.718 100.382 650.506 97.6406 642.225 97.6406ZM925.541 96.3281C916.91 96.3282 910.494 99.0114 906.295 104.377C903.597 107.786 901.767 112.219 900.803 117.675H947.27C946.508 111.524 944.865 106.771 942.338 103.415C938.78 98.6909 933.181 96.3281 925.541 96.3281Z" fill="white"/>
|
|
5
|
+
<defs>
|
|
6
|
+
<linearGradient id="paint0_linear_1_42" x1="22.3955" y1="23.0754" x2="292.628" y2="116.332" gradientUnits="userSpaceOnUse">
|
|
7
|
+
<stop stop-color="white"/>
|
|
8
|
+
<stop offset="1" stop-color="white" stop-opacity="0.4"/>
|
|
9
|
+
</linearGradient>
|
|
10
|
+
<linearGradient id="paint1_linear_1_42" x1="309.006" y1="103.841" x2="130.001" y2="103.841" gradientUnits="userSpaceOnUse">
|
|
11
|
+
<stop stop-color="white"/>
|
|
12
|
+
<stop offset="1" stop-color="white" stop-opacity="0.4"/>
|
|
13
|
+
</linearGradient>
|
|
14
|
+
</defs>
|
|
15
|
+
</svg>
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
<svg width="1000" height="240" viewBox="0 0 1000 240" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M26.1184 101.6C23.2939 98.7833 23.2939 94.2166 26.1184 91.4L97.7167 20L200 20L77.26 142.4C74.4355 145.217 69.8562 145.217 67.0317 142.4L26.1184 101.6Z" fill="url(#paint0_linear_1_48)"/>
|
|
3
|
-
<path d="M155.251 77.375L200 122V224L104.109 128.375L155.251 77.375Z" fill="url(#paint1_linear_1_48)"/>
|
|
4
|
-
<path d="M813.788 77.8701C822.77 77.8701 830.293 80.0567 836.358 84.4307C837.617 85.3176 838.812 86.2734 839.945 87.2959V80.4941H858.404V179.525C858.404 181.916 858.288 184.191 858.055 186.349C857.88 188.565 857.559 190.724 857.093 192.823C855.693 198.947 853.01 203.963 849.044 207.87C845.078 211.836 840.149 214.781 834.259 216.706C828.427 218.631 821.953 219.593 814.838 219.593C809.589 219.593 804.544 218.777 799.703 217.144C794.921 215.511 790.605 213.148 786.756 210.057C782.907 207.024 779.757 203.35 777.308 199.034L796.729 189.411C798.536 192.852 801.074 195.389 804.34 197.022C807.664 198.714 811.193 199.56 814.926 199.56C819.3 199.56 823.208 198.772 826.648 197.197C830.089 195.681 832.743 193.406 834.609 190.373C836.534 187.399 837.438 183.666 837.321 179.176V170.212C836.948 170.494 836.569 170.769 836.184 171.039C829.943 175.413 822.216 177.601 813.001 177.601C804.311 177.601 796.729 175.413 790.255 171.039C783.781 166.665 778.766 160.717 775.208 153.193C771.65 145.67 769.871 137.184 769.871 127.735C769.871 118.171 771.65 109.656 775.208 102.19C778.824 94.6669 783.927 88.7465 790.518 84.4307C797.108 80.0566 804.865 77.8701 813.788 77.8701ZM451.808 77.8701C459.156 77.8701 465.659 79.0067 471.316 81.2812C477.032 83.5558 481.639 86.793 485.139 90.9922C488.638 95.1913 490.796 100.119 491.612 105.776L470.092 109.626C469.567 105.602 467.729 102.424 464.58 100.091C461.489 97.7579 457.348 96.4449 452.157 96.1533C447.2 95.8617 443.205 96.6207 440.172 98.4287C437.139 100.178 435.623 102.657 435.623 105.864C435.623 107.672 436.235 109.218 437.46 110.501C438.685 111.784 441.134 113.067 444.809 114.351C448.541 115.634 454.082 117.208 461.431 119.074C468.954 120.999 474.961 123.215 479.452 125.723C484.001 128.172 487.267 131.118 489.25 134.559C491.291 138 492.312 142.17 492.312 147.069C492.312 156.576 488.842 164.041 481.901 169.465C475.019 174.889 465.484 177.601 453.295 177.601C441.63 177.601 432.153 174.977 424.862 169.728C417.572 164.479 413.14 157.1 411.565 147.594L433.086 144.27C434.194 148.935 436.644 152.609 440.435 155.292C444.226 157.975 449.008 159.316 454.782 159.316C459.856 159.316 463.764 158.325 466.505 156.342C469.304 154.301 470.704 151.53 470.704 148.031C470.704 145.873 470.179 144.153 469.129 142.87C468.137 141.529 465.921 140.245 462.48 139.021C459.039 137.796 453.761 136.25 446.646 134.384C438.714 132.284 432.415 130.039 427.749 127.647C423.084 125.198 419.73 122.312 417.688 118.987C415.647 115.663 414.627 111.638 414.627 106.914C414.627 101.024 416.173 95.8908 419.264 91.5166C422.355 87.1426 426.67 83.7889 432.211 81.4561C437.752 79.0648 444.284 77.8701 451.808 77.8701ZM642.225 77.8701C651.731 77.8701 660.013 79.9983 667.07 84.2559C674.127 88.5134 679.609 94.4042 683.517 101.928C687.424 109.393 689.378 117.996 689.378 127.735C689.378 137.533 687.396 146.194 683.43 153.718C679.522 161.183 674.039 167.044 666.982 171.302C659.925 175.501 651.673 177.601 642.225 177.601C632.776 177.601 624.524 175.472 617.467 171.215C610.41 166.957 604.928 161.095 601.021 153.63C597.171 146.106 595.246 137.475 595.246 127.735C595.246 117.821 597.229 109.13 601.195 101.665C605.161 94.1999 610.673 88.3671 617.729 84.168C624.786 79.9689 632.952 77.8702 642.225 77.8701ZM924.667 77.8701C934.465 77.8702 942.776 80.1738 949.6 84.7812C956.481 89.3303 961.585 95.7744 964.909 104.114C968.234 112.454 969.487 122.282 968.671 133.597H900.287C900.995 140.381 902.997 145.834 906.295 149.956C910.494 155.205 916.619 157.829 924.667 157.829C929.857 157.829 934.319 156.692 938.052 154.418C941.843 152.085 944.759 148.731 946.8 144.357L967.621 150.656C964.005 159.171 958.406 165.791 950.824 170.515C943.301 175.239 934.99 177.601 925.892 177.601C916.327 177.601 907.928 175.53 900.696 171.39C893.464 167.249 887.807 161.504 883.725 154.155C879.7 146.807 877.688 138.35 877.688 128.785C877.688 118.462 879.671 109.51 883.637 101.928C887.603 94.2875 893.114 88.3672 900.171 84.168C907.228 79.9688 915.394 77.8701 924.667 77.8701ZM281.084 174.977H260V49H281.084V174.977ZM356.805 77.7822C363.803 77.7822 369.577 78.9485 374.126 81.2812C378.675 83.6141 382.292 86.5891 384.975 90.2051C387.657 93.821 389.64 97.6705 390.923 101.753C392.206 105.835 393.023 109.714 393.373 113.388C393.781 117.004 393.985 119.949 393.985 122.224V174.977H372.639V129.485C372.639 126.511 372.435 123.216 372.026 119.6C371.618 115.984 370.656 112.513 369.14 109.188C367.682 105.806 365.465 103.036 362.491 100.878C359.575 98.72 355.608 97.6406 350.593 97.6406C347.91 97.6407 345.256 98.0783 342.632 98.9531C340.007 99.828 337.617 101.345 335.459 103.503C333.359 105.603 331.668 108.518 330.385 112.251C329.102 115.925 328.46 120.649 328.46 126.423V174.977H307.114V80.4941H325.923V90.9775C328.334 88.1488 331.163 85.7038 334.409 83.6436C340.475 79.7361 347.94 77.7822 356.805 77.7822ZM587.322 70.084H532.558V101.49H576.824V122.486H532.558V174.977H511.474V49H587.322V70.084ZM753.183 80.1445C756.157 79.9113 759.044 80.0276 761.843 80.4941V100.178C759.043 99.3614 755.807 99.0991 752.133 99.3906C748.517 99.6822 745.25 100.702 742.334 102.452C739.418 104.027 737.027 106.04 735.161 108.489C733.353 110.939 732.012 113.738 731.137 116.888C730.262 119.979 729.824 123.332 729.824 126.948V174.977H708.653V80.4941H727.287V95.5869C727.998 94.3174 728.785 93.1061 729.649 91.9541C731.632 89.3297 733.994 87.1718 736.735 85.4805C739.068 83.9059 741.634 82.6815 744.434 81.8066C747.291 80.8735 750.208 80.3195 753.183 80.1445ZM816.938 96.7656C811.28 96.7656 806.615 98.1656 802.94 100.965C799.266 103.706 796.554 107.439 794.805 112.163C793.055 116.829 792.18 122.02 792.18 127.735C792.18 133.509 793.025 138.758 794.717 143.482C796.466 148.148 799.12 151.852 802.678 154.593C806.235 157.334 810.755 158.704 816.237 158.704C821.894 158.704 826.444 157.421 829.885 154.855C833.384 152.231 835.921 148.586 837.496 143.92C839.129 139.254 839.945 133.859 839.945 127.735C839.945 121.553 839.129 116.158 837.496 111.551C835.921 106.885 833.442 103.269 830.06 100.703C826.677 98.0787 822.303 96.7656 816.938 96.7656ZM642.225 97.6406C636.567 97.6407 631.902 98.9241 628.228 101.49C624.612 103.998 621.928 107.526 620.179 112.075C618.429 116.566 617.555 121.786 617.555 127.735C617.555 136.892 619.625 144.211 623.766 149.693C627.965 155.117 634.118 157.829 642.225 157.829C650.623 157.829 656.864 155.03 660.946 149.431C665.029 143.832 667.07 136.6 667.07 127.735C667.07 118.579 664.999 111.288 660.858 105.864C656.718 100.382 650.506 97.6406 642.225 97.6406ZM925.541 96.3291C916.91 96.3292 910.494 99.0114 906.295 104.377C903.597 107.786 901.767 112.219 900.803 117.675H947.27C946.508 111.524 944.865 106.771 942.338 103.415C938.78 98.6909 933.181 96.3291 925.541 96.3291Z" fill="black"/>
|
|
5
|
-
<defs>
|
|
6
|
-
<linearGradient id="paint0_linear_1_48" x1="22.3955" y1="23.0754" x2="292.628" y2="116.332" gradientUnits="userSpaceOnUse">
|
|
7
|
-
<stop/>
|
|
8
|
-
<stop offset="1" stop-opacity="0.4"/>
|
|
9
|
-
</linearGradient>
|
|
10
|
-
<linearGradient id="paint1_linear_1_48" x1="309.006" y1="103.841" x2="130.001" y2="103.841" gradientUnits="userSpaceOnUse">
|
|
11
|
-
<stop/>
|
|
12
|
-
<stop offset="1" stop-opacity="0.4"/>
|
|
13
|
-
</linearGradient>
|
|
14
|
-
</defs>
|
|
15
|
-
</svg>
|
|
1
|
+
<svg width="1000" height="240" viewBox="0 0 1000 240" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M26.1184 101.6C23.2939 98.7833 23.2939 94.2166 26.1184 91.4L97.7167 20L200 20L77.26 142.4C74.4355 145.217 69.8562 145.217 67.0317 142.4L26.1184 101.6Z" fill="url(#paint0_linear_1_48)"/>
|
|
3
|
+
<path d="M155.251 77.375L200 122V224L104.109 128.375L155.251 77.375Z" fill="url(#paint1_linear_1_48)"/>
|
|
4
|
+
<path d="M813.788 77.8701C822.77 77.8701 830.293 80.0567 836.358 84.4307C837.617 85.3176 838.812 86.2734 839.945 87.2959V80.4941H858.404V179.525C858.404 181.916 858.288 184.191 858.055 186.349C857.88 188.565 857.559 190.724 857.093 192.823C855.693 198.947 853.01 203.963 849.044 207.87C845.078 211.836 840.149 214.781 834.259 216.706C828.427 218.631 821.953 219.593 814.838 219.593C809.589 219.593 804.544 218.777 799.703 217.144C794.921 215.511 790.605 213.148 786.756 210.057C782.907 207.024 779.757 203.35 777.308 199.034L796.729 189.411C798.536 192.852 801.074 195.389 804.34 197.022C807.664 198.714 811.193 199.56 814.926 199.56C819.3 199.56 823.208 198.772 826.648 197.197C830.089 195.681 832.743 193.406 834.609 190.373C836.534 187.399 837.438 183.666 837.321 179.176V170.212C836.948 170.494 836.569 170.769 836.184 171.039C829.943 175.413 822.216 177.601 813.001 177.601C804.311 177.601 796.729 175.413 790.255 171.039C783.781 166.665 778.766 160.717 775.208 153.193C771.65 145.67 769.871 137.184 769.871 127.735C769.871 118.171 771.65 109.656 775.208 102.19C778.824 94.6669 783.927 88.7465 790.518 84.4307C797.108 80.0566 804.865 77.8701 813.788 77.8701ZM451.808 77.8701C459.156 77.8701 465.659 79.0067 471.316 81.2812C477.032 83.5558 481.639 86.793 485.139 90.9922C488.638 95.1913 490.796 100.119 491.612 105.776L470.092 109.626C469.567 105.602 467.729 102.424 464.58 100.091C461.489 97.7579 457.348 96.4449 452.157 96.1533C447.2 95.8617 443.205 96.6207 440.172 98.4287C437.139 100.178 435.623 102.657 435.623 105.864C435.623 107.672 436.235 109.218 437.46 110.501C438.685 111.784 441.134 113.067 444.809 114.351C448.541 115.634 454.082 117.208 461.431 119.074C468.954 120.999 474.961 123.215 479.452 125.723C484.001 128.172 487.267 131.118 489.25 134.559C491.291 138 492.312 142.17 492.312 147.069C492.312 156.576 488.842 164.041 481.901 169.465C475.019 174.889 465.484 177.601 453.295 177.601C441.63 177.601 432.153 174.977 424.862 169.728C417.572 164.479 413.14 157.1 411.565 147.594L433.086 144.27C434.194 148.935 436.644 152.609 440.435 155.292C444.226 157.975 449.008 159.316 454.782 159.316C459.856 159.316 463.764 158.325 466.505 156.342C469.304 154.301 470.704 151.53 470.704 148.031C470.704 145.873 470.179 144.153 469.129 142.87C468.137 141.529 465.921 140.245 462.48 139.021C459.039 137.796 453.761 136.25 446.646 134.384C438.714 132.284 432.415 130.039 427.749 127.647C423.084 125.198 419.73 122.312 417.688 118.987C415.647 115.663 414.627 111.638 414.627 106.914C414.627 101.024 416.173 95.8908 419.264 91.5166C422.355 87.1426 426.67 83.7889 432.211 81.4561C437.752 79.0648 444.284 77.8701 451.808 77.8701ZM642.225 77.8701C651.731 77.8701 660.013 79.9983 667.07 84.2559C674.127 88.5134 679.609 94.4042 683.517 101.928C687.424 109.393 689.378 117.996 689.378 127.735C689.378 137.533 687.396 146.194 683.43 153.718C679.522 161.183 674.039 167.044 666.982 171.302C659.925 175.501 651.673 177.601 642.225 177.601C632.776 177.601 624.524 175.472 617.467 171.215C610.41 166.957 604.928 161.095 601.021 153.63C597.171 146.106 595.246 137.475 595.246 127.735C595.246 117.821 597.229 109.13 601.195 101.665C605.161 94.1999 610.673 88.3671 617.729 84.168C624.786 79.9689 632.952 77.8702 642.225 77.8701ZM924.667 77.8701C934.465 77.8702 942.776 80.1738 949.6 84.7812C956.481 89.3303 961.585 95.7744 964.909 104.114C968.234 112.454 969.487 122.282 968.671 133.597H900.287C900.995 140.381 902.997 145.834 906.295 149.956C910.494 155.205 916.619 157.829 924.667 157.829C929.857 157.829 934.319 156.692 938.052 154.418C941.843 152.085 944.759 148.731 946.8 144.357L967.621 150.656C964.005 159.171 958.406 165.791 950.824 170.515C943.301 175.239 934.99 177.601 925.892 177.601C916.327 177.601 907.928 175.53 900.696 171.39C893.464 167.249 887.807 161.504 883.725 154.155C879.7 146.807 877.688 138.35 877.688 128.785C877.688 118.462 879.671 109.51 883.637 101.928C887.603 94.2875 893.114 88.3672 900.171 84.168C907.228 79.9688 915.394 77.8701 924.667 77.8701ZM281.084 174.977H260V49H281.084V174.977ZM356.805 77.7822C363.803 77.7822 369.577 78.9485 374.126 81.2812C378.675 83.6141 382.292 86.5891 384.975 90.2051C387.657 93.821 389.64 97.6705 390.923 101.753C392.206 105.835 393.023 109.714 393.373 113.388C393.781 117.004 393.985 119.949 393.985 122.224V174.977H372.639V129.485C372.639 126.511 372.435 123.216 372.026 119.6C371.618 115.984 370.656 112.513 369.14 109.188C367.682 105.806 365.465 103.036 362.491 100.878C359.575 98.72 355.608 97.6406 350.593 97.6406C347.91 97.6407 345.256 98.0783 342.632 98.9531C340.007 99.828 337.617 101.345 335.459 103.503C333.359 105.603 331.668 108.518 330.385 112.251C329.102 115.925 328.46 120.649 328.46 126.423V174.977H307.114V80.4941H325.923V90.9775C328.334 88.1488 331.163 85.7038 334.409 83.6436C340.475 79.7361 347.94 77.7822 356.805 77.7822ZM587.322 70.084H532.558V101.49H576.824V122.486H532.558V174.977H511.474V49H587.322V70.084ZM753.183 80.1445C756.157 79.9113 759.044 80.0276 761.843 80.4941V100.178C759.043 99.3614 755.807 99.0991 752.133 99.3906C748.517 99.6822 745.25 100.702 742.334 102.452C739.418 104.027 737.027 106.04 735.161 108.489C733.353 110.939 732.012 113.738 731.137 116.888C730.262 119.979 729.824 123.332 729.824 126.948V174.977H708.653V80.4941H727.287V95.5869C727.998 94.3174 728.785 93.1061 729.649 91.9541C731.632 89.3297 733.994 87.1718 736.735 85.4805C739.068 83.9059 741.634 82.6815 744.434 81.8066C747.291 80.8735 750.208 80.3195 753.183 80.1445ZM816.938 96.7656C811.28 96.7656 806.615 98.1656 802.94 100.965C799.266 103.706 796.554 107.439 794.805 112.163C793.055 116.829 792.18 122.02 792.18 127.735C792.18 133.509 793.025 138.758 794.717 143.482C796.466 148.148 799.12 151.852 802.678 154.593C806.235 157.334 810.755 158.704 816.237 158.704C821.894 158.704 826.444 157.421 829.885 154.855C833.384 152.231 835.921 148.586 837.496 143.92C839.129 139.254 839.945 133.859 839.945 127.735C839.945 121.553 839.129 116.158 837.496 111.551C835.921 106.885 833.442 103.269 830.06 100.703C826.677 98.0787 822.303 96.7656 816.938 96.7656ZM642.225 97.6406C636.567 97.6407 631.902 98.9241 628.228 101.49C624.612 103.998 621.928 107.526 620.179 112.075C618.429 116.566 617.555 121.786 617.555 127.735C617.555 136.892 619.625 144.211 623.766 149.693C627.965 155.117 634.118 157.829 642.225 157.829C650.623 157.829 656.864 155.03 660.946 149.431C665.029 143.832 667.07 136.6 667.07 127.735C667.07 118.579 664.999 111.288 660.858 105.864C656.718 100.382 650.506 97.6406 642.225 97.6406ZM925.541 96.3291C916.91 96.3292 910.494 99.0114 906.295 104.377C903.597 107.786 901.767 112.219 900.803 117.675H947.27C946.508 111.524 944.865 106.771 942.338 103.415C938.78 98.6909 933.181 96.3291 925.541 96.3291Z" fill="black"/>
|
|
5
|
+
<defs>
|
|
6
|
+
<linearGradient id="paint0_linear_1_48" x1="22.3955" y1="23.0754" x2="292.628" y2="116.332" gradientUnits="userSpaceOnUse">
|
|
7
|
+
<stop/>
|
|
8
|
+
<stop offset="1" stop-opacity="0.4"/>
|
|
9
|
+
</linearGradient>
|
|
10
|
+
<linearGradient id="paint1_linear_1_48" x1="309.006" y1="103.841" x2="130.001" y2="103.841" gradientUnits="userSpaceOnUse">
|
|
11
|
+
<stop/>
|
|
12
|
+
<stop offset="1" stop-opacity="0.4"/>
|
|
13
|
+
</linearGradient>
|
|
14
|
+
</defs>
|
|
15
|
+
</svg>
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
|
2
2
|
<svg width="800px" height="800px" viewBox="0 0 2500 2500" xmlns="http://www.w3.org/2000/svg"><defs><radialGradient id="0" cx="332.14" cy="2511.81" r="3263.54" gradientUnits="userSpaceOnUse"><stop offset=".09" stop-color="#fa8f21"/><stop offset=".78" stop-color="#d82d7e"/></radialGradient><radialGradient id="1" cx="1516.14" cy="2623.81" r="2572.12" gradientUnits="userSpaceOnUse"><stop offset=".64" stop-color="#8c3aaa" stop-opacity="0"/><stop offset="1" stop-color="#8c3aaa"/></radialGradient></defs><path d="M833.4,1250c0-230.11,186.49-416.7,416.6-416.7s416.7,186.59,416.7,416.7-186.59,416.7-416.7,416.7S833.4,1480.11,833.4,1250m-225.26,0c0,354.5,287.36,641.86,641.86,641.86S1891.86,1604.5,1891.86,1250,1604.5,608.14,1250,608.14,608.14,895.5,608.14,1250M1767.27,582.69a150,150,0,1,0,150.06-149.94h-0.06a150.07,150.07,0,0,0-150,149.94M745,2267.47c-121.87-5.55-188.11-25.85-232.13-43-58.36-22.72-100-49.78-143.78-93.5s-70.88-85.32-93.5-143.68c-17.16-44-37.46-110.26-43-232.13-6.06-131.76-7.27-171.34-7.27-505.15s1.31-373.28,7.27-505.15c5.55-121.87,26-188,43-232.13,22.72-58.36,49.78-100,93.5-143.78s85.32-70.88,143.78-93.5c44-17.16,110.26-37.46,232.13-43,131.76-6.06,171.34-7.27,505-7.27s373.28,1.31,505.15,7.27c121.87,5.55,188,26,232.13,43,58.36,22.62,100,49.78,143.78,93.5s70.78,85.42,93.5,143.78c17.16,44,37.46,110.26,43,232.13,6.06,131.87,7.27,171.34,7.27,505.15s-1.21,373.28-7.27,505.15c-5.55,121.87-25.95,188.11-43,232.13-22.72,58.36-49.78,100-93.5,143.68s-85.42,70.78-143.78,93.5c-44,17.16-110.26,37.46-232.13,43-131.76,6.06-171.34,7.27-505.15,7.27s-373.28-1.21-505-7.27M734.65,7.57c-133.07,6.06-224,27.16-303.41,58.06C349,97.54,279.38,140.35,209.81,209.81S97.54,349,65.63,431.24c-30.9,79.46-52,170.34-58.06,303.41C1.41,867.93,0,910.54,0,1250s1.41,382.07,7.57,515.35c6.06,133.08,27.16,223.95,58.06,303.41,31.91,82.19,74.62,152,144.18,221.43S349,2402.37,431.24,2434.37c79.56,30.9,170.34,52,303.41,58.06C868,2498.49,910.54,2500,1250,2500s382.07-1.41,515.35-7.57c133.08-6.06,223.95-27.16,303.41-58.06,82.19-32,151.86-74.72,221.43-144.18s112.18-139.24,144.18-221.43c30.9-79.46,52.1-170.34,58.06-303.41,6.06-133.38,7.47-175.89,7.47-515.35s-1.41-382.07-7.47-515.35c-6.06-133.08-27.16-224-58.06-303.41-32-82.19-74.72-151.86-144.18-221.43S2150.95,97.54,2068.86,65.63c-79.56-30.9-170.44-52.1-303.41-58.06C1632.17,1.51,1589.56,0,1250.1,0S868,1.41,734.65,7.57" fill="url(#0)"/><path d="M833.4,1250c0-230.11,186.49-416.7,416.6-416.7s416.7,186.59,416.7,416.7-186.59,416.7-416.7,416.7S833.4,1480.11,833.4,1250m-225.26,0c0,354.5,287.36,641.86,641.86,641.86S1891.86,1604.5,1891.86,1250,1604.5,608.14,1250,608.14,608.14,895.5,608.14,1250M1767.27,582.69a150,150,0,1,0,150.06-149.94h-0.06a150.07,150.07,0,0,0-150,149.94M745,2267.47c-121.87-5.55-188.11-25.85-232.13-43-58.36-22.72-100-49.78-143.78-93.5s-70.88-85.32-93.5-143.68c-17.16-44-37.46-110.26-43-232.13-6.06-131.76-7.27-171.34-7.27-505.15s1.31-373.28,7.27-505.15c5.55-121.87,26-188,43-232.13,22.72-58.36,49.78-100,93.5-143.78s85.32-70.88,143.78-93.5c44-17.16,110.26-37.46,232.13-43,131.76-6.06,171.34-7.27,505-7.27s373.28,1.31,505.15,7.27c121.87,5.55,188,26,232.13,43,58.36,22.62,100,49.78,143.78,93.5s70.78,85.42,93.5,143.78c17.16,44,37.46,110.26,43,232.13,6.06,131.87,7.27,171.34,7.27,505.15s-1.21,373.28-7.27,505.15c-5.55,121.87-25.95,188.11-43,232.13-22.72,58.36-49.78,100-93.5,143.68s-85.42,70.78-143.78,93.5c-44,17.16-110.26,37.46-232.13,43-131.76,6.06-171.34,7.27-505.15,7.27s-373.28-1.21-505-7.27M734.65,7.57c-133.07,6.06-224,27.16-303.41,58.06C349,97.54,279.38,140.35,209.81,209.81S97.54,349,65.63,431.24c-30.9,79.46-52,170.34-58.06,303.41C1.41,867.93,0,910.54,0,1250s1.41,382.07,7.57,515.35c6.06,133.08,27.16,223.95,58.06,303.41,31.91,82.19,74.62,152,144.18,221.43S349,2402.37,431.24,2434.37c79.56,30.9,170.34,52,303.41,58.06C868,2498.49,910.54,2500,1250,2500s382.07-1.41,515.35-7.57c133.08-6.06,223.95-27.16,303.41-58.06,82.19-32,151.86-74.72,221.43-144.18s112.18-139.24,144.18-221.43c30.9-79.46,52.1-170.34,58.06-303.41,6.06-133.38,7.47-175.89,7.47-515.35s-1.41-382.07-7.47-515.35c-6.06-133.08-27.16-224-58.06-303.41-32-82.19-74.72-151.86-144.18-221.43S2150.95,97.54,2068.86,65.63c-79.56-30.9-170.44-52.1-303.41-58.06C1632.17,1.51,1589.56,0,1250.1,0S868,1.41,734.65,7.57" fill="url(#1)"/></svg>
|