1
0
mirror of https://github.com/konpa/devicon.git synced 2025-08-16 11:35:11 +02:00

Merge branch 'develop' into new-icon-expo

This commit is contained in:
Alex Canales
2025-03-08 20:07:45 -05:00
committed by GitHub
264 changed files with 2237 additions and 2424 deletions

View File

@@ -1,2 +1,2 @@
selenium==4.1.0 selenium==4.1.0
requests==2.25.1 requests==2.32.3

View File

@@ -5,9 +5,9 @@ jobs:
name: Get Fonts From Icomoon name: Get Fonts From Icomoon
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- uses: actions/setup-python@v4 - uses: actions/setup-python@v5
with: with:
python-version: '3.10' python-version: '3.10'
- name: Install dependencies (python, pip, npm) - name: Install dependencies (python, pip, npm)
@@ -21,26 +21,26 @@ jobs:
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: > run: >
python ./.github/scripts/icomoon_build.py python ./.github/scripts/icomoon_build.py
./.github/scripts/build_assets/geckodriver-v0.32.2-linux64/geckodriver ./icomoon.json ./.github/scripts/build_assets/geckodriver-v0.32.2-linux64/geckodriver ./icomoon.json
./devicon.json ./icons ./ $GITHUB_TOKEN --headless ./devicon.json ./icons ./ $GITHUB_TOKEN --headless
- name: Upload geckodriver.log for debugging purposes - name: Upload geckodriver.log for debugging purposes
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v4
if: failure() if: failure()
with: with:
name: geckodriver-log name: geckodriver-log
path: ./geckodriver.log path: ./geckodriver.log
- name: Upload log file for debugging purposes - name: Upload log file for debugging purposes
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v4
if: always() if: always()
with: with:
name: logfile name: logfile
path: ./log.txt path: ./log.txt
- name: Build devicon.min.css - name: Build devicon.min.css
if: success() if: success()
run: npm run build-css run: npm run build-css
# - name: Upload screenshot of the newly made icons # - name: Upload screenshot of the newly made icons
@@ -58,11 +58,11 @@ jobs:
uses: juliangruber/read-file-action@v1.0.0 uses: juliangruber/read-file-action@v1.0.0
with: with:
# taken from icomoon_build.py's get_release_message() # taken from icomoon_build.py's get_release_message()
path: ./release_message.txt path: ./release_message.txt
- name: Create Pull Request - name: Create Pull Request
if: success() if: success()
uses: peter-evans/create-pull-request@v3 uses: peter-evans/create-pull-request@v7
env: env:
MESSAGE: | MESSAGE: |
Hello, Hello,
@@ -81,14 +81,14 @@ jobs:
More information can be found in the GitHub Action logs for this workflow. More information can be found in the GitHub Action logs for this workflow.
Adios, Adios,
Build Bot :sunglasses: Build Bot :sunglasses:
with: with:
branch: 'bot/build-result' branch: 'bot/build-result'
commit-message: 'Built new icons, icomoon.json and devicon.css' commit-message: 'Built new icons, icomoon.json and devicon.css'
title: 'bot:build new icons, icomoon.json and devicon.css' title: 'bot:build new icons, icomoon.json and devicon.css'
body: > body: >
${{ ${{
format( format(
env.MESSAGE, env.MESSAGE,
steps.release_message_step.outputs.content steps.release_message_step.outputs.content

View File

@@ -6,17 +6,17 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: startsWith(github.event.pull_request.title, 'new icon') || startsWith(github.event.pull_request.title, 'update icon') # only checks icon PR if: startsWith(github.event.pull_request.title, 'new icon') || startsWith(github.event.pull_request.title, 'update icon') # only checks icon PR
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: Check if PR is develop - name: Check if PR is develop
if: ${{ github.base_ref != 'develop' }} if: ${{ github.base_ref != 'develop' }}
run: | run: |
echo -e "The PR's base branch is \`${{ github.base_ref }}\`, but should be \`develop\`\nPlease change the PR so that it's based on, and merged into \`develop\`" > ./err_messages.txt echo -e "The PR's base branch is \`${{ github.base_ref }}\`, but should be \`develop\`\nPlease change the PR so that it's based on, and merged into \`develop\`" > ./err_messages.txt
echo "wrong_branch=true" >> $GITHUB_ENV echo "wrong_branch=true" >> $GITHUB_ENV
- uses: actions/setup-python@v4 - uses: actions/setup-python@v5
if: ${{ !env.wrong_branch }} if: ${{ !env.wrong_branch }}
with: with:
python-version: 3.8 python-version: 3.8
- name: Install dependencies - name: Install dependencies
@@ -32,7 +32,7 @@ jobs:
run: python ./.github/scripts/check_icon_pr.py "$PR_TITLE" ./icons ./devicon.json run: python ./.github/scripts/check_icon_pr.py "$PR_TITLE" ./icons ./devicon.json
- name: Upload the err messages - name: Upload the err messages
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
if: success() if: success()
with: with:
name: err_messages name: err_messages
@@ -46,7 +46,7 @@ jobs:
run: echo $PR_NUM > pr_num.txt run: echo $PR_NUM > pr_num.txt
- name: Upload the pr num - name: Upload the pr num
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
if: success() if: success()
with: with:
name: pr_num name: pr_num

View File

@@ -15,7 +15,7 @@ jobs:
security-events: write security-events: write
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v3 uses: actions/checkout@v4
- name: Initialize CodeQL - name: Initialize CodeQL
uses: github/codeql-action/init@v2 uses: github/codeql-action/init@v2
@@ -31,10 +31,10 @@ jobs:
security-events: write security-events: write
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v3 uses: actions/checkout@v4
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v4 uses: actions/setup-python@v5
id: setup-python id: setup-python
with: with:
python-version: '3.10' python-version: '3.10'
@@ -65,7 +65,7 @@ jobs:
security-events: write security-events: write
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v3 uses: actions/checkout@v4
- name: Find Python files outside the .github folder - name: Find Python files outside the .github folder
id: find_files id: find_files

View File

@@ -2,7 +2,7 @@ name: Label Issue In Develop
on: on:
workflow_run: workflow_run:
workflows: ['On Develop PR Merge'] workflows: ['On Develop PR Merge']
types: types:
- completed - completed
jobs: jobs:
on-failure: on-failure:
@@ -15,20 +15,20 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }} if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: Setup Python v3.8 - name: Setup Python v3.8
uses: actions/setup-python@v4 uses: actions/setup-python@v5
with: with:
python-version: 3.8 python-version: 3.8
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install -r ./.github/scripts/requirements.txt pip install -r ./.github/scripts/requirements.txt
- name: Download workflow artifact - name: Download workflow artifact
uses: dawidd6/action-download-artifact@v2.11.0 uses: dawidd6/action-download-artifact@v7
with: with:
github_token: ${{ secrets.GITHUB_TOKEN }} github_token: ${{ secrets.GITHUB_TOKEN }}
workflow: peek_icons.yml workflow: peek_icons.yml

View File

@@ -1,5 +1,5 @@
name: On Develop PR Merge name: On Develop PR Merge
on: on:
pull_request: pull_request:
types: [closed] types: [closed]
branches: [develop] branches: [develop]
@@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.event.pull_request.merged == true if: github.event.pull_request.merged == true
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: Save the PR number in an artifact - name: Save the PR number in an artifact
shell: bash shell: bash
@@ -18,7 +18,7 @@ jobs:
run: echo $PR_NUM > pr_num.txt run: echo $PR_NUM > pr_num.txt
- name: Upload the PR number - name: Upload the PR number
uses: actions/upload-artifact@v2.2.4 uses: actions/upload-artifact@v4
with: with:
name: pr_num name: pr_num
path: ./pr_num.txt path: ./pr_num.txt

View File

@@ -7,13 +7,13 @@ jobs:
environment: release environment: release
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with: with:
# "ref" specifies the branch to check out. # "ref" specifies the branch to check out.
# "github.event.release.target_commitish" is a global variable and specifies the branch the release targeted # "github.event.release.target_commitish" is a global variable and specifies the branch the release targeted
ref: ${{ github.event.release.target_commitish }} ref: ${{ github.event.release.target_commitish }}
- name: Use Node.js v16 - name: Use Node.js v16
uses: actions/setup-node@v3 uses: actions/setup-node@v4
with: with:
node-version: 16 node-version: 16
registry-url: https://registry.npmjs.org/ # Specifies the registry, this field is required! registry-url: https://registry.npmjs.org/ # Specifies the registry, this field is required!

View File

@@ -1,7 +1,7 @@
name: Peek Icons name: Peek Icons
on: on:
pull_request: pull_request:
types: [labeled] types: [labeled]
jobs: jobs:
peek: peek:
# four outcomes: successful check and upload, # four outcomes: successful check and upload,
@@ -11,14 +11,14 @@ jobs:
if: github.event.label.name == 'bot:peek' if: github.event.label.name == 'bot:peek'
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: Setup Python v3.8 - name: Setup Python v3.8
uses: actions/setup-python@v4 uses: actions/setup-python@v5
with: with:
python-version: 3.8 python-version: 3.8
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install -r ./.github/scripts/requirements.txt pip install -r ./.github/scripts/requirements.txt
@@ -30,7 +30,7 @@ jobs:
run: echo $PR_NUM > pr_num.txt run: echo $PR_NUM > pr_num.txt
- name: Upload the PR number - name: Upload the PR number
uses: actions/upload-artifact@v2.2.4 uses: actions/upload-artifact@v4
with: with:
name: pr_num name: pr_num
path: ./pr_num.txt path: ./pr_num.txt
@@ -40,26 +40,26 @@ jobs:
PR_TITLE: ${{ github.event.pull_request.title }} PR_TITLE: ${{ github.event.pull_request.title }}
shell: bash shell: bash
run: > run: >
python ./.github/scripts/icomoon_peek.py python ./.github/scripts/icomoon_peek.py
./.github/scripts/build_assets/geckodriver-v0.32.2-linux64/geckodriver ./icomoon.json ./.github/scripts/build_assets/geckodriver-v0.32.2-linux64/geckodriver ./icomoon.json
./devicon.json ./icons ./ --headless "$PR_TITLE" ./devicon.json ./icons ./ --headless "$PR_TITLE"
- name: Upload the err messages (created by icomoon_peek.py) - name: Upload the err messages (created by icomoon_peek.py)
uses: actions/upload-artifact@v2.2.4 uses: actions/upload-artifact@v4
if: always() if: always()
with: with:
name: err_messages name: err_messages
path: ./err_messages.txt path: ./err_messages.txt
- name: Upload screenshots for comments - name: Upload screenshots for comments
uses: actions/upload-artifact@v2.2.4 uses: actions/upload-artifact@v4
if: success() if: success()
with: with:
name: screenshots name: screenshots
path: ./screenshots/*.png path: ./screenshots/*.png
- name: Upload geckodriver.log for debugging purposes - name: Upload geckodriver.log for debugging purposes
uses: actions/upload-artifact@v2.2.4 uses: actions/upload-artifact@v4
if: failure() if: failure()
with: with:
name: geckodriver-log name: geckodriver-log

View File

@@ -2,19 +2,19 @@ name: Post the result of the check_icon_pr workflow into its PR.
on: on:
workflow_run: workflow_run:
workflows: ['Check Icon PR'] workflows: ['Check Icon PR']
types: types:
- completed - completed
jobs: jobs:
post_result_of_svg_check: post_result_of_svg_check:
name: Post the result of the Check SVG Action name: Post the result of the Check SVG Action
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Check if the trigger run worked. If it failed, fail the current run. - name: Check if the trigger run worked. If it failed, fail the current run.
if: github.event.workflow_run.conclusion != 'success' if: github.event.workflow_run.conclusion != 'success'
uses: cutenode/action-always-fail@v1.0.1 uses: cutenode/action-always-fail@v1.0.1
- name: Download workflow artifact - name: Download workflow artifact
uses: dawidd6/action-download-artifact@v2.27.0 uses: dawidd6/action-download-artifact@v7
if: success() if: success()
with: with:
github_token: ${{ secrets.GITHUB_TOKEN }} github_token: ${{ secrets.GITHUB_TOKEN }}
@@ -62,7 +62,7 @@ jobs:
- name: Comment on the PR about the result - Failure - name: Comment on the PR about the result - Failure
uses: jungwinter/comment@v1.1.0 # let us comment on a specific PR uses: jungwinter/comment@v1.1.0 # let us comment on a specific PR
if: failure() if: failure()
env: env:
MESSAGE: | MESSAGE: |
Hi! Hi!

View File

@@ -2,14 +2,14 @@ name: Post the screenshots into a comment from Peek Icons workflow
on: on:
workflow_run: workflow_run:
workflows: ['Peek Icons'] workflows: ['Peek Icons']
types: types:
- completed - completed
jobs: jobs:
post_screenshots_in_comment: post_screenshots_in_comment:
name: Post the screenshot name: Post the screenshot
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.event.action == 'completed' && github.event.workflow_run.conclusion != 'skipped' if: github.event.action == 'completed' && github.event.workflow_run.conclusion != 'skipped'
env: env:
# three possible values: 'skipped', 'success', 'failure' # three possible values: 'skipped', 'success', 'failure'
# have to print github.event to console to see these values # have to print github.event to console to see these values
# note: can't use this env variable up in the if statement above for some reason. # note: can't use this env variable up in the if statement above for some reason.
@@ -20,7 +20,7 @@ jobs:
run: echo $PEEK_STATUS run: echo $PEEK_STATUS
- name: Download workflow artifact - name: Download workflow artifact
uses: dawidd6/action-download-artifact@v2.27.0 uses: dawidd6/action-download-artifact@v7
with: with:
github_token: ${{ secrets.GITHUB_TOKEN }} github_token: ${{ secrets.GITHUB_TOKEN }}
workflow: peek_icons.yml workflow: peek_icons.yml
@@ -48,7 +48,7 @@ jobs:
path: ./screenshots/new_svgs.png path: ./screenshots/new_svgs.png
client_id: ${{secrets.IMGUR_CLIENT_ID}} client_id: ${{secrets.IMGUR_CLIENT_ID}}
- name: Upload zoomed in screenshot of the SVGs gotten from the artifacts - name: Upload zoomed in screenshot of the SVGs gotten from the artifacts
id: svgs_detailed_img_step id: svgs_detailed_img_step
uses: devicons/public-upload-to-imgur@v2.2.2 uses: devicons/public-upload-to-imgur@v2.2.2
if: env.PEEK_STATUS == 'success' && success() if: env.PEEK_STATUS == 'success' && success()
@@ -106,8 +106,8 @@ jobs:
{5} {5}
The maintainers will now check for: The maintainers will now check for:
1. The number of Glyphs matches the number of SVGs that were selected. 1. The number of Glyphs matches the number of SVGs that were selected.
2. The icons (second group of pictures) look the same as the SVGs (first group of pictures). 2. The icons (second group of pictures) look the same as the SVGs (first group of pictures).
3. The icons are of high quality (legible, matches the official logo, etc.) 3. The icons are of high quality (legible, matches the official logo, etc.)
4. A new object is added in the `devicon.json` file at the correct alphabetic position as seen [here](https://github.com/devicons/devicon/wiki/Updating-%60devicon.json%60) 4. A new object is added in the `devicon.json` file at the correct alphabetic position as seen [here](https://github.com/devicons/devicon/wiki/Updating-%60devicon.json%60)
@@ -117,23 +117,23 @@ jobs:
Note: If the images don't show up, it has been autodeleted by Imgur after 6 months due to our API choice. Note: If the images don't show up, it has been autodeleted by Imgur after 6 months due to our API choice.
Cheers, Cheers,
Peek Bot :blush: Peek Bot :blush:
with: with:
type: create type: create
issue_number: ${{ steps.pr_num_reader.outputs.content }} issue_number: ${{ steps.pr_num_reader.outputs.content }}
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}
body: > body: >
${{ ${{
format( format(
env.MESSAGE, env.MESSAGE,
fromJSON(steps.svgs_overview_img_step.outputs.markdown_urls)[0], fromJSON(steps.svgs_overview_img_step.outputs.markdown_urls)[0],
join(fromJSON(steps.svgs_detailed_img_step.outputs.markdown_urls), ' '), join(fromJSON(steps.svgs_detailed_img_step.outputs.markdown_urls), ' '),
fromJSON(steps.icons_overview_img_step.outputs.markdown_urls)[0], fromJSON(steps.icons_overview_img_step.outputs.markdown_urls)[0],
join(fromJSON(steps.icons_detailed_img_step.outputs.markdown_urls), ' '), join(fromJSON(steps.icons_detailed_img_step.outputs.markdown_urls), ' '),
join(fromJSON(steps.colored_icons_detailed_img_step.outputs.markdown_urls), ' '), join(fromJSON(steps.colored_icons_detailed_img_step.outputs.markdown_urls), ' '),
steps.err_message_reader.outputs.content steps.err_message_reader.outputs.content
) )
}} }}
- name: Comment on the PR about the result - Failure - name: Comment on the PR about the result - Failure
@@ -155,9 +155,9 @@ jobs:
- Your icon information has been added to the `devicon.json` as seen [here](https://github.com/devicons/devicon/wiki/Updating-%60devicon.json%60) - Your icon information has been added to the `devicon.json` as seen [here](https://github.com/devicons/devicon/wiki/Updating-%60devicon.json%60)
- Your PR title follows the format seen [here](https://github.com/devicons/devicon/wiki/Overview-on-Submitting-Icons) - Your PR title follows the format seen [here](https://github.com/devicons/devicon/wiki/Overview-on-Submitting-Icons)
I will retry once everything is fixed. If I still fail or there are other error, the maintainers will investigate. I will retry once everything is fixed. If I still fail or there are other error, the maintainers will investigate.
Best of luck, Best of luck,
Peek Bot :relaxed: Peek Bot :relaxed:
with: with:
type: create type: create
@@ -174,7 +174,7 @@ jobs:
I'm Devicons' Peek Bot and we've ran into a problem with the `post_peek_screenshot` workflow. I'm Devicons' Peek Bot and we've ran into a problem with the `post_peek_screenshot` workflow.
The maintainers will take a look and fix the issue. Please wait for further instructions. The maintainers will take a look and fix the issue. Please wait for further instructions.
Thank you, Thank you,
Peek Bot :relaxed: Peek Bot :relaxed:
with: with:
type: create type: create

View File

@@ -8,15 +8,6 @@ tasks:
- name: Build CSS & run web server - name: Build CSS & run web server
init: npm run build-css && npm run dev init: npm run build-css && npm run dev
github:
prebuilds:
addBadge: true
addComment: false
addCheck: true
master: true
branches: true
pullRequestsFromForks: true
ports: ports:
- port: 8000 - port: 8000
onOpen: open-preview onOpen: open-preview

View File

@@ -230,7 +230,7 @@ Follow these steps to build the website and icons either locally or using <a hre
</ol> </ol>
<h2 id="using-gitpod">Using Gitpod.io</h2> <h2 id="using-gitpod">Using Gitpod.io</h2>
<p>By using <a href=https://www.gitpod.io)>Gitpod.io</a>, you can easily build the icons and install the<br>required dependencies in one single click. No extra setup is required.</p> <p>By using <a href=https://www.gitpod.io>Gitpod.io</a>, you can easily build the icons and install the<br>required dependencies in one single click. No extra setup is required.</p>
<a href=https://gitpod.io/#https://github.com/devicons/devicon/tree/develop><img src=https://gitpod.io/button/open-in-gitpod.svg alt="Open in Gitpod"></img></a> <a href=https://gitpod.io/#https://github.com/devicons/devicon/tree/develop><img src=https://gitpod.io/button/open-in-gitpod.svg alt="Open in Gitpod"></img></a>

View File

@@ -1,25 +0,0 @@
{
"name": "devicon",
"version": "2.2.0",
"main": "devicon.min.css",
"ignore": [
".jshintrc",
"**/*.txt"
],
"homepage": "http://konpa.github.io/devicon/",
"repository": {
"type": "git",
"url": "git://github.com/konpa/devicon.git"
},
"authors": [
"konpa <julien@konpa.fr> (http://konpa.fr)"
],
"description": "Programming related icons collection",
"keywords": [
"programming",
"icons",
"svg",
"font"
],
"license": "MIT"
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#c21417" d="M52.262 58.375c.82 0 1.566.148 2.242.441.672.297 1.25.7 1.734 1.207a5.367 5.367 0 0 1 1.117 1.758c.262.672.399 1.387.395 2.11.008.011.008.02 0 .03 0 .724-.137 1.442-.402 2.114a5.45 5.45 0 0 1-1.125 1.77 5.487 5.487 0 0 1-1.743 1.21c-.675.301-1.425.454-2.253.454-.82 0-1.57-.149-2.239-.446a5.31 5.31 0 0 1-1.734-1.203 5.349 5.349 0 0 1-1.117-1.761 5.647 5.647 0 0 1-.395-2.106v-.031c0-.734.13-1.442.399-2.113a5.48 5.48 0 0 1 1.125-1.774 5.523 5.523 0 0 1 1.746-1.21c.675-.302 1.425-.45 2.25-.45m14.949.031c.793 0 1.484.106 2.074.328a6.3 6.3 0 0 1 1.719.989l-.707.933c-.504-.406-1.012-.703-1.52-.886a4.725 4.725 0 0 0-1.597-.278c-.707 0-1.266.168-1.68.5-.41.332-.613.742-.613 1.235v.027c0 .258.043.484.12.68.083.203.231.386.45.554.215.172.512.32.895.461.378.137.867.27 1.46.39 1.204.255 2.09.622 2.66 1.095.571.476.856 1.12.856 1.937v.031a2.784 2.784 0 0 1-1.027 2.207c-.324.266-.711.47-1.164.614a4.8 4.8 0 0 1-1.477.215c-.863 0-1.652-.141-2.367-.422-.715-.282-1.395-.711-2.043-1.293l.758-.891c.562.512 1.133.89 1.707 1.14.578.255 1.238.376 1.992.376.73 0 1.313-.168 1.746-.512.438-.34.656-.777.656-1.309v-.03c0-.247-.039-.47-.125-.669a1.379 1.379 0 0 0-.43-.543c-.206-.164-.492-.312-.859-.445a10.873 10.873 0 0 0-1.398-.383 11.113 11.113 0 0 1-1.613-.46 4.109 4.109 0 0 1-1.137-.626 2.357 2.357 0 0 1-.664-.863c-.145-.324-.215-.707-.215-1.145v-.031c0-.418.086-.805.258-1.164.18-.36.433-.676.742-.93.32-.261.695-.465 1.129-.613.43-.145.902-.219 1.414-.219m-55.063.024v1.3l-2.851 1.258v5.84l2.851 1.27v1.242L1.281 64.45 0 63.901l1.281-.586Zm14 .129v1.117h-6.582v3.629h5.887v1.12h-5.887v3.743h6.66v1.117h-7.874V58.56Zm74.762 0v6.406l6.192-6.406h1.574l-4.625 4.687 4.828 6.04h-1.527l-4.149-5.196-2.293 2.312v2.883h-1.222V58.56Zm21.36 0v1.117h-6.582v3.629H128v1.12h-12.313v3.743h6.66v1.117h-7.874V58.56Zm-29.438 0v10.726h-1.223V58.56Zm-11.281 0c.605 0 1.156.078 1.656.238.496.156.922.379 1.277.672.352.285.63.652.813 1.066.191.418.293.895.293 1.426v.031c0 .578-.117 1.09-.34 1.524-.223.43-.535.8-.918 1.093-.387.297-.836.52-1.348.668a5.883 5.883 0 0 1-1.64.223h-2.617v3.785h-1.22V58.56Zm-44.535 0c.668 0 1.261.093 1.78.28.52.192.946.454 1.286.794.266.265.477.582.617.933.145.356.215.75.215 1.18v.027c0 .442-.07.836-.215 1.192-.14.344-.344.656-.605.918a3.225 3.225 0 0 1-.938.644 5.065 5.065 0 0 1-1.172.375l3.317 4.383h-1.492l-3.133-4.168h-3.078v4.168h-1.223V58.56Zm15.21.933c-.613 0-1.18.113-1.699.344a4.1 4.1 0 0 0-1.336.945 4.48 4.48 0 0 0-.87 1.395 4.677 4.677 0 0 0-.313 1.715v.03c0 .614.105 1.188.312 1.724.211.535.508 1.003.887 1.402a4.34 4.34 0 0 0 1.348.95c.52.237 1.09.35 1.707.35a4.085 4.085 0 0 0 3.035-1.284c.371-.399.66-.864.871-1.395.21-.531.312-1.102.312-1.715v-.031c0-.613-.101-1.188-.312-1.723-.2-.52-.5-.996-.883-1.402a4.312 4.312 0 0 0-1.351-.953 4.107 4.107 0 0 0-1.707-.352M8.203 61.461 2.7 63.898l5.504 2.454Zm73.258-1.785h-2.734v4.707h2.675c.45 0 .86-.059 1.22-.168a2.94 2.94 0 0 0 .937-.48 2.165 2.165 0 0 0 .813-1.707v-.032c0-.762-.27-1.34-.802-1.73-.527-.395-1.234-.59-2.11-.59m-44.53 0h-3.332v4.351h3.32c.398 0 .77-.05 1.113-.152a2.73 2.73 0 0 0 .88-.438 1.96 1.96 0 0 0 .785-1.617v-.03c0-.661-.243-1.18-.723-1.552-.485-.375-1.164-.562-2.043-.562"/></svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#c21417" d="M76.516 82 39.734 65.508l36.782-16.383ZM128 0v128H0V0Zm-25.094 28.727L30.25 61.59l-8.57 3.96 8.57 3.673 72.656 32.867v-8.348L83.836 85.2V45.93l19.07-8.456Zm0 0"/></svg>

After

Width:  |  Height:  |  Size: 255 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@@ -0,0 +1 @@
<svg viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="M95.965 47.4c-8.687-.15-17.27 3.253-23.996 9.49-.63.426-.84 1.067-.418 1.708 4.195-1.282 8.597-2.563 13.21-2.774 4.825-.426 9.86-.851 14.684 1.278 6.082 2.559 7.133 8.316 2.516 12.796-2.098 2.133-4.824 3.625-7.758 4.477-1.68.426-1.89 1.281-1.262 2.984 1.891 4.692 3.149 9.598 2.52 14.926-.211.856-.422 1.496.418 2.133 1.886 1.281 9.02 0 10.488-1.492 2.727-2.559 1.676-5.543 1.047-8.317-.836-3.41-.418-6.609 1.469-9.382 1.887-2.77 4.613-4.051 7.55-5.329 1.258-.425 2.31-1.066 3.149-2.558 1.887-3.625-.422-9.809-3.988-12.797-6.055-4.758-12.873-7.025-19.63-7.143zm22.734 24.809c-.332-.005-.669.007-1.01.033-5.66.641-9.437 4.906-9.02 10.664.422 5.328 5.036 9.38 10.278 8.953 5.453-.426 9.442-5.117 9.02-10.875-.392-5.196-4.289-8.707-9.268-8.775z" fill="#85d82e"/><path d="M69.662 63.74c-.262-.027-.523.08-.838.4 2.516 3.836 4.824 7.891 6.711 12.153 1.68 4.692 3.567 9.383 2.938 14.715-.63 6.398-5.875 9.168-11.328 5.969-2.727-1.493-4.825-3.625-6.5-6.184-1.051-1.492-2.098-1.492-3.356-.426-3.988 3.414-8.18 5.973-13.426 6.824-.836 0-1.675 0-2.097.852-.63 2.133 2.52 8.742 4.406 9.809 3.144 1.921 5.664 0 8.18-1.493 2.937-1.703 5.87-2.343 9.226-1.277 3.149 1.067 5.246 3.41 7.133 5.969.84 1.066 1.68 1.918 3.355 2.347 3.985 1.067 9.438-3.199 11.118-7.464 6.293-16.418-.84-33.266-14.684-41.793-.314-.213-.576-.374-.838-.4zm-9.017 44.112c-5.036 0-9.23 4.265-9.23 9.808 0 6.183 3.983 10.024 10.07 10.024 4.82-.215 9.015-4.692 9.015-9.809 0-5.332-4.824-10.023-9.855-10.023z" fill="#22c1ff"/><path d="M99.096 4.623a8.923 8.923 0 00-.49.025c-5.454.426-9.227 5.329-8.81 10.66.419 5.333 5.243 9.383 10.696 8.958 5.035-.426 9.23-5.332 8.813-10.45-.41-5.165-5.144-9.325-10.21-9.193zM80.789 7.607c-2.765-.032-5.766.906-7.77 2.584-13.632 11.09-15.94 29.641-8.18 44.352.208.64.63 1.281 1.466.855v-.002c-.207-4.69-.418-9.38.422-13.86.84-5.118 1.675-10.235 4.824-14.497 3.773-5.332 9.648-5.121 12.793.637 1.68 2.773 2.308 5.758 2.515 8.957 0 1.918.84 2.344 2.52 2.133 5.032-.852 10.066-.852 14.89 1.066.63.211 1.258.64 2.098 0 1.676-1.492 2.098-8.957 1.047-10.875-1.887-3.414-4.824-2.984-7.758-2.984-3.355.21-6.293-.856-8.601-3.625-2.098-2.559-2.727-5.758-3.145-8.957-.21-1.492-.422-2.774-1.68-3.84-1.283-1.306-3.29-1.918-5.44-1.944z" fill="#ffc911"/><path d="M21.68 47.53c-.39.014-.833.163-1.305.404-.84.425-1.68.851-2.309 1.28-5.453 3.41-6.082 7.677-1.468 12.368 3.355 3.41 5.035 7.25 3.777 11.941-.629 2.344-1.89 4.051-3.355 5.97-1.051 1.28-1.47 2.558-1.262 4.265.422 4.05 4.406 8.101 9.23 8.527 13.422 1.281 24.328-3.41 31.88-14.926 2.519-3.624 4.405-7.675 5.245-11.941-.84-.211-1.05.215-1.68.43-4.823 5.117-9.859 10.02-16.359 13.433-2.515 1.278-5.242 2.344-8.18 2.344-4.613 0-7.34-2.984-6.921-7.676.21-3.84 1.68-7.25 4.195-10.023 1.258-1.492 1.258-2.344-.211-3.625-4.195-2.985-7.969-6.61-9.855-11.516-.264-.932-.771-1.281-1.422-1.256zM9.646 60.872c-.336.006-.676.028-1.017.068-4.824.426-9.02 5.543-8.602 10.66C.45 76.935 5.48 81.2 10.516 80.56c6.082-.426 9.23-6.399 9.02-11.301-.396-4.798-4.842-8.472-9.89-8.385z" fill="#0068d8"/><path d="M33.938.316a9.087 9.087 0 00-.981.067c-5.66.64-9.02 5.117-8.387 11.3.629 4.692 5.66 8.743 10.485 8.106 5.664-.856 9.437-5.547 8.808-11.09-.59-4.6-5.048-8.447-9.925-8.383zm17.26 6.938c-2.666-.061-4.711 1.697-5.866 5.07-2.516 7.465-7.34 10.235-15.102 8.742-1.046-.214-2.097-.425-2.515-.425-3.985.64-6.293 2.984-6.922 6.183-.84 9.81 4.195 16.844 11.117 22.602 7.34 6.398 16.36 7.89 25.797 7.465.84 0 1.68 0 1.887-.641.21-1.066-.836-1.066-1.469-1.277-4.402-1.922-9.016-3.414-13.004-6.188-3.984-2.769-8.598-5.117-10.277-10.445-1.258-4.051.422-7.676 4.406-8.957 3.566-1.281 7.133-1.281 10.488 0 2.098.851 2.934.426 3.356-1.918.629-4.051 1.886-7.89 4.402-11.3 2.938-4.267 2.938-4.692-1.887-7.466-.21 0-.21-.215-.418-.215-1.442-.8-2.782-1.202-3.994-1.23z" fill="#ff4546"/></svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

@@ -0,0 +1 @@
<svg viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="M33.938.316a9.087 9.087 0 0 0-.981.067c-5.66.64-9.02 5.117-8.387 11.3.629 4.692 5.66 8.743 10.485 8.106 5.664-.856 9.437-5.547 8.808-11.09-.59-4.6-5.048-8.447-9.925-8.383zm65.158 4.307a8.923 8.923 0 0 0-.49.025c-5.454.426-9.227 5.329-8.81 10.66.419 5.333 5.243 9.383 10.696 8.958 5.035-.426 9.23-5.332 8.813-10.45-.41-5.165-5.144-9.325-10.21-9.193zm-47.899 2.63c-2.665-.06-4.71 1.698-5.865 5.071-2.516 7.465-7.34 10.235-15.102 8.742-1.046-.214-2.097-.425-2.515-.425-3.985.64-6.293 2.984-6.922 6.183-.84 9.81 4.195 16.844 11.117 22.602 7.34 6.398 16.36 7.89 25.797 7.465.84 0 1.68 0 1.887-.641.21-1.066-.836-1.066-1.469-1.277-4.402-1.922-9.016-3.414-13.004-6.188-3.984-2.769-8.598-5.117-10.277-10.445-1.258-4.051.422-7.676 4.406-8.957 3.566-1.281 7.133-1.281 10.488 0 2.098.851 2.934.426 3.356-1.918.629-4.051 1.886-7.89 4.402-11.3 2.938-4.267 2.938-4.692-1.887-7.466-.21 0-.21-.215-.418-.215-1.442-.8-2.782-1.202-3.994-1.23zm29.592.354c-2.765-.032-5.766.906-7.77 2.584-13.632 11.09-15.94 29.641-8.18 44.352.208.64.63 1.281 1.466.855v-.002c-.207-4.69-.418-9.38.422-13.86.84-5.118 1.675-10.235 4.824-14.497 3.773-5.332 9.648-5.121 12.793.637 1.68 2.773 2.308 5.758 2.515 8.957 0 1.918.84 2.344 2.52 2.133 5.032-.852 10.066-.852 14.89 1.066.63.211 1.258.64 2.098 0 1.676-1.492 2.098-8.957 1.047-10.875-1.887-3.414-4.824-2.984-7.758-2.984-3.355.21-6.293-.856-8.601-3.625-2.098-2.559-2.727-5.758-3.145-8.957-.21-1.492-.422-2.774-1.68-3.84-1.283-1.306-3.29-1.918-5.44-1.944zM95.965 47.4c-8.687-.15-17.27 3.253-23.996 9.49-.63.426-.84 1.067-.418 1.708 4.195-1.282 8.597-2.563 13.21-2.774 4.825-.426 9.86-.851 14.684 1.278 6.082 2.559 7.133 8.316 2.516 12.796-2.098 2.133-4.824 3.625-7.758 4.477-1.68.426-1.89 1.281-1.262 2.984 1.891 4.692 3.149 9.598 2.52 14.926-.211.856-.422 1.496.418 2.133 1.886 1.281 9.02 0 10.488-1.492 2.727-2.559 1.676-5.543 1.047-8.317-.836-3.41-.418-6.609 1.469-9.382 1.887-2.77 4.613-4.051 7.55-5.329 1.258-.425 2.31-1.066 3.149-2.558 1.887-3.625-.422-9.809-3.988-12.797-6.055-4.758-12.873-7.025-19.63-7.143zm-74.285.13c-.39.014-.833.163-1.305.404-.84.425-1.68.851-2.309 1.28-5.453 3.41-6.082 7.677-1.468 12.368 3.355 3.41 5.035 7.25 3.777 11.941-.629 2.344-1.89 4.051-3.355 5.97-1.051 1.28-1.47 2.558-1.262 4.265.422 4.05 4.406 8.101 9.23 8.527 13.422 1.281 24.328-3.41 31.88-14.926 2.519-3.624 4.405-7.675 5.245-11.941-.84-.211-1.05.215-1.68.43-4.823 5.117-9.859 10.02-16.359 13.433-2.515 1.278-5.242 2.344-8.18 2.344-4.613 0-7.34-2.984-6.921-7.676.21-3.84 1.68-7.25 4.195-10.023 1.258-1.492 1.258-2.344-.211-3.625-4.195-2.985-7.969-6.61-9.855-11.516-.264-.932-.771-1.281-1.422-1.256zM9.646 60.872c-.336.006-.676.028-1.017.068-4.824.426-9.02 5.543-8.602 10.66.423 5.335 5.453 9.6 10.489 8.96 6.082-.426 9.23-6.399 9.02-11.301-.396-4.798-4.842-8.472-9.89-8.385zm60.016 2.867c-.262-.027-.523.08-.838.4 2.516 3.836 4.824 7.891 6.711 12.153 1.68 4.692 3.567 9.383 2.938 14.715-.63 6.398-5.875 9.168-11.328 5.969-2.727-1.493-4.825-3.625-6.5-6.184-1.051-1.492-2.098-1.492-3.356-.426-3.988 3.414-8.18 5.973-13.426 6.824-.836 0-1.675 0-2.097.852-.63 2.133 2.52 8.742 4.406 9.809 3.144 1.921 5.664 0 8.18-1.493 2.937-1.703 5.87-2.343 9.226-1.277 3.149 1.067 5.246 3.41 7.133 5.969.84 1.066 1.68 1.918 3.355 2.347 3.985 1.067 9.438-3.199 11.118-7.464 6.293-16.418-.84-33.266-14.684-41.793-.314-.213-.576-.374-.838-.4zM118.7 72.21c-.332-.005-.669.007-1.01.033-5.66.641-9.437 4.906-9.02 10.664.422 5.328 5.036 9.38 10.278 8.953 5.453-.426 9.442-5.117 9.02-10.875-.392-5.196-4.289-8.707-9.268-8.775zm-58.054 35.643c-5.036 0-9.23 4.265-9.23 9.808 0 6.183 3.983 10.024 10.07 10.024 4.82-.215 9.015-4.692 9.015-9.809 0-5.332-4.824-10.023-9.855-10.023z"/></svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#C4473A" d="M52.864 64h23.28L63.769 38.123zM63.81 1.026L4.553 21.88l9.363 77.637 49.957 27.457 50.214-27.828 9.36-77.635L63.81 1.026zM48.044 75l-7.265 18.176-13.581.056 36.608-81.079-.07-.153h-.064l.001-.133.063.133h.141l.123-.274V12h-.124l-.069.153 38.189 81.417-13.074-.287-8.042-18.58-17.173.082"/></svg> <svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m52.864 64h23.28l-12.375-25.877zm10.946-62.974-59.257 20.854 9.363 77.637 49.957 27.457 50.214-27.828 9.36-77.635zm-15.766 73.974-7.265 18.176-13.581 0.056 36.608-81.079s26.531 56.561 38.19 81.417l-13.074-0.287-8.042-18.58-17.173 0.082z" fill="#c4473a"/></svg>

Before

Width:  |  Height:  |  Size: 381 B

After

Width:  |  Height:  |  Size: 346 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#0d9dda" d="m110.4 63.58-8.504-13.3h7.366l5.043 8.257 4.994-8.257h7.366l-8.504 13.3L128 77.72h-7.811l-5.884-9.394-5.834 9.394h-7.811zm-18.096-1.928q-.296-1.632-.988-2.818t-1.681-1.929q-.99-.79-2.225-1.137-1.187-.395-2.522-.395-.988 0-2.175.296-1.137.248-2.225.94t-2.027 1.928q-.89 1.186-1.335 3.115zm-14.98 5.29q.099.692.643 1.68.544.94 1.483 1.83t2.274 1.533q1.385.593 3.164.593 4.4 0 6.329-3.51h6.921q-.593 1.878-1.829 3.609-1.236 1.68-2.966 3.016t-3.906 2.125q-2.126.792-4.549.792-3.114 0-5.784-1.138t-4.598-3.114-3.016-4.598q-1.088-2.67-1.088-5.686 0-2.917 1.039-5.587t2.917-4.696q1.878-2.027 4.548-3.214 2.67-1.236 5.933-1.236 3.362 0 5.982 1.285 2.67 1.236 4.45 3.264 1.83 2.027 2.768 4.597.99 2.571.99 5.142 0 .989-.15 1.83-.098.79-.246 1.483zm-32.58-2.967q0 2.275.79 3.906.84 1.632 2.027 2.67 1.236 1.038 2.62 1.532t2.571.495q1.335 0 2.72-.544 1.433-.544 2.57-1.632 1.187-1.087 1.929-2.67.79-1.63.79-3.757 0-1.878-.691-3.46-.643-1.583-1.78-2.72-1.088-1.137-2.522-1.78-1.384-.642-2.917-.642-1.532 0-3.016.593-1.433.593-2.57 1.73-1.138 1.088-1.83 2.72-.692 1.582-.692 3.56zm-6.18-13.695h6.03v3.214h.1q1.236-1.533 2.57-2.373 1.385-.89 2.62-1.236 1.237-.396 2.226-.445.988-.099 1.483-.099 3.362 0 5.933 1.335 2.57 1.285 4.301 3.411 1.73 2.077 2.62 4.697.89 2.571.89 5.092 0 3.066-1.087 5.735-1.039 2.67-2.917 4.697-1.83 1.978-4.351 3.164-2.472 1.138-5.39 1.138-1.73 0-3.064-.347-1.286-.296-2.275-.79t-1.73-1.138-1.384-1.236v11.767h-6.576zM13.644 61.9h8.405l-4.153-11.223h-.099zm1.582-20.765h5.29L35.845 77.72h-7.466l-3.905-9.443H11.37L7.465 77.72H0z"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 7.6 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@@ -1 +1 @@
<svg viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="M40.162 23.768C24.121 25.189 10.496 36.065 5.473 51.443 4.028 55.874 3.53 59.05 3.53 64.026s.498 8.151 1.943 12.582c7.701 23.505 34.334 34.595 56.466 23.529L64 99.094l2.085 1.043c18.222 9.123 40.377 3.293 51.703-13.672 2.962-4.407 5.237-10.118 6.208-15.544.356-2.085.474-3.744.474-6.895 0-4.976-.497-8.152-1.943-12.583-7.701-23.505-34.334-34.594-56.442-23.529L64 28.957l-2.061-1.043a41.323 41.323 0 00-14.904-4.17c-3.152-.261-3.792-.261-6.873.024zm10.142 8.601c2.322.45 6.801 2.203 9.525 3.744 3.721 2.085 7.938 5.995 10.521 9.739 1.398 2.037 3.27 5.876 4.336 8.933 1.517 4.265 1.517 14.217 0 18.481-1.848 5.214-4.194 9.266-7.345 12.607-3.744 3.981-7.227 6.326-12.44 8.364-3.317 1.303-5.307 1.73-9.217 1.919-4.787.237-9.1-.331-12.488-1.682-.853-.356-1.73-.663-1.99-.711-.498-.118-4.763-2.488-6.208-3.46-1.54-1.042-5.331-4.762-6.801-6.682-.734-.971-1.35-1.824-1.35-1.895 0-.071-.545-1.067-1.209-2.204-1.161-2.014-1.943-3.649-1.753-3.649.047 0-.213-.758-.592-1.682-1.161-2.772-1.517-5.213-1.517-10.165 0-4.953.356-7.394 1.517-10.166.379-.924.639-1.682.592-1.682-.19 0 .592-1.635 1.753-3.649.664-1.137 1.209-2.132 1.209-2.204 0-.071.616-.924 1.35-1.895 1.47-1.92 5.261-5.64 6.801-6.682 1.422-.972 5.71-3.342 6.208-3.46.26-.047 1.256-.403 2.227-.782 2.156-.853 3.554-1.184 6.043-1.469 2.559-.284 8.577-.094 10.828.332z" fill="#f02e65"/><path d="M44.973 49.737c-.048.119-.664 2.536-1.327 5.403-.688 2.867-1.777 7.393-2.393 10.07-1.185 4.905-1.896 8.128-1.896 8.554 0 .118.735.214 1.635.214h1.635l.734-3.271c.427-1.777 1.375-5.852 2.133-9.051.759-3.199 1.682-7.085 2.038-8.649.355-1.564.711-2.985.782-3.151.071-.213-.332-.284-1.564-.284-.924 0-1.73.071-1.777.165zm-12.725 10.26l-2.18 2.37.64.758c.355.426 1.327 1.493 2.156 2.37l1.517 1.611h4.313l-2.038-2.204c-1.114-1.184-2.038-2.322-2.038-2.464 0-.166.853-1.232 1.896-2.369 1.042-1.161 1.895-2.157 1.895-2.275 0-.095-.9-.166-1.99-.166h-1.967l-2.204 2.369zm16.587-2.227c0 .071.403.521.9 1.019 1.849 1.848 3.152 3.412 3.081 3.72-.047.166-.948 1.279-2.038 2.44l-1.966 2.157h2.203l2.204-.024 2.013-2.203c1.115-1.232 2.015-2.323 2.015-2.465 0-.118-.948-1.232-2.133-2.487l-2.132-2.299H50.92c-1.161 0-2.085.071-2.085.142z" fill="#f02e65"/></svg> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#fd366e" d="M56.305 7.568c-25.833 0-47.611 17.355-54.309 41.042A55.717 55.717 0 0 0 0 60.187v7.628a56.083 56.083 0 0 0 7.421 24.402c9.758 16.868 27.996 28.215 48.884 28.215H128V92.217H56.305a28.104 28.104 0 0 1-19.363-7.696c-5.453-5.143-8.855-12.432-8.855-20.52 0-2.668.37-5.248 1.063-7.696.78-2.76 1.97-5.348 3.503-7.695 5.033-7.722 13.746-12.827 23.652-12.827 9.907 0 18.617 5.105 23.65 12.827h30.655C103.913 24.923 82.14 7.568 56.305 7.568ZM83.46 56.305a28.22 28.22 0 0 1 1.062 7.696c0 8.088-3.401 15.377-8.855 20.52H128V56.305Z"/></svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 615 B

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 7.6 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@@ -1 +0,0 @@
<svg viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="M40.162 23.768C24.121 25.189 10.496 36.065 5.473 51.443 4.028 55.874 3.53 59.05 3.53 64.026s.498 8.151 1.943 12.582c7.701 23.505 34.334 34.595 56.466 23.529L64 99.094l2.085 1.043c18.222 9.123 40.377 3.293 51.703-13.672 2.962-4.407 5.237-10.118 6.208-15.544.356-2.085.474-3.744.474-6.895 0-4.976-.497-8.152-1.943-12.583-7.701-23.505-34.334-34.594-56.442-23.529L64 28.957l-2.061-1.043a41.323 41.323 0 00-14.904-4.17c-3.152-.261-3.792-.261-6.873.024zm10.142 8.601c2.322.45 6.801 2.203 9.525 3.744 3.721 2.085 7.938 5.995 10.521 9.739 1.398 2.037 3.27 5.876 4.336 8.933 1.517 4.265 1.517 14.217 0 18.481-1.848 5.214-4.194 9.266-7.345 12.607-3.744 3.981-7.227 6.326-12.44 8.364-3.317 1.303-5.307 1.73-9.217 1.919-4.787.237-9.1-.331-12.488-1.682-.853-.356-1.73-.663-1.99-.711-.498-.118-4.763-2.488-6.208-3.46-1.54-1.042-5.331-4.762-6.801-6.682-.734-.971-1.35-1.824-1.35-1.895 0-.071-.545-1.067-1.209-2.204-1.161-2.014-1.943-3.649-1.753-3.649.047 0-.213-.758-.592-1.682-1.161-2.772-1.517-5.213-1.517-10.165 0-4.953.356-7.394 1.517-10.166.379-.924.639-1.682.592-1.682-.19 0 .592-1.635 1.753-3.649.664-1.137 1.209-2.132 1.209-2.204 0-.071.616-.924 1.35-1.895 1.47-1.92 5.261-5.64 6.801-6.682 1.422-.972 5.71-3.342 6.208-3.46.26-.047 1.256-.403 2.227-.782 2.156-.853 3.554-1.184 6.043-1.469 2.559-.284 8.577-.094 10.828.332z"/><path d="M44.973 49.737c-.048.119-.664 2.536-1.327 5.403-.688 2.867-1.777 7.393-2.393 10.07-1.185 4.905-1.896 8.128-1.896 8.554 0 .118.735.214 1.635.214h1.635l.734-3.271c.427-1.777 1.375-5.852 2.133-9.051.759-3.199 1.682-7.085 2.038-8.649.355-1.564.711-2.985.782-3.151.071-.213-.332-.284-1.564-.284-.924 0-1.73.071-1.777.165zm-12.725 10.26l-2.18 2.37.64.758c.355.426 1.327 1.493 2.156 2.37l1.517 1.611h4.313l-2.038-2.204c-1.114-1.184-2.038-2.322-2.038-2.464 0-.166.853-1.232 1.896-2.369 1.042-1.161 1.895-2.157 1.895-2.275 0-.095-.9-.166-1.99-.166h-1.967l-2.204 2.369zm16.587-2.227c0 .071.403.521.9 1.019 1.849 1.848 3.152 3.412 3.081 3.72-.047.166-.948 1.279-2.038 2.44l-1.966 2.157h2.203l2.204-.024 2.013-2.203c1.115-1.232 2.015-2.323 2.015-2.465 0-.118-.948-1.232-2.133-2.487l-2.132-2.299H50.92c-1.161 0-2.085.071-2.085.142z"/></svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><linearGradient id="a" x1="75.543" x2="81.2" y1="145.986" y2="143.227" gradientTransform="translate(-55.303 -201.26) scale(1.89346)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff" stop-opacity=".365"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="b" x1="105.834" x2="80.209" y1="15.354" y2="30.531" gradientTransform="translate(-130.684 30.666) scale(1.89346)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-opacity=".102"/><stop offset="1" stop-opacity=".306"/></linearGradient><linearGradient id="c" x1="70.725" x2="87.092" y1="12.292" y2="26.895" gradientTransform="translate(-73.913 3.73) scale(1.89346)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-opacity=".102"/><stop offset="1" stop-opacity=".306"/></linearGradient><linearGradient id="d" x1="70.725" x2="81.158" y1="12.292" y2="19.324" gradientTransform="translate(-46.181 51.885) scale(1.89346)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-opacity=".102"/><stop offset="1" stop-opacity=".306"/></linearGradient><linearGradient id="e" x1="70.513" x2="55.281" y1="62.847" y2="56.394" gradientTransform="translate(-63.804 -59.26) scale(1.89346)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff" stop-opacity=".365"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="f" x1="70.513" x2="63.044" y1="62.847" y2="59.204" gradientTransform="matrix(-1.89346 0 0 1.89346 193.514 -91.995)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff" stop-opacity=".365"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient></defs><path fill="#10a0cc" d="M83.289 96.024c-.881 0-1.593.274-2.145.826-.548.547-.826 1.264-.826 2.144 0 .882.278 1.593.826 2.145.552.553 1.264.826 2.145.826.88 0 1.6-.273 2.149-.825.55-.552.825-1.265.825-2.145 0-.881-.274-1.598-.825-2.145-.548-.552-1.269-.826-2.15-.826zm-21.393 1.761v21.737c0 2.866.621 4.917 1.87 6.165 1.284 1.249 3.374 1.871 6.274 1.871h2.97v-3.523h-2.97c-1.506 0-2.587-.347-3.249-1.045-.62-.696-1.037-1.854-.934-3.467v-9.91h7.154v-3.519h-7.154v-8.309zm-45.449 7.867v3.467h9.832c1.577 0 2.842.494 3.797 1.488.95.952 1.433 2.2 1.433 3.741v.333c-.921-.626-2.02-1.12-3.304-1.483-1.284-.368-2.533-.551-3.742-.551h-3.521c-2.716 0-4.9.696-6.549 2.09-1.651 1.392-2.477 3.243-2.477 5.577 0 2.329.79 4.2 2.368 5.596 1.613 1.394 3.757 2.09 6.434 2.09h3.304c1.468 0 2.88-.387 4.238-1.158a9.154 9.154 0 0 0 3.355-3.135v3.851h3.745v-13.21c0-2.606-.846-4.696-2.532-6.273-1.652-1.617-3.835-2.423-6.548-2.423zm26.979.442v21.464h3.965v-9.796c0-2.458.716-4.423 2.144-5.892 1.468-1.505 3.374-2.257 5.723-2.257v-3.519c-1.613 0-3.17.404-4.677 1.21-1.464.806-2.568 1.851-3.3 3.139v-4.349zm37.883 0v21.464h3.965v-21.464zm10.445 0 9.515 10.732-9.515 10.732h5.293l6.868-7.745 6.873 7.745h5.296l-9.519-10.73 9.519-10.734h-5.297l-6.872 7.745-6.868-7.745zm-70.813 10.02h3.522c1.354 0 2.677.22 3.96.657 1.323.404 2.35.956 3.085 1.652v.274c-.477 1.761-1.397 3.178-2.752 4.238a7.296 7.296 0 0 1-4.622 1.597h-3.417c-1.463 0-2.638-.383-3.518-1.154-.881-.772-1.323-1.8-1.323-3.064 0-1.268.46-2.274 1.378-3.046.955-.77 2.184-1.154 3.687-1.154zM64.337 0 49.125 31.194l41.87 23.46ZM44.528 40.62l-23.34 47.853 69.26-28.613ZM95.57 64.034l-21.843 12.54 33.76 11.899zm0 0"/><path fill="url(#a)" d="m87.735 75.159 7.836-11.123 11.917 24.438Zm0 0"/><path fill="url(#b)" d="m21.187 88.475 48.52-28.736 20.74.12zm0 0"/><path fill="url(#c)" d="m90.996 54.654-41.872-23.46L60 27.006Zm0 0"/><path fill="url(#d)" d="m107.489 88.475-33.762-11.9 14.007-1.417Zm0 0"/><path fill="url(#e)" d="m21.187 88.475 48.52-28.736-25.177-19.12Zm0 0"/><path fill="url(#f)" d="M90.996 54.654 60 27.007 64.338 0Zm0 0"/></svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><linearGradient id="a" x1="75.543" x2="81.2" y1="145.986" y2="143.227" gradientTransform="translate(-109.09 -291.172) scale(2.73936)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff" stop-opacity=".365"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="b" x1="105.834" x2="80.209" y1="15.354" y2="30.531" gradientTransform="translate(-218.147 44.362) scale(2.73936)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-opacity=".102"/><stop offset="1" stop-opacity=".306"/></linearGradient><linearGradient id="c" x1="70.725" x2="87.092" y1="12.292" y2="26.895" gradientTransform="translate(-136.013 5.393) scale(2.73936)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-opacity=".102"/><stop offset="1" stop-opacity=".306"/></linearGradient><linearGradient id="d" x1="70.725" x2="81.158" y1="12.292" y2="19.324" gradientTransform="translate(-95.891 75.061) scale(2.73936)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-opacity=".102"/><stop offset="1" stop-opacity=".306"/></linearGradient><linearGradient id="e" x1="70.513" x2="55.281" y1="62.847" y2="56.394" gradientTransform="translate(-121.388 -85.738) scale(2.73936)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff" stop-opacity=".365"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="f" x1="70.513" x2="63.044" y1="62.847" y2="59.204" gradientTransform="matrix(-2.73936 0 0 2.73936 250.886 -133.095)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff" stop-opacity=".365"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient></defs><path fill="#10a0cc" d="m64.002 0-22.01 45.13 60.572 33.936ZM35.341 58.764 1.573 127.999l100.2-41.397Zm73.842 33.876-31.602 18.142 48.846 17.217Zm0 0"/><path fill="url(#a)" d="m97.849 108.735 11.334-16.098L126.427 128Zm0 0"/><path fill="url(#b)" d="m1.573 127.999 70.2-41.578 30 .18zm0 0"/><path fill="url(#c)" d="M102.564 79.067 41.99 45.125l15.737-6.059Zm0 0"/><path fill="url(#d)" d="m126.427 127.999-48.846-17.217 20.268-2.048Zm0 0"/><path fill="url(#e)" d="m1.573 127.999 70.2-41.578L35.34 58.764Zm0 0"/><path fill="url(#f)" d="m102.564 79.067-44.836-40L64.002 0Zm0 0"/></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#10a0cc" d="M64.336 0 49.125 31.193l41.871 23.461L64.338 0v.004L64.336 0zM44.527 40.62l-23.34 47.853v.002l.002-.002 69.258-28.614-45.916-19.238-.002-.002h-.002zM95.57 64.034l-21.84 12.54h-.001l-.002.001 33.761 11.899-11.918-24.44zM83.29 96.023c-.882 0-1.594.275-2.145.827-.549.547-.827 1.263-.827 2.144 0 .882.278 1.594.827 2.145.55.553 1.263.826 2.144.826.88 0 1.6-.274 2.148-.826.552-.551.827-1.263.827-2.143 0-.882-.275-1.6-.826-2.146-.549-.552-1.268-.827-2.149-.827zm-21.394 1.762v21.736c0 2.866.62 4.918 1.87 6.166 1.283 1.249 3.373 1.872 6.273 1.872h2.97v-3.524h-2.97c-1.506 0-2.587-.347-3.248-1.045-.621-.696-1.036-1.854-.934-3.467v-9.91h7.153v-3.52h-7.153v-8.308h-3.96zm-45.449 7.867v3.467h9.832c1.577 0 2.842.494 3.797 1.488.951.952 1.432 2.199 1.432 3.74v.335c-.921-.627-2.02-1.121-3.303-1.485-1.284-.367-2.533-.55-3.742-.55H20.94c-2.716 0-4.9.697-6.548 2.09-1.652 1.392-2.477 3.244-2.477 5.577 0 2.329.79 4.2 2.367 5.596 1.613 1.394 3.759 2.09 6.436 2.09h3.302c1.468 0 2.881-.387 4.239-1.158a9.154 9.154 0 0 0 3.355-3.135v3.852h3.744v-13.211c0-2.606-.845-4.697-2.53-6.274-1.653-1.617-3.835-2.422-6.548-2.422h-9.834zm26.979.442v21.465h3.965v-9.797c0-2.458.716-4.422 2.144-5.89 1.468-1.507 3.374-2.259 5.723-2.259v-3.52c-1.613 0-3.171.404-4.678 1.21-1.464.806-2.567 1.853-3.299 3.14v-4.35h-3.855zm37.883 0v21.465h3.964v-21.465H81.31zm10.445 0 9.516 10.732-9.516 10.733h5.293l6.867-7.746 6.875 7.746h5.295l-9.52-10.73 9.52-10.735h-5.297l-6.873 7.746-6.867-7.746h-5.293zm-70.813 10.02h3.522c1.355 0 2.677.22 3.96.657 1.323.404 2.35.956 3.085 1.653v.273c-.477 1.762-1.397 3.178-2.752 4.239a7.296 7.296 0 0 1-4.621 1.595h-3.418c-1.464 0-2.637-.38-3.518-1.152-.88-.772-1.322-1.801-1.322-3.065 0-1.268.46-2.275 1.377-3.046.955-.77 2.184-1.155 3.687-1.155z"/></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#10a0cc" d="M64.002 0 41.996 45.123l-.004.002.002.002-.002.004 60.572 33.935L64.002 0zm-28.66 58.764-33.77 69.234 100.201-41.396-66.431-27.838zm73.842 33.873-.004.006-31.6 18.138 48.842 17.215.004.002h.002l-8.73-17.9-8.514-17.461z"/></svg>

After

Width:  |  Height:  |  Size: 314 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="none" d="M4.24 4.24h119.53v119.53H4.24z"/><path fill="#293138" d="M109.01 28.64L71.28 6.24c-2.25-1.33-4.77-2-7.28-2s-5.03.67-7.28 2.01l-37.74 22.4c-4.5 2.67-7.28 7.61-7.28 12.96v44.8c0 5.35 2.77 10.29 7.28 12.96l37.73 22.4c2.25 1.34 4.76 2 7.28 2 2.51 0 5.03-.67 7.28-2l37.74-22.4c4.5-2.67 7.28-7.62 7.28-12.96V41.6c0-5.34-2.77-10.29-7.28-12.96zM79.79 98.59l.06 3.22c0 .39-.25.83-.55.99l-1.91 1.1c-.3.15-.56-.03-.56-.42l-.03-3.17c-1.63.68-3.29.84-4.34.42-.2-.08-.29-.37-.21-.71l.69-2.91c.06-.23.18-.46.34-.6.06-.06.12-.1.18-.13.11-.06.22-.07.31-.03 1.14.38 2.59.2 3.99-.5 1.78-.9 2.97-2.72 2.95-4.52-.02-1.64-.9-2.31-3.05-2.33-2.74.01-5.3-.53-5.34-4.57-.03-3.32 1.69-6.78 4.43-8.96l-.03-3.25c0-.4.24-.84.55-1l1.85-1.18c.3-.15.56.04.56.43l.03 3.25c1.36-.54 2.54-.69 3.61-.44.23.06.34.38.24.75l-.72 2.88c-.06.22-.18.44-.33.58a.77.77 0 01-.19.14c-.1.05-.19.06-.28.05-.49-.11-1.65-.36-3.48.56-1.92.97-2.59 2.64-2.58 3.88.02 1.48.77 1.93 3.39 1.97 3.49.06 4.99 1.58 5.03 5.09.05 3.44-1.79 7.15-4.61 9.41zm26.34-60.5l-35.7 22.05c-4.45 2.6-7.73 5.52-7.74 10.89v43.99c0 3.21 1.3 5.29 3.29 5.9-.65.11-1.32.19-1.98.19-2.09 0-4.15-.57-5.96-1.64l-37.73-22.4c-3.69-2.19-5.98-6.28-5.98-10.67V41.6c0-4.39 2.29-8.48 5.98-10.67l37.74-22.4c1.81-1.07 3.87-1.64 5.96-1.64s4.15.57 5.96 1.64l37.74 22.4c3.11 1.85 5.21 5.04 5.8 8.63-1.27-2.67-4.09-3.39-7.38-1.47z"/><path fill="#4FA847" d="M99.12 90.73l-9.4 5.62c-.25.15-.43.31-.43.61v2.46c0 .3.2.43.45.28l9.54-5.8c.25-.15.29-.42.29-.72v-2.17c0-.3-.2-.42-.45-.28z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#293138" d="M112.205 26.129 71.8 2.142A15.326 15.326 0 0 0 64.005 0c-2.688 0-5.386.717-7.796 2.152L15.795 26.14C10.976 28.999 8 34.289 8 40.018v47.975c0 5.729 2.967 11.019 7.796 13.878L56.2 125.858A15.193 15.193 0 0 0 63.995 128a15.32 15.32 0 0 0 7.796-2.142l40.414-23.987c4.819-2.86 7.796-8.16 7.796-13.878V40.007c0-5.718-2.967-11.019-7.796-13.878zm-31.29 74.907.063 3.448c0 .418-.267.889-.588 1.06l-2.046 1.178c-.321.16-.6-.032-.6-.45l-.032-3.394c-1.745.728-3.523.9-4.647.45-.214-.086-.31-.397-.225-.76l.739-3.117c.064-.246.193-.493.364-.643a.726.726 0 0 1 .193-.139c.117-.064.235-.075.332-.032 1.22.407 2.773.214 4.272-.535 1.907-.964 3.18-2.913 3.16-4.84-.022-1.757-.964-2.474-3.267-2.496-2.934.01-5.675-.567-5.718-4.894-.032-3.555 1.81-7.26 4.744-9.595l-.032-3.48c0-.428.257-.9.589-1.07l1.98-1.264c.322-.161.6.042.6.46l.033 3.48c1.456-.578 2.72-.738 3.865-.47.247.063.364.406.257.802l-.77 3.084a1.372 1.372 0 0 1-.354.622.825.825 0 0 1-.203.15c-.108.053-.204.064-.3.053-.525-.118-1.767-.385-3.727.6-2.056 1.038-2.773 2.827-2.763 4.155.022 1.585.825 2.066 3.63 2.11 3.738.063 5.344 1.691 5.387 5.45.053 3.684-1.917 7.657-4.937 10.077zm28.206-64.787L70.89 59.86c-4.765 2.784-8.278 5.911-8.288 11.662v47.107c0 3.437 1.392 5.665 3.523 6.318a12.81 12.81 0 0 1-2.12.204c-2.239 0-4.445-.61-6.383-1.757L17.219 99.408c-3.951-2.345-6.403-6.725-6.403-11.426V40.007c0-4.7 2.452-9.08 6.403-11.426L57.634 4.594a12.555 12.555 0 0 1 6.382-1.756c2.238 0 4.444.61 6.382 1.756l40.415 23.987c3.33 1.981 5.579 5.397 6.21 9.242-1.36-2.86-4.38-3.63-7.902-1.574z"/><path fill="#4fa847" d="m101.614 92.619-10.066 6.018c-.268.16-.46.332-.46.653v2.635c0 .32.214.46.481.3l10.216-6.212c.268-.16.31-.45.31-.77v-2.324c0-.322-.213-.45-.481-.3z"/></svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="none" d="M-143.76 4.24h119.53v119.53h-119.53z"/><path fill="#293138" d="M109.01 28.64L71.28 6.24c-2.25-1.33-4.77-2-7.28-2s-5.03.67-7.28 2.01l-37.74 22.4c-4.5 2.67-7.28 7.61-7.28 12.96v44.8c0 5.35 2.77 10.29 7.28 12.96l37.73 22.4c2.25 1.34 4.76 2 7.28 2 2.51 0 5.03-.67 7.28-2l37.74-22.4c4.5-2.67 7.28-7.62 7.28-12.96V41.6c0-5.34-2.77-10.29-7.28-12.96zM79.79 98.59l.06 3.22c0 .39-.25.83-.55.99l-1.91 1.1c-.3.15-.56-.03-.56-.42l-.03-3.17c-1.63.68-3.29.84-4.34.42-.2-.08-.29-.37-.21-.71l.69-2.91c.06-.23.18-.46.34-.6.06-.06.12-.1.18-.13.11-.06.22-.07.31-.03 1.14.38 2.59.2 3.99-.5 1.78-.9 2.97-2.72 2.95-4.52-.02-1.64-.9-2.31-3.05-2.33-2.74.01-5.3-.53-5.34-4.57-.03-3.32 1.69-6.78 4.43-8.96l-.03-3.25c0-.4.24-.84.55-1l1.85-1.18c.3-.15.56.04.56.43l.03 3.25c1.36-.54 2.54-.69 3.61-.44.23.06.34.38.24.75l-.72 2.88c-.06.22-.18.44-.33.58a.77.77 0 01-.19.14c-.1.05-.19.06-.28.05-.49-.11-1.65-.36-3.48.56-1.92.97-2.59 2.64-2.58 3.88.02 1.48.77 1.93 3.39 1.97 3.49.06 4.99 1.58 5.03 5.09.05 3.44-1.79 7.15-4.61 9.41zm19.78-5.41c0 .3-.04.58-.29.72l-9.54 5.8c-.25.15-.45.02-.45-.28v-2.46c0-.3.18-.46.43-.61l9.4-5.62c.25-.15.45-.02.45.28v2.17zm6.56-55.09l-35.7 22.05c-4.45 2.6-7.73 5.52-7.74 10.89v43.99c0 3.21 1.3 5.29 3.29 5.9-.65.11-1.32.19-1.98.19-2.09 0-4.15-.57-5.96-1.64l-37.73-22.4c-3.69-2.19-5.98-6.28-5.98-10.67V41.6c0-4.39 2.29-8.48 5.98-10.67l37.74-22.4c1.81-1.07 3.87-1.64 5.96-1.64s4.15.57 5.96 1.64l37.74 22.4c3.11 1.85 5.21 5.04 5.8 8.63-1.27-2.67-4.09-3.39-7.38-1.47z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#293138" d="M112.205 26.129 71.8 2.142A15.326 15.326 0 0 0 64.005 0c-2.688 0-5.386.717-7.796 2.152L15.795 26.14C10.976 28.999 8 34.289 8 40.018v47.975c0 5.729 2.967 11.019 7.796 13.878L56.2 125.858A15.193 15.193 0 0 0 63.995 128a15.32 15.32 0 0 0 7.796-2.142l40.414-23.987c4.819-2.86 7.796-8.16 7.796-13.878V40.007c0-5.718-2.967-11.019-7.796-13.878zm-31.29 74.907.063 3.448c0 .418-.267.889-.588 1.06l-2.046 1.178c-.321.16-.6-.032-.6-.45l-.032-3.394c-1.745.728-3.523.9-4.647.45-.214-.086-.31-.397-.225-.761l.739-3.116c.064-.246.193-.493.364-.643a.725.725 0 0 1 .193-.139c.117-.064.235-.075.332-.032 1.22.407 2.773.214 4.272-.535 1.907-.964 3.18-2.913 3.16-4.84-.022-1.757-.964-2.474-3.267-2.496-2.934.01-5.675-.567-5.718-4.894-.032-3.555 1.81-7.26 4.744-9.595l-.032-3.48c0-.428.257-.9.589-1.07l1.98-1.264c.322-.161.6.043.6.46l.033 3.48c1.456-.578 2.72-.738 3.865-.47.247.064.364.406.257.802l-.77 3.084a1.372 1.372 0 0 1-.354.622.825.825 0 0 1-.203.15c-.108.053-.204.064-.3.053-.525-.118-1.767-.385-3.727.6-2.056 1.038-2.773 2.827-2.763 4.155.022 1.585.825 2.066 3.63 2.11 3.738.064 5.344 1.691 5.387 5.45.053 3.684-1.917 7.657-4.937 10.077zm21.18-5.794c0 .322-.042.621-.31.771l-10.216 6.211c-.267.161-.482.022-.482-.3V99.29c0-.321.193-.492.46-.653l10.067-6.018c.268-.16.482-.022.482.3zm7.026-58.993L70.89 59.86c-4.765 2.784-8.278 5.911-8.288 11.662v47.107c0 3.437 1.392 5.665 3.523 6.318a12.81 12.81 0 0 1-2.12.204c-2.239 0-4.445-.61-6.383-1.757L17.219 99.408c-3.951-2.345-6.403-6.725-6.403-11.426V40.007c0-4.7 2.452-9.08 6.403-11.426L57.634 4.594a12.555 12.555 0 0 1 6.382-1.756c2.238 0 4.444.61 6.382 1.756l40.415 23.987c3.33 1.981 5.579 5.397 6.21 9.242-1.36-2.86-4.38-3.63-7.902-1.574z"/></svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#76d275" d="M11.195 41.61 22.39 52.805 11.195 64 0 52.805Z"/><path fill="#43a047" d="M0 52.805V64l11.195 11.195V64Z"/><path fill="#76d275" d="M33.585 41.61 44.78 52.805 33.585 64 22.39 52.805Z"/><path fill="#43a047" d="M44.78 52.805V64L33.585 75.195V64Zm-22.39 0L33.585 64 22.39 75.195 11.195 64Z"/><path fill="#00701a" d="M22.39 75.195V86.39L11.195 75.195V64Z"/><path fill="#004300" d="M22.39 75.195 33.585 64v11.195L22.39 86.39z"/><path fill="#5f5c5c" d="M54.17 51.598v24.29h9.273c1.988 0 3.682-.626 5.155-1.95 1.435-1.325 2.17-2.982 2.17-4.97 0-1.324-.368-2.465-1.141-3.458s-1.729-1.695-2.943-2.1v-.146c.993-.442 1.803-1.103 2.392-1.987.589-.883.883-1.915.883-3.056q0-2.87-2.098-4.746c-1.398-1.252-3.017-1.877-4.931-1.877zm70.701 0v24.29H128v-24.29zm-67.61 2.98h5.815c1.141 0 2.024.368 2.723 1.14.7.774 1.031 1.62 1.031 2.54 0 .957-.367 1.803-1.066 2.576s-1.657 1.178-2.834 1.178h-5.668zM80.265 58.7c-1.877 0-3.35.443-4.49 1.29-1.142.846-1.914 1.765-2.282 2.759l2.834 1.215c.258-.736.774-1.324 1.51-1.766s1.545-.664 2.465-.664q1.821.001 3.092 1.106c.846.736 1.252 1.728 1.252 2.943v.479c-1.178-.7-2.688-1.03-4.528-1.03q-3.09 0-5.19 1.545c-1.398 1.03-2.097 2.466-2.097 4.27 0 1.693.588 3.018 1.766 4.049 1.177.993 2.651 1.507 4.418 1.507 2.392 0 4.194-.957 5.52-2.834h.148v2.32h2.98V65.84c0-2.282-.699-4.012-2.098-5.264q-2.098-1.877-5.3-1.877zm33.64 0c-2.392 0-4.342.884-5.851 2.614-1.51 1.766-2.283 3.828-2.283 6.257 0 2.54.772 4.674 2.355 6.33 1.546 1.657 3.607 2.502 6.11 2.502 1.803 0 3.35-.44 4.564-1.287 1.251-.883 2.135-1.95 2.687-3.238l-2.799-1.143c-.772 1.877-2.28 2.834-4.525 2.834-1.362 0-2.577-.513-3.607-1.47-1.03-.994-1.62-2.319-1.694-3.975H122l.037-.59c0-2.687-.735-4.822-2.207-6.441-1.472-1.583-3.46-2.393-5.926-2.393zm-23.004.553v2.834h9.202l-9.46 11.078v2.688h13.434v-2.834h-9.605l9.459-11.041v-2.725zm22.967 2.281c1.583 0 2.76.443 3.57 1.29.764.872 1.202 1.743 1.284 2.687h-9.602c.295-1.215.884-2.172 1.73-2.908.847-.7 1.877-1.069 3.018-1.069m-56.642 3.35h6.146c1.251 0 2.245.442 3.018 1.252s1.14 1.729 1.14 2.722q0 1.492-1.103 2.762c-.736.847-1.694 1.25-2.908 1.25h-6.293zm23.408 2.762c1.766 0 3.091.33 3.974 1.066 0 1.325-.514 2.467-1.582 3.424-1.03.957-2.21 1.433-3.498 1.433a4.55 4.55 0 0 1-2.392-.662c-.7-.478-1.067-1.14-1.067-1.949 0-.883.368-1.658 1.141-2.32q1.16-.993 3.424-.992"/></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#76d275" d="m32 0 32 32-32 32L0 32Z"/><path fill="#43a047" d="M0 32v32l32 32V64Z"/><path fill="#76d275" d="m96 0 32 32-32 32-32-32Z"/><path fill="#43a047" d="M128 32v32L96 96V64Zm-64 0 32 32-32 32-32-32Z"/><path fill="#00701a" d="M64 96v32L32 96V64Z"/><path fill="#004300" d="m64 96 32-32v32l-32 32Z"/></svg>

After

Width:  |  Height:  |  Size: 383 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#76d275" d="M11.058 41.871.063 52.867l10.995 10.995 10.995-10.995Zm22.417 0L22.478 52.867l10.997 10.995.148-.148L44.47 52.867Zm20.608 9.787v24.32h9.284c1.99 0 3.687-.627 5.16-1.954 1.438-1.326 2.173-2.984 2.173-4.974 0-1.327-.368-2.468-1.142-3.463-.774-.995-1.73-1.697-2.947-2.102v-.147c.995-.442 1.806-1.104 2.396-1.989.59-.884.884-1.918.884-3.06 0-1.916-.7-3.499-2.1-4.752-1.4-1.252-3.022-1.879-4.938-1.879zm70.784 0v24.32H128v-24.32Zm-102.6 1.422L11.27 64.075l10.995 10.996 10.996-10.996Zm22.266.149L33.686 64.075l-.063.063v10.784l10.91-10.91ZM0 53.23v10.782l10.907 10.909V64.138Zm57.179 1.411h5.82c1.143 0 2.027.368 2.727 1.142.7.774 1.032 1.621 1.032 2.542 0 .958-.367 1.806-1.068 2.58-.7.773-1.658 1.179-2.837 1.179H57.18Zm23.029 4.126c-1.88 0-3.354.443-4.496 1.29-1.142.848-1.915 1.769-2.284 2.764l2.837 1.216c.258-.737.775-1.325 1.512-1.768.737-.442 1.546-.664 2.468-.664 1.216 0 2.248.37 3.095 1.106.848.737 1.254 1.731 1.254 2.947v.48c-1.18-.7-2.69-1.031-4.533-1.031-2.064 0-3.795.515-5.196 1.546-1.4 1.032-2.1 2.47-2.1 4.275 0 1.695.589 3.022 1.768 4.054 1.179.995 2.654 1.51 4.423 1.51 2.395 0 4.2-.959 5.526-2.838h.149v2.323h2.984v-10.06c0-2.285-.7-4.018-2.1-5.27-1.4-1.253-3.17-1.88-5.307-1.88zm33.68 0c-2.395 0-4.348.885-5.859 2.617-1.51 1.768-2.286 3.833-2.286 6.265 0 2.542.774 4.68 2.359 6.337 1.547 1.658 3.61 2.505 6.116 2.505 1.806 0 3.354-.44 4.57-1.288 1.253-.885 2.138-1.953 2.69-3.243l-2.801-1.143c-.774 1.879-2.283 2.837-4.531 2.837-1.364 0-2.58-.515-3.612-1.473-1.032-.994-1.622-2.32-1.695-3.979h13.154l.037-.59c0-2.69-.736-4.828-2.21-6.45-1.473-1.584-3.463-2.395-5.932-2.395zm-23.031.554v2.837h9.212l-9.47 11.091v2.69h13.449v-2.837h-9.617l9.47-11.054v-2.727zm22.994 2.284c1.584 0 2.763.443 3.574 1.29.764.874 1.203 1.746 1.285 2.69h-9.613c.295-1.215.885-2.174 1.732-2.91.848-.7 1.88-1.07 3.022-1.07zm-80.527 2.831-10.909 10.91v10.782l10.91-10.908Zm-22.116.002V75.22l10.908 10.91V75.346l-5.417-5.416zm45.933.52h6.154c1.253 0 2.247.443 3.021 1.254.774.81 1.142 1.73 1.142 2.725 0 .995-.368 1.918-1.105 2.765-.737.848-1.695 1.252-2.911 1.252H57.14Zm23.436 2.765c1.769 0 3.095.33 3.98 1.068 0 1.326-.516 2.47-1.585 3.428-1.031.958-2.212 1.435-3.502 1.435a4.56 4.56 0 0 1-2.395-.663c-.7-.479-1.068-1.14-1.068-1.951 0-.885.368-1.66 1.142-2.324.774-.663 1.917-.993 3.428-.993z"/></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#76d275" d="M31.748.46.208 32l31.036 31.035.504.504L63.288 32Zm64.504 0L64.712 32l31.54 31.54.504-.505L127.79 32ZM64 32.714 32.46 64.252 64 95.792l31.54-31.54Zm-64 .504v30.826l31.244 31.244V64.461Zm128 0L96.965 64.252l-.21.209v30.826L128 64.043ZM32.252 65.469v30.826l31.244 31.244V96.713Zm63.496 0L64.504 96.713v30.826l31.244-31.244Z"/></svg>

After

Width:  |  Height:  |  Size: 417 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 10 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.1 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.3 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M2246.028 2340.191h-.041c-.983 3.068-1.74 6.398-1.883 10.193-.274 7.13.453 11.467-.37 16.084-.821 4.617-3.246 9.162-9.411 16.286-7.345 8.483-18.98 15.048-32.424 17.264a69.34 69.34 0 0 1-7.917 4.36c10.46 3.944 21.403 4.158 30.077 1.31 15.28-5.015 14.094-8.619 20.939-19.11 2.156-3.305 4.646-5.825 7.148-7.898 7.125 3.11 14.148 5.099 18.52 4.605 2.348-5.451-.059-11.772-4.062-17.746 3.282-10.193-1.698-20.403-12.73-24.013-2.878-.941-5.463-1.382-7.846-1.34Zm8.28 14.97a4.111 4.111 0 0 1 3.194 1.4c1.525 1.728 1.328 4.385-.435 5.934-1.764 1.542-4.42 1.4-5.94-.328-1.519-1.728-1.322-4.385.435-5.933a4.306 4.306 0 0 1 2.747-1.073Zm-68.374 45.381c.125.072.256.137.381.215.131-.048.268-.102.393-.15-.256-.023-.518-.041-.774-.065Zm0 0" style="fill-rule:nonzero;fill:#c3c3c3;fill-opacity:1;stroke-width:4.15748;stroke-linecap:butt;stroke-linejoin:miter;stroke:#dadada;stroke-opacity:1;stroke-miterlimit:4" transform="matrix(.65574 0 0 .65574 -1363.278 -1474.524)"/><path d="M2191.146 2276.785c-5.975-.036-12.099 2.347-17.359 7.458-6.916 6.713-9.06 12.754-7.851 20.295l.334 2.068-2.068-.334c-15.184-2.466-33.984-1.221-55.37 7.428 6.285 2.699 17.823 7.196 30.63 13.344l4.064 1.954-4.415.894c-16.912 3.425-36.975 13.325-55.299 34.932 8.197-.638 24.954-2.61 42.426-2.58 9.716.012 19.29.685 27.087 2.705 7.798 2.025 14.887 6.654 15.887 10.043.995 3.39.43 5.177-.554 7.828-.983 2.65-4.009 6.684-8.197 9.34-4.181 2.663-9.495 4.986-15.011 6.964-11.039 3.95-22.78 6.475-27.963 6.958-1.102.101-1.542.5-1.971 1.269-.423.774-.656 1.984-.691 3.252-.048 1.692.214 2.574.697 3.247.476.667 1.22.935 1.99.989 32.584 2.204 56.943-5.993 74.64-13.01 20.35-9.335 33.211-27.76 36.005-44.35 1.752-10.395 1.376-15.489-.316-19.831-1.685-4.337-4.92-8.191-9.024-15.548-2.633-4.724-4.105-9.365-5.016-13.684l-.197-.911.727-.584c7.541-6.046 13.683-12.64 15.911-17.448-4.575-4.867-12.48-5.891-21.32-4.95l-.727.077-.512-.518c-4.712-4.801-10.562-7.262-16.537-7.297Zm2.651 11.229c2.591-.042 4.879 1.757 5.498 4.324.733 3.02-1.078 6.053-4.044 6.768-2.967.72-5.963-1.15-6.696-4.17-.727-3.02 1.084-6.053 4.05-6.767a5.31 5.31 0 0 1 1.192-.155Zm0 0" style="fill-rule:nonzero;fill:#282828;fill-opacity:1;stroke-width:4.15748;stroke-linecap:butt;stroke-linejoin:miter;stroke:#dadada;stroke-opacity:1;stroke-miterlimit:4" transform="matrix(.65574 0 0 .65574 -1363.278 -1474.524)"/><path d="M2230.897 2301.173a24.817 24.817 0 0 0-5.98.631c-.138.036-.263.072-.4.107-2.275 2.246-4.813 4.504-7.53 6.714.876 3.86 2.175 7.887 4.474 12.003 3.986 7.149 7.274 10.967 9.204 15.93 1.924 4.956 2.264 10.794.47 21.42-2.215 13.178-10.24 27.135-22.958 37.435 9.871-2.877 18.288-8.191 23.858-14.63 6.01-6.946 8.018-10.872 8.721-14.834.703-3.961.048-8.298.328-15.667.179-4.741 1.191-8.893 2.472-12.54l.31-.875.923-.125c8.227-1.066 15.667-3.163 19.51-5.647-1.234-5.552-6.482-9.859-13.428-13.135l-.661-.31-.167-.715c-2.204-9.46-9.59-15.56-19.146-15.762Zm4.778 11.687c.494 0 .983.072 1.447.227 2.538.81 3.926 3.562 3.098 6.147-.822 2.586-3.55 4.021-6.088 3.211-2.538-.81-3.926-3.562-3.098-6.147.656-2.044 2.532-3.438 4.64-3.438Zm0 0" style="fill-rule:nonzero;fill:#757575;fill-opacity:1;stroke-width:4.15748;stroke-linecap:butt;stroke-linejoin:miter;stroke:#dadada;stroke-opacity:1;stroke-miterlimit:4" transform="matrix(.65574 0 0 .65574 -1363.278 -1474.524)"/></svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M99.984 33.352a16.706 16.706 0 0 0-4.062.433c-.098.02-.18.05-.27.07a72.854 72.854 0 0 1-5.117 4.563 29.881 29.881 0 0 0 3.04 8.16c2.706 4.86 4.94 7.457 6.25 10.828 1.312 3.371 1.542 7.34.32 14.559-1.504 8.96-6.957 18.45-15.602 25.453 6.71-1.957 12.426-5.57 16.215-9.95 4.09-4.718 5.457-7.39 5.93-10.077.48-2.696.03-5.645.218-10.653.125-2.91.696-5.785 1.688-8.527l.21-.598.626-.078c5.593-.726 10.648-2.156 13.261-3.84-.84-3.773-4.402-6.707-9.129-8.93l-.449-.214-.11-.477c-1.5-6.433-6.523-10.582-13.019-10.722Zm3.254 7.949c.332-.004.664.047.98.148 1.727.551 2.669 2.422 2.106 4.18-.558 1.758-2.41 2.738-4.136 2.187-1.727-.55-2.672-2.425-2.11-4.18.445-1.39 1.723-2.335 3.16-2.335ZM72.965 16.777c-4.059-.027-8.223 1.598-11.8 5.067-4.7 4.566-6.161 8.672-5.337 13.797l.227 1.406-1.403-.227c-10.328-1.675-23.105-.828-37.644 5.051 4.277 1.832 12.117 4.89 20.82 9.066l2.766 1.333-3.004.609C26.098 55.203 12.457 61.934 0 76.62c5.574-.43 16.96-1.777 28.844-1.754 6.601.012 13.11.469 18.41 1.84 5.3 1.375 10.121 4.523 10.8 6.828.676 2.3.294 3.52-.374 5.32-.672 1.805-2.727 4.54-5.575 6.348-2.84 1.813-6.453 3.39-10.207 4.734-7.5 2.684-15.484 4.403-19.007 4.731-.746.07-1.047.336-1.332.86a5.161 5.161 0 0 0-.477 2.214c-.031 1.145.148 1.75.477 2.203.32.457.832.64 1.351.676 22.152 1.492 38.711-4.074 50.738-8.848 13.836-6.34 22.575-18.867 24.473-30.144 1.192-7.067.934-10.527-.21-13.477-1.15-2.949-3.345-5.566-6.134-10.57a32.605 32.605 0 0 1-3.414-9.309l-.129-.617.493-.394c5.125-4.106 9.3-8.594 10.816-11.864-3.11-3.304-8.48-4.003-14.496-3.359l-.492.055-.352-.36c-3.2-3.261-7.18-4.937-11.238-4.957Zm1.797 7.633a3.815 3.815 0 0 1 3.746 2.938 3.79 3.79 0 0 1-2.754 4.601 3.789 3.789 0 0 1-4.547-2.836 3.783 3.783 0 0 1 3.555-4.703Zm35.511 35.465h-.035a25.714 25.714 0 0 0-1.277 6.934c-.184 4.843.309 7.793-.25 10.933-.555 3.137-2.203 6.223-6.402 11.067-4.985 5.765-12.895 10.23-22.036 11.734a47.475 47.475 0 0 1-5.382 2.969c7.109 2.68 14.55 2.828 20.441.886 10.39-3.41 9.586-5.855 14.242-12.988 1.465-2.246 3.156-3.96 4.852-5.37 4.847 2.112 9.617 3.468 12.586 3.132 1.601-3.703-.032-8-2.75-12.067 2.23-6.933-1.157-13.863-8.657-16.32a16.304 16.304 0 0 0-5.332-.91Zm5.625 10.18a2.83 2.83 0 0 1 2.176.949c1.031 1.176.899 2.98-.297 4.035-1.199 1.05-3.007.95-4.039-.227-1.035-1.171-.902-2.976.293-4.03a2.952 2.952 0 0 1 1.867-.727Zm-46.48 30.843.266.149.27-.106c-.184-.011-.36-.02-.536-.043Zm0 0" /></svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path fill="#ff6384" d="M28.637 103.357c.256.32.416.736.416 1.12 0 .993-.832 1.76-1.824 1.76-.48 0-.992-.191-1.376-.607-1.216-1.377-2.976-2.209-4.736-2.209-4.193 0-7.297 3.2-7.297 7.65 0 4.416 3.104 7.648 7.297 7.648 1.76 0 3.52-.768 4.736-2.176a2.02 2.02 0 0 1 1.408-.608c.992 0 1.76.8 1.76 1.728 0 .384-.128.8-.384 1.12-1.632 1.856-4.032 3.328-7.52 3.328-6.305 0-11.202-4.48-11.202-11.04 0-6.562 4.897-11.042 11.202-11.042 3.488 0 5.888 1.472 7.52 3.328zM44.8 121.92a1.687 1.687 0 0 1-1.696-1.696v-8.193c0-2.368-1.248-3.104-3.136-3.104-1.665 0-3.137.992-3.905 2.048v9.25c0 .927-.768 1.695-1.728 1.695a1.687 1.687 0 0 1-1.696-1.696v-18.37c0-.896.736-1.664 1.76-1.664.896 0 1.664.768 1.664 1.664v6.529c1.024-1.216 3.008-2.496 5.473-2.496 3.328 0 4.992 1.76 4.992 4.896v9.441c0 .928-.768 1.696-1.728 1.696zm17.185 0h-.192c-.448 0-1.536-.384-1.536-1.568v-.288c-1.12 1.312-2.944 2.048-4.96 2.048-2.529 0-5.409-1.696-5.409-5.12 0-3.553 2.88-5.025 5.409-5.025 2.048 0 3.872.672 4.96 1.984v-2.368c0-1.76-1.472-2.848-3.584-2.848-1.344 0-2.56.352-3.68 1.184a1.313 1.313 0 0 1-.705.224c-.64 0-1.344-.512-1.344-1.344 0-.256.096-.544.256-.736 1.216-1.536 4.065-2.176 6.017-2.176 3.424 0 6.465 1.44 6.465 5.6v8.737a1.708 1.708 0 0 1-1.697 1.696zm-1.728-6.048c-.768-1.024-2.176-1.536-3.648-1.536-1.824 0-3.233 1.024-3.233 2.72 0 1.632 1.409 2.688 3.233 2.688 1.472 0 2.88-.512 3.648-1.568zm13.953-6.529c-1.376.128-2.688.704-3.52 1.888v8.993a1.708 1.708 0 0 1-1.696 1.696h-.064c-.929 0-1.665-.768-1.665-1.696v-12.481c0-.896.736-1.664 1.76-1.664.897 0 1.665.768 1.665 1.664v.8c.832-1.12 2.048-2.464 3.68-2.464.928 0 1.504.64 1.504 1.472 0 1.024-.704 1.664-1.664 1.792zm9.633 12.77c-2.624 0-4-1.409-4-4.001v-8.833h-1.28c-.8 0-1.473-.672-1.473-1.536 0-.8.672-1.472 1.473-1.472h1.28v-2.72c0-.929.768-1.697 1.76-1.697.928 0 1.664.768 1.664 1.696v2.72h1.888c.8 0 1.44.673 1.44 1.537 0 .8-.64 1.472-1.44 1.472h-1.888v7.969c0 1.184.672 1.824 1.472 1.824.224 0 .512-.096.704-.096.928 0 1.504.64 1.504 1.472 0 1.024-.928 1.664-3.104 1.664zm7.36-.033c-1.247 0-2.271-1.056-2.271-2.272a2.28 2.28 0 0 1 2.272-2.272 2.28 2.28 0 0 1 2.272 2.272c0 1.216-1.024 2.272-2.272 2.272zm5.665 5.92c-1.984 0-3.52-.512-3.52-1.76 0-.768.64-1.376 1.376-1.376.48 0 .832.32 1.6.32 1.312 0 2.272-.8 2.272-2.625v-14.817c0-.896.736-1.664 1.76-1.664.896 0 1.664.768 1.664 1.664v14.817c0 3.329-1.728 5.441-5.152 5.441Zm5.537-25.73a2.11 2.11 0 0 1-2.113 2.111 2.11 2.11 0 0 1-2.112-2.112c0-1.152.96-2.08 2.112-2.08 1.152 0 2.113.928 2.113 2.08zm9.248 19.841c-2.08 0-4.833-.64-6.049-2.016a1.28 1.28 0 0 1-.32-.832c0-.8.704-1.44 1.472-1.44.256 0 .544.064.769.224 1.184.8 2.784 1.376 4.256 1.376 2.016 0 3.008-.864 3.008-2.048 0-3.008-9.345-.832-9.345-6.785 0-2.528 2.209-4.704 6.145-4.704 2.08 0 4.416.64 5.473 1.856.192.224.288.48.288.768 0 .736-.64 1.312-1.377 1.312-.224 0-.48-.064-.704-.192-.992-.672-2.304-1.088-3.68-1.088-1.728 0-2.816.832-2.816 1.888 0 2.72 9.313.672 9.313 6.817 0 2.752-2.273 4.864-6.433 4.864z"/><path fill="#36a2eb" d="M100.408 46.037c-12.783.25-10.12 8.343-19.129 10.39-9.152 2.079-10.597-22.352-19.746-22.352-9.15 0-11.178 23.731-22.636 40.024l-.326.462 24.565 14.18 37.273-21.517V46.037Z"/><path fill="#ffce56" d="M100.408 45.3c-4.279-5.492-7.181-11.806-13.426-11.806-11.052 0-8.143 18.028-20.357 18.028-12.215 0-13.498-19.391-27.336-1.163-4.409 5.808-7.958 12.284-10.745 18.412l34.591 19.97 37.273-21.517V45.3Z"/><path fill="#fe6184" d="M25.863 52.768c4.193-11.613 6.003-21.018 14.009-21.018 12.212 0 15.12 34.31 25.59 30.82 10.468-3.489 9.305-22.098 25.59-22.098 3.1 0 6.265 1.899 9.356 4.971v21.78L63.136 88.74 25.862 67.224V52.768Z" opacity=".8"/><path fill="#e7e9ed" d="m63.107 91.438-39.6-22.86V22.86L63.108 0l39.6 22.86v45.719ZM28.16 65.893l34.947 20.174 34.947-20.174V25.546L63.107 5.372 28.16 25.546z"/></svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path fill="#36a2eb" d="M116.217 64.445c-17.894.351-14.167 11.679-26.778 14.544C76.628 81.899 74.605 47.7 61.797 47.7c-12.81 0-15.647 33.221-31.686 56.027l-.458.646 34.388 19.85 52.176-30.121z"/><path fill="#ffce56" d="M116.217 63.414c-5.99-7.688-10.054-16.526-18.795-16.526-15.47 0-11.399 25.236-28.496 25.236-17.098 0-18.896-27.145-38.266-1.628-6.172 8.13-11.14 17.196-15.042 25.774l48.423 27.954 52.176-30.121z"/><path fill="#fe6184" d="M11.863 73.867c5.87-16.257 8.404-29.423 19.611-29.423 17.097 0 21.166 48.031 35.823 43.145 14.654-4.884 13.026-30.935 35.823-30.935 4.339 0 8.77 2.658 13.097 6.958v30.49l-52.176 30.121-52.178-30.121V73.867Z" opacity=".8"/><path fill="#e7e9ed" d="M64 128 8.566 96.001V32L64 0l55.434 32v64zM15.079 92.241 64 120.482l48.921-28.241V35.76L64 7.519 15.079 35.76Z"/></svg>

After

Width:  |  Height:  |  Size: 889 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.4 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path stroke="#ff6384" d="M61.797 47.2c-3.419 0-6.154 2.232-8.516 5.769-2.362 3.536-4.42 8.425-6.582 14.011-4.322 11.173-9.036 25.139-16.998 36.46l-.773 1.091 35.113 20.27 52.676-30.41V63.936l-.51.01c-9.053.177-12.817 3.221-15.734 6.495-2.918 3.275-4.989 6.662-11.145 8.061-1.497.34-2.791.142-4.006-.469-1.214-.61-2.345-1.652-3.412-3.013-2.133-2.723-3.985-6.701-5.838-10.791-1.853-4.09-3.71-8.294-5.943-11.516-2.234-3.222-4.908-5.514-8.332-5.514zm0 1c2.98 0 5.361 1.984 7.51 5.083 2.148 3.1 4 7.264 5.855 11.36 1.855 4.095 3.711 8.122 5.961 10.994 1.125 1.435 2.352 2.588 3.75 3.29 1.398.703 2.97.937 4.676.55 6.455-1.467 8.826-5.176 11.672-8.37 2.781-3.121 6.093-5.825 14.496-6.109v28.814L64.04 123.647l-33.662-19.431.14-.2v-.001C38.596 92.53 43.321 78.482 47.63 67.343c2.154-5.57 4.208-10.412 6.482-13.817 2.274-3.405 4.697-5.326 7.684-5.326z" color="#000" font-family="sans-serif" font-weight="400" overflow="visible" style="line-height:normal;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1"/><path stroke="#ff6384" d="M97.422 46.389c-4.004 0-6.823 1.67-8.951 4.113-2.128 2.443-3.612 5.636-5.137 8.787-1.525 3.15-3.088 6.258-5.28 8.547-2.19 2.29-4.977 3.787-9.128 3.787-8.285 0-12.86-6.604-17.989-10.287-2.564-1.842-5.36-2.925-8.687-1.826-3.327 1.098-7.118 4.267-11.988 10.683-6.202 8.17-11.187 17.267-15.1 25.87l-.187.414L64.04 124.8l52.676-30.408v-31.15l-.106-.136c-2.971-3.814-5.484-7.95-8.388-11.173-2.905-3.223-6.262-5.545-10.801-5.545zm0 1c4.202 0 7.248 2.096 10.058 5.215 2.776 3.08 5.268 7.14 8.237 10.972v30.238L64.04 123.646 16.277 96.074C20.14 87.64 25.012 78.764 31.06 70.8c4.814-6.342 8.511-9.35 11.503-10.338 2.993-.988 5.348-.07 7.792 1.685 4.886 3.51 9.758 10.477 18.572 10.477 4.397 0 7.514-1.653 9.851-4.096 2.338-2.442 3.929-5.644 5.457-8.802 1.529-3.159 2.997-6.276 4.99-8.565 1.995-2.289 4.466-3.771 8.198-3.771z" color="#000" font-family="sans-serif" font-weight="400" overflow="visible" style="line-height:normal;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1"/><path stroke="#ff6384" d="M31.475 43.943c-2.9 0-5.29.867-7.276 2.418-1.986 1.552-3.573 3.768-4.976 6.467-2.808 5.4-4.902 12.76-7.83 20.87l-.03.081v20.612l52.678 30.41 52.676-30.41V63.404l-.147-.146c-4.375-4.348-8.908-7.104-13.45-7.104-5.795 0-10.096 1.67-13.458 4.25s-5.786 6.047-7.935 9.63c-2.15 3.581-4.03 7.285-6.262 10.368-2.231 3.084-4.792 5.535-8.326 6.713-1.713.571-3.203.375-4.649-.416-1.446-.79-2.833-2.208-4.162-4.08-2.658-3.744-5.077-9.272-7.57-14.97-2.494-5.7-5.066-11.57-8.121-16.057-3.056-4.487-6.654-7.649-11.162-7.649Zm0 1c4.04 0 7.362 2.845 10.336 7.211 2.973 4.367 5.538 10.197 8.03 15.895 2.494 5.698 4.912 11.262 7.673 15.15 1.38 1.944 2.85 3.476 4.498 4.377 1.648.901 3.491 1.137 5.443.487 3.793-1.265 6.523-3.9 8.82-7.075 2.298-3.174 4.184-6.9 6.309-10.441 2.125-3.541 4.483-6.892 7.686-9.35 3.202-2.457 7.245-4.043 12.85-4.043 4.086 0 8.366 2.516 12.597 6.68v29.978L64.04 123.647 12.363 93.812V73.953c2.925-8.112 5.03-15.435 7.748-20.664 1.365-2.624 2.879-4.715 4.703-6.14 1.825-1.426 3.957-2.206 6.66-2.206z" color="#000" font-family="sans-serif" font-weight="400" opacity=".8" overflow="visible" style="line-height:normal;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1"/><path fill="#ff6384" d="M64 128 8.566 96.001V32L64 0l55.434 32v64ZM15.079 92.241 64 120.482l48.921-28.241V35.76L64 7.519 15.079 35.76Z"/></svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M0 0h128v128H0z" fill="#f9ff69"/><path d="M26.54 23.21a.945.945 0 0 0-.938.938v79.618c0 .511.425.937.937.937h7.168a.945.945 0 0 0 .938-.937V24.148a.945.945 0 0 0-.938-.937Zm18.089 0a.945.945 0 0 0-.938.938v79.618c0 .511.426.937.938.937h7.168a.949.949 0 0 0 .941-.937V24.148a.949.949 0 0 0-.941-.937Zm18.09 0a.945.945 0 0 0-.938.938v79.618c0 .511.426.937.938.937h7.168a.949.949 0 0 0 .941-.937V24.148a.949.949 0 0 0-.941-.937Zm18.18 0a.946.946 0 0 0-.942.938v79.618c0 .511.426.937.941.937h7.165a.949.949 0 0 0 .94-.937V24.148a.949.949 0 0 0-.94-.937Zm18.09 31.743a.952.952 0 0 0-.942.942v16.21c0 .512.43.942.941.942h7.168c.512 0 .938-.43.938-.942v-16.21a.949.949 0 0 0-.938-.942Zm0 0"/></svg>

After

Width:  |  Height:  |  Size: 763 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M26.54 23.21a.945.945 0 0 0-.938.938v79.618c0 .511.425.937.937.937h7.168a.945.945 0 0 0 .938-.937V24.148a.945.945 0 0 0-.938-.937Zm18.089 0a.945.945 0 0 0-.938.938v79.618c0 .511.426.937.938.937h7.168a.949.949 0 0 0 .941-.937V24.148a.949.949 0 0 0-.941-.937Zm18.09 0a.945.945 0 0 0-.938.938v79.618c0 .511.426.937.938.937h7.168a.949.949 0 0 0 .941-.937V24.148a.949.949 0 0 0-.941-.937Zm18.18 0a.946.946 0 0 0-.942.938v79.618c0 .511.426.937.941.937h7.165a.949.949 0 0 0 .94-.937V24.148a.949.949 0 0 0-.94-.937Zm18.09 31.743a.952.952 0 0 0-.942.942v16.21c0 .512.43.942.941.942h7.168c.512 0 .938-.43.938-.942v-16.21a.949.949 0 0 0-.938-.942Zm0 0"/></svg>

After

Width:  |  Height:  |  Size: 721 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#4285f4" d="m38.239 0 .513 1.462 21.927 62.505L38.239 128 128 63.967ZM0 .406l.268 1.02 16.455 62.541L0 127.598l23.207-11.048 16.529-52.583-16.528-52.582Zm1.493 1.79 20.9 9.89 16.309 51.881-16.308 51.883-20.9 9.95 16.251-61.833Zm38.705.406 86.11 61.365-86.11 61.43 21.526-61.43Z"/></svg>

After

Width:  |  Height:  |  Size: 361 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#aecbfa" d="M128 63.965 38.957 0l22.26 63.966Z"/><path fill="#4285f4" d="M38.957 128 128 63.965H61.217zM16.696 63.965 0 128l22.332-10.718 16.625-53.317Z"/><path fill="#aecbfa" d="M22.332 10.649 0-.001l16.696 63.966h22.26Z"/></svg>

After

Width:  |  Height:  |  Size: 305 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#4285f4" d="m0 0 16.695 63.967L0 128l22.332-10.717 16.625-53.316L22.332 10.65Zm38.957 0 22.26 63.967L38.957 128 128 63.967Z"/></svg>

After

Width:  |  Height:  |  Size: 207 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M111.477 78.168V49.832h5.359v23.586H128v4.75zm-17.78.487q-2.802 0-5.075-.933-2.274-.934-3.898-2.802-1.583-1.867-2.476-4.587-.893-2.72-.893-6.333 0-3.572.893-6.292.893-2.761 2.476-4.628 1.624-1.868 3.898-2.802 2.273-.933 5.074-.933 2.801 0 5.075.933 2.273.934 3.897 2.802 1.624 1.867 2.476 4.628.893 2.72.893 6.292 0 3.613-.893 6.333-.852 2.72-2.476 4.587-1.624 1.868-3.897 2.802-2.274.933-5.075.933zm0-4.75q3.044 0 4.83-2.03 1.827-2.03 1.827-5.683v-4.384q0-3.654-1.827-5.684-1.786-2.03-4.83-2.03-3.046 0-4.872 2.03-1.787 2.03-1.787 5.684v4.384q0 3.654 1.787 5.684 1.826 2.03 4.871 2.03zm-38.04-24.073H68.77q1.746 0 3.126.528 1.42.527 2.395 1.461.974.934 1.462 2.314.527 1.34.527 2.964 0 1.623-.446 2.76-.406 1.096-1.137 1.827-.69.73-1.624 1.096-.893.365-1.867.406v.244q.934 0 1.989.365 1.096.365 1.99 1.177.933.772 1.542 2.03.609 1.218.609 3.045 0 1.705-.569 3.207-.527 1.461-1.502 2.558-.974 1.096-2.314 1.745-1.34.61-2.922.61H55.657zm5.36 23.79h7.469q1.543 0 2.395-.772.853-.812.853-2.314v-1.38q0-1.502-.853-2.314-.852-.812-2.395-.812h-7.47zm0-11.977h6.616q1.462 0 2.274-.77.812-.813.812-2.234v-1.258q0-1.421-.812-2.192-.812-.812-2.274-.812h-6.617zm-23.14 17.01q-2.802 0-5.075-.933-2.274-.934-3.897-2.802-1.584-1.867-2.477-4.587-.893-2.72-.893-6.333 0-3.572.893-6.292.893-2.761 2.477-4.628 1.623-1.868 3.897-2.802 2.273-.933 5.074-.933t5.075.933q2.273.934 3.897 2.802 1.624 1.867 2.476 4.628.894 2.72.894 6.292 0 3.613-.894 6.333-.852 2.72-2.476 4.587-1.624 1.868-3.897 2.802-2.274.933-5.075.933zm0-4.75q3.044 0 4.83-2.03 1.827-2.03 1.827-5.683v-4.384q0-3.654-1.827-5.684-1.786-2.03-4.83-2.03t-4.872 2.03q-1.787 2.03-1.787 5.684v4.384q0 3.654 1.787 5.684 1.827 2.03 4.871 2.03zm-25.658 4.75q-2.8 0-5.074-.893-2.233-.934-3.857-2.76-1.583-1.827-2.435-4.507Q0 67.775 0 64.203t.853-6.333q.852-2.801 2.435-4.669 1.624-1.908 3.857-2.882 2.273-.974 5.074-.974 3.817 0 6.333 1.624 2.517 1.623 4.02 4.912l-4.588 2.436q-.609-1.908-1.99-3.045-1.38-1.177-3.775-1.177-3.004 0-4.79 2.03-1.746 2.03-1.746 5.683v4.465q0 3.695 1.746 5.684 1.786 1.948 4.79 1.948 2.396 0 3.898-1.299 1.542-1.299 2.232-3.207l4.344 2.558q-1.542 3.166-4.1 4.953-2.557 1.745-6.374 1.745z" style="white-space:pre"/></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#632ca6" d="M99.9 0 16.58 9.663 26.847 92.96l9.754-1.416c-.78-1.112-1.992-2.458-4.062-4.18-2.872-2.385-1.858-6.44-.162-9 2.242-4.324 13.792-9.82 13.138-16.732-.235-2.514-.634-5.784-2.968-8.027-.088.93.07 1.825.07 1.825s-.958-1.222-1.435-2.888c-.474-.64-.847-.843-1.35-1.697-.36.987-.313 2.132-.313 2.132s-.783-1.85-.91-3.414c-.464.7-.58 2.027-.58 2.027s-1.018-2.918-.786-4.49c-.464-1.369-1.842-4.084-1.453-10.254 2.542 1.781 8.14 1.359 10.321-1.856.724-1.065 1.221-3.97-.361-9.699-1.016-3.672-3.531-9.14-4.512-11.216l-.117.085c.517 1.672 1.582 5.174 1.992 6.875 1.238 5.152 1.57 6.947.989 9.323-.494 2.066-1.68 3.416-4.685 4.927-3.005 1.515-6.994-2.173-7.245-2.376-2.92-2.327-5.179-6.12-5.43-7.965-.262-2.018 1.163-3.229 1.881-4.879-1.028.293-2.174.816-2.174.816s1.368-1.416 3.054-2.64c.7-.462 1.11-.756 1.845-1.367-1.065-.018-1.931.012-1.931.012s1.778-.96 3.62-1.659c-1.348-.06-2.64-.01-2.64-.01s3.967-1.774 7.098-3.075c2.154-.883 4.258-.622 5.44 1.088 1.552 2.24 3.183 3.456 6.637 4.21 2.122-.941 2.765-1.422 5.43-2.15 2.346-2.581 4.188-2.914 4.188-2.914s-.914.838-1.159 2.155c1.33-1.048 2.788-1.923 2.788-1.923s-.565.696-1.092 1.803l.122.183c1.552-.932 3.376-1.664 3.376-1.664s-.522.659-1.133 1.511c1.171-.01 3.544.05 4.466.154 5.438.12 6.566-5.806 8.653-6.55 2.612-.933 3.78-1.498 8.233 2.876 3.82 3.757 6.805 10.477 5.322 11.983-1.244 1.25-3.694-.488-6.411-3.874-1.435-1.793-2.522-3.913-3.03-6.608-.43-2.273-2.1-3.592-2.1-3.592s.968 2.16.968 4.063c0 1.04.13 4.926 1.797 7.108-.165.319-.242 1.578-.424 1.82-1.94-2.344-6.104-4.021-6.784-4.516 2.3 1.884 7.582 6.21 9.61 10.359 1.92 3.921.79 7.517 1.76 8.446.278.266 4.13 5.066 4.87 7.477 1.293 4.202.076 8.62-1.615 11.358l-4.724.736c-.692-.192-1.157-.287-1.776-.646.342-.605 1.02-2.112 1.027-2.424l-.267-.467c-1.47 2.083-3.933 4.105-5.98 5.267-2.678 1.518-5.765 1.283-7.774.663-5.703-1.759-11.096-5.613-12.397-6.626 0 0-.04.808.205.99 1.437 1.623 4.731 4.555 7.917 6.602l-6.789.747 3.21 24.987c-1.423.203-1.645.304-3.202.525-1.373-4.85-3.998-8.016-6.869-9.86-2.531-1.628-6.022-1.994-9.363-1.332l-.214.25c2.323-.242 5.065.094 7.883 1.878 2.765 1.749 4.993 6.266 5.814 8.984 1.051 3.475 1.778 7.194-1.051 11.135-2.011 2.801-7.883 4.348-12.629 1 1.267 2.038 2.98 3.703 5.287 4.017 3.424.466 6.673-.13 8.91-2.426 1.909-1.963 2.923-6.068 2.656-10.391l3.022-.439 1.092 7.76 50.023-6.024-4.081-39.814-2.546.484zM77.92 27.458c-.597.056-1.118.258-1.38.58.095.014.18.033.247.055.79.274.256.546.114.872-.14.318-.36.528-.03 1.565l.019.059.052.134.138.311c.594 1.214 1.245 2.358 2.336 2.944q.423-.072.877-.095c1.024-.044 1.67.117 2.078.338.037-.205.045-.502.023-.942-.08-1.538.304-4.152-2.652-5.528-.557-.259-1.227-.348-1.823-.293zm-16.052 2.685c-1.334-.023-3.15.305-4.737 1.387-2.34 1.597-2.416 5.02-.174 6.962.224.192.41.328.58.44.655-.31 1.4-.62 2.26-.898 1.45-.47 2.656-.714 3.646-.843.474-.53 1.026-1.463.888-3.152-.189-2.293-1.923-1.93-.62-3.172.342-.324-.51-.7-1.843-.724m21.914 13.041a22 22 0 0 0-2.068.15c-2.426.285-5.045 1.125-5.618 1.573-1.043.807-.57 2.212.202 2.79 2.161 1.614 4.055 2.697 6.054 2.433 1.227-.162 2.31-2.106 3.077-3.869.525-1.214.525-2.525-.243-2.95-.194-.108-.744-.14-1.404-.127m21.023 10.41 2.63 31.837-44.177 7.961-3.82-31.881 6.295-.866c1.017.458 1.726.632 2.947.942 1.902.495 4.102.97 7.362-.671.758-.376 2.339-1.821 2.977-2.645zm-2.365 5.022-6.42 13.461-8.446-5.571-7.044 11.768-8.194-2.395-7.214 11.011.37 3.466 39.226-7.23zm19.936 50q-10.309-.001-10.31 9.424c0 6.634 3.379 9.957 10.136 9.957q3.486 0 5.798-1.018v-9.995h-5.73l-1.198 3.144h3.38v4.474q-1.232.32-2.196.319-6.509 0-6.507-6.88.001-6.352 6.894-6.352 2.88 0 5.355 1.07v-3.208q-2.474-.934-5.622-.936zm-22.194.003c-6.407 0-9.616 3.239-9.616 9.717.29 6.44 3.492 9.663 9.616 9.664q9.464-.002 9.464-9.664.001-9.717-9.463-9.717zM0 108.756v19.106h8.3c5.978 0 8.972-3.362 8.972-10.074 0-6.02-2.994-9.032-8.973-9.032zm25.474 0-8.127 19.106h3.643l6.304-15.46 3.135 7.178H26.45l-1.22 3.07h6.134l2.41 5.212h3.817l-8.304-19.106zm10.112 0-.002 3.072h5.493v16.034h3.547v-16.034h5.49v-3.072zm20.836 0-8.128 19.106h3.644l6.3-15.46 3.135 7.178h-3.978l-1.216 3.07h6.133l2.41 5.212h3.817l-8.302-19.106zm14.47 0v19.106h8.3c5.982 0 8.973-3.362 8.973-10.074q0-9.031-8.973-9.032zm29.29 2.931q5.783 0 5.783 6.567 0 6.666-5.782 6.665-5.93.001-5.932-6.665 0-6.566 5.931-6.567m-96.633.136h4.214q5.958 0 5.957 5.962.001 7.002-5.957 7.001H3.55Zm70.891 0h4.218q5.957 0 5.958 5.962c0 4.669-1.989 7.001-5.958 7.001H74.44Z"/></svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#632ca6" d="M104.375 90.884 93.726 83.86 84.843 98.7 74.51 95.677l-9.098 13.885.467 4.371 49.463-9.114-2.873-30.905zM58.247 77.56l7.936-1.092c1.284.577 2.178.797 3.718 1.189 2.397.625 5.173 1.224 9.284-.848.957-.474 2.95-2.296 3.755-3.335l32.515-5.898 3.317 40.144-55.704 10.04zm60.4-14.466-3.21.612L109.271 0 4.207 12.183 17.151 117.22l12.297-1.785c-.982-1.402-2.511-3.099-5.122-5.27-3.622-3.01-2.341-8.12-.205-11.348 2.826-5.453 17.39-12.383 16.565-21.099-.296-3.169-.8-7.295-3.741-10.121a9.8 9.8 0 0 0 .088 2.303s-1.208-1.541-1.81-3.643c-.598-.805-1.068-1.063-1.703-2.139-.453 1.245-.393 2.69-.393 2.69s-.988-2.336-1.148-4.306c-.586.882-.734 2.558-.734 2.558s-1.284-3.68-.991-5.662c-.586-1.725-2.323-5.148-1.831-12.929 3.206 2.247 10.265 1.713 13.015-2.34.913-1.343 1.538-5.008-.456-12.23-1.28-4.63-4.453-11.526-5.689-14.142l-.148.106c.652 2.108 1.996 6.526 2.511 8.668 1.56 6.498 1.98 8.76 1.247 11.755-.623 2.604-2.118 4.309-5.908 6.213-3.789 1.91-8.817-2.739-9.136-2.996-3.681-2.933-6.53-7.717-6.847-10.042-.33-2.544 1.466-4.072 2.372-6.152-1.296.37-2.742 1.028-2.742 1.028s1.725-1.785 3.852-3.329c.88-.583 1.398-.954 2.326-1.725-1.344-.022-2.435.016-2.435.016s2.241-1.21 4.564-2.092c-1.7-.075-3.326-.012-3.326-.012s5-2.236 8.95-3.878c2.715-1.113 5.369-.784 6.86 1.371 1.956 2.824 4.011 4.357 8.367 5.308 2.674-1.185 3.487-1.795 6.848-2.71 2.958-3.253 5.28-3.674 5.28-3.674s-1.152 1.057-1.46 2.717a39 39 0 0 1 3.516-2.424s-.711.879-1.375 2.275l.154.229c1.957-1.174 4.257-2.1 4.257-2.1s-.658.832-1.429 1.908c1.475-.012 4.468.063 5.63.195 6.856.15 8.28-7.324 10.91-8.26 3.295-1.177 4.767-1.889 10.382 3.626 4.817 4.734 8.581 13.208 6.713 15.106-1.567 1.576-4.658-.614-8.084-4.885-1.81-2.262-3.18-4.934-3.82-8.332-.542-2.867-2.648-4.53-2.648-4.53s1.223 2.717 1.223 5.118c0 1.31.164 6.212 2.266 8.962-.208.402-.305 1.99-.535 2.293-2.446-2.955-7.697-5.07-8.554-5.693 2.899 2.375 9.561 7.831 12.12 13.06 2.42 4.945.994 9.477 2.218 10.65.349.337 5.205 6.388 6.14 9.428 1.629 5.3.097 10.867-2.036 14.322l-5.957.928c-.872-.242-1.459-.363-2.24-.816.43-.762 1.286-2.664 1.295-3.055l-.336-.59c-1.854 2.625-4.96 5.176-7.54 6.64-3.377 1.914-7.27 1.62-9.803.835C61.744 71 54.944 66.14 53.304 64.864c0 0-.05 1.02.259 1.248 1.813 2.045 5.967 5.745 9.982 8.323l-8.56.942 4.047 31.508c-1.794.257-2.073.382-4.037.662-1.731-6.115-5.042-10.108-8.661-12.434-3.192-2.05-7.594-2.513-11.808-1.679l-.27.314c2.93-.305 6.388.12 9.942 2.37 3.487 2.204 6.297 7.9 7.332 11.329 1.324 4.382 2.24 9.07-1.325 14.039-2.537 3.532-9.942 5.484-15.924 1.261 1.598 2.57 3.758 4.672 6.665 5.068 4.317.586 8.415-.163 11.235-3.058 2.408-2.476 3.685-7.652 3.349-13.104l3.81-.553 1.375 9.785 63.078-7.595zM80.27 36.521c-.176.402-.453.665-.037 1.973l.025.075.066.169.173.392c.75 1.53 1.571 2.974 2.945 3.711q.534-.09 1.105-.12c1.29-.056 2.105.149 2.622.427.046-.258.057-.634.028-1.189-.1-1.939.384-5.236-3.342-6.972-1.407-.653-3.38-.451-4.038.364.12.015.227.04.311.068.994.349.32.691.142 1.102m10.444 18.09c-.488-.269-2.772-.163-4.378.029-3.058.36-6.36 1.421-7.084 1.986-1.315 1.017-.717 2.79.254 3.518 2.725 2.035 5.114 3.4 7.636 3.068 1.548-.203 2.913-2.654 3.88-4.879.663-1.532.663-3.185-.308-3.722m-27.076-15.69c.862-.818-4.297-1.895-8.3.835-2.952 2.013-3.046 6.33-.22 8.777.283.243.516.414.735.555a24 24 0 0 1 2.847-1.133c1.828-.594 3.349-.9 4.598-1.063.598-.668 1.293-1.845 1.12-3.975-.236-2.89-2.426-2.43-.78-3.995"/></svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path fill="#ffffff" d="M64 36.256c-11.825 0-22.382 7.529-26.232 18.709a4.3 4.3 0 0 0 .207 3.299l14.68 29.851a4.3 4.3 0 0 0 2.486 2.176A27.746 27.746 0 0 0 64 91.744c15.272 0 27.744-12.472 27.744-27.744S79.272 36.256 64 36.256zm0 8.6c10.624 0 19.145 8.52 19.145 19.144S74.624 83.145 64 83.145c-1.523 0-3.024-.244-4.5-.602L46.633 56.381C49.67 49.473 56.35 44.855 64 44.855zM64 0C28.705 0 0 28.705 0 64s28.705 64 64 64 64-28.705 64-64S99.295 0 64 0zm0 8.6c30.647 0 55.4 24.753 55.4 55.4S94.647 119.4 64 119.4 8.6 94.647 8.6 64 33.353 8.6 64 8.6z"/></svg>

After

Width:  |  Height:  |  Size: 636 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.9 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#f73b95" d="M64.002 0c-35.34 0-64 28.66-64 64.002S28.662 128 64.002 128s63.996-28.656 63.996-63.996v-.002C127.998 28.662 99.344 0 64.002 0m0 .992c34.806 0 63.006 28.207 63.006 63.01v.002c0 34.804-28.201 63.004-63.006 63.004-34.803 0-63.01-28.2-63.01-63.006S29.2.992 64.002.992M63.998 12.7c-28.328 0-51.297 22.974-51.297 51.303 0 28.324 22.97 51.297 51.297 51.297 28.325 0 51.3-22.973 51.3-51.297 0-28.329-22.975-51.3-51.3-51.3zm0 .994c27.789 0 50.309 22.516 50.309 50.309 0 27.788-22.521 50.305-50.309 50.305-27.793 0-50.305-22.517-50.305-50.305 0-27.793 22.513-50.309 50.305-50.309m.004 11.711c-21.314 0-38.6 17.286-38.6 38.6 0 21.31 17.286 38.592 38.6 38.592 21.31 0 38.596-17.282 38.596-38.592 0-21.314-17.286-38.6-38.596-38.6m0 .992c20.773 0 37.603 16.83 37.603 37.608 0 20.773-16.83 37.6-37.603 37.6-20.778 0-37.607-16.827-37.607-37.6 0-20.778 16.83-37.608 37.607-37.608m-.004 11.706c-14.298 0-25.896 11.601-25.896 25.9 0 14.294 11.601 25.896 25.9 25.896 14.294 0 25.896-11.602 25.896-25.896 0-14.299-11.605-25.9-25.9-25.9m0 .992c13.758 0 24.908 11.146 24.908 24.908 0 13.757-11.147 24.904-24.904 24.904-13.762 0-24.908-11.147-24.908-24.904 0-13.762 11.142-24.908 24.904-24.908"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#f73b95" d="M16.703 47.297c9.225 0 16.704 7.478 16.704 16.703s-7.479 16.703-16.704 16.703S0 73.225 0 64s7.478-16.703 16.703-16.703"/><path fill="#bd399c" d="M16.743 50.558c7.468 0 13.522 6.054 13.522 13.522S24.21 77.602 16.743 77.602 3.221 71.548 3.221 64.08s6.054-13.522 13.522-13.522"/><path fill="#93388e" d="M16.743 54.137c5.491 0 9.942 4.452 9.942 9.943s-4.451 9.942-9.942 9.942-9.942-4.451-9.942-9.942 4.45-9.943 9.942-9.943"/><path fill="#6030a2" d="M16.664 57.16a6.76 6.76 0 1 1 0 13.521 6.76 6.76 0 0 1 0-13.522z"/><path fill="#fdf3f8" d="M42.567 70.204V57.92h4.776c3.385 0 5.463 2.2 5.463 6.15 0 3.952-2.01 6.134-5.411 6.134zm2.044-10.549v8.814h2.629c2.749 0 3.522-2.045 3.522-4.398 0-2.354-.773-4.416-3.522-4.416zm13.528 9.33c1.495 0 2.096-.928 2.251-1.461h1.804c-.447 1.666-1.752 2.938-4.003 2.938-2.732 0-4.398-1.89-4.398-4.639 0-2.852 1.666-4.639 4.312-4.639 2.835 0 4.226 1.976 4.226 5.103h-6.734c0 1.477.945 2.697 2.542 2.697zm-.034-6.375c-1.46 0-2.508.98-2.508 2.337h4.93c0-1.357-.962-2.337-2.422-2.337m9.488.292h-1.65v4.76c0 .996.481 1.116 1.65 1.047v1.478a5.2 5.2 0 0 1-1.237.137c-1.444 0-2.234-.653-2.234-2.508v-4.914h-1.271v-1.477h1.271v-2.766h1.821v2.766h1.65zm6.67.825c0-.636-.378-1.117-1.58-1.117-1.444 0-1.977.447-2.062 1.58h-1.753c.086-1.683 1.168-3.006 3.814-3.006 1.942 0 3.385.74 3.385 3.076v4.174c0 .619.137.945.842.877v.859a2.7 2.7 0 0 1-1.048.189c-.963 0-1.41-.344-1.581-1.203h-.034c-.55.773-1.547 1.306-2.904 1.306-1.787 0-2.886-1.031-2.886-2.509 0-1.924 1.426-2.525 3.625-2.955 1.357-.257 2.182-.43 2.182-1.271m-2.526 5.309c1.495 0 2.526-.739 2.526-2.165v-1.323c-.292.206-.997.412-1.839.584-1.494.327-2.147.756-2.147 1.65 0 .807.481 1.254 1.46 1.254m14.343-6.15c2.629.67 4.622 1.236 4.622 3.985 0 1.959-1.478 3.59-4.57 3.59-3.007 0-5.292-1.563-5.412-4.346h2.045c.103 1.564 1.168 2.594 3.367 2.594 1.821 0 2.525-.807 2.525-1.752 0-1.46-1.048-1.735-3.47-2.337-1.924-.48-4.003-1.22-4.003-3.556 0-2.182 1.684-3.402 4.364-3.402 2.697 0 4.656 1.41 4.828 3.935H88.33c-.189-1.426-1.082-2.182-2.783-2.182-1.46 0-2.337.55-2.337 1.46 0 1.34 1.151 1.58 2.87 2.01zm10.58-1.702c2.234 0 3.9 1.753 3.9 4.639s-1.666 4.639-3.9 4.639c-1.374 0-2.233-.653-2.697-1.306h-.034v4.038h-1.821v-11.77h1.82v1.032h.035c.464-.619 1.323-1.272 2.698-1.272zm-.343 7.8c1.58 0 2.423-1.443 2.423-3.161s-.842-3.161-2.423-3.161c-1.46 0-2.371 1.202-2.371 3.161 0 1.941.91 3.161 2.371 3.161m10.864-5.257c0-.636-.378-1.117-1.58-1.117-1.444 0-1.976.447-2.062 1.58h-1.753c.086-1.683 1.169-3.006 3.814-3.006 1.942 0 3.385.74 3.385 3.076v4.174c0 .619.137.945.842.877v.859a2.7 2.7 0 0 1-1.048.189c-.962 0-1.409-.344-1.58-1.203h-.035c-.55.773-1.547 1.306-2.904 1.306-1.787 0-2.886-1.031-2.886-2.509 0-1.924 1.426-2.525 3.625-2.955 1.357-.257 2.182-.43 2.182-1.271m-2.526 5.309c1.495 0 2.526-.739 2.526-2.165v-1.323c-.292.206-.996.412-1.838.584-1.495.327-2.148.756-2.148 1.65 0 .807.481 1.254 1.46 1.254m12.275-4.398c-.069-.894-.636-1.976-2.182-1.976-1.77 0-2.525 1.512-2.525 3.161s.738 3.161 2.525 3.161c1.546 0 2.113-1.065 2.182-2.044h1.804c-.137 2.027-1.7 3.522-3.986 3.522-2.629 0-4.33-1.89-4.33-4.639s1.701-4.639 4.313-4.639c2.285 0 3.78 1.46 4.003 3.454zm6.878 4.346c1.495 0 2.096-.927 2.25-1.46h1.805c-.447 1.666-1.753 2.938-4.004 2.938-2.731 0-4.398-1.89-4.398-4.639 0-2.852 1.667-4.639 4.313-4.639 2.834 0 4.226 1.976 4.226 5.103h-6.735c0 1.477.945 2.697 2.543 2.697m-.034-6.374c-1.46 0-2.509.98-2.509 2.337h4.931c0-1.357-.962-2.337-2.422-2.337"/></svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#f73b95" d="M128 64.003C128 99.349 99.348 128 64.001 128c-35.345 0-64-28.65-64-63.998S28.657 0 64.002 0C99.35 0 128 28.657 128 64.002Zm0 0"/><path fill="#bd399c" d="M115.204 64.003c0 28.275-22.926 51.201-51.202 51.201-28.28 0-51.2-22.926-51.2-51.201 0-28.28 22.921-51.2 51.2-51.2 28.276 0 51.202 22.92 51.202 51.2m0 0"/><path fill="#93388e" d="M102.399 64.003c0 21.206-17.19 38.396-38.397 38.396-21.21 0-38.4-17.19-38.4-38.396 0-21.21 17.19-38.4 38.4-38.4 21.206 0 38.397 17.19 38.397 38.4m0 0"/><path fill="#6030a2" d="M89.603 64.003c0 14.135-11.465 25.6-25.6 25.6-14.14 0-25.601-11.465-25.601-25.6 0-14.14 11.46-25.6 25.6-25.6 14.136 0 25.601 11.46 25.601 25.6m0 0"/></svg>

After

Width:  |  Height:  |  Size: 750 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#57f287" d="m27.593 54.125-4.298 4.143v-4.126l-7.683 3.723a3.254 3.254 0 0 1-3.263-.004l-5.345-3.105a4.655 4.655 0 0 0-4.657-.012 4.66 4.66 0 0 0-2.34 4.028L0 61.462v12.412l4.303-4.142v4.142l7.661-3.672a3.255 3.255 0 0 1 3.333-.037l5.298 3.08a4.658 4.658 0 0 0 6.996-4.015l.007-2.69zM22.96 67.42a1 1 0 0 1-1.473.882l-3.779-2.02a8.657 8.657 0 0 0-8.39.125L6.138 68.23c-.667.383-1.499-.099-1.499-.868v-6.725c0-.77.836-1.253 1.503-.866l3.146 1.822a8.657 8.657 0 0 0 8.45.127l3.745-2.022a1.001 1.001 0 0 1 1.476.88z"/><path d="M79.184 54.205V68.29c0 1.333.373 2.372 1.12 3.12.764.747 1.796 1.12 3.096 1.12.568 0 1.21-.089 1.925-.267l-.341-2.973a2.16 2.16 0 0 1-.683.097c-.487 0-.893-.138-1.218-.414-.325-.293-.488-.731-.488-1.316V54.205Zm45.404 0v7.75c-.958-1.17-2.282-1.755-3.972-1.755-1.609 0-2.949.6-4.021 1.803-1.072 1.186-1.609 2.664-1.609 4.435 0 1.771.537 3.258 1.609 4.46s2.412 1.803 4.02 1.803c1.69 0 3.015-.585 3.973-1.754v1.535H128V54.205Zm-86.177 1.194-6.604.024v17.059h6.604a9.447 9.447 0 0 0 3.265-.56 8.539 8.539 0 0 0 2.73-1.633c.796-.715 1.43-1.617 1.9-2.705.472-1.105.707-2.324.707-3.656 0-1.77-.406-3.314-1.218-4.63-.813-1.316-1.86-2.29-3.144-2.925-1.283-.65-2.697-.974-4.24-.974zm-.146 3.509c1.51 0 2.745.422 3.704 1.267.975.845 1.462 2.096 1.462 3.753s-.487 2.916-1.462 3.777c-.959.845-2.194 1.268-3.704 1.268h-2.876v-10.04Zm34.2 1.097c-1.787 0-3.322.633-4.606 1.9-1.267 1.251-1.901 2.762-1.901 4.533 0 1.771.634 3.282 1.9 4.533 1.285 1.235 2.82 1.852 4.607 1.852a6.5 6.5 0 0 0 2.948-.682 6.494 6.494 0 0 0 2.267-1.925l-2.73-1.999c-.26.439-.609.788-1.047 1.048-.44.26-.918.382-1.438.366-.926-.017-1.69-.317-2.291-.902-.585-.601-.877-1.357-.877-2.266 0-.926.292-1.69.877-2.291.601-.618 1.365-.918 2.29-.902 1.057.033 1.877.496 2.462 1.39l2.778-2.023a6.434 6.434 0 0 0-2.29-1.926 6.414 6.414 0 0 0-2.95-.706zm20.188 0c-1.788 0-3.323.633-4.606 1.9-1.268 1.251-1.901 2.762-1.901 4.533 0 1.771.633 3.282 1.9 4.533 1.284 1.235 2.82 1.852 4.607 1.852 1.787 0 3.314-.617 4.581-1.852 1.283-1.25 1.925-2.762 1.925-4.533 0-1.77-.642-3.282-1.925-4.533-1.267-1.267-2.794-1.9-4.581-1.9zm-33.256.073c-1.38 0-2.55.381-3.509 1.145-.958.764-1.438 1.706-1.438 2.827 0 1.43.69 2.453 2.072 3.07.471.196 1.04.342 1.706.44.682.08 1.25.13 1.706.145.47.017.877.114 1.218.293.341.162.512.414.512.755 0 .455-.187.813-.56 1.073-.374.243-.886.365-1.536.365-1.283 0-2.16-.528-2.632-1.584l-2.949.926c.374 1.04 1.065 1.869 2.072 2.486 1.023.601 2.177.902 3.46.902 1.593 0 2.9-.374 3.924-1.121 1.023-.764 1.535-1.763 1.535-2.998 0-1.413-.723-2.42-2.169-3.022-.503-.21-1.226-.357-2.169-.438-.942-.098-1.69-.228-2.242-.39-.552-.179-.828-.504-.828-.975 0-.374.17-.69.511-.95.358-.26.805-.39 1.34-.39.537 0 .984.146 1.341.438.358.276.593.65.707 1.121l2.9-.804c-.276-1.007-.853-1.811-1.73-2.413-.861-.6-1.942-.901-3.242-.901zm-10.438.34v12.064h3.338V60.419Zm51.996 0v6.264c0 1.885.472 3.347 1.414 4.387.959 1.04 2.226 1.56 3.802 1.56 1.51 0 2.705-.537 3.582-1.61h.049v1.463h3.363V60.419h-3.412v5.824c0 1.105-.244 1.958-.731 2.56-.488.6-1.162.9-2.023.9-.796 0-1.438-.292-1.925-.876-.471-.585-.707-1.422-.707-2.51v-5.898zm20.514 2.755c.877 0 1.616.317 2.218.95.6.618.901 1.39.901 2.315 0 .926-.3 1.706-.901 2.34-.602.617-1.34.926-2.218.926-.877 0-1.609-.309-2.193-.926-.585-.618-.878-1.397-.878-2.34 0-.942.293-1.722.878-2.34.584-.617 1.316-.925 2.193-.925zm-28.816.097c.828-.016 1.527.284 2.095.902.585.601.878 1.365.878 2.29 0 .91-.293 1.674-.878 2.291a2.694 2.694 0 0 1-2.095.878c-.829.016-1.536-.277-2.12-.878-.57-.617-.854-1.38-.854-2.29 0-.926.285-1.69.853-2.291.585-.618 1.292-.918 2.12-.902z"/></svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#57f287" d="m127.978 18.202-19.935 19.21V18.28L72.409 35.544a15.09 15.09 0 0 1-15.133-.017L32.484 21.125a21.59 21.59 0 0 0-21.599-.056A21.616 21.616 0 0 0 .033 39.753L0 52.226v57.571l19.957-19.21v19.21l35.534-17.03a15.097 15.097 0 0 1 15.454-.173l24.577 14.28a21.604 21.604 0 0 0 21.598.062 21.597 21.597 0 0 0 10.847-18.679L128 75.785ZM106.49 79.86c0 3.51-3.737 5.75-6.832 4.093L82.13 74.58a40.15 40.15 0 0 0-38.916.582l-14.74 8.458c-3.094 1.775-6.953-.46-6.953-4.026v-31.19c0-3.577 3.876-5.812 6.97-4.021l14.59 8.452a40.152 40.152 0 0 0 39.193.588l17.368-9.378c3.094-1.67 6.848.57 6.848 4.087z"/></svg>

After

Width:  |  Height:  |  Size: 679 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#57f287" d="m27.594 54.125-4.3 4.143v-4.125l-7.683 3.722a3.254 3.254 0 0 1-3.261-.004l-5.346-3.105a4.655 4.655 0 0 0-4.656-.012 4.66 4.66 0 0 0-2.34 4.027L0 61.463v12.41l4.303-4.14v4.14l7.662-3.672a3.255 3.255 0 0 1 3.332-.037l5.299 3.08a4.658 4.658 0 0 0 6.996-4.014l.006-2.69-.004-12.415zm51.59.08V68.29c0 1.333.374 2.373 1.12 3.121.765.747 1.796 1.12 3.096 1.12.568 0 1.21-.088 1.924-.266l-.34-2.975a2.16 2.16 0 0 1-.683.098c-.487 0-.894-.138-1.219-.414-.325-.293-.486-.732-.486-1.317v-13.45h-3.412zm45.404 0v7.75c-.958-1.17-2.283-1.756-3.973-1.756-1.609 0-2.947.602-4.02 1.805-1.071 1.186-1.609 2.663-1.609 4.434 0 1.77.538 3.258 1.61 4.46s2.411 1.803 4.02 1.803c1.69 0 3.014-.585 3.972-1.754v1.535H128V54.205h-3.412zM38.41 55.398l-6.603.026v17.058h6.603a9.447 9.447 0 0 0 3.266-.56 8.539 8.539 0 0 0 2.73-1.633c.796-.715 1.43-1.617 1.9-2.705.473-1.105.708-2.324.708-3.656 0-1.77-.407-3.313-1.22-4.63-.812-1.315-1.86-2.29-3.144-2.925-1.283-.65-2.697-.975-4.24-.975zm-.144 3.51c1.51 0 2.744.423 3.703 1.268.975.845 1.463 2.095 1.463 3.752 0 1.657-.488 2.916-1.463 3.777-.96.845-2.193 1.268-3.703 1.268h-2.877v-10.04l2.877-.025zm-16.286.67a1.001 1.001 0 0 1 .979 1l.002 6.842a1 1 0 0 1-1.475.883l-3.779-2.022a8.657 8.657 0 0 0-8.389.125l-3.18 1.824c-.666.383-1.5-.1-1.5-.869v-6.724c0-.77.838-1.253 1.505-.866l3.144 1.823a8.657 8.657 0 0 0 8.451.127l3.744-2.024a1.001 1.001 0 0 1 .498-.119zm50.485.428c-1.787 0-3.322.631-4.606 1.898-1.267 1.251-1.902 2.763-1.902 4.533 0 1.771.634 3.283 1.9 4.534 1.285 1.235 2.82 1.851 4.608 1.851a6.5 6.5 0 0 0 2.947-.681 6.494 6.494 0 0 0 2.268-1.924l-2.73-2c-.26.439-.61.789-1.048 1.049-.44.26-.917.38-1.437.365-.926-.017-1.69-.317-2.291-.902-.585-.601-.877-1.357-.877-2.266 0-.926.292-1.69.877-2.291.6-.618 1.366-.918 2.29-.902 1.058.033 1.877.496 2.462 1.39l2.777-2.023a6.434 6.434 0 0 0-2.289-1.926 6.414 6.414 0 0 0-2.95-.705zm20.187 0c-1.788 0-3.322.631-4.605 1.898-1.268 1.251-1.9 2.763-1.9 4.533 0 1.771.633 3.283 1.9 4.534 1.284 1.235 2.818 1.851 4.605 1.851 1.787 0 3.315-.616 4.582-1.851 1.283-1.25 1.924-2.763 1.924-4.534 0-1.77-.64-3.282-1.924-4.533-1.267-1.267-2.795-1.898-4.582-1.898zm-33.256.072c-1.38 0-2.548.38-3.507 1.145-.958.764-1.44 1.707-1.44 2.828 0 1.43.69 2.451 2.072 3.068.471.196 1.042.344 1.708.442.682.08 1.249.13 1.705.144.47.017.877.114 1.218.293.341.162.512.415.512.756 0 .455-.187.812-.56 1.072-.374.243-.886.365-1.536.365-1.283 0-2.16-.528-2.632-1.584l-2.95.926c.374 1.04 1.066 1.87 2.073 2.487 1.023.6 2.178.902 3.46.902 1.594 0 2.9-.374 3.924-1.121 1.023-.764 1.536-1.763 1.536-2.998 0-1.413-.724-2.422-2.17-3.024-.503-.21-1.225-.356-2.168-.437-.942-.098-1.69-.229-2.243-.39-.552-.18-.828-.504-.828-.975 0-.374.17-.69.51-.95.358-.26.807-.39 1.342-.39.537 0 .983.145 1.34.437.358.276.593.65.707 1.121l2.9-.802c-.276-1.007-.853-1.812-1.73-2.414-.861-.6-1.943-.9-3.243-.9zm-10.437.34v12.064h3.338V60.42l-3.338-.002zm51.996 0v6.264c0 1.885.472 3.346 1.414 4.386.96 1.04 2.227 1.56 3.803 1.56 1.51 0 2.705-.535 3.582-1.608h.049v1.462h3.361V60.42h-3.41v5.822c0 1.105-.246 1.959-.733 2.56-.488.6-1.162.901-2.023.901-.796 0-1.437-.293-1.924-.877-.47-.585-.707-1.422-.707-2.51V60.42l-3.412-.002zm20.514 2.756c.877 0 1.617.316 2.219.949.6.618.9 1.39.9 2.314 0 .926-.3 1.706-.9 2.34-.603.617-1.341.926-2.22.926-.876 0-1.609-.309-2.193-.926-.585-.618-.877-1.397-.877-2.34 0-.941.292-1.721.877-2.34.584-.616 1.317-.923 2.194-.923zm-28.817.096c.828-.016 1.528.284 2.096.902.585.6.879 1.366.879 2.29 0 .91-.294 1.675-.879 2.292a2.694 2.694 0 0 1-2.096.877c-.829.016-1.535-.276-2.119-.877-.57-.617-.853-1.381-.853-2.291 0-.926.283-1.69.851-2.291.585-.618 1.293-.918 2.121-.902z"/></svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.1 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M82.1 74.224c-4.814 0-9.19 2.841-9.19 7.706 0 4.866 4.376 7.656 9.19 7.656 1.74 0 3.326-.332 4.732-1 1.41-.689 2.537-1.74 3.431-3.022.258-.355.157-.715-.074-.918-.23-.207-1.64-1.101-1.87-1.254-.514-.308-.97-.207-1.307.254-.332.46-1.997 2.408-4.912 2.408-2.614 0-5.224-1.435-5.224-4.147 0-2.739 2.61-4.15 5.224-4.15 1.767 0 3.556.563 4.632 1.946.257.332.82.308 1.202.078.383-.23 1.513-.973 1.744-1.152.41-.36.433-.715.18-1.025-1.795-2.328-4.765-3.38-7.758-3.38zm-55.375.028c-4.838 0-9.294 2.74-9.294 7.655 0 2.2.9 4.068 2.666 5.53 1.766 1.457 3.994 2.149 6.628 2.172 4.842 0 9.32-2.79 9.32-7.702 0-4.943-4.478-7.655-9.32-7.655zm75.187 0c-4.837 0-9.293 2.74-9.293 7.655 0 2.2.895 4.068 2.662 5.53 1.767 1.457 3.993 2.149 6.631 2.172 4.838 0 9.32-2.79 9.32-7.702 0-4.943-4.482-7.655-9.32-7.655zm-64.586.304c-.82 0-1.129.669-.899 1.079 1.13 2.099 4.123 7.473 7.222 13.08.101.18.46.46.816.46h1.36a.956.956 0 0 0 .817-.46c2.841-5.48 6.683-12.415 7.043-13.03.202-.36-.028-1.1-.744-1.1h-2.56c-.308 0-.64.05-.82.46l-4.427 8.19-4.506-8.217c-.18-.333-.386-.46-.82-.46zm19.507.028c-.46 0-.87.383-.87.82v12.9c0 .438.41.82.87.82h13.49c.46 0 .871-.382.871-.82v-1.61c0-.437-.41-.82-.871-.82H59.854v-2.69h6.166c.461 0 .872-.382.872-.816v-1.613c0-.439-.41-.82-.87-.82h-6.168v-2.05h9.856c.46 0 .867-.382.867-.82v-1.66c0-.438-.406-.82-.867-.82zm-49.42.023H.87c-.46 0-.871.388-.871.82v12.955c0 .434.41.817.871.817h6.093c4.735 0 8.37-2.583 8.37-7.269 0-2.149-.766-3.942-2.33-5.326-1.465-1.293-3.355-1.96-5.591-1.997zm105.969 0c-.462 0-.872.388-.872.82v1.791c0 .438.41.82.87.82h4.94v10.316c0 .439.41.82.872.82h2.15c.46 0 .87-.381.87-.82V78.04h4.917c.46 0 .871-.383.871-.82v-1.791c0-.433-.41-.82-.871-.82zm-86.657 3.127c2.665 0 5.353 1.356 5.353 4.146 0 1.204-.46 2.176-1.434 2.942-.973.793-2.255 1.204-3.92 1.204-2.66 0-5.321-1.329-5.321-4.146 0-2.818 2.66-4.146 5.322-4.146zm75.187 0c2.661 0 5.35 1.356 5.35 4.146 0 1.204-.46 2.176-1.43 2.942-.974.793-2.255 1.204-3.92 1.204-2.66 0-5.322-1.329-5.322-4.146 0-2.818 2.661-4.146 5.322-4.146zm-98.02.383h3.099c2.48 0 4.376 1.355 4.376 3.786 0 2.536-1.793 3.763-4.376 3.763H3.892Zm0 0"/><path fill="#54bbab" d="M47.361 38.391c-.82 0-1.64.262-2.328.79L11.57 64.753a1.277 1.277 0 0 0 0 2.024l1.384 1.047a1.8 1.8 0 0 0 2.177 0l16.588-12.645c.922-.692 2.2-.692 3.099 0l10.979 8.396c.922.692 2.2.692 3.099 0L63.409 52.49c.95-.692.95-2.098 0-2.814L49.69 39.18a3.834 3.834 0 0 0-2.329-.789zm38.397 0c-.817 0-1.637.262-2.33.79L49.972 64.78a1.268 1.268 0 0 0 0 2.02l1.384 1.05a1.806 1.806 0 0 0 2.173 0l19.15-14.59a2.567 2.567 0 0 1 3.096 0l18.69 14.26c.895.692 2.176.692 3.095 0l11.93-9.14c.95-.715.95-2.126 0-2.842L88.091 39.181a3.837 3.837 0 0 0-2.333-.79zm0 0"/></svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#54bbab" d="M47.361 38.39c-.82 0-1.64.261-2.328.79L11.57 64.75a1.277 1.277 0 0 0 0 2.025l1.384 1.047a1.8 1.8 0 0 0 2.177 0l16.588-12.645c.922-.692 2.2-.692 3.099 0l10.979 8.396c.922.692 2.2.692 3.099 0l14.513-11.086c.95-.692.95-2.098 0-2.814L49.69 39.178a3.834 3.834 0 0 0-2.329-.789zm38.397 0c-.817 0-1.637.261-2.33.79L49.972 64.776a1.273 1.273 0 0 0 0 2.02l1.384 1.05a1.806 1.806 0 0 0 2.173 0l19.15-14.59a2.567 2.567 0 0 1 3.096 0l18.69 14.26c.895.692 2.176.692 3.095 0l11.93-9.14c.95-.715.95-2.126 0-2.842L88.091 39.18a3.837 3.837 0 0 0-2.333-.79zM82.1 74.221c-4.814 0-9.19 2.841-9.19 7.706 0 4.866 4.376 7.656 9.19 7.656 1.74 0 3.326-.332 4.737-1 1.406-.689 2.53-1.74 3.426-3.018.258-.36.157-.719-.074-.922-.23-.207-1.64-1.101-1.868-1.254-.512-.308-.973-.207-1.31.254-.331.46-1.996 2.408-4.91 2.408-2.615 0-5.225-1.435-5.225-4.147 0-2.739 2.61-4.15 5.224-4.15 1.767 0 3.556.563 4.632 1.946.257.332.82.308 1.202.078.383-.23 1.513-.973 1.744-1.152.41-.36.433-.715.18-1.025-1.795-2.328-4.765-3.38-7.758-3.38zm-55.375.028c-4.838 0-9.294 2.74-9.294 7.655 0 2.2.9 4.068 2.666 5.53 1.766 1.457 3.994 2.149 6.628 2.176 4.842 0 9.32-2.79 9.32-7.706 0-4.943-4.478-7.655-9.32-7.655zm75.187 0c-4.837 0-9.293 2.74-9.293 7.655 0 2.2.895 4.068 2.662 5.53 1.767 1.457 3.993 2.149 6.631 2.176 4.838 0 9.32-2.79 9.32-7.706 0-4.943-4.482-7.655-9.32-7.655zm-64.586.304c-.82 0-1.129.669-.899 1.079 1.13 2.099 4.123 7.476 7.222 13.08.101.18.46.46.816.46h1.36a.956.956 0 0 0 .817-.46c2.841-5.48 6.683-12.415 7.043-13.03.202-.36-.028-1.1-.744-1.1h-2.56c-.308 0-.64.05-.82.46l-4.427 8.19-4.506-8.217c-.18-.333-.386-.46-.82-.46zm19.507.028c-.46 0-.87.383-.87.82v12.9c0 .438.41.82.87.82h13.49c.46 0 .871-.382.871-.82v-1.61c0-.437-.41-.82-.871-.82H59.854v-2.69h6.166c.461 0 .872-.382.872-.816v-1.613c0-.435-.41-.82-.87-.82h-6.168v-2.05h9.856c.46 0 .87-.382.87-.82v-1.66c0-.438-.41-.82-.87-.82zm-49.42.023H.87c-.46 0-.871.388-.871.82V88.38c0 .434.41.817.871.817h6.093c4.735 0 8.37-2.583 8.37-7.269 0-2.149-.766-3.942-2.33-5.326-1.465-1.293-3.355-1.96-5.591-1.997zm105.969 0c-.462 0-.872.388-.872.82v1.794c0 .435.41.818.87.818h4.94v10.315c0 .439.41.82.872.82h2.15c.46 0 .87-.381.87-.82V78.037h4.917c.46 0 .871-.383.871-.818v-1.793c0-.433-.41-.82-.871-.82zm-86.657 3.127c2.665 0 5.353 1.356 5.353 4.146 0 1.204-.46 2.176-1.434 2.942-.973.793-2.255 1.204-3.92 1.204-2.66 0-5.321-1.329-5.321-4.146 0-2.818 2.66-4.146 5.322-4.146zm75.187 0c2.661 0 5.35 1.356 5.35 4.146 0 1.204-.457 2.176-1.43 2.942-.974.793-2.255 1.204-3.92 1.204-2.66 0-5.322-1.329-5.322-4.146 0-2.818 2.661-4.146 5.322-4.146zm-98.02.383h3.099c2.48 0 4.376 1.355 4.376 3.786 0 2.536-1.793 3.763-4.376 3.763H3.892Zm0 0"/></svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#000000" d="M64 128C28.6 128 0 99.4 0 64S28.6 0 64 0s64 28.6 64 64-28.6 64-64 64Z"/><path fill="#fff100" d="M98.2 54.5H85.6v18.9h12.6c5.2 0 9.5-4.3 9.5-9.5s-4.3-9.4-9.5-9.4ZM24.2 64c0 14.6 11.9 26.5 26.5 26.5S77.2 78.6 77.2 64 65.3 37.5 50.7 37.5 24.2 49.4 24.2 64Z" class="st0"/></svg>

After

Width:  |  Height:  |  Size: 360 B

View File

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128">
<path fill="#000000" d="M64 0C28.6 0 0 28.6 0 64s28.6 64 64 64 64-28.6 64-64S99.4 0 64 0ZM50.7 90.5c-14.6 0-26.5-11.9-26.5-26.5s11.9-26.5 26.5-26.5S77.2 49.4 77.2 64 65.3 90.5 50.7 90.5Zm47.5-17.1H85.6V54.5h12.6c5.2 0 9.5 4.2 9.5 9.4s-4.3 9.5-9.5 9.5Z"/>
</svg>

After

Width:  |  Height:  |  Size: 326 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path fill="#f60" d="M94.92 53.4A10.603 10.6 0 0 0 84.316 64 10.603 10.6 0 0 0 94.92 74.6 10.603 10.6 0 0 0 105.523 64 10.603 10.6 0 0 0 94.92 53.4zm0 3.473A7.129 7.126 0 0 1 102.049 64a7.129 7.126 0 0 1-7.13 7.127A7.129 7.126 0 0 1 87.792 64a7.129 7.126 0 0 1 7.129-7.127zM61.027 74.6h3.452L52.464 53.45 40.449 74.6h3.452l8.564-15.063zm7.717-21.2v21.2h13.543v-3.37H72.113V53.4zm-45.082 0h-3.451l9.719 17.11v4.09h3.369v-4.094L43.018 53.4h-3.452l-7.95 13.987zM128 74.6v-5.778h-3.26v2.565h-5.133c-4.2 0-7.582-3.248-7.582-7.283v-.208c0-4.035 3.383-7.285 7.582-7.285H128v-3.21h-8.004c-6.205 0-11.2 4.413-11.2 9.898v1.4c0 5.485 4.995 9.9 11.2 9.9zM0 53.4v5.778h3.26v-2.565h5.133c4.2 0 7.582 3.248 7.582 7.283v.208c0 4.035-3.383 7.285-7.582 7.285H0v3.21h8.004c6.205 0 11.2-4.413 11.2-9.898v-1.4c0-5.485-4.995-9.9-11.2-9.9z"/></svg>

After

Width:  |  Height:  |  Size: 909 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path fill="#f60" d="M6.026 0v34.883h19.682V19.4H56.7c25.359 0 45.78 19.613 45.78 43.976v1.25c0 24.363-20.421 43.987-45.78 43.987H6.026V128l48.327-.001c37.465-.001 67.62-26.65 67.62-59.765v-8.456C121.974 26.663 91.819 0 54.354 0z"/></svg>

After

Width:  |  Height:  |  Size: 322 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.3 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M49.91.002c-1.71.036-5.142.512-8.378 3.608-4.528 4.345-27.566 26.204-36.817 35.001l-.001.002c-2.158 2.063-3.157 4.264-3.607 5.992-.225.864-.314 1.61-.347 2.166-.033.557-.01.988-.01.997v1.994h.006c-.002.014-.006-.01-.006.09l.01.003c.022 6.423.292 16.469.988 27.959l.002.002v.002c1.271 19.338 3.721 36.49 3.721 36.49l.136.951 33.062-31.383-.02-.236s-1.176-15.282.725-38.099q.206-2.428.45-4.837c.062-.622.133-1.238.201-1.859a270 270 0 0 1 6.669-.285h.002c22.908-.724 38.01 1.177 38.01 1.177l.232.029 33.065-31.391-.953-.18S100.172 5.02 80.928 2.75h-.002C68.308 1.207 57.236.389 50.971.026h-.029c-.013 0-.46-.035-1.031-.024zm.02.993c.505-.01.771.021.983.023 6.248.362 17.304 1.177 29.895 2.717h.002c18.346 2.163 33.676 5.006 35.089 5.27L84.587 38.732c-.346-.043-15.21-1.883-37.922-1.165-2.388.067-4.762.176-7.115.302l-.42.024-.047.418c-.082.76-.17 1.517-.248 2.29-.162 1.61-.313 3.233-.45 4.857-1.884 22.62-.758 37.658-.732 38.012L6.33 113.203c-.2-1.412-2.379-17.007-3.591-35.451l.002.004c-.696-11.483-.97-21.537-.99-27.934h-.003c.001-.01.002-.008.002-.023v-.064h-.007v-1.967c0-.173-.022-.435.007-.938.03-.504.112-1.184.318-1.975.412-1.582 1.317-3.598 3.33-5.523l.002-.002c9.25-8.797 32.276-30.645 36.817-35.004 3.021-2.89 6.152-3.299 7.713-3.331m72.285 11.74-.702.668-32.362 30.812.017.233s1.087 15.194-.724 38.013a250 250 0 0 1-.62 6.651c-2.192.13-4.396.25-6.611.328-22.907.724-38.099-1.177-38.099-1.177l-.234-.029-33.058 31.477.942.184s17.063 3.358 36.312 5.537a504 504 0 0 0 27.893 2.407l.004.044c.684 0 1.312.091 1.994.091.014 0 .461.035 1.035.024a12 12 0 0 0 2.23-.26c1.784-.378 4.073-1.28 6.32-3.34l.004-.003.004-.004c9.157-8.794 32.188-30.738 36.726-35.095 2.158-2.063 3.157-4.264 3.607-6.004.225-.87.314-1.626.347-2.195.033-.57.01-1 .01-1.047v-.008a619 619 0 0 0-1.182-29.949v-.002c-1.362-19.335-3.72-36.397-3.72-36.397zm-.731 2.066c.194 1.418 2.296 16.921 3.595 35.36a617 617 0 0 1 1.178 29.897c0 .18.022.47-.008.983-.03.516-.112 1.207-.318 2.003-.412 1.594-1.317 3.609-3.331 5.535-4.529 4.348-27.553 26.285-36.719 35.087-2.106 1.93-4.214 2.753-5.854 3.101a11 11 0 0 1-2.047.238c-.523.011-.8-.023-1.013-.023-.532 0-1.133-.07-1.807-.083l-.002-.043a503 503 0 0 1-27.97-2.409c-18.36-2.078-33.88-5.082-35.279-5.354l31.326-29.826c.35.043 15.3 1.883 38.01 1.165h.003c2.37-.083 4.724-.207 7.06-.349l.42-.027.045-.417c.247-2.346.475-4.714.659-7.1 1.795-22.621.757-37.571.732-37.919z"/></svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path d="M35.016 52.771v4.204H31.31c-2.246 0-3.61.674-4.46 1.492-1.299 1.267-1.298 3.079-1.298 3.271v4.524c0 .192 0 2.004 1.299 3.271.834.818 2.197 1.492 4.459 1.492h1.652c1.075 0 2.518-.24 3.271-1.427.401-.642.547-1.492.563-2.278V52.771zm42.183 0v14.534c.016.786.146 1.635.563 2.277.754 1.203 2.197 1.428 3.271 1.428h3.192v-1.588h-2.967c-.834 0-1.411-.16-1.764-.514-.353-.337-.53-.899-.53-1.701v-8.629h3.706V56.99h-3.705v-4.219zm-39.008 4.204 5.39 14.035-1.62 4.219h1.844l7.01-18.254H48.97l-4.477 11.644-4.474-11.644H38.19zm18.846 0c-2.117.032-3.416.69-4.234 1.492-1.283 1.267-1.283 3.079-1.283 3.271v9.287h1.765V61.69c0-.657.208-1.506.865-2.148.546-.53 1.59-.947 2.985-.963 1.395.016 2.437.434 2.982.963.642.642.867 1.49.867 2.148v9.336h1.764v-9.287c0-.192 0-2.004-1.283-3.271-.818-.802-2.117-1.46-4.235-1.492zm8.647 0v1.587h4.105c1.46 0 2.375.418 2.92.963.658.642.883 1.491.883 2.149v1.363H67.96c-1.075 0-2.518.24-3.272 1.428-.4.641-.546 1.491-.562 2.277v.563c.016.786.145 1.635.562 2.277.754 1.203 2.197 1.428 3.272 1.428h3.576c1.075 0 2.52-.241 3.274-1.428.4-.642.544-1.491.56-2.277v-5.567c0-.192 0-2.004-1.299-3.271-.834-.818-2.197-1.492-4.459-1.492h-3.93zm29.191 0v1.587h4.105c1.46 0 2.375.418 2.92.963.658.642.883 1.491.883 2.149v1.363h-5.63c-1.075 0-2.518.24-3.272 1.428-.401.641-.545 1.491-.56 2.277v.563c.015.786.143 1.635.56 2.277.754 1.203 2.197 1.428 3.271 1.428h3.578c1.075 0 2.518-.241 3.272-1.428.4-.642.544-1.491.56-2.277v-5.567c0-.192 0-2.004-1.298-3.271-.834-.818-2.198-1.492-4.46-1.492zm27.412 0c-2.117.032-3.416.69-4.234 1.492-1.283 1.267-1.283 3.079-1.283 3.271v4.524c0 .192 0 2.004 1.283 3.271.818.802 2.117 1.46 4.234 1.492h4.17v-1.603h-4.074c-1.396-.016-2.437-.434-2.983-.963-.641-.642-.867-1.49-.867-2.148v-1.653h9.463v-2.92c.016-.192.016-2.004-1.283-3.271-.818-.802-2.117-1.46-4.234-1.492zm-32.816.015c-1.075 0-2.52.225-3.274 1.428-.417.642-.544 1.491-.56 2.277v10.33H87.4v-10.2c0-.803.177-1.396.53-1.733.353-.353.931-.514 1.765-.514h2.967V56.99zm22.246 0c-2.246 0-3.61.674-4.46 1.492-1.298 1.268-1.298 3.08-1.298 3.272v4.523c0 .193 0 2.005 1.299 3.272.834.818 2.197 1.492 4.459 1.492h4.074v-1.588h-4.25c-1.46 0-2.375-.417-2.92-.963-.658-.641-.883-1.49-.883-2.148v-4.653c0-.657.225-1.522.883-2.148.561-.545 1.46-.963 2.92-.963h4.25V56.99zm-80.6 1.588H35v8.647c.016.786-.16 1.346-.514 1.699-.353.337-.93.513-1.763.513h-1.606c-1.46 0-2.372-.417-2.918-.962-.657-.642-.883-1.491-.883-2.149V61.69c0-.657.226-1.506.883-2.148.562-.545 1.459-.963 2.918-.963zm91.281 0c1.396.016 2.44.434 2.985.963.641.642.865 1.49.865 2.148v1.381h-7.7v-1.38c0-.658.21-1.507.868-2.149.545-.53 1.587-.947 2.982-.963m-54.181 6.047h5.39v2.6c0 .786-.176 1.346-.529 1.699-.353.337-.931.513-1.766.513h-3.11c-.835 0-1.412-.16-1.764-.513s-.514-.913-.514-1.7v-.384c0-.802.176-1.364.53-1.701.352-.337.929-.514 1.763-.514m29.193 0h5.389v2.6c0 .786-.177 1.346-.53 1.699-.352.337-.93.513-1.763.513h-3.113c-.834 0-1.411-.16-1.764-.513s-.514-.913-.514-1.7v-.384c0-.802.177-1.364.53-1.701.352-.337.931-.514 1.765-.514"/><path fill="#1496ff" d="M7.492 54.649a62 62 0 0 0-.834 6.079C6.32 64.77 6.53 67.48 6.53 67.48L.835 72.886s-.433-3.032-.657-6.448a91 91 0 0 1-.177-5.1c0-.065.032-.129.032-.193 0-.08.097-.834.835-1.54.802-.77 6.72-5.405 6.624-4.956"/><path fill="#1284ea" d="M7.492 54.649a62 62 0 0 0-.834 6.079s-6.304-.754-6.657.77c0-.08.113-1.01.85-1.716.802-.77 6.737-5.582 6.64-5.133Z"/><path fill="#b4dc00" d="M.001 61.129v.353c.065-.273.177-.465.401-.77.466-.594 1.22-.754 1.524-.786a60 60 0 0 1 6.111-.513c4.058-.129 6.737.208 6.737.208l5.694-5.405s-2.983-.562-6.384-.962a87 87 0 0 0-5.293-.482c-.08 0-.866-.096-1.604.61-.802.77-4.876 4.635-6.512 6.191-.738.706-.674 1.492-.674 1.556"/><path fill="#6f2da8" d="M20.26 68.042c-1.54.208-3.818.465-6.112.545-4.058.129-6.752-.208-6.752-.208L1.702 73.8s3.015.594 6.415.979c2.086.24 3.93.368 5.053.433.08 0 .208-.065.289-.065s.866-.144 1.604-.85c.802-.77 5.645-6.303 5.196-6.255z"/><path fill="#591f91" d="M20.26 68.042c-1.54.208-3.818.465-6.112.545 0 0 .433 6.336-1.09 6.609.08 0 1.122-.049 1.86-.754.802-.77 5.79-6.448 5.341-6.4z"/><path fill="#73be28" d="M13.394 75.228c-.112 0-.224-.016-.352-.016.288-.048.48-.145.785-.37.61-.432.802-1.186.867-1.49.272-1.525.641-3.786.818-6.08.32-4.042.128-6.737.128-6.737l5.694-5.42s.417 3.015.658 6.43c.144 2.23.192 4.203.208 5.294 0 .08.064.866-.674 1.572-.802.77-4.876 4.651-6.496 6.207-.77.706-1.555.61-1.636.61"/></svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#1496ff" d="M43.437 10.718c-1.645 8.682-3.656 21.569-4.753 34.638-1.919 23.03-.73 38.476-.73 38.476l-32.445 30.8S3.04 97.358 1.762 77.892C1.03 65.828.756 55.226.756 48.829c0-.366.183-.731.183-1.097 0-.457.548-4.752 4.753-8.774 4.57-4.386 38.293-30.799 37.745-28.24"/><path fill="#1284ea" d="M43.437 10.718c-1.645 8.682-3.656 21.569-4.753 34.638 0 0-35.917-4.296-37.928 4.387 0-.457.64-5.758 4.844-9.78 4.57-4.386 38.385-31.804 37.837-29.245"/><path fill="#b4dc00" d="M.756 47.64v2.011c.366-1.553 1.006-2.65 2.285-4.386 2.65-3.382 6.946-4.296 8.682-4.479 8.774-1.188 21.752-2.559 34.821-2.924 23.122-.731 38.385 1.188 38.385 1.188l32.444-30.8S100.374 5.053 81 2.768C68.295 1.213 57.146.391 50.839.025c-.456 0-4.935-.548-9.139 3.473-4.57 4.387-27.783 26.413-37.105 35.278C.39 42.796.756 47.276.756 47.64"/><path fill="#6f2da8" d="M116.185 87.03c-8.774 1.189-21.751 2.651-34.82 3.108-23.123.731-38.477-1.188-38.477-1.188l-32.444 30.89s17.182 3.382 36.557 5.576a511 511 0 0 0 28.789 2.467c.457 0 1.188-.365 1.645-.365s4.935-.823 9.139-4.844c4.57-4.387 32.17-35.917 29.611-35.643z"/><path fill="#591f91" d="M116.185 87.03c-8.774 1.189-21.751 2.651-34.82 3.108 0 0 2.467 36.1-6.215 37.654.457 0 6.397-.274 10.601-4.295 4.57-4.387 32.993-36.74 30.434-36.466z"/><path fill="#73be28" d="M77.07 127.975c-.64 0-1.28-.092-2.011-.092 1.645-.274 2.741-.822 4.478-2.102 3.473-2.467 4.57-6.763 4.935-8.5 1.554-8.681 3.656-21.568 4.661-34.637 1.828-23.03.731-38.385.731-38.385l32.444-30.89s2.377 17.181 3.748 36.648a623 623 0 0 1 1.188 30.16c0 .456.365 4.935-3.839 8.956-4.57 4.387-27.783 26.504-37.014 35.369-4.387 4.021-8.865 3.473-9.322 3.473z"/></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M8.611 52.768c-.29.006-.87.084-1.424.613-.801.77-4.875 4.635-6.511 6.191-.738.706-.674 1.493-.674 1.557v.353l.002-.003v.003l-.002.016.002-.006c.004 1.134.05 2.912.174 4.946.224 3.416.658 6.449.658 6.449l5.693-5.407s-.208-2.71.13-6.751q.053-.636.12-1.262a49 49 0 0 1 1.258-.055c4.058-.128 6.736.21 6.736.21l5.696-5.405s-2.985-.562-6.385-.963a87 87 0 0 0-5.293-.483c-.02 0-.083-.005-.18-.003m26.405.003v4.204H31.31c-2.246 0-3.61.674-4.46 1.492-1.299 1.267-1.298 3.079-1.298 3.271v4.524c0 .192 0 2.004 1.299 3.271.834.818 2.197 1.492 4.459 1.492h1.652c1.075 0 2.518-.24 3.271-1.427.401-.642.547-1.492.563-2.278V52.771zm42.183 0v14.534c.016.786.146 1.635.563 2.277.754 1.203 2.197 1.428 3.271 1.428h3.192v-1.588h-2.967c-.834 0-1.411-.16-1.764-.514-.353-.337-.53-.899-.53-1.701v-8.629h3.706V56.99h-3.705v-4.219zm-55.865 2.342-5.693 5.422s.192 2.695-.13 6.736q-.05.633-.116 1.254a49 49 0 0 1-1.247.063c-4.058.128-6.752-.21-6.752-.21l-5.695 5.423s3.016.593 6.416.978c2.03.235 3.822.36 4.951.426l-.027.006c.128 0 .241.018.354.018.08 0 .866.096 1.636-.61 1.62-1.556 5.694-5.439 6.496-6.209.738-.706.672-1.49.672-1.57-.016-1.09-.062-3.064-.207-5.293-.24-3.417-.658-6.434-.658-6.434m16.857 1.862 5.39 14.035-1.62 4.219h1.844l7.01-18.254H48.97l-4.477 11.644-4.474-11.644H38.19zm18.846 0c-2.117.032-3.416.69-4.234 1.492-1.283 1.267-1.283 3.079-1.283 3.271v9.287h1.765V61.69c0-.657.208-1.506.865-2.148.546-.53 1.59-.947 2.985-.963 1.395.016 2.437.434 2.982.963.642.642.867 1.49.867 2.148v9.336h1.764v-9.287c0-.192 0-2.004-1.283-3.271-.818-.802-2.117-1.46-4.235-1.492zm8.647 0v1.587h4.105c1.46 0 2.375.418 2.92.963.658.642.883 1.491.883 2.149v1.363H67.96c-1.075 0-2.518.24-3.272 1.428-.4.641-.546 1.491-.562 2.277v.563c.016.786.145 1.635.562 2.277.754 1.203 2.197 1.428 3.272 1.428h3.576c1.075 0 2.52-.241 3.274-1.428.4-.642.544-1.491.56-2.277v-5.567c0-.192 0-2.004-1.299-3.271-.834-.818-2.197-1.492-4.459-1.492h-3.93zm29.191 0v1.587h4.105c1.46 0 2.375.418 2.92.963.658.642.883 1.491.883 2.149v1.363h-5.63c-1.075 0-2.518.24-3.272 1.428-.401.641-.545 1.491-.56 2.277v.563c.015.786.143 1.635.56 2.277.754 1.203 2.197 1.428 3.271 1.428h3.578c1.075 0 2.518-.241 3.272-1.428.4-.642.544-1.491.56-2.277v-5.567c0-.192 0-2.004-1.298-3.271-.834-.818-2.198-1.492-4.46-1.492zm27.412 0c-2.117.032-3.416.69-4.234 1.492-1.283 1.267-1.283 3.079-1.283 3.271v4.524c0 .192 0 2.004 1.283 3.271.818.802 2.117 1.46 4.234 1.492h4.17v-1.603h-4.074c-1.396-.016-2.437-.434-2.983-.963-.641-.642-.867-1.49-.867-2.148v-1.653h9.463v-2.92c.016-.192.016-2.004-1.283-3.271-.818-.802-2.117-1.46-4.234-1.492zm-32.816.015c-1.075 0-2.52.225-3.274 1.428-.417.642-.544 1.491-.56 2.277v10.33H87.4v-10.2c0-.803.177-1.396.53-1.733.353-.353.931-.514 1.765-.514h2.967V56.99zm22.246 0c-2.246 0-3.61.674-4.46 1.492-1.298 1.268-1.298 3.08-1.298 3.272v4.523c0 .193 0 2.005 1.299 3.272.834.818 2.197 1.492 4.459 1.492h4.074v-1.588h-4.25c-1.46 0-2.375-.417-2.92-.963-.658-.641-.883-1.49-.883-2.148v-4.653c0-.657.225-1.522.883-2.148.561-.545 1.46-.963 2.92-.963h4.25V56.99zm-80.6 1.588H35v8.647c.016.786-.16 1.346-.514 1.699-.353.337-.93.513-1.763.513h-1.606c-1.46 0-2.372-.417-2.918-.962-.657-.642-.883-1.491-.883-2.149V61.69c0-.657.226-1.506.883-2.148.562-.545 1.459-.963 2.918-.963zm91.281 0c1.396.016 2.44.434 2.985.963.641.642.865 1.49.865 2.148v1.381h-7.7v-1.38c0-.658.21-1.507.868-2.149.545-.53 1.587-.947 2.982-.963m-54.181 6.047h5.39v2.6c0 .786-.176 1.346-.529 1.699-.353.337-.931.513-1.766.513h-3.11c-.835 0-1.412-.16-1.764-.513s-.514-.913-.514-1.7v-.384c0-.802.176-1.364.53-1.701.352-.337.929-.514 1.763-.514m29.193 0h5.389v2.6c0 .786-.177 1.346-.53 1.699-.352.337-.93.513-1.763.513h-3.113c-.834 0-1.411-.16-1.764-.513s-.514-.913-.514-1.7v-.384c0-.802.177-1.364.53-1.701.352-.337.931-.514 1.765-.514"/></svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M49.81.002c-1.649.034-4.956.48-8.109 3.496-4.57 4.387-27.783 26.412-37.105 35.277-4.204 4.022-3.84 8.5-3.84 8.866v2.009l.008-.025v.037c-.001.018-.008.068-.008.08l.008-.03c.021 6.461.296 16.598.998 28.18 1.28 19.467 3.746 36.739 3.746 36.739l32.445-30.799s-1.189-15.446.73-38.477c.138-1.633.29-3.264.454-4.884.078-.775.167-1.536.25-2.305a277 277 0 0 1 7.158-.305c23.122-.73 38.385 1.19 38.385 1.19L117.373 8.25S100.375 5.052 81 2.768C68.296 1.214 57.146.39 50.84.025c-.114 0-.48-.034-1.03-.023m72.499 13.367L89.863 44.26s1.098 15.355-.73 38.386a256 256 0 0 1-.664 7.142c-2.352.142-4.721.268-7.104.352-23.122.73-38.476-1.19-38.476-1.19l-32.446 30.893s17.182 3.38 36.557 5.574a508 508 0 0 0 28.217 2.432c-.055.01-.102.025-.158.035.73 0 1.37.092 2.01.092.456 0 4.935.548 9.322-3.473 9.23-8.865 32.444-30.982 37.013-35.37 4.204-4.02 3.84-8.5 3.84-8.956a623 623 0 0 0-1.19-30.158c-1.37-19.467-3.745-36.649-3.745-36.649z"/></svg>

After

Width:  |  Height:  |  Size: 994 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#00acd7" d="M62.772 47.678c-2.217 0-4.23 1.637-4.562 3.752v.006c-.31 2.12 1.41 3.911 3.637 3.911 2.225 0 4.257-1.649 4.54-3.774.28-2.12-1.398-3.894-3.615-3.894zm0 .989c1.717 0 2.841 1.211 2.634 2.774-.207 1.558-1.836 2.918-3.559 2.918-1.718 0-2.882-1.238-2.66-2.775.245-1.568 1.868-2.918 3.585-2.918zm-25.665.941-.07.413-4.96 29.88h8.082l1.947-11.773H53.75l1.14-6.758H43.242l.812-5.021h12.914l1.142-6.74zm30.95 0-.07.413-4.95 29.878h7.925l.443-2.76c.87 1.7 2.617 3.072 5.473 3.072 4.986 0 9.591-3.903 10.995-11.163-.427 3.302.096 6.105 1.69 8.059 1.705 2.087 4.479 3.21 8.03 3.215 5.95 0 10.376-2.914 12.007-7.438l.232-.642-7.366-.213-.145.267c-.702 1.297-2.081 1.987-3.759 1.987-1.268 0-2.109-.362-2.61-.978-.479-.587-.668-1.492-.508-2.703h14.613l.34-2.16v-.004c.616-3.706-.026-6.673-1.694-8.707-1.67-2.034-4.325-3.08-7.55-3.08-6.659 0-11.748 4.548-13.098 11.237.485-3.61-.004-6.42-1.318-8.292-1.398-1.99-3.615-2.946-6.038-2.946-2.815 0-4.894 1.275-6.264 2.832l1.615-9.874zm-30.113.988H56.94l-.806 4.765H43.212l-1.133 6.997h11.644l-.806 4.782H41.269l-1.947 11.773h-6.079zm30.953 0h5.99l-1.814 11.088h1.019l.142-.25c1.076-1.898 3.181-3.796 6.465-3.796 2.17 0 4.025.811 5.23 2.526 1.203 1.714 1.767 4.393 1.134 8.186-1.203 7.314-5.578 10.874-10.185 10.874-3.135 0-4.544-1.65-5.013-3.505l-.095-.372h-1.077l-.573 3.564h-5.918zm56.621 6.042c-2.02 0-3.883.974-5.258 2.827l.428-2.532h-7.792l-3.825 22.964h7.997l2.044-12.344c.42-2.394 2.352-3.966 4.59-3.966.824 0 2.02.15 2.53.342l.562.21L128 57l-.446-.11a8.81 8.81 0 0 0-2.032-.253h-.002zm-68.088.295-.07.413-3.75 22.551h7.998l3.82-22.964zm-47.316.454-.147.208-2.377 3.371 25.607-.013.585-3.566zm115.4.24h.005c.454.003.9.087 1.347.169l-.869 5.125c-.728-.177-1.56-.322-2.294-.322-2.71 0-5.07 1.949-5.566 4.788v.002l-1.906 11.52h-5.992l3.495-20.988h5.785l-.677 4.006h1.133l.13-.29c1.243-2.771 3.2-4.01 5.41-4.01zm-24.36.013c3.013 0 5.335.95 6.785 2.717 1.45 1.767 2.067 4.406 1.482 7.923v.002l-.209 1.332H94.585l-.116.67v.003c-.235 1.485-.012 2.748.716 3.641.728.894 1.913 1.344 3.377 1.344 1.82 0 3.415-.812 4.357-2.24l5.394.156c-1.664 3.723-5.409 6.146-10.72 6.146-3.347-.005-5.782-1.034-7.265-2.85-1.483-1.817-2.056-4.482-1.478-7.897v-.002h.002c1.096-6.61 5.904-10.945 12.302-10.945zm-42.886.281h5.992L60.77 78.91h-5.993zm-47.641.454H32.62l-.26 1.59-22.864.013zm89.882 3.327c-2.504 0-4.692 1.83-5.245 4.232l-.14.604h9.083l.067-.417c.197-1.236-.077-2.36-.758-3.163-.682-.803-1.747-1.256-3.007-1.256zm-23.2.418c-1.424 0-2.686.637-3.625 1.731-.938 1.095-1.575 2.634-1.871 4.497-.3 1.84-.183 3.4.413 4.56.595 1.16 1.73 1.862 3.158 1.862 1.435 0 2.694-.662 3.622-1.772.928-1.11 1.552-2.657 1.845-4.496.293-1.836.193-3.382-.39-4.535-.582-1.153-1.71-1.847-3.153-1.847zm23.2.57c1.029 0 1.78.347 2.254.907.402.473.564 1.154.525 1.953H96.48c.656-1.635 2.236-2.86 4.03-2.86zm-97.91.07-.148.202L0 66.329l32.39-.023.587-3.547Zm74.71.348c1.154 0 1.833.44 2.27 1.305.438.865.569 2.223.296 3.935-.272 1.707-.85 3.087-1.627 4.015-.776.929-1.724 1.419-2.864 1.419-1.132 0-1.828-.449-2.279-1.326-.45-.877-.595-2.242-.316-3.952v-.002c.275-1.729.862-3.095 1.644-4.008.782-.913 1.737-1.386 2.875-1.386zm-74.206.64h28.708l-.258 1.57-29.61.023zm15.596 4.382-.147.223-2.2 3.356 15.234-.01.582-3.57zm.533.988h11.773l-.26 1.594-12.563.01z"/></svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#333" d="M62.55 47.98c-1.99 0-3.83 1.512-4.122 3.376-.272 1.851 1.19 3.386 3.187 3.386 1.998 0 3.85-1.523 4.098-3.387.247-1.863-1.171-3.374-3.162-3.374zm-25.552 1.954-4.924 29.66h7.166l1.97-11.916h11.788l.984-5.84H42.195l.985-6.082h13.074l.986-5.822H36.998zm31.326 0-4.916 29.658h7.006l.58-3.608h.276c.52 2.057 2.2 3.924 5.558 3.924 4.924 0 9.557-3.851 10.803-11.424 1.31-7.847-2.287-11.423-6.936-11.423-3.518 0-5.82 2.053-6.978 4.095h-.152l1.837-11.222h-7.078zm57.735 7.115c-2.433 0-4.618 1.414-5.936 4.353h-.23l.685-4.054h-6.87l-3.706 22.242h7.08l1.998-12.076c.462-2.65 2.636-4.432 5.14-4.432.884 0 2.086.131 2.737.377L128 57.291a8.417 8.417 0 0 0-1.941-.242zm-24.66.014c-6.705 0-11.804 4.604-12.946 11.495-1.202 7.107 2.359 11.451 9.342 11.461 5.861 0 10.105-2.823 11.682-7.197l-6.457-.187c-.808 1.49-2.405 2.273-4.245 2.273-2.765 0-4.096-1.643-3.648-4.467l.045-.26h14.81l.278-1.767c1.216-7.313-2.548-11.352-8.862-11.352zm-43.83.285L53.866 79.59h7.082l3.7-22.242h-7.08zm43.177 4.826c2.316 0 3.679 1.622 3.317 3.894h-8.14c.508-2.2 2.535-3.894 4.823-3.894zm-23.482.424c2.628 0 3.664 2.29 3.092 5.88-.572 3.59-2.434 5.922-5.04 5.922-2.592 0-3.706-2.326-3.12-5.922.578-3.634 2.475-5.88 5.068-5.88z"/><path fill="#00acd7" d="m9.514 57.807-1.85 2.623 24.53-.014.427-2.61H9.514zm-7.612 5.437L0 65.857l31.377-.023.428-2.59H1.902zm16.31 5.436-1.718 2.623 14.066-.01.428-2.613H18.213z"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#00acd7" d="M62.55 47.98c-1.99 0-3.83 1.512-4.122 3.376-.272 1.851 1.19 3.386 3.187 3.386 1.998 0 3.85-1.523 4.098-3.387.247-1.863-1.171-3.374-3.162-3.374zm-25.552 1.954-4.924 29.66h7.166l1.97-11.916h11.788l.984-5.84H42.195l.985-6.082h13.074l.986-5.822H36.998zm31.326 0-4.916 29.658h7.006l.58-3.608h.276c.52 2.057 2.2 3.924 5.558 3.924 4.924 0 9.557-3.851 10.803-11.424 1.31-7.847-2.287-11.423-6.936-11.423-3.518 0-5.82 2.053-6.978 4.095h-.152l1.837-11.222h-7.078zm57.735 7.115c-2.433 0-4.618 1.414-5.936 4.353h-.23l.685-4.054h-6.87l-3.706 22.242h7.08l1.998-12.076c.462-2.65 2.636-4.432 5.14-4.432.884 0 2.086.131 2.737.377L128 57.291a8.417 8.417 0 0 0-1.941-.242zm-24.66.014c-6.705 0-11.804 4.604-12.946 11.495-1.202 7.107 2.359 11.451 9.342 11.461 5.861 0 10.105-2.823 11.682-7.197l-6.457-.187c-.808 1.49-2.405 2.273-4.245 2.273-2.765 0-4.096-1.643-3.648-4.467l.045-.26h14.81l.278-1.767c1.216-7.313-2.548-11.352-8.862-11.352zm-43.83.285L53.866 79.59h7.082l3.7-22.242h-7.08zm-48.055.459-1.85 2.623 24.53-.014.427-2.61H9.514zm91.232 4.367c2.316 0 3.679 1.622 3.317 3.894h-8.14c.508-2.2 2.535-3.894 4.823-3.894zm-23.482.424c2.628 0 3.664 2.29 3.092 5.88-.572 3.59-2.434 5.922-5.04 5.922-2.592 0-3.706-2.326-3.12-5.922.578-3.634 2.475-5.88 5.068-5.88zm-75.362.646L0 65.857l31.377-.023.428-2.59H1.902zm16.31 5.436-1.718 2.623 14.067-.01.427-2.613H18.213z"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><linearGradient id="a" x1="86.364" x2="86.364" y1="337.96" y2="7.121" gradientTransform="translate(-2.427 -1.8) scale(.37233)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#f40a0b"/><stop offset="1" stop-color="#f5e710"/></linearGradient><linearGradient id="b" x1="216.108" x2="216.108" y1="348.988" y2="7.277" gradientTransform="translate(-2.427 -1.8) scale(.37233)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#f40a0b"/><stop offset="1" stop-color="#f5e710"/></linearGradient></defs><path fill="#111" fill-rule="evenodd" d="M27.62 99.429c1.207 9.57 6.408 16.781 14.37 23.858l-2.869-1.447C16.496 112.109.68 89.617.68 63.453.68 30.212 26.334 2.573 59.522.107 26.334 2.574.679 30.212.679 63.453.68 30.212 26.334 2.573 59.522.107 21.509 7.613-14.923 51.524 27.62 99.43" clip-rule="evenodd"/><path fill="#111" fill-rule="evenodd" d="M114.397 43.214C111.528 22.652 95.739 8.257 66.974 0c33.938 1.501 60.719 29.488 60.719 63.453 0 35.091-26.432 62.22-60.772 63.775-3.244.161-6.488-.402-9.651-1.394V54.258q1.568-2.372 0-4.745V34.287h3.512c-1.368-.912-2.52-1.609-3.512-2.038v-4.396c18.417 7.023 26.968 7.828 25.681 2.332 1.609 4.53.215 6.595-4.182 6.14-5.066-.778-8.203-.43-9.436 1.071q13.632 6.756 14.557 13.11c.857 7.13-2.52 14.985-10.134 23.59-4.798 5.978-2.305 12.331 5.442 13.35 24.047-1.18 35.788-15.95 35.199-44.232m-57.127 82.62c-7.345-2.278-13.94-6.863-17.157-10.053-5.683-5.897-9.543-15.334-10.964-28.952 0-.08-.027-.16-.027-.241v-4.61c.885-10.938 8.176-18.632 21.929-23.055 3.11-1.528 5.2-3.083 6.219-4.665zm0-76.32c-.43-.698-1.1-1.395-1.93-2.118-.75-.751-2.36-1.502-4.799-2.225-5.576-.161-8.605 1.233-9.088 4.208-9.463-4.208-9.73-9.007-.83-14.368 1.742-.67 4.289-.912 7.666-.778-1.394-6.166.965-8.551 7.104-7.104.644.241 1.26.483 1.877.724v4.396c-2.815-1.313-3.914-.643-3.324 2.038h3.324z" clip-rule="evenodd"/><path fill="url(#a)" fill-rule="evenodd" d="M27.248 100.173c1.207 9.57 6.407 16.782 14.37 23.86l-2.87-1.449C16.124 112.854.308 90.362.308 64.198.308 30.957 25.963 3.318 59.15.852 25.962 3.318.307 30.957.307 64.198c0-33.241 25.655-60.88 58.842-63.346-38.013 7.506-74.444 51.417-31.9 99.321" clip-rule="evenodd"/><path fill="url(#b)" fill-rule="evenodd" d="M114.024 43.958C111.156 23.397 95.366 9.001 66.602.745c33.938 1.5 60.719 29.488 60.719 63.453 0 35.09-26.432 62.22-60.773 63.775-3.244.16-6.487-.402-9.65-1.394V55.003q1.568-2.373 0-4.745V35.031h3.511c-1.367-.911-2.52-1.608-3.511-2.037v-4.396c18.416 7.023 26.968 7.827 25.681 2.332 1.608 4.53.215 6.594-4.182 6.139-5.067-.778-8.203-.43-9.436 1.072q13.631 6.756 14.556 13.109c.858 7.13-2.52 14.985-10.133 23.59-4.798 5.978-2.305 12.332 5.442 13.35 24.046-1.179 35.788-15.95 35.198-44.232m-57.126 82.62c-7.346-2.278-13.94-6.862-17.157-10.052-5.683-5.898-9.544-15.334-10.964-28.952 0-.08-.027-.16-.027-.241v-4.611c.884-10.938 8.176-18.631 21.928-23.055 3.11-1.528 5.2-3.082 6.22-4.664zm0-76.32c-.43-.697-1.1-1.394-1.93-2.118-.751-.75-2.36-1.501-4.8-2.225-5.575-.16-8.604 1.233-9.087 4.209-9.463-4.209-9.731-9.007-.83-14.369 1.742-.67 4.288-.911 7.666-.777-1.394-6.166.965-8.552 7.104-7.104.643.241 1.26.482 1.877.724v4.396c-2.815-1.314-3.914-.643-3.325 2.037h3.325z" clip-rule="evenodd"/></svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#f4790e" d="M66.804 0c28.932 8.305 44.814 22.787 47.699 43.468.593 28.447-11.215 43.303-35.402 44.49-7.792-1.026-10.3-7.414-5.474-13.427 7.658-8.656 11.053-16.559 10.19-23.731-.62-4.26-5.5-8.654-14.64-13.184 1.24-1.51 4.395-1.861 9.491-1.08 4.422.46 5.825-1.616 4.208-6.172 1.294 5.527-7.308 4.718-25.832-2.347-.62-.243-1.24-.486-1.887-.728-6.175-1.456-8.547.943-7.145 7.144-3.397-.135-5.96.11-7.712.784-8.952 5.393-8.682 10.217.837 14.45.485-2.992 3.531-4.395 9.14-4.233 2.453.728 4.07 1.483 4.824 2.238.836.728 1.512 1.43 1.943 2.13 1.052 1.591 1.052 3.184 0 4.775-1.025 1.591-3.127 3.153-6.255 4.69-13.833 4.45-21.168 12.188-22.058 23.19v4.637c0 .08.027.162.027.243 1.429 13.697 5.314 23.188 11.03 29.12 3.236 3.209 9.868 7.82 17.256 10.111 3.182.998 6.445 1.566 9.708 1.405 34.54-1.564 61.125-28.852 61.125-64.148C127.877 29.662 100.94 1.51 66.804 0zM59.31.108a63.999 63.999 0 0 0-15.024 2.943A63.645 63.645 0 0 0 23.6 14.348a64.22 64.22 0 0 0-8.345 8.202A64.182 64.182 0 0 0 5.84 37.39a63.552 63.552 0 0 0-4.543 14.2A63.616 63.616 0 0 0 .123 63.826c0 26.317 15.91 48.938 38.667 58.726l2.885 1.457c-8.008-7.118-13.24-14.37-14.453-23.997C-15.57 51.827 21.074 7.658 59.309.108Zm-4.723 31.69c.578-.068 1.396.144 2.458.64.998.431 2.156 1.134 3.531 2.05H53.7c-.37-1.684-.077-2.579.886-2.69z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 10 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#FF5500" d="M89.258 0c-5.766 0-10.813 3.172-13.582 7.824h-6.88c-20.952 0-38.105 17.153-38.105 38.106v52.61c-4.652 2.776-7.82 7.82-7.82 13.581 0 8.692 7.145 15.848 15.84 15.848s15.84-7.153 15.84-15.848c0-5.766-3.172-10.812-7.824-13.582V86.848c0-12.282 9.785-22.067 22.07-22.067h6.879c2.77 4.653 7.816 7.824 13.582 7.824 8.691 0 15.84-7.152 15.84-15.843 0-8.688-7.145-15.84-15.84-15.84-5.766 0-10.813 3.172-13.582 7.824h-6.88c-8.222 0-15.827 2.691-22.07 7.172V45.93c-.062-12.22 9.848-22.133 22.067-22.067h6.883c2.77 4.653 7.816 7.825 13.582 7.825 8.695 0 15.84-7.153 15.84-15.844C105.098 7.152 97.953 0 89.258 0Zm0 .992c8.148 0 14.847 6.707 14.847 14.852 0 8.148-6.699 14.851-14.847 14.851-5.508 0-10.348-3.07-12.91-7.574l-.141-.25h-7.41c-12.758-.066-23.129 10.3-23.063 23.063v11.882l.793-.601c6.215-4.692 13.93-7.477 22.27-7.477h7.41l.14-.25c2.563-4.504 7.403-7.574 12.91-7.574 8.15 0 14.848 6.703 14.848 14.848 0 8.148-6.703 14.851-14.847 14.851-5.508 0-10.348-3.07-12.91-7.574l-.141-.25h-7.41a22.966 22.966 0 0 0-23.063 23.059V99.07l.254.145c4.5 2.562 7.57 7.394 7.57 12.906 0 8.152-6.695 14.856-14.847 14.856-8.148 0-14.848-6.707-14.848-14.856 0-5.508 3.067-10.34 7.57-12.906l.25-.145V45.93c0-20.41 16.704-37.114 37.114-37.114h7.41l.14-.25C78.91 4.062 83.75.992 89.258.992Zm0 8.035c-3.774-.039-6.852 3.043-6.813 6.817-.035 3.773 3.043 6.855 6.817 6.816 3.804-.004 6.808-3.012 6.808-6.816 0-3.801-3.004-6.813-6.808-6.817Zm-.008.993h.008c3.289 0 5.82 2.539 5.82 5.824 0 3.289-2.531 5.824-5.82 5.824h-.008a5.746 5.746 0 0 1-5.813-5.816v-.012a5.745 5.745 0 0 1 5.813-5.82Zm.008 39.93c-3.774-.036-6.848 3.042-6.813 6.812-.039 3.773 3.04 6.851 6.813 6.808 3.773.043 6.855-3.035 6.812-6.808 0-3.797-3.004-6.809-6.808-6.813Zm-.008.991h.008c3.289 0 5.82 2.54 5.82 5.82v.009a5.737 5.737 0 0 1-5.816 5.812h-.012a5.736 5.736 0 0 1-5.813-5.812v-.012a5.744 5.744 0 0 1 5.813-5.817ZM38.707 105.31c-3.8.004-6.809 3.011-6.809 6.816 0 3.805 3.008 6.816 6.813 6.816 3.797 0 6.809-3.007 6.809-6.812v-.004c.039-3.77-3.036-6.852-6.81-6.816Zm.004.992h.008a5.745 5.745 0 0 1 5.808 5.816v.008c0 3.285-2.539 5.824-5.816 5.824-3.29 0-5.82-2.539-5.82-5.824 0-3.29 2.53-5.824 5.82-5.824Zm0 0"/></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M19.73 40.855c-1.645 0-3.09.902-3.867 2.238h-1.852a11.81 11.81 0 0 0-11.773 11.77v19.07h4.477v-19.07a7.26 7.26 0 0 1 7.297-7.293h1.852a4.49 4.49 0 0 0 3.867 2.238 4.5 4.5 0 0 0 4.477-4.477 4.5 4.5 0 0 0-4.477-4.477zm0 2.652c1.023 0 1.824.801 1.824 1.824s-.801 1.824-1.824 1.824-1.824-.801-1.824-1.824.801-1.824 1.824-1.824zm83.207 10.211c-2.195 0-4.004 1.809-4.004 4.004a4.03 4.03 0 0 0 4.004 4.008c2.199 0 4.004-1.809 4.004-4.008s-1.805-4.004-4.004-4.004zm0 2.289a1.7 1.7 0 1 1 0 3.434c-.961 0-1.715-.754-1.715-1.719s.754-1.715 1.715-1.715zM32.359 59.57c-1.977 0-3.73.438-5.262 1.316a9.6 9.6 0 0 0-3.645 3.57c-.875 1.504-1.316 3.246-1.316 5.223 0 1.957.441 3.695 1.316 5.227.902 1.527 2.117 2.73 3.645 3.605 1.555.852 3.309 1.277 5.262 1.277s3.695-.426 5.227-1.277a9.53 9.53 0 0 0 3.645-3.605c.875-1.531 1.316-3.27 1.316-5.227 0-1.977-.441-3.719-1.316-5.223-.879-1.527-2.094-2.719-3.645-3.57-1.531-.879-3.27-1.316-5.227-1.316zm23.191 0c-1.93 0-3.547.391-4.848 1.164a6.17 6.17 0 0 0-2.48 2.602v-3.578h-3.008v19.844h3.156v-9.996c0-2.254.578-3.984 1.73-5.187 1.152-1.227 2.719-1.84 4.695-1.84.125 0 .25.012.379.035.125 0 .25.016.375.039zm10.652 0c-1.906 0-3.621.402-5.148 1.203-1.504.801-2.695 1.93-3.574 3.383-.875 1.43-1.312 3.094-1.312 5s.438 3.582 1.313 5.035a9.36 9.36 0 0 0 3.574 3.418c1.527.801 3.242 1.203 5.148 1.203 1.727 0 3.281-.363 4.66-1.09.84-.437 1.578-1 2.215-1.691l-.098 1.355c-.172 2.348-.578 4.094-1.73 5.223-1.152 1.152-2.945 1.727-5.375 1.727a13.09 13.09 0 0 1-4.281-.711c-1.355-.477-2.496-1.129-3.422-1.957l-1.578 2.445c1.078.949 2.457 1.676 4.133 2.18 1.703.523 3.457.789 5.262.789 3.332 0 5.852-.816 7.555-2.445 1.703-1.602 2.555-4.133 2.555-7.59 0-4.766.625-10.625-1.227-13.191-.828-1.43-1.941-2.492-3.348-3.195-1.375-.727-3.594-1.09-5.32-1.09zm51.547 0c-1.98 0-3.734.438-5.262 1.316a9.6 9.6 0 0 0-3.645 3.57c-.879 1.504-1.316 3.246-1.316 5.223 0 1.957.438 3.695 1.316 5.227.902 1.527 2.117 2.73 3.645 3.605 1.555.852 3.309 1.277 5.262 1.277s3.695-.426 5.223-1.277c1.555-.875 2.77-2.078 3.648-3.605s1.313-3.27 1.313-5.227c0-1.977-.437-3.719-1.312-5.223-.879-1.527-2.094-2.719-3.648-3.57-1.527-.879-3.27-1.316-5.223-1.316zm-28.895.043c-1.906 0-3.609.441-5.109 1.316-1.48.852-2.645 2.043-3.496 3.57s-1.277 3.27-1.277 5.223.438 3.695 1.313 5.227c.902 1.527 2.145 2.73 3.723 3.605 1.602.852 3.445 1.277 5.523 1.277 1.629 0 3.105-.273 4.434-.824s2.418-1.355 3.27-2.406l-1.727-2.027c-.727.852-1.59 1.488-2.594 1.914-1.004.402-2.105.602-3.309.602-1.5 0-2.828-.301-3.98-.902a6.91 6.91 0 0 1-2.672-2.629c-.199-.371-.367-.762-.504-1.176l16.066-3.148c-.051-1.93-.516-3.605-1.391-5.035-.852-1.453-1.992-2.582-3.422-3.383s-3.043-1.203-4.848-1.203zm0 2.707c1.301 0 2.457.301 3.457.902a6.09 6.09 0 0 1 2.332 2.367 6.39 6.39 0 0 1 .73 1.98l-13.34 2.574a10.36 10.36 0 0 1-.02-.609c0-1.453.289-2.719.863-3.793s1.379-1.918 2.406-2.52c1.051-.602 2.242-.902 3.57-.902zm-56.496.031c1.355 0 2.559.301 3.609.902s1.879 1.453 2.48 2.555c.625 1.105.938 2.395.938 3.871 0 1.453-.312 2.746-.937 3.871-.602 1.102-1.43 1.969-2.48 2.594-1.051.602-2.254.902-3.609.902s-2.555-.301-3.605-.902c-1.055-.625-1.891-1.492-2.52-2.594-.602-1.125-.902-2.418-.902-3.871 0-1.477.301-2.766.902-3.871.629-1.102 1.465-1.953 2.52-2.555s2.254-.902 3.605-.902zm33.813 0c1.402 0 2.641.289 3.719.863 1.078.555 1.918 1.344 2.52 2.371.625 1.023.938 2.215.938 3.57s-.312 2.555-.937 3.605c-.602 1.027-1.441 1.828-2.52 2.406s-2.316.863-3.719.863c-1.379 0-2.605-.289-3.684-.863s-1.93-1.379-2.555-2.406c-.602-1.051-.902-2.254-.902-3.605s.301-2.547.902-3.57c.625-1.027 1.477-1.816 2.555-2.371 1.078-.574 2.305-.863 3.684-.863zm51.578 0c1.352 0 2.555.301 3.609.902s1.879 1.453 2.48 2.555c.625 1.105.938 2.395.938 3.871 0 1.453-.312 2.746-.937 3.871-.602 1.102-1.43 1.969-2.48 2.594-1.055.602-2.258.902-3.609.902s-2.555-.301-3.609-.902c-1.051-.625-1.891-1.492-2.516-2.594-.602-1.125-.902-2.418-.902-3.871 0-1.477.301-2.766.902-3.871.625-1.102 1.465-1.953 2.516-2.555s2.258-.902 3.609-.902zm-16.215.723v17.73c0 1.203-.273 2.105-.824 2.707-.527.602-1.293.902-2.293.902-1.23 0-2.23-.312-3.008-.941l-1.051 2.367c.5.426 1.125.738 1.879.941s1.539.301 2.367.301c1.953 0 3.457-.566 4.508-1.691s1.578-2.656 1.578-4.586v-17.73zm0 0" fill="#ff5500"/><path d="M19.73 53.246a4.49 4.49 0 0 0-3.867 2.238h-1.852c-6.477 0-11.773 5.301-11.773 11.773v4.711C.906 72.75 0 74.195 0 75.84a4.5 4.5 0 0 0 4.477 4.477 4.5 4.5 0 0 0 4.477-4.477c0-1.645-.902-3.09-2.238-3.871v-4.711a7.26 7.26 0 0 1 7.297-7.293h1.852a4.49 4.49 0 0 0 3.867 2.238c2.457 0 4.477-2.023 4.477-4.48a4.5 4.5 0 0 0-4.477-4.477zm0 2.656c1.023 0 1.824.801 1.824 1.82s-.801 1.824-1.824 1.824-1.824-.801-1.824-1.824.801-1.82 1.824-1.82zM4.477 74.016c1.023 0 1.824.801 1.824 1.824s-.801 1.824-1.824 1.824-1.824-.801-1.824-1.824.801-1.824 1.824-1.824zm0 0" fill="#cc0000"/></svg>

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M89.457 0C83.719 0 78.68 3.195 76.012 7.887h-7.176c-20.844 0-37.902 17.059-37.902 37.902v59.438h15.16V45.789a22.62 22.62 0 0 1 22.742-22.738h7.176c2.668 4.688 7.707 7.883 13.445 7.883 8.488 0 15.465-6.98 15.465-15.465S97.945 0 89.457 0zm0 9.098c3.574 0 6.367 2.797 6.367 6.371s-2.793 6.367-6.367 6.367a6.3 6.3 0 0 1-6.367-6.367 6.3 6.3 0 0 1 6.367-6.371zm0 0" fill="#ff6600"/><path d="M89.457 41.242c-5.738 0-10.777 3.195-13.445 7.883h-7.176c-20.844 0-37.902 17.063-37.902 37.902v12.027c-4.691 2.672-7.883 7.711-7.883 13.445 0 8.488 6.977 15.469 15.465 15.469s15.465-6.98 15.465-15.469c0-5.738-3.199-10.777-7.887-13.445V87.027c0-12.645 10.094-22.738 22.742-22.738h7.176c2.668 4.688 7.707 7.883 13.445 7.883 8.484 0 15.465-6.98 15.465-15.465s-6.977-15.465-15.465-15.465zm0 9.098c3.574 0 6.367 2.797 6.367 6.367s-2.793 6.363-6.367 6.363-6.367-2.793-6.367-6.363a6.3 6.3 0 0 1 6.367-6.367zm-50.941 55.793c3.566 0 6.363 2.801 6.363 6.367 0 3.574-2.797 6.371-6.363 6.371-3.574 0-6.367-2.797-6.367-6.371s2.793-6.367 6.367-6.367zm0 0" fill="#d40000"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#FF5500" d="M19.73 40.855c-1.645 0-3.09.902-3.867 2.238h-1.852a11.81 11.81 0 0 0-11.773 11.77v17.105C.906 72.75 0 74.195 0 75.84a4.5 4.5 0 0 0 4.477 4.477 4.5 4.5 0 0 0 4.477-4.477c0-1.645-.902-3.09-2.238-3.871v-4.711a7.26 7.26 0 0 1 7.297-7.293h1.852a4.49 4.49 0 0 0 3.867 2.238 4.5 4.5 0 0 0 4.477-4.477 4.5 4.5 0 0 0-4.477-4.477c-1.645 0-3.09.902-3.867 2.238h-1.852a11.71 11.71 0 0 0-7.297 2.551v-3.176a7.26 7.26 0 0 1 7.297-7.293h1.852a4.49 4.49 0 0 0 3.867 2.238 4.5 4.5 0 0 0 4.477-4.477 4.5 4.5 0 0 0-4.477-4.477zm0 2.652c1.023 0 1.824.801 1.824 1.824s-.801 1.824-1.824 1.824-1.824-.801-1.824-1.824.801-1.824 1.824-1.824zm83.207 10.211a4.03 4.03 0 0 0-4.004 4.008c0 2.195 1.809 4.004 4.004 4.004s4.004-1.809 4.004-4.004-1.805-4.008-4.004-4.008zM19.73 55.902c1.023 0 1.824.801 1.824 1.824s-.801 1.82-1.824 1.82-1.824-.801-1.824-1.82.801-1.824 1.824-1.824zm83.207.105a1.7 1.7 0 1 1 0 3.434c-.961 0-1.715-.754-1.715-1.715s.754-1.719 1.715-1.719zM32.359 59.57c-1.977 0-3.73.438-5.262 1.316a9.6 9.6 0 0 0-3.645 3.57c-.875 1.504-1.316 3.246-1.316 5.223 0 1.957.441 3.695 1.316 5.227.902 1.527 2.117 2.73 3.645 3.605 1.555.852 3.309 1.277 5.262 1.277s3.695-.426 5.227-1.277c1.551-.875 2.766-2.078 3.645-3.609s1.316-3.266 1.316-5.223c0-1.977-.441-3.719-1.316-5.223-.879-1.527-2.094-2.719-3.645-3.57-1.531-.879-3.27-1.316-5.227-1.316zm23.191 0c-1.93 0-3.547.391-4.848 1.164a6.17 6.17 0 0 0-2.48 2.602v-3.578h-3.008v19.844h3.156v-9.996c0-2.254.578-3.984 1.73-5.187 1.152-1.227 2.719-1.84 4.695-1.84.125 0 .25.012.379.035.125 0 .25.016.375.039zm10.652 0c-1.906 0-3.621.402-5.148 1.203-1.504.801-2.695 1.93-3.574 3.383-.875 1.43-1.312 3.094-1.312 5s.438 3.582 1.313 5.035a9.36 9.36 0 0 0 3.574 3.418c1.527.805 3.242 1.203 5.148 1.203 1.727 0 3.281-.363 4.66-1.09.84-.437 1.578-1 2.215-1.691l-.098 1.355c-.172 2.348-.578 4.094-1.73 5.223-1.152 1.152-2.945 1.727-5.375 1.727a12.99 12.99 0 0 1-4.281-.711c-1.355-.477-2.496-1.129-3.422-1.957l-1.578 2.445c1.078.953 2.457 1.676 4.133 2.18 1.703.523 3.457.789 5.262.789 3.332 0 5.852-.816 7.555-2.445 1.703-1.602 2.555-4.133 2.555-7.59 0-4.766.625-10.625-1.227-13.191-.828-1.43-1.941-2.492-3.348-3.195-1.375-.727-3.594-1.09-5.32-1.09zm51.547 0c-1.98 0-3.734.438-5.262 1.316a9.6 9.6 0 0 0-3.645 3.57c-.879 1.504-1.316 3.246-1.316 5.223 0 1.957.438 3.695 1.316 5.227.902 1.527 2.117 2.73 3.645 3.605 1.555.852 3.309 1.277 5.262 1.277s3.695-.426 5.223-1.277c1.555-.875 2.77-2.078 3.648-3.609s1.313-3.266 1.313-5.223c0-1.977-.437-3.719-1.312-5.223-.879-1.527-2.094-2.719-3.648-3.57-1.527-.879-3.27-1.316-5.223-1.316zm-28.895.043c-1.906 0-3.609.441-5.109 1.316-1.48.852-2.645 2.043-3.496 3.57s-1.277 3.27-1.277 5.223.438 3.695 1.313 5.227c.902 1.527 2.145 2.73 3.723 3.605 1.602.855 3.445 1.277 5.523 1.277 1.629 0 3.105-.273 4.434-.824s2.418-1.352 3.27-2.406l-1.727-2.027c-.727.852-1.59 1.488-2.594 1.914-1.004.402-2.105.602-3.309.602-1.5 0-2.828-.301-3.98-.902a6.91 6.91 0 0 1-2.672-2.629c-.199-.371-.367-.762-.504-1.176l16.066-3.148c-.051-1.93-.516-3.605-1.391-5.035-.852-1.453-1.992-2.582-3.422-3.383s-3.043-1.203-4.848-1.203zm0 2.707c1.301 0 2.457.301 3.457.902 1.004.578 1.777 1.363 2.332 2.367a6.39 6.39 0 0 1 .73 1.98l-13.34 2.574a10.36 10.36 0 0 1-.02-.609c0-1.453.289-2.719.863-3.793s1.379-1.918 2.406-2.52c1.051-.602 2.242-.902 3.57-.902zm-56.496.031c1.355 0 2.559.301 3.609.902s1.879 1.453 2.48 2.555c.625 1.105.938 2.395.938 3.871 0 1.453-.312 2.746-.937 3.871-.602 1.102-1.43 1.969-2.48 2.594-1.051.602-2.254.902-3.609.902s-2.555-.301-3.605-.902c-1.055-.625-1.891-1.492-2.52-2.594-.602-1.125-.902-2.418-.902-3.871 0-1.477.301-2.766.902-3.871.629-1.102 1.465-1.953 2.52-2.555s2.254-.902 3.605-.902zm33.813 0c1.402 0 2.641.289 3.719.863 1.078.555 1.918 1.34 2.52 2.367.625 1.027.938 2.219.938 3.574s-.312 2.555-.937 3.605c-.602 1.027-1.441 1.828-2.52 2.406s-2.316.863-3.719.863c-1.379 0-2.605-.289-3.684-.863s-1.93-1.379-2.555-2.406c-.602-1.051-.902-2.254-.902-3.605s.301-2.547.902-3.574c.625-1.027 1.477-1.812 2.555-2.367 1.078-.574 2.305-.863 3.684-.863zm51.578 0c1.352 0 2.555.301 3.609.902s1.879 1.453 2.48 2.555c.625 1.105.938 2.395.938 3.871 0 1.453-.312 2.746-.937 3.871-.602 1.102-1.43 1.969-2.48 2.594-1.055.602-2.258.902-3.609.902s-2.555-.301-3.609-.902c-1.051-.625-1.891-1.492-2.516-2.594-.602-1.125-.902-2.418-.902-3.871 0-1.477.301-2.766.902-3.871.625-1.102 1.465-1.953 2.516-2.555s2.258-.902 3.609-.902zm-16.215.723v17.73c0 1.203-.273 2.105-.824 2.707-.527.602-1.293.902-2.293.902-1.23 0-2.23-.312-3.008-.941l-1.051 2.367c.5.426 1.125.738 1.879.941s1.539.301 2.367.301c1.953 0 3.457-.566 4.508-1.691s1.578-2.656 1.578-4.586v-17.73zM4.477 74.016c1.023 0 1.824.801 1.824 1.824s-.801 1.824-1.824 1.824-1.824-.801-1.824-1.824.801-1.824 1.824-1.824zm0 0"/></svg>

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#FF5500" d="M89.457 0C83.719 0 78.68 3.195 76.012 7.887h-7.176c-20.844 0-37.902 17.059-37.902 37.902v41.238 12.027c-4.691 2.672-7.883 7.709-7.883 13.443 0 8.488 6.977 15.471 15.465 15.471s15.465-6.982 15.465-15.471c0-5.738-3.199-10.775-7.887-13.443V87.027c0-12.645 10.094-22.738 22.742-22.738h7.176c2.668 4.688 7.707 7.883 13.445 7.883 8.484 0 15.465-6.98 15.465-15.465s-6.977-15.465-15.465-15.465c-5.738 0-10.777 3.195-13.445 7.883h-7.176c-8.515 0-16.396 2.849-22.742 7.639V45.789a22.62 22.62 0 0 1 22.742-22.738h7.176c2.668 4.688 7.707 7.883 13.445 7.883 8.488 0 15.465-6.98 15.465-15.465S97.945 0 89.457 0zm0 9.098c3.574 0 6.367 2.797 6.367 6.371s-2.793 6.367-6.367 6.367a6.3 6.3 0 0 1-6.367-6.367 6.3 6.3 0 0 1 6.367-6.371zm0 41.242c3.574 0 6.367 2.797 6.367 6.367a6.29 6.29 0 0 1-6.367 6.363 6.29 6.29 0 0 1-6.367-6.363 6.3 6.3 0 0 1 6.367-6.367zm-50.941 55.793a6.3 6.3 0 0 1 6.363 6.367c0 3.574-2.797 6.371-6.363 6.371-3.574 0-6.367-2.797-6.367-6.371s2.793-6.367 6.367-6.367z"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#009f76" d="M64 1.267c-.577 0-1.155.128-1.688.386L14.105 24.96a3.9 3.9 0 0 0-2.102 2.644L.097 79.97v.002a3.9 3.9 0 0 0 .75 3.297l33.358 41.994a3.89 3.89 0 0 0 3.043 1.471h53.504a3.89 3.89 0 0 0 3.043-1.47l33.358-41.995a3.9 3.9 0 0 0 .75-3.297l-11.906-52.366v-.002a3.9 3.9 0 0 0-2.102-2.644L65.689 1.653A3.9 3.9 0 0 0 64 1.267m0 1.969c.285 0 .567.063.83.19l48.207 23.306c.528.255.91.733 1.04 1.308l11.906 52.368a1.94 1.94 0 0 1-.373 1.636L92.252 124.04c-.365.46-.916.725-1.5.725H37.248a1.91 1.91 0 0 1-1.5-.725L2.39 82.044a1.94 1.94 0 0 1-.373-1.636v-.002l11.905-52.364a1.93 1.93 0 0 1 1.04-1.31L63.17 3.426a1.9 1.9 0 0 1 .831-.19zm17.835 31.942-.994.597-19.806 11.898-17.078-11.081-.444 1.115a5.4 5.4 0 0 0-.38 1.987v16.16l-9.172-5.116-.456.939a5.4 5.4 0 0 0-.538 2.344v29.94c0 .688.328 1.273.573 1.887l-.294.148.613.927c.07.107.11.152.106.145v.002q.08.113.18.242.134.164.255.292.062.07.178.187c.122.119.239.217.34.302.014.01.065.058.162.132.17.13.353.258.556.375l25.827 14.97a5.33 5.33 0 0 0 5.345 0L92.637 88.6c.27-.156.5-.33.706-.498.083-.068.147-.129.198-.175a5 5 0 0 0 .438-.448c.024-.027.08-.085.158-.183.17-.213.331-.445.475-.7.065-.115.077-.153.052-.105q.178-.332.306-.68c-.038.103-.017.071.042-.101l.28-.816-.136-.069c.05-.288.148-.56.148-.863V54.02c0-.678-.126-1.342-.367-1.958l-.415-1.061-11.878 6.796V38.24c0-.69-.133-1.363-.38-1.985zm-1.171 3.002c0 .021.011.04.011.06v20.264q-.001.421-.104.827l-.561 2.242 13.313-7.617c0 .022.012.042.012.065v29.94c0 .373-.068.74-.192 1.103l-.023.067v.002a4 4 0 0 1-.19.43q-.084.157-.033.068a3.4 3.4 0 0 1-.302.442l-.1.114a3.4 3.4 0 0 1-.402.392 3.4 3.4 0 0 1-.445.318L65.82 101.866a3.35 3.35 0 0 1-3.367 0l-25.827-14.97a3 3 0 0 1-.352-.236 1 1 0 0 0-.1-.087 4 4 0 0 1-.216-.188l-.002-.002-.11-.117a4 4 0 0 1-.16-.185l-.093-.123-.083-.125a3.4 3.4 0 0 1-.573-1.871V54.02c0-.152.079-.283.098-.43l10.068 5.615V39.694l.002-.012 15.892 10.314z"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#009f76" fill-rule="evenodd" d="M62.72 1.58a2.94 2.94 0 0 1 2.56 0l48.958 23.67a2.96 2.96 0 0 1 1.596 2.008l12.092 53.184c.2.88-.01 1.801-.57 2.506l-33.88 42.65a2.95 2.95 0 0 1-2.306 1.115H36.83c-.898 0-1.746-.41-2.306-1.115L.644 82.948a2.97 2.97 0 0 1-.57-2.506l12.092-53.184a2.96 2.96 0 0 1 1.596-2.009z" clip-rule="evenodd"/><path fill="#007155" d="M45.023 37.91 4.066 62.885.074 80.443c-.2.88.01 1.802.57 2.506l33.88 42.649a2.95 2.95 0 0 0 2.306 1.115h11.941l44.405-39.318Z"/><path fill="url(#a)" fill-rule="evenodd" d="M81.62 36.192c.205.516.315 1.074.315 1.646v20.58a4.45 4.45 0 0 1-2.001 3.716L65.05 71.916a4.41 4.41 0 0 1-4.847 0l-14.884-9.782a4.44 4.44 0 0 1-1.938-2.972z" clip-rule="evenodd"/><path fill="url(#b)" fill-rule="evenodd" d="M81.822 62.13a4.4 4.4 0 0 1-1.4 1.48L65.54 73.392a4.41 4.41 0 0 1-4.847 0L45.808 63.61a4.45 4.45 0 0 1-2-3.717V39.314c0-.573.11-1.132.315-1.649z" clip-rule="evenodd"/><path fill="url(#c)" fill-rule="evenodd" d="M33.93 51.92a4.45 4.45 0 0 0-.447 1.946v30.407c0 1.586.843 3.053 2.212 3.847l26.23 15.203a4.41 4.41 0 0 0 4.426 0L92.58 88.12a4.44 4.44 0 0 0 1.97-2.398z" clip-rule="evenodd"/><path fill="url(#d)" fill-rule="evenodd" d="M34.222 86.73a4.4 4.4 0 0 0 1.473 1.39l26.23 15.203a4.41 4.41 0 0 0 4.426 0L92.58 88.12a4.45 4.45 0 0 0 2.213-3.847V53.865c0-.564-.107-1.114-.306-1.623z" clip-rule="evenodd"/><defs><linearGradient id="a" x1="239.57" x2="174.075" y1="110.714" y2="205.455" gradientTransform="translate(-1.916 -2.526)scale(.41257)" gradientUnits="userSpaceOnUse"><stop stop-color="#fff"/><stop offset="1" stop-color="#439246"/></linearGradient><linearGradient id="b" x1="235.479" x2="150.083" y1="145.405" y2="299.227" gradientTransform="translate(-1.916 -2.526)scale(.41257)" gradientUnits="userSpaceOnUse"><stop stop-color="#fff"/><stop offset="1" stop-color="#439246"/></linearGradient><linearGradient id="c" x1="49.799" x2="124.559" y1="160.303" y2="281.373" gradientTransform="translate(-1.916 -2.526)scale(.41257)" gradientUnits="userSpaceOnUse"><stop stop-color="#fff"/><stop offset="1" stop-color="#439246"/></linearGradient><linearGradient id="d" x1="75.195" x2="168.121" y1="216.138" y2="394.367" gradientTransform="translate(-1.916 -2.526)scale(.41257)" gradientUnits="userSpaceOnUse"><stop stop-color="#fff"/><stop offset="1" stop-color="#439246"/></linearGradient></defs></svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#009f76" d="M64 1.287c-.438 0-.875.098-1.28.293L13.763 25.25a2.96 2.96 0 0 0-1.596 2.008L.074 80.44c-.2.88.01 1.802.57 2.506l33.88 42.65a2.95 2.95 0 0 0 2.306 1.116h54.34c.898 0 1.747-.41 2.307-1.115l33.878-42.65c.56-.705.77-1.628.57-2.507l-12.091-53.183a2.96 2.96 0 0 0-1.596-2.008L65.28 1.58A2.9 2.9 0 0 0 64 1.287m17.62 34.904c.205.517.316 1.075.316 1.647v20.58c0 .37-.047.734-.135 1.084l12.687-7.26c.2.51.305 1.059.305 1.623v30.408c0 .501-.092.986-.25 1.446l.008.004c-.01.029-.027.055-.037.084a4.5 4.5 0 0 1-.252.564c-.016.029-.027.06-.043.088a4.4 4.4 0 0 1-.395.58q-.064.076-.13.15a5 5 0 0 1-.364.372 4.4 4.4 0 0 1-.748.559L66.35 103.321a4.41 4.41 0 0 1-4.424 0L35.696 88.12a4 4 0 0 1-.462-.31q-.067-.055-.132-.112a4 4 0 0 1-.284-.25 5 5 0 0 1-.146-.154 4 4 0 0 1-.211-.242 4 4 0 0 1-.15-.201q-.046-.059-.088-.12l.007-.003a4.44 4.44 0 0 1-.748-2.454V53.865c0-.686.158-1.349.448-1.945l9.877 5.508V39.314c0-.573.11-1.13.316-1.648l16.846 10.932 20.65-12.407z"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M13.635 109.144c-5.325 0-9.611 3.897-9.611 9.352a9.352 9.352 0 0 0 9.548 9.418c3.247 0 7.144-1.623 8.832-5.39a11.3 11.3 0 0 0 .78-4.612H12.207v2.988h6.819a5.196 5.196 0 0 1-1.883 2.729 6.235 6.235 0 0 1-3.637 1.103c-2.857 0-5.846-2.144-5.846-6.236a5.91 5.91 0 0 1 5.846-6.17 5.26 5.26 0 0 1 3.506 1.234 6.04 6.04 0 0 1 1.365 1.494h4.092c-1.17-3.312-4.742-5.91-8.834-5.91zm12.21.326v2.856h3.182v-2.856zm7.468 0v4.676H31.04v2.467h2.272v10.977h3.183v-10.977h2.338v-2.467h-2.338v-4.676zm8.119 0v18.12h3.7v-8.12l6.042 8.12h4.416l-7.209-9.094 6.56-9.026H51.11l-5.977 8.377v-8.377zm41.435 0v18.12h3.182v-6.69l4.871 6.69h3.637l-5.586-7.534 5.586-5.91h-3.832l-4.676 5.13v-9.806zm-18.77 4.286a3.832 3.832 0 0 0-3.702 2.142v-1.752h-3.051v13.444h3.182v-7.274c0-2.273 1.168-3.379 3.44-3.379h.132zm7.534 0c-3.767 0-6.82 3.248-6.82 7.08s2.533 7.142 6.82 7.142a5.066 5.066 0 0 0 4.547-2.338v1.95h3.182v-13.444h-3.182v1.947a5.066 5.066 0 0 0-4.547-2.337zm30.07 0a6.82 6.82 0 0 0-4.937 2.209 7.079 7.079 0 0 0 .39 10.066 7.014 7.014 0 0 0 10.002-.26 6.69 6.69 0 0 0 1.819-3.637 7.728 7.728 0 0 0-.586-4.287l-2.272 2.405a3.507 3.507 0 0 1-.91 3.57 3.767 3.767 0 0 1-5.13.584l7.468-7.922a7.404 7.404 0 0 0-5.844-2.728zm17.08 0c-2.403-.065-3.57 1.105-4.156 2.209v-1.819h-2.988v13.444h3.183v-7.405c0-1.884.778-3.441 3.051-3.441s2.924 1.558 2.924 3.572v7.274h3.182v-8.12c0-2.338-.78-5.714-5.196-5.714zm-92.935.39v13.444h3.181v-13.444zm75.576 2.389a3.637 3.637 0 0 1 2.162.598l-5.26 5.521a3.572 3.572 0 0 1 .455-4.807 3.637 3.637 0 0 1 2.643-1.312zm-29.336.209a3.897 3.897 0 0 1 3.701 2.338 3.767 3.767 0 0 1 .39 1.883 4.806 4.806 0 0 1-.519 1.882 3.702 3.702 0 0 1-3.572 2.145 4.027 4.027 0 0 1-4.092-4.092 4.027 4.027 0 0 1 4.092-4.156z" /><path fill="#179287" d="M119.3 23.288a2.338 2.338 0 0 0-4.545.844 1.624 1.624 0 0 0 .13.78 53.644 53.644 0 0 1 3.442 19.159 54.424 54.424 0 0 1-47.215 53.904V72.58a39.097 39.097 0 0 0 4.74-1.234V92.65A50.007 50.007 0 0 0 88.195.298a2.403 2.403 0 0 0-3.313 1.039 2.923 2.923 0 0 0-.194 1.039 2.338 2.338 0 0 0 1.169 2.078 45.266 45.266 0 0 1-5.262 81.766v-18.9a7.274 7.274 0 0 0 5.066-6.883 7.144 7.144 0 0 0-3.572-6.3c1.688-16.301 9.157-12.015 9.157-17.21v-2.988C91.245 26.08 73.19.752 64.748.103h-1.56C54.746.753 36.69 26.08 36.69 33.939v2.988c0 5.195 7.47.909 9.158 17.21a7.274 7.274 0 0 0 1.558 13.184V86.22a45.266 45.266 0 0 1-5.325-81.766 2.338 2.338 0 0 0 .974-3.117 2.273 2.273 0 0 0-2.143-1.3 2.143 2.143 0 0 0-1.104.26 50.007 50.007 0 0 0 12.34 92.352V71.347a39.097 39.097 0 0 0 4.74 1.234v25.394A54.424 54.424 0 0 1 9.609 44.07a55.073 55.073 0 0 1 3.443-19.16 2.338 2.338 0 0 0-1.234-2.987 2.598 2.598 0 0 0-.975-.194 2.403 2.403 0 0 0-2.208 1.558 59.1 59.1 0 0 0 52.93 79.817V73.23h4.806v29.874a59.035 59.035 0 0 0 56.697-59.034 57.866 57.866 0 0 0-3.767-20.783zM74.88 56.995a4.87 4.87 0 1 1 6.884 6.884 4.87 4.87 0 1 1-6.884-6.884zm-21.822 6.884a4.806 4.806 0 0 1-6.82 0 4.87 4.87 0 0 1 0-6.884 4.806 4.806 0 0 1 6.82 0 4.87 4.87 0 0 1 0 6.884z" /></svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#179287" d="M123.92 33.219a2.532 2.532 0 0 0-4.923.914 1.758 1.758 0 0 0 .141.844 58.091 58.091 0 0 1 3.727 20.747 58.935 58.935 0 0 1-51.128 58.372V86.598a42.338 42.338 0 0 0 5.134-1.336v23.067A54.153 54.153 0 0 0 90.233 8.322a2.602 2.602 0 0 0-3.587 1.126 3.165 3.165 0 0 0-.21 1.125 2.532 2.532 0 0 0 1.265 2.25 49.019 49.019 0 0 1-5.696 88.544V80.9a7.877 7.877 0 0 0 5.485-7.454 7.736 7.736 0 0 0-3.868-6.822c1.829-17.653 9.917-13.011 9.917-18.637v-3.235c0-8.51-19.552-35.938-28.694-36.642h-1.688c-9.143.704-28.694 28.132-28.694 36.642v3.235c0 5.626 8.088.984 9.916 18.637A7.877 7.877 0 0 0 46.067 80.9v20.466A49.019 49.019 0 0 1 40.3 12.823a2.532 2.532 0 0 0 1.055-3.375 2.461 2.461 0 0 0-2.32-1.407 2.32 2.32 0 0 0-1.196.281A54.153 54.153 0 0 0 51.2 108.33V85.262a42.338 42.338 0 0 0 5.134 1.336v27.498a58.935 58.935 0 0 1-51.2-58.372 59.638 59.638 0 0 1 3.728-20.747 2.532 2.532 0 0 0-1.336-3.235 2.813 2.813 0 0 0-1.055-.211 2.602 2.602 0 0 0-2.391 1.688 63.999 63.999 0 0 0 57.317 86.433v-32.35h5.205v32.35a63.928 63.928 0 0 0 61.396-63.928 62.663 62.663 0 0 0-4.079-22.505zm-48.104 36.5a5.275 5.275 0 1 1 7.455 7.455 5.275 5.275 0 1 1-7.455-7.455zm-23.63 7.455a5.204 5.204 0 0 1-7.385 0 5.275 5.275 0 0 1 0-7.455 5.204 5.204 0 0 1 7.384 0 5.275 5.275 0 0 1 0 7.455z" /></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#179287" d="M86.951.001a2.403 2.403 0 0 0-2.07 1.336 2.923 2.923 0 0 0-.195 1.04 2.338 2.338 0 0 0 1.17 2.075 45.266 45.266 0 0 1-5.262 81.768v-18.9a7.274 7.274 0 0 0 5.066-6.883 7.144 7.144 0 0 0-3.572-6.3c1.688-16.302 9.156-12.015 9.156-17.21V33.94C91.244 26.08 73.19.752 64.748.103h-1.56c-8.442.65-26.496 25.978-26.496 33.836v2.988c0 5.195 7.468.908 9.156 17.21a7.274 7.274 0 0 0 1.558 13.183v18.9a45.266 45.266 0 0 1-5.324-81.768 2.338 2.338 0 0 0 .973-3.115 2.273 2.273 0 0 0-2.143-1.3 2.143 2.143 0 0 0-1.103.261 50.007 50.007 0 0 0 12.34 92.35V71.347a39.097 39.097 0 0 0 4.74 1.232v25.395A54.424 54.424 0 0 1 9.609 44.07a55.073 55.073 0 0 1 3.442-19.16 2.338 2.338 0 0 0-1.233-2.987 2.598 2.598 0 0 0-.976-.195 2.403 2.403 0 0 0-2.207 1.558 59.1 59.1 0 0 0 52.93 79.817V73.23h4.806v29.875a59.035 59.035 0 0 0 56.697-59.035 57.866 57.866 0 0 0-3.767-20.784 2.338 2.338 0 0 0-4.547.846 1.624 1.624 0 0 0 .13.78 53.644 53.644 0 0 1 3.442 19.158 54.424 54.424 0 0 1-47.215 53.904V72.579a39.097 39.097 0 0 0 4.74-1.234V92.65A50.007 50.007 0 0 0 88.194.298a2.403 2.403 0 0 0-1.242-.297Zm-8.043 55.485a4.87 4.87 0 0 1 2.854 8.392 4.87 4.87 0 1 1-6.883-6.885 4.87 4.87 0 0 1 4.03-1.507zm-29.261.09a4.806 4.806 0 0 1 3.41 1.417 4.87 4.87 0 0 1 0 6.885 4.806 4.806 0 0 1-6.819 0 4.87 4.87 0 0 1 0-6.885 4.806 4.806 0 0 1 3.409-1.417zm-36.012 53.568c-5.325 0-9.611 3.896-9.611 9.351a9.352 9.352 0 0 0 9.548 9.418c3.247 0 7.144-1.622 8.832-5.39a11.3 11.3 0 0 0 .78-4.612H12.207v2.989h6.819a5.196 5.196 0 0 1-1.883 2.728 6.235 6.235 0 0 1-3.637 1.104c-2.857 0-5.846-2.145-5.846-6.237a5.91 5.91 0 0 1 5.846-6.17 5.26 5.26 0 0 1 3.506 1.235 6.04 6.04 0 0 1 1.365 1.494h4.092c-1.17-3.312-4.742-5.91-8.834-5.91zm12.21.326v2.856h3.182v-2.856zm7.468 0v4.676H31.04v2.467h2.272v10.976h3.183v-10.976h2.338v-2.467h-2.338v-4.676zm8.119 0v18.12h3.7v-8.12l6.042 8.12h4.416l-7.209-9.095 6.56-9.025H51.11l-5.977 8.377v-8.377zm41.435 0v18.12h3.182v-6.69l4.871 6.69h3.637l-5.586-7.534 5.586-5.91h-3.832l-4.676 5.129v-9.805zm-18.77 4.285a3.832 3.832 0 0 0-3.702 2.143v-1.752h-3.051v13.443h3.182v-7.273c0-2.273 1.168-3.38 3.44-3.38h.132zm7.534 0c-3.767 0-6.82 3.248-6.82 7.08s2.533 7.143 6.82 7.143a5.066 5.066 0 0 0 4.547-2.338v1.95h3.182v-13.444h-3.182v1.947a5.066 5.066 0 0 0-4.547-2.338zm30.07 0a6.82 6.82 0 0 0-4.937 2.21 7.079 7.079 0 0 0 .39 10.066 7.014 7.014 0 0 0 10.002-.26 6.69 6.69 0 0 0 1.819-3.637 7.728 7.728 0 0 0-.586-4.287l-2.272 2.404a3.507 3.507 0 0 1-.91 3.57 3.767 3.767 0 0 1-5.13.585l7.468-7.922a7.404 7.404 0 0 0-5.844-2.729zm17.08 0c-2.403-.065-3.57 1.105-4.156 2.21v-1.82h-2.988v13.444h3.183v-7.404c0-1.884.778-3.442 3.051-3.442s2.924 1.559 2.924 3.573v7.273h3.182v-8.119c0-2.338-.78-5.715-5.196-5.715zm-92.935.39v13.444h3.181v-13.443zm75.576 2.39a3.637 3.637 0 0 1 2.162.597l-5.26 5.522a3.572 3.572 0 0 1 .455-4.807 3.637 3.637 0 0 1 2.643-1.312zm-29.336.208a3.897 3.897 0 0 1 3.701 2.338 3.767 3.767 0 0 1 .39 1.883 4.806 4.806 0 0 1-.519 1.883 3.702 3.702 0 0 1-3.572 2.145 4.027 4.027 0 0 1-4.092-4.092 4.027 4.027 0 0 1 4.092-4.157z" /></svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#ffaff3" d="M50.417 7.19c1.816-5.147 8.57-6.338 12.038-2.122L80.63 27.166a12.189 12.189 0 0 0 9.118 4.44l28.629.697c5.466.133 8.676 6.177 5.735 10.771L108.68 67.177a12.165 12.165 0 0 0-1.415 10.04l8.172 27.411c1.557 5.223-3.2 10.155-8.493 8.78l-27.713-7.2a12.194 12.194 0 0 0-9.989 1.76l-23.578 16.245c-4.504 3.103-10.66.096-10.984-5.345l-1.696-28.554a12.169 12.169 0 0 0-4.763-8.95L5.477 63.993c-4.335-3.31-3.385-10.088 1.706-12.082l26.664-10.447a12.188 12.188 0 0 0 7.048-7.29z"/><path fill="#151515" d="M55.39.154c-3.23.57-6.183 2.715-7.405 6.178l-9.523 26.981a9.598 9.598 0 0 1-5.553 5.744L6.243 49.504c-6.842 2.68-8.165 12.092-2.332 16.547l22.744 17.37a9.571 9.571 0 0 1 3.75 7.047l1.696 28.553c.435 7.325 8.98 11.493 15.034 7.322l23.58-16.245v-.001a9.604 9.604 0 0 1 7.87-1.387l27.714 7.199c7.116 1.849 13.72-4.99 11.623-12.023l-8.17-27.41a9.578 9.578 0 0 1 1.114-7.905l15.432-24.105c3.957-6.181-.504-14.572-7.85-14.751l-28.63-.696a9.595 9.595 0 0 1-7.183-3.497L64.46 3.425C62.127.589 58.619-.417 55.389.153m.869 4.932c1.468-.26 3.07.248 4.206 1.627L78.639 28.81a14.78 14.78 0 0 0 11.052 5.383l28.63.695c3.585.088 5.544 3.783 3.618 6.79L106.508 65.78a14.761 14.761 0 0 0-1.716 12.172l8.171 27.41c1.018 3.415-1.892 6.44-5.363 5.538l-27.714-7.2a14.787 14.787 0 0 0-12.108 2.136l-23.58 16.245c-2.954 2.035-6.722.187-6.933-3.368L35.57 90.16a14.762 14.762 0 0 0-5.775-10.852L7.051 61.939c-2.837-2.167-2.26-6.31 1.078-7.619l26.666-10.447a14.782 14.782 0 0 0 8.545-8.84l9.523-26.98c.594-1.685 1.927-2.71 3.395-2.968"/><path fill="#151515" d="M47.093 72.832a5.082 5.082 0 1 0-1.766-10.01 5.082 5.082 0 0 0 1.766 10.01zm40.945-7.22a5.081 5.081 0 1 0-1.764-10.008 5.081 5.081 0 0 0 1.764 10.008zM63.356 71.7a2.594 2.594 0 0 0-1.434 1.365 2.59 2.59 0 0 0-.048 1.98 6.734 6.734 0 0 0 3.562 3.737h.001c.81.358 1.681.554 2.566.575h.002a6.755 6.755 0 0 0 2.591-.451h.001a6.735 6.735 0 0 0 2.222-1.409h.001a6.74 6.74 0 0 0 2.089-4.722 2.588 2.588 0 0 0-4.952-1.106c-.137.31-.212.645-.22.985a1.55 1.55 0 0 1-.134.595v.002a1.578 1.578 0 0 1-.87.828 1.572 1.572 0 0 1-1.201-.03h-.002a1.573 1.573 0 0 1-.5-.35v-.001a1.568 1.568 0 0 1-.329-.518 2.585 2.585 0 0 0-3.345-1.48z"/></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#ffaff3" d="M56.61.014c-.41.021-.818.067-1.221.138v.002c-3.23.57-6.182 2.714-7.405 6.178l-9.523 26.98a9.599 9.599 0 0 1-5.553 5.745L6.244 49.504C-.598 52.184-1.923 61.596 3.91 66.05l22.746 17.37a9.582 9.582 0 0 1 3.75 7.047l1.696 28.553c.434 7.326 8.978 11.493 15.033 7.323v-.002l23.58-16.244a9.602 9.602 0 0 1 7.87-1.389l27.714 7.2c7.116 1.848 13.72-4.99 11.623-12.022l-8.17-27.412a9.579 9.579 0 0 1 1.113-7.905l15.432-24.103c3.958-6.182-.503-14.573-7.85-14.752l-28.63-.695a9.596 9.596 0 0 1-7.182-3.499L64.459 3.426C62.418.944 59.477-.137 56.609.014zm30.435 55.513a5.082 5.082 0 1 1 .222 10.161 5.082 5.082 0 0 1-.222-10.16zM46.1 62.747a5.083 5.083 0 0 1 .992 10.085 5.082 5.082 0 1 1-.992-10.086zm26.283 7.382a2.59 2.59 0 0 1 1.812.799 2.59 2.59 0 0 1 .713 1.847 6.723 6.723 0 0 1-2.088 4.721h-.002a6.733 6.733 0 0 1-2.22 1.41h-.002a6.75 6.75 0 0 1-2.59.451h-.002a6.74 6.74 0 0 1-2.567-.576h-.001a6.758 6.758 0 0 1-3.563-3.736 2.594 2.594 0 0 1 .63-2.805 2.59 2.59 0 0 1 1.847-.715 2.595 2.595 0 0 1 2.35 1.655c.075.192.186.368.328.517v.002c.143.149.312.266.5.35v.002h.002a1.576 1.576 0 0 0 1.201.03l.002-.003a1.552 1.552 0 0 0 .868-.828h.002v-.002c.083-.188.127-.389.132-.594a2.593 2.593 0 0 1 1.653-2.353c.317-.122.654-.18.994-.172z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.7 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.0 KiB

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