Compare commits

..

No commits in common. "main" and "v1.0.0-2" have entirely different histories.

210 changed files with 514 additions and 11876 deletions

1
.envrc
View File

@ -1 +0,0 @@
use flake

3
.github/FUNDING.yml vendored
View File

@ -1,3 +0,0 @@
# These are supported funding model platforms
github: [ymauray, marxjohnson, flexiondotorg]

View File

@ -1,35 +0,0 @@
---
name: Bug report
about: Create a report to help us improve
title: 'bug: description of the bug you encountered'
labels: ''
assignees: ''
---
**I confirm this bug has not already been reported**
- [ ] I have searched the issues and this bug has not been reported previously
**Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
**Expected behavior**
A clear and concise description of what you expected to happen.
**Desktop (please complete the following information):**
- Quickgui Versdion: [e.g 1.2.9]
- OS: [e.g. Ubuntu]
- Version [e.g. 24.04]
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Additional context**
Add any other context about the problem here.

View File

@ -1,23 +0,0 @@
---
name: Feature request
about: Suggest an idea for this project
title: 'feat: describe the feature you are requesting'
labels: ''
assignees: ''
---
**I confirm this feature has not been previously requested**
- [ ] I have searched the issues and this feature has not previously been requested
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
Add any other context or screenshots about the feature request here.

BIN
.github/apple.png vendored

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -1,10 +0,0 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "pub"
directory: "/"
schedule:
interval: "daily"

BIN
.github/logo.png vendored

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

View File

@ -1,34 +0,0 @@
# Description
Please include a summary of the changes along with any relevant motivation and context.
<!-- Delete if not relevant -->
- Closes #
- Fixes #
- Resolves #
## Type of change
<!-- Delete any that are not relevant -->
- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] Packaging (updates the packaging)
- [ ] Documentation (updates the documentation)
# Checklist:
<!-- Delete any that are not relevant -->
- [ ] I have performed a self-review of my code
- [ ] I have tested my code in common scenarios and confirmed there are no regressions
- [ ] I have added comments to my code, particularly in hard-to-understand sections
- [ ] I have made corresponding changes to the documentation
- [ ] I have updated and committed `pubspec.yaml` and `pubspec.lock`
- `flutter pub get`
- [ ] I have updated and committed `pubspec.lock.json` (*required for Nix*)
- `yq eval pubspec.lock -o=json -P > pubspec.lock.json`
*`yq` above is [yq-go](https://github.com/mikefarah/yq)*

BIN
.github/tux.png vendored

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.1 KiB

View File

@ -1,130 +0,0 @@
name: Build Quickgui 🏗️
on:
pull_request:
branches:
- main
paths:
- pubspec.yaml
- assets/**
- lib/**
- linux/**
push:
branches:
- main
paths:
- pubspec.yaml
- assets/**
- lib/**
- linux/**
workflow_dispatch:
# TODO: arm64 runner
# https://github.blog/changelog/2024-06-03-actions-arm-based-linux-and-windows-runners-are-now-in-public-beta/
jobs:
test-build-linux-x64:
runs-on: ubuntu-22.04
steps:
- name: "Checkout 🥡"
uses: actions/checkout@v6
- name: "Install Flutter 🦋"
uses: subosito/flutter-action@v2
with:
channel: stable
architecture: x64
flutter-version-file: pubspec.yaml
- name: "Install dependencies 💾"
run: |
sudo apt-get -y install clang cmake libblkid1 liblzma5 libgtk-3-0 libgtk-3-dev ninja-build pkg-config
- name: Install Flutter dependencies 🦋
run: flutter pub get
- name: Enable Linux Desktop 🐧
run: flutter config --enable-linux-desktop
- name: Build artifacts 🏗️
run: flutter build linux --release
- name: Show artifacts 👀
run: tree build/linux/x64/release/bundle
- name: Upload artifacts ⤴️
uses: actions/upload-artifact@v7
with:
name: Quickgui-${{github.run_number}}-linux-x64
path: build/linux/x64/release/bundle
overwrite: true
test-build-ppa-x64:
runs-on: ubuntu-22.04
steps:
- name: "Checkout 🥡"
uses: actions/checkout@v6
- name: "Install Flutter 🦋"
uses: subosito/flutter-action@v2
with:
channel: stable
architecture: x64
flutter-version-file: pubspec.yaml
- name: "Install dependencies 💾"
run: |
sudo apt-get -y install clang cmake libblkid1 liblzma5 libgtk-3-0 libgtk-3-dev ninja-build pkg-config
sudo apt-get -y install debhelper-compat distro-info dput devscripts rsync
- name: Install Flutter dependencies 🦋
run: flutter pub get
- name: Enable Linux Desktop 🐧
run: flutter config --enable-linux-desktop
- name: Build artifacts 🏗️
run: flutter build linux --release
- name: "Import gpg key 🔑"
uses: crazy-max/ghaction-import-gpg@v7
with:
gpg_private_key: ${{ secrets.PPA_GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.PPA_GPG_PASSPHRASE }}
- name: "Upload to PPA ⤴️"
env:
DEBEMAIL: ${{ secrets.DEBEMAIL }}
DEBFULLNAME: ${{ secrets.DEBFULLNAME }}
run: |
# Version variables
DEB_VER=$(grep "^version" pubspec.yaml | cut -d' ' -f2 | sed 's/+/-/')
TAR_VER=$(grep "^version" pubspec.yaml | cut -d' ' -f2 | sed 's/+.*//')
STAMP=$(date +%y%j.%H%M)
# Create a "fake" orig.tar.xz
mkdir -p ubuntu/build
cp -a build/linux/x64/release/bundle/* ubuntu/build/
cp -a assets/resources/quickgui.desktop ubuntu/build/
for SIZE in 16 32 48 64 128 256 512; do
mkdir -p ubuntu/build/icons/hicolor/${SIZE}x${SIZE}/apps/
cp -av assets/resources/quickgui_${SIZE}.png ubuntu/build/icons/hicolor/${SIZE}x${SIZE}/apps/quickgui.png
done
tar cvf "ubuntu/quickgui_${TAR_VER}.orig.tar" --directory ubuntu/build .
xz -vv -fz "ubuntu/quickgui_${TAR_VER}.orig.tar"
# Make a debian "source" package
mkdir -p ubuntu/build/debian
cp -a linux/packaging/debian/* ubuntu/build/debian/
sed -i 's/Architecture: any/Architecture: amd64/g' ubuntu/build/debian/control
cd ubuntu/build
for CODENAME in $(distro-info --supported); do
rm debian/changelog
dch --package quickgui --newversion="${DEB_VER}~${CODENAME}${STAMP}" --distribution=${CODENAME} "New upstream release." --create
dpkg-buildpackage -d -S -sa
#dput ppa:flexiondotorg/rubbish ../quickgui_${DEB_VER}~${CODENAME}${STAMP}_source.changes
done
- name: Show artifacts 👀
run: tree ubuntu/
test-build-nix-x64:
runs-on: ubuntu-22.04
permissions:
id-token: "write"
contents: "read"
steps:
- name: "Checkout 🥡"
uses: "actions/checkout@v6"
- name: "Install Nix ❄️"
uses: "DeterminateSystems/nix-installer-action@v22"
- name: "Enable Magic Nix Cache 🪄"
uses: "DeterminateSystems/magic-nix-cache-action@v9"
- name: "Build with Nix ❄️"
run: |
nix build .#quickgui
tree ./result

View File

@ -1,21 +0,0 @@
name: Flake ❄️ Checker ✅
on:
push:
branches:
- main
schedule:
- cron: '42 0 * * 6'
workflow_dispatch:
jobs:
flake-checker:
name: Flake Checker
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: DeterminateSystems/nix-installer-action@v22
- uses: DeterminateSystems/magic-nix-cache-action@v9
- uses: DeterminateSystems/flake-checker-action@v12

View File

@ -1,20 +0,0 @@
name: Flake ❄️ Lock 🔒️ Updater ✨
on:
schedule:
- cron: '37 13 14,28 * *'
workflow_dispatch:
jobs:
lock-updater:
name: Flake Lock Updater
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: DeterminateSystems/nix-installer-action@v22
- uses: DeterminateSystems/magic-nix-cache-action@v9
- uses: DeterminateSystems/update-flake-lock@v28
with:
pr-title: "chore: update flake.lock"

View File

@ -1,27 +0,0 @@
name: "Lint Pull Request 🐙"
on:
pull_request_target:
types:
- opened
- edited
- synchronize
permissions:
pull-requests: read
jobs:
main:
name: Validate pull request title
runs-on: ubuntu-22.04
steps:
- uses: amannn/action-semantic-pull-request@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
# If the PR only contains a single commit, the action will validate that
# it matches the configured pattern.
validateSingleCommit: true
# Related to `validateSingleCommit` you can opt-in to validate that the PR
# title matches a single commit to avoid confusion.
validateSingleCommitMatchesPrTitle: true

View File

@ -1,173 +0,0 @@
name: Publish Quickgui 🏷️
# To release a new version:
# - Make sure pubspec.yaml version: has been revved and is in the format "X.Y.Z+n"
# - Create a git tag with the format "X.Y.Z" and push it
# - The build and publish will run automatically if the git tag matches the
# pubspec.yaml version without the +n suffix
on:
push:
tags:
- "v?[0-9]+.[0-9]+.[0-9]+*"
workflow_dispatch:
inputs:
tag:
description: "The existing tag to publish"
type: "string"
required: true
# TODO: arm64 runner
# https://github.blog/changelog/2024-06-03-actions-arm-based-linux-and-windows-runners-are-now-in-public-beta/
jobs:
version-check:
# The git tag and pubspec.yaml version must be identical.
name: "Check versions ⚖️"
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: "Compare App and Git versions 🟰"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
APP_VERSION=$(grep "^version" pubspec.yaml | cut -d' ' -f2 | sed 's/+.*//')
GIT_VERSION=$(git describe --tags | cut -d'-' -f1)
echo "App version: ${APP_VERSION}"
echo "Git version: ${GIT_VERSION}"
if [ "${APP_VERSION}" != "${GIT_VERSION}" ]; then
echo "ERROR! Version mismatch.";
exit 1
fi
publish-linux-x64:
needs: [version-check]
name: "Publish Linux (x64) 🐙"
runs-on: ubuntu-22.04
steps:
- name: "Checkout 🥡"
uses: actions/checkout@v6
- name: "Install Flutter 🦋"
uses: subosito/flutter-action@v2
with:
channel: stable
architecture: x64
flutter-version-file: pubspec.yaml
- name: Install system dependencies 📦️
run: |
sudo apt-get -y install clang cmake libblkid1 liblzma5 libgtk-3-0 libgtk-3-dev ninja-build pkg-config
- name: Install Flutter dependencies 🦋
run: flutter pub get
- name: Activate flutter_distributor 🚀
run: dart pub global activate flutter_distributor
- name: Build AppImage 🐧
run: |
sudo apt-get -y install libfuse-dev locate
wget -q "https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage" -O /usr/local/bin/appimagetool
chmod +x /usr/local/bin/appimagetool
flutter_distributor package --platform=linux --targets=appimage
- name: Build .deb 🍥
run: |
sudo apt-get -y install dpkg
flutter_distributor package --platform=linux --targets=deb
- name: Build .rpm 🎩
run: |
sudo apt-get -y install patchelf rpm
flutter_distributor package --platform=linux --targets=rpm
- name: Build .zip 🤐
run: flutter_distributor package --platform=linux --targets=zip
- name: Show artifacts 👀
run: tree dist/
- name: "Publish Release 📤️"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
REL_VER=$(grep "^version" pubspec.yaml | cut -d' ' -f2)
gh release create "${{ github.ref }}" --draft --generate-notes
for PKG in AppImage deb rpm zip; do
gh release upload "${{ github.ref }}" "dist/${REL_VER}/quickgui-${REL_VER}-linux.${PKG}" --clobber
done
if [ "$(gh release view "${{ github.ref }}" --json assets --template '{{len .assets}}')" -lt 0 ]; then
exit 1
fi
gh release edit "${{ github.ref }}" --draft=false
publish-flakehub:
needs: [version-check]
name: "Publish FlakeHub ❄️"
runs-on: "ubuntu-22.04"
permissions:
id-token: "write"
contents: "read"
steps:
- uses: "actions/checkout@v6"
with:
ref: "${{ (inputs.tag != null) && format('refs/tags/{0}', inputs.tag) || '' }}"
- uses: "DeterminateSystems/nix-installer-action@v22"
- uses: "DeterminateSystems/magic-nix-cache-action@v9"
- uses: "DeterminateSystems/flakehub-push@v6"
with:
visibility: "public"
name: "quickemu-project/quickgui"
tag: "${{ inputs.tag }}"
publish-ppa-x64:
needs: [version-check]
name: "Publish PPA (x64) 🟠"
runs-on: ubuntu-22.04
steps:
- name: "Checkout 🥡"
uses: actions/checkout@v6
- name: "Install Flutter 🦋"
uses: subosito/flutter-action@v2
with:
channel: stable
architecture: x64
flutter-version-file: pubspec.yaml
- name: "Install dependencies 💾"
run: |
sudo apt-get -y install clang cmake libblkid1 liblzma5 libgtk-3-0 libgtk-3-dev ninja-build pkg-config
sudo apt-get -y install debhelper-compat distro-info dput devscripts rsync
- name: Install Flutter dependencies 🦋
run: flutter pub get
- name: Enable Linux Desktop 🐧
run: flutter config --enable-linux-desktop
- name: Build artifacts 🏗️
run: flutter build linux --release
- name: "Import gpg key 🔑"
uses: crazy-max/ghaction-import-gpg@v7
with:
gpg_private_key: ${{ secrets.PPA_GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.PPA_GPG_PASSPHRASE }}
- name: "Upload to PPA ⤴️"
env:
DEBEMAIL: ${{ secrets.DEBEMAIL }}
DEBFULLNAME: ${{ secrets.DEBFULLNAME }}
run: |
# Version variables
DEB_VER=$(grep "^version" pubspec.yaml | cut -d' ' -f2 | sed 's/+/-/')
TAR_VER=$(grep "^version" pubspec.yaml | cut -d' ' -f2 | sed 's/+.*//')
STAMP=$(date +%y%j.%H%M)
# Create a "fake" orig.tar.xz
mkdir -p ubuntu/build
cp -a build/linux/x64/release/bundle/* ubuntu/build/
cp -a assets/resources/quickgui.desktop ubuntu/build/
for SIZE in 16 32 48 64 128 256 512; do
mkdir -p ubuntu/build/icons/hicolor/${SIZE}x${SIZE}/apps/
cp -av assets/resources/quickgui_${SIZE}.png ubuntu/build/icons/hicolor/${SIZE}x${SIZE}/apps/quickgui.png
done
tar cvf "ubuntu/quickgui_${TAR_VER}.orig.tar" --directory ubuntu/build .
xz -vv -fz "ubuntu/quickgui_${TAR_VER}.orig.tar"
# Make a debian "source" package
mkdir -p ubuntu/build/debian
cp -a linux/packaging/debian/* ubuntu/build/debian/
sed -i 's/Architecture: any/Architecture: amd64/g' ubuntu/build/debian/control
cd ubuntu/build
for CODENAME in $(distro-info --supported); do
rm debian/changelog
dch --package quickgui --newversion="${DEB_VER}~${CODENAME}${STAMP}" --distribution=${CODENAME} "New upstream release." --create
dpkg-buildpackage -d -S -sa
dput ppa:flexiondotorg/quickemu ../quickgui_${DEB_VER}~${CODENAME}${STAMP}_source.changes
done
- name: Show artifacts 👀
run: tree ubuntu/

12
.gitignore vendored
View File

@ -2,10 +2,10 @@
# Files and directories created by pub
.dart_tool/
.direnv/
.packages
build/
dist/
# If you're building an application, you may want to check-in your pubspec.lock
pubspec.lock
# Directory created by dartdoc
# If you don't generate documentation locally you can remove this line.
@ -26,11 +26,3 @@ doc/api/
web/
ios/
android/
windows/
list.csv
*.xz
*.iso
*.conf
*.mo
RELEASING.md
BUILDING.md

View File

@ -4,27 +4,7 @@
# This file should be version controlled and should not be manually edited.
version:
revision: "761747bfc538b5af34aa0d3fac380f1bc331ec49"
channel: "stable"
revision: 3595343e20a61ff16d14e8ecc25f364276bb1b8b
channel: stable
project_type: app
# Tracks metadata for the flutter migrate command
migration:
platforms:
- platform: root
create_revision: 761747bfc538b5af34aa0d3fac380f1bc331ec49
base_revision: 761747bfc538b5af34aa0d3fac380f1bc331ec49
- platform: macos
create_revision: 761747bfc538b5af34aa0d3fac380f1bc331ec49
base_revision: 761747bfc538b5af34aa0d3fac380f1bc331ec49
# User provided section
# List of Local paths (relative to this file) that should be
# ignored by the migrate tool.
#
# Files that are not part of the templates will be ignored by default.
unmanaged_files:
- 'lib/main.dart'
- 'ios/Runner.xcodeproj/project.pbxproj'

View File

@ -1,7 +0,0 @@
{
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
},
"cmake.sourceDirectory": "${workspaceFolder}/linux"
}

1
BUILDING.md Normal file
View File

@ -0,0 +1 @@
flutter pub add window_size --git-url git://github.com/google/flutter-desktop-embedding.git --git-path plugins/window_size

View File

@ -1,128 +0,0 @@
# Contributor Covenant Code of Conduct
## Our Pledge
We as members, contributors, and leaders pledge to make participation in our
community a harassment-free experience for everyone, regardless of age, body
size, visible or invisible disability, ethnicity, sex characteristics, gender
identity and expression, level of experience, education, socio-economic status,
nationality, personal appearance, race, religion, or sexual identity
and orientation.
We pledge to act and interact in ways that contribute to an open, welcoming,
diverse, inclusive, and healthy community.
## Our Standards
Examples of behavior that contributes to a positive environment for our
community include:
* Demonstrating empathy and kindness toward other people
* Being respectful of differing opinions, viewpoints, and experiences
* Giving and gracefully accepting constructive feedback
* Accepting responsibility and apologizing to those affected by our mistakes,
and learning from the experience
* Focusing on what is best not just for us as individuals, but for the
overall community
Examples of unacceptable behavior include:
* The use of sexualized language or imagery, and sexual attention or
advances of any kind
* Trolling, insulting or derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or email
address, without their explicit permission
* Other conduct which could reasonably be considered inappropriate in a
professional setting
## Enforcement Responsibilities
Community leaders are responsible for clarifying and enforcing our standards of
acceptable behavior and will take appropriate and fair corrective action in
response to any behavior that they deem inappropriate, threatening, offensive,
or harmful.
Community leaders have the right and responsibility to remove, edit, or reject
comments, commits, code, wiki edits, issues, and other contributions that are
not aligned to this Code of Conduct, and will communicate reasons for moderation
decisions when appropriate.
## Scope
This Code of Conduct applies within all community spaces, and also applies when
an individual is officially representing the community in public spaces.
Examples of representing our community include using an official e-mail address,
posting via an official social media account, or acting as an appointed
representative at an online or offline event.
## Enforcement
Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported to the community leaders responsible for enforcement at
#quickemu channel on Discord.
All complaints will be reviewed and investigated promptly and fairly.
All community leaders are obligated to respect the privacy and security of the
reporter of any incident.
## Enforcement Guidelines
Community leaders will follow these Community Impact Guidelines in determining
the consequences for any action they deem in violation of this Code of Conduct:
### 1. Correction
**Community Impact**: Use of inappropriate language or other behavior deemed
unprofessional or unwelcome in the community.
**Consequence**: A private, written warning from community leaders, providing
clarity around the nature of the violation and an explanation of why the
behavior was inappropriate. A public apology may be requested.
### 2. Warning
**Community Impact**: A violation through a single incident or series
of actions.
**Consequence**: A warning with consequences for continued behavior. No
interaction with the people involved, including unsolicited interaction with
those enforcing the Code of Conduct, for a specified period of time. This
includes avoiding interactions in community spaces as well as external channels
like social media. Violating these terms may lead to a temporary or
permanent ban.
### 3. Temporary Ban
**Community Impact**: A serious violation of community standards, including
sustained inappropriate behavior.
**Consequence**: A temporary ban from any sort of interaction or public
communication with the community for a specified period of time. No public or
private interaction with the people involved, including unsolicited interaction
with those enforcing the Code of Conduct, is allowed during this period.
Violating these terms may lead to a permanent ban.
### 4. Permanent Ban
**Community Impact**: Demonstrating a pattern of violation of community
standards, including sustained inappropriate behavior, harassment of an
individual, or aggression toward or disparagement of classes of individuals.
**Consequence**: A permanent ban from any sort of public interaction within
the community.
## Attribution
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
version 2.0, available at
https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
Community Impact Guidelines were inspired by [Mozilla's code of conduct
enforcement ladder](https://github.com/mozilla/diversity).
[homepage]: https://www.contributor-covenant.org
For answers to common questions about this code of conduct, see the FAQ at
https://www.contributor-covenant.org/faq. Translations are available at
https://www.contributor-covenant.org/translations.

View File

@ -1,9 +0,0 @@
# Contributing
We welcome contributions to Quickgui.
- Help other Quickgui users by answering questions in the [Quickgui Discussions](https://github.com/quickemu-project/discussions/categories/quickgui) 🛟
- Improve the documentation in [this README](https://github.com/quickemu-project/quickgui/edit/master/README.md) and the [Quickgui Wiki](https://github.com/quickemu-project/quickgui/wiki) 📖
- File bug reports and feature requests in the [Quickgui Issues](https://github.com/quickemu-project/quickgui/issues) 📁
- Submit [Quickgui Pull requests](https://github.com/quickemu-project/quickgui/pulls) to fix bugs 🐞 or add new features ✨
- Commit messages must [conform to the Conventional Commits specification](https://www.conventionalcommits.org/).

21
LICENSE
View File

@ -1,21 +0,0 @@
MIT License
Copyright (c) 2021 Quickemu Project
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

171
README.md
View File

@ -1,167 +1,54 @@
<div align="center">
<img src=".github/logo.png" alt="Quickgui" width="256" />
# Guickgui
# Quickgui
A new Flutter frontend for Quickget.
**An elegant virtual machine manager for the desktop**
**Made with 💝 for <img src=".github/tux.png" align="top" width="24" alt="Tux (Linux)"/>**
<!--& <img src=".github/apple.png" align="top" width="24" alt="Apple (macOS)"/>-->
</div>
## Build
<p align="center">
&nbsp;<a href="https://wimpysworld.io/discord" target="_blank"><img alt="Discord" src="https://img.shields.io/discord/712850672223125565?style=for-the-badge&logo=discord&logoColor=%23ffffff&label=Discord&labelColor=%234253e8&color=%23e4e2e2"></a>
</p>
* [Set up Flutter](https://ubuntu.com/blog/getting-started-with-flutter-on-ubuntu)
* Clone this repo,
* Switch to the project's directory,
* Build the project.
# Introduction
Quickgui is a graphical user interface for the [Quickemu](https://github.com/quickemu-project/quickemu) virtual machine manager.
Quickgui enables you to create and manage virtual machines from a simple and elegant interface.
Nearly 1000 operating systems supported including Windows, macOS, BSDs, and 100s of Linux distros. All with automated downloads and configuration.
# Install
Quickgui depends on Quickemu. Most package managers will automatically install Quickemu when you install Quickgui.
If you don't have Quickemu installed then go and follow the Quickemu installation steps for your operating system:
- [**Quickemu Installation**](https://github.com/quickemu-project/quickemu/wiki/01-Installation)
## Debian
A .deb package is available for Debian on our [release page](https://github.com/quickemu-project/quickgui/releases).
- Download the latest .deb package
- Install it with `apt-get install ./quickgui-1.2.10+1-linux.deb`
## Fedora
A .rpm package is available for Fedora on our [release page](https://github.com/quickemu-project/quickgui/releases).
## NixOS
### Flake
[![FlakeHub](https://img.shields.io/endpoint?url=https://flakehub.com/f/quickemu-project/quickgui/badge)](https://flakehub.com/flake/quickemu-project/quickgui)
Stable releases of Quickgui are published to FlakeHub for NixOS users. See the Quickemu flake on FlakeHub for more details:
- <https://flakehub.com/flake/quickemu-project/quickgui>
### Nixpkgs
Add Quickgui to your `systemPackages`. For example:
```nix
systemPackages = with pkgs; [
quickgui
];
```
## Ubuntu
Ubuntu users can install Quickgui using the [.deb package described above for Debian](#debian) or from our PPA.
```shell
sudo apt-add-repository ppa:flexiondotorg/quickemu
sudo apt-get update
sudo apt-get install quickgui
```
## Other Linux
We provide an AppImage and a pre-compiled binary of Quickemu in a .zip file.
### AppImage
The AppImage should work on most Linux distributions.
* [Download](https://github.com/quickemu-project/quickgui/releases) the latest AppImage.
* `chmod +x quickgui-1.2.10+1-linux.AppImage`
* `./quickgui-1.2.10+1-linux.AppImage`
### Pre-compiled binary
* [Download](https://github.com/quickemu-project/quickgui/releases) the latest .zip file.
* `unzip quickgui-1.2.10+1-linux.zip`
* `cd quickgui-1.2.10+1-linux`
* `chmod +x quickgui`
* `./quickgui`
# Compile
To compile the Quickgui yourself:
* [Install Flutter](https://docs.flutter.dev/get-started/install/linux/desktop)
* `git clone https://github.com/quickemu-project/quickgui.git`
* `cd quickgui`
* `flutter pub get`
* `flutter config --enable-linux-desktop`
* `flutter build linux --release`
## Macos
This requires flutter to be installed as well as xcode development for macos nad cocoapods.
It will install quickgui app in the applications and after running the command below you should be able to search for it through spotlight
```bash
git clone https://github.com/quickemu-project/quickgui.git
cd quickgui
flutter pub get
flutter config --enable-macos-desktop
flutter build macos --release
$ git clone https://github.com/ymauray/quickgui.git
$ cd quickgui
$ flutter build linux --release
```
The compiled binary will be in `build/linux/x64/release/bundle/quickgui`.
You can run it with:
## Run
```shell
./build/linux/x64/release/bundle/quickgui
* From the project's folder, start the binary with :
```
$ ./build/linux/x64/release/bundle/quickgui
```
# Usage
Alternativelly, use `update-alternatives` to install `quickgui` system-wide :
<div align="center">
<small><b>Main Screen</b></small><br /><br />
<img src="assets/github/screenshot_01_main.png" width="346" height="290" alt="Quickgui Main screen">
</div>
```bash
sudo update-alternatives --install /usr/local/bin/quickgui quickgui /opt/flutter-projects/quickgui/build/linux/x64/release/bundle/quickgui 50
```
## Downloader
## Usage
- From the main screen, click "Create new machines"
- Select the Operating System you want to install
- Select the Version of the operating system you want to use.
- Click the "Download" button.
- The ISO will be downloaded
- When the download is complete, click the "Dismiss" button.
From the main screen, select the operating system you want to use :
<div align="center">
<small><b>Downloader</b></small><br />
<img src="assets/github/screenshot_02_downloader.png" width="346" height="290" alt="Quickgui Downloader">
</div>
## Manager
![Main screen](./assets/github/screenshot1.png)
- From the main screen, click "Manage existing machines"
- The Manager screen will list available Quickemu VMs in the directory you have chosen to store them.
- Start a VM by clicking the "Play" (▶) button.
- Kill a running VM by clicking the "Stop" (■) button.
- Clicking the "Trash" (🗑) button will prompt you to delete the whole VM or just its disk image.
![List of supported operating systems](./assets/github/screenshot2.png)
<div align="center">
<small><b>Manager</b></small><br />
<img src="assets/github/screenshot_03_manager.png" width="346" height="290" alt="Quickgui Manager">
</div>
![The Ubuntu flavors](./assets/github/screenshot3.png)
When a VM is running, Quickgui will display the host ports that are mapped to the SPICE and SSH ports on the guest. These ports are used to connect to the guest for display and SSH access.
Then, select the version :
### SPICE
![Main screen after selection of the operating system](./assets/github/screenshot4.png)
If you close the SPICE display and wish to reconnect, you can click the "Connect display with SPICE" button. To open an SSH session, you can click the "Connect with SSH" button.
![Versions of the selected operating system](./assets/github/screenshot5.png)
If the "Connect display with SPICE" button is disabled, the `spicy` client cannot be found. Ensure it is installed, and in your PATH (it should have been installed with `quickemu`).
Then click "Download". The ISO will be downloaded in the current working directory, in 99% of cases that will be the directory where `quickgui` was invoked from. The spinner will tell you where the file is being downloaded.
### SSH
![All set !](./assets/github/screenshot6.png)
If the "Connect with SSH" button is disabled, an SSH server cannot be detected on the guest. Most guest operating systems will not install an SSH server by default, so if it was not an option during installation, you will need to install one yourself. It must be listening on port 22 (the default SSH port). Once a server is installed and running, it should be detected automatically.
![Downloading](./assets/github/screenshot7.png)
"Connect with SSH" will open a terminal and attempt to connect to the guest. If the connection is successful, you will be prompted for the password. If the connection is unsuccessful, you might need to remove the host key for the guest from your `~/.ssh/known_hosts` file using something like `ssh-keygen -R [localhost]:22220`.

View File

@ -1,18 +0,0 @@
# Security Policy
## Supported Versions
Here are the versions of Quickgui currently being supported with security updates.
| Version | Supported |
| ------- | ------------------ |
| 1.2.x | :white_check_mark: |
| < 1.1 | :x: |
## Reporting a Vulnerability
If you discover a vulnerability in Quickgui then [file an issue](https://github.com/quickemu-project/quickgui/issues/new) and click *Report a vulnerability*.
- Quickgui is a spare-time hobby project.
- We do not have SLAs for responding to security issues.
- It is a best-efforts basis.

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

View File

@ -1,128 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2021-09-29 09:59+0200\n"
"PO-Revision-Date: 2021-12-06 05:30+0100\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.0\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n>=2 && n<=4 ? 1 : 2);\n"
"Last-Translator: \n"
"Language: cs_CZ\n"
msgid "Quickgui : a Flutter frontend for Quickget and Quickemu"
msgstr "Quickgui: Flutter frontend pro Quickget a Quickemu"
msgid "Main menu"
msgstr "Hlavní menu"
msgid "Use dark mode"
msgstr "Použít tmavý režim"
msgid "Cancel"
msgstr "Zrušit"
msgid "Click to use SPICE display"
msgstr "Kliknout pro použití SPICE obrazovky"
msgid "Create new machines"
msgstr "Vytvořit nové virtuální stroje"
msgid "Dismiss"
msgstr "Zavřít"
msgid "Done !"
msgstr "Hotovo!"
msgid "Download"
msgstr "Stáhnout"
msgid "Download finished."
msgstr "Stahování bylo dokončeno."
msgid "Downloader"
msgstr "Správce stahování"
msgid "Downloading (no progress available)..."
msgstr "Probíhá stahování (průběh není k dispozici) …"
msgid "Downloading... {0}%"
msgstr "Probíhá stahování … {0}%"
msgid "Downloading {0}"
msgstr "Probíhá stahování {0}"
msgid "Download complete"
msgstr "Stahování bylo dokončeno"
msgid "Download of {0} has completed."
msgstr "Stažení {0} bylo dokončeno."
msgid "Manage existing machines"
msgstr "Správa existujících virtuálních strojů"
msgid "Manager"
msgstr "Správce virtuálních strojů"
msgid "{0} Mbs downloaded"
msgstr "Staženo {0} MB"
msgid "Now run {0} to start the VM"
msgstr "Nyní spustíme {0} aby došlo ke startu VM"
msgid "OK"
msgstr "OK"
msgid "Operating system"
msgstr "Operační systém"
msgid "Search operating system"
msgstr "Hledat operační systém"
msgid "Search option"
msgstr "Možnosti hledání"
msgid "Select operating system"
msgstr "Zvolit operační systém"
msgid "Select option"
msgstr "Zvolit možnost"
msgid "Select version for {0}"
msgstr "Vybrat verzi pro {0}"
msgid "Select..."
msgstr "Vybrat …"
msgid "SPICE port"
msgstr "SPICE port"
msgid "SSH port"
msgstr "SSH port"
msgid "Stop The Virtual Machine?"
msgstr "Zastavit virtuální stroj?"
msgid "Target folder : {0}"
msgstr "Cílová složka: {0}"
msgid "Use SPICE display"
msgstr "Použít obrazovku SPICE"
msgid "Using SPICE display"
msgstr "Používá se obrazovka SPICE"
msgid "Version"
msgstr "Verze"
msgid "Waiting for download to start"
msgstr "Čeká se na zahájení stahování"
msgid "You are about to terminate the virtual machine {0}"
msgstr "Chystáte se ukončit virtuální stroj {0}"
msgid "Download cancelled"
msgstr "Stahování bylo zrušeno"

View File

@ -1,134 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: quickgui\n"
"POT-Creation-Date: 2021-09-29 09:59+0200\n"
"PO-Revision-Date: 2021-12-03 00:05+0000\n"
"Last-Translator: \n"
"Language-Team: Welsh\n"
"Language: cy\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.0\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))));\n"
"Language: cy\n"
"X-Crowdin-Project: quickgui\n"
"X-Crowdin-Project-ID: 485591\n"
"X-Crowdin-Language: cy\n"
"X-Crowdin-File: quickgui.pot\n"
"X-Crowdin-File-ID: 1\n"
msgid "Quickgui : a Flutter frontend for Quickget and Quickemu"
msgstr "Quickgui: ffryntiad Flutter ar gyfer Quickget a Quickemu"
msgid "Main menu"
msgstr "Prif ddewislen"
msgid "Use dark mode"
msgstr "Defnyddiwch y modd tywyll"
msgid "Cancel"
msgstr "Canslo"
msgid "Click to use SPICE display"
msgstr "Click ddefnyddio'r arddangosfa SPICE"
msgid "Create new machines"
msgstr "Creu peiriannau newydd"
msgid "Dismiss"
msgstr "Diswyddo"
msgid "Done !"
msgstr "Wedi'i wneud!"
msgid "Download"
msgstr "Lawrlwytho"
msgid "Download finished."
msgstr "Lawrlwytho wedi'i orffen."
msgid "Downloader"
msgstr "Dadlwythwr"
msgid "Downloading (no progress available)..."
msgstr "Llwytho i lawr (dim cynnydd ar gael)..."
msgid "Downloading... {0}%"
msgstr "Llwytho i lawr... {0}%"
msgid "Downloading {0}"
msgstr "Llwytho i lawr {0}"
msgid "Download cancelled"
msgstr "Lawrlwytho wedi'i ganslo"
msgid "Download complete"
msgstr "Lawrlwytho wedi'i gwblhau"
msgid "Download of {0} has completed."
msgstr "Mae lawrlwytho o {0} wedi'i gwblhau."
msgid "Manage existing machines"
msgstr "Rheoli peiriannau sy'n bodoli eisoes"
msgid "Manager"
msgstr "Rheolwr"
msgid "{0} Mbs downloaded"
msgstr "{0} Mbs wedi'i lawrlwytho"
msgid "Now run {0} to start the VM"
msgstr "Nawr gweithredwch {0} i ddechrau'r PR"
msgid "OK"
msgstr "Iawn"
msgid "Operating system"
msgstr "System weithredu"
msgid "Search operating system"
msgstr "Chwilio system weithredu"
msgid "Search option"
msgstr "Chwilio am opsiwn"
msgid "Select operating system"
msgstr "Dewiswch system weithredu"
msgid "Select option"
msgstr "Dewiswch opsiwn"
msgid "Select version for {0}"
msgstr "Dewiswch fersiwn ar gyfer {0}"
msgid "Select..."
msgstr "Dewiswch..."
msgid "SPICE port"
msgstr "Porthladd SPICE"
msgid "SSH port"
msgstr "Porthladd SSH"
msgid "Stop The Virtual Machine?"
msgstr "Stopiwch y Peiriant Rhithwir?"
msgid "Target folder : {0}"
msgstr "Ffolder targed: {0}"
msgid "Use SPICE display"
msgstr "Defnyddiwch arddangosfa SPICE"
msgid "Using SPICE display"
msgstr "Gan ddefnyddio arddangosfa SPICE"
msgid "Version"
msgstr "Fersiwn"
msgid "Waiting for download to start"
msgstr "Aros i'r lawrlwytho ddechrau"
msgid "You are about to terminate the virtual machine {0}"
msgstr "Rydych chi ar fin terfynu'r peiriant rhithwir {0}"

View File

@ -1,129 +0,0 @@
# Philipp Kiemle <philipp.kiemle@gmail.com>, 2021.
msgid ""
msgstr ""
"Project-Id-Version: quickgui\n"
"POT-Creation-Date: 2021-09-29 09:59+0200\n"
"PO-Revision-Date: 2021-12-02 20:24+0000\n"
"Last-Translator: Philipp Kiemle <philipp.kiemle@gmail.com>\n"
"Language-Team: German <philipp.kiemle@gmail.com>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.0\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
msgid "Quickgui : a Flutter frontend for Quickget and Quickemu"
msgstr "Quickgui: Ein Flutter-Frontend für Quickget und Quickemu"
msgid "Main menu"
msgstr "Hauptmenü"
msgid "Use dark mode"
msgstr "Den dunklen Modus verwenden"
msgid "Cancel"
msgstr "Abbrechen"
msgid "Click to use SPICE display"
msgstr "Klicken, um SPICE-Display zu nutzen"
msgid "Create new machines"
msgstr "Neue virtuelle Maschinen erstellen"
msgid "Dismiss"
msgstr "Verwerfen"
msgid "Done !"
msgstr "Fertig!"
msgid "Download"
msgstr "Herunterladen"
msgid "Download finished."
msgstr "Herunterladen abgeschlossen."
msgid "Downloader"
msgstr "Downloader"
msgid "Downloading (no progress available)..."
msgstr "Lädt herunter (Kein Fortschritt verfügbar) …"
msgid "Downloading... {0}%"
msgstr "Herunterladen … {0}%"
msgid "Downloading {0}"
msgstr "{0} wird herunterladen"
msgid "Download cancelled"
msgstr "Download abgebrochen"
msgid "Download complete"
msgstr "Download abgeschlossen"
msgid "Download of {0} has completed."
msgstr "Download von {0} abgeschlossen."
msgid "Manage existing machines"
msgstr "Bestehende Maschinen verwalten"
msgid "Manager"
msgstr "Manager"
msgid "{0} Mbs downloaded"
msgstr "{0} MB heruntergeladen"
msgid "Now run {0} to start the VM"
msgstr "Now run {0} um die VM zu starten"
msgid "OK"
msgstr "OK"
msgid "Operating system"
msgstr "Betriebssystem"
msgid "Search operating system"
msgstr "Betriebssystem suchen"
msgid "Search option"
msgstr "Suchoptionen"
msgid "Select operating system"
msgstr "Betriebssystem auswählen"
msgid "Select option"
msgstr "Option auswählen"
msgid "Select version for {0}"
msgstr "Version für {0} auswählen"
msgid "Select..."
msgstr "Auswählen …"
msgid "SPICE port"
msgstr "SPICE-Port"
msgid "SSH port"
msgstr "SSH-Port"
msgid "Stop The Virtual Machine?"
msgstr "Die virtuelle Maschine stoppen?"
msgid "Target folder : {0}"
msgstr "Zielverzeichnis: {0}"
msgid "Use SPICE display"
msgstr "SPICE-Display verwenden"
msgid "Using SPICE display"
msgstr "SPICE-Display wird verwendet"
msgid "Version"
msgstr "Version"
msgid "Waiting for download to start"
msgstr "Warten auf den Beginn des Downloads"
msgid "You are about to terminate the virtual machine {0}"
msgstr "Sie sind dabei, die virtuelle Maschine {0} zu beenden"

View File

@ -1,198 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: quickgui\n"
"POT-Creation-Date: 2021-09-29 09:59+0200\n"
"PO-Revision-Date: 2022-11-11 15:42+0100\n"
"Last-Translator: Yannick Mauray\n"
"Language-Team: \n"
"Language: en\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.1.1\n"
"X-Poedit-Basepath: .\n"
msgid "Quickgui : a Flutter frontend for Quickget and Quickemu"
msgstr "Quickgui : a Flutter frontend for Quickget and Quickemu"
msgid "Main menu"
msgstr "Main menu"
msgid "Use dark mode"
msgstr "Use dark mode"
msgid "Cancel"
msgstr "Cancel"
msgid "Click to use SPICE display"
msgstr "Click to use SPICE display"
msgid "Create new machines"
msgstr "Create new machines"
msgid "Dismiss"
msgstr "Dismiss"
msgid "Done !"
msgstr "Done !"
msgid "Download"
msgstr "Download"
msgid "Download finished."
msgstr "Download finished."
msgid "Downloader"
msgstr "Downloader"
msgid "Downloading (no progress available)..."
msgstr "Downloading (no progress available)..."
msgid "Downloading... {0}%"
msgstr "Downloading... {0}%"
msgid "Downloading {0}"
msgstr "Downloading {0}"
msgid "Download cancelled"
msgstr "Download canceled"
msgid "Download complete"
msgstr "Download complete"
msgid "Download of {0} has completed."
msgstr "Download of {0} has completed."
msgid "Download of {0} has been cancelled."
msgstr "Download of {0} has been canceled."
msgid "Manage existing machines"
msgstr "Manage existing machines"
msgid "Manager"
msgstr "Manager"
msgid "{0} Mbs downloaded"
msgstr "{0} Mbs downloaded"
msgid "Now run {0} to start the VM"
msgstr "Now run {0} to start the VM"
msgid "OK"
msgstr "OK"
msgid "Operating system"
msgstr "Operating system"
msgid "Search operating system"
msgstr "Search operating system"
msgid "Search option"
msgstr "Search option"
msgid "Select operating system"
msgstr "Select operating system"
msgid "Select option"
msgstr "Select option"
msgid "Select version for {0}"
msgstr "Select version for {0}"
msgid "Select..."
msgstr "Select..."
msgid "SPICE port"
msgstr "SPICE port"
msgid "SSH port"
msgstr "SSH port"
msgid "Stop The Virtual Machine?"
msgstr "Stop The Virtual Machine?"
msgid "Target folder : {0}"
msgstr "Target folder : {0}"
msgid "Use SPICE display"
msgstr "Use SPICE display"
msgid "Using SPICE display"
msgstr "Using SPICE display"
msgid "Version"
msgstr "Version"
msgid "Waiting for download to start"
msgstr "Waiting for download to start"
msgid "You are about to terminate the virtual machine {0}"
msgstr "You are about to terminate the virtual machine {0}"
msgid "Language"
msgstr "Language"
msgid "Directory where the machines are stored"
msgstr "Directory where the machines are stored"
msgid "Search version"
msgstr "Search version"
msgid "quickemu was not found in your PATH"
msgstr "quickemu was not found in your PATH"
msgid "Please install it and try again."
msgstr "Please install it and try again."
msgid "See"
msgstr "See"
msgid "for more information"
msgstr "for more information"
msgid "Delete {0}"
msgstr "Delete {0}"
msgid "You are about to delete {0}. This cannot be undone. Would you like to delete the disk image but keep the configuration, or delete the whole VM?"
msgstr "You are about to delete {0}. This cannot be undone. Would you like to delete the disk image but keep the configuration, or delete the whole VM?"
msgid "Delete disk image"
msgstr "Delete disk image"
msgid "Delete whole VM"
msgstr "Delete whole VM"
msgid "Connect display with SPICE"
msgstr "Connect display with SPICE"
msgid "SPICE client not found"
msgstr "SPICE client not found"
msgid "Connect with SSH"
msgstr "Connect with SSH"
msgid "SSH server not detected on guest"
msgstr "SSH server not detected on guest"
msgid "Launch SSH connection to {0}"
msgstr "Launch SSH connection to {0}"
msgid "SSH username"
msgstr "SSH username"
# Connect to the VM via SSH
msgid "Connect"
msgstr "Connect"
msgid "Loading available downloads"
msgstr "Loading available downloads"
msgid "Powered by"
msgstr "Powered by"
msgid "Error"
msgstr "Error"
msgid "Could not write to the working directory. Please check the permissions."
msgstr "Could not write to the working directory. Please check the permissions."

View File

@ -1,166 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: quickgui\n"
"POT-Creation-Date: 2021-09-29 09:59+0200\n"
"PO-Revision-Date: 2021-12-19 19:23+0100\n"
"Last-Translator: José Miguel Manzano\n"
"Language-Team: \n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.0\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#, fuzzy
msgid "Quickgui : a Flutter frontend for Quickget and Quickemu"
msgstr "Quickgui : una aplicación Flutter para Quickget y Quickemu"
#, fuzzy
msgid "Main menu"
msgstr "Menu principal"
#, fuzzy
msgid "Use dark mode"
msgstr "Utilizar el modo oscuro"
#, fuzzy
msgid "Cancel"
msgstr "Cancelar"
#, fuzzy
msgid "Click to use SPICE display"
msgstr "Pulsa para utilizar SPICE display"
#, fuzzy
msgid "Create new machines"
msgstr "Crear nuevas máquinas"
#, fuzzy
msgid "Dismiss"
msgstr "Descartar"
#, fuzzy
msgid "Done !"
msgstr "Hecho !"
#, fuzzy
msgid "Download"
msgstr "Descargar"
#, fuzzy
msgid "Download finished."
msgstr "Descarga completa."
#, fuzzy
msgid "Downloader"
msgstr "Descargas"
#, fuzzy
msgid "Downloading (no progress available)..."
msgstr "Descargando (progreso no disponible)..."
#, fuzzy
msgid "Downloading... {0}%"
msgstr "Descargando... {0}%"
#, fuzzy
msgid "Downloading {0}"
msgstr "Descargando {0}"
#, fuzzy
msgid "Download complete"
msgstr "Descarga completa"
#, fuzzy
msgid "Download of {0} has completed."
msgstr "La descarga de {0} se ha completado."
#, fuzzy
msgid "Manage existing machines"
msgstr "Gestionar máquinas existentes"
#, fuzzy
msgid "Manager"
msgstr "Gestionar"
#, fuzzy
msgid "{0} Mbs downloaded"
msgstr "{0} Mbs descargados"
#, fuzzy
msgid "Now run {0} to start the VM"
msgstr "Ahora ejecuta {0} para iniciar la VM"
#, fuzzy
msgid "OK"
msgstr "OK"
#, fuzzy
msgid "Operating system"
msgstr "Sistema operativo"
#, fuzzy
msgid "Search operating system"
msgstr "Buscar sistema operativo"
#, fuzzy
msgid "Search option"
msgstr "Opción de busqueda"
#, fuzzy
msgid "Select operating system"
msgstr "Selecciona sistema operativo"
#, fuzzy
msgid "Select option"
msgstr "Selecciona opción"
#, fuzzy
msgid "Select version for {0}"
msgstr "Selecciona versión para {0}"
#, fuzzy
msgid "Select..."
msgstr "Selecciona..."
#, fuzzy
msgid "SPICE port"
msgstr "Puerto SPICE"
#, fuzzy
msgid "SSH port"
msgstr "Puerto SSH"
#, fuzzy
msgid "Stop The Virtual Machine?"
msgstr "¿Detener la Máquina Virtual?"
#, fuzzy
msgid "Target folder : {0}"
msgstr "Directorio de destino : {0}"
#, fuzzy
msgid "Use SPICE display"
msgstr "Usar SPICE display"
#, fuzzy
msgid "Using SPICE display"
msgstr "Usando SPICE display"
#, fuzzy
msgid "Version"
msgstr "Versión"
#, fuzzy
msgid "Waiting for download to start"
msgstr "Esperando que comience la descarga"
#, fuzzy
msgid "You are about to terminate the virtual machine {0}"
msgstr "Estás a punto de cerrar la máquina virtual {0}"
#, fuzzy
msgid "Language"
msgstr "Lenguaje"

View File

@ -1,198 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: quickgui\n"
"POT-Creation-Date: 2021-09-29 09:59+0200\n"
"PO-Revision-Date: 2022-11-11 15:42+0100\n"
"Last-Translator: Yannick Mauray\n"
"Language-Team: Yannick Mauray\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Poedit 3.1.1\n"
"X-Poedit-Basepath: .\n"
msgid "Quickgui : a Flutter frontend for Quickget and Quickemu"
msgstr "Quickgui : une interface en Flutter pour Quickget et Quickemu"
msgid "Main menu"
msgstr "Menu principal"
msgid "Use dark mode"
msgstr "Utiliser le mode sombre"
msgid "Cancel"
msgstr "Annuler"
msgid "Click to use SPICE display"
msgstr "Cliquez pour utiliser l'affichage SPICE"
msgid "Create new machines"
msgstr "Créer de nouvelles machines"
msgid "Dismiss"
msgstr "Fermer"
msgid "Done !"
msgstr "Fini!"
msgid "Download"
msgstr "Télécharger"
msgid "Download finished."
msgstr "Téléchargement terminé."
msgid "Downloader"
msgstr "Gestionnaire de téléchargements"
msgid "Downloading (no progress available)..."
msgstr "Téléchargement (pas de barre de progression)..."
msgid "Downloading... {0}%"
msgstr "Téléchargement... {0}%"
msgid "Downloading {0}"
msgstr "Téléchargement de {0}"
msgid "Download cancelled"
msgstr "Téléchargement annulé"
msgid "Download complete"
msgstr "Téléchargement terminé"
msgid "Download of {0} has completed."
msgstr "Le téléchargement de {0} est terminé."
msgid "Download of {0} has been cancelled."
msgstr "Le téléchargement de {0} a été annulé."
msgid "Manage existing machines"
msgstr "Gérer les machines existantes"
msgid "Manager"
msgstr "Gestionnaire"
msgid "{0} Mbs downloaded"
msgstr "{0} Mbs téléchargés"
msgid "Now run {0} to start the VM"
msgstr "Lancer {0} pour démarrer la machine virtuelle"
msgid "OK"
msgstr "OK"
msgid "Operating system"
msgstr "Système d'exploitation"
msgid "Search operating system"
msgstr "Chercher un système d'exploitation"
msgid "Search option"
msgstr "Chercher une option"
msgid "Select operating system"
msgstr "Sélectionner un système d'exploitation"
msgid "Select option"
msgstr "Sélectionner une option"
msgid "Select version for {0}"
msgstr "Sélectionner une version pour {0}"
msgid "Select..."
msgstr "Sélectionner..."
msgid "SPICE port"
msgstr "Port SPICE"
msgid "SSH port"
msgstr "Port SSH"
msgid "Stop The Virtual Machine?"
msgstr "Arrêtez la machine virtuelle ?"
msgid "Target folder : {0}"
msgstr "Dossier cible : {0}"
msgid "Use SPICE display"
msgstr "Utiliser l'affichage SPICE"
msgid "Using SPICE display"
msgstr "Utilisation de l'affichage SPICE"
msgid "Version"
msgstr "Version"
msgid "Waiting for download to start"
msgstr "En attente du début du téléchargement"
msgid "You are about to terminate the virtual machine {0}"
msgstr "Vous êtes sur le point d'arrêter la machine virtuelle {0}"
msgid "Language"
msgstr "Langue"
msgid "Directory where the machines are stored"
msgstr "Dossier ou sont enregistrées les machines"
msgid "Search version"
msgstr "Chercher une option"
msgid "quickemu was not found in your PATH"
msgstr "quickemu n'est pas dans votre PATH"
msgid "Please install it and try again."
msgstr "Veuillez l'installer, et essayer de nouveau."
msgid "See"
msgstr "Voir"
msgid "for more information"
msgstr "pour plus d'informations"
msgid "Delete {0}"
msgstr "Supprimer {0}"
msgid "You are about to delete {0}. This cannot be undone. Would you like to delete the disk image but keep the configuration, or delete the whole VM?"
msgstr "Vous êtes sur le point de supprimer {0}. Cette action est irréversible. Voulez-vous supprimer l'image disque mais conserver la configuration, ou supprimer la machine virtuelle entière ?"
msgid "Delete disk image"
msgstr "Supprimer l'image disque"
msgid "Delete whole VM"
msgstr "Supprimer la machine virtuelle entière"
msgid "Connect display with SPICE"
msgstr "Connecter l'affichage avec SPICE"
msgid "SPICE client not found"
msgstr "Client SPICE non trouvé"
msgid "Connect with SSH"
msgstr "Se connecter avec SSH"
msgid "SSH server not detected on guest"
msgstr "Serveur SSH non détecté sur l'invité"
msgid "Launch SSH connection to {0}"
msgstr "Lancer la connexion SSH vers {0}"
msgid "SSH username"
msgstr "Nom d'utilisateur SSH"
# Connect to the VM via SSH
msgid "Connect"
msgstr "Connecter"
msgid "Error"
msgstr "Erreur"
msgid "Could not write to the working directory. Please check the permissions."
msgstr "Impossible d'écrire dans le répertoire de travail. Veuillez vérifier les permissions."
msgid "Loading available downloads"
msgstr "Chargement des téléchargements disponibles"
msgid "Powered by"
msgstr "Propulsé par"

View File

@ -1,130 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: quickgui 1.1.5\n"
"Report-Msgid-Bugs-To: Phil Clifford <philip.clifford@gmail.com>\n"
"POT-Creation-Date: 2021-09-29 09:59+0200\n"
"PO-Revision-Date: 2021-12-03 00:36+0000\n"
"Last-Translator: Phil Clifford <philip.clifford@gmail.com>\n"
"Language-Team: \n"
"Language: gd\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.0\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=4; plural=(n==1 || n==11 ? 0 : n==2 || n==12 ? 1 : "
"(n>=3 && n<=10) || (n>=13 && n<=19) ? 2 : 3);\n"
msgid "Quickgui : a Flutter frontend for Quickget and Quickemu"
msgstr "Quickgui: Flutter frontend airson Quickget agus Quickemu"
msgid "Main menu"
msgstr "Prìomh-clàr-taice"
msgid "Use dark mode"
msgstr "Cleachd modh dorcha"
msgid "Cancel"
msgstr "Cuir dheth"
msgid "Click to use SPICE display"
msgstr "Cliog gus taisbeanadh SPICE a chleachdadh"
msgid "Create new machines"
msgstr "Cruthaich innealan brìgheil ùra"
msgid "Dismiss"
msgstr "Cuir air falbh"
msgid "Done !"
msgstr "Dèanta!"
msgid "Download"
msgstr "Luchdadh a-nuas"
msgid "Download finished."
msgstr "Luchdaich crìochnaichte."
msgid "Downloader"
msgstr "Inneal luchdachadh sìos"
msgid "Downloading (no progress available)..."
msgstr "A luchdachadh sìos (chan eil adhartas ri fhaighinn)"
msgid "Downloading... {0}%"
msgstr "A luchdachadh sìos... {0}%"
msgid "Downloading {0}"
msgstr "Thèid {0} a luchdachadh sìos"
msgid "Download cancelled"
msgstr "Luchdachadh sìos dheth"
msgid "Download complete"
msgstr "Luchdachadh sìos crìochnaichte"
msgid "Download of {0} has completed."
msgstr "Tha luchdachadh sìos de {0} air a chrìochnachadh."
msgid "Manage existing machines"
msgstr "Stiùirich na h-innealan a th ann"
msgid "Manager"
msgstr "Manaidsear"
msgid "{0} Mbs downloaded"
msgstr "Chaidh {0} Mbs a luchdachadh sìos"
msgid "Now run {0} to start the VM"
msgstr "A-nis run {0} gus an VM a thòiseachadh"
msgid "OK"
msgstr "Ceart gu leòr"
msgid "Operating system"
msgstr "Siostam-obrachaidh"
msgid "Search operating system"
msgstr "Lorg siostam obrachaidh"
msgid "Search option"
msgstr "Lorg roghainn"
msgid "Select operating system"
msgstr "Tagh siostam obrachaidh"
msgid "Select option"
msgstr "Tagh roghainn"
msgid "Select version for {0}"
msgstr "Tagh dreach airson {0}"
msgid "Select..."
msgstr "Tagh..."
msgid "SPICE port"
msgstr "Port SPICE"
msgid "SSH port"
msgstr "Port SSH"
msgid "Stop The Virtual Machine?"
msgstr "Cuir stad air an inneal brìgheil?"
msgid "Target folder : {0}"
msgstr "Pasgan targaid: {0}"
msgid "Use SPICE display"
msgstr "Cleachd taisbeanadh SPICE"
msgid "Using SPICE display"
msgstr "A cleachdadh taisbeanadh SPICE"
msgid "Version"
msgstr "Dreach"
msgid "Waiting for download to start"
msgstr "A 'feitheamh ri luchdachadh sìos gus tòiseachad"
msgid "You are about to terminate the virtual machine {0}"
msgstr "Tha thu gu bhith a cur crìoch air an inneal brìgheil {0}"

View File

@ -1,134 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: quickgui\n"
"POT-Creation-Date: 2021-09-29 09:59+0200\n"
"PO-Revision-Date: 2022-02-24 23:38+0100\n"
"Last-Translator: Mikael Bak\n"
"Language-Team: \n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.0\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
msgid "Quickgui : a Flutter frontend for Quickget and Quickemu"
msgstr "Quickgui : Flutter kezelőfelület Quickget és Quickemuhez"
msgid "Main menu"
msgstr "Főmenü"
msgid "Use dark mode"
msgstr "Sötét mód használata"
msgid "Cancel"
msgstr "Mégse"
msgid "Click to use SPICE display"
msgstr "SPICE kijelző bekapcsolása"
msgid "Create new machines"
msgstr "Új gép létrehozása"
msgid "Dismiss"
msgstr "Rendben"
msgid "Done !"
msgstr "Kész !"
msgid "Download"
msgstr "Letöltés"
msgid "Download finished."
msgstr "Letöltés kész."
msgid "Downloader"
msgstr "Letöltő"
msgid "Downloading (no progress available)..."
msgstr "Letöltés (a haladásról nincs visszajelzés)..."
msgid "Downloading... {0}%"
msgstr "Letöltés... {0}%"
msgid "Downloading {0}"
msgstr "Letöltés {0}"
msgid "Download cancelled"
msgstr "Letöltés megszakítva"
msgid "Download complete"
msgstr "Letöltés kész"
msgid "Download of {0} has completed."
msgstr "{0} letöltése befejeződött."
msgid "Download of {0} has been cancelled."
msgstr "{0} letöltése megszakítva."
msgid "Manage existing machines"
msgstr "Meglévő gépek kezelése"
msgid "Manager"
msgstr "Kezelő"
msgid "{0} Mbs downloaded"
msgstr "{0} Mbs letöltve"
msgid "Now run {0} to start the VM"
msgstr "Gép indításhoz: {0}"
msgid "OK"
msgstr "OK"
msgid "Operating system"
msgstr "Operációs rendszer"
msgid "Search operating system"
msgstr "Operációs rendszer keresése"
msgid "Search option"
msgstr "Keresési opciók"
msgid "Select operating system"
msgstr "Válasszon operációs rendszert"
msgid "Select option"
msgstr "Válasszon az opciók közül"
msgid "Select version for {0}"
msgstr "Válasszon {0} verziót"
msgid "Select..."
msgstr "Válasszon..."
msgid "SPICE port"
msgstr "SPICE port"
msgid "SSH port"
msgstr "SSH port"
msgid "Stop The Virtual Machine?"
msgstr "Virtuális gép leállítása?"
msgid "Target folder : {0}"
msgstr "Cél mappa : {0}"
msgid "Use SPICE display"
msgstr "SPICE kijelző használata"
msgid "Using SPICE display"
msgstr "SPICE kijelző használatban"
msgid "Version"
msgstr "Verzió"
msgid "Waiting for download to start"
msgstr "Remélhetőleg nem sokára elindul a letöltés"
msgid "You are about to terminate the virtual machine {0}"
msgstr "{0} virtuális gép le lesz állítva"
msgid "Language"
msgstr "Nyelv"

View File

@ -1,133 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: quickgui\n"
"POT-Creation-Date: 2021-09-29 09:59+0200\n"
"PO-Revision-Date: 2021-12-02 20:24+0000\n"
"Last-Translator: Phil Clifford <philip.clifford@gmail.com>\n"
"Language-Team: Italian\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.0\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: it\n"
"X-Crowdin-Project: quickgui\n"
"X-Crowdin-Project-ID: 485591\n"
"X-Crowdin-Language: it\n"
"X-Crowdin-File: quickgui.pot\n"
"X-Crowdin-File-ID: 1\n"
msgid "Quickgui : a Flutter frontend for Quickget and Quickemu"
msgstr "Quickgui: un frontend Flutter per Quickget e Quickemu"
msgid "Main menu"
msgstr "Menu principale"
msgid "Use dark mode"
msgstr "Utilizza la modalità scura"
msgid "Cancel"
msgstr "Cancella"
msgid "Click to use SPICE display"
msgstr "Fare clic per utilizzare SPICE display"
msgid "Create new machines"
msgstr "Crea nuove macchine"
msgid "Dismiss"
msgstr "Ignora"
msgid "Done !"
msgstr "Fatto !"
msgid "Download"
msgstr "Scarica"
msgid "Download finished."
msgstr "Download terminato."
msgid "Downloader"
msgstr "Download"
msgid "Downloading (no progress available)..."
msgstr "Download (nessun progresso disponibile)..."
msgid "Downloading... {0}%"
msgstr "Scaricando... {0}%"
msgid "Downloading {0}"
msgstr "Scaricamento di {0}"
msgid "Download cancelled"
msgstr "Scaricamento interrotto"
msgid "Download complete"
msgstr "Scaricamento completato"
msgid "Download of {0} has completed."
msgstr "Il download di {0} è stato completato."
msgid "Manage existing machines"
msgstr "Gestire le macchine esistenti"
msgid "Manager"
msgstr "Gestore"
msgid "{0} Mbs downloaded"
msgstr "{0} Mbs scaricati"
msgid "Now run {0} to start the VM"
msgstr "Ora esegui {0} per avviare la VM"
msgid "OK"
msgstr "OK"
msgid "Operating system"
msgstr "Sistema operativo"
msgid "Search operating system"
msgstr "Cerca il sistema operativo"
msgid "Search option"
msgstr "Opzione ricerca"
msgid "Select operating system"
msgstr "Scegli il sistema operativo"
msgid "Select option"
msgstr "Scegli l'opzione"
msgid "Select version for {0}"
msgstr "Seleziona la versione per {0}"
msgid "Select..."
msgstr "Seleziona..."
msgid "SPICE port"
msgstr "Porta SPICE"
msgid "SSH port"
msgstr "Porta SSH"
msgid "Stop The Virtual Machine?"
msgstr "Fermare la Macchina Virtuale?"
msgid "Target folder : {0}"
msgstr "Cartella di destinazione : {0}"
msgid "Use SPICE display"
msgstr "Utilizzare il display SPICE"
msgid "Using SPICE display"
msgstr "Utilizzo del display SPICE"
msgid "Version"
msgstr "Versione"
msgid "Waiting for download to start"
msgstr "In attesa del download per iniziare"
msgid "You are about to terminate the virtual machine {0}"
msgstr "Stai per terminare la Macchina Virtuale {0}"

View File

@ -1,134 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2021-09-29 09:59+0200\n"
"PO-Revision-Date: 2022-03-01 20:27+0900\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.3\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"Last-Translator: \n"
"Language: ja_JP\n"
msgid "Quickgui : a Flutter frontend for Quickget and Quickemu"
msgstr "Quickgui : Flutterで作られたQuickget、Quickemuのフロントエンド"
msgid "Main menu"
msgstr "メインメニュー"
msgid "Use dark mode"
msgstr "ダークモードを使用する"
msgid "Cancel"
msgstr "キャンセル"
msgid "Click to use SPICE display"
msgstr "クリックしてSPICEディスプレイを使用する"
msgid "Create new machines"
msgstr "新規仮想マシンを作成"
msgid "Dismiss"
msgstr "終了する"
msgid "Done !"
msgstr "完了!"
msgid "Download"
msgstr "ダウンロード"
msgid "Download finished."
msgstr "ダウンロードが完了しました。"
msgid "Downloader"
msgstr "ダウンローダ"
msgid "Downloading (no progress available)..."
msgstr "ダウンロード中(進行状況を推定中)..."
msgid "Downloading... {0}%"
msgstr "ダウンロード中... {0}%"
msgid "Downloading {0}"
msgstr "{0}をダウンロード中"
msgid "Download cancelled"
msgstr "ダウンロードがキャンセルされました"
msgid "Download complete"
msgstr "ダウンロード完了"
msgid "Download of {0} has completed."
msgstr "{0}のダウンロードは完了しました。"
msgid "Download of {0} has been cancelled."
msgstr "{0}のダウンロードはキャンセルされました。"
msgid "Manage existing machines"
msgstr "既存の仮想マシンを管理"
msgid "Manager"
msgstr "マネージャ"
msgid "{0} Mbs downloaded"
msgstr "{0} Mbs がダウンロードされました"
msgid "Now run {0} to start the VM"
msgstr "今すぐ{0}を起動して仮想マシンを開始"
msgid "OK"
msgstr "OK"
msgid "Operating system"
msgstr "オペレーティングシステム"
msgid "Search operating system"
msgstr "オペレーティングシステムを検索"
msgid "Search option"
msgstr "オプションを検索"
msgid "Select operating system"
msgstr "オペレーティングシステムを選択"
msgid "Select option"
msgstr "オプションを選択"
msgid "Select version for {0}"
msgstr "{0}のバージョンを選択"
msgid "Select..."
msgstr "選択..."
msgid "SPICE port"
msgstr "SPICEのポート"
msgid "SSH port"
msgstr "SSHのポート"
msgid "Stop The Virtual Machine?"
msgstr "仮想マシンを停止しますか?"
msgid "Target folder : {0}"
msgstr "対象フォルダ:{0}"
msgid "Use SPICE display"
msgstr "SPICEディスプレイを使用する"
msgid "Using SPICE display"
msgstr "SPICEディスプレイを使用中"
msgid "Version"
msgstr "バージョン"
msgid "Waiting for download to start"
msgstr "ダウンロードの開始を待機しています"
msgid "You are about to terminate the virtual machine {0}"
msgstr "仮想マシン{0}を終了しようとしています"
msgid "Language"
msgstr "言語"

View File

@ -1,134 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: quickgui\n"
"POT-Creation-Date: 2021-09-29 09:59+0200\n"
"PO-Revision-Date: 2021-12-02 23:40+0000\n"
"Last-Translator: \n"
"Language-Team: Dutch\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.0\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: nl\n"
"X-Crowdin-Project: quickgui\n"
"X-Crowdin-Project-ID: 485591\n"
"X-Crowdin-Language: nl\n"
"X-Crowdin-File: quickgui.pot\n"
"X-Crowdin-File-ID: 1\n"
msgid "Quickgui : a Flutter frontend for Quickget and Quickemu"
msgstr "Quickgui : een Flutter frontend voor Quickget en Quickemu"
msgid "Main menu"
msgstr "Hoofd menu"
msgid "Use dark mode"
msgstr "Donkere modus gebruiken"
msgid "Cancel"
msgstr "Annuleren"
msgid "Click to use SPICE display"
msgstr "Klik om SPICE display te gebruiken"
msgid "Create new machines"
msgstr "Nieuwe machines creëren"
msgid "Dismiss"
msgstr "Uitschakelen"
msgid "Done !"
msgstr "Klaar!"
msgid "Download"
msgstr "Downloaden"
msgid "Download finished."
msgstr "Download voltooid."
msgid "Downloader"
msgstr "Downloader"
msgid "Downloading (no progress available)..."
msgstr "Downloaden (geen voortgang beschikbaar)..."
msgid "Downloading... {0}%"
msgstr "Downloaden... {0}%"
msgid "Downloading {0}"
msgstr "Downloaden {0}"
msgid "Download cancelled"
msgstr "Download geannuleerd"
msgid "Download complete"
msgstr "Download voltooid"
msgid "Download of {0} has completed."
msgstr "Download van {0} is voltooid."
msgid "Manage existing machines"
msgstr "Bestaande machines beheren"
msgid "Manager"
msgstr "Beheerder"
msgid "{0} Mbs downloaded"
msgstr "{0} Mbs gedownload"
msgid "Now run {0} to start the VM"
msgstr "Start nu {0} om de VM te starten"
msgid "OK"
msgstr "OK"
msgid "Operating system"
msgstr "Besturingssysteem"
msgid "Search operating system"
msgstr "Zoek besturingssysteem"
msgid "Search option"
msgstr "Optie zoeken"
msgid "Select operating system"
msgstr "Selecteer besturingssysteem"
msgid "Select option"
msgstr "Selecteer optie"
msgid "Select version for {0}"
msgstr "Selecteer versie voor {0}"
msgid "Select..."
msgstr "Selecteer..."
msgid "SPICE port"
msgstr "SPICE poort"
msgid "SSH port"
msgstr "SSH poort"
msgid "Stop The Virtual Machine?"
msgstr "Stop de virtuele Machine?"
msgid "Target folder : {0}"
msgstr "Target folder : {0}"
msgid "Use SPICE display"
msgstr "Gebruik SPICE display"
msgid "Using SPICE display"
msgstr "SPICE display gebruiken"
msgid "Version"
msgstr "Versie"
msgid "Waiting for download to start"
msgstr "Wachten op download om te starten"
msgid "You are about to terminate the virtual machine {0}"
msgstr "U staat op het punt de virtuele machine {0} te beëindigen"

View File

@ -1,134 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: quickgui\n"
"POT-Creation-Date: 2021-09-29 09:59+0200\n"
"PO-Revision-Date: 2021-12-02 23:45+0000\n"
"Last-Translator: \n"
"Language-Team: Norwegian\n"
"Language: no\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.0\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: no\n"
"X-Crowdin-Project: quickgui\n"
"X-Crowdin-Project-ID: 485591\n"
"X-Crowdin-Language: no\n"
"X-Crowdin-File: quickgui.pot\n"
"X-Crowdin-File-ID: 1\n"
msgid "Quickgui : a Flutter frontend for Quickget and Quickemu"
msgstr "Quickgui : en flutter frontend for Quickget og Quickemu"
msgid "Main menu"
msgstr "Hovedmeny"
msgid "Use dark mode"
msgstr "Bruk mørk modus"
msgid "Cancel"
msgstr "Avbryt"
msgid "Click to use SPICE display"
msgstr "Klikk for å bruke SPICE-visning"
msgid "Create new machines"
msgstr "Lag nye maskiner"
msgid "Dismiss"
msgstr "Avvis"
msgid "Done !"
msgstr "Suksess!"
msgid "Download"
msgstr "Nedlasting"
msgid "Download finished."
msgstr "Nedlasting fullført."
msgid "Downloader"
msgstr "Nedlaster"
msgid "Downloading (no progress available)..."
msgstr "Nedlasting (ingen fremgang tilgjengelig)..."
msgid "Downloading... {0}%"
msgstr "Laster ned... {0}%"
msgid "Downloading {0}"
msgstr "Laster ned {0}"
msgid "Download cancelled"
msgstr "Nedlasting avbrutt"
msgid "Download complete"
msgstr "Nedlasting fullført"
msgid "Download of {0} has completed."
msgstr "Nedlastingen av {0} er fullført."
msgid "Manage existing machines"
msgstr "Administrer eksisterende maskiner"
msgid "Manager"
msgstr "Leder"
msgid "{0} Mbs downloaded"
msgstr "{0} MB lastet ned"
msgid "Now run {0} to start the VM"
msgstr "Kjør {0} for å starte VM"
msgid "OK"
msgstr "OK"
msgid "Operating system"
msgstr "Operativsystem"
msgid "Search operating system"
msgstr "Søk i operativsystem"
msgid "Search option"
msgstr "Søk i alternativet"
msgid "Select operating system"
msgstr "Velg operativsystem"
msgid "Select option"
msgstr "Select wallet"
msgid "Select version for {0}"
msgstr "Velg versjon for {0}"
msgid "Select..."
msgstr "Velg..."
msgid "SPICE port"
msgstr "SPICE port"
msgid "SSH port"
msgstr "SSH port"
msgid "Stop The Virtual Machine?"
msgstr "Skal du stoppe den virtuelle maskinen?"
msgid "Target folder : {0}"
msgstr "Target folder : {0}"
msgid "Use SPICE display"
msgstr "Bruk SPICE-visning"
msgid "Using SPICE display"
msgstr "Bruker SPICE-visning"
msgid "Version"
msgstr "Versjon"
msgid "Waiting for download to start"
msgstr "Venter på oppstart av nedlasting"
msgid "You are about to terminate the virtual machine {0}"
msgstr "Du er i ferd med å avslutte den virtuelle maskinen {0}"

View File

@ -1,124 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2021-09-29 09:59+0200\n"
"PO-Revision-Date: 2021-11-22 13:04+0100\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.0\n"
"X-Poedit-Basepath: .\n"
"Last-Translator: Quentin PAGÈS\n"
"Language: oc\n"
msgid "Quickgui : a Flutter frontend for Quickget and Quickemu"
msgstr "Quickgui: una interfàcia Flutter per Quickget e Quickemu"
msgid "Main menu"
msgstr "Menú principal"
msgid "Use dark mode"
msgstr "Utilizar lo mòde escur"
msgid "Cancel"
msgstr "Anullar"
msgid "Click to use SPICE display"
msgstr "Clicar per utilizar lafichatge SPICE"
msgid "Create new machines"
msgstr "Crear maquinas novèlas"
msgid "Dismiss"
msgstr "Abandonar"
msgid "Done !"
msgstr "Terminat!"
msgid "Download"
msgstr "Telecargar"
msgid "Download finished."
msgstr "Telecargament acabat."
msgid "Downloader"
msgstr "Telecargador"
msgid "Downloading (no progress available)..."
msgstr "Telecargament (cap de barra de progression pas disponibla)..."
msgid "Downloading... {0}%"
msgstr "Telecargament... {0}%"
msgid "Downloading {0}"
msgstr "Telecargament de {0}"
msgid "Download complete"
msgstr "Telecargament acabat"
msgid "Download of {0} has completed."
msgstr "Lo telecargament de {0} es acabat."
msgid "Manage existing machines"
msgstr "Gerir las maquinas existentas"
msgid "Manager"
msgstr "Gestionari"
msgid "{0} Mbs downloaded"
msgstr "{0} Mbs telecargat"
msgid "Now run {0} to start the VM"
msgstr "Lançar {0} per aviar la maquina virtuala"
msgid "OK"
msgstr "Dacordi"
msgid "Operating system"
msgstr "Sistèma operatiu"
msgid "Search operating system"
msgstr "Cercar un sistèma operatiu"
msgid "Search option"
msgstr "Cercar una opcion"
msgid "Select operating system"
msgstr "Seleccionar un sistèma operatiu"
msgid "Select option"
msgstr "Seleccionar una opcion"
msgid "Select version for {0}"
msgstr "Seleccionar una version per {0}"
msgid "Select..."
msgstr "Seleccionar..."
msgid "SPICE port"
msgstr "Pòrt SPICE"
msgid "SSH port"
msgstr "Pòrt SSH"
msgid "Stop The Virtual Machine?"
msgstr "Arrestar la maquina virtuala?"
msgid "Target folder : {0}"
msgstr "Dossièr cibla: {0}"
msgid "Use SPICE display"
msgstr "Utilizar lafichatge SPICE"
msgid "Using SPICE display"
msgstr "Utilizacion de lafichatge SPICE"
msgid "Version"
msgstr "Version"
msgid "Waiting for download to start"
msgstr "En espèra de la debuta del telecargament"
msgid "You are about to terminate the virtual machine {0}"
msgstr "Sètz a mand darrestar la maquina virtuala {0}"

View File

@ -1,131 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: quickgui\n"
"POT-Creation-Date: 2022-07-28 10:18-0300\n"
"PO-Revision-Date: 2022-07-28 10:18-0300\n"
"Last-Translator: Marc Dnd <marcdnd@gmail.com>\n"
"Language-Team: Marc Dnd\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Nano pure text editor\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
msgid "Quickgui : a Flutter frontend for Quickget and Quickemu"
msgstr "Quickgui: Interface gráfica feito em Flutter para Quickget e Quickemu"
msgid "Main menu"
msgstr "Menu principal"
msgid "Use dark mode"
msgstr "Usar modo escuro"
msgid "Cancel"
msgstr "Cancelar"
msgid "Click to use SPICE display"
msgstr "Clique para usar o monitor SPICE"
msgid "Create new machines"
msgstr "Criar novas máquinas virtuais"
msgid "Dismiss"
msgstr "Dispensar"
msgid "Done !"
msgstr "Feito !"
msgid "Download"
msgstr "Baixar"
msgid "Download finished."
msgstr "Transferência terminada."
msgid "Downloader"
msgstr "Downloader"
msgid "Downloading (no progress available)..."
msgstr "Baixando (progresso não disponível)..."
msgid "Downloading... {0}%"
msgstr "Baixando... {0}%"
msgid "Downloading {0}"
msgstr "Baixando {0}"
msgid "Download cancelled"
msgstr "Transferência cancelada"
msgid "Download complete"
msgstr "Transferência terminada"
msgid "Download of {0} has completed."
msgstr "Transferência de {0} terminada."
msgid "Manage existing machines"
msgstr "Configurar máquinas existentes"
msgid "Manager"
msgstr "Configurar"
msgid "{0} Mbs downloaded"
msgstr "{0} Mbs transferidos"
msgid "Now run {0} to start the VM"
msgstr "Inicie a VM [{0}]"
msgid "OK"
msgstr "OK"
msgid "Operating system"
msgstr "Sistema operacional"
msgid "Search operating system"
msgstr "Procurar o sistema operacional"
msgid "Search option"
msgstr "Opção de pesquisa"
msgid "Select operating system"
msgstr "Selecione o sistema operacional"
msgid "Select option"
msgstr "Selecione a opção"
msgid "Select version for {0}"
msgstr "Selecione a versão para {0}"
msgid "Select..."
msgstr "Selecione..."
msgid "SPICE port"
msgstr "Porta TCP/IP do monitor SPICE"
msgid "SSH port"
msgstr "Porta TCP/IP do SSH"
msgid "Stop The Virtual Machine?"
msgstr "Parar a Máquina Virtual?"
msgid "Target folder : {0}"
msgstr "Pasta de destino : {0}"
msgid "Use SPICE display"
msgstr "Usar mostrador SPICE"
msgid "Using SPICE display"
msgstr "A usar monitor SPICE"
msgid "Version"
msgstr "Versão"
msgid "Waiting for download to start"
msgstr "Esperando que a transferência inicie"
msgid "You are about to terminate the virtual machine {0}"
msgstr "A máquina virtual será finalizada {0}"
msgid "Language"
msgstr "Idioma"

View File

@ -1,131 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: quickgui\n"
"POT-Creation-Date: 2021-09-29 09:59+0200\n"
"PO-Revision-Date: 2021-12-16 16:53+0000\n"
"Last-Translator: Ricardo Simões - XM Corporation <xm.corporation@gmail.com>\n"
"Language-Team: Ricardo Simões - XM Corporation\n"
"Language: pt_PT\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.0\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
msgid "Quickgui : a Flutter frontend for Quickget and Quickemu"
msgstr "Quickgui: um interface gráfico feito em Flutter para Quickget e Quickemu"
msgid "Main menu"
msgstr "Menu principal"
msgid "Use dark mode"
msgstr "Usar modo escuro"
msgid "Cancel"
msgstr "Cancelar"
msgid "Click to use SPICE display"
msgstr "Clique para usar mostrador SPICE"
msgid "Create new machines"
msgstr "Criar novas máquinas"
msgid "Dismiss"
msgstr "Dispensar"
msgid "Done !"
msgstr "Feito !"
msgid "Download"
msgstr "Transferir"
msgid "Download finished."
msgstr "Transferência terminada."
msgid "Downloader"
msgstr "Transferidor"
msgid "Downloading (no progress available)..."
msgstr "A transferir (progresso não disponível)..."
msgid "Downloading... {0}%"
msgstr "A transferir... {0}%"
msgid "Downloading {0}"
msgstr "A transferir {0}"
msgid "Download cancelled"
msgstr "Transferência cancelada"
msgid "Download complete"
msgstr "Transferência completada"
msgid "Download of {0} has completed."
msgstr "Transferência de {0} completou."
msgid "Manage existing machines"
msgstr "Gerir máquinas existentes"
msgid "Manager"
msgstr "Gestor"
msgid "{0} Mbs downloaded"
msgstr "{0} Mbs transferidos"
msgid "Now run {0} to start the VM"
msgstr "Agora corra {0} para iniciar a VM"
msgid "OK"
msgstr "OK"
msgid "Operating system"
msgstr "Sistema operativo"
msgid "Search operating system"
msgstr "Procurar sistema operativo"
msgid "Search option"
msgstr "Opção de pesquisa"
msgid "Select operating system"
msgstr "Selecione sistema operativo"
msgid "Select option"
msgstr "Selecione opção"
msgid "Select version for {0}"
msgstr "Selecione versão para {0}"
msgid "Select..."
msgstr "Selecione..."
msgid "SPICE port"
msgstr "Porto SPICE"
msgid "SSH port"
msgstr "Porto SSH"
msgid "Stop The Virtual Machine?"
msgstr "Parar a Máquina Virtual?"
msgid "Target folder : {0}"
msgstr "Pasta alvo : {0}"
msgid "Use SPICE display"
msgstr "Usar mostrador SPICE"
msgid "Using SPICE display"
msgstr "A usar mostrador SPICE"
msgid "Version"
msgstr "Versão"
msgid "Waiting for download to start"
msgstr "A aguardar que a transferência comece"
msgid "You are about to terminate the virtual machine {0}"
msgstr "Está prestes a pôr termo à máquina virtual {0}"
msgid "Language"
msgstr "Idioma"

View File

@ -1,200 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2021-09-29 09:59+0200\n"
"PO-Revision-Date: 2021-09-29 10:00+0200\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.0\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: en\n"
msgid "Quickgui : a Flutter frontend for Quickget and Quickemu"
msgstr ""
msgid "Main menu"
msgstr ""
msgid "Use dark mode"
msgstr ""
msgid "Cancel"
msgstr ""
msgid "Click to use SPICE display"
msgstr ""
msgid "Create new machines"
msgstr ""
msgid "Dismiss"
msgstr ""
msgid "Done !"
msgstr ""
msgid "Download"
msgstr ""
msgid "Download finished."
msgstr ""
msgid "Downloader"
msgstr ""
msgid "Downloading (no progress available)..."
msgstr ""
msgid "Downloading... {0}%"
msgstr ""
msgid "Downloading {0}"
msgstr ""
msgid "Download cancelled"
msgstr ""
msgid "Download complete"
msgstr ""
msgid "Download of {0} has completed."
msgstr ""
msgid "Download of {0} has been cancelled."
msgstr ""
msgid "Manage existing machines"
msgstr ""
msgid "Manager"
msgstr ""
msgid "{0} Mbs downloaded"
msgstr ""
msgid "Now run {0} to start the VM"
msgstr ""
msgid "OK"
msgstr ""
msgid "Operating system"
msgstr ""
msgid "Search operating system"
msgstr ""
msgid "Search option"
msgstr ""
msgid "Select operating system"
msgstr ""
msgid "Select option"
msgstr ""
msgid "Select version for {0}"
msgstr ""
msgid "Select..."
msgstr ""
msgid "SPICE port"
msgstr ""
msgid "SSH port"
msgstr ""
msgid "Stop The Virtual Machine?"
msgstr ""
msgid "Target folder : {0}"
msgstr ""
msgid "Use SPICE display"
msgstr ""
msgid "Using SPICE display"
msgstr ""
msgid "Version"
msgstr ""
msgid "Waiting for download to start"
msgstr ""
msgid "You are about to terminate the virtual machine {0}"
msgstr ""
msgid "Language"
msgstr ""
msgid "Directory where the machines are stored"
msgstr ""
msgid "Search version"
msgstr ""
msgid "quickemu was not found in your PATH"
msgstr ""
msgid "Please install it and try again."
msgstr ""
# The complete sentence is "See github.com/quickemu-project/quickemu for more information"
msgid "See"
msgstr ""
# The complete sentence is "See github.com/quickemu-project/quickemu for more information"
msgid "for more information"
msgstr ""
msgid "Delete {0}"
msgstr ""
msgid "You are about to delete {0}. This cannot be undone. Would you like to delete the disk image but keep the configuration, or delete the whole VM?"
msgstr ""
msgid "Delete disk image"
msgstr ""
msgid "Delete whole VM"
msgstr ""
msgid "Connect display with SPICE"
msgstr ""
msgid "SPICE client not found"
msgstr ""
msgid "Connect with SSH"
msgstr ""
msgid "SSH server not detected on guest"
msgstr ""
msgid "Launch SSH connection to {0}"
msgstr ""
msgid "SSH username"
msgstr ""
# Connect to the VM via SSH
msgid "Connect"
msgstr ""
msgid "Error"
msgstr ""
msgid "Could not write to the working directory. Please check the permissions."
msgstr ""
msgid "Loading available downloads"
msgstr ""
msgid "Powered by"
msgstr ""

View File

@ -1,134 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: quickgui\n"
"POT-Creation-Date: 2021-09-29 09:59+0200\n"
"PO-Revision-Date: 2021-12-03 00:02+0000\n"
"Last-Translator: \n"
"Language-Team: Russian\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.0\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
"Language: ru\n"
"X-Crowdin-Project: quickgui\n"
"X-Crowdin-Project-ID: 485591\n"
"X-Crowdin-Language: ru\n"
"X-Crowdin-File: quickgui.pot\n"
"X-Crowdin-File-ID: 1\n"
msgid "Quickgui : a Flutter frontend for Quickget and Quickemu"
msgstr "Quickgui : Flutter фронтент Quickget и Quickemu"
msgid "Main menu"
msgstr "Главное меню"
msgid "Use dark mode"
msgstr "Использовать темный режим"
msgid "Cancel"
msgstr "Отмена"
msgid "Click to use SPICE display"
msgstr "Нажмите, чтобы использовать отображение SPICE"
msgid "Create new machines"
msgstr "Создать новые машины"
msgid "Dismiss"
msgstr "Отклонить"
msgid "Done !"
msgstr "Готово!"
msgid "Download"
msgstr "Загрузить"
msgid "Download finished."
msgstr "Загрузка завершена."
msgid "Downloader"
msgstr "Загрузчик"
msgid "Downloading (no progress available)..."
msgstr "Загрузка (нет прогресса)..."
msgid "Downloading... {0}%"
msgstr "Загрузка... {0}%"
msgid "Downloading {0}"
msgstr "Загрузка {0}"
msgid "Download cancelled"
msgstr "Загрузка отменена"
msgid "Download complete"
msgstr "Загрузка завершена"
msgid "Download of {0} has completed."
msgstr "Загрузка {0} завершена."
msgid "Manage existing machines"
msgstr "Управление существующими машинами"
msgid "Manager"
msgstr "Менеджер"
msgid "{0} Mbs downloaded"
msgstr "{0} МБ загружено"
msgid "Now run {0} to start the VM"
msgstr "Запустите {0} для запуска ВМ"
msgid "OK"
msgstr "ОК"
msgid "Operating system"
msgstr "Операционная система"
msgid "Search operating system"
msgstr "Поиск операционной системы"
msgid "Search option"
msgstr "Параметры поиска"
msgid "Select operating system"
msgstr "Выберите операционную систему"
msgid "Select option"
msgstr "Выберите вариант"
msgid "Select version for {0}"
msgstr "Выберите версию для {0}"
msgid "Select..."
msgstr "Выбрать..."
msgid "SPICE port"
msgstr "SPICE порт"
msgid "SSH port"
msgstr "SSH порт"
msgid "Stop The Virtual Machine?"
msgstr "Остановить виртуальную машину?"
msgid "Target folder : {0}"
msgstr "Target folder : {0}"
msgid "Use SPICE display"
msgstr "Использовать экран SPICE"
msgid "Using SPICE display"
msgstr "Использование SPICE дисплея"
msgid "Version"
msgstr "Версия"
msgid "Waiting for download to start"
msgstr "Ожидание начала загрузки"
msgid "You are about to terminate the virtual machine {0}"
msgstr "Вы собираетесь завершить виртуальную машину {0}"

View File

@ -1,208 +0,0 @@
# Swedish translation for quickgui.
# Åke Engelbrektson <eson@svenskasprakfiler.se>, 2022, 2024.
#
msgid ""
msgstr ""
"Project-Id-Version: quickgui\n"
"POT-Creation-Date: 2021-09-29 09:59+0200\n"
"PO-Revision-Date: 2024-08-14 21:09+0200\n"
"Last-Translator: Åke Engelbrektson <eson@svenskasprakfiler.se>\n"
"Language-Team: \n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.4.4\n"
"X-Poedit-Basepath: .\n"
msgid "Quickgui : a Flutter frontend for Quickget and Quickemu"
msgstr "Quickgui : Ett Flutter-gränssnitt för Quickget och Quickemu"
msgid "Main menu"
msgstr "Huvudmeny"
msgid "Use dark mode"
msgstr "Använd mörkt läge"
msgid "Cancel"
msgstr "Avbryt"
msgid "Click to use SPICE display"
msgstr "Klicka för att använda SPICE-skärm"
msgid "Create new machines"
msgstr "Skapa nya maskiner"
msgid "Dismiss"
msgstr "Avfärda"
msgid "Done !"
msgstr "Klart!"
msgid "Download"
msgstr "Ladda ner"
msgid "Download finished."
msgstr "Nerladdning slutförd."
msgid "Downloader"
msgstr "Nerladdare"
msgid "Downloading (no progress available)..."
msgstr "Laddar ner (inget förlopp tillgängligt)..."
msgid "Downloading... {0}%"
msgstr "Laddar ner... {0}%"
msgid "Downloading {0}"
msgstr "Laddar ner {0}"
msgid "Download cancelled"
msgstr "Nerladdning avbröts"
msgid "Download complete"
msgstr "Nerladdning komplett"
msgid "Download of {0} has completed."
msgstr "Nerladdning av {0} har slutförts."
msgid "Download of {0} has been cancelled."
msgstr "Nerladdning av {0} har avbrutits."
msgid "Manage existing machines"
msgstr "Hantera befintliga maskiner"
msgid "Manager"
msgstr "Hanterare"
msgid "{0} Mbs downloaded"
msgstr "{0} Mbs nerladdat"
msgid "Now run {0} to start the VM"
msgstr "Kör nu {0} för att starta VM"
msgid "OK"
msgstr "OK"
msgid "Operating system"
msgstr "Operativsystem"
msgid "Search operating system"
msgstr "Sök operativsystem"
msgid "Search option"
msgstr "Sökalternativ"
msgid "Select operating system"
msgstr "Välj operativsystem"
msgid "Select option"
msgstr "Välj alternativ"
msgid "Select version for {0}"
msgstr "Välj version för {0}"
msgid "Select..."
msgstr "Välj..."
msgid "SPICE port"
msgstr "SPICE-port"
msgid "SSH port"
msgstr "SSH-port"
msgid "Stop The Virtual Machine?"
msgstr "Vill du stoppa den virtuella maskinen"
msgid "Target folder : {0}"
msgstr "Målmapp : {0}"
msgid "Use SPICE display"
msgstr "Använd SPICE-skärm"
msgid "Using SPICE display"
msgstr "Använder SPICE-skärm"
msgid "Version"
msgstr "Version"
msgid "Waiting for download to start"
msgstr "Väntar på att nerladdning skall starta"
msgid "You are about to terminate the virtual machine {0}"
msgstr "Du är på väg att stoppa den virtuella maskinen {0}"
msgid "Language"
msgstr "Språk"
msgid "Directory where the machines are stored"
msgstr "Plats där maskinerna lagras"
msgid "Search version"
msgstr "Sök version"
msgid "quickemu was not found in your PATH"
msgstr "quickemu kunde inte hittas i din PATH"
msgid "Please install it and try again."
msgstr "Installera det och försök igen."
# The complete sentence is "See github.com/quickemu-project/quickemu for more information"
msgid "See"
msgstr "Se"
# The complete sentence is "See github.com/quickemu-project/quickemu for more information"
msgid "for more information"
msgstr "för mer information"
msgid "Delete {0}"
msgstr "Ta bort {0}"
msgid ""
"You are about to delete {0}. This cannot be undone. Would you like to delete "
"the disk image but keep the configuration, or delete the whole VM?"
msgstr ""
"Du är på väg att ta bort {0}. Detta kan inte ångras. Vill du ta bort "
"diskavbildningen men behålla konfigurationen eller ta bort hela den "
"virtuella datorn?"
msgid "Delete disk image"
msgstr "Ta bor diskavbilden"
msgid "Delete whole VM"
msgstr "Ta bort hela den virtuella datorn"
msgid "Connect display with SPICE"
msgstr "Anslut skärm med SPICE"
msgid "SPICE client not found"
msgstr "Ingen SPICE-klient hittades"
msgid "Connect with SSH"
msgstr "Anslut via SSH"
msgid "SSH server not detected on guest"
msgstr "Ingen SSH-server identifierad på gästen"
msgid "Launch SSH connection to {0}"
msgstr "Starta SSH-anslutning till {0}"
msgid "SSH username"
msgstr "SSH-användarnamn"
# Connect to the VM via SSH
msgid "Connect"
msgstr "Anslut"
msgid "Error"
msgstr "Fel"
msgid "Could not write to the working directory. Please check the permissions."
msgstr "Kunde inte skriva till arbetsmappen. Kontrollera rättigheterna."
msgid "Loading available downloads"
msgstr "Läser in tillgängliga nerladdningar"
msgid "Powered by"
msgstr "Drivs av"

View File

@ -1,140 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: quickgui\n"
"POT-Creation-Date: 2021-09-29 09:59+0200\n"
"PO-Revision-Date: 2023-04-08 23:40+0300\n"
"Last-Translator: Mustafa Tosun <mstfcod@gmail.com>\n"
"Language-Team: \n"
"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.1.1\n"
"X-Poedit-Basepath: .\n"
msgid "Quickgui : a Flutter frontend for Quickget and Quickemu"
msgstr "Quickgui : Quickget ve Quickemu için Flutter arayüzü"
msgid "Main menu"
msgstr "Ana menü"
msgid "Use dark mode"
msgstr "Siyah mod kullan"
msgid "Cancel"
msgstr "İptal"
msgid "Click to use SPICE display"
msgstr "SPICE ekranı kullanmak için tıkla"
msgid "Create new machines"
msgstr "Yeni makine oluştur"
msgid "Dismiss"
msgstr "Yoksay"
msgid "Done !"
msgstr "Bitti !"
msgid "Download"
msgstr "İndir"
msgid "Download finished."
msgstr "İndirme tamamlandı."
msgid "Downloader"
msgstr "Yükleyici"
msgid "Downloading (no progress available)..."
msgstr "Yükleniyor (ilerleme yok)..."
msgid "Downloading... {0}%"
msgstr "Yükleniyor... {0}%"
msgid "Downloading {0}"
msgstr "Yükleniyor {0}"
msgid "Download cancelled"
msgstr "İndirme iptal edildi"
msgid "Download complete"
msgstr "İndirme tamamlandı"
msgid "Download of {0} has completed."
msgstr "{0} indirme işlemi tamamlandı."
msgid "Download of {0} has been cancelled."
msgstr "{0} indirme işlemi iptal edildi."
msgid "Manage existing machines"
msgstr "Yüklü makineleri yönet"
msgid "Manager"
msgstr "Yönetici"
msgid "{0} Mbs downloaded"
msgstr "{0} Mbs indirildi"
msgid "Now run {0} to start the VM"
msgstr "SM'yi başlatmak için {0} çalıştırın"
msgid "OK"
msgstr "TAMAM"
msgid "Operating system"
msgstr "İşletim sistemi"
msgid "Search operating system"
msgstr "İşletim sistemi ara"
msgid "Search option"
msgstr "Arama seçeneği"
msgid "Select operating system"
msgstr "İşletim sistemi seç"
msgid "Select option"
msgstr "Seçeneği seçin"
msgid "Select version for {0}"
msgstr "{0} için sürüm seçin"
msgid "Select..."
msgstr "Seç..."
msgid "SPICE port"
msgstr "SPICE port"
msgid "SSH port"
msgstr "SSH port"
msgid "Stop The Virtual Machine?"
msgstr "Sanal makineyi durdur?"
msgid "Target folder : {0}"
msgstr "Hedef klasör : {0}"
msgid "Use SPICE display"
msgstr "SPICE ekran kullan"
msgid "Using SPICE display"
msgstr "SPICE ekran kullanılıyor"
msgid "Version"
msgstr "Sürüm"
msgid "Waiting for download to start"
msgstr "İndirme işlemi bekleniyor"
msgid "You are about to terminate the virtual machine {0}"
msgstr "{0} Sanal makinesini kapatmak üzeresin"
msgid "Language"
msgstr "Dil"
msgid "Directory where the machines are stored"
msgstr "Sanal makinelerin saklandığı dizin"
msgid "Search version"
msgstr "Sürüm ara"

View File

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- "console" by Austin Andrews @Templarian from materialdesignicons.com -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="24" height="24" viewBox="0 0 24 24">
<path fill="#000000" d="M20,19V7H4V19H20M20,3A2,2 0 0,1 22,5V19A2,2 0 0,1 20,21H4A2,2 0 0,1 2,19V5C2,3.89 2.9,3 4,3H20M13,17V15H18V17H13M9.58,13L5.57,9H8.4L11.7,12.3C12.09,12.69 12.09,13.33 11.7,13.72L8.42,17H5.59L9.58,13Z" />
</svg>

Before

Width:  |  Height:  |  Size: 595 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.8 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

View File

@ -1,13 +0,0 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="256" cy="256" r="256" fill="white"/>
<path d="M444.764 297.722C463.935 296.247 479.42 308.782 480.894 327.954C482.369 347.863 468.359 364.085 449.188 365.559C430.754 367.034 414.532 353.024 413.057 334.59C411.582 314.681 424.855 299.934 444.764 297.722Z" fill="#86DA2F"/>
<path d="M211.755 454.78C211.755 435.609 226.502 420.862 244.199 420.862C261.896 420.862 278.855 437.084 278.855 455.518C278.855 473.215 264.108 488.699 247.148 489.436C225.765 489.436 211.755 476.164 211.755 454.78V454.78Z" fill="#24C2FF"/>
<path d="M264.107 239.47C261.157 240.945 259.682 238.733 258.945 236.521C231.663 185.643 239.774 121.492 287.702 83.1493C300.237 72.8262 323.833 70.6141 334.156 80.9372C338.58 84.624 339.318 89.0482 340.055 94.2098C341.53 105.27 343.742 116.331 351.115 125.179C359.226 134.765 369.55 138.452 381.347 137.714C391.67 137.714 401.994 136.239 408.63 148.037C412.317 154.674 410.842 180.481 404.943 185.643C401.994 187.855 399.781 186.38 397.569 185.643C380.61 179.007 362.913 179.007 345.217 181.956C339.318 182.693 336.368 181.219 336.368 174.582C335.631 163.522 333.419 153.199 327.52 143.613C316.459 123.704 295.813 122.967 282.541 141.401C271.48 156.148 268.531 173.845 265.581 191.542C262.632 207.026 263.369 223.248 264.107 239.47C264.107 239.47 263.369 239.47 264.107 239.47V239.47Z" fill="#FFCB12"/>
<path d="M282.543 250.531C281.068 248.319 281.805 246.107 284.017 244.632C326.047 206.289 388.723 198.915 437.389 236.521C449.924 246.844 458.035 268.228 451.399 280.763C448.449 285.924 444.763 288.136 440.338 289.611C430.015 294.035 420.43 298.459 413.793 308.045C407.157 317.631 405.682 328.691 408.632 340.489C410.844 350.075 414.531 360.398 404.945 369.246C399.783 374.408 374.713 378.832 368.077 374.408C365.127 372.196 365.865 369.984 366.602 367.034C368.814 348.6 364.39 331.641 357.754 315.419C355.542 309.52 356.279 306.57 362.178 305.096C372.501 302.146 382.087 296.985 389.46 289.611C405.682 274.126 401.995 254.218 380.612 245.369C363.653 237.996 345.956 239.47 328.997 240.945C312.775 241.682 297.29 246.107 282.543 250.531Z" fill="#86DA2F"/>
<path d="M272.958 269.702C275.17 267.49 276.645 268.228 278.857 269.702C327.523 299.197 352.594 357.448 330.473 414.225C324.574 428.973 305.402 443.72 291.392 440.033C285.494 438.558 282.544 435.609 279.595 431.922C272.958 423.074 265.585 414.963 254.524 411.276C242.726 407.589 232.403 409.801 222.08 415.7C213.232 420.862 204.384 427.498 193.323 420.862C186.687 417.175 175.626 394.317 177.838 386.943C179.313 383.994 182.263 383.994 185.212 383.994C203.646 381.044 218.393 372.196 232.403 360.398C236.828 356.711 240.514 356.711 244.201 361.873C250.1 370.721 257.474 378.095 267.059 383.256C286.231 394.317 304.665 384.731 306.877 362.61C309.089 344.176 302.453 327.954 296.554 311.732C289.918 296.985 281.807 282.975 272.958 269.702V269.702Z" fill="#24C2FF"/>
<path d="M249.362 274.126C246.413 288.874 239.776 302.884 230.928 315.419C204.383 355.236 166.04 371.458 118.849 367.034C101.889 365.56 87.8794 351.55 86.4047 337.54C85.6673 331.641 87.142 327.217 90.8289 322.792C95.9904 316.156 100.415 310.257 102.627 302.146C107.051 285.924 101.152 272.652 89.3541 260.854C73.1321 244.632 75.3442 229.885 94.5157 218.087C96.7278 216.612 99.6772 215.137 102.627 213.663C107.051 211.451 110.738 211.451 112.212 216.612C118.849 233.571 132.121 246.107 146.868 256.43C152.03 260.854 152.03 263.803 147.606 268.965C138.757 278.551 133.596 290.348 132.859 303.621C131.384 319.843 140.97 330.166 157.192 330.166C167.515 330.166 177.1 326.479 185.949 322.055C208.807 310.257 226.504 293.298 243.463 275.601C245.675 274.864 246.413 273.389 249.362 274.126Z" fill="#0069DA"/>
<path d="M128.433 119.28C129.907 119.28 133.594 120.018 137.281 120.755C164.563 125.916 181.523 116.331 190.371 90.523C196.27 73.5636 208.805 68.4021 225.027 77.2504C225.765 77.2504 225.765 77.9878 226.502 77.9878C243.461 87.5735 243.461 89.0482 233.138 103.796C224.29 115.593 219.866 128.866 217.654 142.876C216.179 150.987 213.229 152.461 205.856 149.512C194.058 145.088 181.523 145.088 168.988 149.512C154.978 153.936 149.079 166.471 153.503 180.481C159.402 198.915 175.624 207.026 189.634 216.612C203.644 226.198 219.866 231.359 235.35 237.996C237.562 238.733 241.249 238.733 240.512 242.42C239.774 244.632 236.825 244.632 233.876 244.632C200.694 246.107 168.988 240.945 143.18 218.824C118.847 198.915 101.15 174.582 104.1 140.664C106.312 129.603 114.423 121.492 128.433 119.28V119.28Z" fill="#FF4649"/>
<path d="M67.9701 326.479C50.2734 328.691 32.5766 313.944 31.1019 295.51C29.6272 277.813 44.3744 260.117 61.3338 258.642C80.5052 256.43 98.202 269.702 99.6767 287.399C100.414 304.358 89.3536 325.004 67.9701 326.479V326.479Z" fill="#0069DA"/>
<path d="M377.664 63.9779C396.098 62.5031 413.795 77.2504 415.27 95.6845C416.744 113.381 401.997 130.341 384.3 131.815C365.129 133.29 348.169 119.28 346.695 100.846C345.22 82.4119 358.493 65.4526 377.664 63.9779V63.9779Z" fill="#FFCB12"/>
<path d="M185.21 77.9878C187.422 97.1592 174.149 113.381 154.241 116.331C137.281 118.543 119.584 104.533 117.372 88.3109C115.16 66.9273 126.958 51.4427 146.867 49.2306C165.301 47.0185 182.998 61.0284 185.21 77.9878V77.9878Z" fill="#FF4649"/>
</svg>

Before

Width:  |  Height:  |  Size: 5.2 KiB

View File

@ -1,4 +0,0 @@
<svg width="512" height="512" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
<path style="fill:#fff;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m67.158 295.202 145.106-143.387 100.75 16.506 127.123 126.881-23.123 29.614-330.98-3.594-18.876-26.02"/>
<path style="fill:#0d597f;stroke-width:3.43855" d="M127.914 34.214 0 256l127.914 221.785h256.172L512 256.001 384.086 34.214Zm84.35 117.601 57.767 59.487 42.983-42.98 97.654 97.997 29.469 28.883c-4.264 2.957-8.287 5.393-12.035 7.36-3.748 1.95-7.28 3.462-10.557 4.607-3.267 1.142-6.284 1.916-9.076 2.404-2.785.485-5.328.688-7.635.688-2.785 0-5.171-.276-7.22-.696a27.864 27.864 0 0 1-5.09-1.539 20.203 20.203 0 0 1-3.087-1.59 10.461 10.461 0 0 1-1.146-.822l.355.244-26.271-26.029-45.045-45.045-6.139 6.139-32.95-32.588-2.425 2.437 32.78 32.747-.963.962 51.922 50.891c-4.264 2.957-8.286 5.39-12.034 7.357-3.748 1.95-7.283 3.463-10.556 4.608-3.267 1.141-6.29 1.916-9.078 2.404-2.786.485-5.331.688-7.635.688-2.75 0-5.171-.276-7.22-.696a28.007 28.007 0 0 1-5.089-1.539 20.165 20.165 0 0 1-3.084-1.59 10.342 10.342 0 0 1-1.148-.82l-22.66-23.314-64.99-64.989-23.416 22.454-65.676 65.677c-.07.059-.447.377-1.149.825a19.9 19.9 0 0 1-3.084 1.585c-1.34.568-3.04 1.127-5.09 1.543-2.063.42-4.456.696-7.22.696-2.304 0-4.848-.203-7.633-.692-2.785-.485-5.808-1.258-9.078-2.4-3.267-1.135-6.809-2.644-10.557-4.607-3.748-1.995-7.736-4.403-12-7.36zm-26.721 104.346v53.924a45.613 45.613 0 0 1-7.6-.764c-2.785-.509-5.772-1.293-9.007-2.441a83.227 83.227 0 0 1-10.42-4.608c-3.714-1.96-7.633-4.343-11.829-7.255z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -1,4 +0,0 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="256" cy="256" r="256" fill="white"/>
<path d="M343.543 201.953C340.414 201.954 337.354 201.026 334.751 199.288C332.148 197.55 330.12 195.078 328.921 192.187C327.723 189.296 327.409 186.114 328.019 183.044C328.629 179.974 330.136 177.154 332.349 174.941C334.561 172.727 337.381 171.22 340.45 170.608C343.52 169.997 346.702 170.31 349.594 171.507C352.485 172.704 354.957 174.732 356.697 177.334C358.436 179.936 359.365 182.996 359.365 186.125C359.36 190.321 357.692 194.343 354.726 197.31C351.76 200.277 347.739 201.947 343.543 201.953V201.953ZM168.645 201.953C165.515 201.954 162.456 201.026 159.853 199.288C157.25 197.55 155.221 195.078 154.023 192.187C152.825 189.296 152.511 186.114 153.121 183.044C153.731 179.974 155.237 177.154 157.45 174.941C159.663 172.727 162.482 171.22 165.552 170.608C168.622 169.997 171.803 170.31 174.695 171.507C177.587 172.704 180.059 174.732 181.798 177.334C183.538 179.936 184.466 182.996 184.467 186.125C184.463 190.321 182.795 194.344 179.829 197.311C176.863 200.278 172.841 201.948 168.645 201.953V201.953ZM349.218 106.638L380.841 51.867C381.273 51.1189 381.554 50.2929 381.667 49.4362C381.781 48.5795 381.724 47.7089 381.501 46.8741C381.278 46.0392 380.892 45.2565 380.367 44.5707C379.841 43.8848 379.185 43.3092 378.437 42.8767C377.689 42.4442 376.863 42.1632 376.006 42.05C375.15 41.9367 374.279 41.9932 373.444 42.2164C372.609 42.4396 371.827 42.825 371.141 43.3507C370.455 43.8763 369.879 44.5319 369.447 45.2801L337.425 100.743C312.938 89.5667 285.436 83.3436 256.091 83.3436C226.747 83.3436 199.248 89.5757 174.761 100.743L142.742 45.2801C142.31 44.5317 141.735 43.8758 141.049 43.3498C140.364 42.8237 139.581 42.4378 138.747 42.214C137.912 41.9903 137.042 41.9331 136.185 42.0458C135.329 42.1585 134.503 42.4388 133.754 42.8707C133.006 43.3026 132.35 43.8777 131.824 44.5631C131.298 45.2485 130.912 46.0308 130.688 46.8654C130.465 47.6999 130.407 48.5704 130.52 49.427C130.633 50.2837 130.913 51.1097 131.345 51.858L162.971 106.638C108.668 136.173 71.5257 191.147 66.0928 256.098H446.096C440.657 191.147 403.518 136.173 349.218 106.638" fill="#3DDC84"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -1,15 +0,0 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="paint0_linear_201_2" x1="55.7289" y1="443.382" x2="351.186" y2="153.173" gradientUnits="userSpaceOnUse">
<stop stop-color="#62AEEF"/>
<stop offset="1" stop-color="#98C379"/>
</linearGradient>
<clipPath id="clip0_201_2">
<rect width="512" height="512" fill="white"/>
</clipPath>
</defs>
<g clip-path="url(#clip0_201_2)">
<path d="M256 512C397.385 512 512 397.385 512 256C512 114.615 397.385 0 256 0C114.615 0 0 114.615 0 256C0 397.385 114.615 512 256 512Z" fill="#1D2128"/>
<path d="M256.334 84.9991V85.0061C242.234 119.568 233.733 142.178 218.034 175.712C231.69 182.613 243.642 193.596 258.657 211.209C241.583 197.705 228.273 189.55 213.443 185.361C193.352 227.275 161.875 286.98 98 401.726C116.936 390.621 223.989 362.666 214.266 337.352C211.643 331.031 206.365 330.192 198.242 327.305V311.221C206.38 308.325 211.643 307.496 214.266 301.171C216.894 294.835 213.756 290.522 210.048 282.719L221.422 271.351C229.262 275.078 233.547 278.192 239.874 275.565H239.877C246.199 272.942 247.033 267.68 249.93 259.544H266.017C268.924 267.72 269.75 272.947 276.066 275.565H276.07C282.412 278.192 286.756 275.043 294.526 271.351L305.896 282.719C302.178 290.547 299.058 294.845 301.681 301.171V301.174C304.295 307.48 309.488 308.3 317.706 311.221V327.305C264.526 357.018 388.804 391.47 414.727 401.726C404.961 383.751 396.243 367.546 387.92 352.115C374.809 341.955 361.132 328.733 333.235 314.418C352.409 319.4 366.139 325.147 376.84 331.571C292.209 174.034 285.355 153.101 256.334 84.9991ZM257.972 299.358C246.976 299.358 238.064 308.272 238.064 319.265C238.064 330.258 246.976 339.169 257.972 339.169C268.967 339.169 277.883 330.258 277.883 319.265C277.883 308.272 268.967 299.358 257.972 299.358Z" fill="url(#paint0_linear_201_2)"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -1,4 +0,0 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="256" cy="256" r="256" fill="#fff"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M255.962 3.515c-17.85 43.756-28.616 72.377-48.49 114.832 12.185 12.914 27.142 27.953 51.431 44.938-26.113-10.744-43.926-21.53-57.238-32.723-25.435 53.063-65.284 128.65-146.15 273.923 63.558-36.686 112.827-59.304 158.744-67.934a116.3 116.3 0 0 1-3.017-27.219l.076-2.036c1.008-40.712 22.19-72.02 47.284-69.894 25.093 2.125 44.597 36.872 43.588 77.585-.19 7.66-1.054 15.03-2.564 21.866 45.418 8.882 94.16 31.442 156.86 67.632-12.364-22.757-23.399-43.27-33.937-62.807-16.599-12.863-33.912-29.604-69.229-47.727 24.275 6.306 41.655 13.582 55.203 21.714C301.38 116.222 292.703 89.721 255.963 3.515h-.001Z" fill="#1793D1"/>
</svg>

Before

Width:  |  Height:  |  Size: 798 B

View File

@ -1,4 +0,0 @@
<svg height="512" width="512" xmlns="http://www.w3.org/2000/svg">
<circle style="fill:#fff;fill-opacity:1;stroke-width:8.74298;stroke-dasharray:8.74298,8.74298;stop-color:#000;stroke:none" cx="256" cy="256" r="256"/>
<path style="fill:#658de5;fill-opacity:1;stroke-width:1.93458" d="M57.745 398.121c0-1.311 190.016-362.764 196.386-373.572l4.4-7.466 4.807 8.434c2.643 4.638 22.016 41.515 43.05 81.947 21.035 40.434 63.45 121.726 94.257 180.65 43.229 82.686 55.416 107.515 53.4 108.792-1.436.911-18.746 1.668-38.467 1.684l-35.856.028-10.574-10.722c-26.529-26.9-72.896-51.288-124.715-65.596l-23.215-6.41 29.019-1.457c27.26-1.368 58.013-.444 74.827 2.242 5.62.899 7.393.53 7.393-1.535 0-5.103-71.135-135.134-73.927-135.134-2.034 0-16.395 25.032-72.141 125.749-27.385 49.477-49.943 90.142-50.127 90.366-.825 1.002-78.517 2.976-78.517 1.995z"/>
</svg>

Before

Width:  |  Height:  |  Size: 846 B

View File

@ -1,21 +0,0 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="paint0_linear_202_10" x1="256" y1="471" x2="256.6" y2="90.8969" gradientUnits="userSpaceOnUse">
<stop stop-color="#E3117B"/>
<stop offset="1" stop-color="#FBBC38"/>
</linearGradient>
<clipPath id="clip0_202_10">
<rect width="512" height="512" fill="white"/>
</clipPath>
</defs>
<g clip-path="url(#clip0_202_10)">
<path d="M475.97 88L256 469L36.0296 88L475.97 88Z" fill="url(#paint0_linear_202_10)" stroke="#F8922E" stroke-width="2"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M309.455 70.4153C335.848 83.4385 341.583 118.873 320.623 139.423C317.647 142.341 312.477 146 309.136 147.554C305.795 149.109 302.847 151.067 302.585 151.905C302.323 152.744 300.727 160.977 299.038 170.201L295.966 186.971L299.435 190.021C308.205 197.731 308.263 208.445 299.575 215.617C281.37 230.644 249.378 211.821 262.438 193.767C264.102 191.467 266.794 188.896 268.419 188.055L271.373 186.525L271.817 166.928C272.246 147.976 272.191 147.284 270.151 145.868C264.956 142.263 256.012 132.058 253.809 127.219C243.32 104.181 254.627 76.6611 277.988 68.3743C281.992 66.9534 285.6 66.5662 292.936 66.7684C301.547 67.0063 303.356 67.4057 309.455 70.4153ZM227.285 175.307L240.325 177.716L237.326 180.311C235.676 181.738 233.413 184.278 232.295 185.955C229.448 190.23 210.679 247.183 210.692 251.513C210.703 255.628 213.58 260.86 217.103 263.171C218.448 264.053 234.57 267.969 252.93 271.871C271.289 275.773 292.705 280.381 300.521 282.112C319.447 286.303 324.058 286.145 329.805 281.115C333.563 277.826 334.601 273.56 337.07 251.269C338.449 238.825 340.024 225.214 340.571 221.021C341.893 210.888 341.88 201.032 340.544 198.532C339.489 196.558 339.545 196.548 342.635 198.148C351.572 202.775 358.629 212.894 359.572 222.431C360.271 229.505 353.1 311.934 351.32 317.289C347.122 329.912 333.834 339.94 321.301 339.94C318.031 339.94 293.433 335.01 193.954 314.413C180.41 311.609 167.257 308.297 164.319 306.95C157.446 303.798 150.32 296.576 146.923 289.319C144.615 284.39 144.213 282.172 144.213 274.382C144.213 266.178 144.544 264.554 147.428 258.628L150.645 252.021L150.727 256.382C151.091 275.533 178.714 283.918 194.782 269.754C197.779 267.113 199.841 264.273 200.507 261.872C201.985 256.546 201.806 246.941 200.158 243.095C198.267 238.681 192.879 233.891 187.442 231.787C181.695 229.564 169.617 229.492 164.459 231.65C162.363 232.527 160.484 233.08 160.283 232.878C159.879 232.474 180.468 190.394 182.886 186.681C188.455 178.13 200.195 171.956 209.679 172.592C212.191 172.76 220.114 173.982 227.285 175.307ZM253.585 220.782C258.11 225.459 267.138 229.732 275.745 231.271C289.428 233.721 304.337 229.209 312.228 220.232L316.395 215.491L315.726 224.609C314.78 237.497 311.893 243.324 303.879 248.51C296.365 253.373 289.507 254.962 278.569 254.372C267.227 253.761 259.164 250.192 252.409 242.79C246.409 236.216 245.437 232.682 246.024 219.576L246.477 209.49L248.401 213.453C249.46 215.632 251.792 218.93 253.585 220.782ZM180.785 237.74C183.635 238.932 184.305 239.764 184.305 242.11C184.305 243.704 183.795 245.518 183.172 246.142C182.339 246.977 182.473 247.896 183.679 249.621C184.582 250.91 185.32 252.628 185.32 253.438C185.32 256.101 182.07 258.628 178.642 258.628C173.713 258.628 164.871 256.373 164.337 254.979C163.9 253.84 170.119 240.333 172.366 237.538C173.711 235.866 176.463 235.932 180.785 237.74ZM172.631 241.352C171.712 243.131 171.185 244.812 171.459 245.086C171.733 245.361 173.777 245.83 176.001 246.129C179.449 246.592 180.223 246.338 181.259 244.4C182.708 241.689 181.309 239.836 177.019 238.784C174.689 238.211 174.064 238.576 172.631 241.352ZM169.293 248.761C168.754 249.437 168.01 250.98 167.64 252.193C167.03 254.187 167.512 254.52 172.692 255.681C178.999 257.094 181.767 256.259 181.767 252.94C181.767 249.779 171.283 246.266 169.293 248.761ZM347.334 299.792C346.88 300.91 345.591 304.215 344.469 307.135C341.855 313.936 334.894 320.98 328.702 323.093C322.867 325.084 312.73 327.492 304.073 325.513C300.445 324.683 295.877 323.769 293.923 323.479C291.969 323.189 286.032 322.076 280.728 321.005C269.063 318.649 239.596 311.284 218.053 308.041C216.796 307.852 215.769 308.038 215.769 308.456C215.769 309.681 246.475 317.657 282.758 325.855C305.984 331.104 304.316 330.807 314.223 331.447C321.555 331.921 323.764 331.663 328.94 329.727C340.401 325.442 349.371 312.679 348.495 301.907C348.227 298.619 347.987 298.18 347.334 299.792Z" fill="black"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M224.887 168.113L237.927 170.522L234.927 173.117C233.278 174.544 231.015 177.084 229.897 178.761C227.05 183.036 208.281 239.989 208.294 244.319C208.305 248.434 211.182 253.666 214.705 255.977C216.05 256.859 232.172 260.774 250.532 264.676C268.891 268.578 290.307 273.187 298.123 274.918C317.049 279.108 321.66 278.951 327.407 273.92C331.164 270.631 332.203 266.365 334.672 244.075C336.051 231.631 337.626 218.019 338.173 213.827C339.495 203.694 339.482 193.838 338.146 191.338C337.091 189.364 337.147 189.354 340.236 190.953C349.173 195.581 356.231 205.699 357.174 215.236C357.873 222.31 350.702 304.74 348.922 310.094C344.724 322.718 331.435 332.746 318.902 332.746C315.633 332.746 291.035 327.815 191.556 307.219C178.012 304.415 164.859 301.102 161.921 299.755C155.048 296.604 147.922 289.382 144.524 282.125C142.216 277.195 141.814 274.977 141.814 267.188C141.814 258.983 142.146 257.359 145.03 251.434L148.246 244.827L148.329 249.187C148.693 268.338 176.316 276.724 192.384 262.56C195.38 259.918 197.443 257.079 198.109 254.678C199.587 249.352 199.408 239.747 197.76 235.901C195.869 231.487 190.481 226.696 185.044 224.592C179.297 222.369 167.219 222.297 162.06 224.456C159.964 225.332 158.086 225.885 157.885 225.684C157.481 225.279 178.07 183.199 180.488 179.486C186.057 170.935 197.797 164.762 207.281 165.398C209.793 165.566 217.716 166.787 224.887 168.113ZM208.007 262.435C205.848 259.535 204.5 250.704 205.752 247.665C206.355 246.2 206.784 246.639 207.941 249.909C211.542 260.084 211.215 259.965 266.15 271.226C299.292 278.019 315.69 280.959 318.61 280.633C323.04 280.137 328.526 276.599 329.603 273.54C330.647 270.585 332.419 271.462 331.657 274.557C329.645 282.729 323.44 288.024 315.877 288.024C313.246 288.024 293.203 284.347 271.337 279.851L222.764 269.908C215.003 268.434 210.94 266.376 208.007 262.435ZM342.071 299.94C343.193 297.02 344.482 293.716 344.936 292.598C345.588 290.986 345.829 291.425 346.097 294.713C346.973 305.485 338.002 318.248 326.542 322.533C321.366 324.468 319.157 324.726 311.825 324.253C301.918 323.612 303.586 323.909 280.36 318.661C244.077 310.462 213.371 302.486 213.371 301.262C213.371 300.844 214.398 300.658 215.655 300.847C237.198 304.089 266.665 309.057 278.33 311.413C283.634 312.484 289.571 313.597 291.525 313.886C293.479 314.176 298.046 315.091 301.675 315.92C310.332 317.899 320.469 317.89 326.304 315.899C332.496 313.786 339.457 306.741 342.071 299.94Z" fill="white"/>
<path d="M251.187 213.588C255.712 218.264 264.74 222.537 273.347 224.077C287.03 226.527 301.939 222.015 309.829 213.038L313.997 208.296L313.328 217.414C312.382 230.302 309.495 236.13 301.481 241.315C293.967 246.179 287.109 247.767 276.17 247.178C264.829 246.567 256.766 242.997 250.011 235.596C244.011 229.022 243.039 225.488 243.626 212.381L244.079 202.295L246.003 206.258C247.062 208.438 249.394 211.736 251.187 213.588Z" fill="white"/>
<path d="M307.056 63.2209C333.45 76.2441 339.185 111.679 318.224 132.229C315.248 135.147 310.079 138.806 306.738 140.36C303.396 141.915 300.449 143.873 300.187 144.711C299.925 145.55 298.329 153.782 296.64 163.006L293.568 179.777L297.037 182.826C305.807 190.537 305.865 201.251 297.177 208.422C278.972 223.45 246.98 204.627 260.04 186.573C261.704 184.273 264.396 181.702 266.021 180.861L268.975 179.331L269.419 159.734C269.848 140.782 269.793 140.089 267.753 138.674C262.557 135.068 253.614 124.864 251.411 120.025C240.922 96.9869 252.229 69.4667 275.59 61.18C279.594 59.759 283.202 59.3718 290.538 59.574C299.149 59.8119 300.957 60.2113 307.056 63.2209Z" fill="white"/>
<path d="M200.413 255.993C197.938 267.654 184.379 274.655 170.128 271.631C149.054 267.159 148.376 255.993 148.376 240.83C150.85 229.169 164.409 222.168 178.661 225.192C200.413 229.807 202.041 239.581 200.413 255.993Z" fill="#831308"/>
<path d="M200.413 248.799C197.938 260.459 184.379 267.46 170.128 264.436C155.876 261.412 146.329 249.508 148.803 237.848C151.277 226.187 164.836 219.186 179.088 222.21C193.339 225.234 202.887 237.138 200.413 248.799Z" fill="#BF1617"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M179.586 232.944C182.436 234.136 183.106 234.968 183.106 237.314C183.106 238.908 182.597 240.722 181.974 241.346C181.14 242.181 181.274 243.099 182.481 244.824C183.383 246.114 184.121 247.832 184.121 248.642C184.121 251.305 180.871 253.832 177.444 253.832C172.515 253.832 163.672 251.576 163.138 250.183C162.702 249.043 168.921 235.536 171.168 232.741C172.513 231.069 175.264 231.135 179.586 232.944ZM170.261 240.29C169.987 240.016 170.513 238.335 171.433 236.556C172.866 233.78 173.49 233.415 175.821 233.987C180.111 235.039 181.51 236.892 180.06 239.604C179.025 241.541 178.251 241.795 174.803 241.333C172.579 241.034 170.535 240.565 170.261 240.29ZM166.441 247.397C166.812 246.184 167.556 244.64 168.095 243.964C170.085 241.47 180.569 244.983 180.569 248.144C180.569 251.462 177.801 252.298 171.494 250.885C166.313 249.723 165.831 249.391 166.441 247.397Z" fill="white"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 9.2 KiB

View File

@ -1,61 +0,0 @@
<svg width="512" height="512" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient xlink:href="#a" id="d" x1="237.186" y1="296.2" x2="237.072" y2="304.08" gradientUnits="userSpaceOnUse" gradientTransform="translate(-232.187 -115.547) scale(1.23382)"/>
<linearGradient id="a">
<stop style="stop-color:#001313;stop-opacity:1" offset="0"/>
<stop style="stop-color:#001313;stop-opacity:0" offset="1"/>
</linearGradient>
<linearGradient xlink:href="#b" id="e" x1="994.809" y1="1533.278" x2="982.344" y2="1556.765" gradientUnits="userSpaceOnUse" gradientTransform="translate(-2099.423 -3485.723) scale(2.31936)"/>
<linearGradient id="b">
<stop style="stop-color:#020202;stop-opacity:1" offset="0"/>
<stop style="stop-color:#020202;stop-opacity:0" offset="1"/>
</linearGradient>
<linearGradient xlink:href="#b" id="f" x1="1022.515" y1="1582.428" x2="1018.597" y2="1575.638" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.3811 0 0 2.2591 -2178.269 -3438.755)"/>
<linearGradient xlink:href="#b" id="g" x1="940.433" y1="1612.467" x2="930.589" y2="1594.47" gradientUnits="userSpaceOnUse" gradientTransform="translate(-2099.423 -3485.723) scale(2.31936)"/>
<linearGradient xlink:href="#b" id="h" x1="965.605" y1="1571.427" x2="951.661" y2="1571.345" gradientUnits="userSpaceOnUse" gradientTransform="translate(-2099.423 -3485.723) scale(2.31936)"/>
<linearGradient xlink:href="#b" id="i" x1="946.234" y1="1655.864" x2="961.373" y2="1655.846" gradientUnits="userSpaceOnUse" gradientTransform="translate(-2099.423 -3485.723) scale(2.31936)"/>
<linearGradient xlink:href="#a" id="j" x1="366.154" y1="427.324" x2="350.922" y2="419.642" gradientUnits="userSpaceOnUse" gradientTransform="translate(-296.382 -110.159) scale(1.23382)"/>
<linearGradient xlink:href="#b" id="k" x1="936.335" y1="1628.774" x2="933.378" y2="1622.977" gradientUnits="userSpaceOnUse" gradientTransform="translate(-2099.423 -3485.723) scale(2.31936)"/>
<linearGradient xlink:href="#b" id="l" x1="950.33" y1="1618.617" x2="941.971" y2="1645.767" gradientUnits="userSpaceOnUse" gradientTransform="translate(-2099.423 -3485.723) scale(2.31936)"/>
<linearGradient xlink:href="#b" id="m" x1="1008.201" y1="1681.329" x2="1015.731" y2="1668.374" gradientUnits="userSpaceOnUse" gradientTransform="translate(-2099.423 -3485.723) scale(2.31936)"/>
<linearGradient xlink:href="#c" id="n" x1="1148.342" y1="1585.508" x2="1145.437" y2="1629.975" gradientUnits="userSpaceOnUse" gradientTransform="translate(-282.868 -491.668) scale(.34992)"/>
<linearGradient id="c">
<stop style="stop-color:#008066;stop-opacity:0" offset="0"/>
<stop style="stop-color:#0fc;stop-opacity:1" offset="1"/>
</linearGradient>
<linearGradient xlink:href="#c" id="o" gradientUnits="userSpaceOnUse" gradientTransform="translate(-211.152 -375.487) scale(.26565)" x1="1148.342" y1="1585.508" x2="1145.437" y2="1629.975"/>
<linearGradient xlink:href="#c" id="p" gradientUnits="userSpaceOnUse" gradientTransform="translate(-217.309 -786.915) scale(.55423)" x1="1148.342" y1="1585.508" x2="1145.437" y2="1629.975"/>
<linearGradient xlink:href="#a" id="q" x1="348.048" y1="194.78" x2="361.21" y2="187.235" gradientUnits="userSpaceOnUse" gradientTransform="translate(-296.382 -110.159) scale(1.23382)"/>
</defs>
<circle style="fill:#fff;stroke-width:117.924;stroke-dasharray:117.924,117.924;stop-color:#000" cx="256" cy="256" r="256"/>
<path style="fill:#fff;fill-opacity:1;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M123.982 65.458h230.052l-58.24 100.864h-124.76l-51.983 90.04 52.7 91.298h243.367l-59.723 103.436H119.04L5.004 253.576l109.173-189.09Z"/>
<path style="fill:#0a8;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m114.177 64.486 181.618 101.84 58.24-100.868zm57.579 283.174-52.713 103.436h236.36l59.719-103.436Z"/>
<path style="fill:#0cf;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m114.177 64.486 181.618 101.84h-124.76l-51.984 90.04 52.7 91.294-52.712 103.436L5 253.576l109.177-189.09"/>
<path style="fill:url(#d);fill-opacity:1;stroke:none;stroke-width:1.2338px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m5.004 253.58 114.043 2.787 3.19 5.461-113.651-2.289z"/>
<path style="fill:url(#e);fill-opacity:1;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M295.795 166.326 114.177 64.486l-13.812 24.91 137.677 76.35z"/>
<path style="fill:url(#f);fill-opacity:1;stroke:none;stroke-width:.613651px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M170.131 165.374 355.124 60.9l-59.787 98.254Z"/>
<path style="fill:#0a8;fill-opacity:1;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m171.035 166.326 183-100.868-58.24 100.868z"/>
<path style="fill:#0a8;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m5.004 253.58 166.03-87.254-51.983 90.04z"/>
<path style="fill:url(#g);fill-opacity:1;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m5.004 253.58 166.03-87.254-11.218-17.544L16.734 231.72Z"/>
<path style="fill:#0a8;fill-opacity:1;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m171.035 166.326-56.858-101.84 4.87 191.88z"/>
<path style="fill:#0cf;fill-opacity:1;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m171.756 347.66 183.648 103.436 59.718-103.436Z"/>
<path style="fill:url(#h);fill-opacity:1;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m114.177 64.486-13.812 24.91 1.325 166.152 17.357.819z"/>
<path style="fill:#0a8;fill-opacity:1;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m119.047 256.367-87.067 43.66L119.04 451.1Z"/>
<path style="fill:url(#i);fill-opacity:1;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M119.047 256.367v194.725l21.337-41.632 1.645-114.148z"/>
<path style="fill:url(#j);fill-opacity:1;stroke:none;stroke-width:1.2338px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m119.04 451.096-8.214-14.79 52.9-102.159 8.026 13.513z"/>
<path style="fill:url(#k);fill-opacity:1;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m31.98 300.028 87.071-43.661-17.361-.819-75.544 36.093z"/>
<path style="fill:#0a8;fill-opacity:1;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m31.98 300.028 139.776 47.632-52.709-91.293Z"/>
<path style="fill:url(#l);fill-opacity:1;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M171.756 347.66 31.98 300.028l15.178 26.206 114.87 41.725z"/>
<path style="fill:url(#m);fill-opacity:1;stroke:none;stroke-width:.613663px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m171.756 347.66 183.648 103.436 22.008-39.18L259.22 346.65Z"/>
<g transform="translate(-18.702 .542) scale(4.0517)">
<circle style="fill:#0cf;fill-opacity:1;stroke:none;stroke-width:.0925842;stroke-opacity:1" cx="117.952" cy="75.441" r="9.689"/>
<circle style="fill:url(#n);fill-opacity:1;stroke:none;stroke-width:.0925842;stroke-opacity:1" cx="118.085" cy="75.341" r="9.689"/>
</g>
<g transform="translate(-.867 -8.388) scale(4.0517)">
<circle style="fill:#0cf;fill-opacity:1;stroke:none;stroke-width:.070287;stroke-opacity:1" cx="93.138" cy="55.045" r="7.356"/>
<circle style="fill:url(#o);fill-opacity:1;stroke:none;stroke-width:.070287;stroke-opacity:1" cx="93.239" cy="54.969" r="7.356"/>
</g>
<circle style="fill:#0cf;fill-opacity:1;stroke:none;stroke-width:.14664;stroke-opacity:1" cx="417.536" cy="111.312" r="15.348"/>
<circle style="fill:url(#p);fill-opacity:1;stroke:none;stroke-width:.14664;stroke-opacity:1" cx="417.747" cy="111.154" r="15.348"/>
<path style="fill:url(#q);fill-opacity:1;stroke:none;stroke-width:1.2338px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m171.035 166.326-56.858-101.84 14.485-.207 53.442 95.175z"/>
</svg>

Before

Width:  |  Height:  |  Size: 8.1 KiB

View File

@ -1,12 +0,0 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<clipPath id="clip0_205_13">
<rect width="512" height="512" fill="white"/>
</clipPath>
</defs>
<g clip-path="url(#clip0_205_13)">
<circle cx="256" cy="256" r="256" fill="#A04E8B"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M256.067 463H257.892L288.073 432.647L318.254 402.295H359.596H400.938V361.045V319.795L432.035 288.536L463.133 257.277L432.035 226.017L400.938 194.758V153.508V112.258H359.73H318.521L287.294 81.1292L256.067 50L224.839 81.1292L193.612 112.258H152.403H111.195V153.508V194.758L80.0976 226.017L49 257.277L80.0976 288.536L111.195 319.795V361.045V402.295H152.537H193.879L224.06 432.647L254.242 463H256.067ZM239.221 398.922H256.067H272.912V367.471V336.02L264.489 328.099L256.067 320.179L247.644 328.099L239.221 336.02V367.471V398.922ZM166.518 368.668L189.393 345.945L212.268 323.222V312.17V301.119H201.079H189.89L167.186 323.514L144.481 345.909L155.499 357.288L166.518 368.668ZM341.784 368.57H343.405H345.027L356.186 357.743L367.345 346.916L344.645 324.018L321.945 301.119H310.905H299.865V313.675V326.232L320.824 347.401L341.784 368.57ZM114.564 274.139H145.984H177.403L185.315 265.708L193.228 257.277L185.315 248.845L177.403 240.414H145.984H114.564V257.277V274.139ZM334.73 274.139H366.15H397.569V257.277V240.414H366.15H334.73L326.818 248.845L318.905 257.277L326.818 265.708L334.73 274.139ZM189.528 213.434H200.898H212.268V202.383V191.332L189.393 168.609L166.518 145.885L155.465 157.3L144.413 168.715L166.97 191.074L189.528 213.434ZM253.872 193.199H255.594H257.317L265.114 185.866L272.912 178.533V147.082V115.631H256.067H239.221V146.609V177.588L246.546 185.393L253.872 193.199Z" fill="white"/>
<path d="M247.93 289.439L239.222 295.15V284.644V274.139H229.115H219.008V271.875V269.611L224.584 263.444L230.159 257.276L224.584 251.109L219.008 244.942V242.678V240.414H229.115H239.222V229.908V219.403L247.93 225.114L256.638 230.826L262.514 225.502L268.39 220.179H270.652H272.913V230.296V240.414H283.408H293.903L288.384 248.845L282.865 257.276L288.384 265.708L293.903 274.139H283.408H272.913V284.257V294.374H270.652H268.39L262.514 289.051L256.638 283.727L247.93 289.439ZM312.416 213.434H299.866V200.871V188.309L322.492 165.486L345.118 142.662L330.213 127.46L315.309 112.258H358.124H400.939V155.117V197.976L385.753 183.056L370.566 168.137L347.766 190.785L324.965 213.434H312.416Z" fill="#EDA527"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -1,4 +0,0 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg">
<circle style="fill:#fff;stroke-width:23.9308;stroke-dasharray:23.9308,23.9308;stop-color:#000" cx="256" cy="256" r="256"/>
<path d="M284.565 11c-7.59.637-15.14 1.014-22.6 1.977l3.283.45c5.49-2.01 13.493-1.103 19.317-2.427Zm-33.155 3.495c-12.343.75-29.466 7.183-24.18 1.332-20.133 8.982-55.888 21.594-75.953 40.408l-.636-4.218c-9.194 11.038-40.099 32.96-42.561 47.256l-2.454.574c-4.784 8.101-7.88 17.29-11.675 25.627-6.257 10.663-9.176 4.1-8.286 5.771-12.308 24.955-18.421 45.918-23.703 63.115 3.764 5.625.094 33.868 1.518 56.469-6.181 111.618 78.338 219.995 170.722 245.017 13.541 4.844 33.675 4.657 50.804 5.154-20.21-5.779-22.823-3.065-42.509-9.928-14.2-6.687-17.307-14.32-27.365-23.05l3.98 7.033c-19.727-6.98-11.475-8.639-27.524-13.722l4.253-5.55c-6.393-.484-16.937-10.779-19.82-16.476l-6.99.273c-8.403-10.37-12.882-17.836-12.557-23.624l-2.259 4.024c-2.562-4.396-30.922-38.888-16.21-30.86-2.734-2.498-6.36-4.068-10.3-11.224l2.992-3.424c-7.08-9.11-13.027-20.784-12.575-24.674 3.777 5.1 6.39 6.055 8.984 6.927-17.879-44.36-18.881-2.445-32.422-45.156l2.868-.23c-2.196-3.307-3.528-6.906-5.295-10.43l1.244-12.425c-12.872-14.883-3.595-63.282-1.738-89.827 1.288-10.794 10.739-22.283 17.932-40.302l-4.377-.75c8.376-14.612 47.825-58.685 66.097-56.417 8.85-11.119-1.756-.04-3.486-2.841 19.442-20.12 25.557-14.216 38.678-17.835 14.152-8.4-12.145 3.276-5.436-3.203 24.462-6.249 17.33-14.204 49.242-17.376 3.366 1.916-7.81 2.96-10.616 5.445 20.382-9.972 64.499-7.706 93.154 5.533 33.25 15.538 70.607 61.47 72.08 104.687l1.676.45c-.85 17.179 2.63 37.047-3.397 55.296l4.103-8.64c.484 13.13-3.84 19.503-7.739 30.781l-7.016 3.503c-5.742 11.151.556 7.086-3.556 15.955-8.964 7.97-27.202 24.942-33.04 26.492-4.26-.095 2.886-5.029 3.822-6.963-12 8.242-9.63 12.37-27.984 17.376l-.538-1.191c-45.264 21.294-108.144-20.906-107.317-78.487-.483 3.655-1.37 2.74-2.374 4.218-2.336-29.626 13.685-59.383 40.7-71.533 26.422-13.08 57.398-7.711 76.324 9.928-10.396-13.618-31.088-28.054-55.613-26.703-24.023.38-46.498 15.646-53.998 32.219-12.308 7.748-13.734 29.865-19.097 33.913-7.215 53.03 13.565 75.944 48.73 102.896 5.535 3.732 1.562 4.297 2.312 7.139-11.684-5.472-22.38-13.732-31.177-23.844 4.667 6.831 9.7 13.472 16.21 18.69-11.015-3.732-25.724-26.686-30.021-27.62 18.99 33.999 77.042 59.626 107.44 46.911-14.065.52-31.936.283-47.74-5.56-6.638-3.415-15.663-10.483-14.05-11.807 41.487 15.498 84.34 11.736 120.237-17.04 9.131-7.112 19.108-19.212 21.99-19.38-4.341 6.53.74 3.14-2.594 8.905 9.1-14.675-3.953-5.975 9.407-25.345l4.933 6.795c-1.834-12.18 15.127-26.975 13.405-46.241 3.89-5.892 4.342 6.345.212 19.9 5.729-15.037 1.51-17.456 2.983-29.863 1.59 4.17 3.685 8.598 4.756 12.999-3.732-14.531 3.83-24.463 5.7-32.908-1.843-.818-5.767 6.425-6.662-10.74.131-7.454 2.074-3.91 2.824-5.744-1.464-.84-5.297-6.556-7.633-17.517 1.694-2.576 4.526 6.68 6.83 7.06-1.482-8.716-4.035-15.366-4.139-22.053-6.732-14.07-2.382 1.87-7.845-6.045-7.166-22.352 5.945-5.18 6.83-15.338 10.862 15.737 17.058 40.128 19.9 50.23-2.169-12.316-5.675-24.257-9.954-35.801 3.298 1.387-5.313-25.336 4.289-7.634-10.257-37.736-43.897-72.998-74.842-89.544 3.786 3.466 8.564 7.816 6.847 8.498-15.389-9.163-12.682-9.876-14.887-13.749-12.538-5.1-13.36.411-21.664.01-23.63-12.534-28.184-11.2-49.93-19.053l.988 4.624c-15.656-5.214-18.237 1.978-35.158.018-1.03-.805 5.422-2.917 10.731-3.69-15.136 1.998-14.425-2.976-29.236.557 3.65-2.562 7.507-4.256 11.401-6.433zm12.231 2.823c4.333.778 9.362 1.375 8.657 2.41 4.74-1.04 5.815-1.998-8.657-2.41zm8.657 2.41-3.062.635 2.85-.256zm-199.782 96.18c-.004.265.02.486.062.67a19.7 19.7 0 0 0-.062-.67zm.062.67c.824 11.214-8.659 15.436 2.17 7.863 5.596-12.604-1.45-4.669-2.17-7.862zm-9.054 36.517c-7.03 8.987-3.24 10.901-3.98 17.014 2.544-7.807 3.008-12.496 3.98-17.014zm289.335 54.28c-1.004.026-2.29 2.576-2.939 5.366 1.514.787 2.71 10.309 4.175 4.422.49-7.311-.232-9.812-1.236-9.787zm88.785 24.64-1.191 2.991c-2.187 15.534-6.908 30.905-14.146 45.156 7.997-15.037 13.169-31.484 15.337-48.148zm-94.036 5.47c-1.084 5.387-4.008 10.034-6.76 14.941-15.176 9.556-1.427-5.675-.008-11.463-16.32 20.54-2.241 12.317-2.833 18.055 4.834-6.673 8.359-13.978 9.601-21.532zm-33.092 31.364c-6.601 1.617-13.317 1.651-20.085 1.032-8.12.113 1.534 4.185 12.134 5.816a108.477 108.477 0 0 0 7.95-6.848zm-102.455 1.059c1.79 6.583 5.449 12.233 8.86 17.984l-2.497-7.36c-2.824-3.121-4.492-6.879-6.363-10.624zm-6.257 11.119-1.138 5.692c5.336 7.247 9.574 15.098 16.387 20.764-4.902-9.57-8.548-13.52-15.249-26.456z" style="fill:#a80030;fill-opacity:1;stroke-width:4.51824"/>
</svg>

Before

Width:  |  Height:  |  Size: 4.5 KiB

View File

@ -1,12 +0,0 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<clipPath id="clip0_205_37">
<rect width="512" height="512" fill="white"/>
</clipPath>
</defs>
<g clip-path="url(#clip0_205_37)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M327.863 10.3594C192.184 -29.3212 50.0573 48.4773 10.3583 184.151C-29.3215 319.816 48.4857 461.959 184.167 501.64C319.816 541.32 461.976 463.531 501.644 327.863C541.319 192.168 463.51 50.0401 327.863 10.3594Z" fill="#EFF4F8"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M326.228 15.9427C193.63 -22.83 54.7317 53.1918 15.9418 185.788C-22.8376 318.367 53.2026 457.282 185.798 496.059C318.366 534.838 457.296 458.814 496.058 326.233C534.838 193.622 458.795 54.7241 326.23 15.947L326.228 15.9427Z" fill="white"/>
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M331.614 47.7265C299.843 36.1366 267.293 33.0067 235.708 35.9445C199.087 38.8343 181.209 50.1754 182.267 48.1237C122.382 69.5028 71.7521 115.489 48.3018 179.984C6.54496 294.842 65.6867 421.859 180.372 463.677C295.103 505.497 421.932 446.272 463.689 331.417C505.459 216.559 446.317 89.5592 331.614 47.7265V47.7265ZM187.922 442.909C175.698 438.441 164.279 432.755 153.524 426.264C206.966 430.37 276.705 418.053 323.735 374.04C323.735 374.04 413.388 302.405 348.53 184.849C348.53 184.849 358.985 232.226 345.656 271.202C345.656 271.202 332.944 324.199 276.437 339.597C193.21 362.275 98.3773 304.02 58.7357 275.798C55.7519 246.787 58.4044 216.812 69.0358 187.565C84.7939 144.232 114.42 110.421 150.619 87.7127C141.572 151.023 148.725 209.31 159.008 233.726C172.808 266.465 196.795 304.649 243.59 309.544C290.382 314.455 316.187 270.665 316.187 270.665C340.192 234.184 343.951 181.802 343.588 180.539C343.222 179.26 337.191 175.802 337.191 175.802C321.036 241.179 294.394 263.021 294.394 263.021C252.386 303.575 222.633 275.449 222.633 275.449C190.653 241.101 213.046 185.275 213.046 185.275C225.57 147.249 262.068 91.5956 303.426 63.2975C310.313 65.0022 317.245 66.0608 324.052 68.5402C349.082 77.6681 371.003 91.4232 389.543 108.321C359.301 119.359 310.47 142.698 310.47 142.698C233.071 175.296 227.844 224.598 227.844 224.598C219.838 275.419 260.155 253.911 260.155 253.911C301.659 233.695 322.047 170.699 322.047 170.699C309.096 168.235 298.894 172.168 298.894 172.168C282.329 213.054 248.532 229.873 248.532 229.873C235.237 236.917 232.141 224.471 232.141 224.471C229.898 215.156 241.757 213.558 241.757 213.558C260.17 206.405 271.952 187.061 274.622 179.148C277.276 171.221 282.218 170.605 282.218 170.605C307.455 162.552 330.463 160.751 330.463 160.751C361.795 156.896 409.757 171.839 409.757 171.839C420.511 176.165 430.824 179.402 439.984 181.99C457.56 225.91 460.34 275.923 442.921 323.867C405.367 427.229 291.187 480.542 187.92 442.909H187.922Z" fill="#00B7FF"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -1,4 +0,0 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg">
<circle style="fill:#fff;stroke-width:3.24137;stroke-dasharray:3.24137,3.24137;stop-color:#000" cx="256" cy="256" r="256"/>
<path style="color:#000;font-style:normal;font-variant:normal;font-weight:100;font-stretch:normal;font-size:medium;line-height:150%;font-family:'Fira Sans';-inkscape-font-specification:'Fira Sans Thin';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;letter-spacing:0;word-spacing:0;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000;solid-opacity:1;fill:#000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:14.5964;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="M45.411 116.236c512.94 122.409 27.71 221.943 27.71 221.943-9.559 1.529-17.271 6.507-21.913 14.074-5.215 8.5-5.656 19.988-.786 28.063 5.926 9.827 13.433 13.225 19.91 14.688 10.188 2.304 18.412-1.366 18.412-1.366s112.586-33.493 185.488-77.86c3.123 7.323 7.037 13.917 11.872 19.717 14.875 17.841 36.644 27.308 60.988 27.308h104.886c8.067 0 14.606-6.538 14.61-14.606v-3.677c0-8.069-6.541-14.61-14.61-14.612h-104.57c-16.906 0-27.806-4.974-36.996-15.916-3.487-4.15-6.517-9.806-8.892-16.993 20.527-16.283 33.855-33.492 33.42-50.71-.311-12.254-8.84-27.322-27.792-43.098 1.038-1.675 2.124-3.205 3.264-4.562 9.19-10.942 20.09-15.922 36.995-15.922h104.57c8.069 0 14.612-6.542 14.612-14.611v-3.673c0-8.068-6.542-14.61-14.611-14.61H347.092c-24.383 0-46.191 9.705-61.022 27.822-1.923 2.31-3.681 4.76-5.323 7.311-44.633-26.188-119.628-52.144-235.335-68.71Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -1,57 +0,0 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="paint0_radial_205_48" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(257.185 161.89) scale(141.732 141.696)">
<stop stop-color="white"/>
<stop offset="0.0418" stop-color="#F7F9D8"/>
<stop offset="0.0906" stop-color="#EFF2B2"/>
<stop offset="0.1432" stop-color="#E8ED91"/>
<stop offset="0.1994" stop-color="#E2E976"/>
<stop offset="0.2607" stop-color="#DDE562"/>
<stop offset="0.3295" stop-color="#DAE353"/>
<stop offset="0.412" stop-color="#D9E14B"/>
<stop offset="0.5449" stop-color="#D8E148"/>
<stop offset="0.6791" stop-color="#D6E048"/>
<stop offset="0.7467" stop-color="#CFDD47"/>
<stop offset="0.7994" stop-color="#C2D946"/>
<stop offset="0.8444" stop-color="#B1D245"/>
<stop offset="0.8845" stop-color="#99CA44"/>
<stop offset="0.9206" stop-color="#7BC143"/>
<stop offset="0.927" stop-color="#75C044"/>
<stop offset="1" stop-color="#073800"/>
</radialGradient>
<clipPath id="clip0_205_48">
<rect width="512" height="512" fill="white"/>
</clipPath>
</defs>
<g clip-path="url(#clip0_205_48)">
<path d="M257.185 303.586C335.461 303.586 398.917 240.147 398.917 161.891C398.917 83.6342 335.461 20.1948 257.185 20.1948C178.909 20.1948 115.453 83.6342 115.453 161.891C115.453 240.147 178.909 303.586 257.185 303.586Z" fill="url(#paint0_radial_205_48)" stroke="black" stroke-width="5.89188"/>
<path d="M244.566 204.354H269.802C269.802 299.601 261.367 491.187 257.177 491.187C253.001 491.187 244.566 299.601 244.566 204.354Z" fill="#ED1C24"/>
<path d="M244.566 204.354C244.566 299.601 253.001 491.187 257.177 491.187" stroke="black" stroke-width="3.92792"/>
<path d="M269.802 204.354C269.802 299.601 261.367 491.187 257.178 491.187" stroke="black" stroke-width="3.92792"/>
<path d="M244.566 204.354H269.802" stroke="black" stroke-width="3.92792"/>
<path d="M244.781 236.924H269.606" stroke="black" stroke-width="3.92792"/>
<path d="M245.355 265.356H268.987" stroke="black" stroke-width="3.92792"/>
<path d="M246.074 293.786H268.296" stroke="black" stroke-width="3.92792"/>
<path d="M246.945 322.193H267.421" stroke="black" stroke-width="3.92792"/>
<path d="M248.01 350.597H266.41" stroke="black" stroke-width="3.92792"/>
<path d="M249.109 378.966H265.259" stroke="black" stroke-width="3.92792"/>
<path d="M250.414 407.335H263.953" stroke="black" stroke-width="3.92792"/>
<path d="M257.178 217.56C270.221 217.56 280.795 192.636 280.795 161.891C280.795 131.145 270.221 106.221 257.178 106.221C244.134 106.221 233.561 131.145 233.561 161.891C233.561 192.636 244.134 217.56 257.178 217.56Z" fill="#ED1C24"/>
<path d="M257.185 217.56C270.224 217.56 280.795 192.636 280.795 161.891C280.795 131.145 270.224 106.221 257.185 106.221C244.145 106.221 233.574 131.145 233.574 161.891C233.574 192.636 244.145 217.56 257.185 217.56Z" stroke="black" stroke-width="3.92792"/>
<path d="M280.773 101.85C280.773 107.477 277.953 112.564 273.419 116.158H273.405L263.766 82.9114C273.598 85.2891 280.773 92.8647 280.773 101.85V101.85Z" fill="#FDE92B"/>
<path d="M263.767 82.9114L273.406 116.158C269.768 116.158 263.643 99.0855 260.049 82.2755C261.32 82.3999 262.564 82.6073 263.767 82.9114V82.9114Z" fill="#FDE92B"/>
<path d="M273.404 116.158C269.171 119.517 263.462 121.577 257.169 121.577C250.878 121.577 245.167 119.517 240.936 116.158C244.572 116.158 250.698 99.0855 254.293 82.2755C255.233 82.1787 256.187 82.1234 257.169 82.1234C258.151 82.1234 259.105 82.1787 260.047 82.2755C263.642 99.0855 269.767 116.158 273.404 116.158V116.158Z" fill="#9A090D"/>
<path d="M257.17 60.1572L263.766 82.9114C262.563 82.6073 261.318 82.3999 260.047 82.2755C258.318 74.2023 257.17 66.1982 257.17 60.1572V60.1572Z" fill="#9A090D"/>
<path d="M260.047 82.2755C259.105 82.1787 258.152 82.1234 257.169 82.1234C256.187 82.1234 255.233 82.1787 254.293 82.2755C256.021 74.2023 257.169 66.1982 257.169 60.1572C257.17 66.1982 258.318 74.2023 260.047 82.2755Z" fill="black"/>
<path d="M250.574 82.9114L257.17 60.1572C257.17 66.1982 256.022 74.2023 254.294 82.2755C253.022 82.3999 251.777 82.6211 250.574 82.9114Z" fill="black"/>
<path d="M254.295 82.2755C250.7 99.0855 244.574 116.158 240.938 116.158L250.575 82.9114C251.778 82.6211 253.023 82.3999 254.295 82.2755V82.2755Z" fill="#FDE92B"/>
<path d="M250.574 82.9114L240.936 116.158C236.401 112.564 233.58 107.477 233.58 101.85C233.58 92.8785 240.757 85.2891 250.574 82.9114V82.9114Z" fill="#FDE92B"/>
<path d="M254.294 82.2755C255.234 82.1787 256.188 82.1234 257.17 82.1234C258.152 82.1234 259.106 82.1787 260.047 82.2755C261.319 82.3999 262.563 82.6073 263.766 82.9114C273.597 85.2891 280.773 92.8647 280.773 101.85C280.773 107.477 277.953 112.564 273.419 116.158H273.405C269.172 119.517 263.463 121.577 257.17 121.577C250.878 121.577 245.168 119.517 240.936 116.158C236.401 112.564 233.58 107.477 233.58 101.85C233.58 92.8785 240.757 85.2891 250.574 82.9114C251.777 82.6211 253.022 82.3999 254.294 82.2755V82.2755Z" stroke="black" stroke-width="3.66606"/>
<path d="M240.938 116.158C244.574 116.158 250.7 99.0855 254.295 82.2755C256.023 74.2023 257.171 66.1982 257.171 60.1572" stroke="black" stroke-width="3.66606"/>
<path d="M257.17 60.1572C257.17 66.1982 258.318 74.2023 260.047 82.2755C263.643 99.0855 269.767 116.158 273.405 116.158" stroke="black" stroke-width="3.66606"/>
<path d="M257.171 153.222C257.171 153.222 117.083 170.405 70.0595 81.9023C27.8179 2.40475 257.193 143.196 257.193 143.196L257.171 153.222Z" fill="white" stroke="black" stroke-width="3.92792"/>
<path d="M257.192 179.625C257.192 179.625 146.148 261.857 65.135 205.155C-7.64198 154.228 257.192 170.015 257.192 170.015V179.625Z" fill="white" stroke="black" stroke-width="3.92792"/>
<path d="M257.192 153.15C257.192 153.15 397.28 170.333 444.302 81.8304C486.543 2.33286 257.17 143.124 257.17 143.124L257.192 153.15Z" fill="white" stroke="black" stroke-width="3.92792"/>
<path d="M257.17 179.553C257.17 179.553 368.214 261.785 449.227 205.084C522.003 154.156 257.17 169.943 257.17 169.943V179.553Z" fill="white" stroke="black" stroke-width="3.92792"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 6.0 KiB

View File

@ -1,4 +0,0 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="256" cy="256" r="256" fill="#fff"/>
<path d="M256 0C114.615 0 0 114.615 0 256s114.615 256 256 256 256-114.615 256-256S397.385 0 256 0Zm0 21.333c107.492 0 198.105 72.276 225.893 170.88-23.934 49.368-57.991 93.816-99.466 129.734-19.925 17.254-41.678 32.636-65.707 43.466-24.029 10.831-50.459 16.976-76.773 15.467-19.77-1.134-39.3-6.641-56.614-16.24 45.884-24.863 87.284-58.012 121.174-97.707 22.244-26.054 41.706-55.664 49.2-89.093 3.746-16.714 4.381-34.219.88-50.987-3.502-16.767-11.255-32.746-22.987-45.226-11.462-12.193-26.508-20.83-42.64-25.28-16.132-4.45-33.298-4.795-49.76-1.787-32.923 6.017-62.318 25.151-85.893 48.907-41.556 41.872-67.246 100.955-62.534 159.76 2.356 29.402 12.21 58.293 29.094 82.48 3.768 5.398 7.912 10.541 12.346 15.413-24.596 8.608-50.064 14.736-75.893 18.187C34.144 343.473 21.333 301.237 21.333 256 21.333 126.397 126.397 21.333 256 21.333Zm1.493 47.414c16.496.022 33.105 5.016 46.267 14.96 11.859 8.958 20.645 21.704 25.627 35.706 4.981 14.003 6.259 29.209 4.56 43.974-3.399 29.529-18.296 56.61-36.294 80.266-31.867 41.887-74.224 75.412-121.333 98.88a379.381 379.381 0 0 1-14.64 6.88c-10.251-8.97-19.036-19.609-25.733-31.466-13.994-24.777-18.609-54.208-15.894-82.534 2.715-28.325 12.436-55.624 25.494-80.906 15.14-29.314 35.777-57.08 64.666-73.014 14.445-7.967 30.784-12.769 47.28-12.746Zm231.067 155.84A236.737 236.737 0 0 1 490.667 256c0 129.603-105.064 234.667-234.667 234.667-72.786 0-137.837-33.135-180.88-85.147 26.567-6.034 52.534-14.701 77.44-25.733 10.892 8.294 22.92 15.098 35.707 20 36.822 14.116 78.627 12.074 115.893-.827 37.266-12.901 70.312-36.056 99.12-62.987 34.318-32.081 63.253-69.894 85.28-111.386Z" fill="#000"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1,13 +0,0 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<clipPath id="clip0_205_96">
<rect width="512" height="512" fill="white"/>
</clipPath>
</defs>
<g clip-path="url(#clip0_205_96)">
<circle cx="256" cy="256" r="256" fill="white"/>
<path d="M287.816 97.3981C321.829 146.401 464.952 335.953 367.453 375.459C321.903 396.807 114.401 362.923 117.378 368.462C102.492 393.381 90.6582 413.438 90.6582 413.438C90.6582 413.438 250.677 420.784 374.226 403.789C550.618 379.63 337.905 149.28 287.89 97.6184L287.816 97.3981Z" fill="#7F7FFF"/>
<path d="M287.816 97.3981C276.503 98.986 69 359.505 69 359.505C69 359.505 83.9598 363.835 117.973 368.849C128.988 360.112 283.946 93.8274 288.411 97.626C288.332 97.5189 288.203 97.4794 288.023 97.5045L287.816 97.3981Z" fill="#FF7F7F"/>
<path d="M287.813 97.3981C280.668 96.2129 117.375 368.621 117.375 368.621C117.375 368.621 265.485 384.576 326.515 383.512C498.442 380.549 327.825 151.035 288.111 97.0942C288.059 97.041 287.998 97.0122 287.926 97L287.813 97.3981Z" fill="#7F3FBF"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,4 +0,0 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="253.5" cy="253.5" r="248.5" fill="#fff"/>
<path d="M256.135 5C114.761 5 .295 117.283.045 255.907H0v194.228h.045c.068 31.438 26.084 56.904 58.17 56.904H256.16C397.56 506.95 512 394.681 512 256.132 512 117.508 397.41 5.225 255.91 5.225l.225-.225Zm52.018 103.316c42.991 0 83.58 32.263 83.58 76.772 0 4.128.025 8.259-.664 12.94-1.191 11.841-12.232 20.35-24.253 18.681-12.022-1.689-20.18-12.878-17.957-24.584.204-1.336.277-3.433.277-7.04 0-25.24-21.07-34.987-40.99-34.987-19.914 0-37.863 16.414-37.888 34.987.344 21.475 0 42.785 0 64.227l36.963-.271c28.86-.586 29.185 42.009.333 41.809l-37.288.271c-.09 17.274.136 14.15.045 22.849 0 0 .313 21.127-.33 37.136-4.462 47.033-45.316 84.619-94.409 84.619-52.043 0-94.908-41.684-94.908-92.815 1.563-52.581 44.341-93.941 98.235-93.466l30.06-.222v41.735l-30.06.27h-.159c-29.61.859-54.994 20.573-55.47 51.656 0 28.315 23.344 51.006 52.319 51.006 28.935 0 52.093-20.635 52.093-50.956l-.045-158.066c.015-2.934.113-5.266.442-8.502 4.884-38.661 40.164-68.125 80.103-68.125l-.029.076Z" fill="#51A2DA"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,226 +0,0 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter0_f_108_19" x="11.8842" y="14.8842" width="488.232" height="482.232" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="4.5579" result="effect1_foregroundBlur_108_19"/>
</filter>
<filter id="filter1_f_108_19" x="50.2194" y="32.2194" width="414.561" height="220.561" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="4.39032" result="effect1_foregroundBlur_108_19"/>
</filter>
<filter id="filter2_f_108_19" x="340.537" y="87.5371" width="138.926" height="194.926" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="5.73143" result="effect1_foregroundBlur_108_19"/>
</filter>
<radialGradient id="paint0_radial_108_19" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(339.573 -36.4521) rotate(180) scale(337.312 337.312)">
<stop offset="0.3644" stop-color="#FF2F00"/>
<stop offset="0.498" stop-color="white"/>
<stop offset="0.5567" stop-color="#FFB700"/>
<stop offset="0.6193" stop-color="#FF8800"/>
<stop offset="0.7376" stop-color="#FF3300"/>
<stop offset="0.7915" stop-color="#FF1100"/>
<stop offset="0.9413" stop-color="#7C0000"/>
<stop offset="1" stop-color="#EB0000"/>
</radialGradient>
<linearGradient id="paint1_linear_108_19" x1="181.003" y1="77.0001" x2="33.0018" y2="77.0001" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="0.5016" stop-color="#787878"/>
<stop offset="0.845" stop-color="#222222"/>
<stop offset="1"/>
</linearGradient>
<linearGradient id="paint2_linear_108_19" x1="32.5421" y1="130.866" x2="55.9763" y2="116.22" gradientUnits="userSpaceOnUse">
<stop offset="0.083" stop-color="white"/>
<stop offset="0.543" stop-color="#787878"/>
<stop offset="0.8579" stop-color="#222222"/>
<stop offset="1"/>
</linearGradient>
<linearGradient id="paint3_linear_108_19" x1="32.5421" y1="130.866" x2="55.9763" y2="116.22" gradientUnits="userSpaceOnUse">
<stop offset="0.083" stop-color="white"/>
<stop offset="0.543" stop-color="#787878"/>
<stop offset="0.8579" stop-color="#222222"/>
<stop offset="1"/>
</linearGradient>
<linearGradient id="paint4_linear_108_19" x1="141.965" y1="35.2322" x2="89.2334" y2="93.8234" gradientUnits="userSpaceOnUse">
<stop offset="0.083" stop-color="white"/>
<stop offset="0.543" stop-color="#787878"/>
<stop offset="0.8579" stop-color="#222222"/>
<stop offset="1"/>
</linearGradient>
<radialGradient id="paint5_radial_108_19" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(254.425 493.873) scale(471.744)">
<stop/>
<stop offset="1" stop-color="white"/>
</radialGradient>
<radialGradient id="paint6_radial_108_19" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(189.244 171.973) scale(390.257 389.368)">
<stop stop-color="#FF0000"/>
<stop offset="0.1131" stop-color="#E20000"/>
<stop offset="0.4558" stop-color="#8D0000"/>
<stop offset="0.6119" stop-color="#6B0000"/>
<stop offset="0.9525" stop-color="#FF0000"/>
</radialGradient>
<linearGradient id="paint7_linear_108_19" x1="29.9994" y1="257.002" x2="479.999" y2="257.002" gradientUnits="userSpaceOnUse">
<stop offset="0.083" stop-color="white"/>
<stop offset="0.543" stop-color="#787878"/>
<stop offset="0.8579" stop-color="#222222"/>
<stop offset="1"/>
</linearGradient>
<linearGradient id="paint8_linear_108_19" x1="482.999" y1="261.001" x2="32.9998" y2="261.001" gradientUnits="userSpaceOnUse">
<stop offset="0.083" stop-color="white"/>
<stop offset="0.543" stop-color="#787878"/>
<stop offset="0.8579" stop-color="#222222"/>
<stop offset="1"/>
</linearGradient>
<linearGradient id="paint9_linear_108_19" x1="257.5" y1="37.6276" x2="257.5" y2="270.936" gradientUnits="userSpaceOnUse">
<stop offset="0.083" stop-color="white"/>
<stop offset="0.543" stop-color="#787878"/>
<stop offset="0.8579" stop-color="#222222"/>
<stop offset="1"/>
</linearGradient>
<radialGradient id="paint10_radial_108_19" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(263.998 262.505) rotate(180) scale(211.516 212.068)">
<stop stop-color="#FF0000"/>
<stop offset="0.4772" stop-color="#FF7A00"/>
<stop offset="0.8374" stop-color="#FFD000"/>
<stop offset="1" stop-color="#FFF200"/>
</radialGradient>
<linearGradient id="paint11_linear_108_19" x1="257.5" y1="37.6276" x2="257.5" y2="270.936" gradientUnits="userSpaceOnUse">
<stop offset="0.083" stop-color="white"/>
<stop offset="0.543" stop-color="#787878"/>
<stop offset="0.8579" stop-color="#222222"/>
<stop offset="1"/>
</linearGradient>
<radialGradient id="paint12_radial_108_19" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(263.383 -312.771) rotate(-119.675) scale(534.307 472.149)">
<stop offset="0.3644" stop-color="#FF2F00"/>
<stop offset="0.498" stop-color="white"/>
<stop offset="0.5567" stop-color="#FFB700"/>
<stop offset="0.6193" stop-color="#FF8800"/>
<stop offset="0.7376" stop-color="#FF3300"/>
<stop offset="0.7915" stop-color="#FF1100"/>
<stop offset="0.9413" stop-color="#7C0000"/>
<stop offset="1" stop-color="#EB0000"/>
</radialGradient>
<radialGradient id="paint13_radial_108_19" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(174.429 -36.4521) scale(337.308 337.314)">
<stop offset="0.3644" stop-color="#FF2F00"/>
<stop offset="0.498" stop-color="white"/>
<stop offset="0.5567" stop-color="#FFB700"/>
<stop offset="0.6193" stop-color="#FF8800"/>
<stop offset="0.7376" stop-color="#FF3300"/>
<stop offset="0.7915" stop-color="#FF1100"/>
<stop offset="0.9413" stop-color="#7C0000"/>
<stop offset="1" stop-color="#EB0000"/>
</radialGradient>
<linearGradient id="paint14_linear_108_19" x1="356.187" y1="45.432" x2="423.577" y2="93.7764" gradientUnits="userSpaceOnUse">
<stop offset="0.083" stop-color="white"/>
<stop offset="0.543" stop-color="#787878"/>
<stop offset="0.8579" stop-color="#222222"/>
<stop offset="1"/>
</linearGradient>
<linearGradient id="paint15_linear_108_19" x1="356.187" y1="45.432" x2="423.577" y2="93.7764" gradientUnits="userSpaceOnUse">
<stop offset="0.083" stop-color="white"/>
<stop offset="0.543" stop-color="#787878"/>
<stop offset="0.8579" stop-color="#222222"/>
<stop offset="1"/>
</linearGradient>
<linearGradient id="paint16_linear_108_19" x1="335.998" y1="77.0001" x2="484.999" y2="77.0001" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="0.5016" stop-color="#787878"/>
<stop offset="0.845" stop-color="#222222"/>
<stop offset="1"/>
</linearGradient>
<radialGradient id="paint17_radial_108_19" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(320.808 81.0604) scale(164.138 164.137)">
<stop stop-color="#B00000"/>
<stop offset="1" stop-color="#EBBFBF"/>
</radialGradient>
<radialGradient id="paint18_radial_108_19" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(308.923 82.1605) scale(59.7131 58.6952)">
<stop stop-color="#B00000"/>
<stop offset="1" stop-color="white"/>
</radialGradient>
<linearGradient id="paint19_linear_108_19" x1="596.032" y1="-42.2698" x2="381.593" y2="191.768" gradientUnits="userSpaceOnUse">
<stop offset="0.1629" stop-color="#FF5900"/>
<stop offset="0.1874" stop-color="#FF5000"/>
<stop offset="0.2921" stop-color="#FF2F00"/>
<stop offset="1" stop-color="#EB0000"/>
</linearGradient>
<radialGradient id="paint20_radial_108_19" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(427.499 57.498) rotate(58.358) scale(10.4164 48.1713)">
<stop offset="0.2584" stop-color="white"/>
<stop offset="0.3764" stop-color="#AFAFAF"/>
<stop offset="1"/>
</radialGradient>
<radialGradient id="paint21_radial_108_19" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(81.0013 52.4987) rotate(-56.3512) scale(10.4721 38.3294)">
<stop offset="0.2584" stop-color="white"/>
<stop offset="0.3764" stop-color="#AFAFAF"/>
<stop offset="1"/>
</radialGradient>
<radialGradient id="paint22_radial_108_19" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(130.005 154) rotate(40.723) scale(44.214 72.8753)">
<stop offset="0.2584" stop-color="white"/>
<stop offset="0.3764" stop-color="#AFAFAF"/>
<stop offset="1"/>
</radialGradient>
<radialGradient id="paint23_radial_108_19" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(103.498 205.004) rotate(27.0638) scale(30.2766 49.7531)">
<stop offset="0.2584" stop-color="white"/>
<stop offset="0.3764" stop-color="#AFAFAF"/>
<stop offset="1"/>
</radialGradient>
<linearGradient id="paint24_linear_108_19" x1="441.696" y1="60.0316" x2="132.078" y2="397.081" gradientUnits="userSpaceOnUse">
<stop offset="0.01" stop-color="#34B3D1"/>
<stop offset="0.1742" stop-color="white"/>
<stop offset="0.3315" stop-color="#FDBF6F"/>
<stop offset="0.427" stop-color="#FFFF7F"/>
<stop offset="0.5" stop-color="#673920"/>
<stop offset="0.6517" stop-color="#B55004"/>
<stop offset="1" stop-color="#4E0901"/>
</linearGradient>
<radialGradient id="paint25_radial_108_19" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(176.605 161.416) rotate(-90) scale(371.942 366.204)">
<stop stop-color="#FF0000"/>
<stop offset="0.611881" stop-color="#6B0000"/>
<stop offset="1" stop-color="#FF0000"/>
</radialGradient>
<radialGradient id="paint26_radial_108_19" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(352.388 111.898) rotate(58.4507) scale(105.3 138.442)">
<stop stop-color="white"/>
<stop offset="1"/>
</radialGradient>
<linearGradient id="paint27_linear_108_19" x1="470.406" y1="125.402" x2="451.355" y2="112.128" gradientUnits="userSpaceOnUse">
<stop offset="0.083" stop-color="white"/>
<stop offset="0.543" stop-color="#787878"/>
<stop offset="0.8579" stop-color="#222222"/>
<stop offset="1"/>
</linearGradient>
</defs>
<g filter="url(#filter0_f_108_19)">
<path d="M44.9399 24.0008C37.3304 24.0438 31.1165 25.9182 26.983 30.0542C9.14368 47.9047 34.7715 104.655 57.0391 143.436C37.6227 177.174 26.5029 216.267 26.5029 257.97C26.5029 384.947 129.491 488 256.389 488C383.287 488 486.275 384.947 486.275 257.97C486.275 215.982 474.922 176.658 455.258 142.763C477.443 103.999 502.771 47.8099 485.026 30.0542C467.33 12.3467 411.405 37.4942 372.676 59.6487C338.544 39.5567 298.827 27.9403 256.389 27.9403C213.797 27.9403 173.932 39.6144 139.717 59.8409C109.995 42.8029 70.0175 23.859 44.9399 24.0008Z" fill="black"/>
</g>
<path d="M27.9703 30.9702C1.52987 57.4106 70.7773 169.532 82.6385 181.394C94.4997 193.249 125.553 181.433 151.99 154.99C178.431 128.55 190.252 97.4996 178.391 85.6384C166.53 73.7773 54.4107 4.52993 27.9703 30.9702Z" fill="url(#paint0_radial_108_19)"/>
<path d="M172.045 126C122.765 80.8792 57.8537 28.0284 33 30.2726C51.2038 17.2261 123.848 62.821 181 104.008C179.685 110.648 176.619 118.19 172.045 126Z" fill="url(#paint1_linear_108_19)"/>
<path d="M29.7477 33.7488C4.29319 59.2033 70.9576 167.145 82.3814 178.563C93.7991 189.981 123.693 178.603 149.147 153.145C174.602 127.688 185.979 97.7972 174.565 86.3795C163.144 74.9588 55.2022 8.29113 29.7477 33.7488Z" fill="url(#paint2_linear_108_19)"/>
<path d="M29.7477 33.7488C4.29319 59.2033 70.9576 167.145 82.3814 178.563C93.7991 189.981 123.693 178.603 149.147 153.145C174.602 127.688 185.979 97.7972 174.565 86.3795C163.144 74.9588 55.2022 8.29113 29.7477 33.7488Z" fill="url(#paint3_linear_108_19)"/>
<path d="M29.7477 33.7488C4.29319 59.2033 70.9576 167.145 82.3814 178.563C93.7991 189.981 123.693 178.603 149.147 153.145C174.602 127.688 185.979 97.7972 174.565 86.3795C163.144 74.9588 55.2022 8.29113 29.7477 33.7488Z" fill="url(#paint4_linear_108_19)"/>
<path d="M257 489C384.026 489 487 386.025 487 259C487 131.975 384.026 29 257 29C129.975 29 27 131.975 27 259C27 386.025 129.975 489 257 489Z" fill="url(#paint5_radial_108_19)"/>
<path d="M256.5 483C377.726 483 476 384.95 476 264C476 143.05 377.726 45 256.5 45C135.273 45 37 143.05 37 264C37 384.95 135.273 483 256.5 483Z" fill="url(#paint6_radial_108_19)"/>
<path d="M48.1639 267.474C48.1639 147.458 145.455 50.1669 265.472 50.1669C373.653 50.1669 463.359 129.22 480 232.712C467.567 119.826 371.89 32 255.691 32C131.047 32 30 133.05 30 257.692C30 373.891 117.823 469.57 230.71 482C127.221 465.359 48.1639 375.657 48.1639 267.474Z" fill="url(#paint7_linear_108_19)"/>
<path opacity="0.63" d="M464.833 250.526C464.833 370.546 367.542 467.833 247.526 467.833C139.346 467.833 49.6442 388.783 33 285.291C45.4363 398.177 141.109 486 257.308 486C381.954 486 483 384.953 483 260.308C483 144.109 395.177 48.4332 282.291 36C385.777 52.6442 464.833 142.35 464.833 250.526Z" fill="url(#paint8_linear_108_19)"/>
<g filter="url(#filter1_f_108_19)">
<path d="M456 205.417C456 296.222 396.306 98.6564 200.001 173.413C124.812 202.049 59 296.222 59 205.417C59 114.612 147.873 41 257.5 41C367.127 41 456 114.612 456 205.417Z" fill="url(#paint9_linear_108_19)"/>
</g>
<path d="M194.639 121.439C192.848 133.403 204.729 149.942 211.5 128.653C218.271 107.363 218.517 79.3409 243.752 66.5826C268.987 53.8274 289.373 51.857 310.745 60.1049C325.427 65.7729 333.303 72.7923 336.794 76.6346C327.499 65.6374 290.123 27.6274 238.396 56.7799C178.438 90.5812 196.493 49.043 190.65 95.2917C184.809 141.55 194.639 121.439 194.639 121.439ZM336.794 76.6346C338.274 78.3833 339.07 79.4763 339.07 79.4763C339.07 79.4763 338.388 78.3833 336.794 76.6346ZM334.368 106.591C275.448 95.9814 203.043 133.04 152.34 195.686C172.646 160.318 152.932 103.866 150.857 109.823C121.23 194.719 75.2248 194.14 63.4026 221.252C47.7727 257.094 61.7444 299.772 94.5918 317.099C78.271 403.953 160.164 462.926 210.517 462.926C261.353 462.926 219.419 391.761 219.419 316.837C219.419 241.919 212.105 149.594 334.368 106.591ZM468.169 237.615C453.537 171.598 434.514 146.654 434.514 146.654C434.514 146.654 466.704 209.737 457.928 266.953C449.149 324.171 412.447 327.216 411.102 341.775C409.757 356.334 424.273 359.382 435.981 352.045C435.978 352.045 482.797 303.629 468.169 237.615ZM418.316 231.639C318.818 274.181 303.585 285.308 271.996 318.198C233.95 357.806 236.33 428.142 256.363 457.101C276.396 486.072 321.389 486.33 356.846 457.683C408.216 416.191 331.989 332.868 418.316 231.639Z" fill="url(#paint10_radial_108_19)"/>
<path d="M456 205.417C456 296.222 396.306 98.6564 200.001 173.413C124.812 202.049 59 296.222 59 205.417C59 114.612 147.873 41 257.5 41C367.127 41 456 114.612 456 205.417Z" fill="url(#paint11_linear_108_19)"/>
<g opacity="0.44" filter="url(#filter2_f_108_19)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M461.871 270.937C449.659 272.872 434.266 229.87 419.347 212.603C391.026 179.824 317.806 148.072 370.697 109.911C422.868 72.2685 443.884 139.313 459.471 200.128C465.235 222.617 474.083 269.002 461.871 270.937Z" fill="black"/>
</g>
<path opacity="0.15" d="M269.825 54.1931C285.18 38.8643 376.303 69.0537 411.244 88.5968C425.387 96.5015 428.189 118.281 417.539 137.171C406.893 156.064 382.57 169.828 372.68 157.007C311.601 77.864 261.946 62.0578 269.825 54.1931Z" fill="url(#paint12_radial_108_19)"/>
<path d="M486.03 30.9703C512.47 57.4106 443.224 169.532 431.36 181.394C419.502 193.249 388.449 181.434 362.009 154.99C335.569 128.547 323.748 97.4995 335.609 85.6384C347.47 73.7772 459.59 4.52991 486.03 30.9703Z" fill="url(#paint13_radial_108_19)"/>
<path d="M484.252 33.7488C509.707 59.2033 443.04 167.145 431.622 178.563C420.201 189.981 390.311 178.603 364.853 153.145C339.396 127.691 328.021 97.7971 339.436 86.3794C350.856 74.9587 458.798 8.29114 484.252 33.7488Z" fill="url(#paint14_linear_108_19)"/>
<path d="M484.252 33.7488C509.707 59.2033 443.04 167.145 431.622 178.563C420.201 189.981 390.311 178.603 364.853 153.145C339.396 127.691 328.021 97.7971 339.436 86.3794C350.856 74.9587 458.798 8.29114 484.252 33.7488Z" fill="url(#paint15_linear_108_19)"/>
<path d="M345.013 126C394.626 80.8792 459.975 28.0284 485 30.2726C466.67 17.2261 393.536 62.821 336 104.008C337.321 110.648 340.408 118.19 345.013 126Z" fill="url(#paint16_linear_108_19)"/>
<path d="M431.123 181.587C419.294 193.413 388.317 181.627 361.942 155.249C335.567 128.871 323.775 97.9004 335.607 86.0686C338.202 83.4767 345.601 78.1306 355.846 71.6449C340.659 65.5635 327.896 65.2051 321.058 72.0493C307.087 86.0196 323.052 124.628 356.716 158.288C390.376 191.945 428.988 207.91 442.955 193.946C449.257 187.641 449.447 176.311 444.683 162.694C438.592 172.24 433.602 179.109 431.123 181.587Z" fill="url(#paint17_radial_108_19)"/>
<path d="M331.689 127L340 125.949C334.973 117.083 331.944 108.639 331.279 101.509L318 99C320.5 107.508 325.173 117.086 331.689 127Z" fill="url(#paint18_radial_108_19)"/>
<path opacity="0.53" d="M433.734 128.801C413.218 155.207 402.962 147.873 373 160.73C396.372 180.75 421.343 188.779 431.553 178.558C434.259 175.846 440.081 167.688 447.043 156.491C451.669 146.947 456.561 137.083 461.58 127.333C486.487 78.9241 449.753 108.187 433.734 128.801Z" fill="url(#paint19_linear_108_19)"/>
<path d="M433.758 67.6533C407.757 83.5336 383.873 91.86 380.42 86.2506C376.961 80.6413 395.241 63.2255 421.243 47.3452C447.244 31.4679 471.128 23.1416 474.581 28.7478C478.036 34.3572 459.759 51.776 433.758 67.6533Z" fill="url(#paint20_radial_108_19)"/>
<path d="M87.6422 42.5137C107.746 56.0675 121.063 71.5239 117.391 77.0392C113.722 82.5545 94.4535 76.0367 74.3557 62.4828C54.2547 48.929 40.9343 33.4757 44.6097 27.9605C48.2728 22.4452 67.5443 28.966 87.6422 42.5137Z" fill="url(#paint21_radial_108_19)"/>
<path d="M168.371 187.029C138.039 221.733 96.2756 235.076 75.0816 216.831C53.8906 198.589 61.3005 155.67 91.6325 120.972C121.961 86.2677 163.725 72.9253 184.919 91.167C206.11 109.409 198.697 152.329 168.371 187.029Z" fill="url(#paint22_radial_108_19)"/>
<path d="M134.375 220.771C119.899 248.71 94.3407 264.292 77.2885 255.586C60.2394 246.871 58.1499 217.163 72.6262 189.224C87.0995 161.291 112.658 145.706 129.71 154.415C146.762 163.124 148.849 192.839 134.375 220.771Z" fill="url(#paint23_radial_108_19)"/>
<path d="M480 260.008C480 241.108 477.632 222.771 473.192 205.254C473.333 208.102 473.404 210.965 473.404 213.843C473.404 307.316 397.629 383.091 304.16 383.091C210.687 383.091 134.909 307.316 134.909 213.843C134.909 120.371 210.687 44.5962 304.16 44.5962C307.038 44.5962 309.901 44.67 312.742 44.8115C295.235 40.3679 276.895 38 257.998 38C135.392 38 36 137.395 36 260.005C36 382.608 135.392 482 257.998 482C380.611 482.003 480 382.611 480 260.008Z" fill="url(#paint24_linear_108_19)"/>
<path d="M262.738 457.963C144.881 457.963 49.3401 360.504 49.3401 240.288C49.3401 148.512 105.028 70.0097 183.814 38C99.4839 68.1309 39 150.012 39 246.312C39 368.198 135.867 467 255.352 467C332.83 467 400.79 425.449 439 363.004C400.568 420.332 335.965 457.963 262.738 457.963Z" fill="url(#paint25_radial_108_19)"/>
<path d="M397.9 112.738C374.254 127.401 348.869 129.163 341.205 116.677C333.541 104.191 346.496 82.1853 370.143 67.5253C393.792 52.8623 463.638 23.5362 471.302 36.0191C478.963 48.5052 421.544 98.0807 397.9 112.738Z" fill="url(#paint26_radial_108_19)"/>
<path d="M488.086 37C483.475 63.6189 468.101 89.8573 443.259 108.977C414.408 131.186 379.383 138.723 349 132.239C353.28 138.278 358.404 144.353 364.287 150.202C389.859 175.609 419.889 186.968 431.363 175.572C442.085 164.915 501.307 70.0719 488.086 37Z" fill="url(#paint27_linear_108_19)"/>
</svg>

Before

Width:  |  Height:  |  Size: 19 KiB

View File

@ -1,10 +0,0 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.02734 345.602L15.0969 225.419L57.5145 134.928L116.899 78.371L194.665 51.5065L287.983 58.5761L354.438 103.822L409.58 171.69L444.928 280.561L481.69 270.664L502.899 276.32L463.309 322.979L459.068 354.085L484.518 402.159L451.998 385.192L412.408 341.36L384.13 373.88L385.544 393.675L396.855 434.679L392.613 458.715L338.885 404.986L317.676 426.195L248.394 447.404H162.145L102.76 433.265L85.7929 429.023L54.6867 454.474L51.8589 433.265L63.1702 403.572L8.02734 345.602V345.602Z" fill="#BFCFE7"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M123.975 296.822C123.975 306.233 120.44 315.272 114.123 322.007C107.807 328.742 99.2103 332.639 90.1703 332.866C81.1303 333.093 72.3633 329.632 65.742 323.222C59.1207 316.812 55.17 307.962 54.7337 298.561C54.2975 289.16 57.4103 279.955 63.4073 272.91C69.4043 265.866 77.81 261.542 86.8289 260.861C95.8479 260.18 104.765 263.197 111.676 269.267C118.586 275.337 122.943 283.979 123.814 293.347" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M200.321 302.477C200.321 310.043 197.578 317.31 192.68 322.724C187.781 328.138 181.115 331.271 174.104 331.454C167.094 331.636 160.295 328.854 155.16 323.701C150.025 318.547 146.961 311.432 146.623 303.875C146.285 296.317 148.699 288.917 153.35 283.254C158.001 277.591 164.519 274.114 171.514 273.567C178.508 273.02 185.423 275.446 190.783 280.325C196.142 285.205 199.52 292.153 200.196 299.684" fill="white"/>
<path d="M199.099 46.2896C136.653 50.792 87.5187 82.5044 45.4312 144.95C21.549 180.578 14.5018 202.307 1.19039 280.805C0.0158576 287.852 -0.375646 303.708 0.407377 320.543C1.97342 351.277 0.603134 348.145 16.8509 358.716C20.5702 361.065 29.1835 370.461 36.0349 379.27C42.6906 388.275 50.5208 397.475 53.0657 399.433L57.9596 403.152L51.8911 416.268C42.4949 436.235 43.0821 463.837 52.8699 463.837C56.5893 463.837 70.8794 453.462 81.646 443.086L90.455 434.473L110.031 442.108C179.72 469.318 262.916 463.249 327.515 426.447L344.742 416.464L351.397 423.902C355.117 428.209 363.143 437.801 369.015 445.24C389.178 470.297 393.093 472.45 397.987 460.509C406.013 441.716 404.056 425.664 389.766 389.254L386.242 380.053L399.749 367.133C415.997 351.669 414.039 352.06 422.848 363.61C435.181 380.053 460.629 398.846 480.205 406.284C493.908 411.374 494.103 406.676 481.771 386.513C459.063 350.103 457.693 339.336 472.962 317.803C483.533 302.534 495.474 290.984 505.457 286.286C513.483 282.567 513.875 280.022 508.002 274.541C498.018 265.536 478.247 263.187 461.999 268.864C452.212 272.387 450.45 271.213 447.905 260.055C416.976 122.439 326.536 39.2424 213.781 45.3108C210.453 45.5065 203.993 45.8981 199.099 46.2896ZM274.465 63.1246C307.548 71.3463 332.409 86.028 356.879 111.868C400.532 158.458 425.393 214.248 437.726 293.138C437.921 293.529 440.858 291.376 444.381 288.439C455.148 279.435 476.877 273.758 490.384 276.89C495.669 277.869 495.474 278.26 478.051 296.27C447.709 327.591 445.947 350.103 471.396 385.926C473.941 389.254 474.528 391.407 472.962 391.407C463.37 391.407 421.086 345.6 422.065 336.204C423.24 324.458 407.579 332.68 398.183 348.928C395.442 353.43 390.94 359.303 388.004 362.044L382.718 366.938L377.237 360.282C372.148 354.409 371.365 354.018 367.645 356.562L363.73 359.303L367.645 365.959C379.978 385.926 392.702 422.728 392.898 437.41C392.898 453.657 388.2 453.462 376.65 436.627C367.645 423.119 342.197 395.518 335.933 392.386C322.621 385.339 315.183 390.037 325.362 399.041C335.345 407.655 335.345 407.655 310.484 421.358C265.069 446.219 157.991 452.287 118.644 432.516C96.915 421.358 62.462 395.126 53.8487 383.185L49.7378 377.117L54.436 378.291C56.9808 378.879 67.1601 381.619 77.1436 384.36C117.274 395.322 228.659 397.084 249.996 387.1C277.793 374.18 280.925 355.584 253.52 365.959C204.776 384.556 104.354 379.074 44.4524 354.801C29.9665 348.928 16.8509 343.447 15.2848 342.86C11.7612 341.489 13.523 279.435 17.8296 254.378C29.575 185.668 66.3771 119.894 109.639 90.3346C114.141 87.2025 121.189 82.5044 125.3 79.568C152.705 60.7755 230.029 52.358 274.465 63.1246V63.1246ZM75.5776 422.924C78.1224 426.251 79.8842 428.992 79.4927 429.384C70.8794 435.256 57.7638 442.499 56.785 441.52C55.0232 439.759 59.5256 426.252 63.4407 421.358C67.9431 415.681 69.9007 415.876 75.5776 422.924Z" fill="black"/>
<path d="M69.5155 257.51C46.2205 270.038 39.1733 312.126 57.5744 328.961C88.1123 357.345 130.787 336.791 131.374 293.529C131.766 266.515 93.5934 244.394 69.5155 257.51ZM104.164 267.689C125.893 281.196 129.221 297.836 114.539 318.39C91.0486 351.081 43.6757 320.739 58.3574 282.371C64.6216 265.732 88.308 258.097 104.164 267.689Z" fill="black"/>
<path d="M80.669 275.715C62.268 283.35 65.2043 315.062 84.3884 316.628C93.0016 317.411 96.5252 315.062 100.44 305.666C108.662 285.895 97.504 268.864 80.669 275.715ZM96.1337 284.329C97.3083 286.09 97.504 288.048 96.721 288.831C94.3719 291.376 80.669 286.873 80.0818 283.35C78.9072 277.086 92.0229 277.869 96.1337 284.329V284.329Z" fill="black"/>
<path d="M163.664 270.038C133.909 279.043 134.888 324.85 165.23 335.812C178.346 340.315 185.98 339.336 194.006 331.897C220.042 307.036 196.942 259.859 163.664 270.038V270.038ZM181.478 280.805C198.704 289.81 201.249 309.189 186.959 324.263C175.018 336.987 152.114 322.305 152.114 302.338C152.114 283.545 166.404 272.975 181.478 280.805Z" fill="black"/>
<path d="M162.889 290.788C154.471 303.708 161.519 323.48 173.264 319.76C184.814 316.041 189.316 310.364 189.316 299.402C189.316 287.069 169.545 280.609 162.889 290.788ZM179.528 292.55C182.66 296.27 180.507 299.206 175.613 298.031C170.915 296.857 168.957 294.312 170.719 291.571C172.481 288.831 176.788 289.222 179.528 292.55Z" fill="black"/>
</svg>

Before

Width:  |  Height:  |  Size: 5.6 KiB

View File

@ -1,159 +0,0 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="a" x1="412.82" y1="212.156" x2="504.015" y2="212.156" gradientUnits="userSpaceOnUse">
<stop stop-color="#2972E2"/>
<stop offset="1" stop-color="#26C7FC"/>
</linearGradient>
<linearGradient id="b" x1="280.523" y1="291.197" x2="343.114" y2="275.082" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="c" x1="295.044" y1="275.064" x2="360.179" y2="258.295" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="d" x1="314.18" y1="170.788" x2="412.82" y2="170.788" gradientUnits="userSpaceOnUse">
<stop stop-color="#2972E2"/>
<stop offset="1" stop-color="#26C7FC"/>
</linearGradient>
<linearGradient id="e" x1="409.808" y1="199.093" x2="408.797" y2="217.778" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="f" x1="51.046" y1="184.186" x2="246.723" y2="148.348" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="g" x1="130.527" y1="142.894" x2="315.3" y2="142.894" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="h" x1="412.82" y1="162.604" x2="460.687" y2="162.604" gradientUnits="userSpaceOnUse">
<stop stop-color="#279FF0"/>
<stop offset="1" stop-color="#8DE1FD"/>
</linearGradient>
<linearGradient id="i" x1="412.529" y1="172.513" x2="503.723" y2="172.513" gradientUnits="userSpaceOnUse">
<stop stop-color="#279FF0"/>
<stop offset="1" stop-color="#8DE1FD"/>
</linearGradient>
<linearGradient id="j" x1="468.364" y1="240.945" x2="504.015" y2="240.945" gradientUnits="userSpaceOnUse">
<stop stop-color="#279FF0"/>
<stop offset="1" stop-color="#8DE1FD"/>
</linearGradient>
<linearGradient id="k" x1="333.453" y1="101.654" x2="423.11" y2="101.654" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="l" x1="241.977" y1="85.675" x2="382.757" y2="85.675" gradientUnits="userSpaceOnUse">
<stop stop-color="#279FF0"/>
<stop offset="1" stop-color="#8DE1FD"/>
</linearGradient>
<linearGradient id="m" x1="130.527" y1="110.14" x2="335.039" y2="110.14" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="n" x1="333.722" y1="129.165" x2="423.111" y2="123.787" gradientUnits="userSpaceOnUse">
<stop stop-color="#2972E2"/>
<stop offset="1" stop-color="#26C7FC"/>
</linearGradient>
<linearGradient id="o" x1="355.754" y1="162.604" x2="423.111" y2="162.604" gradientUnits="userSpaceOnUse">
<stop stop-color="#2972E2"/>
<stop offset="1" stop-color="#26C7FC"/>
</linearGradient>
<linearGradient id="p" x1="312.35" y1="177.027" x2="412.82" y2="177.027" gradientUnits="userSpaceOnUse">
<stop stop-color="#2972E2"/>
<stop offset="1" stop-color="#26C7FC"/>
</linearGradient>
<linearGradient id="q" x1="296.687" y1="178.67" x2="157.166" y2="217.002" gradientUnits="userSpaceOnUse">
<stop stop-color="#2972E2"/>
<stop offset="1" stop-color="#26C7FC"/>
</linearGradient>
<linearGradient id="r" x1="361.893" y1="253.52" x2="356.846" y2="190.459" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="s" x1="82.373" y1="225.349" x2="298.076" y2="168.819" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="t" x1="8.005" y1="252.893" x2="234.865" y2="252.893" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="u" x1="20.528" y1="266.847" x2="234.866" y2="266.847" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="v" x1="129.114" y1="263.179" x2="175.186" y2="320.834" gradientUnits="userSpaceOnUse">
<stop stop-color="#279FF0"/>
<stop offset="1" stop-color="#8DE1FD"/>
</linearGradient>
<linearGradient id="w" x1="134.272" y1="278.311" x2="234.866" y2="313.445" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="x" x1="234.865" y1="287.984" x2="352.842" y2="287.984" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="y" x1="234.865" y1="302.57" x2="336.777" y2="302.57" gradientUnits="userSpaceOnUse">
<stop stop-color="#2972E2"/>
<stop offset="1" stop-color="#26C7FC"/>
</linearGradient>
<linearGradient id="z" x1="149.064" y1="300.535" x2="246.503" y2="334.089" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="A" x1="234.865" y1="318.076" x2="321.238" y2="318.076" gradientUnits="userSpaceOnUse">
<stop stop-color="#2972E2"/>
<stop offset="1" stop-color="#26C7FC"/>
</linearGradient>
<linearGradient id="B" x1="193.904" y1="330.09" x2="259.269" y2="328.644" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="C" x1="234.865" y1="325.393" x2="294.804" y2="325.393" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
<linearGradient id="D" x1="229.811" y1="213.012" x2="351.516" y2="312.417" gradientUnits="userSpaceOnUse">
<stop stop-color="#26C4FB"/>
<stop offset="1" stop-color="#2977E3"/>
</linearGradient>
</defs>
<circle cx="256" cy="256" r="256" fill="#fff"/>
<path d="M234.103 439.961c-29.639-9.867-67.912-22.323-68.611-22.323-.529 0-1.142 1.106-2.127 3.828a48.066 48.066 0 0 0-1.379 4.174c0 .182-.255.687-.565 1.106-.638.881 1.567 1.987-31.814-15.938-24.797-13.306-25.447-13.628-26.231-12.978-.334.279-3.214 4.156-6.392 8.616l-5.784 8.099-.614-1.476c-.644-1.544-11.472-32.325-21.272-60.494-3.154-9.053-5.912-16.466-6.137-16.466-.59 0-8.02 5.165-20.871 14.492-6.265 4.544-11.454 8.202-11.533 8.129-.079-.073 3.512-8.366 7.984-18.434 14.285-32.149 15.324-34.646 14.45-34.646-.14 0-7.17 3.542-15.629 7.874-8.451 4.333-15.372 7.772-15.372 7.638 0-.128 2.515-7.96 5.59-17.39 3.062-9.436 5.578-17.426 5.578-17.748 0-.729.4-.851-11.812 3.561-5.39 1.944-9.953 3.487-10.129 3.42-.346-.121 4.782-5.778 25.902-28.557 11.758-12.687 13.04-14.236 17.822-21.509 12.31-18.745 22.42-34.525 22.42-34.992 0-.286-.425-.407-.996-.286-.553.122-5.31 1.154-10.56 2.309-5.256 1.154-9.844 2.041-10.19 1.969-.353-.073 11.386-7.626 26.078-16.789 55.013-34.299 66.126-41.068 69.097-42.082 1.125-.383 2.048-.802 2.048-.93 0-.122-4.678-.079-10.39.097-5.705.182-10.275.231-10.153.116.261-.244 51.27-39.884 72.566-56.386 17.147-13.295 32.155-24.724 35.132-26.753 1.762-1.197 2.51-1.422 4.691-1.422 1.428 0 16.065.911 32.519 2.011 75.799 5.092 102.783 7.012 103.646 7.37.516.22 9.916 11.527 20.883 25.137l19.948 24.742 18.41 8.488c10.129 4.673 18.447 8.525 18.484 8.561 0 0 1.482 2.564.383 1.216l1.257 1.44c2.431 2.782 41.5 55.085 41.688 55.814.17.644-4.915 44.477-5.438 46.901-.182.851-26.091 25.988-26.091 28.266-.078-.079.547-10.007 1.392-22.062.845-12.055 2.916-24.043 1.823-26.03l-2.273-4.107-1.944-.261c-2.127-.286-40.558-2.735-91.469-5.833-18.046-1.106-34.476-2.127-36.505-2.267l-3.682-.267v1.397c0 1.471 4.295 39.142 10.293 90.23l3.572 30.441-1.561 2.266a1508.405 1508.405 0 0 1-9.333 13.003l-7.765 10.755 1.136 2.035 1.136 2.036-9.904 12.334c-5.45 6.787-9.904 12.681-9.904 13.106 0 .426.948 3.002 2.102 5.742l2.109 4.977-1.483 1.166c-.814.638-7.34 5.013-14.497 9.722l-13.015 8.567.115 1.519c.061.833.729 3.998 1.483 7.048.753 3.038 1.294 5.596 1.203 5.687-.176.183-16.6-2.005-33.783-4.496a459.945 459.945 0 0 0-11.453-1.58c-.426 0-.499 1.349-.322 5.827.133 3.312.06 5.803-.164 5.779-.219-.025-6.423-2.054-13.793-4.509Z" fill="#297BE5"/>
<path d="m404.318 195.296 99.696 7-31.826 23.557-67.87-30.557Z" fill="url(#a)"/>
<path d="m298.291 214.272 54.605 125.465-90.685-127.805 36.08 2.34Z" fill="url(#b)"/>
<path d="m338.162 213.603 14.862 126.516-57.978-130.094 43.116 3.578Z" fill="url(#c)"/>
<path d="m314.174 155.941 98.645 42.533-57.067-55.359-41.578 12.826Z" fill="url(#d)"/>
<path d="m472.2 225.768-59.71-28.029-179.487 12.99L472.2 225.768Z" fill="url(#e)"/>
<path d="m50.8 213.798 98.786-61.217 256.604-16.77L50.8 213.798Z" fill="url(#f)"/>
<path d="M334.285 104.41s-191.961 46.16-203.761 48.876l9.831-1.428-9.721 1.422 225.41-9.867-12.031-21.127-9.728-17.876Z" fill="url(#g)"/>
<path d="m460.686 144.075-47.868 54.399 10.293-71.728 37.575 17.329Z" fill="url(#h)"/>
<path d="M504.203 202.326 460.2 143.68l-47.673 54.12 91.676 4.526Z" fill="url(#i)"/>
<path d="m468.36 279.608 3.828-53.755 31.827-23.557-5.9 48.365-29.755 28.947" fill="url(#j)"/>
<path d="m423.111 126.746-40.6-50.176-50.492 28.272 91.092 21.904Z" fill="url(#k)"/>
<path d="m241.978 67 92.125 37.362 48.651-27.743L241.978 67Z" fill="url(#l)"/>
<path d="M130.524 153.286 241.978 67l92.757 37.605-204.211 48.681Z" fill="url(#m)"/>
<path d="m423.111 126.746-67.712 17.098-21.357-39.373 89.069 22.275Z" fill="url(#n)"/>
<path d="m423.112 126.746-71.121 17.201 60.822 54.527 10.299-71.728Z" fill="url(#o)"/>
<path d="m319.539 192.811 93.28 5.663-98.773-43.061 5.493 37.398Z" fill="url(#p)"/>
<path d="M320.086 192.775 49.683 250.108l264.71-94.847 5.693 37.514Z" fill="url(#q)"/>
<path d="m235.16 210.748 85.351-18.065 94.1 5.347-179.451 12.718Z" fill="url(#r)"/>
<path d="M314.338 155.443 77.371 207.88l-27.688 42.228 264.655-94.665Z" fill="url(#s)"/>
<path d="m234.862 210.772-185.18 39.336L8 295.023l226.862-84.251Z" fill="url(#t)"/>
<path d="m20.523 322.936 214.34-112.164-201.786 74.942-12.554 37.222Z" fill="url(#u)"/>
<path d="m28.599 361.1 24.887-55.414 181.377-94.914L28.599 361.1Z" fill="url(#v)"/>
<path d="m90.72 416.137-28.272-81.225 172.415-124.14L90.72 416.137Z" fill="url(#w)"/>
<path d="m352.841 339.524-18.58 25.689-99.399-154.441 117.979 128.752Z" fill="url(#x)"/>
<path d="m316.178 394.385-81.316-183.619L336.776 369.12l-20.598 25.265Z" fill="url(#y)"/>
<path d="M161.604 428.636 103.76 397.55l131.103-186.778-73.259 217.864Z" fill="url(#z)"/>
<path d="m321.24 405.808-86.378-195.042 56.216 214.625 30.162-19.583Z" fill="url(#A)"/>
<path d="m234.863 210.772 14.4 234.494-84.026-27.434 69.626-207.06Z" fill="url(#B)"/>
<path d="m234.862 210.772 13.617 222.536 46.64 6.623-60.257-229.159Z" fill="url(#C)"/>
<path d="M274.558 126.995c46.676-21.418 88.163 44.234 112.875 17.56-10.773 17.213-35.849 18.775-53.324 18.836 0 0-26.82-.638-23.308-23.15-5.796-9.57-24.152-9.381-36.237-13.246h-.006Z" fill="#000"/>
<path d="M318.305 133.685a14.208 14.208 0 0 0-5.906 11.508 14.211 14.211 0 0 0 8.769 13.13 14.204 14.204 0 0 0 19.643-13.13 14.24 14.24 0 0 0-.425-3.39c-.824 2.679-2.302 4.99-4.237 6.623s-4.234 2.511-6.591 2.515a9.831 9.831 0 0 1-4.429-1.069c-1.405-.706-2.681-1.741-3.755-3.046-1.075-1.304-1.928-2.853-2.51-4.557a16.705 16.705 0 0 1-.881-5.376c.006-1.081.114-2.157.322-3.208Z" fill="#fff"/>
<path d="M443.667 158.214s-16.15 4.041-14.133 13.124c0 0 6.562-.504 14.133-13.124Z" fill="#000"/>
<path d="m264.247 212.692 88.71 127.105-118.216-128.995 29.506 1.89Z" fill="url(#D)"/>
</svg>

Before

Width:  |  Height:  |  Size: 11 KiB

View File

@ -1,45 +0,0 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="paint0_linear_205_172" x1="-65.4956" y1="-1170.67" x2="256.111" y2="512.656" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="0.3421" stop-color="white"/>
<stop offset="0.52" stop-color="#BEBDF3"/>
<stop offset="0.7541" stop-color="#8F82F9"/>
<stop offset="0.8711" stop-color="#9F99C7"/>
<stop offset="1" stop-color="#524C76"/>
</linearGradient>
<linearGradient id="paint1_linear_205_172" x1="329.451" y1="378.233" x2="232.389" y2="-56.9172" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="0.3421" stop-color="white"/>
<stop offset="0.52" stop-color="#BEBDF3"/>
<stop offset="0.7541" stop-color="#8F82F9"/>
<stop offset="0.8711" stop-color="#9F99C7"/>
<stop offset="1" stop-color="#524C76"/>
</linearGradient>
<radialGradient id="paint2_radial_205_172" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(215.649 113.859) scale(86.3776 66.222)">
<stop stop-color="white"/>
<stop offset="0.3421" stop-color="white"/>
<stop offset="0.52" stop-color="#BEBDF3"/>
<stop offset="0.7541" stop-color="#8F82F9"/>
<stop offset="0.8711" stop-color="#9F99C7"/>
<stop offset="1" stop-color="#524C76"/>
</radialGradient>
<radialGradient id="paint3_radial_205_172" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.8425 135.102) rotate(90.903) scale(751.372 640.908)">
<stop stop-color="white"/>
<stop offset="0.3421" stop-color="white"/>
<stop offset="0.52" stop-color="#BEBDF3"/>
<stop offset="0.7541" stop-color="#8F82F9"/>
<stop offset="0.8711" stop-color="#9F99C7"/>
<stop offset="1" stop-color="#524C76"/>
</radialGradient>
<clipPath id="clip0_205_172">
<rect width="512" height="512" fill="white"/>
</clipPath>
</defs>
<g clip-path="url(#clip0_205_172)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.0582 408.268C11.1143 386.669 29.4738 356.517 55.5632 329.119C72.9999 310.811 90.7081 294.739 129.308 261.831C102.61 247.183 61.0821 229.508 40.2319 206.355C32.5219 197.792 18.5511 178.382 21.2571 152.457C26.7809 99.6118 91.9995 19.4601 184.686 2.43457C215.529 -3.20689 250.946 0.865259 280.095 13.9659C371.556 55.0739 483.332 157.244 497.15 207.087C501.993 224.638 501.062 252.62 492.712 268.214C482.366 287.542 446.538 326.792 397.55 367.324C320.648 430.878 212.901 499.087 132.38 510.602C106.381 514.312 79.8143 510.442 61.1767 499.926C32.0112 483.468 22.3304 461.499 18.9253 454.911C9.87795 437.4 10.999 415.209 11.0187 408.251L11.0582 408.268ZM227.455 165.633C228.448 153.386 276.468 165.579 273.433 175.281C270.231 185.513 226.312 179.685 227.455 165.633Z" fill="url(#paint0_linear_205_172)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M155.274 241.631C130.007 262.966 113.203 277.352 92.1392 296.606C41.408 342.97 6.92922 378.263 24.7115 426.477C45.2079 482.127 90.1488 479.306 142.821 468.959C278.614 442.171 501.92 270.492 490.57 207.161C481.358 155.862 356.586 53.8484 282.809 17.5766C259.738 6.23447 233.147 0.378344 206.474 1.62853C104.896 6.422 25.608 98.8468 29.6382 149.019C33.5795 197.759 156.795 240.233 155.315 241.713L155.274 241.631ZM140.033 71.4579C109.477 105.46 129.011 171.226 179.685 207.087C238.987 249.042 334.971 256.633 354.135 224.285C389.782 163.939 350.862 100.089 292.769 71.6307C235.359 43.5015 159.115 50.2377 140.033 71.4291V71.4579Z" fill="url(#paint1_linear_205_172)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M244.267 205.688C287.168 211.651 324.148 194.47 329.888 152.111C334.293 119.845 284.906 84.5849 255.215 76.4504C230.417 69.66 176.585 78.3915 172.966 125.29C169.193 174.039 219.222 202.217 244.234 205.688H244.267ZM223.261 124.607C195.066 168.281 264.196 181.713 274.782 173.751C320.413 139.412 235.68 105.369 223.261 124.607Z" fill="url(#paint2_radial_205_172)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M198.29 13.201C148.422 18.4567 138.865 24.8721 93.6693 59.0548C78.5272 70.5121 50.6613 98.3863 43.5138 131.459C40.7939 144.051 44.0089 154.924 53.0794 162.549C82.1215 186.968 130.739 206.774 170.613 225.93C182.293 231.539 174.56 241.713 155.726 258.015C108.194 299.164 43.9498 349.229 39.4261 387.393C37.3123 405.381 43.4694 429.817 65.3016 442.327C90.807 456.934 143.742 447.402 179.134 434.238C230.795 415 298.642 372.551 352.515 330.851C408.535 287.456 460.59 232.316 463.222 223.351C466.386 212.313 466.071 202.115 459.965 190.394C450.375 171.987 437.561 158.309 423.792 142.994C386.862 104.057 347.786 69.85 300.994 43.6372C267.231 24.7035 237.531 9.06795 198.265 13.2051L198.29 13.201ZM271.549 100.467C307.582 117.887 344.578 163.643 271.228 189.954C251.283 197.115 187.992 172.369 189.966 138.598C192.79 88.7055 227.562 79.1811 271.549 100.451L271.549 100.467Z" fill="url(#paint3_radial_205_172)"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.7 KiB

View File

@ -1,4 +0,0 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="256" cy="256" r="256" fill="#fff"/>
<path d="M269.443 151.449s-34.003-2.264-91.901 15.855c-59.004 18.462-92.467 44.631-92.467 44.631s87.943-49.102 187.206-51.892l-2.838-8.594Zm126.819 53.388 4.422-.291s-25.326-30.726-73.801-45.693c27.25 11.077 50.966 25.753 69.375 45.981l.004.003Zm7.234 12.767c.68-1.179 2.872 3.742 4.535 5.809.076.416.189.665-.775.465-.083-.423-.223-.544-.223-.544s-2.332-1.391-3.046-2.374c-.718-.982-.843-2.706-.491-3.356Zm59.488 146.264s5.375-61.725-91.598-75.955a315.264 315.264 0 0 0-43.558-3.231c-77.721 1.028-80.555-89.641-21.989-94.222 24.272-2.003 53.252 11.093 81.59 24.287-.105 3.519.038 6.648 2.351 9.536 2.313 2.891 11.187 6.043 14.026 7.672 2.834 1.625 11.924 7.404 17.495 14.653 1.209-2.26 11.293-8.825 11.293-8.825s-2.419.053-8.035-2.049c-5.624-2.101-12.295-8.458-12.454-8.825-.155-.366-.26-.945 1.055-1.209.994-.839-1.262-3.572-2.26-4.566-.998-1.001-7.673-12.343-7.827-12.608-.159-.264-.212-.525-.681-.839-1.474-.476-7.937.68-7.937.68s-9.939-4.879-13.364-15.401c.053 1.841-1.7 3.855 0 8.088-5.177-2.192-9.63-5.93-13.141-15.167-2.09 5.254 0 8.595 0 8.595s-12.2-3.409-14.154-14.664c-2.139 5.053 0 8.091 0 8.091s-19.887-10.378-52.938-10.529c-22.129-2.03-26.736-40.954-24.688-47.508 0 0-31.913-16.818-94.742-24.252-62.826-7.43-114.351-1.119-114.351-1.119s111.274-5.34 200.416 30.749c3.031 13.553 12.147 36.128 17.056 46.979-14.051 9.713-29.895 18.848-32.359 51.245-2.468 32.39 25.386 60.887 59.923 61.767 32.794 1.747 55.456 1.996 82.921 16.233 26.214 14.494 47.711 58.664 49.839 98.39 2.298-29.476-8.764-92.857-60.376-112.098 72.138 12.623 78.483 66.102 78.483 66.102h.004ZM267.739 146.604l-2.597-8.372s-42.828-7.604-100.416-3.514C107.139 138.814 49 158.97 49 158.97s118.965-29.933 218.735-12.366" fill="#000"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -1,30 +0,0 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="b" x1="266.667" y1=".002" x2="266.667" y2="512.002" gradientUnits="userSpaceOnUse">
<stop stop-color="#1ABC9C"/>
<stop offset="1" stop-color="#2980B9"/>
</linearGradient>
<linearGradient id="c" x1="256.002" y1="255.997" x2="488.932" y2="488.927" gradientUnits="userSpaceOnUse">
<stop/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<linearGradient id="d" x1="255.986" y1="256.226" x2="488.914" y2="489.155" gradientUnits="userSpaceOnUse">
<stop/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<linearGradient id="e" x1="255.972" y1="256.354" x2="488.901" y2="489.283" gradientUnits="userSpaceOnUse">
<stop/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<clipPath id="a">
<path fill="#fff" d="M0 0h512v512H0z"/>
</clipPath>
</defs>
<g clip-path="url(#a)">
<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="url(#b)"/>
<path opacity=".2" fill-rule="evenodd" clip-rule="evenodd" d="m293.269 218.73-74.539 74.538 177.078 177.067a256.008 256.008 0 0 0 74.443-74.624L293.269 218.73Z" fill="url(#c)"/>
<path opacity=".2" fill-rule="evenodd" clip-rule="evenodd" d="m360.811 151.188-4.704 4.704a141.657 141.657 0 0 1 41.536 100.107A141.651 141.651 0 0 1 256 397.652a141.653 141.653 0 0 1-100.107-41.546l-4.704 4.704 147.542 147.563A256.002 256.002 0 0 0 508.16 298.516L360.811 151.188Z" fill="url(#d)"/>
<path opacity=".2" fill-rule="evenodd" clip-rule="evenodd" d="M414.4 97.556v.043l-12.32 12.32a206.708 206.708 0 0 1 60.64 146.08A206.709 206.709 0 0 1 256 462.708a206.706 206.706 0 0 1-146.08-60.65L97.6 414.399l87.338 87.328A256.023 256.023 0 0 0 256 511.999a256 256 0 0 0 256-256 255.965 255.965 0 0 0-10.166-70.997L414.4 97.556Z" fill="url(#e)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M256 31.997a18.447 18.447 0 0 0-17.986 14.428 210.822 210.822 0 0 0-117.547 48.792 18.45 18.45 0 0 0-9.408-2.609 18.447 18.447 0 0 0-18.447 18.448 18.446 18.446 0 0 0 2.596 9.395 210.82 210.82 0 0 0-48.885 117.587A18.445 18.445 0 0 0 32 255.998a18.446 18.446 0 0 0 14.415 17.986A210.823 210.823 0 0 0 95.221 391.53a18.449 18.449 0 0 0-2.61 9.409 18.446 18.446 0 0 0 18.448 18.446 18.443 18.443 0 0 0 9.368-2.582 210.822 210.822 0 0 0 117.613 48.884A18.455 18.455 0 0 0 256 479.998a18.45 18.45 0 0 0 17.986-14.43 210.824 210.824 0 0 0 117.692-48.699 18.445 18.445 0 0 0 9.263 2.516 18.447 18.447 0 0 0 18.447-18.446 18.438 18.438 0 0 0-2.596-9.382 210.826 210.826 0 0 0 49.07-117.639A18.449 18.449 0 0 0 480 255.998a18.454 18.454 0 0 0-14.441-17.988 210.821 210.821 0 0 0-48.687-117.678 18.452 18.452 0 0 0 2.516-9.276 18.444 18.444 0 0 0-18.447-18.448 18.45 18.45 0 0 0-9.395 2.596A210.822 210.822 0 0 0 273.92 46.148 18.448 18.448 0 0 0 256 31.997Zm0 7.906a10.541 10.541 0 1 1 0 21.082 10.541 10.541 0 0 1 0-21.082ZM238.647 56.65A18.445 18.445 0 0 0 256 68.905a18.445 18.445 0 0 0 17.261-11.991 200.29 200.29 0 0 1 111.131 46.038 18.444 18.444 0 0 0-1.898 8.104 18.45 18.45 0 0 0 18.447 18.447c2.824-.001 5.61-.65 8.143-1.898a200.294 200.294 0 0 1 46.092 111.105 18.442 18.442 0 0 0-12.07 17.288 18.448 18.448 0 0 0 11.99 17.26 200.274 200.274 0 0 1-46.051 111.144 18.45 18.45 0 0 0-8.104-1.91 18.447 18.447 0 0 0-18.447 18.447 18.437 18.437 0 0 0 1.898 8.116 200.283 200.283 0 0 1-111.091 46.118A18.451 18.451 0 0 0 256 443.103a18.457 18.457 0 0 0-10.492 3.289 18.454 18.454 0 0 0-6.756 8.675 200.291 200.291 0 0 1-111.223-45.854 18.437 18.437 0 0 0 1.977-8.274 18.452 18.452 0 0 0-5.403-13.045 18.446 18.446 0 0 0-13.044-5.402c-2.82.002-5.601.651-8.13 1.896A200.284 200.284 0 0 1 56.666 273.35a18.446 18.446 0 0 0 12.228-17.352 18.445 18.445 0 0 0-11.964-17.249 200.286 200.286 0 0 1 45.854-111.223 18.441 18.441 0 0 0 8.275 1.977 18.45 18.45 0 0 0 18.447-18.447 18.438 18.438 0 0 0-1.898-8.13A200.284 200.284 0 0 1 238.647 56.65ZM256 95.258a18.444 18.444 0 0 0-18.025 14.546 147.576 147.576 0 0 0-129.551 146.194 147.576 147.576 0 0 0 129.577 146.258A18.446 18.446 0 0 0 256 416.75a18.445 18.445 0 0 0 18.025-14.56 147.578 147.578 0 0 0 129.551-146.192 147.57 147.57 0 0 0-129.577-146.259A18.444 18.444 0 0 0 256 95.244v.014Zm-144.941 5.27a10.54 10.54 0 1 1 .002 21.08 10.54 10.54 0 0 1-.002-21.08Zm289.882 0a10.54 10.54 0 1 1 .002 21.08 10.54 10.54 0 0 1-.002-21.08ZM256 103.163a10.541 10.541 0 1 1 0 21.083 10.541 10.541 0 0 1 0-21.083Zm-17.235 17.103A18.445 18.445 0 0 0 256 132.138a18.449 18.449 0 0 0 17.208-11.846 137.037 137.037 0 0 1 119.827 135.719 137.035 137.035 0 0 1-119.8 135.716 18.44 18.44 0 0 0-6.774-8.608A18.442 18.442 0 0 0 256 379.868a18.448 18.448 0 0 0-17.208 11.834 137.034 137.034 0 0 1-119.827-135.704 137.033 137.033 0 0 1 119.8-135.732ZM256 203.292a52.709 52.709 0 0 0-37.269 15.436 52.71 52.71 0 0 0 0 74.538A52.71 52.71 0 0 0 256 308.704a52.71 52.71 0 0 0 52.706-52.706 52.71 52.71 0 0 0-15.437-37.27A52.709 52.709 0 0 0 256 203.292ZM50.447 245.456a10.54 10.54 0 1 1 .002 21.08 10.54 10.54 0 0 1-.002-21.08Zm411.106 0a10.54 10.54 0 1 1 .002 21.08 10.54 10.54 0 0 1-.002-21.08ZM256 387.762a10.54 10.54 0 1 1 .002 21.08 10.54 10.54 0 0 1-.002-21.08Zm-144.941 2.635a10.54 10.54 0 1 1 0 21.082 10.54 10.54 0 0 1-7.454-17.995 10.54 10.54 0 0 1 7.454-3.087Zm289.882 0a10.54 10.54 0 1 1 0 21.082c-2.796 0-5.477-1.11-7.454-3.086a10.545 10.545 0 0 1 0-14.909 10.54 10.54 0 0 1 7.454-3.087ZM256 451.009a10.541 10.541 0 1 1 0 21.083 10.541 10.541 0 0 1 0-21.083Z" fill="#FCFCFC"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.4 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 12 KiB

View File

@ -1,4 +0,0 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="256" cy="256" r="256" fill="#fff"/>
<path d="M256 0C114.621 0 0 114.621 0 256c0 141.401 114.621 256 256 256 141.401 0 256-114.599 256-256C512 114.621 397.401 0 256 0Zm0 43.652c117.293 0 212.348 95.055 212.348 212.348 0 18.04-2.461 35.449-6.696 52.174l-101-112.261-129.13 146.913 62.304-124.652-31.13-55.652L79.13 373.478C56.736 339.827 43.652 299.446 43.652 256c0-117.293 95.055-212.348 212.348-212.348Z" fill="#DC682E"/>
</svg>

Before

Width:  |  Height:  |  Size: 519 B

View File

@ -1,5 +0,0 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="256" cy="256" r="256" fill="#fff"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M256 20.813C126.11 20.813 20.813 126.11 20.813 256c0 129.89 105.297 235.187 235.187 235.187 129.89 0 235.187-105.297 235.187-235.187C491.187 126.11 385.89 20.813 256 20.813ZM0 256C0 114.615 114.615 0 256 0s256 114.615 256 256-114.615 256-256 256S0 397.385 0 256Z" fill="#000"/>
<path d="M110.309 120.715v187.318c0 45.732 37.52 83.252 83.252 83.252h124.878c45.732 0 83.252-37.52 83.252-83.252V203.967c0-34.237-28.201-62.439-62.439-62.439-15.995 0-30.526 6.323-41.626 16.372-11.1-10.049-25.631-16.372-41.626-16.372-34.238 0-62.439 28.202-62.439 62.439v104.066h41.626V203.967c0-11.741 9.072-20.813 20.813-20.813s20.813 9.072 20.813 20.813v104.066h41.626V203.967c0-11.741 9.072-20.813 20.813-20.813s20.813 9.072 20.813 20.813v104.066c0 23.235-18.39 41.626-41.626 41.626H193.561c-23.236 0-41.626-18.391-41.626-41.626V120.715h-41.626Z" fill="#000"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -1,13 +0,0 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<clipPath id="a">
<path fill="#fff" d="M0 0h512v512H0z"/>
</clipPath>
</defs>
<g clip-path="url(#a)">
<circle cx="256" cy="256" r="256" fill="#fff"/>
<path d="M512 256.008C512 114.629 397.382 0 255.995 0 114.613 0 0 114.629 0 256.008 0 397.389 114.613 512 255.995 512 397.382 512 512 397.389 512 256.008Z" fill="#0068C8"/>
<path d="M240.72 211.746c-9.1-9.863-15.099-22.543-16.949-35.83-1.85-13.287.457-27.122 6.517-39.092 6.061-11.97 15.849-22.023 27.657-28.405 11.809-6.383 25.586-9.066 38.929-7.583 21.46 2.385 41.363 15.949 51.418 35.042l120.912 16.665H331.397c-8.598-10.996-21.586-18.464-35.421-20.367-9.88-1.359-20.128.069-29.26 4.075-9.132 4.006-17.119 10.579-22.805 18.766a54.612 54.612 0 0 0-9.612 27.914c-.56 9.95 1.689 20.042 6.421 28.815Zm17 45.207L72.652 123.992c-8.866 17.497-12.375 37.66-9.94 57.12 2.434 19.46 10.802 38.139 23.706 52.917 16.923 19.381 41.647 31.758 67.315 33.7-12.117-3.912-23.217-10.927-31.947-20.19a76.279 76.279 0 0 1-18.254-33.074c-3.645-14.113-3.107-29.277 1.529-43.096l152.659 85.584Z" fill="#fff"/>
<path d="m247.447 292.869-162.61-45.722c-1.31 15.198 1.674 30.742 8.52 44.376 6.846 13.634 17.533 25.317 30.509 33.352 19.25 11.92 43.49 15.484 65.36 9.61-21.91.147-43.616-10.731-56.602-28.365-7.331-9.955-11.94-21.892-13.199-34.188l128.022 20.937Zm74.159-102.046a71.684 71.684 0 0 0-6.214 19.844c-3.386 21.307 2.95 42.828 9.265 63.458 6.315 20.631 12.752 42.099 9.567 63.437-2.379 15.937-10.156 30.855-21.041 42.743-10.884 11.889-24.778 20.829-39.708 26.917-24.594 10.028-52.258 12.384-78.195 6.66v70.93l21.329-50.632c27.643 6.304 57.238 3.754 83.393-7.186 18.732-7.835 35.822-20.034 48.145-36.163 12.322-16.128 19.673-36.28 19.152-56.564-.626-24.385-12.15-46.985-23.304-68.682-11.154-21.698-22.456-44.471-22.58-68.864a75.38 75.38 0 0 1 .191-5.898Z" fill="#fff"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -1,4 +0,0 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="256" cy="256" r="256" fill="#fff"/>
<path d="M281.797 169.861v-4.22l-13.114.901c-3.714.234-6.502 1.024-8.377 2.356-1.876 1.345-2.813 3.208-2.813 5.589 0 2.32.925 4.17 2.788 5.54 1.851 1.381 4.343 2.06 7.452 2.06 1.986 0 3.849-.308 5.564-.913 1.715-.605 3.22-1.456 4.478-2.542a11.378 11.378 0 0 0 2.949-3.849c.716-1.493 1.073-3.133 1.073-4.922ZM256 0C113.146 0 0 113.146 0 256c0 142.866 113.146 256 256 256 142.854 0 256-113.134 256-256C512 113.146 398.866 0 256 0Zm49.695 151.737c1.209-3.393 2.911-6.304 5.12-8.722 2.208-2.419 4.861-4.282 7.97-5.589 3.109-1.308 6.576-1.962 10.388-1.962 3.442 0 6.551.518 9.315 1.542 2.775 1.024 5.144 2.406 7.13 4.146 1.987 1.739 3.566 3.763 4.726 6.082a20.465 20.465 0 0 1 2.085 7.353h-10.277a13.236 13.236 0 0 0-1.394-3.973 10.894 10.894 0 0 0-2.628-3.183c-1.098-.9-2.381-1.604-3.85-2.109-1.48-.519-3.133-.765-4.996-.765-2.184 0-4.17.444-5.934 1.32-1.777.876-3.294 2.122-4.553 3.726-1.258 1.604-2.233 3.565-2.924 5.86-.703 2.307-1.049 4.861-1.049 7.674 0 2.911.346 5.527 1.049 7.822.691 2.307 1.678 4.244 2.961 5.835a12.788 12.788 0 0 0 4.602 3.652c1.789.839 3.763 1.271 5.91 1.271 3.516 0 6.378-.827 8.599-2.48 2.22-1.653 3.652-4.071 4.318-7.254h10.289c-.296 2.813-1.073 5.379-2.332 7.698a19.81 19.81 0 0 1-4.885 5.934c-2.011 1.641-4.368 2.912-7.082 3.8-2.714.889-5.7 1.345-8.944 1.345-3.85 0-7.317-.641-10.438-1.912-3.109-1.271-5.786-3.109-8.007-5.49-2.221-2.381-3.935-5.281-5.144-8.698-1.21-3.418-1.814-7.255-1.814-11.536-.025-4.182.58-7.982 1.789-11.387Zm-146.235-15.57h10.29v9.142h.197a15.219 15.219 0 0 1 2.467-4.071 15.425 15.425 0 0 1 3.504-3.06c1.32-.851 2.788-1.493 4.368-1.937a18.62 18.62 0 0 1 5.021-.666c3.775 0 6.971.901 9.561 2.702 2.604 1.801 4.454 4.392 5.54 7.773h.259a16.181 16.181 0 0 1 2.727-4.368 17.463 17.463 0 0 1 3.873-3.306c1.456-.913 3.06-1.604 4.8-2.085 1.739-.481 3.565-.716 5.49-.716 2.652 0 5.058.42 7.229 1.271 2.172.851 4.022 2.036 5.565 3.578 1.542 1.542 2.726 3.417 3.553 5.613.826 2.196 1.246 4.639 1.246 7.329v36.777h-10.734v-34.199c0-3.541-.913-6.292-2.739-8.229-1.813-1.937-4.416-2.912-7.797-2.912-1.653 0-3.17.297-4.552.876-1.37.58-2.566 1.395-3.553 2.443-1 1.037-1.777 2.295-2.332 3.751-.568 1.456-.851 3.047-.851 4.774v33.496h-10.586v-35.087c0-1.555-.247-2.961-.728-4.22-.481-1.258-1.159-2.331-2.06-3.232-.888-.901-1.986-1.579-3.257-2.06-1.283-.481-2.714-.728-4.306-.728-1.653 0-3.183.308-4.602.925a10.861 10.861 0 0 0-3.627 2.554 11.612 11.612 0 0 0-2.356 3.874c-.543 1.48-1.431 3.109-1.431 4.861v33.101H159.46v-53.964Zm23.355 258.332c-47.191 0-76.788-32.793-76.788-85.128s29.597-85.238 76.788-85.238c47.19 0 76.676 32.903 76.676 85.238 0 52.323-29.486 85.128-76.676 85.128Zm87.373-204.491c-1.74.444-3.516.666-5.342.666-2.69 0-5.145-.383-7.378-1.148-2.245-.765-4.158-1.838-5.761-3.232a14.486 14.486 0 0 1-3.751-5.046c-.901-1.974-1.345-4.17-1.345-6.588 0-4.738 1.765-8.439 5.293-11.104 3.528-2.665 8.636-4.219 15.335-4.651l14.558-.839v-4.17c0-3.109-.987-5.49-2.961-7.106-1.974-1.616-4.762-2.431-8.377-2.431-1.455 0-2.825.185-4.083.543-1.259.37-2.369.888-3.331 1.567a8.945 8.945 0 0 0-2.381 2.443 8.713 8.713 0 0 0-1.296 3.158h-10.092c.062-2.381.654-4.589 1.764-6.613 1.111-2.023 2.616-3.775 4.528-5.268 1.912-1.493 4.146-2.652 6.736-3.479 2.591-.826 5.404-1.246 8.451-1.246 3.282 0 6.255.407 8.92 1.246s4.948 2.011 6.835 3.553c1.888 1.542 3.344 3.393 4.368 5.564 1.024 2.172 1.542 4.602 1.542 7.279v37.025h-10.277v-8.994h-.259a16.19 16.19 0 0 1-2.9 3.948 18.593 18.593 0 0 1-3.972 3.01 20.02 20.02 0 0 1-4.824 1.913Zm67.892 204.491c-35.988 0-60.453-18.851-62.155-48.449h23.428c1.826 16.915 18.173 28.117 40.566 28.117 21.479 0 36.913-11.202 36.913-26.513 0-13.25-9.376-21.257-31.078-26.735l-21.146-5.256c-30.399-7.538-44.217-21.368-44.217-44.106 0-27.993 24.453-47.424 59.306-47.424 34.051 0 57.812 19.542 58.725 47.646h-23.194c-1.604-16.914-15.422-27.314-36-27.314-20.456 0-34.619 10.511-34.619 25.711 0 11.992 8.908 19.085 30.621 24.563l17.828 4.454c33.94 8.229 47.881 21.603 47.881 45.599-.012 30.621-24.23 49.707-62.859 49.707ZM182.815 245.143c-32.336 0-52.557 24.798-52.557 64.216 0 39.307 20.221 64.105 52.557 64.105 32.225 0 52.557-24.798 52.557-64.105.012-39.418-20.332-64.216-52.557-64.216Z" fill="#000"/>
</svg>

Before

Width:  |  Height:  |  Size: 4.2 KiB

View File

@ -1,4 +0,0 @@
<svg height="512" width="512" xmlns="http://www.w3.org/2000/svg">
<circle style="fill:#fff;stroke-width:5.60681;stroke-dasharray:5.60681,5.60681;stop-color:#000;stroke:none" cx="256" cy="256" r="256"/>
<path style="fill:#35bf5c;stroke-width:5.2857" d="M83.564 90.088v331.824h96.995V183.413h123.939V90.088Zm247.877 0v331.824h96.995V90.088Zm-123.939 119.25v212.574h96.996V209.337Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 389 B

View File

@ -1,5 +0,0 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg">
<rect ry="35.246" y="24.117" height="463.767" width="512" style="color:#000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000;solid-opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:#fff;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"/>
<rect ry="23.832" y="38.554" x="14.915" height="433.039" width="482.169" style="color:#000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000;solid-opacity:1;fill:#000;fill-opacity:1;fill-rule:nonzero;stroke:#fff;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"/>
<path d="m365.086 106.282-95.62 111.478-95.305-111.044-39.102 33.564L235.52 257.333l-14.672 17.106-24.901-29.432-67.997 80.362-68.013 80.35H452.06l-42.502-51.055-42.501-51.055-11.767 14.138-65.316-76.103 98.73-115.106-23.62-20.256zM256.024 281.217l65.825 76.71-15.044 18.074-42.861-50.632-22.74-26.875z" style="fill:#fff;fill-rule:evenodd;stroke:#000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1,20 +0,0 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="a" x1="125.937" y1="267.578" x2="211.587" y2="415.677" gradientUnits="userSpaceOnUse">
<stop stop-color="#699AD7"/>
<stop offset=".243" stop-color="#7EB1DD"/>
<stop offset="1" stop-color="#7EBAE4"/>
</linearGradient>
<linearGradient id="b" x1="134.786" y1="262.539" x2="218.917" y2="411.215" gradientUnits="userSpaceOnUse">
<stop stop-color="#415E9A"/>
<stop offset=".232" stop-color="#4A6BAF"/>
<stop offset="1" stop-color="#5277C3"/>
</linearGradient>
</defs>
<circle cx="256" cy="256" r="256" fill="#fff"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="m162.443 261.346 116.911 202.567-53.728.504-31.212-54.422-31.435 54.131-26.696-.01-13.672-23.627 44.785-77.027-31.792-55.338 26.839-46.778Z" fill="#5277C3"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M204.641 177.906 87.711 380.462l-27.3-46.289 31.513-54.248-62.586-.165L16 256.631l13.62-23.658 89.084.282 32.017-55.209 53.92-.14Zm8.97 161.92 233.842.012-26.428 46.793-62.726-.174 31.151 54.296-13.357 23.119-27.294.03-44.298-77.308-63.808-.129-27.082-46.639Zm136.104-88.755L232.805 48.504 286.532 48l31.213 54.422 31.435-54.131 26.695.01 13.673 23.628-44.786 77.027 31.792 55.337-26.839 46.778Z" fill="#7EBAE4"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="m162.443 261.346 116.911 202.567-53.728.504-31.212-54.422-31.435 54.131-26.696-.01-13.672-23.627 44.785-77.027-31.792-55.338 26.839-46.778Zm135.793-89.267-233.841-.011 26.427-46.793 62.726.173-31.15-54.295 13.357-23.12 27.293-.03 44.299 77.309 63.808.129 27.081 46.638Zm9.123 162.389 116.93-202.556 27.301 46.289-31.514 54.248 62.586.165L496 255.743l-13.62 23.658-89.084-.281-32.016 55.208-53.921.14Z" fill="#5277C3"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="m162.582 261.216 116.911 202.567-53.728.504-31.212-54.422-31.435 54.131-26.696-.01-13.672-23.628 44.785-77.027-31.792-55.337 26.839-46.778Z" fill="url(#a)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="m162.582 261.216 116.911 202.567-53.728.504-31.212-54.422-31.435 54.131-26.696-.01-13.672-23.628 44.785-77.027-31.792-55.337 26.839-46.778Z" fill="url(#b)"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 71 KiB

View File

@ -1,5 +0,0 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="256" cy="256" r="256" fill="#fff"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M281.904 192.046c9.201-8.613 21.235-13.091 33.928-12.636l.015.004c26.149.919 46.617 22.855 45.735 48.957-.402 12.585-5.716 24.26-14.951 32.914-9.254 8.612-21.349 13.091-34.035 12.708-26.103-.957-46.578-22.924-45.697-49.033.384-12.635 5.808-24.302 15.005-32.914Zm20.671 25.105c0 7.694 9.385 13.972 21.004 13.972 11.613 0 21.024-6.278 21.032-13.972 0-7.766-9.412-14.009-21.032-14.009-11.619 0-21.004 6.243-21.004 14.009Z" fill="#73BA25"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M430.46 289.715c-.829.566-1.768 1.206-2.798 1.886l.043-.004h.003l-.03.021c-15.62 10.913-52.061 36.374-98.839 32.216-42.055-3.713-96.952-27.789-163.159-71.349 2.952 6.894 16.757 39.464 19.015 44.976l.924 1.068c9.584 4.976 101.553 51.754 147.211 50.832 36.764-.766 76.113-18.676 91.854-28.134l4.961-.919c1.422 1.114 1.192 3.216.801 5.202-.966 4.513-3.175 12.743-4.673 16.651l-1.262 3.181c-1.805 4.819-3.531 9.297-6.866 12.057-9.281 8.417-24.079 15.116-47.268 25.183-35.845 15.655-94.001 25.607-147.978 25.266-19.353-.428-38.03-2.572-54.438-4.486l-.12-.013c-43.921-4.951-77.2-8.702-89.886 20.952C36.45 380.409 11 321.177 11 256c0-55.306 18.325-106.331 49.235-147.336 39.845 9.785 68.796 19.174 76.252 21.675.092-3.671.705-36.513.705-36.513l.476-1.148 1.265-.348c7.437 1.072 166.149 24.574 233.084 63.501 6.826 3.988 10.799 8.182 14.847 12.455.852.899 1.707 1.802 2.593 2.707 18.478 19.1 42.932 98.525 45.543 114.908l-1.031 1.604c-.636.25-1.854 1.081-3.509 2.21ZM267.662 177.611c-13.256 12.325-20.851 29.129-21.522 47.234h.039c-1.265 37.359 28.104 68.826 65.478 70.201 18.233.612 35.499-5.78 48.764-18.22 13.226-12.287 20.816-29.091 21.522-47.196 1.265-37.324-28.135-68.865-65.555-70.2-18.153-.575-35.461 5.814-48.726 18.181Z" fill="#73BA25"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -1,9 +0,0 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="256" cy="256" r="256" fill="#fff"/>
<path d="M400.975 234.085c-.672 2.86-2.124 5.393-4.603 6.986-3.894 2.497-8.639 1.773-12.002-1.267-3.152-2.823-4.214-7.601-3.222-11.727 1.026-4.307 4.284-8.108 8.462-9.302 9.312-2.643 13.171 7.709 11.365 15.31Zm-5.7-29.39c-5.771-2.353-3.789-33.3 1.487-70.87 1.487-10.497 4.036-15.456 6.904-17.989 4.107-3.584 11.578-3.728 16.641-2.968 5.807.868 11.366 3.619 15.579 7.782 3.718 3.692 4.143 7.456 2.868 12.342-2.089 7.782-5.665 15.238-9.099 22.514-.815 1.773-7.931 15.563-8.887 17.265-17.173 30.91-20.607 33.914-25.493 31.924Z" fill="#6CC7D2"/>
<path d="M278.787 190.76c3.399 14.84 3.045 31.127.141 42.855-2.726 11.075-10.126 20.993-21.881 24.323-10.303 2.932-22.306.796-29.671-6.443-12.109-11.872-19.19-39.742-16.039-59.975 2.549-16.252 11.118-37.064 29.919-37.969a24.198 24.198 0 0 1 3.611.072c19.155 1.774 29.6 18.279 33.92 37.137Zm-34.628 33.77c1.062.181 2.124.181 3.187-.145 3.576-1.05 5.629-4.85 6.585-8.542 1.452-5.61 1.239-11.655-.637-17.157-.956-2.787-2.372-5.501-4.532-7.528-7.613-7.131-15.225.289-16.535 8.723-1.027 6.587.46 14.224 4.496 19.545 1.877 2.461 4.568 4.597 7.436 5.104Z" fill="#BBB5B3"/>
<path d="M320.248 222.213c-.035 27.4 2.656 48.357-9.135 50.854-9.56 1.991-9.241-6.587-9.984-13.79-2.833-27.906-5.418-74.272-6.515-102.324.779-12.053 8.674-19.436 16.889-21.246 12.675-2.787 26.201-1.991 37.425 5.103 22.2 14.044 23.97 39.815 10.515 60.844-7.364 11.474-29.635 19.799-39.195 19.075v1.484Zm2.833-61.423c-1.381.217-3.647.869-4.284 2.244-1.523 3.221-1.417 23.672 1.239 32.25.425 1.412 1.381 2.751 2.761 3.258 5.028 1.882 9.56-4.416 11.614-8.217 2.868-5.284 3.788-11.51 1.983-17.301-1.7-5.393-6.975-13.211-13.313-12.234Z" fill="#99918D"/>
<path d="M193.28 174.399c-8.321 17.989-22.13 32.286-41.249 39.344 5.488 14.66 11.082 29.138 16.535 43.76 3.045 7.891 5.948 16.542 3.293 24.324-2.762 7.962-13.526 10.17-21.351 1.701-15.048-16.361-65.927-120.023-69.68-127.805-3.187-6.696-7.967-13.863-7.825-21.609.248-11.655 17.88-23.454 26.343-29.499 11.825-8.433 25.492-14.188 40.115-14.224 11.401 0 21.138 3.185 29.777 8.831 13.243 8.687 22.448 22.55 25.847 38.222 2.975 13.79 2.337 27.907-1.805 36.955Zm-38.771-19.69c-2.974-11.039-9.701-21.21-18.163-28.341-1.842-1.556-3.824-3.004-6.126-3.8-15.862-5.321-8.993 21.789-6.408 28.63 3.576 9.592 8.993 21.717 16.251 28.956 1.594 1.593 3.47 3.005 5.63 3.439 3.293.688 6.338-1.665 8.002-4.416 1.381-2.28 1.912-4.995 2.231-7.637.601-5.61.07-11.329-1.417-16.831Z" fill="#48B9C7"/>
<path d="M382.966 312.184c-.071 15.89-9.56 31.779-30.485 31.779-20.926 0-30.663-15.636-30.663-31.598 0-19.907 13.561-32.214 31.087-32.214 20.324.181 30.238 15.6 30.061 32.033Zm-30.061-22.007c-13.135 0-20.5 9.339-20.571 22.079 0 11.076 6.055 21.464 20.324 21.464 14.268 0 19.721-11.257 19.721-21.572.177-10.714-5.382-21.717-19.474-21.971Zm38.842 45.642c0 2.353.07-11.184 0-13.247h9.63l.673 8.289c3.151 1.846 8.037 3.221 12.038 3.221 7.436 0 15.19-1.918 15.19-9.338-.248-6.733-8.887-8.108-15.863-8.832-11.861-1.231-21.421-4.199-21.421-17.808 0-12.125 13.42-18.17 23.404-18.17 8.038-.181 13.738 1.122 20.996 7.058 0 4.886-.07 7.782-.07 12.668h-9.312l-.602-8.035c-3.753-1.846-7.613-2.353-10.587-2.28-6.408.072-13.242 3.149-13.242 8.65 0 5.394 4.426 6.878 12.286 8.036 12.817 1.737 25.174 4.705 25.174 18.676-.071 15.275-14.092 19.292-26.13 19.292-9.17.037-14.906-1.701-22.164-8.18Z" fill="#554741"/>
<path d="M308.824 338.751c0 2.787-2.195 5.031-4.921 5.031h-56.899c-2.726 0-4.921-2.244-4.921-5.031v-.434c0-2.787 2.195-5.031 4.921-5.031h56.899c2.726 0 4.921 2.244 4.921 5.031v.434Z" fill="#FAA41A"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.6 KiB

View File

@ -1,4 +0,0 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="256" cy="256" r="256" fill="#fff"/>
<path d="M271.466 65A191.387 191.387 0 0 0 80.081 256.385c.12 12.004 1.37 23.97 3.732 35.741l-1.289-5.251c-70.546 49.084-76.455 98.024 31.602 78.473l.045-.018a1483.809 1483.809 0 0 0 25.999-7.942c3.633-1.145 7.254-2.309 10.87-3.487a1334.676 1334.676 0 0 0 24.652-8.271l.748-.254a1193.623 1193.623 0 0 0 58.988-22.201c.377-.15.76-.287 1.137-.44.018 0 .03 0 .051-.006l-.024-.03c32.466-13.268 63.306-27.655 93.069-43.411a41.867 41.867 0 0 0 23.953 7.539 41.868 41.868 0 0 0 41.866-41.866c0-1.234-.055-2.467-.165-3.696 28.618-18.044 56.593-37.652 84.509-59.096 3.827-7.248-1.534-24.608-18.316-20.29-24.952 20.251-50.777 38.334-77.179 54.638a41.874 41.874 0 0 0-30.715-13.421 41.866 41.866 0 0 0-41.865 41.865c.009 3.667.5 7.317 1.459 10.855-31.889 15.784-64.212 29.599-96.505 42.045a142.038 142.038 0 0 1-23.31-77.11A142.045 142.045 0 0 1 335.436 78.708c2.553 0 5.106.07 7.655.21A191.38 191.38 0 0 0 271.466 65Zm188.487 223.926a142.044 142.044 0 0 1-124.514 73.871 142.04 142.04 0 0 1-81.769-25.944l-.018.036c-36.946 15.098-75.51 30.212-126.314 45.415a191.389 191.389 0 0 0 144.128 65.468 191.381 191.381 0 0 0 188.487-158.849v.003ZM88.66 311.79a191.376 191.376 0 0 0 10.377 26.845l-.329.105c-54.951 13.301-23.998-7.273-8.744-21.651l-1.304-5.299Z" fill="#DC322F"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -1,6 +0,0 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="256" cy="256" r="256" fill="#fff"/>
<path d="M333.223 175.889 73.998 435.115a255.999 255.999 0 0 0 75.451 52.77L333.223 304.11l117.062 117.065a255.997 255.997 0 0 0 46.951-81.274L333.223 175.889Z" fill="#fff"/>
<path d="M497.755 340.42C506.985 313.988 512 285.58 512 256 512 114.615 397.385 0 256 0 114.616 0 0 114.615 0 256c0 69.958 28.061 133.362 73.542 179.57l259.68-259.681L497.755 340.42Z" fill="#10B981"/>
<path d="m450.285 421.176-117.77-117.77-184.428 184.428c32.611 15.058 68.928 23.46 107.206 23.46 78.102 0 148.036-34.976 194.992-90.118Z" fill="#10B981"/>
</svg>

Before

Width:  |  Height:  |  Size: 664 B

View File

@ -1,5 +0,0 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg">
<path d="M159.03 0c-11.987 37.222-7.81 24.882-11.987 37.222C57.657 77.09.076 165.712 0 263.512a247.84 247.84 0 0 0 10.985 72.947L.764 354.614l20.702 9.35c39.75 89.646 128.636 147.477 226.777 147.548 117.308-.056 218.563-82.145 242.772-196.82 8.22-11.091 15.06-23.25 20.985-35.684a242.009 242.011 0 0 0-15.537-15.052l.019-.452c0-136.97-111.143-248.008-248.24-248.008a248.457 248.46 0 0 0-68.758 9.838z" style="fill:#4c5263;fill-opacity:1;stroke-width:3.87693"/>
<path style="color:#000;text-indent:0;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;white-space:normal;isolation:auto;mix-blend-mode:normal;fill:#fff;fill-rule:evenodd;stroke-width:3.87693" d="M166.783 34.875C141.566 137.692 68.97 264.21 23.268 344.885c5.726 3.097 13.6 5.696 40.397 9.67 25.488 3.637 56.875 7.23 87.355 10.394 55.893 5.801 100.48 10.252 108.862 10.94-1.196-15.537-12.7-184.459-15.518-217.008-28.208-51.067-51.089-77.462-77.573-124.006Zm96.974 131.755.008.008v-.008zm.008.008c37.38 76.935 37.414 153.057 15.511 209.248 30.842.188 81.174 3.645 135.754-23.25-44.86-102.325-151.235-185.976-151.27-185.998Zm73.688 46.492c23.196 15.534 45.302 29.71 62.058 46.5 22.693 22.753 34.288 53.399 31.03 85.256 30.397-15.263 50.502-40.71 62.062-62-20.213-18.595-55.313-37-93.092-50.377-20.826-7.378-42.763-14.078-62.058-19.375zm153.792 101.343c-36.255 48.851-103.212 74.964-182.979 86.54-83.224 12.084-179.732 8.49-265.845 1.143 4.123 6.151 8.653 12.122 13.314 17.885 82.897 6.565 174.22 9.255 254.943-2.471 67.318-9.767 128.154-29.593 169.883-66.439a239.082 239.084 0 0 0 10.684-36.658z"/>
<path d="M310.67 417.622c-84.375 11.918-170.308 8.965-254.977 2.483 54.486 69.542 149.177 104.586 236.645 87.698 84.42-14.522 158.412-76.397 188.219-156.676-50.13 35.59-109.356 57.191-169.887 66.499z" fill="#5294e2" style="stroke-width:3.88118"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -1,5 +0,0 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="256" cy="256" r="256" fill="#fff"/>
<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="#404552"/>
<path d="M344 300c-35.112 0-64.63 24.944-74 58-1.978 6.978-3.339 9.368-6 14-3.431 5.972-10.397 14.598-20 20-7.812 4.395-14.545 8.135-24.606 6.619-2.619-.394-7.259-1.124-11.902-3.795-7.4-4.26-9.84-8-15.5-18.82.808 11.548-.681 15.761 5 36 11.308 40.288 54.762 72 106 72 37.982 0 73.184-15.83 92.992-39.996 7.245-8.838 12.7-15.812 18-28 4.823-11.09 6.005-25.306 6.008-38.004.012-43.112-34.026-78-76-78L344 300Z" fill="#fff"/>
</svg>

Before

Width:  |  Height:  |  Size: 675 B

View File

@ -1,15 +0,0 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<clipPath id="a">
<path fill="#fff" d="M0 0h512v512H0z"/>
</clipPath>
</defs>
<g clip-path="url(#a)">
<circle cx="256" cy="256" r="256" fill="#fff"/>
<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="#DD4814"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M388.553 414.749a37.104 37.104 0 0 1-44.36 36.385 37.108 37.108 0 0 1-29.137-29.181 37.104 37.104 0 0 1 62.65-33.419 37.102 37.102 0 0 1 10.847 26.215Z" fill="#F9F9F9"/>
<path d="M386.906 106.765c5.065-19.855-6.925-40.056-26.78-45.12-19.854-5.066-40.056 6.924-45.12 26.779-5.065 19.855 6.925 40.056 26.78 45.121 19.855 5.064 40.056-6.926 45.12-26.78Zm-278.55 152.762c1.689-20.421-13.495-38.345-33.916-40.035-20.42-1.689-38.345 13.495-40.034 33.916-1.69 20.421 13.495 38.345 33.915 40.035 20.421 1.689 38.345-13.495 40.035-33.916Z" fill="#F9F9F9"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="m242.903 232.615 13.379-18.214-4.835-19.225 8.657-25.634-20.574 20.8-2.923-.45 5.396-13.323-19.169 19.394-18.269 11.187-19.675 36.427 10.849 26.701 3.429 20.743 4.441 10.513-15.009 17.707h20.912l2.698-18.776 8.432-12.929 13.885 2.474 15.74-6.184 11.58-5.959 11.468 7.477-13.492 16.021-13.941 12.761 21.474.337.112-8.657 16.584-12.986 5.958 7.421-17.201 24.509 21.98.056-1.068-12.254 15.908-14.56-8.095-16.302-.955-19.788 16.246-9.387 9.05 1.742 12.311-4.328 3.598-24.903-19.225 5.902-11.693 17.146-19.9 10.512-27.995-11.243-20.068-14.728Z" fill="#F9F9F9"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M214.571 160.773a105.906 105.906 0 0 1 131.721 38.819 105.921 105.921 0 0 1 16.629 46.458l57.507-.787a163.022 163.022 0 0 0-47.614-103.434 49.31 49.31 0 0 1-23.609 5.15 49.31 49.31 0 0 1-23.221-6.688 49.303 49.303 0 0 1-24.393-40.005 164.387 164.387 0 0 0-43.96-6.015 162.34 162.34 0 0 0-72.516 16.865l29.456 49.637ZM194.67 342.739a105.853 105.853 0 0 1 1.517-171.454l-29.4-49.412a163.359 163.359 0 0 0-67.12 94.102 49.362 49.362 0 0 1 21.129 40.761 49.356 49.356 0 0 1-21.578 40.525 163.02 163.02 0 0 0 67.457 95.565l27.995-50.087Zm168.419-75.496a105.97 105.97 0 0 1-52.706 82.132 105.955 105.955 0 0 1-97.498 4.213l-28.108 50.143a163.019 163.019 0 0 0 117.263 11.243 49.477 49.477 0 0 1 24.09-42.35 49.465 49.465 0 0 1 48.708-1.16 162.403 162.403 0 0 0 45.815-104.727l-57.564.506Z" fill="#F9F9F9"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -1,4 +0,0 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="256" cy="256" r="256" fill="#fff"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M248.81.07C110.489 3.376.109 116.526 0 255.124c-.145 181.654 181.527 305.291 350.496 238.532 117.602-46.465 183.621-173.67 154.26-297.228-1.774-7.467-3.09-12.182-5.844-20.944-16.9-53.753-57.66-105.548-107.646-136.79-5.919-3.699-8.899-5.368-21.046-11.786C336.412 9.048 291.216-.944 248.81.07Zm69.168 80.507a54021.586 54021.586 0 0 0 46.847 27.669c24.448 14.432 28.402 16.769 30.766 18.184 2.719 1.627 4.313.447-19.743 14.608a77638.73 77638.73 0 0 0-67.533 39.795c-4.103 2.422-8.009 4.7-8.68 5.06l-1.222.653V69.005l2.066 1.225c1.137.673 9.011 5.33 17.499 10.347Zm-48.044 19.46c8.132.74 7.519-.201 7.519 11.515 0 12.165.795 11.224-8.561 10.132-55.685-6.495-111.495 25.327-136 77.545l-2.855 6.083-4.959-2.975a857.407 857.407 0 0 0-8.956-5.293c-4.801-2.785-4.758-2.223-.768-10.333 7.304-14.84 23.339-36.921 31.382-43.218.82-.641 2.854-2.457 4.521-4.033 29.77-28.162 75.497-43.352 118.677-39.423Zm.646 53.662c2.728.475 5.27.975 5.649 1.112.519.186.689 2.913.689 11.079v10.834l-1.791-.368c-42.241-8.675-82.395 12.911-96.056 51.64-1.913 5.42-1.482 5.309-7.222 1.882a858.353 858.353 0 0 0-9.136-5.368c-4.865-2.807-4.748-2.515-2.863-7.154 17.887-44.023 65.697-71.508 110.73-63.657Zm113.453 12.554c32.939 46.243 37.397 108.792 11.401 159.956-6.418 12.633-14.254 24.354-15.867 23.735-4.726-1.813-17.75-10.448-17.105-11.341 20.191-27.937 27.743-50.628 27.694-83.203-.046-29.879-11.176-63.86-26.31-80.326-1.421-1.546-1.905-1.118 8.041-7.132 10.017-6.059 9.123-5.935 12.146-1.689Zm-47.477 25.628c2.109 2.244 7.076 9.752 9.96 15.05 19.125 35.14 15.975 78.451-8.038 110.513l-4.3 5.742-1.805-.963c-5.3-2.826-16.861-9.842-16.867-10.236-.004-.252 1.446-2.236 3.222-4.409 24.585-30.092 24.699-74.239.267-103.247-3.14-3.728-3.606-3.073 6.286-8.86 9.856-5.767 9.375-5.614 11.275-3.59ZM86.12 203.948c5.968 3.529 14.074 8.33 18.014 10.669a5131.664 5131.664 0 0 0 16.81 9.911c5.305 3.112 10.761 6.342 12.126 7.176 1.364.833 7.316 4.363 13.227 7.845 23.767 13.996 27.006 15.956 27.006 16.326 0 .212-2.294 1.734-5.098 3.38a3679.597 3679.597 0 0 0-10.334 6.099c-9.466 5.61-26.491 15.647-41.06 24.206-7.882 4.631-15.446 9.099-16.81 9.93-6.364 3.88-24.306 14.388-25.06 14.676-.885.34-1.36-115.385-.476-116.268.551-.553.072-.802 11.655 6.05Zm92.12 77.493c11.403 38.067 55.756 63.473 94.544 54.157 1.819-.437 3.493-.803 3.721-.814 1.005-.047.461 21.937-.552 22.251-6.312 1.954-24.188 2.541-34.321 1.127-36.45-5.083-68.215-29.77-81.572-63.394-2.124-5.347-2.798-4.405 7.467-10.444 10.243-6.025 9.806-5.907 10.713-2.883Zm-45.492 30.736c24.473 53.825 81.761 85.13 141.552 77.349l2.618-.34v10.782c0 9.789-.088 10.806-.965 11.071-.53.158-4.684.578-9.231.931-62.223 4.827-123.073-29.993-151.144-86.489-4.382-8.82-4.87-7.624 5.642-13.866 9.794-5.814 8.603-5.872 11.528.562Zm192.946 30.87a18592.274 18592.274 0 0 1 30.864 18.179 9212.582 9212.582 0 0 0 16.534 9.76c5.154 3.034 12.656 7.453 16.673 9.82 7.043 4.153 8.263 5.28 6.458 5.973-.465.177-5.735 3.217-11.712 6.753a41634.479 41634.479 0 0 1-24.37 14.404 38877.115 38877.115 0 0 0-23.975 14.168c-5.76 3.406-14.812 8.75-20.117 11.873a3378.074 3378.074 0 0 0-13.193 7.796c-1.951 1.164-3.749 2.118-3.996 2.118-.246 0-.447-26.31-.447-58.467v-58.465l1.791 1.076c.985.591 12.456 7.347 25.49 15.012Z" fill="#84A454"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -1,4 +0,0 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<ellipse cx="245.5" cy="255.5" rx="235.5" ry="240.5" fill="#fff"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M246.336.269c-49.848 2.482-94.18 17.036-133.471 43.817C-19.977 134.635-37.5 323.632 76.403 437.376c113.886 113.73 302.932 94.911 392.178-39.042 85.454-128.263 39.695-302.53-97.458-371.152C332.705 7.96 287.533-1.782 246.336.269Zm75.139 40.575c35.603 10.288 68.251 29.515 92.938 54.734 5.718 5.843 7.996 10.47 8.269 16.799.737 17.095-19.165 28.372-33.354 18.896-.867-.579-3.811-3.234-6.542-5.902-22.272-21.745-43.729-34.421-73.208-43.249-2.687-.804-5.49-1.766-6.229-2.138-17.972-9.02-13.651-36.976 6.179-39.979 5.388-.816 6.484-.74 11.947.84Zm-56.583 65.572c95.225 6.246 160.221 96.168 136.519 188.87-23.536 92.045-126.062 139.685-211.629 98.334-20.015-9.672-41.473-26.566-46.047-36.253-6.137-12.995 2.933-26.881 17.906-27.418 6.914-.249 10.752 1.346 16.67 6.931 48.543 45.794 122.429 41.018 163.573-10.579 49.175-61.667 19.346-154.527-56.58-176.143-38.591-10.986-77.107-.864-108.224 28.442-11.554 10.882-26.666 8.881-33.19-4.395-4.114-8.374-2.145-20.817 3.771-23.822.619-.314 2.501-1.895 4.184-3.516 29.11-28.022 71.467-43.179 113.047-40.451Zm-2.916 70.509c42.785 3.885 74.545 39.766 73.209 82.707-1.36 43.678-36.46 77.935-79.854 77.935-51.599 0-89.414-48.06-77.799-98.877 8.806-38.525 45.422-65.308 84.444-61.765Zm-194.51 7.836c9.266 2.275 15.693 12.007 14.39 21.791-.167 1.256-.823 4.319-1.457 6.807-7.597 29.775-7.587 56.35.033 86.699 1.816 7.235 1.81 11.005-.03 15.581-5.978 14.864-26.566 17.708-36.806 5.086-5.855-7.217-11.574-38.895-11.58-64.141-.006-22.286 5.27-54.486 10.04-61.271 6.425-9.139 15.616-12.956 25.41-10.552Zm62.895 17.623c13.665 2.156 21.116 14.185 17.562 28.354-4.692 18.713-4.737 33.358-.158 52.332 2.394 9.923 1.087 15.951-4.798 22.116-11.508 12.061-29.811 6.475-34.173-10.43-5.83-22.595-6.462-45.103-1.881-66.963 2.526-12.058 4.272-16.835 7.233-19.796 4.248-4.248 10.703-6.482 16.215-5.613Zm120.614 13.779c-30.63 4.259-46.59 38.884-29.646 64.318 22.337 33.524 74.976 17.402 74.976-22.963 0-23.811-22.682-44.504-45.33-41.355Zm150.935 164.88c16.466 3.641 23.26 23.176 12.397 35.653-9.269 10.646-29.505 26.431-46.031 35.906-17.922 10.276-48.083 22.002-57.802 22.472-18.223.883-29.292-19.677-18.145-33.703 3.14-3.952 6.3-5.783 13.971-8.093 30.256-9.111 50.421-21.118 74.466-44.342 7.712-7.449 13.454-9.592 21.144-7.893Z" fill="#049CFC"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -1,5 +0,0 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="256" cy="256" r="256" fill="#fff"/>
<path d="M512 256.002c0 141.379-114.618 255.996-256.005 255.996C114.611 511.998 0 397.381 0 256.002 0 114.613 114.611 0 255.995 0 397.382 0 512 114.613 512 256.002Z" fill="#F47421"/>
<path d="M325.947 134.832c16.346 9.44 37.243 3.841 46.676-12.5 9.438-16.348 3.844-37.243-12.504-46.681-16.344-9.435-37.239-3.837-46.677 12.51-9.435 16.342-3.838 37.236 12.505 46.671Zm-69.95 221.006a99.448 99.448 0 0 1-42.057-9.289l-23.748 42.558c19.837 9.822 42.17 15.372 65.805 15.372 13.746 0 27.036-1.905 39.667-5.402 2.234-13.727 10.385-26.379 23.38-33.883 12.972-7.489 27.985-8.231 40.98-3.32 25.272-24.85 41.717-58.659 44.111-96.311l-48.71-.709c-4.483 51.001-47.269 90.984-99.428 90.984Zm0-199.679c52.159 0 94.945 39.991 99.428 90.986l48.71-.711c-2.397-37.648-18.842-71.458-44.118-96.306-12.993 4.908-28.004 4.164-40.978-3.327-12.993-7.501-21.142-20.151-23.377-33.88a148.51 148.51 0 0 0-39.665-5.4c-23.635 0-45.966 5.548-65.802 15.374l23.747 42.553a99.417 99.417 0 0 1 42.055-9.289Zm-99.837 99.839c0-33.778 16.786-63.611 42.452-81.677l-24.986-41.858c-29.91 19.985-52.161 50.533-61.402 86.316 10.796 8.799 17.694 22.2 17.694 37.223 0 15.021-6.899 28.421-17.696 37.219 9.24 35.785 31.491 66.333 61.402 86.318l24.988-41.86c-25.666-18.064-42.452-47.898-42.452-81.681Zm169.792 121.165c-16.348 9.438-21.945 30.331-12.509 46.672 9.439 16.348 30.331 21.949 46.679 12.511 16.343-9.437 21.943-30.331 12.504-46.678-9.435-16.339-30.331-21.94-46.674-12.505ZM81.921 221.825c-18.88 0-34.179 15.297-34.179 34.177 0 18.875 15.299 34.173 34.179 34.173 18.873 0 34.173-15.298 34.173-34.173 0-18.88-15.3-34.177-34.173-34.177Z" fill="#fff"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1,15 +0,0 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<clipPath id="a">
<path fill="#fff" d="M0 0h512v512H0z"/>
</clipPath>
</defs>
<g clip-path="url(#a)">
<circle cx="256" cy="256" r="256" fill="#fff"/>
<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="#DD4814"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M388.553 414.749a37.104 37.104 0 0 1-44.36 36.385 37.108 37.108 0 0 1-29.137-29.181 37.104 37.104 0 0 1 62.65-33.419 37.102 37.102 0 0 1 10.847 26.215Z" fill="#F9F9F9"/>
<path d="M386.906 106.765c5.065-19.855-6.925-40.056-26.78-45.12-19.854-5.066-40.056 6.924-45.12 26.779-5.065 19.855 6.925 40.056 26.78 45.121 19.855 5.064 40.056-6.926 45.12-26.78Zm-278.55 152.762c1.689-20.421-13.495-38.345-33.916-40.035-20.42-1.689-38.345 13.495-40.034 33.916-1.69 20.421 13.495 38.345 33.915 40.035 20.421 1.689 38.345-13.495 40.035-33.916Z" fill="#F9F9F9"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="m242.903 232.615 13.379-18.214-4.835-19.225 8.657-25.634-20.574 20.8-2.923-.45 5.396-13.323-19.169 19.394-18.269 11.187-19.675 36.427 10.849 26.701 3.429 20.743 4.441 10.513-15.009 17.707h20.912l2.698-18.776 8.432-12.929 13.885 2.474 15.74-6.184 11.58-5.959 11.468 7.477-13.492 16.021-13.941 12.761 21.474.337.112-8.657 16.584-12.986 5.958 7.421-17.201 24.509 21.98.056-1.068-12.254 15.908-14.56-8.095-16.302-.955-19.788 16.246-9.387 9.05 1.742 12.311-4.328 3.598-24.903-19.225 5.902-11.693 17.146-19.9 10.512-27.995-11.243-20.068-14.728Z" fill="#F9F9F9"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M214.571 160.773a105.906 105.906 0 0 1 131.721 38.819 105.921 105.921 0 0 1 16.629 46.458l57.507-.787a163.022 163.022 0 0 0-47.614-103.434 49.31 49.31 0 0 1-23.609 5.15 49.31 49.31 0 0 1-23.221-6.688 49.303 49.303 0 0 1-24.393-40.005 164.387 164.387 0 0 0-43.96-6.015 162.34 162.34 0 0 0-72.516 16.865l29.456 49.637ZM194.67 342.739a105.853 105.853 0 0 1 1.517-171.454l-29.4-49.412a163.359 163.359 0 0 0-67.12 94.102 49.362 49.362 0 0 1 21.129 40.761 49.356 49.356 0 0 1-21.578 40.525 163.02 163.02 0 0 0 67.457 95.565l27.995-50.087Zm168.419-75.496a105.97 105.97 0 0 1-52.706 82.132 105.955 105.955 0 0 1-97.498 4.213l-28.108 50.143a163.019 163.019 0 0 0 117.263 11.243 49.477 49.477 0 0 1 24.09-42.35 49.465 49.465 0 0 1 48.708-1.16 162.403 162.403 0 0 0 45.815-104.727l-57.564.506Z" fill="#F9F9F9"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -1,4 +0,0 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<ellipse cx="245.5" cy="255.5" rx="235.5" ry="240.5" fill="#fff"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M246.336.269c-49.848 2.482-94.18 17.036-133.471 43.817C-19.977 134.635-37.5 323.632 76.403 437.376c113.886 113.73 302.932 94.911 392.178-39.042 85.454-128.263 39.695-302.53-97.458-371.152C332.705 7.96 287.533-1.782 246.336.269Zm75.139 40.575c35.603 10.288 68.251 29.515 92.938 54.734 5.718 5.843 7.996 10.47 8.269 16.799.737 17.095-19.165 28.372-33.354 18.896-.867-.579-3.811-3.234-6.542-5.902-22.272-21.745-43.729-34.421-73.208-43.249-2.687-.804-5.49-1.766-6.229-2.138-17.972-9.02-13.651-36.976 6.179-39.979 5.388-.816 6.484-.74 11.947.84Zm-56.583 65.572c95.225 6.246 160.221 96.168 136.519 188.87-23.536 92.045-126.062 139.685-211.629 98.334-20.015-9.672-41.473-26.566-46.047-36.253-6.137-12.995 2.933-26.881 17.906-27.418 6.914-.249 10.752 1.346 16.67 6.931 48.543 45.794 122.429 41.018 163.573-10.579 49.175-61.667 19.346-154.527-56.58-176.143-38.591-10.986-77.107-.864-108.224 28.442-11.554 10.882-26.666 8.881-33.19-4.395-4.114-8.374-2.145-20.817 3.771-23.822.619-.314 2.501-1.895 4.184-3.516 29.11-28.022 71.467-43.179 113.047-40.451Zm-2.916 70.509c42.785 3.885 74.545 39.766 73.209 82.707-1.36 43.678-36.46 77.935-79.854 77.935-51.599 0-89.414-48.06-77.799-98.877 8.806-38.525 45.422-65.308 84.444-61.765Zm-194.51 7.836c9.266 2.275 15.693 12.007 14.39 21.791-.167 1.256-.823 4.319-1.457 6.807-7.597 29.775-7.587 56.35.033 86.699 1.816 7.235 1.81 11.005-.03 15.581-5.978 14.864-26.566 17.708-36.806 5.086-5.855-7.217-11.574-38.895-11.58-64.141-.006-22.286 5.27-54.486 10.04-61.271 6.425-9.139 15.616-12.956 25.41-10.552Zm62.895 17.623c13.665 2.156 21.116 14.185 17.562 28.354-4.692 18.713-4.737 33.358-.158 52.332 2.394 9.923 1.087 15.951-4.798 22.116-11.508 12.061-29.811 6.475-34.173-10.43-5.83-22.595-6.462-45.103-1.881-66.963 2.526-12.058 4.272-16.835 7.233-19.796 4.248-4.248 10.703-6.482 16.215-5.613Zm120.614 13.779c-30.63 4.259-46.59 38.884-29.646 64.318 22.337 33.524 74.976 17.402 74.976-22.963 0-23.811-22.682-44.504-45.33-41.355Zm150.935 164.88c16.466 3.641 23.26 23.176 12.397 35.653-9.269 10.646-29.505 26.431-46.031 35.906-17.922 10.276-48.083 22.002-57.802 22.472-18.223.883-29.292-19.677-18.145-33.703 3.14-3.952 6.3-5.783 13.971-8.093 30.256-9.111 50.421-21.118 74.466-44.342 7.712-7.449 13.454-9.592 21.144-7.893Z" fill="#049CFC"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -1,8 +0,0 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<circle cx="255.56683" cy="256.55693" fill="white" id="svg_1" r="254.14359"/>
<g id="svg_2" transform="matrix(2.42206, 0, 0, 2.42304, -54.4509, 1.1236)">
<path d="m128.22121,0c-22.03188,0.04678 -43.49345,7.00727 -61.35906,19.90017l23.90268,23.90268c11.27745,-6.89859 24.23629,-10.55973 37.45638,-10.58221c39.77241,-0.00008 72.01434,32.24184 72.01426,72.01426c-0.03183,13.21538 -3.69956,26.1672 -10.60151,37.43708l23.94799,23.94799c12.8888,-17.87595 19.8404,-39.34715 19.87417,-61.38507c0,-58.11963 -47.11529,-105.2349 -105.23491,-105.2349l0,0z" fill="#ABC2AB" id="svg_14"/>
<path d="m189.58027,190.56963l-23.90269,-23.90268c-11.27745,6.89859 -24.23628,10.55974 -37.45637,10.58221c-39.77242,0.00008 -72.01434,-32.24185 -72.01426,-72.01426c0.03182,-13.21538 3.69954,-26.1672 10.60151,-37.43708l-23.948,-23.94799c-12.88882,17.87594 -19.84038,39.34715 -19.87415,61.38507c0,58.11962 47.11527,105.2349 105.2349,105.2349c22.03188,-0.0468 43.49344,-7.00726 61.35906,-19.90017l0,0z" fill="#478061" id="svg_15"/>
<circle cx="128.20439" cy="105.2349" fill="#ABC2AB" id="svg_3" r="33.50335"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -1,4 +0,0 @@
<svg width="512" height="512" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="256" cy="256" r="256" fill="#fff"/>
<path d="M246.899 80.999H81.007v165.892h165.892V80.999ZM430.991 81H265.099v165.89h165.892V80.999ZM246.898 265.108H81.006V431h165.892V265.108Zm184.093 0H265.099V431h165.892V265.108Z" fill="#0078D4"/>
</svg>

Before

Width:  |  Height:  |  Size: 332 B

Some files were not shown because too many files have changed in this diff Show More