khal-os 1.260324.2
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/.env.example +23 -0
- package/.genie/mailbox/cli-sent.jsonl +3 -0
- package/.genie/mailbox/ds1-wave2-engineer-1.json +15 -0
- package/.genie/mailbox/ds1-wave2-engineer-2.json +15 -0
- package/.genie/mailbox/ds1-wave2-engineer-3.json +15 -0
- package/.genie/state/os-observability.json +39 -0
- package/.genie/state/tmux-control-mode-terminal.json +28 -0
- package/.genie/wishes/genieos-one-theme/WISH.md +417 -0
- package/.genie/wishes/workos-prod-rbac/WISH.md +345 -0
- package/.github/workflows/ci.yml +39 -0
- package/.github/workflows/release.yml +78 -0
- package/.github/workflows/version.yml +122 -0
- package/.husky/pre-commit +1 -0
- package/.pnpm-approve-builds.json +1 -0
- package/CLAUDE.md +117 -0
- package/LICENSE +21 -0
- package/README.md +38 -0
- package/biome.json +124 -0
- package/bun.lock +1249 -0
- package/docs/workos-setup.md +116 -0
- package/ecosystem.config.cjs +26 -0
- package/instrumentation.ts +8 -0
- package/knip.json +35 -0
- package/nats.conf +7 -0
- package/next.config.ts +25 -0
- package/package.json +78 -0
- package/packages/dev3000-app/components.ts +12 -0
- package/packages/dev3000-app/manifest.ts +19 -0
- package/packages/dev3000-app/package.json +23 -0
- package/packages/dev3000-app/views/dev3000/Dev3000App.tsx +758 -0
- package/packages/dev3000-app/views/dev3000/ErrorsPanel.tsx +160 -0
- package/packages/dev3000-app/views/dev3000/dev3000-context.tsx +21 -0
- package/packages/dev3000-app/views/dev3000/index.ts +4 -0
- package/packages/dev3000-app/views/dev3000/schema.ts +55 -0
- package/packages/dev3000-app/views/dev3000/service/index.ts +358 -0
- package/packages/dev3000-app/views/dev3000/service/runtime +1 -0
- package/packages/dev3000-app/views/dev3000/subjects.ts +9 -0
- package/packages/dev3000-app/views/dev3000/types.ts +77 -0
- package/packages/files-app/components.ts +12 -0
- package/packages/files-app/manifest.ts +19 -0
- package/packages/files-app/package.json +23 -0
- package/packages/files-app/views/files/ContextMenu.tsx +151 -0
- package/packages/files-app/views/files/DeleteConfirmDialog.tsx +39 -0
- package/packages/files-app/views/files/FileItem.tsx +128 -0
- package/packages/files-app/views/files/FilesApp.tsx +509 -0
- package/packages/files-app/views/files/FilesListView.tsx +201 -0
- package/packages/files-app/views/files/FilesToolbar.tsx +117 -0
- package/packages/files-app/views/files/GridView.tsx +90 -0
- package/packages/files-app/views/files/InlineInput.tsx +131 -0
- package/packages/files-app/views/files/UploadOverlay.tsx +61 -0
- package/packages/files-app/views/files/schema.ts +49 -0
- package/packages/files-app/views/files/service/index.ts +184 -0
- package/packages/files-app/views/files/service/runtime +1 -0
- package/packages/files-app/views/files/use-files.ts +201 -0
- package/packages/files-app/views/files/use-upload.ts +105 -0
- package/packages/genie-app/components.ts +12 -0
- package/packages/genie-app/lib/subjects.ts +87 -0
- package/packages/genie-app/manifest.ts +19 -0
- package/packages/genie-app/package.json +29 -0
- package/packages/genie-app/views/genie/service/agent-lifecycle.ts +136 -0
- package/packages/genie-app/views/genie/service/cli.ts +114 -0
- package/packages/genie-app/views/genie/service/comms.ts +141 -0
- package/packages/genie-app/views/genie/service/directory.ts +167 -0
- package/packages/genie-app/views/genie/service/index.ts +219 -0
- package/packages/genie-app/views/genie/service/system.ts +123 -0
- package/packages/genie-app/views/genie/service/teams.ts +191 -0
- package/packages/genie-app/views/genie/service/terminal-proxy.ts +184 -0
- package/packages/genie-app/views/genie/service/tmux-control.ts +318 -0
- package/packages/genie-app/views/genie/service/wishes.ts +270 -0
- package/packages/genie-app/views/genie/ui/GenieApp.tsx +5 -0
- package/packages/genie-app/views/genie/ui/PaneCard.tsx +307 -0
- package/packages/genie-app/views/genie/ui/Sidebar.tsx +212 -0
- package/packages/genie-app/views/genie/ui/TabBar.tsx +70 -0
- package/packages/genie-app/views/genie/ui/WorkspaceCanvas.tsx +343 -0
- package/packages/genie-app/views/genie/ui/XTermPane.tsx +306 -0
- package/packages/genie-app/views/genie/ui/hooks/useNatsAction.ts +54 -0
- package/packages/genie-app/views/genie/ui/hooks/useNatsRequest.ts +68 -0
- package/packages/genie-app/views/genie/ui/panels/AgentsPanel.tsx +399 -0
- package/packages/genie-app/views/genie/ui/panels/ChatPanel.tsx +351 -0
- package/packages/genie-app/views/genie/ui/panels/SystemPanel.tsx +195 -0
- package/packages/genie-app/views/genie/ui/panels/TeamsPanel.tsx +560 -0
- package/packages/genie-app/views/genie/ui/panels/WishesPanel.tsx +424 -0
- package/packages/nats-viewer-app/components.ts +12 -0
- package/packages/nats-viewer-app/manifest.ts +18 -0
- package/packages/nats-viewer-app/package.json +14 -0
- package/packages/nats-viewer-app/views/nats-viewer/ActiveSubs.tsx +34 -0
- package/packages/nats-viewer-app/views/nats-viewer/MessageLog.tsx +247 -0
- package/packages/nats-viewer-app/views/nats-viewer/NatsViewer.tsx +209 -0
- package/packages/nats-viewer-app/views/nats-viewer/PublishPanel.tsx +111 -0
- package/packages/nats-viewer-app/views/nats-viewer/RequestPanel.tsx +165 -0
- package/packages/nats-viewer-app/views/nats-viewer/Sidebar.tsx +59 -0
- package/packages/nats-viewer-app/views/nats-viewer/SubjectCatalog.tsx +63 -0
- package/packages/nats-viewer-app/views/nats-viewer/SubscribeInput.tsx +59 -0
- package/packages/nats-viewer-app/views/nats-viewer/index.ts +5 -0
- package/packages/nats-viewer-app/views/nats-viewer/nats-viewer-context.tsx +31 -0
- package/packages/nats-viewer-app/views/nats-viewer/types.ts +7 -0
- package/packages/nats-viewer-app/views/nats-viewer/use-message-buffer.ts +55 -0
- package/packages/os-cli/package.json +18 -0
- package/packages/os-cli/src/commands/events.ts +176 -0
- package/packages/os-cli/src/commands/logs.ts +96 -0
- package/packages/os-cli/src/commands/status.ts +53 -0
- package/packages/os-cli/src/commands/traces.ts +115 -0
- package/packages/os-cli/src/index.ts +15 -0
- package/packages/os-cli/src/lib/formatter.ts +123 -0
- package/packages/os-cli/src/lib/nats.ts +16 -0
- package/packages/os-cli/src/lib/trace-tree.ts +144 -0
- package/packages/os-cli/tsconfig.json +12 -0
- package/packages/os-sdk/package.json +27 -0
- package/packages/os-sdk/src/api/handler.ts +67 -0
- package/packages/os-sdk/src/config.ts +68 -0
- package/packages/os-sdk/src/db/factory.test.ts +42 -0
- package/packages/os-sdk/src/db/factory.ts +72 -0
- package/packages/os-sdk/src/db/migrate.ts +140 -0
- package/packages/os-sdk/src/db/provision.ts +44 -0
- package/packages/os-sdk/src/index.ts +36 -0
- package/packages/os-sdk/src/service/console-intercept.ts +60 -0
- package/packages/os-sdk/src/service/logger.ts +88 -0
- package/packages/os-sdk/src/service/o11y-streams.ts +88 -0
- package/packages/os-sdk/src/service/runtime.ts +259 -0
- package/packages/os-sdk/src/service/trace.ts +71 -0
- package/packages/os-sdk/tsconfig.json +16 -0
- package/packages/os-ui/package.json +13 -0
- package/packages/os-ui/src/index.ts +29 -0
- package/packages/os-ui/src/server.ts +4 -0
- package/packages/os-ui/tsconfig.json +19 -0
- package/packages/settings-app/components.ts +12 -0
- package/packages/settings-app/manifest.ts +18 -0
- package/packages/settings-app/package.json +14 -0
- package/packages/settings-app/views/settings/Settings.tsx +492 -0
- package/packages/terminal-app/components.ts +12 -0
- package/packages/terminal-app/manifest.ts +20 -0
- package/packages/terminal-app/package.json +23 -0
- package/packages/terminal-app/views/terminal/schema.ts +82 -0
- package/packages/terminal-app/views/terminal/service/index.ts +133 -0
- package/packages/terminal-app/views/terminal/service/runtime +1 -0
- package/packages/terminal-app/views/terminal/service/session.ts +290 -0
- package/packages/terminal-app/views/terminal/service/shell-hooks/bashrc-hook.sh +21 -0
- package/packages/terminal-app/views/terminal/types.ts +26 -0
- package/packages/terminal-app/views/terminal/ui/MultiTerminalApp.tsx +615 -0
- package/packages/terminal-app/views/terminal/ui/SplitDragHandle.tsx +91 -0
- package/packages/terminal-app/views/terminal/ui/SplitPaneRenderer.tsx +112 -0
- package/packages/terminal-app/views/terminal/ui/TerminalPane.tsx +478 -0
- package/packages/terminal-app/views/terminal/ui/TerminalTabBar.tsx +131 -0
- package/pnpm-workspace.yaml +9 -0
- package/postcss.config.mjs +7 -0
- package/public/file.svg +1 -0
- package/public/globe.svg +1 -0
- package/public/icons/code-server.svg +6 -0
- package/public/icons/default.svg +5 -0
- package/public/icons/dusk/1password.svg +1 -0
- package/public/icons/dusk/activity_monitor.svg +1 -0
- package/public/icons/dusk/app_store.svg +1 -0
- package/public/icons/dusk/atom.svg +1 -0
- package/public/icons/dusk/brave.svg +1 -0
- package/public/icons/dusk/calculator.svg +1 -0
- package/public/icons/dusk/calendar.svg +1 -0
- package/public/icons/dusk/chrome.svg +1 -0
- package/public/icons/dusk/chrome2.svg +1 -0
- package/public/icons/dusk/dashboard.svg +13 -0
- package/public/icons/dusk/discord.svg +1 -0
- package/public/icons/dusk/dropbox.svg +1 -0
- package/public/icons/dusk/electron.svg +1 -0
- package/public/icons/dusk/figma.svg +1 -0
- package/public/icons/dusk/finder.svg +1 -0
- package/public/icons/dusk/finder2.svg +1 -0
- package/public/icons/dusk/finder3.svg +1 -0
- package/public/icons/dusk/firefox.svg +1 -0
- package/public/icons/dusk/framer.svg +1 -0
- package/public/icons/dusk/gimp.svg +1 -0
- package/public/icons/dusk/github_desktop.svg +1 -0
- package/public/icons/dusk/hyper.svg +1 -0
- package/public/icons/dusk/hyper3.svg +1 -0
- package/public/icons/dusk/intellij.svg +1 -0
- package/public/icons/dusk/iterm2.svg +1 -0
- package/public/icons/dusk/itunes.svg +1 -0
- package/public/icons/dusk/mail.svg +1 -0
- package/public/icons/dusk/messenger.svg +1 -0
- package/public/icons/dusk/mongodb.svg +1 -0
- package/public/icons/dusk/notes.svg +1 -0
- package/public/icons/dusk/notion.svg +1 -0
- package/public/icons/dusk/obs.svg +1 -0
- package/public/icons/dusk/pages.svg +1 -0
- package/public/icons/dusk/photos.svg +1 -0
- package/public/icons/dusk/postman.svg +1 -0
- package/public/icons/dusk/preview.svg +1 -0
- package/public/icons/dusk/reminders.svg +1 -0
- package/public/icons/dusk/safari.svg +1 -0
- package/public/icons/dusk/sequel_pro.svg +1 -0
- package/public/icons/dusk/sketch.svg +1 -0
- package/public/icons/dusk/skype.svg +1 -0
- package/public/icons/dusk/slack.svg +1 -0
- package/public/icons/dusk/slack2.svg +1 -0
- package/public/icons/dusk/spotify.svg +1 -0
- package/public/icons/dusk/steam.svg +1 -0
- package/public/icons/dusk/system_preferences.svg +1 -0
- package/public/icons/dusk/tableplus.svg +1 -0
- package/public/icons/dusk/teams.svg +1 -0
- package/public/icons/dusk/telegram.svg +1 -0
- package/public/icons/dusk/terminal.svg +1 -0
- package/public/icons/dusk/todoist.svg +1 -0
- package/public/icons/dusk/trash.svg +1 -0
- package/public/icons/dusk/trello.svg +1 -0
- package/public/icons/dusk/vivaldi.svg +1 -0
- package/public/icons/dusk/vlc.svg +1 -0
- package/public/icons/dusk/vscode.svg +1 -0
- package/public/icons/dusk/whatsapp.svg +1 -0
- package/public/icons/dusk/xeyes.svg +1 -0
- package/public/icons/dusk/zoom.svg +1 -0
- package/public/icons/files.svg +5 -0
- package/public/icons/pwa/icon-192.png +0 -0
- package/public/icons/pwa/icon-512.png +0 -0
- package/public/icons/settings.svg +14 -0
- package/public/icons/terminal.svg +5 -0
- package/public/icons/text-editor.svg +7 -0
- package/public/manifest.json +38 -0
- package/public/next.svg +1 -0
- package/public/sw.js +41 -0
- package/public/vercel.svg +1 -0
- package/public/wallpapers/default.svg +10 -0
- package/public/window.svg +1 -0
- package/scripts/generate-pwa-icons.mjs +33 -0
- package/scripts/install-nats.sh +37 -0
- package/sentry.client.config.ts +21 -0
- package/sentry.edge.config.ts +12 -0
- package/sentry.server.config.ts +12 -0
- package/src/app/api/files/download/route.ts +81 -0
- package/src/app/api/files/download-zip/route.ts +102 -0
- package/src/app/api/files/upload/route.ts +58 -0
- package/src/app/api/webhooks/workos/route.ts +98 -0
- package/src/app/auth/callback/route.ts +16 -0
- package/src/app/auth/logout/route.ts +15 -0
- package/src/app/desktop/desktop-shell.tsx +110 -0
- package/src/app/desktop/layout.tsx +8 -0
- package/src/app/desktop/page.tsx +24 -0
- package/src/app/favicon.ico +0 -0
- package/src/app/globals.css +7 -0
- package/src/app/layout.tsx +64 -0
- package/src/app/offline/page.tsx +83 -0
- package/src/app/page.tsx +5 -0
- package/src/app/standalone/[appId]/page.tsx +28 -0
- package/src/app/standalone/layout.tsx +10 -0
- package/src/components/app-icon.tsx +55 -0
- package/src/components/apps/_echo/schema.ts +14 -0
- package/src/components/apps/_echo/service/index.ts +42 -0
- package/src/components/apps/app-manifest.ts +97 -0
- package/src/components/apps/app-registry.ts +55 -0
- package/src/components/apps/dev3000/Dev3000App.tsx +224 -0
- package/src/components/apps/dev3000/ErrorsPanel.tsx +160 -0
- package/src/components/apps/dev3000/Sidebar.tsx +41 -0
- package/src/components/apps/dev3000/TimelineLog.tsx +173 -0
- package/src/components/apps/dev3000/dev3000-context.tsx +29 -0
- package/src/components/apps/dev3000/index.ts +4 -0
- package/src/components/apps/dev3000/schema.ts +48 -0
- package/src/components/apps/dev3000/service/index.ts +520 -0
- package/src/components/apps/dev3000/service/runtime +1 -0
- package/src/components/apps/dev3000/types.ts +15 -0
- package/src/components/apps/dev3000/use-message-buffer.ts +46 -0
- package/src/components/apps/files/ContextMenu.tsx +151 -0
- package/src/components/apps/files/DeleteConfirmDialog.tsx +78 -0
- package/src/components/apps/files/FileItem.tsx +128 -0
- package/src/components/apps/files/FilesApp.tsx +509 -0
- package/src/components/apps/files/FilesListView.tsx +201 -0
- package/src/components/apps/files/FilesToolbar.tsx +117 -0
- package/src/components/apps/files/GridView.tsx +90 -0
- package/src/components/apps/files/InlineInput.tsx +131 -0
- package/src/components/apps/files/UploadOverlay.tsx +61 -0
- package/src/components/apps/files/schema.ts +49 -0
- package/src/components/apps/files/service/index.ts +227 -0
- package/src/components/apps/files/service/runtime +1 -0
- package/src/components/apps/files/use-files.ts +201 -0
- package/src/components/apps/files/use-upload.ts +105 -0
- package/src/components/apps/nats-viewer/ActiveSubs.tsx +34 -0
- package/src/components/apps/nats-viewer/MessageLog.tsx +247 -0
- package/src/components/apps/nats-viewer/NatsViewer.tsx +209 -0
- package/src/components/apps/nats-viewer/PublishPanel.tsx +113 -0
- package/src/components/apps/nats-viewer/RequestPanel.tsx +167 -0
- package/src/components/apps/nats-viewer/Sidebar.tsx +62 -0
- package/src/components/apps/nats-viewer/SubjectCatalog.tsx +64 -0
- package/src/components/apps/nats-viewer/SubscribeInput.tsx +59 -0
- package/src/components/apps/nats-viewer/index.ts +5 -0
- package/src/components/apps/nats-viewer/nats-viewer-context.tsx +31 -0
- package/src/components/apps/nats-viewer/types.ts +7 -0
- package/src/components/apps/nats-viewer/use-message-buffer.ts +55 -0
- package/src/components/apps/settings/Settings.tsx +492 -0
- package/src/components/apps/terminal/schema.ts +82 -0
- package/src/components/apps/terminal/service/index.ts +189 -0
- package/src/components/apps/terminal/service/runtime +1 -0
- package/src/components/apps/terminal/service/session.ts +296 -0
- package/src/components/apps/terminal/service/shell-hooks/bashrc-hook.sh +21 -0
- package/src/components/apps/terminal/types.ts +26 -0
- package/src/components/apps/terminal/ui/MultiTerminalApp.tsx +617 -0
- package/src/components/apps/terminal/ui/SplitDragHandle.tsx +91 -0
- package/src/components/apps/terminal/ui/SplitPaneRenderer.tsx +112 -0
- package/src/components/apps/terminal/ui/TerminalPane.tsx +476 -0
- package/src/components/apps/terminal/ui/TerminalTabBar.tsx +131 -0
- package/src/components/desktop/AnimatedBackground.tsx +69 -0
- package/src/components/desktop/Desktop.tsx +79 -0
- package/src/components/desktop/DesktopBackground.tsx +16 -0
- package/src/components/desktop/DesktopIcon.tsx +49 -0
- package/src/components/desktop/ShortcutViewer.tsx +136 -0
- package/src/components/desktop/WindowRenderer.tsx +34 -0
- package/src/components/desktop/WindowSwitcher.tsx +42 -0
- package/src/components/notifications/NotificationCenter.tsx +153 -0
- package/src/components/notifications/NotificationToasts.tsx +66 -0
- package/src/components/notifications/OrphanSessionToast.tsx +293 -0
- package/src/components/os-primitives/collapsible-sidebar.tsx +226 -0
- package/src/components/os-primitives/dialog.tsx +76 -0
- package/src/components/os-primitives/empty-state.tsx +43 -0
- package/src/components/os-primitives/index.ts +21 -0
- package/src/components/os-primitives/list-view.tsx +155 -0
- package/src/components/os-primitives/property-panel.tsx +108 -0
- package/src/components/os-primitives/section-header.tsx +19 -0
- package/src/components/os-primitives/sidebar-nav.tsx +110 -0
- package/src/components/os-primitives/split-pane.tsx +146 -0
- package/src/components/os-primitives/status-badge.tsx +10 -0
- package/src/components/os-primitives/status-bar.tsx +100 -0
- package/src/components/os-primitives/toolbar.tsx +152 -0
- package/src/components/taskbar/AppLauncher.tsx +114 -0
- package/src/components/taskbar/RunningApps.tsx +71 -0
- package/src/components/taskbar/SystemTray.tsx +134 -0
- package/src/components/taskbar/Taskbar.tsx +45 -0
- package/src/components/taskbar/UserMenu.tsx +138 -0
- package/src/components/taskbar/WorkspaceSwitcher.tsx +9 -0
- package/src/components/ui/ContextMenu.tsx +130 -0
- package/src/components/ui/badge.tsx +39 -0
- package/src/components/ui/button.tsx +102 -0
- package/src/components/ui/command.tsx +165 -0
- package/src/components/ui/dropdown-menu.tsx +233 -0
- package/src/components/ui/input.tsx +48 -0
- package/src/components/ui/note.tsx +55 -0
- package/src/components/ui/separator.tsx +25 -0
- package/src/components/ui/spinner.tsx +42 -0
- package/src/components/ui/switch.tsx +36 -0
- package/src/components/ui/theme-provider.tsx +24 -0
- package/src/components/ui/theme-switcher.tsx +51 -0
- package/src/components/ui/tooltip.tsx +62 -0
- package/src/components/window/MobileWindowStack.tsx +218 -0
- package/src/components/window/SnapPreview.tsx +37 -0
- package/src/components/window/StandaloneFrame.tsx +170 -0
- package/src/components/window/Window.tsx +423 -0
- package/src/components/window/WindowContent.tsx +14 -0
- package/src/components/window/WindowControlsOverlay.tsx +89 -0
- package/src/components/window/WindowFrame.tsx +124 -0
- package/src/lib/auth/index.ts +27 -0
- package/src/lib/auth/roles.ts +50 -0
- package/src/lib/auth/types.ts +32 -0
- package/src/lib/auth/use-auth.ts +53 -0
- package/src/lib/auth/webhook-handler.ts +87 -0
- package/src/lib/auth/workos.ts +67 -0
- package/src/lib/constants.ts +1 -0
- package/src/lib/desktop/dedup.ts +57 -0
- package/src/lib/desktop/schema.ts +55 -0
- package/src/lib/files/filename-validation.ts +41 -0
- package/src/lib/files/safe-path.ts +49 -0
- package/src/lib/hooks/use-desktop-nats.ts +438 -0
- package/src/lib/hooks/use-is-mobile.ts +23 -0
- package/src/lib/hooks/use-launch-app.ts +79 -0
- package/src/lib/hooks/use-nats-notifications.ts +84 -0
- package/src/lib/hooks/use-nats.ts +60 -0
- package/src/lib/hooks/use-visual-viewport.ts +72 -0
- package/src/lib/icons/resolve-window-icon.ts +10 -0
- package/src/lib/keyboard/defaults.ts +146 -0
- package/src/lib/keyboard/types.ts +52 -0
- package/src/lib/keyboard/use-global-keybinds.ts +231 -0
- package/src/lib/nats-client.ts +255 -0
- package/src/lib/nats.ts +35 -0
- package/src/lib/notifications/schema.ts +12 -0
- package/src/lib/service-loader.ts +171 -0
- package/src/lib/subjects.ts +64 -0
- package/src/lib/utils.ts +6 -0
- package/src/lib/ws-bridge.ts +288 -0
- package/src/lib/ws-protocol.ts +53 -0
- package/src/lib/ws-server.ts +167 -0
- package/src/middleware.ts +57 -0
- package/src/stores/desktop-store.ts +112 -0
- package/src/stores/keybind-store.ts +66 -0
- package/src/stores/notification-store.ts +271 -0
- package/src/stores/theme-store.ts +25 -0
- package/src/stores/window-store.ts +294 -0
- package/src/theme/animations.css +68 -0
- package/src/theme/base.css +123 -0
- package/src/theme/controls.css +35 -0
- package/src/theme/design-tokens.css +276 -0
- package/src/theme/index.css +23 -0
- package/src/theme/menus.css +45 -0
- package/src/theme/status.css +41 -0
- package/src/theme/surfaces.css +94 -0
- package/src/theme/tailwind-map.css +138 -0
- package/src/theme/taskbar.css +25 -0
- package/src/theme/terminal.css +55 -0
- package/src/theme/typography.css +26 -0
- package/src/theme/utilities.css +156 -0
- package/src/theme/window.css +103 -0
- package/src/types/desktop-entry.ts +12 -0
- package/src/types/use-descendants.d.ts +13 -0
- package/src/types/window.ts +28 -0
- package/src/types.d.ts +9 -0
- package/tauri/Cargo.lock +5464 -0
- package/tauri/Cargo.toml +19 -0
- package/tauri/build.rs +3 -0
- package/tauri/capabilities/default.json +36 -0
- package/tauri/icons/128x128.png +0 -0
- package/tauri/icons/128x128@2x.png +0 -0
- package/tauri/icons/32x32.png +0 -0
- package/tauri/icons/icon.png +0 -0
- package/tauri/src/main.rs +396 -0
- package/tauri/tauri.conf.json +23 -0
- package/tsconfig.json +43 -0
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import type { TerminalTab } from '../types';
|
|
4
|
+
|
|
5
|
+
interface TerminalTabBarProps {
|
|
6
|
+
tabs: TerminalTab[];
|
|
7
|
+
activeTabId: string;
|
|
8
|
+
onTabClick: (tabId: string) => void;
|
|
9
|
+
onTabClose: (tabId: string) => void;
|
|
10
|
+
onNewTab: () => void;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* Tab bar component for multi-tab terminal.
|
|
15
|
+
* macOS-style pill tabs with --os-* CSS tokens.
|
|
16
|
+
*
|
|
17
|
+
* The outer container does NOT have data-no-drag so empty
|
|
18
|
+
* space in the tab bar area acts as a window drag handle.
|
|
19
|
+
* Only interactive elements (tabs, buttons) have data-no-drag.
|
|
20
|
+
*/
|
|
21
|
+
export function TerminalTabBar({ tabs, activeTabId, onTabClick, onTabClose, onNewTab }: TerminalTabBarProps) {
|
|
22
|
+
const getTabTitle = (tab: TerminalTab) => {
|
|
23
|
+
if (tab.cwd) {
|
|
24
|
+
const parts = tab.cwd.split('/');
|
|
25
|
+
return parts[parts.length - 1] || 'root';
|
|
26
|
+
}
|
|
27
|
+
return tab.title || 'bash';
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
// Reserve space for the floating window controls (glass controls on the right)
|
|
31
|
+
const prControls = '100px';
|
|
32
|
+
|
|
33
|
+
return (
|
|
34
|
+
<div
|
|
35
|
+
className="terminal-tab-bar flex items-center gap-1 px-2 py-1.5"
|
|
36
|
+
style={{
|
|
37
|
+
paddingRight: prControls,
|
|
38
|
+
minHeight: '36px',
|
|
39
|
+
}}
|
|
40
|
+
>
|
|
41
|
+
{tabs.map((tab) => {
|
|
42
|
+
const isActive = tab.id === activeTabId;
|
|
43
|
+
return (
|
|
44
|
+
<div
|
|
45
|
+
data-no-drag
|
|
46
|
+
key={tab.id}
|
|
47
|
+
className="flex items-center gap-1.5 rounded-md px-2.5 py-1 cursor-pointer select-none transition-all duration-150"
|
|
48
|
+
style={
|
|
49
|
+
isActive
|
|
50
|
+
? {
|
|
51
|
+
background: 'var(--os-surface-raised)',
|
|
52
|
+
color: 'var(--os-text-primary)',
|
|
53
|
+
}
|
|
54
|
+
: {
|
|
55
|
+
background: 'transparent',
|
|
56
|
+
color: 'var(--os-text-muted)',
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
onMouseEnter={(e) => {
|
|
60
|
+
if (!isActive) {
|
|
61
|
+
const el = e.currentTarget as HTMLElement;
|
|
62
|
+
el.style.color = 'var(--os-text-secondary)';
|
|
63
|
+
el.style.background = 'var(--os-accent-subtle)';
|
|
64
|
+
}
|
|
65
|
+
}}
|
|
66
|
+
onMouseLeave={(e) => {
|
|
67
|
+
if (!isActive) {
|
|
68
|
+
const el = e.currentTarget as HTMLElement;
|
|
69
|
+
el.style.color = 'var(--os-text-muted)';
|
|
70
|
+
el.style.background = 'transparent';
|
|
71
|
+
}
|
|
72
|
+
}}
|
|
73
|
+
onClick={() => onTabClick(tab.id)}
|
|
74
|
+
>
|
|
75
|
+
<span className="text-xs max-w-[120px] truncate">{getTabTitle(tab)}</span>
|
|
76
|
+
{tabs.length > 1 && (
|
|
77
|
+
<button
|
|
78
|
+
data-no-drag
|
|
79
|
+
className="flex h-4 w-4 items-center justify-center rounded-sm opacity-0 transition-opacity group-hover:opacity-100"
|
|
80
|
+
style={{
|
|
81
|
+
color: 'var(--os-text-muted)',
|
|
82
|
+
opacity: isActive ? 0.6 : 0,
|
|
83
|
+
}}
|
|
84
|
+
onMouseEnter={(e) => {
|
|
85
|
+
const el = e.currentTarget as HTMLElement;
|
|
86
|
+
el.style.opacity = '1';
|
|
87
|
+
el.style.color = 'rgb(239, 68, 68)';
|
|
88
|
+
}}
|
|
89
|
+
onMouseLeave={(e) => {
|
|
90
|
+
const el = e.currentTarget as HTMLElement;
|
|
91
|
+
el.style.opacity = isActive ? '0.6' : '0';
|
|
92
|
+
el.style.color = 'var(--os-text-muted)';
|
|
93
|
+
}}
|
|
94
|
+
onClick={(e) => {
|
|
95
|
+
e.stopPropagation();
|
|
96
|
+
onTabClose(tab.id);
|
|
97
|
+
}}
|
|
98
|
+
aria-label="Close tab"
|
|
99
|
+
>
|
|
100
|
+
<svg width="8" height="8" viewBox="0 0 8 8" fill="none" stroke="currentColor" strokeWidth="1.5">
|
|
101
|
+
<path d="M1 1l6 6M7 1l-6 6" />
|
|
102
|
+
</svg>
|
|
103
|
+
</button>
|
|
104
|
+
)}
|
|
105
|
+
</div>
|
|
106
|
+
);
|
|
107
|
+
})}
|
|
108
|
+
<button
|
|
109
|
+
data-no-drag
|
|
110
|
+
className="flex h-5 w-5 items-center justify-center rounded-md transition-colors"
|
|
111
|
+
style={{ color: 'var(--os-text-muted)' }}
|
|
112
|
+
onMouseEnter={(e) => {
|
|
113
|
+
const el = e.currentTarget as HTMLElement;
|
|
114
|
+
el.style.color = 'var(--os-text-primary)';
|
|
115
|
+
el.style.background = 'var(--os-accent-subtle)';
|
|
116
|
+
}}
|
|
117
|
+
onMouseLeave={(e) => {
|
|
118
|
+
const el = e.currentTarget as HTMLElement;
|
|
119
|
+
el.style.color = 'var(--os-text-muted)';
|
|
120
|
+
el.style.background = '';
|
|
121
|
+
}}
|
|
122
|
+
onClick={onNewTab}
|
|
123
|
+
aria-label="New tab"
|
|
124
|
+
>
|
|
125
|
+
<svg width="10" height="10" viewBox="0 0 10 10" fill="none" stroke="currentColor" strokeWidth="1.5">
|
|
126
|
+
<path d="M5 1v8M1 5h8" />
|
|
127
|
+
</svg>
|
|
128
|
+
</button>
|
|
129
|
+
</div>
|
|
130
|
+
);
|
|
131
|
+
}
|
package/public/file.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg fill="none" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.5 13.5V5.41a1 1 0 0 0-.3-.7L9.8.29A1 1 0 0 0 9.08 0H1.5v13.5A2.5 2.5 0 0 0 4 16h8a2.5 2.5 0 0 0 2.5-2.5m-1.5 0v-7H8v-5H3v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1M9.5 5V2.12L12.38 5zM5.13 5h-.62v1.25h2.12V5zm-.62 3h7.12v1.25H4.5zm.62 3h-.62v1.25h7.12V11z" clip-rule="evenodd" fill="#666" fill-rule="evenodd"/></svg>
|
package/public/globe.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><g clip-path="url(#a)"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.27 14.1a6.5 6.5 0 0 0 3.67-3.45q-1.24.21-2.7.34-.31 1.83-.97 3.1M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m.48-1.52a7 7 0 0 1-.96 0H7.5a4 4 0 0 1-.84-1.32q-.38-.89-.63-2.08a40 40 0 0 0 3.92 0q-.25 1.2-.63 2.08a4 4 0 0 1-.84 1.31zm2.94-4.76q1.66-.15 2.95-.43a7 7 0 0 0 0-2.58q-1.3-.27-2.95-.43a18 18 0 0 1 0 3.44m-1.27-3.54a17 17 0 0 1 0 3.64 39 39 0 0 1-4.3 0 17 17 0 0 1 0-3.64 39 39 0 0 1 4.3 0m1.1-1.17q1.45.13 2.69.34a6.5 6.5 0 0 0-3.67-3.44q.65 1.26.98 3.1M8.48 1.5l.01.02q.41.37.84 1.31.38.89.63 2.08a40 40 0 0 0-3.92 0q.25-1.2.63-2.08a4 4 0 0 1 .85-1.32 7 7 0 0 1 .96 0m-2.75.4a6.5 6.5 0 0 0-3.67 3.44 29 29 0 0 1 2.7-.34q.31-1.83.97-3.1M4.58 6.28q-1.66.16-2.95.43a7 7 0 0 0 0 2.58q1.3.27 2.95.43a18 18 0 0 1 0-3.44m.17 4.71q-1.45-.12-2.69-.34a6.5 6.5 0 0 0 3.67 3.44q-.65-1.27-.98-3.1" fill="#666"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z"/></clipPath></defs></svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48" fill="none">
|
|
2
|
+
<rect width="48" height="48" rx="10" fill="#111111" stroke="#222222" stroke-width="1"/>
|
|
3
|
+
<path d="M17 15l-8 9 8 9" stroke="#ffffff" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M31 15l8 9-8 9" stroke="#ffffff" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<line x1="27" y1="12" x2="21" y2="36" stroke="#666666" stroke-width="1.5" stroke-linecap="round"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48" fill="none">
|
|
2
|
+
<rect width="48" height="48" rx="10" fill="#111111" stroke="#222222" stroke-width="1"/>
|
|
3
|
+
<rect x="14" y="14" width="20" height="20" rx="3" stroke="#ffffff" stroke-width="1.5" fill="none"/>
|
|
4
|
+
<circle cx="24" cy="24" r="3" fill="#666666"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg"><circle fill="#1E1E1E" cx="256" cy="256" r="256"/><path d="M212 119v82.2l22 21.834-22 22.263V393h88v-82.2l-22-21.834 22-22.263V119z" fill="#FFF"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><path fill-rule="evenodd" clip-rule="evenodd" fill="#fff" d="M258.149 297.752c.861-2.588 1.771-5.16 2.573-7.764 1.414-4.586 2.775-9.19 4.138-13.793 1.174-3.969 2.339-4.906 6.45-4.899 11.646.015 23.295-.032 34.94.155 4.252.066 6.977-1.653 9.061-5.266 8.39-14.559 16.913-29.039 25.401-43.542.889-1.515 1.87-2.977 3.064-4.869 1.11 1.878 2.057 3.345 2.87 4.882 7.648 14.46 15.329 28.903 22.863 43.424 1.886 3.632 4.294 5.268 8.599 5.215 19.381-.244 38.767-.105 58.147-.238 2.581-.018 3.391.721 3.249 3.285a171.705 171.705 0 0 0-.195 13.328c.052 2.277-.81 2.828-2.95 2.822-21.252-.062-42.505-.041-63.756-.033-2.489.002-4.98.033-7.467.109-3.416.104-5.629-1.473-7.188-4.49-4.244-8.215-8.634-16.352-12.976-24.515-.529-.997-1.115-1.964-1.891-3.325-1 1.357-1.863 2.344-2.526 3.451-4.695 7.859-9.477 15.674-13.97 23.65-2.14 3.797-5.016 5.344-9.318 5.256-10.399-.215-20.802-.195-31.206-.223-4.115-.01-5.553 1.164-6.816 5.336-7.365 24.332-14.713 48.668-22.106 72.99-.501 1.65-1.318 3.203-1.987 4.801l-.825-.029c-.299-1.121-.636-2.236-.89-3.367-7.503-33.297-15.002-66.596-22.495-99.896-3.474-15.435-6.937-30.873-10.405-46.312-.079-.346-.107-.724-.268-1.028-.269-.505-.626-.963-.945-1.44-.41.48-1.039.897-1.195 1.449-1.452 5.131-2.826 10.285-4.215 15.435-6.813 25.229-13.622 50.461-20.437 75.69-.274 1.016-.601 2.02-1.132 3.783-9.601-17.071-18.879-33.568-28.378-50.462-1.281 1.901-2.386 3.46-3.41 5.067-2.818 4.424-5.705 8.807-8.366 13.325-1.9 3.231-4.494 4.865-8.249 4.854-22.939-.059-45.881-.102-68.821-.088-1.916 0-2.429-.744-2.42-2.523.024-4.621.009-9.248-.21-13.861-.109-2.314.56-3.064 2.957-3.037 13.602.166 27.205.184 40.811.219 5.602.016 11.213-.267 16.801-.002 3.736.176 5.946-1.41 7.794-4.398 6.823-11.044 13.753-22.021 20.657-33.013.982-1.562 2.053-3.072 3.401-5.079l21.126 37.797 34.283-128.041 1.203-.043 35.585 159.248c.348.003.693.003 1.04.005z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><path fill="#fff" d="M152.854 352.91c7.654-6.912 15.643-14.09 17.752-15.947s3.848-3.568 3.863-3.801c.027-.424-22.404-15.518-23.42-15.76-.301-.072-.74.492-.986 1.268-.547 1.727-7.531 27.855-11.426 42.74-.832 3.178-.844 4.068-.057 4.068.196 0 6.618-5.658 14.274-12.568zm211.916 11.175c4.076-5.344 6.359-16.906 5.389-27.273-1.107-11.793-4.318-19.953-10.471-26.623-4.564-4.947-8.428-6.025-12.848-3.584-6.889 3.809-13.424 7.846-14.396 8.891-2.898 3.123-2.699 8.211.576 14.711 3.312 6.568 6.912 10.32 14.922 15.549 8.264 5.395 11.617 9.521 13.43 16.514.58 2.244 1.178 3.182 2.041 3.201.162.003.773-.62 1.357-1.386zm-178.932-48.488c15.631-27.867 35.576-62.448 47.963-83.161 2.701-4.517 4.914-8.342 4.914-8.502 0-.519-23.26-14.812-23.879-14.676-.621.137-21.414 35.141-36.178 60.899-4.68 8.166-11.637 19.789-15.459 25.83-3.82 6.041-7.525 11.896-8.23 13.014-.74 1.172-1.125 2.186-.906 2.393 1.047 1.002 24.512 16.023 24.865 15.916.227-.068 3.336-5.34 6.91-11.713zm151.934-9.898c6.039-3.436 11.348-6.586 11.791-7.002.789-.74.758-.838-1.471-4.689a4821.169 4821.169 0 0 1-6.766-11.75c-2.467-4.297-4.77-7.871-5.119-7.938-.922-.184-23.754 13.141-23.91 13.949-.129.674 11.861 21.814 13.193 23.258.383.414.832.68.996.586.167-.094 5.245-2.979 11.286-6.414zm45.498-22.342c.17-.305.268-6.805.217-14.447l-.092-13.897-25.695-.107c-22.418-.096-25.676-.032-25.557.511.074.341 3.654 6.893 7.951 14.557l7.812 13.936 1.691.127c.932.068 8.818.068 17.525 0 12.52-.098 15.9-.24 16.146-.68zm-81.289-.596c.07-.211-3.188-6.354-7.242-13.646l-7.369-13.258h-62.658l-7.398 13.395c-4.068 7.365-7.305 13.545-7.189 13.73.292.473 91.696.256 91.856-.221zm-134.576-2.297c.836-1.453 4.299-7.439 7.689-13.303 3.393-5.863 6.168-10.854 6.168-11.092 0-.289-8.654-.394-26.295-.321l-26.295.108-.141 2.957c-.078 1.625-.01 7.758.152 13.623l.293 10.666h36.904l1.525-2.638zm154.947-5.386c10.729-5.904 10.562-5.801 10.562-6.557 0-.734-5.652-10.729-24.842-43.923-21.094-36.488-30.385-52.572-36.559-63.295-6.086-10.57-7.525-12.541-10.135-13.873-2.057-1.049-5.344-1.211-7.467-.371-2.027.803-9.16 4.959-11.047 6.433-3.025 2.366-4.174 7.045-2.631 10.734.83 1.99.266.999 20.221 35.448 31.412 54.233 47.559 81.583 48.559 82.251.246.164 1.4-.236 2.566-.891 1.164-.656 6.011-3.335 10.773-5.956zm-77.59-62.413c5.004-8.348 5.734-9.807 6.043-12.043.635-4.644-1.809-7.754-9.529-12.131-4.377-2.482-5.088-2.752-7.656-2.897-3.504-.198-5.238.538-7.65 3.259-1.809 2.036-8.807 14.489-8.793 15.648.004.413 4.357 3.334 11.512 7.721 6.326 3.88 11.635 7.063 11.795 7.075.159.01 2.085-2.974 4.278-6.632z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><g fill="none" stroke="#fff" stroke-width="10"><path stroke-linecap="round" d="M341.672 187.519c4.718-24.007 2.079-42.227-9.069-49.465-3.716-2.413-8.171-3.47-13.187-3.279-27.076 1.027-70.766 38.311-106.461 93.277-42.307 65.146-57.341 130.436-33.558 145.88 11.292 7.33 29.28 2.134 49.604-12.348"/><path stroke-linecap="round" d="M363.37 294.05c20.078-7.79 32.427-18.453 33.069-30.696 1.484-28.32-60.147-54.54-137.718-58.604-7.271-.382-14.422-.582-21.418-.559-67.616.228-120.396 18.776-121.742 44.441-.64 12.222 10.495 24.07 29.581 33.905"/><path stroke-linecap="round" d="M236.814 145.31c-13.738-11.398-26.622-17.521-36.976-16.744-2.756.206-5.304.886-7.675 2.094-25.265 12.873-17.195 79.459 18.069 148.67 35.265 69.213 84.334 114.872 109.602 101.998 24.301-12.381 17.742-74.428-14.162-140.718"/><path stroke-miterlimit="10" d="M273.65 257.981c0 9.249-7.494 16.744-16.744 16.744-9.245 0-16.743-7.495-16.743-16.744h0c0-9.247 7.498-16.743 16.743-16.743 9.25 0 16.744 7.496 16.744 16.743z"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M256 512c141.385 0 256-114.615 256-256S397.385 0 256 0 0 114.615 0 256s114.615 256 256 256z" fill="#1E1E1E"/><path d="M345.219 126.794s46.356 56.251 46.356 68.273c0 12.023-5.831 15.195-11.694 21.445l-34.758 37.05c-3.289 3.505-10.134 8.82-6.108 18.386 4.027 9.565 9.968 21.738 3.362 34.084-6.607 12.346-17.924 20.586-25.176 19.224-7.252-1.364-24.283-10.298-30.546-14.378-6.262-4.081-26.112-20.515-26.112-26.802 0-6.287 20.518-17.576 24.309-20.141 3.792-2.564 21.082-12.492 21.436-16.388.354-3.898.219-5.04-4.884-14.669-5.102-9.629-14.291-22.478-12.762-31.027 1.53-8.548 16.35-12.994 26.926-17.003 10.574-4.009 30.937-11.58 33.48-12.757 2.544-1.178 1.887-2.3-5.819-3.033-7.705-.733-29.571-3.647-39.429-.889-9.858 2.759-26.7 6.955-28.064 9.18-1.365 2.226-2.568 2.301-1.167 9.977 1.4 7.677 8.613 44.512 9.313 51.055.701 6.543 2.07 10.868-4.957 12.481-7.029 1.613-18.86 4.413-22.925 4.413-4.065 0-15.897-2.8-22.925-4.413-7.028-1.613-5.659-5.938-4.958-12.481.701-6.543 7.913-43.378 9.314-51.055 1.4-7.676.197-7.751-1.167-9.977-1.364-2.225-18.206-6.421-28.065-9.18-9.858-2.758-31.723.156-39.428.889-7.706.733-8.363 1.855-5.819 3.033 2.543 1.177 22.906 8.748 33.48 12.757 10.576 4.009 25.396 8.455 26.926 17.003 1.529 8.549-7.661 21.398-12.762 31.027-5.103 9.629-5.238 10.771-4.884 14.669.353 3.896 17.644 13.824 21.435 16.388 3.792 2.565 24.309 13.854 24.309 20.141 0 6.287-19.849 22.721-26.111 26.802-6.263 4.08-23.294 13.014-30.546 14.378-7.252 1.362-18.569-6.878-25.176-19.224-6.606-12.346-.665-24.519 3.361-34.084 4.026-9.566-2.818-14.881-6.108-18.386l-34.757-37.05c-5.863-6.25-11.694-9.422-11.694-21.445 0-12.022 46.356-68.273 46.356-68.273s39.115 7.5 44.39 7.5c5.274 0 16.701-4.411 27.249-7.941 10.548-3.529 17.58-3.555 17.58-3.555s7.032.026 17.58 3.555c10.548 3.53 21.975 7.941 27.249 7.941 5.275 0 44.39-7.5 44.39-7.5zm-34.75 215.17c2.869 1.804 1.119 5.204-1.495 7.059-2.614 1.854-37.74 29.158-41.149 32.176-3.41 3.018-8.419 8.003-11.825 8.003-3.406 0-8.417-4.985-11.825-8.003-3.41-3.018-38.535-30.322-41.15-32.176-2.614-1.855-4.363-5.255-1.494-7.059 2.87-1.802 11.847-6.353 24.235-12.788 12.386-6.434 27.824-11.904 30.234-11.904 2.409 0 17.846 5.47 30.234 11.904 12.387 6.435 21.365 10.986 24.235 12.788z" fill="#fff"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><path fill="#fff" d="M293 361.672h108v20H293zm0-40.599h108v20H293zm0-161.7h108v20H293zm-74-.001h-44v-43.998h-20v43.998h-44v20h44v44h20v-44h44zm-8.745 223.114l-31.113-31.113 31.111-31.112-14.143-14.142-31.111 31.111-31.113-31.111-14.141 14.14 31.111 31.114-31.111 31.113 14.141 14.141 31.113-31.112 31.113 31.112z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><path fill="#efefef" d="M128.497 163.371l220.136-34.858 9.699 61.25-220.136 34.859z"/><path fill="#fff" d="M137.212 218.406l220.135-34.858 26.144 165.104-220.135 34.858z"/><path d="M213.438 185.636c.469 2.434 2.604 3.845 5.231 3.429 3.188-.505 4.612-2.685 4.054-6.216l-3.305-20.863 3.61-.571 3.308 20.882c.871 5.498-1.782 9.249-7.118 10.095-4.816.763-8.677-1.793-9.372-6.186l3.592-.57zm21.756-7.127c.693 4.373 4.064 7.088 9.08 6.294 5.014-.794 7.381-4.418 6.688-8.791l-2.939-18.557 3.613-.572 2.978 18.798c.979 6.179-2.631 11.315-9.812 12.453-7.184 1.138-12.201-2.633-13.18-8.812l-2.977-18.797 3.609-.572 2.94 18.556zm44.211 3.65l-17.572 2.783-4.584-28.947 3.609-.571 4.07 25.697 13.961-2.212.516 3.25zm-62.468 70.249l-.282.045-23.816 23.463-2.103-13.272 23.948-23.554 12.375-1.961 15.965 100.797-12.235 1.938-13.852-87.456zm89.431-16.098l-.045-.279-54.634 8.653-1.771-11.176 67.151-10.636 1.848 11.665-31.023 96.28-13.291 2.104 31.765-96.611z" fill="#1e1e1e"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><path fill="#fff" d="M316.297 175.133h182.654a253.426 253.426 0 0 0-7.604-20H256c-48.402 0-88.834 34.096-98.608 79.575L80.739 69.421a258.504 258.504 0 0 0-14.964 15.272l95.32 205.54c14.019 38.856 51.216 66.634 94.905 66.634 17.673 0 34.285-4.552 48.73-12.538l-68.358 166.929c6.479.491 13.024.742 19.628.742.564 0 1.125-.018 1.687-.021L339.1 313.178a100.289 100.289 0 0 0 16.254-39.693c.041-.24.08-.48.119-.721A101.557 101.557 0 0 0 356.868 256c-.001-33.1-15.944-62.475-40.571-80.867zM256 331.65c-41.78 0-75.65-33.87-75.65-75.65 0-41.779 33.87-75.65 75.65-75.65 41.781 0 75.65 33.871 75.65 75.65 0 41.78-33.869 75.65-75.65 75.65z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><path fill="#fff" d="M256 128.5c-70.304 0-127.5 57.196-127.5 127.5S185.696 383.5 256 383.5 383.5 326.304 383.5 256 326.304 128.5 256 128.5zm0 14.167c40.131 0 75.456 20.969 95.598 52.523h-95.98c-28.459 0-53.923 20.97-58.417 47.931l-32.066-54.782c20.681-27.702 53.714-45.672 90.865-45.672zm44.555 112.437c0 25.464-19.473 44.937-44.937 44.937s-44.937-19.473-44.937-44.937c0-25.463 19.473-44.936 44.937-44.936s44.937 19.473 44.937 44.936zM142.667 256c0-19.487 4.946-37.841 13.645-53.875l48.379 82.937c10.485 17.974 29.958 29.957 50.928 29.957 7.489 0 13.481-1.497 19.472-2.996l-33.043 56.451c-55.934-6.898-99.381-54.706-99.381-112.474zm116.239 113.296l49.137-84.234c4.494-8.987 8.987-19.474 8.987-29.958 0-17.974-7.489-34.45-20.971-44.936h63.582c6.225 14.021 9.692 29.529 9.692 45.832 0 61.521-49.272 111.75-110.427 113.296z"/></svg>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="64" height="64" rx="14" fill="url(#dashboard-gradient)"/>
|
|
3
|
+
<path d="M16 24h14v14H16z" fill="white" opacity="0.9"/>
|
|
4
|
+
<path d="M34 24h14v8H34z" fill="white" opacity="0.7"/>
|
|
5
|
+
<path d="M34 36h14v8H34z" fill="white" opacity="0.7"/>
|
|
6
|
+
<path d="M16 42h14v6H16z" fill="white" opacity="0.5"/>
|
|
7
|
+
<defs>
|
|
8
|
+
<linearGradient id="dashboard-gradient" x1="0" y1="0" x2="64" y2="64" gradientUnits="userSpaceOnUse">
|
|
9
|
+
<stop stop-color="#6366F1"/>
|
|
10
|
+
<stop offset="1" stop-color="#8B5CF6"/>
|
|
11
|
+
</linearGradient>
|
|
12
|
+
</defs>
|
|
13
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><path fill="#fff" d="M352.061 187.23c-31.438-23.579-61.347-22.924-61.347-22.924l-3.059 3.493c37.116 11.352 54.363 27.728 54.363 27.728-22.704-12.445-44.975-18.559-65.715-20.96a184.68 184.68 0 0 0-44.101.437c-1.31 0-2.401.219-3.713.438-7.642.654-26.199 3.493-49.558 13.754-8.078 3.712-12.883 6.332-12.883 6.332s18.12-17.249 57.42-28.601l-2.184-2.62s-29.91-.655-61.347 22.924c0 0-31.439 56.982-31.439 127.283 0 0 18.339 31.656 66.587 33.184 0 0 8.08-9.824 14.63-18.121-27.729-8.297-38.208-25.762-38.208-25.762s2.184 1.529 6.112 3.713c.22.219.437.436.874.654.654.438 1.31.654 1.964 1.092 5.46 3.057 10.917 5.457 15.939 7.422 8.95 3.492 19.647 6.986 32.092 9.389 16.374 3.057 35.587 4.148 56.547.219 10.26-1.746 20.739-4.803 31.656-9.389 7.642-2.838 16.157-6.986 25.107-12.881 0 0-10.917 17.902-39.516 25.98 6.55 8.297 14.408 17.684 14.408 17.684 48.249-1.527 66.807-33.184 66.807-33.184.003-70.302-31.436-127.284-31.436-127.284zM219 276.001c-11.045 0-20-8.955-20-20s8.955-20 20-20c11.047 0 20 8.955 20 20s-8.953 20-20 20zm74 0c-11.045 0-20-8.955-20-20s8.955-20 20-20c11.047 0 20 8.955 20 20s-8.953 20-20 20z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><g fill="#fff"><path d="M199.564 128.497l-80.646 52.662 55.765 44.653 81.315-50.21zm-80.646 141.976l80.646 52.654 56.434-47.098-81.315-50.217zm137.08 5.557l56.433 47.097 80.647-52.654-55.758-44.661z"/><path d="M393.078 181.159l-80.647-52.662-56.433 47.105 81.322 50.21zM256.169 286.164l-56.605 46.967-24.22-15.821v17.728l80.825 48.466 80.817-48.466V317.31l-24.22 15.821z"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><g fill="#fff"><path d="M218.463 177.204c-36.122-6.58-64.681.309-76.063 20.021-8.494 14.713-6.066 34.219 5.888 55.07a3.7 3.7 0 0 0 5.054 1.369 3.698 3.698 0 0 0 1.371-5.055c-10.768-18.781-12.862-35.617-5.898-47.68 9.458-16.379 34.931-22.52 68.322-16.438a3.705 3.705 0 0 0 4.308-2.98 3.702 3.702 0 0 0-2.982-4.307zm-51.391 100.434c14.606 16.051 33.579 31.105 55.222 43.6 52.399 30.252 108.181 38.338 135.673 19.594a3.704 3.704 0 0 0-4.175-6.123c-24.604 16.777-77.594 9.098-127.793-19.887-20.995-12.119-39.367-26.699-53.445-42.17a3.707 3.707 0 0 0-5.234-.246 3.703 3.703 0 0 0-.248 5.232z"/><path d="M349.197 273.132c23.65-27.94 31.908-56.042 20.551-75.72-8.359-14.475-26.031-22.119-49.514-22.424a3.703 3.703 0 1 0-.094 7.406c21.117.275 36.342 6.859 43.189 18.723 9.438 16.342 2.074 41.404-19.789 67.229a3.706 3.706 0 0 0 .434 5.219 3.706 3.706 0 0 0 5.223-.433zm-60.787-94.694c-21.385 4.58-44.145 13.539-66.008 26.162-54.093 31.229-89.378 77.276-84.478 110.669a3.704 3.704 0 0 0 7.329-1.076c-4.35-29.648 29.097-73.298 80.853-103.179 21.208-12.244 43.247-20.918 63.854-25.334a3.703 3.703 0 1 0-1.55-7.242z"/><path d="M200.781 338.416c12.364 34.533 32.596 55.795 55.344 55.795 16.594 0 31.945-11.312 43.914-31.223a3.706 3.706 0 0 0-1.266-5.086 3.702 3.702 0 0 0-5.082 1.27c-10.76 17.895-23.973 27.629-37.566 27.629-18.896 0-36.938-18.963-48.369-50.881a3.706 3.706 0 0 0-4.738-2.238 3.701 3.701 0 0 0-2.237 4.734zm112.957-6.752c6.402-20.459 9.838-44.059 9.838-68.652 0-61.364-21.475-114.265-52.066-127.847a3.705 3.705 0 0 0-3.01 6.772c27.285 12.113 47.668 62.316 47.668 121.075 0 23.859-3.328 46.713-9.502 66.439a3.704 3.704 0 1 0 7.072 2.213zm69.762-3.631c0-9.789-7.936-17.727-17.729-17.727-9.791 0-17.729 7.938-17.729 17.727 0 9.791 7.938 17.729 17.729 17.729 9.793-.001 17.729-7.938 17.729-17.729zm-7.408 0c0 5.699-4.619 10.32-10.32 10.32-5.699 0-10.318-4.621-10.318-10.32 0-5.697 4.619-10.318 10.318-10.318 5.701-.001 10.32 4.62 10.32 10.318zm-229.863 17.728c9.789 0 17.729-7.938 17.729-17.729 0-9.789-7.939-17.727-17.729-17.727-9.791 0-17.729 7.938-17.729 17.727 0 9.792 7.938 17.729 17.729 17.729zm0-7.408c-5.7 0-10.32-4.621-10.32-10.32 0-5.697 4.62-10.318 10.32-10.318 5.697 0 10.32 4.621 10.32 10.318.001 5.699-4.622 10.32-10.32 10.32z"/><path d="M256.125 153.249c9.793 0 17.729-7.939 17.729-17.73 0-9.789-7.936-17.729-17.729-17.729-9.787 0-17.728 7.939-17.728 17.729s7.941 17.73 17.728 17.73zm0-7.409c-5.696 0-10.319-4.621-10.319-10.322 0-5.699 4.623-10.32 10.319-10.32 5.701 0 10.32 4.621 10.32 10.32 0 5.701-4.619 10.322-10.32 10.322zm2.709 129.708c-6.922 1.498-13.744-2.904-15.245-9.828-1.49-6.926 2.904-13.745 9.831-15.245 6.924-1.496 13.744 2.904 15.244 9.829 1.496 6.924-2.906 13.748-9.83 15.244z"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1E1E1E" cx="256" cy="256" r="256"/><g fill="#FFF"><path d="M129.71 379.768c-.009-.001-.016-.006-.025-.007l-.016-.001.041.008zM298.5 213.5c23.46 0 42.5-19.04 42.5-42.5s-19.04-42.5-42.5-42.5h-85c-23.46 0-42.5 19.04-42.5 42.5s19.04 42.5 42.5 42.5c-23.46 0-42.5 19.04-42.5 42.5s19.04 42.5 42.5 42.5c-23.46 0-42.5 19.04-42.5 42.5s19.04 42.5 42.5 42.5S256 364.46 256 341V213.5h42.5z"/><path d="M298.5 213.5c-23.46 0-42.5 19.04-42.5 42.5s19.04 42.5 42.5 42.5S341 279.46 341 256s-19.04-42.5-42.5-42.5z"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><path fill="#fff" d="M179.6 246V11.604a255.57 255.57 0 0 0-5 1.616 253.22 253.22 0 0 0-15 5.576V266h172.8v234.396a255.595 255.595 0 0 0 5-1.617 253.192 253.192 0 0 0 15-5.573V246H179.6z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><g fill="#fff"><path d="M368.566 156.07H281.09c8.468-12.341 14.919-19.711 15.103-19.922a4.592 4.592 0 0 0-.382-6.483 4.586 4.586 0 0 0-6.487.382c-.878.983-9.281 10.567-19.463 26.023H143.434a4.594 4.594 0 0 0-4.595 4.594v188.377a4.594 4.594 0 0 0 4.595 4.595h129.589a154.792 154.792 0 0 0 11.06 27.388 4.59 4.59 0 0 0 4.08 2.476c.712 0 1.438-.165 2.113-.514a4.596 4.596 0 0 0 1.957-6.198 143.335 143.335 0 0 1-9.547-23.152h85.881a4.594 4.594 0 0 0 4.595-4.595V160.664a4.592 4.592 0 0 0-4.596-4.594zM148.028 344.446V165.259h116.026c-15.282 25.192-32.048 61.466-33.32 100.933a4.604 4.604 0 0 0 1.291 3.345 4.58 4.58 0 0 0 3.299 1.401h35.369c-1.576 6.442-3.708 17.662-4.153 31.799-4.214.234-8.495.363-12.837.363-32.218 0-61.944-6.736-75.741-17.151a4.585 4.585 0 0 0-6.433.896 4.588 4.588 0 0 0 .896 6.432c15.521 11.73 46.667 19.012 81.278 19.012 4.332 0 8.609-.115 12.805-.335a160.803 160.803 0 0 0 4.099 32.498H148.028v-.006zm215.944 0h-83.846c-2.899-11.872-4.094-23.133-4.301-33.195 25.753-2.412 47.604-8.978 59.643-18.346a4.593 4.593 0 0 0 .804-6.446c-1.558-2.003-4.447-2.371-6.446-.804-10.443 8.127-30.467 14.032-53.936 16.352.749-20.377 5.118-33.945 5.21-34.211a4.599 4.599 0 0 0-4.36-6.047h-36.587c2.514-37.896 20.078-73.058 34.887-96.486h88.932v179.183z"/><path d="M295.054 192.826h9.189v32.617h-9.189zm-96.486 0h9.188v32.617h-9.188z"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1E1E1E" cx="256" cy="256" r="256"/><path fill="#FFF" d="M260.057 384.008a8.436 8.436 0 0 1-7.513-4.566 154.737 154.737 0 0 1-11.041-27.344l-2.412-9.166a160.77 160.77 0 0 1-4.09-32.416l.032-9.185c.353-11.227 1.79-20.551 3.052-26.803H208.67a8.5 8.5 0 0 1-6.088-2.585 8.525 8.525 0 0 1-2.375-6.157c1.287-39.927 18.648-76.481 32.986-100.117l5.686-8.999c10.394-15.78 18.966-25.434 19.326-25.837l.092-.102a8.473 8.473 0 0 1 6.233-2.739c2.079 0 4.079.763 5.631 2.148a8.399 8.399 0 0 1 2.822 5.824 8.408 8.408 0 0 1-2.122 6.123c-.237.271-6.346 7.271-14.382 18.982l-5.841 8.876c-13.291 21.026-29.542 53.02-32.931 87.646h31.243c.91.002 1.8.146 2.656.428 4.441 1.476 6.852 6.28 5.381 10.713-.041.124-3.506 10.826-4.625 27.521 20.212-2.484 37.107-7.831 45.763-14.567a8.469 8.469 0 0 1 5.194-1.789 8.418 8.418 0 0 1 6.689 3.273 8.413 8.413 0 0 1 1.72 6.247 8.413 8.413 0 0 1-3.203 5.635c-11.522 8.966-31.918 15.562-56.344 18.285.427 9.413 1.747 18.706 3.933 27.676l2.455 8.812a135.604 135.604 0 0 0 9 21.812 8.414 8.414 0 0 1 .561 6.455 8.419 8.419 0 0 1-4.168 4.965 8.542 8.542 0 0 1-3.901.95h-.004z"/><path fill="#FFF" d="M262.765 190.556h16.938v39.723h-16.938z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><g fill="#fff"><path d="M332.085 152.227c-6.206 7.226-9.096 23.489-2.803 39.975 6.292 16.486 15.937 12.905 21.949 29.717 7.936 22.183 4.242 51.982 4.242 51.982s9.541 27.627 16.189-1.719c14.715-55.121-39.577-106.381-39.577-119.955zm-15.337 200.877c42.207-4.888 60.891-48.383 36.897-49.238-21.672-.692-56.889 51.545-36.897 49.238z"/><path d="M356.685 294.982c29.038-16.9 21.467-53.405 21.467-53.405s-11.207 13.019-18.821 33.772c-7.52 20.55-20.105 29.84-2.646 19.633zm-92.187 79.724c40.486 12.918 75.282-18.975 53.833-29.625-19.501-9.607-73.049 23.516-53.833 29.625z"/><path d="M359.702 310.481c.984-1.39 2.317-5.84 3.493-7.829 7.147-11.538 7.198-20.737 7.198-20.948 4.317-21.566 3.926-30.372 1.271-46.657-2.139-13.113-11.486-31.899-19.584-40.945-8.344-9.32-2.466-6.283-10.545-13.092-7.082-7.85-13.948-15.624-17.687-18.75-27.022-22.592-26.413-27.391-25.892-28.208a26.46 26.46 0 0 0-.381.426c-.32-1.276-.546-2.349-.546-2.349s-14.771 14.771-17.881 39.391c-2.03 16.073 3.986 32.828 12.698 43.537a98.742 98.742 0 0 0 15.29 15.03v-.006c6.583 9.452 10.205 21.117 10.205 33.665 0 31.42-25.484 56.891-56.922 56.891a57.07 57.07 0 0 1-12.733-1.431c-14.832-2.826-23.397-10.309-27.67-15.388-2.448-2.911-3.489-5.033-3.489-5.033 13.29 4.76 27.984 3.765 36.92-1.171 9.004-4.992 14.454-8.693 18.875-7.233 4.359 1.453 7.829-2.764 4.717-7.136-3.051-4.366-10.988-10.618-22.773-8.886-9.016 1.313-17.274 7.712-29.086 1.515a24.944 24.944 0 0 1-2.217-1.3c-.779-.459 2.531.698 1.759.176-2.298-1.119-6.368-3.558-7.423-4.424-.176-.145 1.784.56 1.606.415-11.045-8.15-9.666-13.655-9.318-17.108.278-2.762 2.284-6.303 5.665-7.738 1.632.798 2.65 1.408 2.65 1.408s-.697-1.275-1.073-1.947c.131-.05.257-.037.389-.087 1.337.578 4.295 2.081 5.853 2.998 2.028 1.282 2.675 2.425 2.675 2.425s.534-.264.139-1.381c-.144-.458-.759-1.916-2.768-3.386l.125.013a23.563 23.563 0 0 1 3.404 2.118c.566-1.846 1.585-3.772 1.361-7.22-.137-2.423-.074-3.051-.55-3.987-.427-.803.24-1.117.98-.282a7.783 7.783 0 0 0-.633-1.903l.006-.062c.926-2.888 19.575-10.398 20.932-11.276a18.217 18.217 0 0 0 5.488-5.346c1.036-1.481 1.817-3.559 2.008-6.711.063-1.42-.374-2.544-5.313-3.619-2.964-.645-7.55-1.273-14.624-1.937-5.157-.455-8.183-3.804-9.902-6.894a42.152 42.152 0 0 0-.954-1.871 13.818 13.818 0 0 1-.734-2.167 41.066 41.066 0 0 1 15.88-19.711c.415-.339-1.658.086-1.243-.252.483-.395 3.644-1.536 4.241-1.793.729-.307-3.121-1.772-6.521-1.416-3.461.35-4.196.719-6.043 1.421.767-.684 3.205-1.581 2.633-1.574-3.731.513-8.37 2.457-12.335 4.658a2.513 2.513 0 0 1 .24-1.118c-1.847.702-6.384 3.544-7.706 5.948.057-.46.083-.924.077-1.388a22.972 22.972 0 0 0-3.784 3.55l-.069.057c-10.715-3.868-20.144-4.118-28.123-2.384-1.746-1.571-4.552-3.946-8.524-11.765-.27-.471-.415.973-.622.508-1.543-3.579-2.475-9.444-2.322-13.487 0 0-3.192 1.455-5.834 7.531a37.614 37.614 0 0 1-1.12 2.297c-.145.176.328-1.996.252-1.877-.459.778-1.647 1.864-2.169 3.27-.358 1.042-.862 1.625-1.183 2.925l-.075.12c-.026-.383.095-1.576.007-1.331a61.28 61.28 0 0 0-3.19 7.733c-1.422 4.677-3.078 11.042-3.341 19.324-.062.628-.006 1.331-.063 1.896-3.369 3.847-5.665 7.104-6.532 8.792-4.355 6.73-9.155 17.219-13.808 33.811a82.69 82.69 0 0 1 7.396-12.955c-3.869 8.807-7.608 22.636-8.356 43.933a113.586 113.586 0 0 1 3.595-13.02c-.668 14.201.986 31.808 9.964 51.672 5.331 11.684 17.601 35.412 47.584 53.928l-.003.002s10.2 7.593 27.733 13.283c1.296.471 2.608.933 3.948 1.382-.42-.17-.827-.348-1.222-.532a125.67 125.67 0 0 0 35.97 5.287c45.397.038 58.786-18.192 58.786-18.192s-.047.036-.133.098c.64-.603 1.257-1.23 1.851-1.88-7.162 6.763-23.508 7.212-29.62 6.724 10.424-3.062 17.283-5.651 30.625-10.76a72.774 72.774 0 0 0 4.789-1.979c.177-.078.355-.162.532-.243.324-.151.645-.293.972-.452a90.449 90.449 0 0 0 18.208-11.399c13.397-10.702 16.312-21.135 17.837-28.014-.213.659-.875 2.197-1.34 3.192-3.451 7.381-11.102 11.91-19.412 15.794a178.076 178.076 0 0 0 10.984-16.18c2.708-2.696 3.554-6.905 5.58-9.734z"/><path d="M343.394 336.071c5.462-6.023 10.369-12.911 14.084-20.723 9.562-20.105 24.348-53.534 12.703-88.448-9.203-27.595-21.839-42.684-37.882-57.424-26.055-23.936-33.332-34.622-33.332-40.977 0 0-30.084 33.536-17.037 68.513 13.047 34.978 39.769 33.696 57.447 70.197 20.803 42.952-16.832 89.823-47.953 102.942 1.905-.423 69.184-15.648 72.72-54.131-.081.709-1.597 11.353-20.75 20.051zm-87.159-124.806c.102-2.273-1.077-3.799-19.872-5.562-7.733-.714-10.694-7.861-11.596-10.868-2.75 7.143-3.885 14.639-3.275 23.705.417 5.94 4.408 12.315 6.315 16.058 0 0 .424-.551.62-.754 3.592-3.74 18.642-9.438 20.056-10.247 1.559-.985 7.491-5.32 7.752-12.332zm-82.739-42.216c-.27-.471.415.973-.623.508-1.542-3.58-2.482-9.381-2.26-13.481 0 0-3.192 1.455-5.834 7.531-.49 1.093-.805 1.695-1.12 2.297-.145.176.328-1.995.253-1.877-.459.777-1.647 1.864-2.163 3.207-.428 1.099-.868 1.688-1.196 3.05-.1.371.102-1.638.014-1.394-6.145 11.875-7.317 29.831-6.669 29.072 13.081-13.968 28.072-17.281 28.072-17.281-1.595-1.174-5.061-4.567-8.474-11.632zm49.634 146.062c-18.068-7.714-38.61-18.595-37.835-43.313 1.056-32.554 30.357-26.12 30.357-26.12-1.105.269-4.062 2.374-5.11 4.618-1.107 2.805-3.127 9.142 2.994 15.782 9.611 10.416-19.747 24.711 25.568 51.717 1.143.623-10.623-.37-15.974-2.684z"/><path d="M216.711 298.889c12.813 4.459 27.739 3.677 36.675-1.258 5.982-3.331 13.657-8.665 18.379-7.348-4.088-1.616-7.185-2.371-10.91-2.556-.634 0-1.395-.013-2.085-.083a35.029 35.029 0 0 0-4.083.224c-2.307.212-4.864 1.667-7.188 1.434-.125-.013 2.254-.978 2.061-.934-1.231.256-2.57.312-3.983.487-.898.1-1.671.213-2.563.25-26.688 2.264-49.242-14.463-49.242-14.463-1.92 6.463 8.594 19.253 22.939 24.247zm126.635 37.355c26.993-26.503 40.65-58.719 34.877-94.853 0 0 2.307 18.528-6.439 37.479 4.202-18.501 4.69-41.493-6.472-65.302-14.899-31.779-39.402-48.501-48.758-55.478-14.174-10.571-20.049-21.333-20.155-23.553-4.234 8.675-17.043 38.406-1.376 64.008 14.678 23.988 37.8 31.108 53.987 53.112 29.821 40.537-5.664 84.587-5.664 84.587z"/><path d="M339.479 267.286c-9.433-19.488-21.208-27.988-32.345-37.201 1.296 1.814 1.615 2.455 2.332 3.628 9.803 10.448 24.258 35.933 13.764 67.924-19.754 60.219-98.771 31.862-107.056 23.896 3.352 34.853 61.687 51.53 99.667 28.929 21.613-20.459 39.097-55.239 23.638-87.176z"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><path d="M171 142.5h170v85h-85l-85-85zm0 85h85l85 85H171v-85zm0 85h85v85l-85-85z" fill="#fff"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><g fill="#fff"><path d="M348 148c-6-6-16-6-22 0L210 264c-4 4-6 9-7 14l-8 50c-1 5 .5 10 4 13.5s8.5 5 13.5 4l50-8c5-1 10-3 14-7L392 215c6-6 6-16 0-22L348 148z M322 170l20 20-16 16-20-20 16-16zM224 286l76-76 20 20-76 76-26 4 6-24z"/><path d="M160 362c-3 0-6 1-8 3-5 5-5 13 0 18 4 4 18 9 36 9 12 0 26-3 38-10 3-2 5-5 5-9s-2-7-5-9c-22-8-42-6-56-4-4 1-7 1-10 2z"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linecap="round" stroke-linejoin="round"><circle cx="256" cy="256" r="256" fill="#1e1e1e"/><path d="M223.469 348.01c-59.147 17.745-59.147-29.573-82.806-35.488M306.274 383.5v-45.78a39.88 39.88 0 0 0-11.12-30.875c37.145-4.14 76.182-18.217 76.182-82.806 0-16.513-6.364-32.4-17.744-44.36a60.003 60.003 0 0 0-1.065-44.597c-6.068-14.171-13.958-4.14-46.253 17.508a158.321 158.321 0 0 0-82.805 0c-32.295-21.648-46.253-17.508-46.253-17.508a60.003 60.003 0 0 0-1.065 44.597 64.367 64.367 0 0 0-17.744 44.715c0 64.116 39.037 78.193 76.181 82.806a39.886 39.886 0 0 0-11.12 30.52v45.78" fill="none" stroke="#fff" stroke-width="19.045"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><path fill="#fff" d="M338.951 269.115L191.875 397.263 237.65 285.11l-64.613-42.249 147.082-128.124-49.785 119.302 68.629 35.076z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M256 512c141.385 0 256-114.615 256-256S397.385 0 256 0 0 114.615 0 256s114.615 256 256 256z" fill="#1E1E1E"/><mask id="a" maskUnits="userSpaceOnUse" x="123" y="128" width="266" height="257"><path d="M388.24 302.8l-.01 9.3c-.02 2.62-.05 5.23-.13 7.84-.15 5.68-.49 11.42-1.5 17.04a56.889 56.889 0 0 1-5.4 16.22 54.48 54.48 0 0 1-10.14 13.8 55.06 55.06 0 0 1-13.95 10.02 58.44 58.44 0 0 1-16.38 5.35 115.93 115.93 0 0 1-17.23 1.5c-11.05.13-14.18.13-17.31.13H205.06a763.36 763.36 0 0 1-17.32-.13c-5.75-.16-11.54-.5-17.23-1.5a58.44 58.44 0 0 1-16.37-5.35 55.005 55.005 0 0 1-24.09-23.82 57.158 57.158 0 0 1-5.4-16.22 112.361 112.361 0 0 1-1.5-17.04c-.08-2.61-.11-5.22-.13-7.83-.02-3.1-.02-6.2-.02-9.3v-93.62c0-3.1 0-6.2.02-9.3.02-2.6.05-5.22.12-7.83.16-5.69.5-11.42 1.51-17.05a57.168 57.168 0 0 1 5.4-16.2 54.872 54.872 0 0 1 24.09-23.83 58.388 58.388 0 0 1 16.37-5.34 116.063 116.063 0 0 1 17.23-1.5c11.05-.14 14.19-.14 17.32-.14h98.56l-38.16.01 40.73-.01c12.03.04 14.67.06 17.31.13 5.75.16 11.55.5 17.23 1.5a58.42 58.42 0 0 1 16.38 5.35 54.92 54.92 0 0 1 24.08 23.82 56.898 56.898 0 0 1 5.4 16.21 112.761 112.761 0 0 1 1.52 17.05c.07 2.61.1 5.22.12 7.84l.01 9.3v93.61-.01z" fill="#fff"/></mask><g mask="url(#a)" fill="#fff"><path d="M388.23 312.1l-17.91-.1v.01l17.9.1.01-.01zm-.13 7.84l-17.9-.5v.01l17.9.49zm-1.5 17.04l-17.63-3.2 17.62 3.2h.01zm-5.4 16.22l-15.92-8.22v.01l15.91 8.2.01.01zM371.05 367l12.59 12.74L371.06 367h-.01zm-30.33 15.37l-3.12-17.65 3.12 17.64v.01zm-17.23 1.5l.22 17.91h.26l-.48-17.91zm-118.44.13l-.05 17.92h.05V384zm-17.32-.13l.49-17.92h-.01l-.48 17.92zm-17.23-1.5l3.14-17.65h-.01l-3.13 17.64v.01zm-16.37-5.35l8.05-16h-.01l-8.04 16zM140.19 367l-12.6 12.74L140.2 367h-.01zm-15.54-30.02l-17.61 3.21 17.61-3.2v-.01zm-1.5-17.04l17.89-.49v-.01l-17.9.5h.01zm-.13-7.83l17.9-.1v-.03l-17.9.13zm0-112.21l17.9.13v-.04l-17.9-.1v.01zm.12-7.84l17.9.5v-.01l-17.9-.49zm6.91-33.25l-15.92-8.21 15.92 8.2v.01zm10.13-13.8l12.58 12.74h.02L140.18 145v.01zm13.96-10.03l8.04 16h.01l-8.05-16zm16.37-5.34l3.13 17.64-3.13-17.65v.01zm17.23-1.5l-.22-17.92h-.25l.47 17.91v.01zm118.45-.14l.05-17.92h-.06V128h.01zm64.87 17l-12.6 12.74.02.01L371.06 145zm10.13 13.8l-15.92 8.2.01.02 15.91-8.22zm6.92 33.26l-17.9.49v.01l17.9-.5zm.12 7.84l-17.91.09v.01l17.9-.1h.01zm-17.9 102.9l-.01 9.2 35.8.21c.03-3.16.03-6.31.03-9.4h-35.81l-.01-.01zm-.01 9.21c-.01 2.54-.04 5-.11 7.43l35.8 1c.07-2.8.1-5.55.12-8.24l-35.81-.19zm-.11 7.44a95.017 95.017 0 0 1-1.23 14.32l35.22 6.42a130.097 130.097 0 0 0 1.8-19.76l-35.8-.98h.01zm-1.24 14.33a39.042 39.042 0 0 1-3.69 11.2l31.82 16.43c3.6-6.96 5.8-14 7.1-21.23l-35.23-6.4zm-3.7 11.22a36.546 36.546 0 0 1-6.8 9.25l25.18 25.49a72.39 72.39 0 0 0 13.46-18.34L365.27 345zm-6.8 9.25a37.15 37.15 0 0 1-9.4 6.76l16.09 32.02a73.015 73.015 0 0 0 18.49-13.29l-25.17-25.49h-.01zm-9.41 6.77a40.546 40.546 0 0 1-11.45 3.7l6.25 35.29a76.34 76.34 0 0 0 21.3-6.98l-16.1-32.01zm-11.46 3.7a98.774 98.774 0 0 1-14.57 1.23l.95 35.83c6.05-.16 12.89-.53 19.89-1.77l-6.27-35.29zm-14.31 1.23c-11 .13-14.05.13-17.1.13v35.84c3.21 0 6.42 0 17.53-.14l-.43-35.83zm-17.1.13h-65.15v35.84h65.15v-35.84zm-65.15 0h-35.98v35.84h35.98v-35.84zm-35.93 0c-12.1-.04-14.5-.06-16.88-.13l-.97 35.83c2.9.08 5.78.1 17.75.14l.1-35.84zm-16.9-.13a98.764 98.764 0 0 1-14.56-1.23l-6.27 35.29c7 1.24 13.84 1.6 19.89 1.77l.95-35.83h-.01zm-14.57-1.23a40.546 40.546 0 0 1-11.45-3.7l-16.1 32a76.317 76.317 0 0 0 21.3 6.99l6.25-35.29zm-11.46-3.7a37.067 37.067 0 0 1-9.4-6.77l-25.18 25.49a72.82 72.82 0 0 0 18.5 13.3L162.18 361v.02zm-9.4-6.77a36.688 36.688 0 0 1-6.82-9.27l-31.82 16.43a72.489 72.489 0 0 0 13.46 18.33l25.17-25.49h.01zm-6.81-9.26a39.29 39.29 0 0 1-3.7-11.22l-35.23 6.43a75.09 75.09 0 0 0 7.1 21.2l31.83-16.4v-.01zm-3.7-11.22c-.78-4.26-1.09-8.93-1.23-14.32l-35.8.98c.17 5.97.53 12.79 1.8 19.76l35.23-6.42zm-1.23-14.33c-.07-2.43-.1-4.9-.11-7.43l-35.81.2c.01 2.68.05 5.44.12 8.23l35.8-1zm-.11-7.46c-.03-3.03-.03-6.06-.03-9.18h-35.8c0 3.1 0 6.26.02 9.44l35.8-.26h.01zm-.03-9.18v-30.86h-35.8v30.87h35.8v-.01zm0-30.86v-31.88h-35.8v31.88h35.8zm0-31.88v-30.87h-35.8v30.87h35.8zm0-30.87c0-3.1 0-6.14.03-9.16l-35.81-.27c-.02 3.18-.02 6.35-.02 9.44h35.8v-.01zm.03-9.2c.01-2.54.04-5 .1-7.43l-35.79-1c-.07 2.8-.1 5.55-.12 8.24l35.8.19h.01zm.1-7.44c.15-5.4.46-10.06 1.24-14.33l-35.23-6.41a130.097 130.097 0 0 0-1.8 19.76l35.8.98h-.01zm1.24-14.33c.76-4.2 1.94-7.8 3.7-11.21l-31.84-16.41a75.06 75.06 0 0 0-7.1 21.2l35.24 6.42zm3.7-11.21a36.531 36.531 0 0 1 6.8-9.26l-25.17-25.5a72.31 72.31 0 0 0-13.46 18.35l31.83 16.4v.01zm6.8-9.27c2.75-2.72 5.93-5 9.4-6.75l-16.07-32.03a72.763 72.763 0 0 0-18.51 13.3l25.19 25.48h-.01zm9.42-6.76a40.546 40.546 0 0 1 11.45-3.7l-6.25-35.29a76.274 76.274 0 0 0-21.3 6.98l16.1 32.01zm11.46-3.7a98.91 98.91 0 0 1 14.57-1.23l-.95-35.83c-6.05.16-12.9.53-19.89 1.77l6.27 35.29zm14.31-1.23c11-.13 14.05-.13 17.1-.13v-35.84c-3.22 0-6.42 0-17.54.14l.44 35.83zm17.1-.13h35.98v-35.84h-35.98v35.84zm35.98 0h62.58v-35.84h-62.58v35.84zm24.41-35.83l.02 35.84 38.15-.01v-35.84l-38.17.01zm.02 35.84l40.72-.01v-35.84l-40.73.01v35.84h.01zm40.66-.01c12.11.04 14.5.06 16.89.13l.97-35.83c-2.9-.08-5.78-.1-17.75-.14l-.1 35.84h-.01zm16.9.13c5.45.14 10.2.45 14.57 1.23l6.27-35.29c-7-1.24-13.84-1.6-19.9-1.77l-.94 35.83zm14.58 1.23c4.28.76 7.95 1.94 11.45 3.7l16.1-32a76.317 76.317 0 0 0-21.3-6.99l-6.25 35.29zm11.45 3.7a37.065 37.065 0 0 1 9.4 6.76l25.2-25.47a72.868 72.868 0 0 0-18.5-13.3l-16.1 32.02v-.01zm9.42 6.77a36.402 36.402 0 0 1 6.79 9.25l31.84-16.4a72.223 72.223 0 0 0-13.47-18.35l-25.16 25.5zm6.8 9.27c1.76 3.41 2.93 7 3.7 11.2l35.22-6.4a74.788 74.788 0 0 0-7.1-21.23l-31.82 16.43zm3.7 11.2a95.16 95.16 0 0 1 1.23 14.33l35.8-.98c-.17-5.99-.54-12.8-1.8-19.76l-35.24 6.4.01.01zm1.23 14.34c.07 2.43.1 4.9.11 7.43l35.8-.19c0-2.7-.04-5.45-.12-8.24l-35.8 1h.01zm.11 7.44c.02 3.03.02 6.09.02 9.2h35.8l-.01-9.41-35.81.21zm.02 9.2v30.86h35.8v-30.87h-35.8v.01zm0 30.86v31.88h35.8v-31.88h-35.8zm0 31.88v30.87h35.8v-30.87h-35.8z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M227.34 237.37c0-.7.57-1.28 1.28-1.28h40.97c.7 0 1.28.57 1.28 1.28v5.96c0 .7-.57 1.28-1.28 1.28h-40.97c-.7 0-1.28-.57-1.28-1.28v-5.96zm-14.09-23.72c.4-.36.32-1-.15-1.25l-16.31-8.67a.766.766 0 0 1-.35-.96l11.47-28.6c.3-.75-.62-1.4-1.23-.85l-35.13 31.83a.774.774 0 0 0-.248.619.754.754 0 0 0 .098.328.754.754 0 0 0 .23.253l15.53 10.56c.3.2.41.58.28.91l-10.51 26.77c-.3.76.63 1.4 1.23.85l35.1-31.79h-.01z"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle cx="256" cy="256" r="256" fill="#1e1e1e"/><path fill="none" d="M124 132h263v263H124z"/><path fill="none" stroke="#fff" stroke-width="10" d="M129 137h253v253H129z"/><path fill="#fff" d="M154 350h100v15H154zm33-180v105h-24V170zm12 86.7l20.85-12c3.3 5.85 6.75 9 14.85 9 10.5 0 13.65-6 13.65-12.45V170h24v71.25c0 23.1-16.2 35.85-37.8 35.85-16.65 0-28.65-7.05-35.55-20.4z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1E1E1E" cx="256" cy="256" r="256"/><path fill="#FFF" d="M192.518 248.21c30.42 7.524 42.822 20.138 42.822 42.927 0 25.226-18.02 42.291-46.32 44.516v11.766h-12.61v-11.766c-27.982-2.12-46.32-18.442-47.909-43.562h16.959c1.694 15.264 13.566 25.65 30.95 27.665V261.67l-2.227-.529c-28.831-7.102-41.867-20.352-41.867-42.398 0-23.952 17.17-40.17 44.094-42.396v-11.765h12.61v11.871c25.227 2.227 42.397 18.23 43.669 41.549h-16.746c-1.8-14.203-11.87-23.742-26.923-25.757v55.011l3.498.954zm-16.109-56.07c-16.643 1.908-26.712 11.553-26.712 26.074 0 13.037 7.524 20.562 26.712 25.756v-51.83zm12.611 127.615c17.489-2.121 29.044-12.72 29.044-27.771 0-13.885-8.587-21.835-29.044-27.135v54.906zm88.435-155.173H383.5v182.836H277.455z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><path fill="#fff" d="M137.123 364.304c3.223 9.245 10.373 15.794 19.995 18.315 9.084 2.377 26.087-.266 34.784-5.412 3.636-2.15 8.311-6.668 10.743-10.381.96-1.469 2.411-4.428 3.217-6.578 2.833-7.525 2.775-5.919 2.78-76.741 0-46.11.145-64.835.505-66.524.615-2.862 2.528-4.961 5.167-5.673 2.376-.64 97.607-19.909 100.285-20.292 2.52-.359 4.906.541 6.051 2.289.773 1.178.819 3.51.937 45.951.134 48.847.188 47.702-2.402 50.785-1.889 2.243-4.247 3.109-13.925 5.133-14.727 3.075-19.768 4.536-25.402 7.354-7.047 3.521-10.955 7.378-13.98 13.784-2.135 4.531-2.934 7.927-2.928 12.438.011 8.066 2.732 14.371 8.867 20.539 4.215 4.242 8.068 6.466 13.384 7.717 5.972 1.409 18.134.482 26.458-2.019 11.777-3.535 20.088-12.105 23.494-24.216l1.003-3.561.13-95.464c.1-71.492.004-95.912-.382-97.246-1.11-3.826-3.965-6.009-7.857-6.004-1.169 0-5.229.578-9.024 1.285-16.778 3.126-115.682 23.285-117.37 23.924-2.612.987-5.202 3.338-6.43 5.832l-1.044 2.112-.22 74.771c-.21 70.75-.269 74.865-1.023 76.55-1.154 2.562-3.712 4.993-6.069 5.767-1.12.368-5.536 1.382-9.819 2.252-19.843 4.044-27.215 6.954-33.448 13.219-3.541 3.556-6.164 8.409-7.297 13.506-1.084 4.871-.721 12.159.82 16.588z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><g fill="none" stroke="#fff" stroke-width="20" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"><path d="M128.5 160.375h255v191.25h-255z"/><path d="M369.318 171.012L256 256l-113.318-84.988"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="256" cy="256" r="256" fill="#1E1E1E"/><path fill-rule="evenodd" clip-rule="evenodd" d="M175.607 384v-45.415C147.164 316.94 129 283.975 129 247.056 129 181.855 185.649 129 255.528 129c69.885 0 126.529 52.855 126.529 118.056 0 65.196-56.644 118.055-126.529 118.055-13.037 0-25.619-1.841-37.456-5.253L175.607 384zm-1.826-97.032l68.236-72.247 32.751 33.476 61.411-33.476-67.851 72.247-32.446-34.072-62.101 34.072z" fill="#fff"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1E1E1E" cx="256" cy="256" r="256"/><path fill="#FFF" d="M311.19 229.209c-13.446-59.224-45.19-78.693-48.602-86.128-3.757-5.258-7.538-14.581-7.538-14.581l2.534 165.016s-1.213 11.656-1.001 24.433c-11.243 1.365-21.974 16.005-13.228 26.139 12.518 2.43 11.646 37.142 11.646 37.142l6.857 2.271s-1.393-18.117.55-26.873c.588-2.65 1.939-4.966 3.537-6.912 1.056-.737 4.188-3.011 8.367-6.834.192-.104.303-.16.303-.16l-.01-.106c16.096-14.836 47.067-52.212 36.585-113.407z"/><path fill="#EFEFEF" d="M251.004 352.174s-55.396-38.138-52.179-105.426c3.216-67.291 42.701-100.375 50.391-106.377 4.972-5.299 5.45-6.642 5.835-11.871 3.485 7.485 2.633 111.107 3.002 123.302 1.433 47.466-3.136 91.411-7.049 100.372z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><path fill="#fff" d="M149.085 156.684l177.903-28.17 35.917 226.825-177.902 28.17z"/><path fill="#efefef" d="M149.083 156.684l177.903-28.17 4.845 30.599-177.902 28.17z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1E1E1E" cx="256" cy="256" r="256"/><path fill="#FFF" d="M175.874 173.207c7.933 6.443 10.906 5.951 25.801 4.958l140.408-8.431c2.979 0 .501-2.971-.491-3.465l-23.319-16.857c-4.469-3.469-10.421-7.441-21.83-6.448l-135.958 9.917c-4.958.491-5.948 2.97-3.975 4.958l19.364 15.368zm8.43 32.722v147.733c0 7.94 3.968 10.91 12.896 10.419l154.311-8.929c8.935-.491 9.929-5.952 9.929-12.401V196.009c0-6.439-2.478-9.912-7.946-9.417l-161.254 9.417c-5.951.499-7.936 3.476-7.936 9.92zm152.333 7.925c.988 4.466 0 8.929-4.475 9.432l-7.436 1.48v109.067c-6.455 3.468-12.408 5.453-17.369 5.453-7.94 0-9.93-2.481-15.878-9.914l-48.633-76.347v73.867l15.39 3.474s0 8.92-12.417 8.92l-34.227 1.984c-.996-1.984 0-6.938 3.471-7.932l8.933-2.475v-97.667l-12.402-.994c-.994-4.467 1.482-10.906 8.435-11.407l36.72-2.475 50.609 77.342v-68.418l-12.903-1.481c-.989-5.46 2.974-9.425 7.937-9.917l34.245-1.992zm-187.569-74.359l141.419-10.414c17.366-1.489 21.835-.491 32.75 7.438l45.142 31.728c7.449 5.456 9.932 6.941 9.932 12.89v174.017c0 10.906-3.974 17.356-17.863 18.343l-164.227 9.918c-10.427.496-15.39-.989-20.851-7.935l-33.244-43.132c-5.956-7.938-8.435-13.878-8.435-20.827v-154.68c0-8.918 3.975-16.359 15.377-17.346z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1E1E1E" cx="256" cy="256" r="256"/><path fill="#FFF" d="M174.969 184.675c4.927-23.801 21.063-45.197 42.776-56.175-3.775 3.832-8.356 6.786-11.829 10.936-14.292 15.431-20.762 37.749-16.813 58.423 4.985 31.351 34.42 56.81 66.305 56.463 24.752 1.11 49.015-13.139 61.09-34.606 25.934.878 51.147 14.265 65.856 35.73 7.579 11.225 13.502 24.364 13.904 38.052-4.784-18.153-16.872-34.29-33.34-43.396-15.934-8.963-35.486-11.253-53.006-5.95-21.871 6.282-39.939 24.19-46.394 46.018-5.303 17.534-3.026 36.869 5.287 53.094-11.568 20.025-32.46 34.361-55.152 38.641-17.434 3.661-35.774.836-51.911-6.483 14.537 4.236 30.313 4.972 44.736-.158 19.378-6.426 35.399-21.985 42.445-41.163 7.823-20.892 4.841-45.602-8.313-63.711-9.841-14.121-25.286-24.104-42.114-27.605-5.316-.951-10.719-1.383-16.107-1.873-8.544-17.264-11.7-37.334-7.42-56.237z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><path d="M356.165 133.191c6.254-6.253 16.393-6.253 22.646 0s6.253 16.392-.001 22.646l-24.908 24.909-22.646-22.645 24.909-24.91zm-29.438 29.439l-168.81 168.81-13.302 20.459 15.486 15.487 20.46-13.301 168.811-168.81zM141.035 357.378l-12.077 21.137c-.834.832-.496 2.523.755 3.773 1.25 1.25 2.94 1.588 3.774.754l21.135-12.076-13.587-13.588z" fill="#fff"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><g fill="#fff"><path opacity=".6" d="M295.842 211.508c0 20.171-16.35 36.523-36.523 36.523h-6.641c-20.17 0-36.523-16.353-36.523-36.523v-46.484c0-20.172 16.354-36.523 36.523-36.523h6.641c20.174 0 36.523 16.352 36.523 36.523v46.484z"/><path opacity=".6" d="M253.27 196.924c14.264 14.264 14.264 37.388 0 51.652l-4.695 4.694c-14.264 14.264-37.387 14.264-51.65 0l-32.869-32.869c-14.264-14.263-14.264-37.388 0-51.651l4.695-4.696c14.264-14.263 37.387-14.263 51.65 0l32.869 32.87z"/><path opacity=".6" d="M315.076 253.271c-14.264 14.264-37.389 14.264-51.654 0l-4.695-4.694c-14.262-14.265-14.262-37.389 0-51.652l32.871-32.87c14.262-14.263 37.387-14.263 51.652 0l4.695 4.696c14.264 14.264 14.264 37.389 0 51.651l-32.869 32.869zm-19.234 93.705c0 20.172-16.35 36.523-36.523 36.523h-6.641c-20.17 0-36.523-16.352-36.523-36.523v-46.484c0-20.17 16.354-36.523 36.523-36.523h6.641c20.174 0 36.523 16.354 36.523 36.523v46.484z"/><path opacity=".6" d="M347.945 291.598c14.264 14.263 14.264 37.388 0 51.651l-4.695 4.695c-14.266 14.264-37.391 14.264-51.652 0l-32.871-32.869c-14.262-14.264-14.262-37.387 0-51.652l4.695-4.694c14.266-14.264 37.391-14.264 51.654 0l32.869 32.869z"/><path opacity=".6" d="M220.4 347.945c-14.264 14.264-37.387 14.264-51.65 0l-4.695-4.695c-14.264-14.264-14.264-37.389 0-51.651l32.869-32.869c14.264-14.264 37.387-14.264 51.65 0l4.695 4.694c14.264 14.266 14.264 37.389 0 51.652L220.4 347.945z"/><path opacity=".6" d="M165.023 295.843c-20.174 0-36.523-16.352-36.523-36.523v-6.64c0-20.172 16.35-36.523 36.523-36.523h46.482c20.172 0 36.523 16.352 36.523 36.523v6.64c0 20.172-16.352 36.523-36.523 36.523h-46.482zm135.467 0c-20.17 0-36.523-16.352-36.523-36.523v-6.64c0-20.172 16.354-36.523 36.523-36.523h46.486c20.17 0 36.523 16.352 36.523 36.523v6.64c0 20.172-16.354 36.523-36.523 36.523H300.49z"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1E1E1E" cx="256" cy="256" r="256"/><g fill="#fff"><path d="M129.71 379.768c-.009-.001-.016-.006-.025-.007l-.016-.001.041.008zM233.808 266.61l78.101-78.101a14.997 14.997 0 0 1 10.401-4.397c-14.347-11.658-28.216-10.919-105.158 65.843l11.263 11.263 5.393 5.392zm98.679-56.116l-82.41 72.347 14.708 14.715c34.168-32.375 67.167-65.687 69.791-89.331a15.866 15.866 0 0 1-2.089 2.269zm-137.616 65.318l34.719-7.474-15.415-15.406-20.553 20.553a1.317 1.317 0 0 0-.247 1.644 1.3 1.3 0 0 0 1.496.683zM343.75 165.466l28.289-28.289c-13.515-11.351-33.672-9.595-45.021 3.92-11.35 13.516-9.595 33.673 3.921 45.022a31.954 31.954 0 0 0 34.68 4.19l-21.868-21.868a2.102 2.102 0 0 1-.001-2.975zm-14.041 41.887c4.503-3.961 4.945-10.822.985-15.326a11.075 11.075 0 0 0-.468-.499c-4.237-4.243-11.107-4.255-15.358-.025l-77.879 77.88 10.317 10.317 82.403-72.347zM172.181 357.711c37.341-18.72 67.415-37.999 89.447-57.293l-15.299-15.342-31.924 6.914-65.95 65.943 5.154 5.154 16.344 16.352a2.194 2.194 0 0 0 3.692-2.055h.033l-3.552-15.193a3.995 3.995 0 0 1 2.055-4.48zm-43.293 19.781a1.338 1.338 0 0 0 .009 1.894c.213.212.491.342.789.375l37.209 2.549-21.416-21.425-16.591 16.607zm93.607-93.617a1.087 1.087 0 0 0 .995 1.826l19.287-4.16-8.97-8.978-11.312 11.312z"/><path d="M375.113 140.07l-26.883 26.884 21.169 21.17a30.566 30.566 0 0 0 4.736-3.873 31.711 31.711 0 0 0 9.363-22.601 31.71 31.71 0 0 0-8.385-21.58zm-2.439 31.741l-.039.004c-.07.007-.139.023-.209.023-.07-.003-.14-.015-.208-.023a2.381 2.381 0 0 1-.302-.052 2.441 2.441 0 0 1-1.043-.485l.025.033a2.466 2.466 0 0 1-.346-3.461 7.291 7.291 0 0 0 .903-7.917 2.468 2.468 0 1 1 4.358-2.179l.005.012c.007.008.014.013.019.021a12.157 12.157 0 0 1-1.537 13.171c-.406.495-.994.79-1.626.853z"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><path fill="#fff" d="M361.115 337.176l-45.349-45.348c10.93-15.777 16.391-33.363 16.391-52.752 0-12.604-2.447-24.658-7.34-36.16-4.885-11.504-11.502-21.419-19.832-29.748-8.328-8.33-18.242-14.94-29.744-19.832-11.506-4.884-23.56-7.339-36.164-7.339-12.602 0-24.658 2.446-36.159 7.339-11.505 4.884-21.42 11.502-29.749 19.832-8.33 8.329-14.94 18.246-19.833 29.748-4.884 11.504-7.336 23.557-7.336 36.16s2.445 24.654 7.336 36.158c4.885 11.504 11.502 21.417 19.833 29.746 8.329 8.332 18.246 14.941 29.749 19.834 11.503 4.9 23.557 7.338 36.159 7.338 19.394 0 36.977-5.467 52.754-16.39l45.348 45.214c3.173 3.351 7.137 5.025 11.898 5.025 4.584 0 8.552-1.675 11.898-5.025 3.35-3.35 5.025-7.314 5.025-11.898 0-4.667-1.623-8.637-4.886-11.896m-80.18-56.256c-11.592 11.592-25.539 17.385-41.845 17.385-16.309 0-30.254-5.797-41.846-17.385-11.592-11.592-17.385-25.539-17.385-41.845 0-16.309 5.795-30.255 17.385-41.845 11.59-11.592 25.541-17.386 41.846-17.386 16.307 0 30.253 5.797 41.845 17.386 11.592 11.59 17.387 25.54 17.387 41.845 0 16.309-5.797 30.253-17.387 41.845"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><path fill="#efefef" d="M149.083 156.685l177.903-28.17 4.845 30.598-177.902 28.17z"/><path fill="#fff" d="M153.934 187.277L185.012 383.5l177.9-28.176-31.078-196.225-177.9 28.178zm60.126 166.78c-5.455.865-10.577-2.855-11.441-8.311-.863-5.455 2.857-10.578 8.312-11.443 5.455-.863 10.578 2.859 11.441 8.314.865 5.455-2.857 10.576-8.312 11.44zm-6.758-42.668c-5.455.865-10.577-2.857-11.441-8.312s2.857-10.576 8.312-11.441c5.455-.863 10.577 2.857 11.441 8.312s-2.857 10.577-8.312 11.441zm-6.758-42.67c-5.455.865-10.578-2.859-11.441-8.309-.864-5.455 2.858-10.576 8.313-11.439 5.454-.864 10.576 2.855 11.44 8.311.864 5.448-2.857 10.573-8.312 11.437zm-6.757-42.664c-5.455.864-10.577-2.857-11.441-8.312s2.857-10.577 8.312-11.441 10.577 2.857 11.441 8.312-2.858 10.577-8.312 11.441z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><path fill="#fff" d="M396.535 115.466L232.578 232.578 115.465 396.535l163.958-117.112z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><g fill="#FFF"><path d="M164.627 257.833c-11.719 11.372-19.027 25.559-19.027 40.266 0 39.535 49.427 71.591 110.4 71.591 60.973 0 110.4-32.056 110.4-71.591 0-14.707-7.44-29.015-19.152-40.383.317-.849 2.091-7.165 2.091-7.165 17.22 13.99 28.057 32.373 28.057 51.902 0 44.764-54.355 81.046-121.396 81.046-67.044 0-121.396-36.282-121.396-81.046 0-19.529 10.61-37.852 27.827-51.842.061.347 1.751 6.034 2.196 7.222z"/><path d="M347.655 222.446c1.796 4.596 2.739 9.398 2.739 14.342 0 32.991-42.266 59.735-94.395 59.735-52.133 0-94.395-26.744-94.395-59.735 0-4.751.875-9.373 2.532-13.803 15.13 20.639 50.431 35.116 91.565 35.116 41.493 0 77.043-14.726 91.954-35.655z"/><path d="M347.127 273.024a41.152 41.152 0 0 1 1.487 10.927c0 33.543-41.474 60.739-92.637 60.739-51.159 0-92.637-27.196-92.637-60.739 0-3.743.517-7.41 1.505-10.973 14.764 22.578 50.016 38.479 91.154 38.479 41.112 0 76.338-15.871 91.128-38.433zM256 243.771c53.117 0 96.176-25.804 96.176-57.638 0-31.829-43.059-57.634-96.176-57.634-53.118 0-96.176 25.805-96.176 57.634 0 31.834 43.058 57.638 96.176 57.638zm-42.153-90.655c0-2.653 2.125-4.804 4.751-4.804h73.021c2.626 0 4.754 2.147 4.754 4.804v37.221c0 2.652-2.128 4.804-4.754 4.804h-73.021c-2.622 0-4.751-2.151-4.751-4.804v-37.221z"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1E1E1E" cx="256" cy="256" r="256"/><path fill="none" stroke="#FFF" stroke-width="10" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M256 371.369L128.5 223.222l55.233-74.848L256 140.631l72.267 7.743 55.233 74.848z"/><path fill="none" stroke="#FFF" stroke-width="10" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M256 371.369L128.5 223.222h255z"/><path fill="none" stroke="#FFF" stroke-width="10" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M256 371.369l-75.88-148.147h151.76zm0-230.738l-75.88 82.591h151.76zm-72.267 7.743l-3.613 74.848L256 140.631zm144.534 0l3.613 74.848L256 140.631z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><path fill="#fff" d="M375.506 283.242a127.76 127.76 0 0 0 3.385-29.163c0-68.718-54.334-124.426-121.355-124.426-9.816 0-19.35 1.227-28.49 3.482a71.01 71.01 0 0 0-29.883-6.557c-39.025 0-70.662 31.293-70.662 69.895 0 12.871 3.533 24.92 9.668 35.276-1.281 7.248-1.988 14.702-1.988 22.329 0 68.719 54.334 124.428 121.355 124.428 7.156 0 14.156-.672 20.973-1.891 10.164 5.602 21.867 8.805 34.33 8.805 39.023 0 70.662-31.293 70.662-69.896a68.97 68.97 0 0 0-7.995-32.282zm-47.498 6.906c-.395 13.242-5.551 24.906-14.922 33.752-11.568 10.92-28.805 16.844-48.811 16.844-1.156 0-2.318-.02-3.49-.059l-.211-.01c-32.668-1.494-52.666-18.686-63.689-32.842-5.934-7.619-4.568-18.607 3.055-24.541 7.619-5.936 18.605-4.568 24.541 3.053 9.443 12.127 22.09 18.65 37.588 19.387 11.732.383 21.787-2.338 27.008-7.268 2.65-2.502 3.877-5.424 3.973-9.475l.029-.639c.482-8-1.93-11.246-32.502-19.094-1.707-.438-3.428-.879-5.156-1.33-22.396-5.686-60.074-15.252-57.588-57.88l.02-.27c2.314-31.328 33.342-46.76 61.32-45.364l1.406.127c23.605 3.096 43.049 12.827 59.443 29.752 6.719 6.938 6.543 18.009-.395 24.729-6.936 6.719-18.008 6.543-24.729-.395-10.658-11.004-22.785-17.15-38.113-19.304-7.928-.2-23.18 2.592-24.047 12.929-.494 8.504-.586 13.683 31.406 21.806 1.795.468 3.467.897 5.127 1.323 13.859 3.558 26.951 6.918 37.742 13.731 14.708 9.29 21.964 23.473 20.995 41.038z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1E1E1E" cx="256" cy="256" r="256"/><g fill="#FFF"><path d="M172.897 159.732c10.913-3.336 22.465 2.806 25.801 13.719l56.247 183.974c3.337 10.914-2.806 22.466-13.719 25.802-10.913 3.337-22.465-2.806-25.801-13.719l-56.247-183.974c-3.336-10.913 2.806-22.465 13.719-25.802zm97.109-29.688c10.912-3.337 22.464 2.805 25.801 13.719l56.246 183.974c3.337 10.914-2.806 22.465-13.719 25.802-10.913 3.337-22.465-2.807-25.802-13.719l-56.246-183.975c-3.336-10.913 2.806-22.465 13.72-25.801z"/><path d="M159.186 338.463c-3.336-10.913 2.806-22.464 13.719-25.802l183.975-56.246c10.912-3.336 22.465 2.806 25.801 13.718 3.336 10.913-2.806 22.466-13.719 25.802l-183.974 56.247c-10.914 3.337-22.466-2.806-25.802-13.719zm-29.688-97.107c-3.336-10.913 2.806-22.465 13.719-25.801l183.974-56.246c10.913-3.337 22.465 2.805 25.802 13.719 3.336 10.913-2.807 22.465-13.72 25.801l-183.974 56.246c-10.913 3.337-22.465-2.805-25.801-13.719z"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg"><circle fill="#1E1E1E" cx="256" cy="256" r="256"/><path d="M182.033 289.52c0 14.803-12.093 26.896-26.895 26.896-14.803 0-26.895-12.093-26.895-26.896 0-14.802 12.092-26.895 26.895-26.895h26.895v26.895zm13.551 0c0-14.802 12.093-26.895 26.896-26.895 14.802 0 26.895 12.093 26.895 26.895v67.342c0 14.803-12.093 26.895-26.895 26.895-14.803 0-26.896-12.092-26.896-26.895V289.52zm26.896-107.487c-14.803 0-26.896-12.093-26.896-26.895 0-14.803 12.093-26.895 26.896-26.895 14.802 0 26.895 12.092 26.895 26.895v26.895H222.48zm0 13.551c14.802 0 26.895 12.093 26.895 26.896 0 14.802-12.093 26.895-26.895 26.895h-67.342c-14.803 0-26.895-12.093-26.895-26.895 0-14.803 12.092-26.896 26.895-26.896h67.342zm107.487 26.896c0-14.803 12.093-26.896 26.895-26.896 14.803 0 26.895 12.093 26.895 26.896 0 14.802-12.092 26.895-26.895 26.895h-26.895V222.48zm-13.551 0c0 14.802-12.093 26.895-26.896 26.895-14.802 0-26.895-12.093-26.895-26.895v-67.342c0-14.803 12.093-26.895 26.895-26.895 14.803 0 26.896 12.092 26.896 26.895v67.342zM289.52 329.967c14.803 0 26.896 12.093 26.896 26.895 0 14.803-12.093 26.895-26.896 26.895-14.802 0-26.895-12.092-26.895-26.895v-26.895h26.895zm0-13.551c-14.802 0-26.895-12.093-26.895-26.896 0-14.802 12.093-26.895 26.895-26.895h67.342c14.803 0 26.895 12.093 26.895 26.895 0 14.803-12.092 26.896-26.895 26.896H289.52z" fill="#FFF"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><path d="M351.709 267.151c-55.284-33.974-136.151-43.534-201.193-23.797-7.373 2.248-11.538 10.031-9.312 17.416 2.24 7.372 10.042 11.533 17.429 9.303 56.941-17.283 130.327-8.713 178.468 20.887 6.567 4.038 15.164 1.966 19.207-4.612v.004c4.039-6.559 1.967-15.156-4.599-19.201zm-21.023 52.613c-47.21-28.852-105.732-35.569-173.959-19.977-6.02 1.373-9.77 7.356-8.396 13.369 1.371 6.012 7.362 9.774 13.368 8.404 62.344-14.244 115.281-8.426 157.328 17.261 5.264 3.228 12.152 1.562 15.36-3.702 3.228-5.26 1.558-12.126-3.701-15.355zm50.459-90.056c4.729-7.948 2.118-18.229-5.859-22.953-66.46-39.456-171.628-43.165-234.895-23.958-8.856 2.69-13.848 12.04-11.166 20.896 2.682 8.852 12.042 13.847 20.892 11.161 55.112-16.725 150.348-13.574 208.072 20.711h.007c7.937 4.728 18.246 2.104 22.949-5.857z" fill="#fff"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1E1E1E" cx="256" cy="256" r="256"/><path fill="#FFF" d="M270.01 216.017c0 .252 0 .503.013.739l-36.558 53.105c-5.922-.27-11.865.77-17.5 3.091a40.624 40.624 0 0 0-6.995 3.693l-80.275-33.047s-1.858 30.559 5.883 53.334l56.75 23.416c2.849 12.734 11.585 23.903 24.473 29.276 21.086 8.81 45.398-1.23 54.17-22.325 2.283-5.515 3.347-11.298 3.193-17.069l52.308-37.381c.423.013.859.025 1.282.025 31.303 0 56.745-25.52 56.745-56.858 0-31.341-25.442-56.837-56.745-56.837-31.289.001-56.744 25.497-56.744 56.838zm-8.771 107.615c-6.789 16.299-25.52 24.031-41.8 17.248-7.511-3.13-13.182-8.861-16.453-15.697l18.472 7.656c12.007 5.002 25.782-.692 30.773-12.695 5.006-12.016-.673-25.814-12.674-30.815l-19.096-7.913c7.369-2.795 15.745-2.897 23.571.359 7.89 3.283 14.013 9.465 17.257 17.364 3.246 7.899 3.233 16.619-.05 24.493m65.516-69.736c-20.838 0-37.804-16.991-37.804-37.879 0-20.87 16.966-37.867 37.804-37.867 20.852 0 37.817 16.997 37.817 37.867.001 20.887-16.965 37.879-37.817 37.879m-28.328-37.937c0-15.713 12.722-28.457 28.392-28.457 15.685 0 28.405 12.744 28.405 28.457 0 15.715-12.721 28.447-28.405 28.447-15.67 0-28.392-12.732-28.392-28.447z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><path fill-rule="evenodd" clip-rule="evenodd" fill="#fff" d="M262.531 383.526c-.324-.74-.752-1.451-.957-2.221-.678-2.57-1.203-5.184-1.938-7.736-.393-1.363-.938-2.738-1.697-3.928-1.043-1.633-2.771-1.65-3.736.029-.914 1.588-1.527 3.381-2.07 5.146-.654 2.133-1.057 4.34-1.652 6.492-.213.768-.678 1.469-1.027 2.197-.182.006-.363.012-.547.016-.365-.77-.869-1.504-1.072-2.314-.703-2.838-1.244-5.715-1.967-8.547-.299-1.17-.766-2.346-1.391-3.373-1.191-1.949-3.139-2.068-4.371-.16-1.088 1.68-1.861 3.574-2.652 5.426-.752 1.76-1.279 3.617-2.051 5.365-.287.65-.988 1.119-1.5 1.67-.275-.686-.734-1.355-.791-2.057-.266-3.34-.416-6.689-.627-10.033-.023-.363-.168-.723-.271-1.078-.373-1.295-1.039-2.639-2.43-2.613-1.055.02-2.471.672-3.062 1.51-1.432 2.025-2.494 4.311-3.662 6.516-.646 1.221-1.152 2.52-1.832 3.721-.215.381-.785.564-1.193.838-.221-.449-.643-.906-.627-1.348.076-2.285.336-4.564.393-6.848.045-1.852.111-3.748-.219-5.553-.525-2.857-2.947-3.684-5.059-1.699-1.574 1.479-2.834 3.301-4.178 5.016-1.115 1.424-2.104 2.949-3.248 4.348-.355.434-1.043.594-1.576.879-.145-.621-.514-1.295-.391-1.857.557-2.545 1.363-5.037 1.857-7.59.295-1.533.426-3.184.195-4.715-.32-2.129-2.213-3.078-4.076-2.004-1.627.939-3.082 2.248-4.434 3.576-1.629 1.604-3.037 3.43-4.613 5.09-.389.41-1.059.553-1.6.818-.086-.639-.395-1.348-.217-1.904.574-1.824 1.393-3.568 1.99-5.385.596-1.811 1.141-3.65 1.516-5.516.268-1.336.051-2.697-1.217-3.568-1.314-.904-2.686-.457-3.725.354-2.26 1.762-4.361 3.729-6.52 5.617-1.137.992-2.258 2.002-3.383 3.002l-.594-.293c.076-.775.002-1.607.26-2.318.865-2.402 1.953-4.725 2.754-7.146.561-1.693.998-3.484 1.115-5.258.137-2.09-1.475-3.262-3.371-2.375-1.947.91-3.713 2.24-5.477 3.502-1.383.99-2.582 2.238-3.979 3.207-.709.49-1.672.613-2.52.902.188-.826.207-1.744.594-2.463 1.059-1.967 2.348-3.811 3.398-5.783.771-1.443 1.469-2.965 1.92-4.531.781-2.711-.912-4.541-3.641-3.803-1.812.492-3.514 1.471-5.186 2.379-1.869 1.014-3.619 2.252-5.488 3.266-.512.275-1.271.094-1.916.125.117-.59.07-1.291.381-1.75 1.43-2.117 3.012-4.133 4.438-6.252.914-1.363 1.816-2.777 2.436-4.287 1.02-2.494-.152-4.088-2.797-3.738-1.658.217-3.285.834-4.859 1.447-2.229.869-4.373 1.951-6.602 2.82-.547.213-1.279-.053-1.926-.098.201-.568.26-1.262.629-1.682 1.16-1.316 2.473-2.496 3.664-3.787 1.547-1.678 3.104-3.357 4.518-5.146.721-.91 1.203-2.062.5-3.27-.732-1.262-2.012-1.418-3.227-1.25-2.098.289-4.18.738-6.246 1.213-1.76.402-3.475 1.01-5.242 1.367-.648.131-1.389-.191-2.088-.309.34-.609.543-1.387 1.047-1.795 1.818-1.475 3.779-2.771 5.605-4.238 1.322-1.061 2.666-2.158 3.73-3.459 1.617-1.977.781-4.049-1.768-4.139-3.014-.104-6.041.266-9.062.422-1.486.076-2.973.17-4.459.166-.354 0-.904-.289-.998-.57-.098-.287.148-.859.428-1.074 1.092-.842 2.254-1.598 3.395-2.381 2.234-1.535 4.523-3 6.689-4.627 1.16-.873 2.229-2.09 1.535-3.691-.66-1.52-2.234-1.77-3.688-1.709-3.293.135-6.578.426-9.869.637-.582.037-1.18.053-1.754-.035-1.113-.168-1.215-.855-.502-1.535.643-.615 1.445-1.092 2.236-1.518 2.246-1.215 4.561-2.307 6.773-3.578a14.438 14.438 0 0 0 3.139-2.426c1.387-1.426 1.158-3.121-.654-3.895-1.682-.717-3.541-1.092-5.359-1.395-2.146-.357-4.336-.459-6.504-.709-.576-.066-1.188-.164-1.693-.424-.465-.238-.811-.717-1.207-1.088.35-.359.635-.889 1.059-1.045 1.494-.551 3.033-.975 4.559-1.439 1.777-.539 3.566-1.047 5.336-1.617a9.68 9.68 0 0 0 1.883-.857c1.025-.6 2.256-1.346 1.867-2.656-.293-.984-1.158-2.152-2.062-2.529-2.189-.908-4.541-1.434-6.846-2.047-1.795-.479-3.637-.791-5.416-1.319-.506-.149-.865-.788-1.293-1.204.426-.415.789-1.075 1.291-1.207 2.723-.714 5.488-1.26 8.219-1.945 1.385-.348 2.791-.735 4.078-1.339 2.641-1.239 2.82-3.271.338-4.753-1.809-1.079-3.838-1.801-5.799-2.606-1.967-.806-3.994-1.463-5.943-2.301-.506-.218-.826-.871-1.232-1.324.512-.388.982-1.03 1.541-1.12 2.518-.401 5.068-.583 7.588-.97 1.775-.272 3.598-.544 5.262-1.176 2.279-.864 2.598-2.791.678-4.295-1.742-1.364-3.75-2.403-5.691-3.498-1.805-1.019-3.703-1.872-5.496-2.909-.467-.271-.695-.955-1.033-1.449.557-.232 1.121-.677 1.672-.66 2.072.061 4.139.356 6.211.401 2.117.047 4.27.108 6.348-.213 2.363-.366 3.031-2.482 1.256-4.087-1.678-1.516-3.684-2.683-5.609-3.9-1.662-1.051-3.441-1.914-5.109-2.957-.42-.263-.605-.896-.9-1.361.5-.242 1.016-.723 1.494-.688 2.438.177 4.859.545 7.297.73 1.904.146 3.834.276 5.732.138 2.389-.174 3.311-2.095 1.768-3.919-1.527-1.807-3.438-3.3-5.254-4.847-1.416-1.206-2.984-2.237-4.398-3.444-.424-.36-.559-1.057-.824-1.6.574-.186 1.189-.608 1.717-.516 2.822.497 5.613 1.175 8.436 1.682 1.561.281 3.162.498 4.742.479 2.189-.027 3.086-1.563 2.02-3.476-.691-1.236-1.633-2.368-2.617-3.396-1.914-2-3.977-3.858-5.891-5.86-.453-.475-.553-1.286-.814-1.942.74-.08 1.566-.411 2.205-.193 2.213.752 4.332 1.771 6.537 2.542 1.742.61 3.533 1.217 5.35 1.443 2.037.254 3.008-.964 2.506-2.969-.277-1.106-.82-2.211-1.486-3.141-1.674-2.336-3.539-4.535-5.215-6.869-.547-.761-.75-1.768-1.111-2.662 1.043.1 2.197-.057 3.105.346 2.721 1.203 5.314 2.694 8.023 3.929 1.084.493 2.326.731 3.521.864 1.229.137 2-.652 1.826-1.851-.195-1.343-.523-2.73-1.117-3.94-1.264-2.575-2.816-5.011-4.082-7.585-.443-.899-.389-2.042-.561-3.073.936.365 2 .556 2.781 1.131 2.1 1.546 4.047 3.298 6.121 4.881.963.736 2.027 1.391 3.137 1.87 1.699.731 2.832.001 2.656-1.813-.154-1.613-.576-3.238-1.125-4.77-.879-2.45-2.039-4.799-2.91-7.25-.301-.849-.092-1.877-.115-2.823.852.33 1.852.479 2.529 1.025 1.861 1.505 3.564 3.206 5.381 4.769.965.83 1.949 1.729 3.086 2.237.928.413 2.365.727 3.076.282.73-.459 1.154-1.881 1.172-2.891.023-1.403-.375-2.838-.74-4.22-.68-2.565-1.514-5.091-2.17-7.663-.146-.573.17-1.265.273-1.902.623.191 1.41.206 1.838.605 1.633 1.525 3.109 3.217 4.721 4.767 1.453 1.399 2.889 2.863 4.541 3.994 2.053 1.402 3.877.5 3.783-1.945-.123-3.221-.709-6.424-1.086-9.636-.141-1.211-.316-2.424-.342-3.639-.006-.391.342-1.008.668-1.123.32-.113.961.162 1.217.471.879 1.062 1.66 2.206 2.465 3.329 1.486 2.074 2.896 4.208 4.471 6.213.82 1.042 1.92 1.991 3.436 1.441 1.521-.553 1.994-1.939 1.965-3.357-.062-2.972-.309-5.939-.477-8.909-.055-.955-.168-1.914-.125-2.866.02-.418.363-.821.561-1.231.439.227 1.01.35 1.291.703.592.742 1.072 1.585 1.531 2.424.996 1.82 1.906 3.688 2.938 5.485.635 1.103 1.34 2.192 2.174 3.146 1.633 1.869 3.537 1.495 4.098-.928.477-2.052.537-4.21.67-6.328.121-1.966.018-3.946.172-5.908.049-.638.596-1.236.914-1.854.518.396 1.258.687 1.514 1.211 1.066 2.196 1.941 4.486 2.977 6.699.719 1.535 1.449 3.096 2.414 4.478 1.551 2.224 3.654 2.068 4.58-.451.906-2.471 1.338-5.118 1.949-7.694.393-1.65.682-3.326 1.135-4.959.117-.425.672-.727 1.025-1.084.35.362.896.668 1.016 1.095.701 2.504 1.248 5.05 1.959 7.551.461 1.627.953 3.283 1.719 4.778 1.107 2.161 3.123 2.245 4.064.035 1.217-2.856 1.922-5.933 2.832-8.92.311-1.014.49-2.079.896-3.05.236-.569.807-.999 1.227-1.489.41.515 1.035.971 1.195 1.553.576 2.098.943 4.25 1.49 6.355.506 1.947.949 3.945 1.766 5.768 1.176 2.622 3.355 2.773 4.77.28 1.25-2.2 2.057-4.652 3.043-6.999.576-1.371 1.049-2.791 1.717-4.113.242-.477.916-.734 1.393-1.092.25.494.691.976.723 1.483.168 2.708.143 5.432.365 8.135.129 1.568.393 3.188.965 4.643.812 2.071 2.842 2.459 4.334.815 1.162-1.277 2.076-2.822 2.895-4.358 1.098-2.062 1.949-4.254 3.02-6.331.27-.521.967-.82 1.469-1.221.242.606.709 1.219.691 1.816-.074 2.604-.361 5.203-.43 7.809-.039 1.528-.021 3.113.334 4.587.623 2.596 2.635 3.245 4.672 1.536 1.127-.946 2.078-2.132 2.98-3.309 1.297-1.689 2.465-3.477 3.709-5.204.34-.474.695-.983 1.162-1.304.432-.299 1.021-.369 1.543-.539.148.482.473.988.412 1.443-.156 1.152-.486 2.28-.742 3.419-.537 2.38-1.121 4.751-1.574 7.146-.143.757-.033 1.602.135 2.369.387 1.769 2.061 2.77 3.643 1.895 1.643-.907 3.143-2.161 4.494-3.479 1.715-1.668 3.172-3.596 4.838-5.317.443-.459 1.246-.573 1.885-.846.053.688.324 1.446.123 2.049-.811 2.417-1.836 4.762-2.641 7.179-.447 1.347-.801 2.775-.877 4.185-.166 3.072 1.896 4.39 4.529 2.784 1.842-1.121 3.43-2.675 5.068-4.108 1.439-1.263 2.762-2.661 4.205-3.923.336-.294.947-.271 1.434-.396.07.49.322 1.042.18 1.457-.762 2.207-1.689 4.357-2.426 6.572-.684 2.055-1.463 4.134-1.719 6.261-.318 2.642 1.455 3.823 3.838 2.585 1.914-.994 3.617-2.407 5.367-3.699 1.541-1.137 2.982-2.408 4.541-3.52.387-.275 1.055-.158 1.594-.222-.014.543.15 1.182-.076 1.613-.916 1.738-2.027 3.376-2.928 5.123-1.064 2.068-2.176 4.148-2.918 6.342-.781 2.313.674 3.954 3.082 3.624 1.18-.161 2.373-.624 3.428-1.194 1.963-1.063 3.822-2.318 5.74-3.465.82-.49 1.652-.994 2.541-1.321.422-.156 1.084-.045 1.451.212.184.13.096.946-.121 1.294-.9 1.441-1.896 2.822-2.857 4.227-1.262 1.845-2.602 3.642-3.744 5.557-.492.828-.715 1.888-.803 2.866-.117 1.264.684 2.104 1.918 2.039 1.41-.075 2.863-.306 4.188-.777 1.998-.71 3.898-1.693 5.848-2.547.826-.363 1.645-.798 2.514-.999.615-.142 1.307.054 1.965.099-.197.614-.23 1.374-.623 1.813-1.348 1.506-2.877 2.85-4.232 4.35-1.492 1.65-3.072 3.279-4.244 5.149-1.305 2.085-.176 3.996 2.27 3.803 2.674-.212 5.312-.912 7.959-1.445 1.713-.345 3.404-.813 5.123-1.129.381-.069.838.268 1.262.417-.154.425-.189.973-.48 1.251-.885.842-1.844 1.609-2.816 2.351-1.693 1.292-3.445 2.509-5.115 3.828a11.284 11.284 0 0 0-2.008 2.042c-1.545 2.05-.779 3.944 1.777 4.159 1.953.166 3.939.049 5.9-.076 2.016-.128 4.02-.43 6.031-.63.473-.046.973-.054 1.43.053.432.101.822.375 1.23.574-.225.447-.338 1.033-.693 1.316-.996.794-2.082 1.479-3.15 2.18-1.824 1.196-3.693 2.329-5.482 3.575a11.335 11.335 0 0 0-2.221 2.055c-1.471 1.777-.938 3.682 1.316 4.077 1.959.345 4.014.251 6.02.184 2.07-.071 4.131-.419 6.201-.493.693-.024 1.404.42 2.107.649-.477.587-.84 1.363-1.451 1.727-1.824 1.086-3.77 1.971-5.625 3.01-1.574.883-3.221 1.718-4.582 2.873-.834.709-1.629 1.97-1.654 3.003-.035 1.413 1.434 2.077 2.691 2.336 2.389.489 4.818.782 7.232 1.145 1.629.243 3.279.388 4.883.738.504.111.893.749 1.334 1.146-.398.382-.734.96-1.207 1.114-2.271.739-4.592 1.332-6.875 2.04-1.418.439-2.838.909-4.189 1.517-1.26.566-2.58 1.249-2.506 2.956.07 1.673 1.387 2.417 2.68 2.827 2.578.817 5.232 1.391 7.855 2.059 1.34.341 2.705.598 4.008 1.043.457.156 1.055.762 1.053 1.16s-.609 1.035-1.059 1.152c-2.773.722-5.584 1.306-8.369 1.982-1.186.287-2.377.605-3.506 1.059-1.184.475-2.473 1.053-2.596 2.541-.121 1.506 1.059 2.297 2.199 2.863 1.707.852 3.494 1.547 5.271 2.254 1.975.785 3.996 1.457 5.947 2.295.506.217.826.869 1.232 1.32-.516.385-.99 1.021-1.553 1.111-2.518.402-5.062.625-7.59.963-1.42.191-2.852.385-4.232.752-1.297.344-2.852.934-2.789 2.432.043 1.014.959 2.234 1.834 2.91 1.5 1.158 3.256 1.998 4.941 2.904 1.545.832 3.191 1.488 4.686 2.398.732.445 1.223 1.293 1.822 1.959-.885.221-1.773.633-2.656.619-1.75-.027-3.496-.393-5.248-.424-2.117-.037-4.273-.09-6.348.256-2.354.393-2.984 2.5-1.209 4.115 1.633 1.486 3.578 2.646 5.461 3.836 1.57.994 3.287 1.762 4.855 2.758.543.344.84 1.08 1.25 1.635-.674.225-1.363.678-2.02.633-2.172-.152-4.326-.557-6.498-.721-2.008-.154-4.043-.299-6.041-.135-2.307.189-3.176 2.035-1.775 3.859 1.184 1.539 2.711 2.838 4.203 4.104 1.666 1.408 3.502 2.613 5.184 4.002.52.43.781 1.174 1.162 1.773-.777.178-1.6.611-2.326.488-2.566-.439-5.086-1.133-7.646-1.6-1.613-.293-3.27-.496-4.904-.486-2.172.014-3.104 1.562-2.082 3.467.643 1.199 1.533 2.309 2.48 3.297 1.914 2.002 3.982 3.855 5.895 5.859.49.516.635 1.359.938 2.053-.795.031-1.668.291-2.371.051-2.16-.738-4.225-1.764-6.387-2.494-1.797-.605-3.656-1.143-5.529-1.359-1.76-.203-2.793 1.021-2.312 2.719.426 1.498 1.164 2.973 2.055 4.258 1.541 2.232 3.355 4.273 4.947 6.473.443.613.51 1.502.748 2.266-.807-.061-1.713.098-2.402-.217-2.562-1.174-5.018-2.584-7.588-3.734-1.383-.619-2.896-1.041-4.395-1.283-1.354-.217-2.205.666-2.016 2.012.189 1.344.549 2.727 1.145 3.938 1.291 2.625 2.84 5.121 4.158 7.734.391.777.365 1.766.531 2.656-.887-.314-1.908-.441-2.631-.975-2.227-1.645-4.309-3.482-6.514-5.158-.922-.703-1.953-1.332-3.031-1.738-1.605-.605-2.797.193-2.584 1.873.25 1.977.807 3.941 1.453 5.834.807 2.363 1.885 4.631 2.742 6.979.211.578.023 1.303.02 1.959-.676-.186-1.506-.182-1.998-.588-2.174-1.799-4.215-3.758-6.379-5.568-1.012-.848-2.125-1.637-3.314-2.191-1.857-.867-3.365-.066-3.578 1.982-.143 1.393.057 2.877.389 4.25.707 2.943 1.637 5.832 2.389 8.766.135.529-.146 1.164-.236 1.748-.574-.193-1.291-.232-1.699-.609-1.369-1.258-2.596-2.674-3.939-3.963-1.646-1.584-3.23-3.271-5.068-4.604-2.234-1.615-4.129-.799-4.189 1.91-.061 2.73.527 5.475.836 8.213.184 1.635.418 3.268.527 4.906.025.381-.285.91-.605 1.133-.162.113-.816-.209-1.037-.496-1.002-1.309-1.912-2.686-2.889-4.014-1.447-1.969-2.799-4.033-4.453-5.812-.664-.717-2.229-1.314-3.012-1.01-.912.352-1.969 1.738-1.998 2.705-.104 3.379.205 6.773.363 10.16.035.744.154 1.49.102 2.227-.027.371-.275.912-.561 1.021-.248.096-.801-.219-1.021-.506-.549-.711-1.025-1.49-1.461-2.279-1.027-1.867-1.969-3.779-3.029-5.625-.635-1.102-1.338-2.193-2.172-3.148-1.715-1.959-3.695-1.555-4.371.969-.449 1.678-.584 3.459-.686 5.205-.119 2.072-.045 4.154-.074 6.232-.006.475-.016.973-.158 1.418-.121.371-.434.947-.674.953-.389.008-.963-.275-1.148-.609-.723-1.297-1.35-2.65-1.963-4.004-.879-1.938-1.617-3.945-2.596-5.828-.797-1.527-1.609-3.418-3.77-3.156-2.141.262-2.537 2.295-2.945 3.945-.727 2.938-1.156 5.947-1.801 8.906-.209.967-.699 1.875-1.061 2.811a16.815 16.815 0 0 0-.652-.035zm52.396-120.257c-1.092-.057-1.764-.121-2.434-.121-13.059-.006-26.117-.166-39.172.049-8.578.141-15.445 3.977-19.828 11.43-7.229 12.293-14.193 24.74-21.285 37.113-2.332 4.066-4.744 8.088-7.049 12.17-1.354 2.395-2.898 4.756-3.783 7.328-3.168 9.211.283 16.492 9.496 19.594 3.941 1.326 8.17 1.896 12.309 2.531 11.012 1.691 21.988 1.145 32.859-1.141 16.373-3.441 30.943-10.625 43.602-21.58 15.561-13.471 25.861-30.23 30.967-50.154.504-1.965.969-4.205.529-6.104-2.43-10.504-9.766-12.18-18.68-10.973 1.986 1.189 4.492 1.09 6.438 3.105-1.043.297-1.664.549-2.309.643-2.104.307-4.244.424-6.309.887-.85.189-1.943.943-2.176 1.678-.166.52.775 1.678 1.488 2.133 1.697 1.084 3.564 1.896 5.336 2.869.646.354 1.217.846 1.822 1.275-.062.215-.125.43-.189.643-.953 0-1.906.025-2.859-.004-1.756-.057-3.518-.279-5.258-.156-.822.057-1.6.752-2.396 1.156.428.793.666 1.848 1.324 2.328 1.58 1.154 3.369 2.023 5.049 3.045.631.385 1.199.871 1.797 1.312l-.197.643c-.848 0-1.699.055-2.541-.012-1.906-.152-3.807-.482-5.713-.5-.848-.008-1.699.568-2.551.879.348.889.467 2.014 1.088 2.619 1.443 1.404 3.145 2.537 4.707 3.818.529.434.959.988 1.434 1.488l-.246.479c-.865-.072-1.738-.092-2.592-.23-2.094-.344-4.168-.832-6.271-1.07-.68-.076-1.861.275-2.033.727-.234.615.057 1.701.518 2.256 1.252 1.512 2.725 2.838 4.08 4.266.59.619 1.107 1.311 1.656 1.969-.105.172-.211.342-.314.514-.729-.152-1.486-.223-2.18-.471-1.854-.66-3.645-1.516-5.529-2.045-.812-.229-2.287-.146-2.584.336-.398.646-.242 1.992.197 2.727 1.059 1.771 2.438 3.352 3.65 5.033.377.521.631 1.127.941 1.693l-.322.424c-.812-.27-1.652-.475-2.43-.818-1.992-.883-3.91-1.949-5.943-2.711-1.594-.596-2.467.359-2.033 2.025.172.664.416 1.324.732 1.932.836 1.605 1.76 3.164 2.584 4.775.275.541.359 1.18.533 1.773l-.455.314c-.766-.518-1.551-1.006-2.289-1.561-1.49-1.115-2.9-2.35-4.457-3.361-.557-.363-1.732-.557-2.098-.232-.43.379-.543 1.49-.34 2.141.664 2.127 1.559 4.18 2.311 6.281.244.684.318 1.43.471 2.146-.152.08-.305.16-.457.238-.602-.395-1.248-.732-1.791-1.195-1.34-1.137-2.594-2.377-3.955-3.486-.896-.73-2.084-1.734-3.102-.84-.641.564-.836 2.047-.674 3.025.346 2.086 1.074 4.105 1.6 6.166.129.502.082 1.051.117 1.578l-.496.281c-.938-.879-1.871-1.762-2.812-2.637-1.359-1.266-2.629-2.654-4.119-3.744-1.197-.879-2.127-.375-2.43 1.082a5.713 5.713 0 0 0-.059 1.895c.275 2.002.65 3.99.918 5.99.074.559-.096 1.148-.154 1.723l-.475.119c-.551-.68-1.125-1.34-1.645-2.043-1.166-1.584-2.178-3.303-3.488-4.754-1.459-1.615-3.098-1.133-3.34 1.035-.221 1.977.098 4.012.158 6.02.027.902.004 1.807.004 2.711-.166.047-.334.094-.5.143-.387-.588-.824-1.148-1.152-1.766-.949-1.783-1.773-3.643-2.824-5.361-.387-.631-1.352-1.395-1.914-1.297-.58.102-1.297 1.123-1.418 1.834-.363 2.143-.449 4.33-.682 6.498-.074.691-.268 1.373-.406 2.061l-.562.123c-.459-.717-.977-1.404-1.363-2.156-.973-1.889-1.805-3.855-2.873-5.686-.34-.582-1.303-1.205-1.885-1.125-.582.082-1.303.936-1.512 1.596-.479 1.508-.67 3.105-1.002 4.662-.273 1.283-.582 2.559-.875 3.838a78.025 78.025 0 0 1-.684-.014c-.273-.83-.576-1.65-.812-2.49-.518-1.84-.898-3.727-1.553-5.514-.25-.682-1.092-1.568-1.683-1.582-.58-.014-1.465.854-1.723 1.523-.682 1.777-1.08 3.66-1.625 5.492-.26.873-.6 1.723-.904 2.582-.221.002-.443.002-.666.002l-1.121-4.139c-.402-1.484-.678-3.021-1.264-4.43-.279-.672-1.105-1.455-1.76-1.529-.541-.062-1.295.762-1.764 1.344-.455.564-.705 1.307-.977 1.998-.545 1.385-1.002 2.809-1.58 4.178-.215.514-.668.926-1.012 1.387l-.414-.15c-.08-.605-.195-1.209-.232-1.816-.121-1.914-.039-3.861-.389-5.727-.178-.945-.965-2.18-1.768-2.467-.586-.211-1.934.727-2.439 1.486-1.025 1.535-1.691 3.305-2.543 4.959-.316.613-.74 1.174-1.113 1.758-.186-.051-.373-.104-.559-.154 0-1.176-.023-2.354.006-3.527.039-1.543.299-3.105.117-4.617-.107-.879-.713-2.047-1.43-2.395-.545-.266-1.85.344-2.41.941-1.305 1.389-2.344 3.023-3.533 4.523-.488.615-1.086 1.143-1.635 1.711l-.648-.363c.498-1.688.736-3.51 1.539-5.037 2.549-4.852 5.334-9.576 7.967-14.385.678-1.238 1.344-1.551 2.764-1.021 9.656 3.6 19.656 4.996 29.816 3.184 23.52-4.195 39.381-17.666 47.303-40.252 1.252-3.572 1.859-7.367 2.824-11.29zm15.131-44.761c.094.182.189.362.285.543-.48.498-.91 1.056-1.447 1.482-1.582 1.258-3.289 2.373-4.777 3.731-.621.567-1.295 1.784-1.07 2.375.232.615 1.508 1.124 2.348 1.157 1.633.066 3.277-.274 4.922-.368 1.219-.068 2.441-.014 3.664-.014.064.181.131.361.195.541-.627.501-1.23 1.037-1.889 1.497-1.742 1.219-3.576 2.318-5.227 3.648-.549.442-1 1.519-.852 2.157.117.508 1.205 1.1 1.875 1.114 1.957.046 3.918-.235 5.879-.274.881-.018 1.766.239 2.648.371-.629.575-1.188 1.268-1.902 1.704-1.855 1.135-3.879 2.02-5.652 3.266-1.729 1.217-1.428 2.729.602 3.361 1.305.406 2.715.46 4.064.734 1.594.326 3.387-.071 4.859 1.652l-6.691 2.073c2.801.231 5.512.31 8.217.209 2.381-.089 4.416-1.172 6.164-2.732 3.426-3.055 5.045-6.872 4.871-11.495-.178-4.77-1.801-9.165-3.479-13.512-9.289-24.061-25.496-41.907-48.58-53.406-12.703-6.327-26.219-9.634-40.42-9.814-4.884-.062-9.808.131-14.656.691-5.129.593-10.266 1.28-15.088 3.508-8.646 3.993-12.111 15.513-4.863 23.99.156-2.301-1.443-4.468-.301-7.131.729.858 1.275 1.413 1.717 2.042.828 1.174 1.539 2.434 2.404 3.578.838 1.108 1.646 2.802 3.295 2.208 1.754-.631 1.467-2.538 1.4-4.054-.07-1.644-.365-3.277-.48-4.922-.037-.546.184-1.108.285-1.664l.492-.061c.406.654.852 1.289 1.211 1.969.922 1.738 1.73 3.541 2.74 5.223.367.608 1.352 1.437 1.752 1.298.637-.221 1.316-1.115 1.449-1.824.361-1.926.391-3.911.664-5.857.131-.931.516-1.826.785-2.737.602.751 1.324 1.437 1.777 2.269.938 1.725 1.641 3.582 2.635 5.269.377.642 1.344 1.383 1.951 1.311.588-.069 1.301-1.048 1.529-1.763.467-1.455.629-3.006.945-4.511.27-1.289.58-2.57.873-3.855l.705-.02c.303.795.668 1.573.895 2.391.471 1.686.727 3.446 1.352 5.07.334.869 1.25 1.515 1.902 2.263.652-.762 1.556-1.424 1.898-2.305.631-1.622.896-3.383 1.381-5.065.234-.811.623-1.577.941-2.364l.58.02c.311.857.689 1.698.918 2.577.48 1.849.746 3.767 1.379 5.557.293.829 1.242 1.427 1.893 2.13.668-.632 1.35-1.249 1.992-1.905.178-.179.252-.467.346-.714.645-1.688 1.23-3.401 1.949-5.057.221-.505.803-.853 1.219-1.272.188.51.502 1.011.541 1.531.156 2.018.059 4.071.396 6.052.162.95.92 2.176 1.725 2.505.527.217 1.896-.77 2.4-1.536 1.016-1.542 1.676-3.312 2.525-4.967.316-.613.752-1.166 1.133-1.746l.469.118c.098.528.297 1.06.279 1.584-.068 2.072-.246 4.142-.295 6.215-.029 1.202.188 2.643 1.49 2.851.805.128 1.867-.699 2.65-1.307.65-.507 1.076-1.309 1.582-1.993.725-.987 1.387-2.023 2.164-2.968.355-.431.916-.69 1.383-1.029l.387.268c-.104.767-.16 1.545-.324 2.299-.355 1.66-.943 3.294-1.09 4.969-.086.989.18 2.375.838 2.978 1.021.934 2.248.067 3.094-.755 1.373-1.333 2.605-2.81 3.934-4.19.479-.499 1.062-.896 1.598-1.34l.48.281c-.135.672-.195 1.369-.412 2.012-.598 1.76-1.297 3.484-1.887 5.246-.379 1.141-.607 2.424.506 3.235 1.23.898 2.367.062 3.299-.725 1.381-1.164 2.639-2.476 3.986-3.685.547-.491 1.189-.878 1.791-1.312l.475.355c-.207.728-.373 1.469-.627 2.18-.68 1.901-1.539 3.751-2.035 5.696-.229.894.229 1.962.375 2.951.945-.163 2.051-.071 2.805-.543 1.57-.98 2.934-2.289 4.426-3.4.615-.46 1.348-.761 2.027-1.134.146.154.291.31.436.465-.385.775-.754 1.56-1.16 2.326-.965 1.829-2.113 3.583-2.877 5.492-.809 2.03.441 3.261 2.561 2.653.904-.258 1.756-.75 2.584-1.221 1.203-.685 2.334-1.494 3.551-2.15.514-.277 1.164-.302 1.752-.441.078.151.154.302.23.453-.391.673-.742 1.375-1.184 2.014-1.059 1.532-2.227 2.993-3.223 4.564-.578.913-1.408 2.17-.346 3.017.641.512 2.023.463 2.932.191 1.77-.532 3.426-1.433 5.158-2.11.686-.269 1.447-.352 2.174-.519l.312.486c-.549.667-1.068 1.358-1.648 1.996-1.432 1.571-3.033 3.012-4.299 4.705-1.234 1.654-.475 3.007 1.57 2.826 1.887-.166 3.734-.741 5.604-1.118 1.101-.221 2.209-.406 3.312-.608zm-130.466 98.641l-.416-.387c.217-.557.373-1.146.66-1.662.625-1.113 1.363-2.166 1.969-3.289.529-.979 1.061-1.982 1.381-3.039.604-1.988-.59-3.201-2.562-2.605-1.055.318-2.051.869-3.023 1.406-1.117.619-2.152 1.385-3.273 1.996-.475.258-1.08.281-1.625.412l-.23-.385c.352-.633.654-1.299 1.061-1.893 1.111-1.627 2.398-3.148 3.344-4.861.445-.805.264-1.955.367-2.949-1.008-.07-2.102-.428-3.004-.154-1.822.549-3.529 1.471-5.309 2.174-.631.25-1.336.316-2.006.467l-.289-.48c.514-.627.996-1.285 1.547-1.879 1.375-1.48 2.877-2.859 4.127-4.438.477-.6.793-1.861.475-2.408-.32-.553-1.568-.912-2.326-.797-2.145.324-4.242.955-6.369 1.42-.676.148-1.383.154-2.074.225-.078-.166-.154-.332-.23-.498.539-.523 1.037-1.098 1.623-1.562 1.541-1.225 3.207-2.309 4.641-3.645.604-.562 1.225-1.83.975-2.391-.275-.619-1.539-1.096-2.379-1.105-1.85-.025-3.703.312-5.559.441-.986.068-1.98.014-2.971.014-.055-.205-.107-.41-.16-.615.596-.479 1.164-1 1.793-1.43 1.627-1.109 3.367-2.074 4.881-3.316.684-.561.939-1.643 1.387-2.49-.898-.434-1.787-1.201-2.699-1.23-2.008-.064-4.027.27-6.045.381-.621.035-1.252-.117-1.879-.184l-.135-.555c.67-.453 1.312-.955 2.014-1.354 1.76-.998 3.611-1.846 5.285-2.965.697-.467 1.584-1.646 1.41-2.188-.242-.746-1.33-1.498-2.189-1.711-1.795-.441-3.682-.496-5.52-.779-.934-.145-1.846-.436-2.768-.66l-.031-.627c.629-.289 1.236-.645 1.891-.859 2.018-.664 4.094-1.168 6.059-1.959.715-.287 1.697-1.277 1.625-1.822-.096-.732-.98-1.66-1.736-1.945-1.727-.648-3.588-.939-5.383-1.414-1.021-.269-2.025-.61-3.035-.918l.018-.645c.811-.289 1.604-.644 2.432-.854 1.904-.485 3.865-.778 5.721-1.399.801-.268 1.396-1.15 2.086-1.753-.604-.688-1.078-1.646-1.836-2.008-1.912-.913-3.963-1.528-5.934-2.324-.682-.274-1.289-.728-1.93-1.101l.088-.671c1.201-.229 2.396-.491 3.604-.683 1.781-.283 3.613-.357 5.348-.815 1.982-.523 2.199-1.95.617-3.232-.572-.467-1.223-.856-1.879-1.202-1.459-.77-2.963-1.455-4.408-2.247-.547-.298-.984-.794-1.473-1.201l.164-.436c.604-.052 1.211-.168 1.812-.146 2.074.077 4.15.323 6.217.251.834-.03 1.646-.715 2.469-1.103-.438-.835-.67-1.948-1.352-2.452-1.619-1.191-3.461-2.076-5.188-3.125-.59-.356-1.105-.834-1.654-1.256l.186-.525c1.068 0 2.143-.061 3.207.014 1.801.126 3.594.445 5.395.46.748.007 1.98-.412 2.133-.905.205-.662-.193-1.814-.734-2.347-1.359-1.337-2.959-2.423-4.43-3.647-.693-.578-1.316-1.244-1.971-1.871l.248-.529c.961.081 1.932.107 2.881.257 2.148.336 4.273.882 6.43 1.059 1.82.148 2.438-1.036 1.402-2.555-.742-1.087-1.717-2.024-2.633-2.984-.918-.963-1.922-1.845-2.822-2.825-.24-.263-.236-.75-.346-1.133.383-.063.799-.255 1.139-.162.869.236 1.701.599 2.549.913 1.395.518 2.756 1.182 4.193 1.502.824.183 2.176.11 2.553-.397.393-.527.148-1.85-.256-2.585-.762-1.386-1.834-2.602-2.781-3.887-.504-.687-1.053-1.343-1.498-2.066-.166-.27-.09-.688-.125-1.039.346-.03.738-.181 1.029-.068.938.362 1.836.826 2.756 1.242 1.545.701 3.057 1.512 4.656 2.062 1.73.596 2.572-.281 2.023-2.064-.342-1.106-.9-2.153-1.432-3.19-.607-1.184-1.33-2.307-1.924-3.494-.258-.514-.316-1.126-.467-1.693l.416-.344c.727.458 1.484.87 2.17 1.381 1.578 1.179 3.072 2.473 4.699 3.574.527.357 1.713.588 1.965.308.422-.467.604-1.478.408-2.111-.656-2.127-1.564-4.175-2.289-6.283-.242-.702-.223-1.493-.322-2.245.723.333 1.547.541 2.148 1.024 1.254 1.007 2.389 2.161 3.574 3.254l.527-.425c-1.893-2.716-3.611-5.578-5.748-8.085-1.074-1.26-2.811-2.119-4.412-2.731-6.031-2.308-11.291.084-15.256 4.143-22.719 23.25-31.447 51.336-27.488 83.382 1.807 14.637 7.213 28.076 15.436 40.338 4.047 6.035 8.557 11.715 14.07 16.488 2.65 2.295 5.855 3.164 9.389 2.611 4.283-.672 7.76-2.889 10.252-6.248 2.457-3.311 4.365-7.029 6.492-10.582.893-1.488 1.729-3.012 2.592-4.52-3.775 4.623-5.471 10.816-10.975 14.135.033-.963.266-1.809.557-2.633.621-1.754 1.418-3.461 1.852-5.256.209-.863.057-2.412-.465-2.705-.691-.389-2.062-.125-2.854.344-1.498.887-2.775 2.141-4.178 3.199-.674.501-1.422.907-2.133 1.358zm21.207-13.32c.338-.533.689-1.049 1-1.588 6.605-11.43 13.238-22.844 19.797-34.301 4.367-7.629 4.258-15.411.008-22.978-6.49-11.555-13.217-22.979-19.846-34.455-.256-.442-.557-.858-.842-1.29-31.658 22.738-31.842 70.708-.117 94.612zm11.978-101.635c.396.734.652 1.242.936 1.735 6.795 11.804 13.604 23.603 20.391 35.412 3.955 6.882 10.154 10.099 17.818 10.215 13.578.207 27.164.055 40.744.055h2.152c-2.807-18.716-11.688-33.262-27.576-43.059-17.237-10.628-35.465-11.456-54.465-4.358zm23.112 58.688c2.55.031 4.607-1.926 4.669-4.445.066-2.61-1.943-4.726-4.533-4.773-2.539-.047-4.719 2.099-4.707 4.637.012 2.511 2.045 4.552 4.571 4.581z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg"><circle fill="#1E1E1E" cx="256" cy="256" r="256"/><circle cx="256" cy="256" r="256" fill="#1e1e1e"/><path d="M225.55 151c11.76 1.31 23.49 2.84 35.25 4.2 10.48 1.3 21 2.5 31.45 3.86 6.33 5.29 12.54 10.74 18.83 16.08q16.23 14 32.5 27.87a17.67 17.67 0 0 0-.4 4c0 .78-.2 1.68.38 2.31q6.92 9.54 13.8 19.09c2.72 3.65 5.24 7.45 8.07 11 8.71-9.86 17.37-19.76 26.09-29.62 2.56 2.6 4.92 5.38 7.48 8v.57c-7 12.81-13.9 25.7-20.91 38.51-5.68 2.39-11.59 4.29-17.32 6.58-.61.2-1.42.66-1.92 0-4.2-4-8.45-8-12.66-12-1.57-1.35-2.94-2.93-4.6-4.17q-.34 5.44-.52 10.9c-9.13 2.56-18.19 5.41-27.29 8.09-.56.22-1.39.25-1.55 1-3.62 9.58-7.33 19.14-11 28.73-1.53 5.36-2.78 10.81-4.21 16.21-4 15.33-7.86 30.67-11.82 46-3.41 0-6.82-.3-10.22-.11-.44.94-.55 2.26-1.41 2.86-2.37.07-4.76.05-7.13-.06-3.92-.05-7.84 0-11.76 0a78.79 78.79 0 0 0-8.13-.17q-4.4-11.44-8.78-22.91c-1.73-4.37-3.24-8.85-5.11-13.16-3-1.23-6.15-2.13-9.22-3.22s-6.3-2.33-9.55-3.13C211 326 208 333.7 205 341.42c-2.1 5.2-3.93 10.5-6.13 15.65a37.41 37.41 0 0 0-6.17-.3c-1.79-.11-3.58 0-5.37-.06-.76 1.08-1.58 2.12-2.24 3.28h-26.6c-3.91-16-7.71-32.07-11.58-48.1a40.81 40.81 0 0 0-1.08-4.08c-3.83 6.4-7.53 12.88-11.47 19.21q-10.21-6.48-20.39-13v-.32c.49-.53 1-1 1.46-1.58 4.67 1.76 9.18 3.9 13.85 5.65 1-8.67 2.21-17.34 3.27-26a54.36 54.36 0 0 1 1.24-6.3c1.7-7.3 3.33-14.61 5.05-21.9 2.46-10.44 4.74-20.93 7.62-31.26a8 8 0 0 0 1.88-.31c14.65-4.26 29.29-8.58 43.94-12.86a7.65 7.65 0 0 0 2.52-1q5.92-24.1 11.8-48.23a27.12 27.12 0 0 1 1.06-3.88c8.58.47 17.16.64 25.73 1.05-2.33-5.49-5.39-10.61-7.84-16.08z" fill="#fff"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1E1E1E" cx="256" cy="256" r="256"/><path d="M344.336 226.226a23.002 23.002 0 0 0 7.271 4.904 22.986 22.986 0 0 0 17.755 0 22.998 22.998 0 0 0 12.176-12.176 22.99 22.99 0 0 0 0-17.753 22.998 22.998 0 0 0-12.176-12.176 22.995 22.995 0 0 0-17.755 0 22.993 22.993 0 0 0-12.175 12.176 22.981 22.981 0 0 0 0 17.753 23.283 23.283 0 0 0 4.904 7.272zm-6.682 21.18v68.758h11.457a65.374 65.374 0 0 0 11.726-1.112 36.587 36.587 0 0 0 11.104-3.877 24.757 24.757 0 0 0 8.278-7.304 18.94 18.94 0 0 0 3.266-11.404v-45.061h-45.831zm-37.136-28.826a22.177 22.177 0 0 0 8.866-1.788 22.983 22.983 0 0 0 12.165-12.175 22.937 22.937 0 0 0-.011-17.755 22.995 22.995 0 0 0-12.176-12.176 22.178 22.178 0 0 0-8.877-1.788 21.887 21.887 0 0 0-8.812 1.788c-2.077.89-2.731 2.046-5.59 3.438v35.23c2.87 1.401 3.513 2.547 5.59 3.437a21.822 21.822 0 0 0 8.845 1.789zm-14.435 115.768c2.87.621 3.897 1.103 5.933 1.38 2.228.322 4.476.483 6.725.494a50.862 50.862 0 0 0 10.334-1.114 30.531 30.531 0 0 0 9.798-3.823 22.53 22.53 0 0 0 7.303-7.249 20.86 20.86 0 0 0 2.881-11.394V233.08h-42.973v101.268h-.001zM128.5 155.722v200.556l148.984 25.786V129.937L128.5 155.722zm108.87 68.758l-25.784 1.146v75.214l-17.187-1.007V226.3l-25.786 1.04v-15.86l68.757-4.188v17.188z" fill="#FFF"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1E1E1E" cx="256" cy="256" r="256"/><path fill="#1E1E1E" d="M224.412 349.983c-7.597 0-6.306-2.869-8.925-10.103l-22.341-73.523L365.109 164.34"/><path fill="#FFF" d="M224.412 349.983c5.863 0 8.453-2.682 11.725-5.862l31.267-30.402-39.002-23.519"/><path fill="#FFF" d="M228.398 290.206l94.502 69.819c10.784 5.951 18.566 2.87 21.254-10.012l38.467-181.271c3.938-15.789-6.019-22.951-16.336-18.268l-225.878 87.098c-15.418 6.185-15.329 14.786-2.811 18.619l57.966 18.092 134.195-84.663c6.335-3.841 12.149-1.776 7.378 2.459"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><path fill="#fff" d="M143.223 313.641L128.5 284.194l89.072-44.536-89.072-44.536 14.723-29.446 118.517 59.259v29.446zm121.759-.238H383.5v32.922H264.982z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1E1E1E" cx="256" cy="256" r="256"/><path fill="#FFF" d="M351.635 128.663h-191.27c-17.565.039-31.803 14.262-31.865 31.834v42.078l43.204 25.36c3.257 1.903 7.299 1.872 10.579 0 2.734-1.57 84.544-49.073 85.771-49.796a8.003 8.003 0 0 1 7.89-.094c1.733 1.026 6.381 3.7 8.836 5.106 2.465 1.415 2.348 5.331.156 6.606-2.191 1.29-97.929 56.93-102.39 59.534h.016c-3.668 2.122-7.289 2.176-11.066.023-6.335-3.622-32.495-19.003-42.995-25.189v19.197l43.204 25.352c3.257 1.912 7.299 1.881 10.579 0 2.734-1.562 84.544-49.072 85.771-49.787a7.998 7.998 0 0 1 7.89-.093c1.733 1.024 6.381 3.699 8.836 5.105 2.465 1.422 2.348 5.34.156 6.606-2.191 1.29-97.929 56.931-102.39 59.533h.016c-3.668 2.123-7.289 2.169-11.066.023-6.335-3.621-32.495-19.003-42.995-25.189v21.747l43.204 25.353c3.257 1.911 7.299 1.88 10.579 0 2.734-1.562 84.544-49.073 85.771-49.788a8.003 8.003 0 0 1 7.89-.094c1.733 1.026 6.381 3.7 8.836 5.106 2.465 1.414 2.348 5.331.156 6.6-2.191 1.289-97.929 56.937-102.39 59.533h.016c-3.668 2.13-7.289 2.176-11.066.023-6.337-3.612-32.498-18.992-42.998-25.186v43.337c0 17.511 14.331 31.834 31.865 31.834h191.27c17.534 0 31.865-14.323 31.865-31.834V160.497c0-17.511-14.331-31.834-31.865-31.834z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><path fill="#fff" d="M255.924 398.951l-.004-.523.079.068h.079l-.003.455c59.814-1.305 69.477-19.264 76.292-32.893 6.95-13.902 25.486-196.943 25.486-196.943s.096-.351.092-.969c0 0-.972 18.095-101.881 18.095-100.91 0-102.01-18.095-102.01-18.095h-.001c-.003.619.092.969.092.969s18.536 183.041 25.487 196.943c6.816 13.629 16.478 31.588 76.292 32.893z"/><path fill="#efefef" d="M357.946 169.568c0-.083-.002-.172-.007-.265a.748.748 0 0 0 .006-.058h-.009c-.295-5.179-7.643-24.191-99.678-24.196h-4.516c-92.036.005-99.384 19.018-99.679 24.196h-.009s0 .02.006.056a5 5 0 0 0-.007.268h.07c.728 2.425 9.007 17.771 101.94 17.771 92.932 0 101.103-15.347 101.812-17.771l.071-.001z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1E1E1E" cx="256" cy="256" r="256"/><path fill="#fff" d="M128.5 353.815l.001-61.215.001-79.375c.027-18.928.06-37.854.078-56.78.002-2.58.044-5.151.65-7.678 2.959-7.901 8.85-11.215 17.075-11.194 23.263.058 46.524-.001 69.786.032 9.303.013 14.725 4.196 17.332 13.183.084 2.233.231 4.468.24 6.701.067 19.248.111 38.495.163 57.743v93.509l.002 45.071c-.248 4.765-.212 9.533-3.264 13.702-3.297 4.506-7.676 6.813-13.127 6.829-24.279.072-48.562.156-72.839-.03-9.305-.071-16.027-6.001-16.025-16.136.002-1.453-.047-2.907-.073-4.362zm254.938-201.813l.062 86.108c-.029 10.743-.054 21.489-.091 32.233-.039 11.449-6.453 17.921-17.864 17.934-23.396.024-46.792-.145-70.185.097-7.436.077-12.183-3.316-15.643-9.365-.876-1.531-1.25-3.191-1.294-4.943-.077-3.017-.171-6.033-.258-9.05l.001-49.782c.05-11.642.089-23.283.153-34.925.056-9.851.143-19.701.215-29.552 2.805-9.221 8.068-13.152 17.727-13.159 23.174-.014 46.348-.019 69.521.002 9.915.009 15.616 4.693 17.656 14.402z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1E1E1E" cx="256" cy="256" r="256"/><path fill="#FFF" d="M378.886 206.628c-31.494 54.583-62.988 109.165-94.483 163.86-5.828 10.198-14.346 16.251-26.002 17.147-13.001.896-23.312-4.596-29.925-15.804-19.95-34.184-39.676-68.592-59.402-102.889-11.992-20.846-24.097-41.692-36.089-62.653-12.105-21.069 1.569-46.736 25.778-47.969 12.777-.673 22.64 5.267 29.141 16.364 8.854 15.13 17.596 30.484 26.451 45.728 6.389 10.984 12.553 22.08 19.053 32.84 9.415 15.804 23.312 24.657 41.806 25.778 26.115 1.569 50.436-17.373 53.575-45.056.224-2.019.336-4.148.447-5.156-.111-8.966-1.793-16.588-5.379-23.65-9.752-19.5.672-41.356 21.855-46.063 17.26-3.811 35.193 8.854 37.435 26.338 1.12 7.511-.45 14.572-4.261 21.185z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1E1E1E" cx="256" cy="256" r="256"/><g fill="#FFF"><path d="M307.904 258.21l-.002.002.002.005zm-117.732 43.746l.02-.058-.02.058zm.019-.058l.025-.077a1.115 1.115 0 0 1-.025.077zm.026-.077l.025-.075-.025.075z"/><path d="M255.608 277.25c38.002 0 52.263-18.996 52.294-19.038l-14.696-48.111s-13.139 10.482-37.591 10.482-37.662-10.482-37.662-10.482l-14.748 48.194s14.634 18.955 52.403 18.955zM255.58 171c16.682 0 22.965-8.437 22.965-8.437l-9.769-31.237s-.581-2.826-13.196-2.826c-13.062 0-13.196 2.819-13.196 2.819l-9.74 31.217S238.897 171 255.58 171zm112.594 205.303l-27.229-86.658s-.912-5.312-6.607-5.312h-18.113c2.217 7.392 3.543 12.104 5.157 17.623-7.957 12.852-34.919 24.84-65.604 24.875-30.686-.035-57.648-12.023-65.605-24.875 1.614-5.519 2.94-10.231 5.157-17.623h-18.113c-5.695 0-6.607 5.312-6.607 5.312l-27.229 86.658c-2.312 7.357 4.646 7.197 4.646 7.197h215.501s6.957.16 4.646-7.197z"/><path d="M190.242 301.746c.023-.067.032-.096 0 0z"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><path fill="#fff" d="M321.205 128.5l-104.22 103.019-62.746-47.254-25.859 8.637 63.836 63.104-63.836 63.1 25.859 8.64 62.746-47.258h.003L321.201 383.5l62.418-26.52V155.021L321.205 128.5zm-.004 73.505V309.99l-71.699-53.992 71.699-53.993z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1E1E1E" cx="256" cy="256" r="256"/><g fill="#FFF"><path d="M249.96 128.602c-21.27 1.379-43.603 9.023-61.248 20.961-18.631 12.608-33.402 29.63-42.973 49.488-5.239 10.874-8.508 21.119-10.753 33.728-1.694 9.456-2.048 23.72-.866 34.672 1.576 14.736 6.972 32.389 14.259 46.81l2.086 4.059-4.844 14.46c-2.678 7.959-7.523 22.458-10.792 32.23-3.309 9.811-5.987 18.085-5.987 18.479 0 .355 39.664-7.801 54.552-12.608 7.799-2.481 14.495-4.531 14.889-4.531.354 0 2.048.67 3.742 1.537 14.417 7.25 29.777 11.584 46.124 13.082 6.46.551 19.616.275 25.957-.632 37.577-5.2 69.56-25.965 89.254-57.841 6.42-10.401 12.525-24.901 15.794-37.51 3.112-12.097 4.609-27.108 3.781-38.692-2.127-30.772-14.021-58.038-34.701-79.473-20.048-20.765-45.571-33.609-74.641-37.51-4.254-.552-18.985-1.025-23.633-.709zm15.399 26.95c14.062 1.143 25.604 4.255 37.774 10.205 16.504 8.117 30.329 20.252 40.569 35.698 7.878 11.86 12.723 24.626 14.613 38.574.905 6.62.905 20.016 0 26.793-6.42 47.637-45.729 84.358-93.43 87.353-16.818 1.025-32.455-1.733-47.738-8.432-4.214-1.852-11.186-5.635-13.352-7.211-.67-.512-1.537-.944-1.931-.944-.354 0-8.745 2.56-18.591 5.712-9.847 3.153-17.961 5.714-18 5.635-.079-.079 2.442-7.763 5.553-17.061 3.112-9.339 5.671-17.415 5.671-18.047 0-.63-.708-2.088-1.733-3.545-16.463-23.602-21.82-56.187-13.824-83.807 1.772-5.989 3.229-9.653 6.105-15.367 7.877-15.406 19.891-28.841 34.661-38.692 18.634-12.452 41.912-18.598 63.653-16.864z"/><path d="M213.156 192.632c-.908.277-2.21.908-2.961 1.342-2.014 1.263-7.858 7.499-9.674 10.34-5.804 9.037-7.107 21.074-3.632 32.833 2.645 8.88 5.884 15.667 11.806 24.823 7.501 11.524 12.358 17.759 20.137 25.771 11.687 12.036 21.519 18.784 36.603 25.06 11.134 4.656 19.348 7.301 23.967 7.774 3.197.315 10.187-.79 14.293-2.289 5.686-2.053 12.2-6.63 14.728-10.34 2.527-3.789 5.133-12.353 5.449-18.035l.237-3.75-1.225-1.42c-.869-.947-4.423-3.078-11.609-6.945-17.057-9.155-19.229-10.023-21.913-8.604-.671.316-3.198 2.881-5.566 5.644-7.029 8.17-8.489 9.59-9.675 9.59-1.5 0-11.331-5.012-15.911-8.09-5.331-3.632-8.805-6.552-13.188-11.09-5.212-5.406-10.857-13.141-14.017-19.179l-.711-1.421 2.843-3.117c3.751-3.986 5.29-6.394 6.791-10.577 1.54-4.262 1.461-5.564-.79-11.444-2.014-5.25-3.633-9.59-6.436-17.127-2.291-6.196-3.988-8.722-6.357-9.472-2.251-.671-11.333-.868-13.189-.277z"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><circle fill="#1e1e1e" cx="256" cy="256" r="256"/><g fill="#fff"><ellipse cx="192" cy="256" rx="56" ry="72"/><ellipse cx="320" cy="256" rx="56" ry="72"/></g><g fill="#1e1e1e"><circle cx="208" cy="264" r="20"/><circle cx="336" cy="264" r="20"/></g></svg>
|