feat(templates): add stickers (#6629)

This commit is contained in:
EYHN 2024-04-19 06:47:29 +00:00
parent 4085cc6728
commit a2fa9149ff
No known key found for this signature in database
GPG Key ID: 46C9E26A75AB276C
97 changed files with 2153 additions and 7 deletions

View File

@ -12,4 +12,4 @@ static
web-static
public
packages/frontend/i18n/src/i18n-generated.ts
packages/frontend/templates/edgeless-templates.gen.ts
packages/frontend/templates/*.gen.ts

View File

@ -16,8 +16,7 @@ packages/frontend/i18n/src/i18n-generated.ts
packages/frontend/graphql/src/graphql/index.ts
tests/affine-legacy/**/static
.yarnrc.yml
packages/frontend/templates/edgeless-templates.gen.ts
packages/frontend/templates/templates.gen.ts
packages/frontend/templates/*.gen.ts
packages/frontend/templates/onboarding
# auto-generated by NAPI-RS

View File

@ -1,5 +1,11 @@
import { builtInTemplates } from '@affine/templates/edgeless';
import { builtInTemplates as builtInEdgelessTemplates } from '@affine/templates/edgeless';
import { builtInTemplates as builtInStickersTemplates } from '@affine/templates/stickers';
import type { TemplateManager } from '@blocksuite/blocks';
import { EdgelessTemplatePanel } from '@blocksuite/blocks';
EdgelessTemplatePanel.templates.extend(builtInTemplates as TemplateManager);
EdgelessTemplatePanel.templates.extend(
builtInStickersTemplates as TemplateManager
);
EdgelessTemplatePanel.templates.extend(
builtInEdgelessTemplates as TemplateManager
);

View File

@ -0,0 +1,184 @@
import { createHash } from 'node:crypto';
import fs from 'node:fs/promises';
import { basename, extname, join } from 'node:path';
import { fileURLToPath } from 'node:url';
const data = {};
const __dirname = join(fileURLToPath(import.meta.url), '..');
const categories = Array.from(
await fs.readdir(join(__dirname, './stickers'))
).filter(v => v !== '.DS_Store');
let i = 0;
for (const category of categories) {
const stickers = Array.from(
await fs.readdir(join(__dirname, './stickers', category, 'Cover'))
).filter(v => v !== '.DS_Store');
data[category] = {};
for (const sticker of stickers) {
const content = await fs.readFile(
join(__dirname, './stickers', category, 'Content', sticker),
null
);
const hash = createHash('sha256').update(content).digest('base64');
const id = (i++).toString().padStart(3, '0');
const name = basename(sticker, extname(sticker));
data[category][basename(sticker, extname(sticker))] = {
importStatement: `import stickerCover${id} from './stickers/${category}/Cover/${sticker}';
import stickerContent${id} from './stickers/${category}/Content/${sticker}';`,
template: `{
name: ${JSON.stringify(name)},
cover: stickerCover${id},
content: stickerContent${id},
hash: ${JSON.stringify(hash)},
}`,
};
}
}
const importStatements = Object.values(data)
.map(v => Object.values(v).map(v => v.importStatement))
.flat()
.join('\n');
const templates = `const templates = {
${Object.entries(data)
.map(
([category, stickers]) =>
`${JSON.stringify(category)}: [${Object.entries(stickers)
.map(
([_name, data]) => ` buildStickerTemplate(${data.template}),`
)
.join('\n')}],`
)
.join('\n')}
}`;
function buildStickerTemplate(data) {
return {
name: data.name,
preview: data.cover,
type: 'sticker',
assets: {
[data.hash]: data.content,
},
content: {
type: 'page',
meta: {
id: 'doc:home',
title: 'Sticker',
createDate: 1701765881935,
tags: [],
},
blocks: {
type: 'block',
id: 'block:1VxnfD_8xb',
flavour: 'affine:page',
props: {
title: {
'$blocksuite:internal:text$': true,
delta: [
{
insert: 'Sticker',
},
],
},
},
children: [
{
type: 'block',
id: 'block:pcmYJQ63hX',
flavour: 'affine:surface',
props: {
elements: {},
},
children: [
{
type: 'block',
id: 'block:N24al1Qgl7',
flavour: 'affine:image',
props: {
caption: '',
sourceId: data.hash,
width: 0,
height: 0,
index: 'b0D',
xywh: '[0,0,460,430]',
rotate: 0,
},
children: [],
},
],
},
],
},
},
};
}
const code = `
/* eslint-disable */
// @ts-nocheck
${importStatements}
${buildStickerTemplate.toString()}
function lcs(text1: string, text2: string) {
const dp: number[][] = Array.from({ length: text1.length + 1 })
.fill(null)
.map(() => Array.from<number>({length: text2.length + 1}).fill(0));
for (let i = 1; i <= text1.length; i++) {
for (let j = 1; j <= text2.length; j++) {
if (text1[i - 1] === text2[j - 1]) {
dp[i][j] = dp[i - 1][j - 1] + 1;
} else {
dp[i][j] = Math.max(dp[i - 1][j], dp[i][j - 1]);
}
}
}
return dp[text1.length][text2.length];
}
${templates}
export const builtInTemplates = {
list: async (category: string) => {
return templates[category] ?? []
},
categories: async () => {
return Object.keys(templates)
},
search: async(query: string) => {
const candidates: unknown[] = [];
const cates = Object.keys(templates);
query = query.toLowerCase();
for(const cate of cates) {
const templatesOfCate = templates[cate];
for(const temp of templatesOfCate) {
if(lcs(query, temp.name.toLowerCase()) === query.length) {
candidates.push(temp);
}
}
}
return candidates;
},
}
`;
await fs.writeFile(join(__dirname, './stickers-templates.gen.ts'), code, {
encoding: 'utf-8',
});

View File

@ -4,12 +4,13 @@
"sideEffect": false,
"version": "0.14.0",
"scripts": {
"postinstall": "node ./build-edgeless.mjs"
"postinstall": "node ./build-edgeless.mjs && node ./build-stickers.mjs"
},
"type": "module",
"exports": {
"./onboarding.zip": "./onboarding/onboarding.zip",
"./edgeless": "./edgeless-templates.gen.ts",
"./stickers": "./stickers-templates.gen.ts",
"./build-edgeless": "./build-edgeless.mjs"
},
"devDependencies": {

View File

@ -0,0 +1,481 @@
/* eslint-disable */
// @ts-nocheck
import stickerCover000 from './stickers/Cheeky Pigges/Cover/Crybaby.svg';
import stickerContent000 from './stickers/Cheeky Pigges/Content/Crybaby.svg';
import stickerCover001 from './stickers/Cheeky Pigges/Cover/Drool.svg';
import stickerContent001 from './stickers/Cheeky Pigges/Content/Drool.svg';
import stickerCover002 from './stickers/Cheeky Pigges/Cover/Fuming.svg';
import stickerContent002 from './stickers/Cheeky Pigges/Content/Fuming.svg';
import stickerCover003 from './stickers/Cheeky Pigges/Cover/Hi~.svg';
import stickerContent003 from './stickers/Cheeky Pigges/Content/Hi~.svg';
import stickerCover004 from './stickers/Cheeky Pigges/Cover/Holding Tears.svg';
import stickerContent004 from './stickers/Cheeky Pigges/Content/Holding Tears.svg';
import stickerCover005 from './stickers/Cheeky Pigges/Cover/Love Blows.svg';
import stickerContent005 from './stickers/Cheeky Pigges/Content/Love Blows.svg';
import stickerCover006 from './stickers/Cheeky Pigges/Cover/Me_ Really_.svg';
import stickerContent006 from './stickers/Cheeky Pigges/Content/Me_ Really_.svg';
import stickerCover007 from './stickers/Cheeky Pigges/Cover/OK.svg';
import stickerContent007 from './stickers/Cheeky Pigges/Content/OK.svg';
import stickerCover008 from './stickers/Cheeky Pigges/Cover/Sassy Flick.svg';
import stickerContent008 from './stickers/Cheeky Pigges/Content/Sassy Flick.svg';
import stickerCover009 from './stickers/Cheeky Pigges/Cover/Shockwave.svg';
import stickerContent009 from './stickers/Cheeky Pigges/Content/Shockwave.svg';
import stickerCover010 from './stickers/Cheeky Pigges/Cover/Snooze Drool.svg';
import stickerContent010 from './stickers/Cheeky Pigges/Content/Snooze Drool.svg';
import stickerCover011 from './stickers/Cheeky Pigges/Cover/Swag.svg';
import stickerContent011 from './stickers/Cheeky Pigges/Content/Swag.svg';
import stickerCover012 from './stickers/Cheeky Pigges/Cover/Sweatdrop.svg';
import stickerContent012 from './stickers/Cheeky Pigges/Content/Sweatdrop.svg';
import stickerCover013 from './stickers/Cheeky Pigges/Cover/Thumbs Up.svg';
import stickerContent013 from './stickers/Cheeky Pigges/Content/Thumbs Up.svg';
import stickerCover014 from './stickers/Cheeky Pigges/Cover/What_.svg';
import stickerContent014 from './stickers/Cheeky Pigges/Content/What_.svg';
import stickerCover015 from './stickers/Contorted Stickers/Cover/AFFiNE.svg';
import stickerContent015 from './stickers/Contorted Stickers/Content/AFFiNE.svg';
import stickerCover016 from './stickers/Contorted Stickers/Cover/AI.svg';
import stickerContent016 from './stickers/Contorted Stickers/Content/AI.svg';
import stickerCover017 from './stickers/Contorted Stickers/Cover/Cat.svg';
import stickerContent017 from './stickers/Contorted Stickers/Content/Cat.svg';
import stickerCover018 from './stickers/Contorted Stickers/Cover/Closed.svg';
import stickerContent018 from './stickers/Contorted Stickers/Content/Closed.svg';
import stickerCover019 from './stickers/Contorted Stickers/Cover/Eyes.svg';
import stickerContent019 from './stickers/Contorted Stickers/Content/Eyes.svg';
import stickerCover020 from './stickers/Contorted Stickers/Cover/Fire.svg';
import stickerContent020 from './stickers/Contorted Stickers/Content/Fire.svg';
import stickerCover021 from './stickers/Contorted Stickers/Cover/Info.svg';
import stickerContent021 from './stickers/Contorted Stickers/Content/Info.svg';
import stickerCover022 from './stickers/Contorted Stickers/Cover/King.svg';
import stickerContent022 from './stickers/Contorted Stickers/Content/King.svg';
import stickerCover023 from './stickers/Contorted Stickers/Cover/Love Face.svg';
import stickerContent023 from './stickers/Contorted Stickers/Content/Love Face.svg';
import stickerCover024 from './stickers/Contorted Stickers/Cover/Love.svg';
import stickerContent024 from './stickers/Contorted Stickers/Content/Love.svg';
import stickerCover025 from './stickers/Contorted Stickers/Cover/Notice.svg';
import stickerContent025 from './stickers/Contorted Stickers/Content/Notice.svg';
import stickerCover026 from './stickers/Contorted Stickers/Cover/Pin.svg';
import stickerContent026 from './stickers/Contorted Stickers/Content/Pin.svg';
import stickerCover027 from './stickers/Contorted Stickers/Cover/Question.svg';
import stickerContent027 from './stickers/Contorted Stickers/Content/Question.svg';
import stickerCover028 from './stickers/Contorted Stickers/Cover/Smile Face.svg';
import stickerContent028 from './stickers/Contorted Stickers/Content/Smile Face.svg';
import stickerCover029 from './stickers/Contorted Stickers/Cover/Stop.svg';
import stickerContent029 from './stickers/Contorted Stickers/Content/Stop.svg';
import stickerCover030 from './stickers/Paper/Cover/+1.svg';
import stickerContent030 from './stickers/Paper/Content/+1.svg';
import stickerCover031 from './stickers/Paper/Cover/A lot of question.svg';
import stickerContent031 from './stickers/Paper/Content/A lot of question.svg';
import stickerCover032 from './stickers/Paper/Cover/AFFiNE AI.svg';
import stickerContent032 from './stickers/Paper/Content/AFFiNE AI.svg';
import stickerCover033 from './stickers/Paper/Cover/Arrow.svg';
import stickerContent033 from './stickers/Paper/Content/Arrow.svg';
import stickerCover034 from './stickers/Paper/Cover/Atention.svg';
import stickerContent034 from './stickers/Paper/Content/Atention.svg';
import stickerCover035 from './stickers/Paper/Cover/Blue Screen.svg';
import stickerContent035 from './stickers/Paper/Content/Blue Screen.svg';
import stickerCover036 from './stickers/Paper/Cover/Boom.svg';
import stickerContent036 from './stickers/Paper/Content/Boom.svg';
import stickerCover037 from './stickers/Paper/Cover/Cool.svg';
import stickerContent037 from './stickers/Paper/Content/Cool.svg';
import stickerCover038 from './stickers/Paper/Cover/Dino.svg';
import stickerContent038 from './stickers/Paper/Content/Dino.svg';
import stickerCover039 from './stickers/Paper/Cover/Histogram.svg';
import stickerContent039 from './stickers/Paper/Content/Histogram.svg';
import stickerCover040 from './stickers/Paper/Cover/Local First.svg';
import stickerContent040 from './stickers/Paper/Content/Local First.svg';
import stickerCover041 from './stickers/Paper/Cover/Medal.svg';
import stickerContent041 from './stickers/Paper/Content/Medal.svg';
import stickerCover042 from './stickers/Paper/Cover/Notice.svg';
import stickerContent042 from './stickers/Paper/Content/Notice.svg';
import stickerCover043 from './stickers/Paper/Cover/Pin.svg';
import stickerContent043 from './stickers/Paper/Content/Pin.svg';
import stickerCover044 from './stickers/Paper/Cover/Star.svg';
import stickerContent044 from './stickers/Paper/Content/Star.svg';
function buildStickerTemplate(data) {
return {
name: data.name,
preview: data.cover,
type: 'sticker',
assets: {
[data.hash]: data.content,
},
content: {
type: 'page',
meta: {
id: 'doc:home',
title: 'Sticker',
createDate: 1701765881935,
tags: [],
},
blocks: {
type: 'block',
id: 'block:1VxnfD_8xb',
flavour: 'affine:page',
props: {
title: {
'$blocksuite:internal:text$': true,
delta: [
{
insert: 'Sticker',
},
],
},
},
children: [
{
type: 'block',
id: 'block:pcmYJQ63hX',
flavour: 'affine:surface',
props: {
elements: {},
},
children: [
{
type: 'block',
id: 'block:N24al1Qgl7',
flavour: 'affine:image',
props: {
caption: '',
sourceId: data.hash,
width: 0,
height: 0,
index: 'b0D',
xywh: '[0,0,460,430]',
rotate: 0,
},
children: [],
},
],
},
],
},
},
};
}
function lcs(text1: string, text2: string) {
const dp: number[][] = Array.from({ length: text1.length + 1 })
.fill(null)
.map(() => Array.from<number>({ length: text2.length + 1 }).fill(0));
for (let i = 1; i <= text1.length; i++) {
for (let j = 1; j <= text2.length; j++) {
if (text1[i - 1] === text2[j - 1]) {
dp[i][j] = dp[i - 1][j - 1] + 1;
} else {
dp[i][j] = Math.max(dp[i - 1][j], dp[i][j - 1]);
}
}
}
return dp[text1.length][text2.length];
}
const templates = {
'Cheeky Pigges': [
buildStickerTemplate({
name: 'Crybaby',
cover: stickerCover000,
content: stickerContent000,
hash: 'bRWBcaZveq6swjn8MwKVISsVnAr2tf4ZHTSTU+eRA5Q=',
}),
buildStickerTemplate({
name: 'Drool',
cover: stickerCover001,
content: stickerContent001,
hash: 'BUwkYl7SHNQCypB/SvkggKwAD3XxCRUPV6dorpW/ki0=',
}),
buildStickerTemplate({
name: 'Fuming',
cover: stickerCover002,
content: stickerContent002,
hash: 'Iu2DZ5PecYn6Rg7ONIzLqIVZa2v5WYnRKkMv8qTD8a8=',
}),
buildStickerTemplate({
name: 'Hi~',
cover: stickerCover003,
content: stickerContent003,
hash: 'h6r0wW+eIhWUF1AkN/EnHv+q8VfpZ4NOQKKTsbU8RPc=',
}),
buildStickerTemplate({
name: 'Holding Tears',
cover: stickerCover004,
content: stickerContent004,
hash: 'NnXjSqFfmw/D3Ne13JOx0yXIWtA9Exm6hggPGDgDfgc=',
}),
buildStickerTemplate({
name: 'Love Blows',
cover: stickerCover005,
content: stickerContent005,
hash: 'Oggqz68tzBBYevbwcwXqZjb4im48+f3hh94wf8RS+Ok=',
}),
buildStickerTemplate({
name: 'Me_ Really_',
cover: stickerCover006,
content: stickerContent006,
hash: 'W8dfy2MD+Fu2VOIPcYfHOuPNBnEIWcFg8TJJeta9iOc=',
}),
buildStickerTemplate({
name: 'OK',
cover: stickerCover007,
content: stickerContent007,
hash: 'aTpuWm7bxzUevhFn/xyIz0HO5YD+I4GmdoPvmw590PY=',
}),
buildStickerTemplate({
name: 'Sassy Flick',
cover: stickerCover008,
content: stickerContent008,
hash: 'ai5PdJq184Vxlagtbo5fo90RIvT7K0kQtKlhFF0T3h0=',
}),
buildStickerTemplate({
name: 'Shockwave',
cover: stickerCover009,
content: stickerContent009,
hash: 'NfiIZ+FHd2XWYF8L7pp8X1M3nGTM3+005VUtCOchld8=',
}),
buildStickerTemplate({
name: 'Snooze Drool',
cover: stickerCover010,
content: stickerContent010,
hash: 'HiRDmqZNvnKQDBX05caQF4Fg9PHh4/ZS0n/alWZcQ/M=',
}),
buildStickerTemplate({
name: 'Swag',
cover: stickerCover011,
content: stickerContent011,
hash: '4bEGq5+p+s6HfbtbVNwGEvEg+YEQ8wA8NA7Uj/vxTBE=',
}),
buildStickerTemplate({
name: 'Sweatdrop',
cover: stickerCover012,
content: stickerContent012,
hash: '6axmrPIHx4ahOGB/TtjLOPh4J6HYggLxxx0VGxnMu2E=',
}),
buildStickerTemplate({
name: 'Thumbs Up',
cover: stickerCover013,
content: stickerContent013,
hash: 'r97GwoejPTxjumyvS9kdAnB16nZvlM81xsHo0FqdUrM=',
}),
buildStickerTemplate({
name: 'What_',
cover: stickerCover014,
content: stickerContent014,
hash: 'JqWfcP9Q0kGE4wDuVZCi4lW2U7O15trpL++fdNrRJvQ=',
}),
],
'Contorted Stickers': [
buildStickerTemplate({
name: 'AFFiNE',
cover: stickerCover015,
content: stickerContent015,
hash: 'i3piAMnoD4STQnEjTrAe/ZRdwHcD34n+sJZY8IN1blg=',
}),
buildStickerTemplate({
name: 'AI',
cover: stickerCover016,
content: stickerContent016,
hash: 'VZJPB8ZBVtiZ+m04KNtlguY/t9VLx4itHILIQ3l1MRw=',
}),
buildStickerTemplate({
name: 'Cat',
cover: stickerCover017,
content: stickerContent017,
hash: 'IS6xbnAo5WXDRxnP98UBkdOP2Zt2luQXEojcLfnfsR4=',
}),
buildStickerTemplate({
name: 'Closed',
cover: stickerCover018,
content: stickerContent018,
hash: 'wzrJyCiyflFnyvvHdH2XONsuwbuw119wiFCekvopsmQ=',
}),
buildStickerTemplate({
name: 'Eyes',
cover: stickerCover019,
content: stickerContent019,
hash: 'eT4Nbl90OC9ivTjRBmEabaWqjdmITjCgOtTJNSJu1SU=',
}),
buildStickerTemplate({
name: 'Fire',
cover: stickerCover020,
content: stickerContent020,
hash: 'cQnt7T9qxI5+It+reeo3E4XVA3HA89L2myi1k2EJfn8=',
}),
buildStickerTemplate({
name: 'Info',
cover: stickerCover021,
content: stickerContent021,
hash: 'kwKlgzVYNRk4AyOJs3Xtyt0vMWovo+7BfEqaWndDInM=',
}),
buildStickerTemplate({
name: 'King',
cover: stickerCover022,
content: stickerContent022,
hash: 'W+RCNTaadPNEI9OALAGHqv1cGmYD1y7KxIRGLsbr+DM=',
}),
buildStickerTemplate({
name: 'Love Face',
cover: stickerCover023,
content: stickerContent023,
hash: '51B1S9eZ1rgxT+zG5npI/5l1sGss6dTVYiyut5fNPrs=',
}),
buildStickerTemplate({
name: 'Love',
cover: stickerCover024,
content: stickerContent024,
hash: 'fK5Bk7hxwSEHuNQ2WfO+ysII/T20z37P1JvLf00ocUQ=',
}),
buildStickerTemplate({
name: 'Notice',
cover: stickerCover025,
content: stickerContent025,
hash: 'RS787c3FcijjBEhKrKFa6KwB8ZINUD5MSCEMWL7F53w=',
}),
buildStickerTemplate({
name: 'Pin',
cover: stickerCover026,
content: stickerContent026,
hash: 'HDozRCXEtlDfNFFs3sSozkvXUVAP3XXd3zQVI8aW1ak=',
}),
buildStickerTemplate({
name: 'Question',
cover: stickerCover027,
content: stickerContent027,
hash: 'bvNeY3Q+At8NxFzcjTYx/mn3YnJkbUhh6XEBp3xB0Uk=',
}),
buildStickerTemplate({
name: 'Smile Face',
cover: stickerCover028,
content: stickerContent028,
hash: 'nBVc87wjO0NnM4utzjOLxjUzFjeFcf90C0jkgrpBhrA=',
}),
buildStickerTemplate({
name: 'Stop',
cover: stickerCover029,
content: stickerContent029,
hash: 'oH6E3y8ZpdgrMGbtcSX5k3NASEkgayohDCEoO0eU7hE=',
}),
],
Paper: [
buildStickerTemplate({
name: '+1',
cover: stickerCover030,
content: stickerContent030,
hash: 'FEF1FPZ9H1lIO54e6gP5RlNNZqukz3ADuzPFgog5qH4=',
}),
buildStickerTemplate({
name: 'A lot of question',
cover: stickerCover031,
content: stickerContent031,
hash: 'yKPa7vqOxC6rh+e0SVdlp0RwMWQ9mzDKTtE5g2UnHGk=',
}),
buildStickerTemplate({
name: 'AFFiNE AI',
cover: stickerCover032,
content: stickerContent032,
hash: 'FwBs2WApEGkiFmu1XR4fHZ/7fOlSsSBdYEyGs2lDeLk=',
}),
buildStickerTemplate({
name: 'Arrow',
cover: stickerCover033,
content: stickerContent033,
hash: 'evuSkommPr7PBAWCioYDRQpKPZGoY6izIGev2C8Xdt0=',
}),
buildStickerTemplate({
name: 'Atention',
cover: stickerCover034,
content: stickerContent034,
hash: 'Lmvftjmkw5oQEyZ2VP6eTohbXgQyEtNWKkrg9AbDknI=',
}),
buildStickerTemplate({
name: 'Blue Screen',
cover: stickerCover035,
content: stickerContent035,
hash: '30OHymd5x+3zr/5KxQm3DzVfxyWWAf0QnmfHpIOoLzQ=',
}),
buildStickerTemplate({
name: 'Boom',
cover: stickerCover036,
content: stickerContent036,
hash: 'uyw/4AyDe7tWB4FSzFDP2PF9tEPYYPQi3O24R+g+d20=',
}),
buildStickerTemplate({
name: 'Cool',
cover: stickerCover037,
content: stickerContent037,
hash: '3OujPx/YOY1MTqmgrbWaNDJlJeoLNvTWw96gW22rxps=',
}),
buildStickerTemplate({
name: 'Dino',
cover: stickerCover038,
content: stickerContent038,
hash: 'j13ZqHGUnVdGW3/1uWw/sFYeHj1SFoNsi5JwrTvpC+k=',
}),
buildStickerTemplate({
name: 'Histogram',
cover: stickerCover039,
content: stickerContent039,
hash: 'A1oGPUmv+Ypb+W7/jPgpSsVGA71J8njyr9f+97UnJQg=',
}),
buildStickerTemplate({
name: 'Local First',
cover: stickerCover040,
content: stickerContent040,
hash: 'LFIRZK4TswzJvThRO2Vch/aqfY2UZ6kjAyAEsQS+hHM=',
}),
buildStickerTemplate({
name: 'Medal',
cover: stickerCover041,
content: stickerContent041,
hash: 'cMIe6PYQLi0s9ryW3fbiXA9ACs3YsQFDtKjlfliXTC8=',
}),
buildStickerTemplate({
name: 'Notice',
cover: stickerCover042,
content: stickerContent042,
hash: 'oafBAmM8MB094GI9I4U2iG6TWoZpCoa4nDmGY2eH/Kw=',
}),
buildStickerTemplate({
name: 'Pin',
cover: stickerCover043,
content: stickerContent043,
hash: 'kEy0pTA3dsClFtIwaJJV9NZQvn2xib+biyFJvRp9tzM=',
}),
buildStickerTemplate({
name: 'Star',
cover: stickerCover044,
content: stickerContent044,
hash: 'oDoFPfrctM+0XAZLrs7btV7MqMpyvhqUzCmiONhOzX8=',
}),
],
};
export const builtInTemplates = {
list: async (category: string) => {
return templates[category] ?? [];
},
categories: async () => {
return Object.keys(templates);
},
search: async (query: string) => {
const candidates: unknown[] = [];
const cates = Object.keys(templates);
query = query.toLowerCase();
for (const cate of cates) {
const templatesOfCate = templates[cate];
for (const temp of templatesOfCate) {
if (lcs(query, temp.name.toLowerCase()) === query.length) {
candidates.push(temp);
}
}
}
return candidates;
},
};

View File

@ -0,0 +1,16 @@
<svg width="360" height="360" viewBox="0 0 360 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M60.3154 263.059C53.7866 250.209 50.9679 239.103 49.6161 231.57C43.72 198.98 53.7722 170.708 60.977 150.425C63.9682 142.006 66.9163 135.259 68.9583 130.828C65.435 126.74 58.259 117.264 56.3032 103.37C54.8939 93.3933 56.749 85.2316 58.2446 80.4861C65.8521 78.8852 78.349 77.2129 93.3051 79.7143C104.105 81.5153 112.676 84.9171 118.615 87.8045C130.566 85.6032 144.544 83.8308 160.205 83.3591C183.185 82.6445 203.117 84.9028 218.907 87.8045C227.795 84.0166 243.829 78.5994 264.178 79.4427C275.021 79.8858 284.124 81.9869 290.97 84.1453C291.372 89.7627 291.3 97.7671 289.028 107.029C286.785 116.134 283.204 123.238 280.27 128.084C282.686 134.488 286.209 143.978 290.222 155.571C299.469 182.214 304.085 195.536 307.148 211.673C309.161 222.308 311.232 237.831 310.686 257.27C296.88 262.659 277.135 269.42 252.745 274.637C192.633 287.501 145.306 282.169 131.846 280.411C113.812 278.067 88.9333 273.35 60.3298 263.059H60.3154Z" fill="#FCEAF0"/>
<path d="M219.971 175.224C234.467 168.849 253.594 175.067 261.316 188.746C266.278 197.522 266.752 209.786 259.432 219.349C251.652 229.526 237.933 232.842 226.73 230.026C210.494 225.953 200.399 209.172 203.807 194.435C203.994 193.635 207.172 180.842 219.971 175.21V175.224Z" fill="#F7D0DD"/>
<path d="M84.432 175.224C98.9279 168.849 118.054 175.067 125.777 188.746C130.738 197.522 131.213 209.786 123.893 219.349C116.113 229.526 102.394 232.842 91.191 230.026C74.9551 225.953 64.8597 209.172 68.268 194.435C68.4549 193.635 71.6331 180.842 84.432 175.21V175.224Z" fill="#F7D0DD"/>
<path d="M166.302 231.498C178.641 231.598 198.515 226.924 201.693 214.675C205.058 201.668 188.319 185.016 170.674 182.929C149.606 180.442 127.546 198.766 129.645 212.345C131.472 224.152 151.447 231.37 166.302 231.498Z" fill="#F7D0DD"/>
<path d="M166.302 235.787C178.828 235.701 195.581 232.642 203.146 221.536C211.444 209.358 202.297 195.05 192.144 187.403C178.555 177.154 161.283 175.953 146.14 183.629C135.427 189.061 122.038 201.482 125.777 214.875C130.12 230.441 152.453 235.401 166.288 235.787C171.839 235.944 171.839 227.368 166.288 227.21C156.825 226.953 133.845 223.251 133.816 210.272C133.801 196.265 154.884 187.131 166.432 186.988C177.979 186.845 198.688 197.337 197.796 211.616C196.976 224.495 176.038 227.139 166.288 227.21C160.737 227.253 160.722 235.829 166.288 235.787H166.302Z" fill="#3E302E"/>
<path d="M152.799 208.915C153.374 208.886 153.101 209.029 152.942 208.872C152.971 208.9 152.166 208.329 152.597 208.714C152.942 209.029 152.511 208.543 152.439 208.414C152.209 207.985 152.396 208.9 152.41 208.386C152.41 208 152.281 207.528 152.353 208.143C152.065 208.143 152.439 208.814 152.353 208.143L152.151 208.457L152.367 208.143C153.072 207.728 152.108 208.143 152.64 208C153.288 207.814 153.575 207.828 154.194 208.028C153.705 207.528 154.582 208.143 154.194 208.028C153.848 207.657 154.194 207.628 154.122 207.914C154.078 208.128 154.107 208.4 154.064 208.629C154.165 207.971 153.978 208.586 154.007 208.629C154.007 208.629 154.28 208.043 153.906 208.657C153.791 208.843 152.971 208.972 153.92 208.786C156.207 208.329 157.515 205.627 156.94 203.512C156.279 201.139 153.92 200.067 151.634 200.51C147.435 201.339 144.904 205.77 145.723 209.801C146.543 213.832 150.785 217.205 154.984 216.204C158.551 215.347 161.096 211.616 160.967 208.014C160.823 203.755 157.127 200.124 152.77 200.353C150.44 200.481 148.456 202.239 148.456 204.641C148.456 206.871 150.426 209.057 152.77 208.929L152.799 208.915Z" fill="#3E302E"/>
<path d="M173.723 209.601C173.119 209.529 172.96 209.472 172.558 209.043C172.946 209.458 172.63 209.329 172.615 208.857C172.586 208.3 172.414 209.315 172.644 208.772C172.932 208.085 172.313 209.315 172.673 208.714C172.989 208.171 172.241 209.115 172.687 208.686C172.773 208.6 173.363 208.2 172.975 208.414C172.586 208.629 173.377 208.271 173.507 208.271C173.679 208.271 173.924 208.429 174.068 208.414C174.327 208.386 174.197 208.786 173.967 208.314C174.226 208.829 174.341 209.015 174.24 209.629C174.355 208.986 174.154 209.529 174.183 209.586C174.413 209.215 174.442 209.143 174.269 209.386C174.125 209.558 174.14 209.558 174.298 209.386C174.643 209.343 174.168 209.458 173.981 209.529C173.521 209.701 174.816 209.558 173.723 209.586C176.052 209.529 178.037 207.657 178.037 205.298C178.037 202.94 176.067 200.953 173.723 201.01C169.638 201.096 166.245 204.283 165.784 208.3C165.267 212.788 169.006 216.762 173.507 216.847C177.706 216.933 180.927 213.303 181.201 209.329C181.33 207.371 180.64 205.47 179.417 203.955C177.936 202.096 176.024 201.282 173.708 201.01C171.393 200.739 169.394 203.168 169.394 205.298C169.394 207.842 171.379 209.315 173.708 209.586L173.723 209.601Z" fill="#3E302E"/>
<path d="M59.7259 262.673C46.9413 216.933 54.7789 169.435 77.7307 128.298C80.4199 123.467 72.9706 119.136 70.2814 123.967C46.2367 167.077 38.0108 217.048 51.4138 264.96C52.895 270.277 61.2215 268.019 59.7402 262.673H59.7259Z" fill="#3E302E"/>
<path d="M270.391 127.255C294.55 166.405 306.918 211.359 306.357 257.27C306.285 262.787 314.914 262.787 314.986 257.27C315.575 209.929 302.762 163.304 277.84 122.924C274.935 118.221 267.471 122.524 270.391 127.255Z" fill="#3E302E"/>
<path d="M71.9208 129.671C61.6673 116.692 58.259 100.211 63.0334 84.3597L60.0135 87.3613C69.1597 85.5318 78.5216 85.0029 87.8116 85.932C93.5639 86.518 99.2587 87.7044 104.781 89.4053C109.009 90.7061 113.338 93.5076 117.58 94.4653C120.931 95.2229 124.857 93.865 128.25 93.3504C132.982 92.6214 137.727 92.0354 142.487 91.5637C153.633 90.4774 164.85 90.0628 176.052 90.3344C187.025 90.606 197.997 91.4922 208.855 93.0931C212.508 93.6363 216.995 95.2514 220.705 94.6797C223.782 94.208 226.975 92.5356 229.995 91.7066C249.768 86.2321 270.577 86.1178 290.466 91.0205L287.302 86.8897C288.151 100.926 285.059 114.419 278.286 126.769C275.625 131.614 283.074 135.945 285.735 131.1C293.213 117.478 296.866 102.413 295.931 86.8897C295.816 85.0315 294.68 83.2305 292.767 82.7588C273.281 77.9561 252.947 77.5845 233.331 82.0298C229.233 82.9589 225.278 84.5312 221.194 85.446C216.851 86.418 212.191 84.96 207.762 84.3597C196.789 82.8588 185.731 81.9583 174.643 81.7439C163.138 81.5295 151.605 82.0155 140.158 83.2448C132.277 84.0738 123.16 87.4042 115.854 84.3597C97.4467 76.6554 77.2129 75.1832 57.7269 79.0853C56.2601 79.3855 55.124 80.7148 54.7069 82.087C48.969 101.14 53.6284 120.308 65.8089 135.745C69.2316 140.091 75.3003 133.973 71.9064 129.685L71.9208 129.671Z" fill="#3E302E"/>
<path d="M106.406 185.43C106.003 198.766 106.003 212.488 104.033 225.695C102.063 238.903 100.395 252.153 100.15 265.775C99.9491 276.809 117.206 276.824 117.407 265.775C117.666 252.382 119.478 239.674 121.204 226.481C122.93 213.288 123.26 199.081 123.677 185.43C124.008 174.395 106.751 174.395 106.42 185.43H106.406Z" fill="#1E96EB"/>
<path d="M208.05 182.3C208.625 195.964 210.437 209.386 211.976 222.937C213.572 237.002 214.55 251.138 216.232 265.203C217.527 276.023 234.798 276.166 233.489 265.203C231.807 251.138 230.829 237.016 229.233 222.937C227.694 209.372 225.867 195.95 225.307 182.3C224.846 171.308 207.589 171.251 208.05 182.3Z" fill="#1E96EB"/>
<path d="M199.493 174.881C209.272 179.827 219.756 181.456 230.599 179.998C236.078 179.269 233.748 170.993 228.298 171.722C219.9 172.852 211.372 171.279 203.836 167.477C198.904 164.976 194.532 172.38 199.479 174.881H199.493Z" fill="#3E302E"/>
<path d="M126.755 169.007C119.219 172.809 110.692 174.381 102.293 173.252C96.8573 172.523 94.5132 180.785 99.9923 181.528C110.85 182.986 121.319 181.356 131.098 176.411C136.045 173.909 131.688 166.505 126.741 169.007H126.755Z" fill="#3E302E"/>
</svg>

After

Width:  |  Height:  |  Size: 7.5 KiB

View File

@ -0,0 +1,25 @@
<svg width="361" height="360" viewBox="0 0 361 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M248.337 266.914C267.892 263.91 282.624 247.438 283.992 228.236C285.101 212.54 277.123 197.118 263.616 188.666C263.385 182.227 262.204 171.533 256.818 159.877C253.074 151.77 248.509 145.834 244.938 141.881C248.005 137.871 254.255 128.543 255.969 114.903C257.193 105.1 255.58 97.0798 254.27 92.4229C248.625 91.0574 240.719 89.8645 231.344 90.6262C217.994 91.7042 207.727 96.2749 201.635 99.6239C190.129 97.2236 176.089 95.2832 160.047 95.1251C142.147 94.9526 126.623 97.0367 114.21 99.6239C107.902 96.5336 97.6488 92.5091 84.5011 91.5318C69.9277 90.4394 58.2489 93.5871 51.3942 96.0306C51.0342 101.55 51.1062 109.412 53.0935 118.51C55.0519 127.451 58.1769 134.436 60.7402 139.193C53.5399 147.142 35.0351 169.679 30.1821 204.85C26.4956 231.542 32.3998 252.915 36.0576 263.421C75.4576 267.388 104.144 270.335 116.816 271.643C192.347 279.419 215.546 271.945 248.337 266.914Z" fill="#FCEAF0"/>
<path d="M148.425 181.537C134.918 175.27 117.075 181.393 109.875 194.832C105.252 203.456 104.806 215.515 111.632 224.915C118.89 234.905 131.678 238.168 142.118 235.408C157.253 231.398 166.671 214.926 163.488 200.438C163.316 199.647 160.349 187.071 148.425 181.551V181.537Z" fill="#F7D0DD"/>
<path d="M255.954 181.724C248.913 181.954 243.584 194.775 241.971 200.538C241.079 203.729 238.415 213.288 244.045 222.716C244.506 223.493 251.562 234.876 265.027 235.954C268.699 236.242 272.486 236.558 275.093 234.546C286.066 226.051 269.289 181.293 255.954 181.724Z" fill="#F7D0DD"/>
<path d="M250.165 139.84C255.983 123.699 256.732 106.451 252.671 89.8069C252.34 88.4415 251.073 87.076 249.647 86.7886C241.309 85.1356 232.928 84.7763 224.504 85.998C219.42 86.7311 214.466 87.9815 209.671 89.8213C206.388 91.0718 203.205 93.2853 199.907 94.3345C196.61 95.3838 193.182 94.0614 189.669 93.5296C185.262 92.8541 180.841 92.2935 176.406 91.8623C165.288 90.7699 154.085 90.5112 142.924 91.0718C138.057 91.3161 133.204 91.7186 128.365 92.2648C124.564 92.696 118.933 94.6364 115.275 94.1045C112.539 93.7165 108.867 91.0287 106.174 89.9794C101.407 88.1253 96.4825 86.7742 91.4423 85.9549C75.9185 83.4396 60.4234 86.0124 46.1092 92.2791C44.6548 92.9116 44.122 94.5932 43.9636 96.0018C42.2643 111.87 45.7348 127.666 53.9432 141.349C56.7945 146.107 64.2684 141.781 61.4027 136.994C53.9144 124.518 51.0486 110.433 52.6039 96.0018L50.4582 99.7245C65.0172 93.3428 81.5347 91.6611 96.9145 95.9587C103.755 97.8703 110.465 103.533 117.565 102.412C126.839 100.946 136.127 99.9257 145.502 99.5664C155.381 99.1783 165.274 99.4514 175.124 100.357C179.977 100.802 184.83 101.406 189.64 102.197C192.75 102.7 196.855 104.381 199.979 103.85C202.557 103.404 205.048 101.277 207.396 100.141C211.342 98.2153 215.474 96.7636 219.737 95.7C228.795 93.429 238.199 93.314 247.329 95.1107L244.304 92.0923C248.02 107.328 247.098 122.808 241.799 137.54C239.912 142.772 248.265 145.029 250.137 139.84H250.165Z" fill="#3E302E"/>
<path d="M233.374 135.428C243.93 145.015 251.879 157.059 256.012 170.743C257.366 175.242 257.207 182.543 259.727 186.395C261.268 188.752 264.508 190.664 266.452 192.82C269.059 195.723 271.305 198.972 273.12 202.436C283.892 222.946 276.518 247.985 257.164 260.302C252.484 263.278 256.818 270.737 261.527 267.748C282.408 254.453 292.388 228.394 283.618 204.879C281.127 198.181 277.354 192.03 272.558 186.726C271.219 185.245 269.016 183.736 267.878 182.141C267.633 181.796 267.36 181.206 266.971 180.243C265.689 177.081 265.632 172.899 264.681 169.564C260.217 154.084 251.404 140.156 239.495 129.333C235.39 125.611 229.256 131.691 233.389 135.428H233.374Z" fill="#3E302E"/>
<path d="M162.768 172.036C160.882 169.852 157.166 168.271 154.027 168.774C148.944 169.579 146.64 175.601 148.757 180.215C150.067 183.061 153.523 186.366 156.85 186.28C162.236 186.151 167.161 177.139 162.768 172.036Z" fill="#3E302E"/>
<path d="M165.821 168.989C161.04 164.074 152.486 162.406 147.259 167.609C142.031 172.812 142.867 180.488 147.216 185.605C151.565 190.722 158.952 192.389 164.165 187.373C168.759 182.96 170.573 175.198 166.498 169.866C163.172 165.496 155.669 169.794 159.039 174.221C161.703 177.728 158.103 184.57 153.998 180.258C152.515 178.691 151.521 176.061 153.019 174.135C154.79 171.849 158.103 173.431 159.715 175.098C163.589 179.094 169.695 172.985 165.821 169.004V168.989Z" fill="#3E302E"/>
<path d="M245.197 166.23C243.282 164.605 240.085 164.016 237.767 165.267C234.022 167.293 233.518 173.632 236.125 177.513C237.738 179.913 241.108 182.213 243.656 181.321C247.775 179.87 249.661 170.01 245.197 166.23Z" fill="#3E302E"/>
<path d="M247.386 162.507C241.784 158.396 233.778 160.308 231.157 166.819C228.68 172.971 231.099 180.215 236.571 183.88C249.359 192.432 256.804 171.303 248.25 163.182C244.218 159.359 238.098 165.453 242.144 169.277C243.484 170.556 243.642 172.453 243.368 174.221C243.224 175.127 242.965 176.233 242.375 176.981C242.26 177.124 241.842 177.469 241.943 177.426C242.548 177.153 242.346 177.311 241.727 176.938C239.725 175.716 238.573 173.646 238.832 171.275C239.135 168.515 240.992 168.472 243.008 169.952C247.487 173.244 251.807 165.77 247.372 162.507H247.386Z" fill="#3E302E"/>
<path d="M159.283 178.289C164.842 178.289 164.856 169.665 159.283 169.665C153.71 169.665 153.71 178.289 159.283 178.289Z" fill="white"/>
<path d="M241.482 174.868C247.041 174.868 247.055 166.244 241.482 166.244C235.909 166.244 235.909 174.868 241.482 174.868Z" fill="white"/>
<path d="M216.295 220.833C220.039 230.42 217.231 240.87 209.959 246.174C202.226 251.822 192.909 249.149 191.757 248.804C191.728 249.479 191.281 256.22 185.737 259.498C183.361 260.906 178.911 262.329 176.218 260.288C172.993 257.845 172.402 251.118 177.01 245.541C175.873 244.319 174.289 242.264 173.698 239.418C173.108 236.658 173.77 234.646 175.426 228.408C175.959 226.425 176.794 223.219 177.802 219.123" fill="#E490B1"/>
<path d="M212.133 221.969C216.626 235.149 207.64 248.861 192.909 244.636C190.057 243.816 187.638 246.059 187.436 248.789C187.278 251.075 186.313 253.159 184.657 254.711C183.232 256.048 179.948 258.362 178.134 255.459C176.78 253.288 179.646 249.249 180.74 247.697C181.907 246.059 181.244 243.845 180.063 242.465C175.182 236.745 180.38 226.64 181.964 220.259C183.304 214.869 174.98 212.569 173.626 217.959C170.948 228.696 165.836 239.059 173.943 248.559L173.266 243.328C167.88 250.902 167.578 265.922 180.207 265.52C189.309 265.232 195.458 257.327 196.062 248.775L190.59 252.929C211.514 258.923 227.081 239.188 220.443 219.655C218.657 214.423 210.319 216.665 212.105 221.955L212.133 221.969Z" fill="#3E302E"/>
<path d="M202.24 221.926C190.734 222.256 172.129 218.016 168.961 206.043C165.591 193.323 180.913 176.65 197.33 174.293C216.929 171.461 237.81 189.069 236.096 202.45C234.598 214.092 216.108 221.538 202.255 221.94L202.24 221.926Z" fill="#F7D0DD"/>
<path d="M202.24 217.614C193.11 217.715 175.988 215.688 173.122 204.894C169.465 191.124 188.992 178.892 200.368 178.332C211.745 177.771 229.069 186.065 231.574 198.598C234.282 212.152 211.73 217.14 202.24 217.614C196.711 217.887 196.667 226.511 202.24 226.238C216.727 225.519 241.583 218.189 240.445 199.619C239.351 181.609 216.598 169.047 200.368 169.708C183.678 170.383 163.013 185.375 164.237 203.701C165.418 221.25 188.013 226.396 202.226 226.223C207.785 226.166 207.799 217.542 202.226 217.6L202.24 217.614Z" fill="#3E302E"/>
<path d="M214.409 191.181C210.06 190.98 206.416 194.789 206.474 199.072C206.517 202.795 209.167 206.575 212.998 207.064C216.828 207.553 220.558 204.347 221.278 200.596C222.056 196.629 219.694 192.202 215.561 191.34C213.286 190.865 210.895 192.001 210.247 194.358C209.657 196.5 210.967 199.187 213.271 199.662C213.804 199.777 213.53 199.834 213.329 199.619C213.185 199.46 212.983 199.302 212.825 199.144C213.199 199.518 212.81 199.475 212.839 199.116C212.796 199.504 212.983 199.475 212.839 199.044C212.724 198.699 212.998 198.641 212.767 199.087C212.868 198.9 212.954 198.742 213.055 198.569C212.71 199.159 213.055 198.627 213.055 198.656L212.738 198.842C213.199 198.541 213.689 198.454 214.164 198.569C214.51 198.627 214.726 198.771 215.014 198.929C215.215 199.101 215.23 199.101 215.057 198.929C214.898 198.756 214.898 198.756 215.057 198.929C215.215 199.116 215.215 199.116 215.086 198.9C214.97 198.684 214.97 198.684 215.086 198.9C215.186 199.116 215.186 199.116 215.114 198.871C215.057 198.627 215.057 198.627 215.1 198.871C215.129 199.13 215.143 199.13 215.129 198.871C215.129 198.612 215.129 198.612 215.129 198.871C215.071 199.044 214.927 199.36 214.884 199.518C214.826 199.748 215.172 199.374 214.999 199.432C214.74 199.518 213.343 199.748 214.438 199.791C216.77 199.906 218.758 197.736 218.758 195.479C218.758 193.05 216.77 191.282 214.438 191.167L214.409 191.181Z" fill="#3E302E"/>
<path d="M194.896 191.871C192.736 192.144 190.95 192.849 189.539 194.559C188.243 196.126 187.494 198.095 187.624 200.15C187.869 204.146 191.094 207.826 195.299 207.624C199.447 207.438 202.975 203.701 202.658 199.518C202.341 195.335 199.101 191.986 194.91 191.886C192.65 191.828 190.489 193.912 190.59 196.198C190.691 198.483 192.491 200.452 194.91 200.51C194.579 200.51 194.32 200.352 194.046 200.222C194.637 200.495 194.032 200.337 194.046 200.165C194.018 200.812 194.464 199.964 194.061 200.15C194.262 200.064 194.147 200.855 194.075 200.15C194.032 199.69 194.176 199.705 194.075 200.093C194.133 199.863 194.219 199.575 194.262 199.345C194.334 199.001 194.637 199.173 194.219 199.389C194.478 199.245 194.622 199.087 194.939 199.058C195.213 199.029 195.472 199.087 195.717 199.187C195.832 199.245 196.408 199.734 196.12 199.432C195.688 198.986 196.538 199.992 196.178 199.475C195.818 198.957 196.437 200.093 196.235 199.532C196.034 198.972 196.336 200.251 196.278 199.647C196.235 199.245 196.25 199.877 196.206 200.021C196.149 200.179 195.746 200.481 196.091 200.208C196.278 200.021 196.278 200.007 196.12 200.165C195.818 200.467 195.429 200.582 194.954 200.524C197.186 200.237 199.389 198.756 199.274 196.212C199.173 194.128 197.359 191.584 194.954 191.9L194.896 191.871Z" fill="#3E302E"/>
<path d="M63.5052 127.091C27.7485 162.651 15.22 215.918 33.0335 263.35C34.9632 268.495 43.33 266.267 41.3715 261.05C24.5948 216.407 35.8993 166.718 69.6254 133.2C73.5712 129.276 67.4653 123.182 63.5196 127.106L63.5052 127.091Z" fill="#3E302E"/>
<path d="M273.278 115.147C278.002 106.724 291.38 103.03 300.913 106.394C304.009 107.486 306.198 109.153 317.085 123.21C328.073 137.397 333.602 144.598 335.287 150.117C336.382 153.739 341.796 171.548 332.594 179.726C324.357 187.028 309.222 182.385 300.913 177.038C293.641 172.353 290.098 165.353 283.301 151.511C273.826 132.251 269.102 122.607 273.278 115.133V115.147Z" fill="#F8B62D"/>
<path d="M277.008 117.317C281.3 110.619 293.094 106.911 300.179 110.72C305.176 113.422 309.035 119.861 312.39 124.145C321.52 135.787 332.206 146.998 333.43 162.377C334.294 173.258 329.037 180.66 317.359 178.835C308.905 177.513 301.028 173.301 296.132 166.244C290.185 157.649 285.965 147.501 281.573 138.072C278.967 132.452 273.854 123.642 277.023 117.332C279.514 112.387 272.054 108.018 269.563 112.977C266.51 119.071 267.36 125.352 269.549 131.604C273.264 142.212 278.736 152.446 283.935 162.392C291.855 177.541 306.529 190.218 325.02 187.531C343.539 184.843 344.158 164.275 339.78 149.988C337.779 143.462 333.718 137.986 329.671 132.553C323.508 124.288 317.373 115.65 310.317 108.118C299.228 96.2749 278.131 99.5808 269.563 112.962C266.553 117.648 274.042 121.989 277.023 117.317H277.008Z" fill="#3E302E"/>
<path d="M283.877 127.954C283.028 123.857 293.166 118.712 299.977 117.289C301.432 116.987 303.332 116.541 304.052 117.691C305.19 119.488 305.061 122.952 303.505 125.28C302.252 127.149 301.014 126.991 297.601 128.816C295.758 129.808 296.089 130.095 294.462 130.814C293.871 131.073 292.23 131.791 290.343 131.734C287.78 131.647 284.324 130.138 283.863 127.968L283.877 127.954Z" fill="#FEF1DD"/>
<path d="M291.783 147.271C291.337 142.557 303.52 138.302 312.16 135.298C313.298 134.896 315.429 134.206 316.408 135.701C317.589 137.497 317.459 140.961 315.847 143.29C314.55 145.158 313.254 145 309.697 146.826C304.326 149.6 304.297 151.511 301.403 152.072C297.443 152.834 292.071 150.304 291.783 147.286V147.271Z" fill="#FEF1DD"/>
<path d="M304.816 163.168C304.427 159.014 315.213 155.263 322.86 152.604C323.868 152.259 325.754 151.641 326.618 152.963C327.655 154.544 327.554 157.606 326.114 159.661C324.962 161.3 323.824 161.17 320.671 162.78C315.904 165.223 315.89 166.919 313.326 167.408C309.813 168.084 305.06 165.856 304.801 163.182L304.816 163.168Z" fill="#FEF1DD"/>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,22 @@
<svg width="361" height="360" viewBox="0 0 361 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M291.468 259.249C299.825 251.69 311.829 238.179 316.281 218.773C322.714 190.703 309.604 166.75 302.812 154.371C297.499 144.69 291.77 137.389 287.606 132.613C291.095 128.539 298.203 119.101 300.141 105.274C301.534 95.3489 299.696 87.2306 298.217 82.4973C290.679 80.8909 278.301 79.2414 263.482 81.7228C252.785 83.5157 244.299 86.9007 238.412 89.7837C226.58 87.5892 212.723 85.8393 197.215 85.3516C174.456 84.6488 154.712 86.8863 139.075 89.7837C130.273 86.0114 114.392 80.6327 94.232 81.4646C83.4914 81.9092 74.4739 83.989 67.6964 86.1405C67.2943 91.7344 67.3661 99.6949 69.6205 108.918C71.8462 117.968 75.3929 125.054 78.3078 129.873C74.5888 134.735 69.6492 141.721 64.7671 150.599C58.1189 162.676 47.8665 181.796 46.5598 207.37C45.5547 227.178 50.2645 244.06 55.4768 256.424C93.514 261.458 137.166 265.001 185.455 264.986C224.081 264.986 259.591 262.706 291.44 259.249H291.468Z" fill="#FCEAF0"/>
<path d="M138.041 176.818C123.682 170.479 104.743 176.661 97.0894 190.287C92.1786 199.022 91.7047 211.242 98.9561 220.752C106.667 230.878 120.251 234.177 131.336 231.38C147.418 227.321 157.412 210.626 154.038 195.952C153.851 195.164 150.706 182.412 138.027 176.818H138.041Z" fill="#F7D0DD"/>
<path d="M272.299 176.818C257.94 170.479 239 176.661 231.347 190.287C226.436 199.022 225.962 211.242 233.214 220.752C240.924 230.878 254.508 234.177 265.593 231.38C281.675 227.321 291.669 210.626 288.295 195.952C288.108 195.164 284.964 182.412 272.285 176.818H272.299Z" fill="#F7D0DD"/>
<path d="M193.439 184.506C205.658 184.779 225.187 190.057 227.944 202.335C230.873 215.373 213.771 231.438 196.239 232.958C175.303 234.78 154.038 215.861 156.55 202.421C158.733 190.731 178.735 184.162 193.439 184.506Z" fill="#F7D0DD"/>
<path d="M193.439 188.809C202.772 189.168 221.54 192.065 223.794 203.483C226.838 218.988 203.045 229.616 191.012 228.684C179.927 227.823 160.111 218.027 160.671 204.487C161.203 191.649 184.134 188.781 193.439 188.809C198.981 188.838 198.996 180.232 193.439 180.203C180.473 180.146 163.055 183.574 155.143 195.049C147.231 206.523 156.565 220.379 166.114 227.68C179.353 237.792 196.555 240.287 211.646 232.843C223.392 227.049 236.617 213.279 231.404 199.079C226.206 184.951 206.664 180.72 193.439 180.218C187.896 180.003 187.896 188.609 193.439 188.824V188.809Z" fill="#3E302E"/>
<path d="M204.567 201.761C200.317 201.532 196.626 205.06 196.425 209.234C196.253 212.849 198.723 216.779 202.37 217.596C206.477 218.514 210.641 215.402 211.546 211.4C212.45 207.398 209.952 202.751 205.701 201.905C203.418 201.46 201.049 202.55 200.403 204.917C199.814 207.04 201.121 209.751 203.418 210.21C203.935 210.31 203.72 210.41 203.548 210.181C203.533 210.152 202.815 209.535 203.217 209.88C203.174 209.521 203.519 210.138 203.217 209.88C203.26 210.353 203.189 209.578 203.189 209.492C203.217 209.005 203.504 209.062 203.146 209.435C203.49 209.076 203.203 209.435 203.031 209.507C203.691 209.191 203.95 209.163 204.725 209.378C205.256 209.535 204.495 209.076 204.826 209.421C204.897 209.492 205.5 209.98 205.127 209.693C205.012 209.478 204.998 209.492 205.098 209.722C205.199 210.023 205.185 209.966 205.041 209.55C205.055 209.105 205.041 209.206 205.041 209.607C205.041 210.037 204.826 210.066 205.041 209.679C204.926 209.908 204.797 210.095 204.668 210.31C204.983 209.779 204.926 210.109 204.581 210.281C204.366 210.382 203.648 210.324 204.581 210.382C206.908 210.511 208.889 208.316 208.889 206.079C208.889 203.64 206.908 201.905 204.581 201.776L204.567 201.761Z" fill="#3E302E"/>
<path d="M183.861 202.45C179.64 202.952 176.28 206.15 176.395 210.582C176.509 214.713 179.898 218.242 184.062 218.285C188.226 218.328 191.96 214.484 191.831 210.31C191.701 206.136 188.054 202.55 183.861 202.45C181.607 202.393 179.453 204.472 179.554 206.753C179.654 209.033 181.449 210.998 183.861 211.056C183.459 211.056 183.344 210.841 183.775 211.056C183.545 210.941 183.359 210.841 183.129 210.712L183.402 210.984C183.172 210.654 183.129 210.626 183.287 210.884C183.517 211.5 183.115 210.267 183.287 210.898C183.402 211.343 183.244 210.611 183.258 210.482C183.287 210.224 183.445 210.066 183.502 209.851C183.56 209.636 183.215 209.98 183.402 209.923C183.675 209.851 183.718 209.679 184.077 209.679C184.35 209.679 184.536 209.822 184.78 209.908C184.364 209.765 184.464 209.822 184.809 209.937C184.953 209.98 185.283 210.382 184.866 209.937C185.053 210.138 185.182 210.439 184.938 209.966C185.082 210.253 184.967 210.611 185.01 210.066C185.01 210.181 184.737 211.056 184.953 210.654C185.168 210.253 184.895 210.783 184.737 210.855C184.393 211.013 184.249 211.027 183.861 211.07C186.087 210.812 188.284 209.277 188.169 206.767C188.069 204.659 186.259 202.177 183.861 202.464V202.45Z" fill="#3E302E"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M142.866 172.358C146.628 168.069 153.406 168.399 157.039 172.731L157.053 172.745C157.098 172.799 157.142 172.853 157.185 172.908C157.379 173.117 157.56 173.354 157.728 173.62C160.528 178.081 159.092 184.019 155.761 187.791C151.999 192.022 146.183 191.449 142.737 187.203C139.291 182.957 139.104 176.646 142.866 172.358Z" fill="#3E302E"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M227.039 170.135C229.337 164.569 236.272 162.963 241.111 166.377L241.068 166.362C241.149 166.419 241.228 166.478 241.306 166.538C241.533 166.683 241.755 166.853 241.973 167.051C249.669 174.065 242.504 191.363 231.677 184.349C227.039 181.351 224.9 175.312 227.039 170.135Z" fill="#3E302E"/>
<path d="M232.18 147.802C226.809 150.47 222.272 154.673 219.457 159.98C216.873 164.871 224.296 169.231 226.895 164.326C229.078 160.195 232.366 157.283 236.53 155.232C241.499 152.765 237.133 145.349 232.18 147.802Z" fill="#3E302E"/>
<path d="M145.58 161.113C150.247 162.102 154.138 164.569 156.522 168.786C159.25 173.606 166.688 169.274 163.96 164.44C160.542 158.402 154.626 154.242 147.863 152.808C142.45 151.66 140.138 159.951 145.566 161.113H145.58Z" fill="#3E302E"/>
<path d="M291.425 265.273C314.759 242.381 322.096 211.4 313.854 180.031C308.599 160.037 298.389 141.118 285.653 124.896C282.235 120.536 276.176 126.675 279.564 130.977C290.276 144.632 299.437 161.6 304.506 178.611C313.308 208.115 307.608 237.333 285.337 259.192C281.374 263.079 287.462 269.16 291.425 265.273Z" fill="#3E302E"/>
<path d="M72.88 128.553C44.6501 166.061 37.0541 214.685 50.365 259.436C51.9445 264.728 60.2584 262.476 58.6789 257.141C45.9567 214.383 53.3804 168.686 80.318 132.885C83.6493 128.453 76.1682 124.164 72.88 128.539V128.553Z" fill="#3E302E"/>
<path d="M290.75 137.532C302.826 122.156 307.436 103.051 301.749 84.0894C301.333 82.7268 300.213 81.3785 298.734 81.0773C279.622 77.2333 259.749 78.6246 241.657 86.0831C237.32 87.876 235.726 87.7469 231.16 87.0441C226.594 86.3413 221.784 85.6958 217.074 85.1938C205.73 83.989 194.329 83.487 182.914 83.7021C171.498 83.9173 160.987 84.8066 150.103 86.2982C145.724 86.9007 141.114 88.335 136.821 87.3883C133.102 86.5564 129.498 85.0934 125.764 84.2185C106.078 79.5713 85.5733 79.8581 65.9445 84.7205C64.0204 85.1938 62.9004 87.0011 62.7855 88.8657C61.8521 104.313 65.4706 119.316 72.8799 132.885C75.5363 137.747 82.9743 133.416 80.3179 128.539C73.6122 116.247 70.5537 102.822 71.4009 88.8657L68.2419 93.0109C87.641 88.2059 107.902 88.2346 127.229 93.4555C130.503 94.3448 133.992 96.0947 137.323 96.6541C140.655 97.2135 144.604 95.7505 147.978 95.2341C159.092 93.5416 170.321 92.5949 181.549 92.3224C192.778 92.0499 202.973 92.4372 213.628 93.4412C218.725 93.9145 223.823 94.5313 228.891 95.3202C232.022 95.8078 235.841 97.2421 238.957 96.6397C242.949 95.8795 247.127 93.0109 251.047 91.7487C256.848 89.8697 262.865 88.5501 268.939 87.9334C278.143 87.0154 287.405 87.5318 296.465 89.3534L293.45 86.3413C298.174 102.105 294.8 118.513 284.662 131.408C281.273 135.711 287.333 141.85 290.75 137.489V137.532Z" fill="#3E302E"/>
<path d="M211.187 222.057C216.542 230.448 221.898 238.839 227.254 247.215C228.145 246.555 234.032 242.367 240.264 244.461C240.967 244.705 246.797 246.656 246.826 250.772C246.854 254.2 242.848 256.395 242.633 256.51C242.891 256.768 247.616 261.573 245.792 266.492C243.954 271.412 236.157 274.783 228.058 272.345C226.508 276.303 223.952 277.293 223.334 277.508C217.806 279.416 209.291 274.381 207.166 267.869C205.357 262.276 208.329 255.85 214.661 252.034C210.856 243.328 207.051 234.636 203.246 225.93C205.902 224.639 208.544 223.348 211.201 222.057H211.187Z" fill="white"/>
<path d="M207.468 224.237C212.824 232.628 218.179 241.019 223.535 249.395C224.713 251.231 227.455 252.321 229.423 250.944C232.108 249.051 236.028 247.143 239.359 248.707C241.341 249.639 243.121 251.246 240.45 252.809C238.009 254.243 237.679 257.557 239.574 259.565C246.654 267.038 234.549 269.447 229.179 268.199C227.412 267.783 225.187 268.443 224.311 270.179C221.683 275.385 216.83 273.808 213.24 269.734C208.746 264.642 211.818 259.134 216.801 255.764C218.897 254.344 219.328 252.135 218.352 249.883C214.547 241.177 210.741 232.485 206.936 223.778L205.386 229.659C208.042 228.368 210.684 227.077 213.34 225.786C218.323 223.362 213.958 215.933 208.99 218.357C206.333 219.647 203.691 220.938 201.035 222.229C198.78 223.334 198.622 226.116 199.484 228.11C203.289 236.816 207.094 245.508 210.899 254.215L212.45 248.334C202.815 254.86 198.436 266.837 207.367 276.088C214.733 283.719 226.594 284.737 231.749 274.525L226.881 276.504C234.391 278.254 244.299 277.479 248.764 270.107C252.153 264.499 249.884 257.944 245.663 253.483L244.787 260.239C251.349 256.395 253.359 248.434 247.084 243.328C240.809 238.222 231.62 238.91 225.072 243.515L230.959 245.064C225.603 236.673 220.247 228.282 214.891 219.906C211.919 215.244 204.452 219.561 207.453 224.252L207.468 224.237Z" fill="#3E302E"/>
<path d="M79.0113 105.188C81.8257 113.235 84.6401 121.281 87.4401 129.342L90.4555 124.05C82.9601 126.861 75.4646 129.672 67.9692 132.469C62.8286 134.391 65.0543 142.725 70.2666 140.774C77.7621 137.963 85.2575 135.151 92.753 132.354C94.8207 131.58 96.5868 129.414 95.7684 127.062C92.954 119.015 90.1396 110.969 87.3396 102.908C85.5303 97.7155 77.2021 99.953 79.0257 105.203L79.0113 105.188Z" fill="#E60012"/>
<path d="M80.0021 152.134C85.0565 149.509 90.1253 146.898 95.1797 144.274L88.8473 141.706C91.1017 147.128 93.3417 152.564 95.5961 157.986C97.6925 163.035 106.021 160.826 103.91 155.691C101.656 150.269 99.4156 144.833 97.1612 139.411C96.0699 136.786 93.5427 135.438 90.8289 136.844C85.7745 139.469 80.7057 142.079 75.6513 144.704C70.5969 147.329 75.077 154.687 80.0021 152.134Z" fill="#E60012"/>
<path d="M118.111 155.82C115.483 149.079 112.87 142.337 110.242 135.596L107.227 140.889C113.229 139.77 119.217 138.637 125.219 137.518C130.661 136.5 128.363 128.209 122.921 129.213C116.919 130.332 110.932 131.465 104.929 132.584C102.804 132.986 101.124 135.84 101.914 137.877C104.542 144.618 107.155 151.359 109.783 158.101C111.764 163.207 120.107 160.984 118.097 155.806L118.111 155.82Z" fill="#E60012"/>
<path d="M92.796 106.307C95.0504 111.93 97.2904 117.538 99.5448 123.16C100.421 125.355 102.373 126.789 104.843 126.172C110.084 124.867 115.34 123.548 120.581 122.242C125.822 120.937 123.682 112.604 118.283 113.938C112.884 115.272 107.787 116.563 102.546 117.868L107.844 120.88C105.59 115.257 103.35 109.649 101.096 104.027C99.0565 98.949 90.7283 101.158 92.7816 106.321L92.796 106.307Z" fill="#E60012"/>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,21 @@
<svg width="360" height="360" viewBox="0 0 360 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M298.778 268.171C306.194 264.501 333.914 250.788 335.225 224.796C336.341 202.564 317.348 187.031 314.424 184.719C314.198 178.198 312.992 167.366 307.491 155.578C303.662 147.372 299.004 141.359 295.357 137.36C297.844 131.302 300.828 122.006 301.431 110.338C301.959 100.162 300.497 91.6869 298.989 85.7782C294.121 85.1515 288.182 84.8233 281.474 85.4499C268.089 86.6884 257.674 91.09 251.147 94.5517C239.405 92.1345 225.055 90.1649 208.686 90.0008C190.417 89.8218 174.56 91.9405 161.884 94.5517C155.448 91.4183 144.972 87.3449 131.557 86.3601C116.679 85.256 104.757 88.4341 97.7626 90.911C97.4008 96.4914 97.4611 104.459 99.496 113.68C101.486 122.737 104.681 129.81 107.289 134.629C98.7875 148.207 86.9853 170.917 81.6795 201.251C77.4892 225.184 78.7855 245.626 80.8354 259.801C110.665 273.379 135.973 278.198 152.795 280.153C176.61 282.913 173.159 278.243 245.691 275.93C273.425 275.05 284.248 275.378 298.793 268.186L298.778 268.171Z" fill="#FCEAF0"/>
<path d="M196.808 177.497C183.016 171.156 164.808 177.348 157.452 190.956C152.734 199.699 152.267 211.905 159.246 221.409C166.662 231.526 179.715 234.838 190.372 232.033C205.822 227.974 215.439 211.293 212.198 196.611C212.017 195.82 208.987 183.077 196.808 177.482V177.497Z" fill="#F7D0DD"/>
<path d="M306.586 177.691C299.396 177.93 293.955 190.896 292.312 196.745C291.393 199.983 288.679 209.651 294.422 219.201C294.89 219.977 302.11 231.511 315.841 232.615C319.594 232.913 323.468 233.226 326.121 231.182C337.32 222.573 320.197 177.258 306.586 177.706V177.691Z" fill="#F7D0DD"/>
<path d="M300.783 135.301C306.722 118.932 307.49 101.445 303.345 84.5696C302.999 83.1521 301.672 81.7346 300.18 81.4362C283.961 78.2581 267.396 80.1978 252.519 87.4195C248.162 89.5383 248.253 89.8068 243.535 89.0011C239.194 88.2551 234.823 87.6433 230.451 87.1211C220.081 85.8826 209.635 85.3455 199.19 85.5096C189.965 85.6588 180.77 86.3601 171.636 87.5687C167.672 88.0909 164.491 89.1205 160.829 87.882C157.166 86.6436 153.835 84.7785 150.217 83.555C133.742 77.9895 116.001 77.6911 99.1643 81.7495C97.7323 82.0927 96.3004 83.4058 95.9989 84.8829C92.1251 104.131 95.185 123.722 105.013 140.806C107.892 145.805 115.715 141.314 112.821 136.285C104.244 121.365 101.335 104.116 104.726 87.2703L101.561 90.4037C118.066 86.4347 135.37 87.2554 151.242 93.4475C154.422 94.686 158.085 97.4314 161.447 97.9387C164.597 98.4162 168.621 96.939 171.787 96.5063C180.861 95.253 190.025 94.6114 199.19 94.4771C208.354 94.3428 218.393 94.7755 227.934 95.805C232.351 96.2825 236.752 96.9092 241.138 97.6552C244.168 98.1774 247.59 99.5054 250.604 98.64C253.408 97.8343 256.181 95.5365 258.864 94.3428C262.708 92.6269 266.778 91.3288 270.878 90.3887C279.711 88.3595 288.89 88.3595 297.768 90.1052L294.603 86.9719C298.386 102.385 297.452 118.037 292.04 132.943C290.066 138.374 298.808 140.717 300.768 135.33L300.783 135.301Z" fill="#3E302E"/>
<path d="M283.464 130.884C293.91 140.299 301.928 152.087 306.209 165.471C307.777 170.38 307.536 177.676 310.023 182.033C311.394 184.435 314.816 186.42 316.715 188.434C319.308 191.194 321.539 194.253 323.408 197.536C335.24 218.395 327.945 244.432 307.807 257.16C302.908 260.248 307.445 268.007 312.374 264.889C334.125 251.161 344.118 224.214 334.592 200.117C331.819 193.104 327.613 186.688 322.338 181.272C319.685 178.556 318.614 178.661 317.861 175.319C316.926 171.215 316.248 167.142 314.952 163.098C310.204 148.282 301.476 135.002 289.885 124.558C285.589 120.693 279.168 127.005 283.494 130.884H283.464Z" fill="#3E302E"/>
<path d="M195.527 163.337C200.908 158.01 209.726 159.711 214.64 164.725V164.74C214.911 165.016 215.135 165.302 215.317 165.594C215.327 165.607 215.338 165.621 215.348 165.635C219.524 171.081 217.654 178.989 212.937 183.495C207.571 188.613 199.959 186.927 195.482 181.705C191.005 176.482 190.387 168.425 195.527 163.337Z" fill="#3E302E"/>
<path d="M281.173 162.561C283.871 155.906 292.131 153.937 297.904 158.145C297.951 158.179 297.998 158.214 298.043 158.249C298.304 158.414 298.56 158.612 298.808 158.846C307.641 167.157 299.924 188.703 286.75 179.974C281.112 176.244 278.625 168.843 281.173 162.561Z" fill="#3E302E"/>
<path d="M251.75 218.395C240.008 218.723 221.001 214.426 217.76 202.31C214.323 189.434 229.969 172.543 246.731 170.156C266.748 167.291 288.061 185.121 286.298 198.67C284.76 210.457 265.889 218.007 251.735 218.395H251.75Z" fill="#F7D0DD"/>
<path d="M251.75 213.919C242.284 214.023 223.835 211.8 221.965 200.072C219.735 186.062 238.998 174.393 251.027 174.319C262.437 174.259 279.922 182.809 281.746 195.372C283.675 208.652 261.216 213.441 251.75 213.904C245.962 214.187 245.917 223.14 251.75 222.856C266.582 222.125 292.116 214.635 290.865 195.685C289.674 177.825 267.336 165.292 251.042 165.351C233.692 165.411 212.439 180.392 212.786 198.998C213.118 217.47 237.024 223.006 251.765 222.856C257.583 222.797 257.598 213.844 251.765 213.904L251.75 213.919Z" fill="#3E302E"/>
<path d="M264.17 187.166C259.664 186.957 255.895 190.881 255.956 195.268C256.001 199.117 258.744 202.937 262.708 203.459C266.673 203.982 270.577 200.669 271.285 196.834C272.039 192.761 269.687 188.225 265.361 187.33C263.055 186.852 260.372 188.001 259.799 190.463C259.287 192.701 260.478 195.462 262.965 195.969C263.537 196.088 263.206 196.148 262.995 195.924C262.829 195.745 262.618 195.581 262.437 195.402C262.738 195.715 262.603 195.775 262.437 195.342C262.603 195.805 262.527 195.596 262.437 195.253C262.316 194.865 262.618 194.82 262.362 195.253C262.482 195.059 262.558 194.88 262.693 194.671C262.286 195.312 262.693 194.656 262.723 194.745L262.392 194.925C262.889 194.611 263.402 194.507 263.929 194.641C264.306 194.701 264.532 194.865 264.849 195.029C265.437 195.327 264.366 194.925 264.909 195.059C265.075 195.268 265.09 195.268 264.954 195.044C264.834 194.82 264.834 194.82 264.954 195.044C265.06 195.283 265.06 195.283 264.984 195.044C264.924 194.79 264.924 194.79 264.969 195.059C265.015 195.611 265.21 194.566 264.999 195.104C264.924 195.268 264.773 195.641 264.728 195.805C264.653 196.059 265.03 195.671 264.819 195.73C264.547 195.82 263.055 196.073 264.17 196.118C266.537 196.223 268.798 193.985 268.692 191.642C268.572 189.12 266.703 187.285 264.17 187.166Z" fill="#3E302E"/>
<path d="M244.259 187.852C242.028 188.136 240.174 188.852 238.697 190.597C237.355 192.209 236.571 194.223 236.707 196.327C236.963 200.43 240.294 204.205 244.651 204.011C249.007 203.817 252.609 199.998 252.263 195.686C251.916 191.373 248.585 187.942 244.244 187.837C241.877 187.777 239.616 189.941 239.722 192.313C239.827 194.686 241.711 196.73 244.244 196.79C243.882 196.79 243.611 196.626 243.294 196.476C243.731 196.685 243.52 196.67 243.264 196.402C243.595 196.745 243.565 196.581 243.264 196.372C243.58 196.596 243.384 196.834 243.264 196.327C243.158 195.879 243.369 195.79 243.264 196.238C243.339 195.954 243.384 195.7 243.475 195.432C243.611 195.014 243.867 195.298 243.445 195.462C243.731 195.342 243.897 195.133 244.244 195.089C244.545 195.044 244.816 195.104 245.088 195.238C245.223 195.298 245.826 195.82 245.525 195.506C245.073 195.044 245.977 196.103 245.6 195.581C245.223 195.059 245.872 196.238 245.661 195.671C245.449 195.104 245.766 196.432 245.706 195.82C245.661 195.402 245.661 196.103 245.615 196.238C245.57 196.402 245.103 196.76 245.465 196.461C245.645 196.282 245.661 196.267 245.48 196.417C245.163 196.73 244.741 196.864 244.214 196.805C246.55 196.506 248.856 194.969 248.735 192.328C248.63 190.165 246.731 187.524 244.214 187.852H244.259Z" fill="#3E302E"/>
<path d="M116.061 122.29C82.8553 160.651 68.3248 211.024 76.4643 260.979C77.3837 266.649 86.1111 264.247 85.1916 258.592C77.6098 212.039 91.5374 164.352 122.468 128.616C126.236 124.259 119.875 117.903 116.077 122.29H116.061Z" fill="#3E302E"/>
<path d="M72.0477 137.509C72.9973 144.731 73.9318 151.952 74.8814 159.174C75.62 164.814 84.679 164.874 83.9253 159.174C82.9757 151.952 82.0412 144.731 81.0916 137.509C80.353 131.869 71.294 131.809 72.0477 137.509Z" fill="#3E302E"/>
<path d="M74.8515 128.109C86.4879 128.109 86.503 110.204 74.8515 110.204C63.1999 110.204 63.1999 128.109 74.8515 128.109Z" fill="#3E302E"/>
<path d="M51.7441 117.44C53.372 130.809 54.9849 144.193 56.6128 157.563C57.2911 163.218 66.35 163.277 65.6567 157.563C64.0288 144.193 62.4159 130.809 60.788 117.44C60.1097 111.785 51.0508 111.726 51.7441 117.44Z" fill="#3E302E"/>
<path d="M19.0656 123.051C21.2211 136.554 23.3916 150.057 25.5471 163.576C26.4515 169.246 35.1788 166.843 34.2744 161.188C32.119 147.685 29.9484 134.182 27.793 120.663C26.8886 114.993 18.1612 117.396 19.0656 123.051Z" fill="#3E302E"/>
<path d="M31.6216 147.461C39.6254 145.88 47.6293 144.298 55.618 142.716C61.3157 141.582 58.904 132.958 53.2063 134.077C45.2025 135.659 37.1986 137.24 29.2099 138.822C23.5122 139.956 25.9239 148.58 31.6216 147.461Z" fill="#3E302E"/>
<path d="M58.4367 197.566C61.6774 193.059 66.8626 190.09 72.4547 189.926C81.3328 189.657 83.8651 196.805 90.8289 200.102C100.868 204.847 113.092 201.49 120.101 193.313C123.839 188.941 117.478 182.585 113.71 186.987C108.871 192.642 100.265 195.775 93.3461 191.329C90.9043 189.762 89.3216 187.076 86.9853 185.33C84.046 183.137 80.5792 181.884 76.9616 181.287C66.4556 179.571 56.6279 184.704 50.6137 193.059C47.2373 197.759 55.0754 202.236 58.4216 197.58L58.4367 197.566Z" fill="#3E302E"/>
<path d="M216.253 226.124C222.418 233.659 231.612 237.897 241.395 237.792C247.213 237.733 247.228 228.78 241.395 228.84C233.783 228.914 227.377 225.572 222.644 219.798C218.981 215.321 212.62 221.693 216.253 226.124Z" fill="#3E302E"/>
</svg>

After

Width:  |  Height:  |  Size: 9.4 KiB

View File

@ -0,0 +1,22 @@
<svg width="361" height="360" viewBox="0 0 361 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M65.4222 261.141C59.0744 248.56 56.3314 237.701 54.9957 230.341C49.2511 198.465 59.0457 170.793 66.0542 150.953C68.9696 142.719 71.8275 136.12 73.8238 131.773C70.3913 127.771 63.4116 118.503 61.5015 104.904C60.1228 95.1487 61.9324 87.1582 63.3973 82.5102C70.8078 80.9322 82.9721 79.3112 97.5347 81.7499C108.047 83.5144 116.392 86.8282 122.179 89.6687C133.812 87.5168 147.427 85.781 162.665 85.3076C185.04 84.619 204.442 86.8139 219.809 89.6687C228.469 85.9675 244.066 80.674 263.885 81.4917C274.441 81.9221 283.302 83.9735 289.966 86.0966C290.368 91.591 290.296 99.4237 288.07 108.49C285.887 117.399 282.397 124.356 279.539 129.09C294.001 145.143 299.861 160.708 302.417 169.746C306.639 184.651 306.209 196.844 305.706 210.874C305.074 228.462 302.288 243.798 299.028 256.292C288.472 261.041 272.646 267.382 252.74 272.474C242.759 275.028 196.486 286.16 135.047 278.126C117.483 275.831 93.2694 271.212 65.4222 261.141Z" fill="#FCEAF0"/>
<path d="M220.843 175.211C234.946 168.971 253.573 175.068 261.084 188.438C265.91 197.031 266.384 209.024 259.26 218.377C251.678 228.333 238.336 231.575 227.435 228.821C211.637 224.833 201.8 208.421 205.117 194.004C205.29 193.229 208.392 180.706 220.843 175.197V175.211Z" fill="#F7D0DD"/>
<path d="M88.8891 175.211C102.992 168.971 121.619 175.068 129.13 188.438C133.956 197.031 134.43 209.024 127.306 218.377C119.723 228.333 106.382 231.575 95.4811 228.821C79.6834 224.833 69.8457 208.421 73.1632 194.004C73.3355 193.229 76.4376 180.706 88.8891 175.197V175.211Z" fill="#F7D0DD"/>
<path d="M168.596 230.255C180.616 230.356 199.962 225.78 203.049 213.801C206.338 201.076 190.023 184.78 172.847 182.743C152.338 180.304 130.854 198.236 132.907 211.52C134.688 223.083 154.134 230.141 168.596 230.255Z" fill="#F7D0DD"/>
<path d="M168.596 234.559C183.072 234.444 207.43 229.136 207.774 210.688C208.119 192.24 184.738 177.621 167.705 178.253C151.936 178.841 129.303 190.848 128.484 208.809C127.637 227.716 154.191 234.157 168.581 234.559C174.125 234.717 174.125 226.109 168.581 225.952C159.433 225.693 136.096 221.877 137.101 208.809C138.106 195.74 156.661 187.319 167.705 186.86C179.769 186.358 199.732 196.357 199.157 210.688C198.64 223.298 177.96 225.88 168.596 225.952C163.052 225.995 163.038 234.602 168.596 234.559Z" fill="#3E302E"/>
<path d="M155.455 208.278C155.986 208.249 155.8 208.407 155.556 208.235C155.512 208.206 154.794 207.704 155.168 208.063C155.498 208.378 155.067 207.862 154.995 207.733C154.766 207.288 154.952 208.22 154.967 207.675C154.967 207.36 154.981 206.714 154.909 207.388C154.852 207.919 154.679 207.575 154.909 207.36C154.565 207.661 154.694 207.532 154.952 207.331C155.599 206.872 154.766 207.302 155.254 207.159C155.929 206.958 156.245 206.972 156.877 207.202C157.322 207.36 156.317 206.686 156.906 207.245C156.546 206.901 156.906 206.843 156.848 207.159C156.805 207.388 156.848 207.661 156.791 207.919C156.92 207.231 156.834 207.962 156.719 207.934C156.834 207.948 157.02 207.446 156.59 207.991C156.446 208.177 155.67 208.307 156.575 208.134C158.859 207.675 160.166 204.964 159.591 202.841C158.931 200.46 156.575 199.384 154.292 199.828C150.141 200.646 147.657 205.05 148.461 209.053C149.265 213.055 153.473 216.397 157.624 215.393C161.142 214.547 163.655 210.846 163.526 207.274C163.383 203.056 159.749 199.441 155.441 199.671C153.114 199.8 151.132 201.564 151.132 203.974C151.132 206.212 153.1 208.407 155.441 208.278H155.455Z" fill="#3E302E"/>
<path d="M175.82 208.952C175.202 208.88 175.001 208.809 174.585 208.35C174.958 208.766 174.728 208.579 174.628 208.12C174.47 207.446 174.628 208.723 174.656 208.005C174.671 207.388 174.427 208.421 174.685 207.919C174.944 207.417 174.269 208.235 174.714 207.876C174.8 207.804 175.418 207.388 175.03 207.589C174.642 207.79 175.489 207.446 175.604 207.446C175.834 207.446 175.992 207.561 176.208 207.604C176.538 207.661 176.337 207.919 176.121 207.518C176.409 208.063 176.523 208.264 176.409 208.909C176.538 208.192 176.394 208.909 176.351 208.895C176.581 208.536 176.61 208.464 176.437 208.708C176.279 208.895 176.294 208.895 176.466 208.708C176.839 208.637 176.279 208.78 176.121 208.88C175.791 209.067 176.768 208.923 175.82 208.938C178.075 208.88 180.229 207.001 180.128 204.634C180.028 202.267 178.233 200.273 175.82 200.33C171.727 200.417 168.524 203.573 167.978 207.561C167.375 212.008 171.224 215.953 175.604 216.053C179.985 216.154 182.871 212.524 183.202 208.579C183.36 206.643 182.627 204.749 181.45 203.257C179.985 201.406 178.103 200.603 175.805 200.345C173.508 200.087 171.396 202.511 171.497 204.648C171.612 207.202 173.393 208.665 175.805 208.952H175.82Z" fill="#3E302E"/>
<path d="M73.3641 260.352C45.9622 218.894 54.5073 168.024 82.4693 129.349C85.715 124.858 78.247 120.555 75.03 125.002C45.3446 166.059 36.9574 220.888 65.9248 264.699C68.9694 269.304 76.4375 265 73.3641 260.352Z" fill="#3E302E"/>
<path d="M270.52 129.191C306.223 163.434 314.251 216.541 292.335 260.553C289.879 265.502 297.304 269.863 299.774 264.9C323.399 217.459 315.228 160.134 276.624 123.108C272.617 119.278 266.527 125.346 270.534 129.191H270.52Z" fill="#3E302E"/>
<path d="M76.7966 130.568C66.8584 117.901 63.5409 101.805 68.1797 86.3405L65.1637 89.3531C73.6514 87.646 82.2971 87.1152 90.9284 87.8612C96.9603 88.3776 102.906 89.5826 108.679 91.3615C112.744 92.6239 116.578 94.9048 120.614 96.0812C123.716 96.9849 126.703 95.9951 129.877 95.4787C134.631 94.704 139.399 94.0871 144.181 93.585C154.995 92.4661 165.867 92.0214 176.725 92.2366C187.481 92.4374 198.253 93.2694 208.909 94.8044C212.528 95.3209 216.779 96.7985 220.441 96.6693C223.342 96.5689 226.545 94.7757 229.36 93.9724C248.978 88.2772 269.644 88.0477 289.449 92.9395L286.289 88.7936C287.122 102.508 284.12 115.692 277.529 127.756C274.872 132.619 282.311 136.966 284.968 132.103C292.249 118.762 295.825 104 294.906 88.7936C294.791 86.9287 293.657 85.1212 291.746 84.6478C271.726 79.6985 250.759 79.5551 230.738 84.6764C227.478 85.5085 224.003 87.3017 220.7 87.7321C216.836 88.2341 211.738 86.5701 207.86 86.0536C197.089 84.6047 186.246 83.7727 175.375 83.6292C164.503 83.4858 152.985 84.0165 141.855 85.2646C137.087 85.7954 132.333 86.441 127.608 87.2156C123.86 87.8181 122.495 87.4308 119.034 86.0106C101.211 78.6226 81.6796 77.2598 62.8802 81.047C61.4154 81.3483 60.2808 82.6824 59.8643 84.0596C54.2776 102.709 58.8303 121.53 70.6929 136.665C74.111 141.026 80.1716 134.886 76.7823 130.582L76.7966 130.568Z" fill="#3E302E"/>
<path d="M202.662 151.857C210.13 158.714 219.321 163.247 229.389 164.624C234.817 165.37 237.158 157.064 231.686 156.318C223.069 155.142 215.185 151.656 208.765 145.774C204.687 142.03 198.583 148.098 202.676 151.857H202.662Z" fill="#3E302E"/>
<path d="M128.11 146.19C121.964 151.627 114.28 155.156 106.108 156.103C100.665 156.734 100.608 165.356 106.108 164.71C116.693 163.477 126.2 159.345 134.2 152.273C138.365 148.6 132.247 142.532 128.11 146.19Z" fill="#3E302E"/>
<path d="M158.399 262.734C155.053 260.897 154.148 252.462 157.81 248.101C163.296 241.545 178.836 244.328 181.607 251.429C183.259 255.661 180.631 262.074 176.954 263.307C174.412 264.154 173.235 261.916 168.395 261.6C162.736 261.213 160.726 264.039 158.385 262.748L158.399 262.734Z" fill="#E490B1"/>
<path d="M160.568 259.018C159.175 258.028 159.72 254.026 160.122 252.835C160.869 250.655 162.176 249.679 164.345 249.077C167.964 248.072 173.809 248.761 176.566 251.616C178.146 253.237 178.089 255.432 177.055 257.426C175.82 259.821 175.532 258.903 173.349 258.215C170.779 257.397 168.093 257.096 165.407 257.383C164.057 257.526 160.697 259.047 159.534 258.588C154.349 256.594 152.109 264.914 157.236 266.894C161.472 268.529 165.58 265.115 169.989 266.191C174.096 267.195 176.911 268.816 180.861 266.019C188.573 260.524 187.883 248.704 180.286 243.683C173.594 239.264 162.55 238.332 156.13 243.769C149.71 249.206 149.05 261.4 156.216 266.478C160.754 269.691 165.063 262.232 160.568 259.047V259.018Z" fill="#3E302E"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M199.416 173.691C202.188 163.85 213.232 161.009 221.561 166.016L221.576 166.03C221.946 166.252 222.261 166.502 222.525 166.773C234.729 176.488 228.21 206.706 209.713 197.103C201.412 192.799 196.86 182.757 199.416 173.691Z" fill="#3E302E"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M213.798 170.391C213.839 170.39 213.88 170.39 213.921 170.391C215.817 170.463 217.741 171.066 219.306 172.17C220.8 173.232 222.15 174.738 222.236 176.646C222.394 179.945 218.402 182.456 215.4 182.169C215.03 182.135 214.659 182.075 214.296 182.017C214.194 182 214.093 181.984 213.993 181.968C213.921 181.959 213.687 181.945 213.657 181.942C213.64 181.94 213.696 181.943 213.907 181.954C213.734 181.939 213.562 181.925 213.39 181.925C213.369 181.92 213.344 181.919 213.32 181.92C213.347 181.914 213.379 181.906 213.418 181.896L213.366 181.908C213.348 181.912 213.331 181.916 213.313 181.921C213.262 181.924 213.213 181.936 213.203 181.94C213.196 181.943 213.209 181.943 213.252 181.935C213.144 181.96 213.035 181.988 212.929 182.024C212.904 182.038 212.861 182.061 212.817 182.084C212.763 182.112 212.709 182.141 212.686 182.155C212.636 182.18 212.548 182.245 212.494 182.286C212.424 182.338 212.411 182.347 212.614 182.169C212.485 182.277 212.359 182.388 212.234 182.499C211.763 182.917 211.3 183.328 210.675 183.532C209.971 183.761 209.196 183.733 208.507 183.489C205.103 182.284 203.853 177.708 205.649 174.738C207.296 172.015 210.655 170.4 213.798 170.391ZM213.252 181.935C213.269 181.931 213.291 181.927 213.32 181.92C213.317 181.92 213.315 181.92 213.313 181.921C213.293 181.925 213.272 181.93 213.252 181.935Z" fill="white"/>
<path d="M215.472 190.905C215.96 191.192 216.736 191.881 216.607 192.498C216.391 193.516 213.677 194.377 212.743 193.287C212.241 192.713 212.212 191.537 212.858 190.905C213.605 190.145 214.869 190.547 215.472 190.905Z" fill="white" stroke="white" stroke-miterlimit="10"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M113.031 169.215C119.149 162.229 129.69 163.735 135.521 170.32V170.334C135.635 170.461 135.739 170.591 135.834 170.722C135.96 170.868 136.081 171.025 136.196 171.195C140.863 178.095 138.767 187.735 133.352 193.631C127.263 200.259 118.66 198.867 113.189 192.182C107.861 185.684 107.344 175.713 113.031 169.215Z" fill="#3E302E"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M121.011 170.298C121.154 170.261 121.3 170.234 121.447 170.219C124.965 169.875 128.369 172.256 129.934 175.283C130.48 176.345 130.997 177.607 130.925 178.826C130.868 179.888 130.38 180.907 129.432 181.452C128.671 181.882 127.852 181.882 127.033 181.724C126.749 181.659 126.469 181.576 126.189 181.492C125.973 181.428 125.758 181.364 125.54 181.308C125.209 181.222 124.865 181.15 124.534 181.093C124.51 181.088 124.487 181.084 124.468 181.08C124.435 181.08 124.391 181.08 124.333 181.079C124.226 181.079 124.122 181.072 124.017 181.064C123.913 181.057 123.809 181.05 123.701 181.05C123.565 181.05 123.432 181.057 123.299 181.064C123.167 181.072 123.034 181.079 122.897 181.079C122.863 181.08 122.834 181.08 122.809 181.08C122.793 181.084 122.774 181.088 122.754 181.093C122.438 181.165 122.122 181.236 121.806 181.323C121.538 181.395 121.275 181.487 121.011 181.578C120.808 181.649 120.605 181.719 120.398 181.782C118.833 182.269 117.296 182.04 116.032 180.993C114.769 179.945 114.065 178.123 114.194 176.502C114.497 172.984 117.792 170.861 121.011 170.298Z" fill="white"/>
<path d="M126.258 189.241C127.191 189.643 128.039 190.69 127.838 191.551C127.536 192.828 124.908 193.66 123.515 192.598C122.897 192.125 122.423 191.192 122.667 190.389C123.041 189.184 124.922 188.653 126.243 189.227L126.258 189.241Z" fill="white" stroke="white" stroke-miterlimit="10"/>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,17 @@
<svg width="360" height="360" viewBox="0 0 360 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M92.0578 269.076C85.4381 265.651 62.7956 253.73 59.561 229.454C57.1538 211.371 66.3763 192.869 82.6999 181.082C81.6167 177.792 78.9086 168.1 82.6247 156.612C86.07 145.993 93.0357 139.905 95.834 137.706C92.795 132.037 88.417 122.106 87.3337 109.033C86.431 98.1142 88.1461 89.1548 89.7409 83.3812C95.7438 82.9176 102.92 82.8727 110.924 83.8449C124.871 85.5201 136.109 89.6334 143.947 93.298C156.735 90.7851 172.352 88.736 190.18 88.5714C210.069 88.392 227.341 90.5757 241.137 93.298C248.148 90.0522 259.537 85.8193 274.16 84.7872C290.363 83.6505 303.347 86.9411 310.96 89.5138C311.351 95.4219 311.261 103.663 309.079 113.146C306.431 124.604 301.798 133.264 298.262 138.768C306.898 152.753 318.211 174.8 324.395 203.818C329.721 228.751 329.42 250.245 328.021 265.412C284.225 269.585 252.345 272.681 143.752 276.331C119.71 277.138 106.681 276.645 92.0427 269.076H92.0578Z" fill="#FCEAF0"/>
<path d="M208.534 183.087C222.782 176.775 241.603 182.937 249.201 196.489C254.075 205.194 254.557 217.354 247.35 226.837C239.692 236.918 226.197 240.209 215.199 237.427C199.237 233.388 189.307 216.756 192.647 202.143C192.828 201.35 195.957 188.666 208.534 183.087Z" fill="#F7D0DD"/>
<path d="M108.652 235.378C101.325 240.388 89.244 243.23 81.5561 237.786C68.9034 228.841 72.2133 200.378 86.4006 191.014C90.6282 188.217 97.1727 186.258 104.078 186.901C106.245 187.11 112.654 187.709 116.776 191.448C126.345 200.108 123.787 225.027 108.652 235.378Z" fill="#F7D0DD"/>
<path d="M90.2973 135.568C83.8732 118.681 82.9705 100.478 87.514 83.0224C87.8751 81.6165 89.169 80.1656 90.6735 79.8814C108.983 76.4412 127.774 78.7746 144.459 87.1357C148.476 89.1549 150.747 87.9434 155.441 87.2404C160.421 86.4925 165.431 85.8494 170.441 85.3558C182.597 84.1592 194.829 83.8002 207.045 84.2789C217.26 84.6827 227.702 87.2254 237.842 87.2554C241.438 87.2554 243.529 85.9092 247.019 84.4883C252.39 82.2895 257.927 80.5844 263.629 79.5075C281.141 76.2169 299.225 78.4006 315.639 85.2062C317.7 86.0588 318.693 87.3302 318.948 89.5289C321.22 109.228 315.217 128.164 302.911 143.6C299.3 148.117 292.951 141.73 296.532 137.258C307.379 123.647 311.907 106.745 309.921 89.5438L313.231 93.8665C296.637 86.9861 278.342 84.8323 260.785 89.3344C253.233 91.2639 245.319 97.4413 237.601 96.2597C227.461 94.7041 217.291 93.6721 207.03 93.2682C195.716 92.8195 184.373 93.1037 173.089 94.0909C167.583 94.5695 162.091 95.2276 156.645 96.0802C153.155 96.6186 148.746 98.3238 145.211 97.6507C142.398 97.1122 139.133 94.4498 136.485 93.2981C132.333 91.4883 127.985 90.1122 123.576 89.0802C113.557 86.7468 103.146 86.6421 93.0505 88.5417L96.2099 85.4007C92.0576 101.405 93.1258 117.753 98.9932 133.174C101.054 138.574 92.3284 140.922 90.2823 135.568H90.2973Z" fill="#3E302E"/>
<path d="M107.524 131.604C92.5089 142.642 84.49 161.474 87.0477 179.901C87.3486 182.1 86.7768 183.655 84.9715 184.972C58.8386 203.967 56.7173 242.557 83.3466 262.181C87.9654 265.577 83.467 273.369 78.788 269.929C66.5566 260.925 57.6802 247.493 55.4234 232.401C52.1587 210.489 62.8255 189.997 80.4129 177.224L78.3367 182.294C75.1773 159.514 84.3546 137.542 102.965 123.871C107.644 120.431 112.142 128.223 107.524 131.619V131.604Z" fill="#3E302E"/>
<path d="M294.275 128.672C323.793 167.157 337.288 216.053 331.722 264.126C331.06 269.794 322.033 269.869 322.695 264.126C328.096 217.384 315.172 170.597 286.467 133.189C282.946 128.597 290.785 124.125 294.26 128.657L294.275 128.672Z" fill="#3E302E"/>
<path d="M217.652 168.863C210.852 169.371 205.375 172.632 200.907 177.628L197.717 169.969C206.428 169.296 215.154 171.615 222.346 176.536C227.1 179.796 222.586 187.574 217.787 184.284C211.769 180.17 204.999 178.375 197.717 178.944C193.55 179.273 192.136 173.948 194.528 171.286C200.636 164.465 208.505 160.576 217.667 159.888C223.459 159.454 223.429 168.429 217.667 168.863H217.652Z" fill="#3E302E"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M112.366 182.401C112.367 182.4 112.367 182.399 112.368 182.399V182.429C112.734 182.142 113.017 181.792 113.225 181.401C116.009 177.722 116.074 172.622 114.234 168.444C111.827 162.984 105.929 161.354 101.085 165.033C96.4809 168.533 94.7808 175.189 97.5641 180.365C100.303 185.467 106.108 186.025 110.65 183.537C111.238 183.326 111.816 182.962 112.353 182.414C112.357 182.409 112.362 182.405 112.366 182.401Z" fill="#3E302E"/>
<path d="M156.239 221.811C168.906 222.215 187.953 217.444 191.338 205.119C193.279 198.089 189.292 191.508 187.953 189.279C179.302 174.95 156.57 167.711 139.388 175.863C130.512 180.066 119.048 190.326 120.537 201.335C122.403 215.081 143.27 221.393 156.239 221.811Z" fill="#F7D0DD"/>
<path d="M156.239 217.324C166.364 217.459 187.893 214.512 187.336 200.542C186.78 186.542 169.945 177.852 157.698 177.029C145.452 176.207 123.321 185.196 125.066 200.527C126.495 213.017 146.219 216.831 156.239 217.324C162.016 217.608 162.061 226.583 156.239 226.299C141.299 225.566 117.844 219.284 116.024 201.335C113.918 180.664 139.945 166.903 157.698 168.04C175.451 169.177 195.882 181.322 196.363 200.527C196.86 220.256 171.87 226.493 156.239 226.284C150.432 226.209 150.416 217.235 156.239 217.309V217.324Z" fill="#3E302E"/>
<path d="M143.405 189.563C147.979 189.354 151.8 193.348 151.74 197.805C151.695 201.694 148.927 205.643 144.895 206.151C140.863 206.66 136.966 203.309 136.199 199.39C135.387 195.247 137.869 190.625 142.202 189.728C144.579 189.234 147.076 190.416 147.753 192.869C148.37 195.098 147.001 197.895 144.594 198.388C143.872 198.538 144.699 198.194 145.03 197.865C144.609 198.284 145.075 198.194 145.015 197.85C145.166 198.568 144.714 197.79 145.015 197.79C145.136 197.79 144.729 197.162 145.105 197.85C145 197.67 144.91 197.506 144.805 197.326C145.151 197.925 144.805 197.431 144.805 197.416L145.136 197.611C144.654 197.296 144.158 197.207 143.661 197.341C143.3 197.401 143.089 197.551 142.789 197.7C142.578 197.88 142.563 197.88 142.743 197.7C142.909 197.521 142.909 197.521 142.743 197.7C142.578 197.895 142.578 197.895 142.713 197.67C142.834 197.446 142.834 197.431 142.728 197.67C142.638 197.895 142.623 197.88 142.698 197.64C142.759 197.386 142.774 197.386 142.713 197.64C142.683 197.91 142.668 197.91 142.683 197.64C142.683 197.371 142.683 197.371 142.683 197.64C142.743 197.805 142.894 198.134 142.939 198.299C142.984 198.523 142.638 198.149 142.804 198.194C143.074 198.284 144.519 198.508 143.375 198.568C140.938 198.687 138.862 196.429 138.862 194.081C138.862 191.553 140.938 189.713 143.375 189.593L143.405 189.563Z" fill="#3E302E"/>
<path d="M163.972 190.281C166.229 190.581 168.109 191.299 169.599 193.093C170.968 194.739 171.75 196.788 171.6 198.927C171.329 203.1 167.959 206.944 163.551 206.734C159.142 206.525 155.487 202.636 155.833 198.254C156.179 193.871 159.564 190.371 163.957 190.266C166.319 190.207 168.576 192.375 168.47 194.754C168.365 197.132 166.484 199.181 163.957 199.241C164.303 199.241 164.559 199.076 164.859 198.942C164.213 199.241 164.905 199.017 164.859 198.882C164.995 199.361 164.228 198.882 164.829 198.882C164.528 198.882 164.739 199.54 164.814 198.882C164.859 198.388 164.709 198.448 164.814 198.837C164.754 198.613 164.664 198.299 164.619 198.074C164.559 197.715 164.228 197.91 164.679 198.134C164.408 197.999 164.273 197.835 163.942 197.79C163.671 197.76 163.4 197.82 163.144 197.925C163.024 197.984 162.422 198.493 162.738 198.179C163.189 197.715 162.302 198.747 162.678 198.224C163.054 197.7 162.407 198.852 162.618 198.269C162.828 197.685 162.512 199.002 162.588 198.373C162.633 197.955 162.618 198.598 162.663 198.747C162.723 198.912 163.144 199.211 162.783 198.927C162.588 198.732 162.588 198.717 162.753 198.882C163.054 199.196 163.46 199.316 163.957 199.256C161.625 198.957 159.323 197.416 159.443 194.769C159.549 192.6 161.444 189.952 163.957 190.281H163.972Z" fill="#3E302E"/>
<path d="M72.2728 223.382C77.3128 212.852 86.6106 207.019 94.148 208.544C104.589 210.668 107.463 226.089 108.064 229.305C112.608 253.641 89.7399 274.596 86.1893 277.752C81.2245 276.675 51.7216 269.899 43.101 246.775C41.8221 243.365 36.8574 230.053 43.8532 222.844C49.4649 217.055 61.26 216.786 72.2728 223.367V223.382Z" fill="#E60012"/>
<path d="M68.3761 221.108C76.9667 204.611 98.8418 195.831 108.696 216.247C116.835 233.119 112.668 251.891 102.076 266.683C98.6613 271.455 94.4187 277.632 89.3937 280.923C85.2263 283.66 78.6818 280.564 74.394 279.023C58.0854 273.145 43.5672 262.615 37.9555 245.698C35.0669 236.993 33.9686 225.985 41.3255 219.119C50.5028 210.564 64.8105 214.153 74.5595 219.508C79.6446 222.305 75.1011 230.053 70.0009 227.256C59.5749 221.512 42.6194 220.465 44.9814 236.784C46.0496 244.218 49.5701 251.367 54.7304 256.797C63.2308 265.741 75.4772 270.842 87.4078 273.444L83.0147 274.596C93.7115 265.008 103.746 251.547 104.138 236.709C104.303 230.367 102.708 222.589 98.9923 217.309C91.4247 206.57 80.2464 217.863 76.1843 225.656C73.5064 230.786 65.7282 226.254 68.3911 221.123L68.3761 221.108Z" fill="#3E302E"/>
<path d="M154.237 249.168C145.541 252.519 129.639 252.683 127.698 240.777C126.78 235.153 129.022 228.886 134.543 226.583C140.065 224.279 147.121 225.73 152.432 227.989C157.742 230.247 153.169 237.98 147.873 235.737C145.451 234.705 141.539 233.912 138.906 234.585C136.589 235.168 135.461 238.848 137.191 240.718C140.275 244.038 148.595 241.779 151.845 240.523C157.261 238.444 159.608 247.104 154.252 249.183L154.237 249.168Z" fill="#3E302E"/>
</svg>

After

Width:  |  Height:  |  Size: 9.2 KiB

View File

@ -0,0 +1,19 @@
<svg width="361" height="360" viewBox="0 0 361 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M277.947 258.716C298.76 255.709 314.434 239.26 315.888 220.075C317.068 204.385 308.576 188.994 294.212 180.533C293.967 174.091 292.715 163.411 286.986 151.786C282.999 143.683 278.149 137.756 274.335 133.819C277.602 129.81 284.251 120.49 286.079 106.861C287.389 97.0681 285.662 89.0652 284.266 84.398C278.249 83.038 269.844 81.8497 259.869 82.5942C245.649 83.6679 234.738 88.2349 228.247 91.5849C216.013 89.1941 201.058 87.247 183.988 87.0895C164.945 86.9178 148.422 89.008 135.209 91.5849C128.501 88.5069 117.591 84.4696 103.587 83.4961C88.0706 82.4081 75.6492 85.5434 68.3518 87.9915C67.7904 92.9164 67.5026 101.019 70.1653 110.454C73.1591 121.106 78.5135 128.493 81.8383 132.444C73.5334 143.94 63.3861 160.619 55.8728 182.323C46.1717 210.34 44.9051 235.008 45.3656 251.099C81.8815 256.54 113.302 260.548 137.958 263.454C220.302 273.132 245.793 263.368 277.918 258.73L277.947 258.716Z" fill="#FCEAF0"/>
<path d="M180.015 173.418C166.471 167.162 148.595 173.275 141.369 186.689C136.734 195.308 136.288 207.348 143.125 216.74C150.408 226.718 163.218 229.983 173.682 227.219C188.853 223.211 198.295 206.747 195.114 192.273C194.941 191.485 191.962 178.93 180.015 173.404V173.418Z" fill="#F7D0DD"/>
<path d="M287.792 173.604C280.739 173.833 275.399 186.632 273.787 192.402C272.895 195.594 270.218 205.143 275.86 214.549C276.321 215.322 283.402 226.704 296.889 227.778C300.573 228.078 304.373 228.379 306.978 226.36C317.975 217.871 301.164 173.16 287.792 173.604Z" fill="#F7D0DD"/>
<path d="M281.689 131.771C287.821 115.708 288.641 98.4282 284.338 81.7925C283.992 80.4467 282.74 79.058 281.315 78.786C263.885 75.5219 245.994 77.7266 230.104 85.6866C226.29 87.605 224.159 86.4597 219.669 85.7725C214.919 85.0566 210.155 84.4554 205.391 83.9829C193.818 82.8519 182.174 82.494 170.559 82.9664C160.829 83.353 150.897 85.7725 141.24 85.8011C137.828 85.8011 135.828 84.5269 132.517 83.1669C127.408 81.0767 122.14 79.4589 116.713 78.4281C100.031 75.3071 82.8171 77.383 67.2003 83.8541C65.2284 84.6701 64.2641 85.887 64.0338 87.9915C62.2202 103.911 65.9625 119.76 74.5553 133.289C77.5203 137.942 84.9904 133.647 82.011 128.951C74.1379 116.582 71.0145 102.537 72.6698 87.9915L69.5032 92.129C85.3071 85.5864 102.694 83.5391 119.405 87.8197C126.602 89.6666 134.129 95.5363 141.484 94.4053C151.128 92.9307 160.814 91.9429 170.573 91.5563C181.339 91.1268 192.134 91.3989 202.872 92.3437C208.111 92.8019 213.321 93.4318 218.517 94.2335C221.842 94.7489 226.045 96.3667 229.399 95.7224C232.076 95.207 235.185 92.6873 237.704 91.585C241.647 89.867 245.793 88.5499 249.995 87.5764C259.538 85.3716 269.426 85.2571 279.041 87.061L276.019 84.0545C279.948 99.3016 278.955 114.792 273.37 129.466C271.398 134.635 279.746 136.882 281.704 131.757L281.689 131.771Z" fill="#3E302E"/>
<path d="M83.695 122.909C54.3614 160.347 39.0901 207.019 41.1915 254.507C41.4362 260.018 50.0722 260.047 49.8275 254.507C47.8268 209.438 61.8891 164.599 89.7977 128.98C93.1802 124.67 87.1062 118.543 83.695 122.909Z" fill="#3E302E"/>
<path d="M265.166 127.348C275.745 136.925 283.719 148.951 287.864 162.638C289.232 167.133 289.059 174.42 291.592 178.271C293.147 180.619 296.385 182.538 298.328 184.699C300.948 187.606 303.193 190.855 305.021 194.306C315.816 214.807 308.418 239.818 289.03 252.13C284.352 255.094 288.685 262.524 293.391 259.546C314.319 246.275 324.322 220.247 315.528 196.754C313.024 190.068 309.238 183.926 304.445 178.629C303.107 177.155 300.905 175.637 299.753 174.048C299.494 173.69 299.235 173.103 298.832 172.144C297.551 168.994 297.493 164.814 296.529 161.478C292.067 146.016 283.23 132.101 271.283 121.292C267.181 117.584 261.049 123.64 265.18 127.362L265.166 127.348Z" fill="#3E302E"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M180.49 159.545C185.355 154.721 193.329 156.21 197.776 160.777L197.791 160.762C198.096 161.075 198.339 161.4 198.526 161.733C202.187 166.669 200.498 173.774 196.279 177.827C191.429 182.495 184.506 180.991 180.447 176.253C176.388 171.514 175.625 164.37 180.49 159.545Z" fill="#3E302E"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M262.302 159.388C264.677 153.532 271.974 151.686 277.084 155.422L277.065 155.431C277.367 155.606 277.662 155.826 277.947 156.095C285.763 163.468 278.724 182.538 267.195 174.721C262.273 171.385 259.927 165.243 262.302 159.388Z" fill="#3E302E"/>
<path d="M311.771 264.342C312.606 253.433 308.763 243.784 301.408 239.789C299.796 238.916 297.393 237.971 294.096 237.771C280.754 222.108 273.111 214.922 271.168 216.224C269.383 217.413 272.377 225.716 280.149 241.121C277.947 241.665 274.694 242.738 271.269 244.986C267.929 247.162 264.317 250.527 263.064 253.218C259.869 260.047 267.023 272.975 281.833 283.011" fill="#FCEAF0"/>
<path d="M319.947 263.927C320.436 253.304 317.457 241.25 307.439 235.666C305.395 234.521 302.776 234.464 300.833 233.418C298.386 232.101 296.385 228.751 294.485 226.561C290.973 222.509 287.375 218.386 283.201 214.979C279.502 211.972 273.241 208.909 270.52 214.864C267.051 222.452 274.824 235.981 277.544 242.538L280.567 237.255C272.305 240.262 261.596 246.962 261.956 256.898C262.345 267.606 272.06 276.339 280.077 282.137C284.583 285.387 288.901 277.943 284.439 274.722C279.113 270.87 272.435 265.215 270.909 258.458C269.383 251.701 277.674 247.434 282.855 245.545C284.842 244.829 286.828 242.552 285.878 240.262C284.05 235.867 282.236 231.443 280.711 226.933C279.962 224.728 279.804 220.963 278.595 219.045C278.537 218.63 278.509 218.2 278.537 217.771C274.953 218.902 273.831 219.603 275.212 219.875C275.227 220.061 276.537 220.505 276.709 220.777C278.106 222.882 281.114 224.714 282.898 226.589C287.231 231.114 291.937 239.918 297.94 241.665C302.992 243.139 306.374 244.499 308.95 249.467C311.268 253.92 311.527 259.045 311.296 263.941C311.037 269.467 319.673 269.453 319.932 263.941L319.947 263.927Z" fill="#3E302E"/>
<path d="M206.384 209.424C201.663 211.514 198.741 214.263 197.1 216.153C195.085 218.472 192.508 221.407 193.315 224.055C194.192 226.919 198.525 227.878 200.655 228.336C209.435 230.283 211.983 225.544 222.634 226.403C225.124 226.604 226.621 226.99 232.882 227.577C238.035 228.05 236.307 227.72 240.222 228.093C246.124 228.651 248.369 229.252 250.614 227.763C250.96 227.534 252.111 226.747 252.831 225.272C253.018 224.886 253.608 223.569 253.277 221.02C252.845 217.656 251.233 215.065 250.039 213.519" fill="#E490B1"/>
<path d="M204.196 205.716C197.46 209.037 183.326 219.775 190.954 228.365C198.582 236.955 210.227 230.985 219.266 230.627C228.765 230.254 238.524 233.848 248.009 232.932C259.61 231.801 258.977 218.787 253.752 211.357C250.585 206.861 243.101 211.142 246.296 215.695C248.383 218.672 251.104 223.755 246.066 224.37C243.346 224.7 240.107 223.798 237.358 223.597C232.436 223.225 227.527 222.466 222.619 222.123C216.617 221.693 211.695 224.013 205.894 224.485C202.353 224.771 197.561 224.399 199.259 220.276C200.597 217.026 205.736 214.535 208.543 213.146C213.523 210.698 209.147 203.282 204.181 205.73L204.196 205.716Z" fill="#3E302E"/>
<path d="M155.115 202.853C154.971 206.346 154.726 209.839 154.28 213.304C153.963 215.738 153.891 219.488 152.725 221.693C152.049 222.996 152.682 223.325 151.056 223.254C149.66 223.196 149.026 221.908 148.594 220.834C147.198 217.398 148.508 213.017 149.573 209.725C151.286 204.456 142.952 202.194 141.239 207.434C139.426 213.032 138.375 219.718 141.11 225.229C143.384 229.811 148.71 232.889 153.906 231.629C159.102 230.369 160.699 225.931 161.649 221.393C162.916 215.294 163.492 209.023 163.751 202.824C163.981 197.298 155.345 197.312 155.115 202.824V202.853Z" fill="#3E302E"/>
<path d="M233.947 213.762C224.404 214.02 204.757 211.357 200.583 197.899C198.108 189.911 201.864 180.634 207.607 175.408C213.163 170.369 220 170.111 233.688 169.581C245.893 169.109 252.011 168.88 257.638 172.759C264.13 177.226 269.326 186.045 267.872 194.291C265.425 208.064 245.634 213.433 233.947 213.762Z" fill="#F7D0DD"/>
<path d="M233.947 209.467C224.145 209.61 208.356 207.663 204.743 196.754C202.411 189.682 206.628 180.276 213.091 176.754C218.704 173.69 226.275 174.177 232.45 173.933C238.625 173.69 246.196 172.559 252.212 174.778C259.193 177.355 264.878 186.074 263.568 193.475C261.452 205.458 244.065 209.037 233.947 209.481C228.405 209.725 228.377 218.315 233.947 218.071C246.138 217.541 260.891 213.862 268.448 203.511C277.242 191.457 269.959 173.905 257.365 167.634C251.248 164.599 244.022 164.943 237.401 165.157C229.413 165.415 220.59 165.057 212.889 167.563C199.82 171.829 191.832 188.379 197.215 201.106C202.944 214.664 220.719 218.243 233.947 218.042C239.503 217.957 239.517 209.367 233.947 209.453V209.467Z" fill="#3E302E"/>
<path d="M246.138 183.082C241.849 183.01 238.207 186.546 238.164 190.827C238.135 194.649 240.812 198.372 244.713 198.916C248.959 199.517 252.903 196.281 253.464 192.13C253.982 188.25 251.334 183.898 247.275 183.239C244.972 182.867 242.626 183.826 241.964 186.246C241.403 188.293 242.669 191.156 244.986 191.528C245.706 191.643 244.986 191.5 245.03 191.414C245.404 191.643 245.461 191.672 245.202 191.514C245.087 191.471 245.015 191.385 244.958 191.285C244.684 190.798 245.116 191.872 244.986 191.328C244.871 190.827 244.9 191.929 244.986 191.371C245.015 191.07 245.058 190.841 245.145 190.555C245.044 190.884 244.785 190.941 245.102 190.655C245.418 190.369 245.303 190.583 245.001 190.684C245.318 190.569 245.533 190.44 245.893 190.483C246.224 190.512 246.411 190.655 246.699 190.813C247.189 191.085 246.455 190.44 246.757 190.87C246.915 191.085 246.93 191.085 246.8 190.87C246.656 190.598 246.671 190.669 246.872 191.099L246.771 190.755L246.814 191.199C246.944 190.669 246.843 191.042 246.728 191.299C246.944 190.827 246.858 191.142 246.685 191.299C246.57 191.4 246.052 191.743 246.469 191.543C247.102 191.242 244.799 191.672 246.124 191.7C248.455 191.743 250.442 189.696 250.442 187.405C250.442 185.115 248.47 183.153 246.124 183.11L246.138 183.082Z" fill="#3E302E"/>
<path d="M226.592 183.755C224.433 184.041 222.648 184.728 221.223 186.432C219.928 187.992 219.179 189.954 219.309 192.001C219.553 195.981 222.778 199.646 226.995 199.46C231.212 199.274 234.681 195.551 234.35 191.371C234.019 187.19 230.795 183.855 226.592 183.755C224.332 183.697 222.173 185.773 222.274 188.049C222.375 190.326 224.174 192.287 226.592 192.344C226.261 192.344 226.016 192.187 225.728 192.058C226.333 192.33 225.699 192.158 225.728 192.001C225.656 192.602 226.218 191.858 225.743 192.001C225.973 191.929 225.829 192.688 225.757 192.001C225.714 191.543 225.858 191.571 225.757 191.944C225.815 191.729 225.901 191.428 225.944 191.199C226.016 190.855 226.318 191.027 225.887 191.256C226.146 191.128 226.275 190.97 226.606 190.927C226.88 190.898 227.139 190.956 227.383 191.056C227.499 191.113 228.074 191.6 227.786 191.299C227.355 190.855 228.204 191.858 227.844 191.342C227.484 190.827 228.103 191.958 227.902 191.4C227.7 190.841 228.002 192.115 227.945 191.514C227.902 191.113 227.916 191.743 227.873 191.886C227.815 192.044 227.412 192.344 227.758 192.058C227.945 191.872 227.945 191.858 227.786 192.015C227.499 192.316 227.11 192.43 226.621 192.373C228.852 192.087 231.054 190.612 230.939 188.078C230.838 186.002 229.024 183.468 226.621 183.783L226.592 183.755Z" fill="#3E302E"/>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,25 @@
<svg width="361" height="360" viewBox="0 0 361 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M67.3425 243.277C58.6458 237.521 54.3407 231.449 52.1089 227.539C40.9933 207.992 48.7973 184.078 61.2951 147.476C65.1395 136.206 68.7967 127.227 71.1581 121.656C67.7024 117.747 60.676 108.682 58.7466 95.4077C57.3644 85.8705 59.1786 78.0803 60.6616 73.5265C68.1344 71.9943 80.3731 70.3904 95.0451 72.7819C105.628 74.5146 114.037 77.7509 119.854 80.5147C131.574 78.4097 145.281 76.7199 160.63 76.2617C183.164 75.5886 202.702 77.7366 218.181 80.5147C226.892 76.8917 242.615 71.7222 262.571 72.5241C273.197 72.9537 282.124 74.9585 288.834 77.0206C289.237 82.3907 289.165 90.0376 286.919 98.9018C284.716 107.594 281.203 114.396 278.323 119.022C282.009 123.69 286.89 130.406 291.728 138.926C298.308 150.526 308.459 168.884 309.741 193.458C310.734 212.489 306.069 228.685 300.914 240.571C263.262 245.411 220.053 248.805 172.25 248.79C134.022 248.79 98.8607 246.599 67.3425 243.292V243.277Z" fill="#FCEAF0"/>
<path d="M219.217 161.652C233.429 155.409 252.175 161.509 259.749 174.927C264.601 183.548 265.091 195.577 257.906 204.957C250.275 214.938 236.827 218.188 225.855 215.425C209.945 211.415 200.039 194.975 203.379 180.512C203.566 179.724 206.691 167.18 219.217 161.652Z" fill="#F7D0DD"/>
<path d="M86.3196 161.652C100.531 155.409 119.278 161.509 126.851 174.927C131.704 183.548 132.193 195.577 125.008 204.957C117.377 214.938 103.929 218.188 92.9573 215.425C77.047 211.415 67.1409 194.975 70.4813 180.512C70.6685 179.724 73.793 167.18 86.3196 161.652Z" fill="#F7D0DD"/>
<path d="M164.374 169.228C152.279 169.5 132.942 174.698 130.221 186.799C127.326 199.658 144.245 215.482 161.609 216.985C182.343 218.775 203.379 200.131 200.903 186.885C198.743 175.357 178.945 168.898 164.388 169.228H164.374Z" fill="#F7D0DD"/>
<path d="M164.374 164.932C149.802 165.49 125.498 171.462 125.57 189.935C125.656 209.052 149.702 222.47 166.778 221.296C182.674 220.207 204.992 207.634 205.409 189.591C205.841 170.603 178.858 164.875 164.374 164.917C158.816 164.932 158.801 173.524 164.374 173.51C173.574 173.481 197.202 176.474 196.77 189.591C196.338 202.708 177.865 211.845 166.778 212.704C154.568 213.635 134.31 204.312 134.209 189.935C134.122 177.233 154.957 173.882 164.374 173.524C169.917 173.309 169.946 164.717 164.374 164.932Z" fill="#3E302E"/>
<path d="M153.359 191.811C153.892 191.782 153.719 191.94 153.474 191.768C153.431 191.739 152.725 191.252 153.1 191.596C153.431 191.911 152.999 191.395 152.927 191.267C152.697 190.823 152.884 191.753 152.898 191.209C152.898 190.88 152.898 190.25 152.841 190.923C152.797 191.467 152.596 191.109 152.841 190.894C152.495 191.166 152.61 191.066 152.884 190.88C153.532 190.422 152.682 190.866 153.172 190.722C153.849 190.522 154.151 190.551 154.784 190.751C155.216 190.894 154.237 190.235 154.799 190.78C154.439 190.422 154.799 190.379 154.741 190.694C154.698 190.923 154.741 191.195 154.684 191.438C154.799 190.737 154.712 191.481 154.612 191.438C154.684 191.467 154.914 190.923 154.482 191.496C154.338 191.682 153.561 191.811 154.482 191.639C156.771 191.181 158.082 188.474 157.506 186.355C156.843 183.978 154.482 182.904 152.193 183.347C148.032 184.164 145.526 188.574 146.333 192.57C147.139 196.565 151.372 199.916 155.533 198.913C159.075 198.069 161.58 194.36 161.465 190.794C161.321 186.57 157.664 182.961 153.345 183.19C151.012 183.319 149.025 185.08 149.025 187.486C149.025 189.72 150.998 191.911 153.345 191.782L153.359 191.811Z" fill="#3E302E"/>
<path d="M173.877 192.484C173.258 192.412 173.07 192.341 172.653 191.882C173.027 192.298 172.811 192.111 172.696 191.668C172.538 190.994 172.696 192.269 172.725 191.567C172.754 190.952 172.494 191.983 172.754 191.496C173.013 191.009 172.336 191.811 172.782 191.453C172.869 191.381 173.488 190.966 173.099 191.166C172.71 191.367 173.546 191.023 173.675 191.023C173.906 191.023 174.05 191.138 174.265 191.166C174.597 191.224 174.395 191.481 174.179 191.08C174.467 191.61 174.582 191.825 174.467 192.469C174.597 191.768 174.438 192.469 174.409 192.441C174.64 192.068 174.669 192.011 174.496 192.255C174.352 192.441 174.352 192.441 174.525 192.255C174.899 192.183 174.337 192.355 174.179 192.412C173.704 192.598 175 192.441 173.891 192.469C176.152 192.412 178.311 190.536 178.211 188.173C178.11 185.811 176.31 183.82 173.891 183.877C169.773 183.978 166.562 187.128 166.015 191.109C165.41 195.563 169.284 199.515 173.675 199.601C178.067 199.687 180.975 196.078 181.321 192.126C181.494 190.193 180.745 188.288 179.564 186.799C178.095 184.951 176.195 184.149 173.891 183.877C171.587 183.605 169.471 186.04 169.572 188.173C169.687 190.722 171.472 192.183 173.891 192.469L173.877 192.484Z" fill="#3E302E"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M200.309 157.659C200.329 157.635 200.349 157.61 200.37 157.586C204.07 153.189 210.996 152.975 214.668 157.442C218.109 161.624 217.994 167.739 214.61 171.906C211.039 176.288 205.179 176.574 201.464 172.249C198.268 168.54 196.957 162.769 199.693 158.445C199.881 158.147 200.088 157.886 200.309 157.659Z" fill="#3E302E"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M116.913 151.483C116.994 151.42 117.076 151.358 117.161 151.299C122.215 147.748 129.285 149.724 131.387 155.538C133.187 160.536 130.984 166.292 126.549 169.113C115.736 175.973 108.608 158.946 116.283 151.972C116.488 151.785 116.699 151.622 116.913 151.483Z" fill="#3E302E"/>
<path d="M116.182 139.399C122.143 141.246 127.787 143.967 131.891 148.779C135.49 153.003 141.581 146.903 137.996 142.707C132.971 136.821 125.757 133.385 118.472 131.108C113.158 129.447 110.884 137.738 116.168 139.399H116.182Z" fill="#3E302E"/>
<path d="M214.696 136.363C206.979 137.552 199.103 140.845 194.193 147.103C190.809 151.414 196.885 157.528 200.298 153.175C204.416 147.934 210.578 145.643 217 144.64C222.472 143.795 220.153 135.518 214.696 136.349V136.363Z" fill="#3E302E"/>
<path d="M78.6884 254.447C59.1497 242.876 53.1888 226.064 53.6783 204.355C54.355 174.383 64.7651 145.027 79.8403 119.351C82.648 114.568 75.1896 110.243 72.3819 115.012C55.9245 143.036 44.6073 175.729 45.0104 208.537C45.2984 231.664 53.8079 249.721 74.3257 261.865C79.1204 264.7 83.4687 257.268 78.6884 254.447Z" fill="#3E302E"/>
<path d="M269.252 119.208C300.022 154.034 325.392 211.93 287.293 250.48C283.391 254.433 289.496 260.504 293.398 256.552C335.14 214.308 309.366 151.614 275.357 113.122C271.685 108.954 265.595 115.055 269.252 119.193V119.208Z" fill="#3E302E"/>
<path d="M74.1241 120.425C64.1748 108.124 60.7623 92.4577 65.4418 77.2927L62.4182 80.2999C71.3884 78.5528 80.5602 78.0516 89.66 78.9395C100.056 79.9562 108.551 83.9229 118.284 86.8585C121.423 87.8036 124.36 86.7869 127.6 86.2857C132.783 85.4695 137.981 84.8251 143.208 84.3239C154.151 83.2785 165.166 82.8775 176.166 83.1353C186.547 83.3787 196.929 84.1807 207.209 85.6127C210.924 86.1282 215.632 87.7177 219.39 87.3597C222.673 87.0447 226.402 85.1401 229.599 84.2952C248.835 79.1973 269.007 79.14 288.316 83.7797L285.148 79.6412C285.983 93.0734 282.931 105.933 276.322 117.661C273.6 122.487 281.059 126.826 283.78 122C291.095 108.997 294.709 94.5484 293.787 79.6412C293.672 77.7939 292.534 75.9609 290.619 75.5027C271.109 70.82 250.736 70.5193 231.154 75.0587C227.396 75.9323 223.595 77.665 219.822 78.2664C215.791 78.8965 211.385 77.5791 207.296 77.0206C196.525 75.5743 185.683 74.7151 174.813 74.5146C163.078 74.2998 151.343 74.8153 139.68 76.0898C135.577 76.5337 131.488 77.0636 127.413 77.6793C122.474 78.424 121.106 78.5958 116.686 76.8201C98.7167 69.6028 79.034 68.314 60.1288 72.0086C58.6458 72.295 57.5371 73.6554 57.1051 75.0158C51.4609 93.3169 56.126 111.804 68.0192 126.511C71.5036 130.821 77.5797 124.707 74.1241 120.439V120.425Z" fill="#3E302E"/>
<path d="M110.912 207.42C142.589 208.264 174.251 209.152 205.899 210.083C222.342 210.57 238.785 211.057 255.242 211.558C254.58 226.494 254.091 241.673 253.774 257.053C253.572 266.691 253.457 276.242 253.399 285.708C226.69 285.693 199.808 285.593 172.768 285.407C150.94 285.264 129.213 285.063 107.601 284.82C105.254 270.629 104.044 253.401 106.132 233.998C107.169 224.36 108.868 215.468 110.912 207.405V207.42Z" fill="white"/>
<path d="M110.912 211.716C159.017 213.004 207.137 214.379 255.242 215.854L250.923 211.558C249.843 236.26 249.224 260.991 249.08 285.708L253.399 281.412C204.805 281.369 156.195 281.082 107.601 280.524L111.762 283.674C107.773 258.6 108.968 233.182 115.073 208.551C116.398 203.181 108.076 200.89 106.737 206.26C100.243 232.466 99.1774 259.301 103.425 285.951C103.713 287.798 105.844 289.087 107.586 289.102C156.181 289.66 204.79 289.946 253.385 289.989C255.732 289.989 257.69 288.013 257.705 285.693C257.849 260.963 258.468 236.246 259.548 211.544C259.648 209.167 257.489 207.319 255.228 207.248C207.123 205.773 159.017 204.398 110.898 203.109C105.34 202.966 105.34 211.558 110.898 211.701L110.912 211.716Z" fill="#3E302E"/>
<path d="M154.439 235.96C163.294 239.511 166.908 255.635 157.391 260.59C149.731 264.586 140.199 258.9 138.485 250.967C136.383 241.229 145.008 233.282 154.439 235.96C159.795 237.478 162.084 229.186 156.743 227.668C143.712 223.974 130.523 232.952 129.587 246.556C128.651 260.161 140.328 271.359 153.805 270.314C177.678 268.466 175.403 235.158 156.743 227.683C151.588 225.62 149.342 233.926 154.439 235.974V235.96Z" fill="#3E302E"/>
<path d="M184.733 229.014C183.84 241.501 182.933 253.989 182.041 266.476C181.637 271.989 190.291 271.975 190.68 266.476C191.572 253.989 192.479 241.501 193.372 229.014C193.775 223.501 185.122 223.515 184.733 229.014Z" fill="#3E302E"/>
<path d="M211.327 233.454C203.005 237.435 194.668 241.401 186.346 245.382C183.178 246.886 183.927 251.11 186.346 252.8C195.446 259.13 204.56 265.445 213.66 271.774C218.224 274.953 222.543 267.507 218.022 264.356C208.923 258.027 199.808 251.712 190.708 245.382V252.8C199.031 248.819 207.368 244.852 215.69 240.871C220.7 238.48 216.323 231.062 211.327 233.454Z" fill="#3E302E"/>
<path d="M267.668 222.241C265.811 222.055 259.216 221.396 254.033 225.449C242.255 234.685 250.62 258.285 251.888 261.836C254.45 269.068 257.215 276.872 263.723 278.605C272.319 280.896 281.865 271.13 285.954 263.626C286.861 261.965 293.355 249.564 287.034 236.876C286.213 235.229 280.123 223.501 267.668 222.255V222.241Z" fill="#FCEAF0"/>
<path d="M267.668 217.945C249.454 216.269 241.953 231.492 243.94 247.373C245.394 259.001 250.016 280.137 263.435 282.901C279.115 286.123 291.872 266.676 293.701 253.387C295.904 237.449 285.407 220.58 268.82 218.102C263.378 217.286 261.031 225.563 266.516 226.394C277.603 228.041 285.566 237.979 285.45 249.077C285.393 253.917 283.895 258.872 281.347 262.982C278.122 268.18 270.433 277.302 263.55 273.693C256.668 270.084 254.004 255.678 252.795 248.547C250.865 237.162 253.515 225.234 267.668 226.537C273.197 227.052 273.168 218.446 267.668 217.945Z" fill="#3E302E"/>
<path d="M95.1458 222.399C103.396 223.157 110.178 231.506 112.15 239.311C114.08 246.958 111.171 253.23 108.09 259.903C104.793 267.006 99.6813 278.047 91.8197 278.662C82.36 279.407 71.4171 264.915 71.4891 251.082C71.5611 237.048 82.9791 221.282 95.1602 222.399H95.1458Z" fill="#FCEAF0"/>
<path d="M93.994 226.537C99.6526 227.453 103.771 231.062 106.333 236.089C109.674 242.661 108.22 249.063 105.383 255.521C102.935 261.091 97.9104 275.54 89.948 274.266C80.1715 272.705 75.1752 257.225 75.8951 249.063C76.7446 239.354 84.0879 226.394 95.1603 226.695C100.718 226.838 100.718 218.246 95.1603 218.102C79.8979 217.687 69.2574 233.353 67.5008 247.043C65.7442 260.733 73.9225 280.796 89.1849 282.801C103.555 284.691 111.301 265.115 115.131 254.447C120.329 239.998 112.798 220.938 96.3121 218.26C90.8695 217.372 88.537 225.649 94.0084 226.551L93.994 226.537Z" fill="#3E302E"/>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,18 @@
<svg width="361" height="360" viewBox="0 0 361 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M77.4727 268.692C71.962 265.844 49.5454 254.248 46.0778 230.398C42.8261 208.038 58.6387 191.646 61.0702 189.213C61.3148 182.67 62.581 171.805 68.365 159.98C72.3937 151.749 77.2856 145.722 81.1273 141.714C77.8324 137.634 71.1131 128.171 69.2715 114.299C67.9478 104.336 69.6887 96.2045 71.0988 91.4518C77.1705 90.0775 85.6595 88.8607 95.7168 89.6194C110.062 90.7217 121.083 95.3599 127.63 98.7527C139.975 96.3191 155.068 94.3435 172.305 94.1861C191.527 94 208.203 96.133 221.526 98.7527C228.303 95.6176 239.31 91.5234 253.439 90.5356C269.094 89.4333 281.64 92.6257 288.992 95.1022C289.366 100.714 289.309 108.688 287.165 117.95C285.064 127.026 281.712 134.126 278.964 138.965C286.705 147.039 306.56 169.93 311.783 205.661C315.74 232.775 309.409 254.491 305.467 265.171C263.166 269.194 232.346 272.2 127.457 275.721C104.22 276.509 91.645 276.022 77.5015 268.707L77.4727 268.692Z" fill="#FCEAF0"/>
<path d="M186.995 185.548C200.764 179.435 218.937 185.405 226.274 198.518C230.979 206.935 231.44 218.688 224.49 227.85C217.095 237.599 204.059 240.777 193.426 238.086C178.002 234.178 168.42 218.101 171.643 203.972C171.815 203.213 174.851 190.945 186.995 185.548Z" fill="#F7D0DD"/>
<path d="M90.5082 236.096C83.4293 240.949 71.7605 243.683 64.3363 238.429C52.1207 229.783 55.3005 202.268 69.0124 193.207C73.0986 190.501 79.415 188.597 86.0911 189.227C88.1773 189.427 94.3786 190.014 98.3641 193.622C107.601 201.996 105.141 226.075 90.5082 236.096Z" fill="#F7D0DD"/>
<path d="M84.1344 137.29C78.4511 122.359 77.4295 106.555 81.4438 91.0796L78.4223 94.0858C87.7746 92.325 97.4146 92.3393 106.738 94.3292C111.414 95.3313 116.047 96.7772 120.421 98.6811C122.968 99.7977 126.133 102.375 128.838 102.89C132.09 103.505 136.147 101.959 139.37 101.458C144.305 100.685 149.284 100.055 154.262 99.5973C165.211 98.5666 176.233 98.2374 187.211 98.6096C197.196 98.9531 207.167 99.855 217.023 101.387C224.951 102.618 231.598 97.2639 239.253 95.1738C256.576 90.4354 274.69 92.4109 291.136 99.2394L287.971 95.1022C289.539 108.917 286.92 122.373 279.942 134.427C277.165 139.223 284.618 143.56 287.395 138.765C295.078 125.48 298.345 110.348 296.604 95.1022C296.359 92.9692 295.381 91.7667 293.438 90.9651C277.597 84.3942 260.13 82.2755 243.209 85.4536C237.699 86.4843 232.346 88.1449 227.167 90.2636C223.958 91.5806 221.67 92.9549 218.275 92.9406C208.045 92.8977 197.527 90.3638 187.211 90.0202C175.815 89.6337 164.391 90.0059 153.053 91.1225C145.73 91.8526 135.241 95.3027 128.795 93.2126C120.061 90.3638 112.594 86.3698 103.227 85.0527C93.8607 83.7357 85.1271 84.1079 76.1346 85.7971C74.7102 86.0691 73.4728 87.4434 73.1131 88.8034C68.7391 105.681 69.6024 123.275 75.8037 139.581C77.746 144.706 86.1055 142.487 84.1344 137.29Z" fill="#3E302E"/>
<path d="M87.1559 128.987C74.7821 140.211 65.6601 154.698 61.2141 170.788C60.1638 174.596 59.4012 178.447 58.8689 182.37C58.7106 183.529 58.2358 185.09 58.4085 186.278C58.8833 189.613 59.3005 186.049 58.8257 186.836C56.5524 190.616 53.2863 193.779 51.1137 197.716C38.1068 221.265 43.2866 251.17 63.7896 268.778C67.9765 272.372 74.1059 266.33 69.8902 262.709C50.9698 246.46 47.1857 219.161 60.8113 198.332C62.3508 195.984 64.9838 193.822 66.2356 191.36C68.4226 187.022 67.7751 180.065 68.9693 175.241C72.8253 159.637 81.3575 145.851 93.2565 135.057C97.3715 131.321 91.2565 125.265 87.1559 128.987Z" fill="#3E302E"/>
<path d="M271.683 132.795C306.071 166.866 317.61 217.371 300.503 262.766C298.546 267.948 306.891 270.181 308.834 265.056C326.991 216.899 314.229 162.829 277.798 126.74C273.856 122.831 267.755 128.901 271.698 132.809L271.683 132.795Z" fill="#3E302E"/>
<path d="M91.2852 177.102C95.5153 176.257 99.4865 177.273 102.925 179.822C104.81 181.225 107.731 180.108 108.824 178.276C110.134 176.1 109.126 173.78 107.27 172.406C101.99 168.469 95.3427 167.539 88.9831 168.813C83.5444 169.901 85.8465 178.175 91.2852 177.102Z" fill="#3E302E"/>
<path d="M116.421 222.94C115.99 223.742 112.349 230.713 114.177 237.971C115.817 244.471 121.025 248.021 125.543 247.219C132.363 245.988 140.047 234.378 139.342 220.005" fill="#E490B1"/>
<path d="M112.695 220.764C107.314 231.071 108.321 251.099 123.831 251.585C139.342 252.072 143.931 231.114 143.672 220.005C143.543 214.494 134.91 214.465 135.04 220.005C135.198 226.662 133.514 239.99 125.687 242.681C121.356 244.17 118.709 239.131 118.177 235.609C117.644 232.088 118.508 228.251 120.162 225.102C122.723 220.206 115.27 215.854 112.709 220.764H112.695Z" fill="#3E302E"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M189.427 187.781C185.053 191.589 178.42 190.072 175.902 184.904L175.913 184.86C175.737 184.566 175.587 184.238 175.47 183.873C172.521 174.697 186.132 163.33 191.858 174.11C194.218 178.576 193.283 184.417 189.427 187.781Z" fill="#3E302E"/>
<path d="M274.59 253.475C271.683 244.814 268.791 236.168 265.885 227.507C267.813 225.76 272.216 221.251 272.302 215.21C272.432 206.262 263.065 196.8 248.95 195.168C241.986 173.823 237.569 169.386 234.749 169.658C232.749 169.844 230.936 172.478 230.188 174.21C228.821 177.374 229.814 180.265 231.023 184.989C231.843 188.196 232.907 192.877 233.828 198.804C222.893 200.579 216.304 211.144 218.721 220.22C220.749 227.85 228.879 233.448 237.958 232.517C238.878 241.937 239.785 251.356 240.706 260.762" fill="#FCEAF0"/>
<path d="M278.748 252.33C275.842 243.669 272.95 235.022 270.043 226.361L268.935 230.542C286.518 213.878 269.511 193.908 250.087 191.016L253.108 194.023C250.677 186.693 246.274 166.837 236.058 165.463C230.562 164.733 226.346 170.345 225.454 175.198C224.059 182.785 228.447 192.434 229.67 199.949L232.692 194.667C221.642 197.072 212.807 206.821 214.059 218.502C215.325 230.327 226.735 237.356 237.958 236.812L233.641 232.517C234.562 241.937 235.469 251.356 236.389 260.762C236.922 266.216 245.555 266.273 245.022 260.762C244.101 251.342 243.195 241.922 242.274 232.517C242.058 230.298 240.476 228.108 237.958 228.222C230.821 228.566 222.922 224.758 222.548 216.77C222.203 209.469 228.404 204.373 234.979 202.941C237.425 202.412 238.346 199.849 238.001 197.659C237.123 192.233 235.814 186.965 234.62 181.611C234.102 179.306 233.31 177.173 234.677 174.94C235.656 173.351 235.051 174.038 234.605 173.938C236.073 174.281 237.857 178.662 238.418 179.793C241.08 185.047 242.936 190.716 244.792 196.284C245.224 197.587 246.317 199.062 247.814 199.291C260.144 201.123 275.842 212.146 262.849 224.457C261.784 225.46 261.266 227.235 261.741 228.638C264.648 237.299 267.54 245.945 270.446 254.606C272.201 259.831 280.532 257.584 278.777 252.315L278.748 252.33Z" fill="#3E302E"/>
<path d="M136.478 222.983C148.723 223.369 167.125 218.76 170.391 206.849C172.261 200.049 168.42 193.693 167.125 191.532C158.765 177.689 136.795 170.688 120.205 178.562C111.63 182.627 100.551 192.534 101.99 203.185C103.788 216.469 123.946 222.582 136.478 222.983Z" fill="#F7D0DD"/>
<path d="M136.478 227.278C152.262 227.492 177.556 220.664 174.981 200.336C172.708 182.298 153.025 171.375 136.262 170.989C119.572 170.617 95.688 183.859 97.6592 203.185C99.4289 220.492 122.047 226.576 136.464 227.278C142.018 227.55 142.003 218.96 136.464 218.688C126.896 218.23 108.954 214.823 106.422 203.542C103.141 188.926 124.853 179.321 136.248 179.578C148.492 179.85 162.636 186.951 166.046 199.52C170.247 215.009 147.097 218.846 136.464 218.688C130.91 218.617 130.91 227.206 136.464 227.278H136.478Z" fill="#3E302E"/>
<path d="M124.076 200.436C125.025 200.393 123.946 200.15 123.63 200.178C123.371 200.207 123.587 199.849 123.774 200.293C123.702 200.135 123.543 199.921 123.457 199.777C123.097 199.162 123.745 199.677 123.443 199.777L123.5 199.405L123.4 199.777L123.543 199.477L123.356 199.806C123.673 199.591 123.673 199.62 123.356 199.806C123.687 199.591 123.932 199.391 124.349 199.334C124.623 199.248 124.896 199.291 125.169 199.448C125.788 199.663 125.932 199.677 125.587 199.505C125.371 199.505 125.644 199.677 125.543 199.463C125.356 199.019 125.615 199.577 125.644 199.663C125.759 199.992 125.702 199.205 125.587 199.577C125.572 199.634 125.486 200.45 125.558 199.964C125.601 199.62 125.227 200.193 125.529 199.964C125.889 199.692 125.371 200.092 125.284 200.164C125.112 200.321 124.364 200.465 125.227 200.293C127.515 199.82 128.838 197.143 128.248 195.01C127.601 192.648 125.227 191.532 122.939 192.004C118.795 192.863 116.364 197.315 117.169 201.295C117.932 205.06 121.543 208.295 125.515 207.794C129.486 207.293 132.047 203.499 132.09 199.763C132.147 195.468 128.479 191.632 124.09 191.832C121.759 191.947 119.774 193.722 119.774 196.127C119.774 198.375 121.745 200.536 124.09 200.422L124.076 200.436Z" fill="#3E302E"/>
<path d="M143.96 201.123C143.485 201.066 143.111 200.794 142.708 200.679C143.14 200.822 142.823 201.152 142.809 200.794C142.795 200.593 142.708 200.364 142.68 200.15C142.737 200.694 142.593 200.336 142.766 200.064C142.478 200.565 142.694 200.164 142.852 200.049C142.334 200.465 142.91 200.049 142.939 200.049L142.694 200.293L143.01 200.021C143.327 199.878 143.6 199.763 143.946 199.806C144.176 199.835 144.32 199.978 144.521 200.035C144.766 200.107 144.363 199.706 144.464 199.949C144.536 200.121 144.651 200.393 144.737 200.579C144.938 201.009 144.823 200.135 144.766 200.608C144.766 200.694 144.564 201.438 144.694 200.966C144.823 200.751 144.823 200.751 144.665 200.937C144.507 201.109 144.507 201.109 144.679 200.937C144.852 200.765 144.852 200.765 144.665 200.908C144.464 201.052 144.464 201.052 144.665 200.937C145.054 200.737 144.09 201.137 143.974 201.137C146.305 201.08 148.291 199.205 148.291 196.843C148.291 194.481 146.32 192.491 143.974 192.548C139.802 192.648 136.593 195.998 136.19 200.035C135.788 204.072 139.298 208.238 143.572 208.367C147.615 208.496 150.737 205.26 151.226 201.424C151.499 199.362 150.953 197.344 149.715 195.669C148.262 193.693 146.363 192.849 143.974 192.534C141.586 192.219 139.658 194.724 139.658 196.828C139.658 199.405 141.658 200.823 143.974 201.123H143.96Z" fill="#3E302E"/>
</svg>

After

Width:  |  Height:  |  Size: 9.7 KiB

View File

@ -0,0 +1,21 @@
<svg width="360" height="360" viewBox="0 0 360 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M79.8182 268.324C77.0005 265.026 66.506 251.948 66.6641 232.517C66.8654 207.45 84.6198 192.55 87.0206 190.6C86.2012 185.811 85.5974 178.884 86.8193 170.753C88.6307 158.794 93.5186 150.118 96.6669 145.429C93.8349 141.571 88.5732 133.325 86.8193 121.452C85.2811 111.069 87.1356 102.666 88.4582 98.1489C93.6911 96.7866 101.727 95.3956 111.417 96.4568C124.355 97.8908 133.887 102.996 138.976 106.251C146.351 103.025 156.974 99.3822 170.143 98.1489C189.162 96.3564 204.502 100.4 213.444 103.555C221.178 98.8229 235.597 91.5238 254.775 90.3909C265.197 89.7743 274.067 91.1366 280.695 92.757C281.385 100.486 281.442 110.467 279.387 121.796C278.351 127.489 276.943 132.565 275.447 136.997C276.741 138.746 278.064 140.653 279.387 142.733C281.169 145.558 282.693 148.282 283.972 150.835C286.373 149.716 289.766 148.139 293.834 146.26C315.082 136.509 316.922 136.236 317.584 136.982C318.906 138.459 316.29 144.726 298.65 166.064C311.043 161.289 320.847 160.471 322.4 163.583C323.88 166.566 318.044 173.693 308.872 180.605C317.239 179.988 319.136 181.967 319.697 183.086C322.328 188.377 307.621 200.309 304.803 202.546C307.003 206.59 309.159 210.992 311.186 215.753C317.67 231.068 320.718 245.408 322.112 257.253C271.149 264.51 230.091 267.492 200.98 268.826C183.124 269.643 168.375 269.887 79.8326 268.31L79.8182 268.324Z" fill="#FCEAF0"/>
<path d="M117.153 196.293C105.336 188.55 85.0656 195.132 76.9862 209.472C72.1703 218.033 71.6959 229.993 78.812 239.314C86.1869 248.979 99.3266 253.926 110.569 249.725C125.434 244.175 128.323 226.078 127.072 215.667C126.67 212.311 125.405 201.714 117.139 196.293H117.153Z" fill="#F7D0DD"/>
<path d="M183.47 216.814C184.605 222.306 185.913 230.552 185.913 240.676C185.913 251.632 185.913 259.476 181.457 261.957C176.555 264.682 172.184 257.655 161.086 258.903C154.487 259.648 152.863 262.488 148.148 261.125C143.547 259.792 140.04 255.576 138.516 251.517C137.811 249.624 137.711 248.09 137.667 244.591C137.624 240.475 137.667 234.768 138.099 227.784" fill="#E490B1"/>
<path d="M179.315 217.961C181.284 227.799 181.845 237.722 181.558 247.746C181.486 250.141 181.859 257.497 178.826 258.214C176.842 258.687 172.285 255.791 170.272 255.303C166.894 254.471 163.401 254.285 159.95 254.773C154.919 255.475 150.548 258.974 145.977 255.045C139.306 249.309 142.009 235.528 142.426 227.813C142.728 222.278 134.102 222.292 133.8 227.813C133.168 239.256 130.796 253.453 140.672 261.771C144.338 264.854 148.967 266.488 153.74 265.384C160.741 263.764 165.428 262.502 172.472 265.141C197.975 274.691 190.183 228.329 187.653 215.681C186.56 210.261 178.251 212.555 179.329 217.976L179.315 217.961Z" fill="#3E302E"/>
<path d="M154.114 229.677C169.381 229.319 178.424 229.118 183.455 222.937C187.164 218.391 186.992 212.698 186.949 211.021C186.949 211.021 186.733 203.621 181.543 197.742C170.301 184.993 137.653 185.681 127.417 199.52C125.261 202.431 122.156 208.554 123.565 215.566C123.867 217.115 124.801 221.446 128.438 224.931C133.786 230.036 141.477 229.964 154.114 229.677Z" fill="#F7D0DD"/>
<path d="M154.114 233.979C170.186 233.592 192.297 232.861 191.261 211.035C190.442 193.726 174.729 185.538 159.232 184.463C143.734 183.387 124.168 188.894 119.726 205.815C117.484 214.333 120.057 224.271 127.36 229.606C134.663 234.94 145.316 234.18 154.114 233.979C159.663 233.85 159.677 225.246 154.114 225.375C147.86 225.519 139.939 226.594 134.131 223.697C126.9 220.098 126.167 210.504 129.631 204.08C134.936 194.243 149.197 192.321 159.232 193.052C169.956 193.841 181.658 198.688 182.621 210.906C183.887 226.737 164.723 225.103 154.099 225.361C148.565 225.49 148.536 234.094 154.099 233.965L154.114 233.979Z" fill="#3E302E"/>
<path d="M80.1202 139.635C73.6078 136.767 67.0667 133.741 60.3819 131.303C57.1473 130.128 53.0645 128.88 50.2324 131.648C48.2916 133.541 48.3635 136.036 48.6223 138.502C49.2836 144.898 51.6412 151.337 53.4814 157.46L56.5003 152.168C50.4624 153.23 32.2479 155.696 35.3532 165.404C38.0415 173.822 52.1731 179.372 58.9874 183C63.8896 185.595 68.2456 178.182 63.3433 175.572C59.3037 173.421 55.2784 171.241 51.3968 168.817C49.1685 167.426 46.969 165.017 44.6688 163.927C44.2088 163.712 43.7488 162.952 43.4756 162.565C45.4883 165.419 39.9391 166.064 46.8971 163.569C50.7643 162.178 54.7608 161.203 58.8005 160.486C61.0575 160.084 62.4376 157.259 61.8195 155.194C61.2013 153.129 57.7223 136.38 57.061 136.251L55.2496 138.646C55.954 138.832 56.6441 139.062 57.3341 139.334C58.5849 140.252 60.7413 140.668 62.222 141.27C66.7792 143.134 71.2933 145.099 75.793 147.078C80.8246 149.286 85.2237 141.887 80.1489 139.649L80.1202 139.635Z" fill="#3E302E"/>
<path d="M144.985 211.766C145.948 211.723 144.367 211.523 144.18 211.436C143.849 211.293 143.849 210.978 144.108 211.393C143.921 211.107 143.706 210.92 143.619 210.576C143.547 210.289 143.648 209.787 143.576 210.332C143.619 210.017 143.792 209.601 143.576 210.103C143.706 209.802 143.964 209.529 143.634 209.916C143.806 209.716 144.166 209.4 143.763 209.73C144.151 209.4 144.539 209.171 145.071 209.113C145.416 209.013 145.747 209.056 146.078 209.242C146.782 209.486 146.969 209.529 146.638 209.357C146.149 209.113 147.228 209.845 146.796 209.458C146.494 209.185 146.998 209.845 147.055 209.916C147.141 210.189 147.156 210.218 147.084 209.988C147.026 209.744 147.012 209.787 147.07 210.089C147.055 210.203 146.926 211.078 147.026 210.748C147.199 210.232 146.609 211.465 146.911 210.963C147.098 210.648 146.595 211.293 146.48 211.379C146.293 211.508 145.388 211.795 146.121 211.637C148.335 211.178 149.815 208.454 149.14 206.346C148.378 204.008 146.207 202.847 143.835 203.334C140.083 204.109 137.898 208.196 138.645 211.795C139.35 215.194 142.656 218.062 146.221 217.588C149.787 217.115 152.159 213.774 152.187 210.361C152.216 206.489 148.938 203.004 144.971 203.191C142.714 203.291 140.557 205.098 140.658 207.493C140.758 209.73 142.555 211.91 144.971 211.795L144.985 211.766Z" fill="#3E302E"/>
<path d="M163.228 211.164C162.624 211.092 162.064 210.92 161.604 210.547C162.006 210.863 161.675 210.748 161.532 210.461C161.388 210.132 161.302 209.845 161.302 209.486C161.302 210.074 161.345 209.372 161.402 209.171C161.259 209.716 161.46 209.142 161.56 208.941C161.287 209.429 161.618 208.941 161.776 208.755C161.402 209.171 161.819 208.712 162.006 208.597C162.394 208.353 162.869 208.253 163.329 208.325C163.703 208.368 163.889 208.525 164.22 208.683C164.637 208.884 164.105 208.368 164.335 208.784C164.522 209.113 164.608 209.343 164.723 209.701C164.752 210.031 164.766 210.074 164.766 209.83C164.766 209.587 164.766 209.63 164.752 209.959C164.709 210.103 164.393 210.863 164.579 210.576C164.896 210.103 164.019 211.121 164.436 210.734C164.853 210.347 163.76 211.178 164.234 210.877C164.436 210.763 164.393 210.777 164.105 210.935C163.846 211.092 163.559 211.164 163.242 211.164C165.5 211.107 167.656 209.228 167.555 206.862C167.455 204.496 165.658 202.503 163.242 202.56C159.404 202.646 156.601 205.686 156.198 209.386C155.796 213.086 159.117 216.785 162.926 216.886C166.736 216.986 169.381 214.089 169.855 210.619C170.1 208.769 169.64 206.891 168.49 205.399C167.11 203.621 165.471 202.847 163.257 202.56C161.043 202.273 158.843 204.754 158.944 206.862C159.059 209.443 160.856 210.849 163.257 211.164H163.228Z" fill="#3E302E"/>
<path d="M248.823 196.293C234.749 190.084 216.161 196.15 208.656 209.472C203.84 218.033 203.366 229.993 210.482 239.314C218.044 249.223 231.371 252.464 242.239 249.725C258.009 245.753 267.814 229.405 264.507 215.022C264.335 214.247 261.23 201.771 248.809 196.279L248.823 196.293Z" fill="#F7D0DD"/>
<path d="M98.6366 196.982C104.459 199.29 110.296 201.599 116.118 203.894L115.083 196.035C109.261 199.907 103.424 203.779 97.6015 207.665C93.0012 210.719 97.314 218.176 101.957 215.093C107.78 211.221 113.616 207.35 119.439 203.463C122.717 201.284 121.854 196.967 118.404 195.605C112.581 193.296 106.745 190.987 100.922 188.693C95.7614 186.657 93.5187 194.974 98.6222 196.996L98.6366 196.982Z" fill="#3E302E"/>
<path d="M209.907 184.964C203.524 188.463 197.141 191.977 190.758 195.476C187.941 197.025 187.969 201.355 190.758 202.904C197.041 206.403 203.337 209.916 209.62 213.415C214.464 216.126 218.82 208.697 213.976 205.987C207.693 202.488 201.397 198.975 195.114 195.476V202.904C201.497 199.405 207.88 195.892 214.263 192.393C219.122 189.725 214.781 182.283 209.907 184.964Z" fill="#3E302E"/>
<path d="M100.39 143.249C91.2617 130.3 88.3577 114.597 92.6274 99.2818L89.6084 102.293C98.0903 100.228 106.917 99.7837 115.514 101.418C120.344 102.351 125.074 103.842 129.516 105.936C131.96 107.083 135.152 109.908 137.826 110.395C140.5 110.883 143.332 109.047 145.833 108.13C149.442 106.825 153.122 105.706 156.86 104.803C166.434 102.465 176.296 101.605 186.129 102.121C194.266 102.551 202.302 104 210.094 106.366C216.118 108.201 219.309 104.874 224.729 102.351C241.908 94.3918 261.115 92.5706 279.53 96.8726L276.368 92.7283C277.547 107.413 275.85 121.81 271.279 135.821C269.553 141.098 277.877 143.364 279.602 138.115C284.404 123.431 286.23 108.115 285.008 92.7283C284.864 90.8928 283.771 89.0285 281.845 88.584C268.216 85.4148 254.185 85.0707 240.485 88.0534C234.404 89.3727 228.495 91.366 222.788 93.8612C220.517 94.8507 218.274 95.9262 216.075 97.1021C215.226 97.5466 213.961 98.6795 213.012 98.8086C215.039 98.5361 212.337 98.1633 211.618 97.8765C199.858 93.1155 184.347 92.714 171.94 93.7465C159.534 94.779 148.047 97.8048 136.791 102.551H141.147C125.002 92.4559 105.796 89.5161 87.3083 94.0189C85.8563 94.3774 84.6918 95.6107 84.2893 97.0304C79.4446 114.396 82.521 132.867 92.9293 147.623C96.092 152.111 103.582 147.823 100.376 143.278L100.39 143.249Z" fill="#3E302E"/>
<path d="M82.8661 265.284C66.2474 244.677 68.26 216.972 84.4906 196.881C86.0001 195.017 88.0702 193.382 89.4503 191.446C92.0668 187.761 90.2985 182.455 90.4423 178.067C90.8735 163.784 96.9977 150.405 106.96 140.252C110.842 136.294 104.746 130.199 100.865 134.171C90.8304 144.396 84.1887 157.46 82.3486 171.7C81.8598 175.5 81.6729 179.329 81.8741 183.158C81.9029 183.588 81.8454 189.281 83.3549 185.352C83.2111 185.739 82.4492 186.241 82.176 186.528C79.4015 189.439 76.8569 192.565 74.5424 195.849C58.0962 219.238 58.7718 249.051 76.7563 271.364C80.2353 275.681 86.302 269.557 82.8517 265.284H82.8661Z" fill="#3E302E"/>
<path d="M272.4 140.022C275.735 144.296 277.762 153.617 283.599 155.295C289.436 156.972 295.057 151.58 299.384 148.985C303.323 146.619 309.303 144.869 312.524 141.786C315.744 141.428 315.902 140.137 312.998 137.9C312.811 138.617 312.538 139.305 312.178 139.936C311 141.083 310.166 143.564 309.26 144.97C304.832 151.91 299.686 158.378 293.95 164.286C290.384 167.957 294.855 173.033 299.183 171.04C305.551 168.1 311.287 166.566 318.03 165.419L317.196 163.942L316.578 165.361C315.844 165.935 315.284 167.469 314.723 168.229C312.193 171.685 308.973 174.654 305.824 177.536C303.122 180.017 305.177 185.051 308.872 184.878C310.655 184.792 312.739 184.549 314.522 184.979C315.83 185.294 315.888 185.567 315.643 184.692C316.06 186.212 312.178 189.898 311.23 190.901C308.311 194.013 305.062 196.824 301.741 199.491C300.275 200.667 300.174 203.191 301.066 204.711C311.014 221.647 316.175 240.547 316.233 260.179C316.247 265.714 324.873 265.728 324.858 260.179C324.801 239.07 319.208 218.578 308.513 200.366L307.837 205.586C313.674 200.896 321.997 194.63 323.952 187.001C326.396 177.465 315.715 176.002 308.858 176.303L311.905 183.645C316.664 179.286 331.227 166.781 324.01 159.181C317.325 152.125 301.368 160.615 294.798 163.641L300.031 170.395C304.329 165.978 330.709 138.631 318.418 132.637C311.46 129.253 298.536 139.391 293.173 142.69C291.233 143.88 289.335 145.113 287.351 146.232C285.195 147.451 286.92 147.551 286.258 146.705C283.283 142.933 281.572 137.857 278.51 133.913C275.103 129.54 269.036 135.677 272.414 139.994L272.4 140.022Z" fill="#3E302E"/>
<path d="M273.018 241.422C277.431 241.608 280.321 217.087 281.902 203.707C282.894 195.332 283.153 188.363 279.358 185.983C277.086 184.563 273.809 185.065 271.839 186.083C258.901 192.837 266.851 241.149 273.018 241.422Z" fill="#E60012"/>
<path d="M274.154 245.566C279.358 244.72 280.867 236.991 281.816 232.904C283.671 224.902 284.634 216.671 285.626 208.525C286.503 201.355 289.292 189.725 283.412 183.789C278.926 179.257 271.034 180.261 266.779 184.577C258.556 192.923 260.051 209.343 261.33 219.826C262.078 226.064 263.343 243.974 271.868 245.566C277.288 246.584 279.617 238.296 274.168 237.263C274.959 237.407 274.585 237.364 274.082 236.489C273.42 235.327 273.047 233.994 272.659 232.732C271.523 229.089 270.761 225.289 270.2 221.518C268.964 213.2 268.159 203.621 270.603 195.447C271.408 192.737 274.527 186.169 277.733 191.045C280.335 194.988 277.474 204.84 276.899 209.4C276.195 215.122 275.433 220.844 274.355 226.494C273.895 228.86 273.435 231.24 272.759 233.549C272.515 234.381 272.299 235.256 271.968 236.059C271.307 237.693 270.804 237.435 271.853 237.263C266.391 238.152 268.705 246.441 274.154 245.566Z" fill="#3E302E"/>
<path d="M267.167 269.113C269.05 270.059 271.465 269.715 273.19 268.64C275.893 266.947 276.914 263.463 276.051 260.738C274.628 256.264 268.317 254.543 265.514 256.536C262.178 258.888 262.94 267.005 267.167 269.127V269.113Z" fill="#E60012"/>
<path d="M266.017 273.271C272.759 275.996 279.875 270.676 280.58 263.836C281.184 257.927 276.813 252.88 271.12 251.718C265.715 250.614 260.626 253.209 259.433 258.802C258.34 263.979 260.209 270.131 264.982 272.841C269.755 275.552 274.168 268.152 269.338 265.413C268.159 264.739 267.627 262.889 267.742 261.269C267.756 261.011 268.303 259.505 267.9 260.164C268.389 259.376 268.188 260.107 267.857 260.107C268.389 260.107 268.159 259.949 268.921 260.035C270.028 260.164 271.839 260.939 272.055 262.473C272.385 264.796 270.143 265.7 268.317 264.968C266.161 264.094 263.573 265.915 263.012 267.98C262.337 270.446 263.86 272.397 266.031 273.271H266.017Z" fill="#3E302E"/>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,21 @@
<svg width="361" height="360" viewBox="0 0 361 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M54.3956 272.353C52.3543 258.71 51.0749 240.974 53.1306 220.495C56.0056 191.86 64.2999 169.097 71.2862 153.889C69.863 148.217 65.7518 135.392 53.7774 126.058C50.155 123.243 46.5468 121.304 43.3556 119.954C46.2593 117.039 63.8974 99.9349 89.0249 102.075C99.9355 103.008 108.244 107.216 113.132 110.289C124.517 108.049 137.828 106.268 152.749 105.78C174.642 105.062 193.617 107.345 208.668 110.289C228.146 123.903 247.624 137.518 267.102 151.132C269.402 157.623 272.751 167.259 276.589 179.006C289.168 217.609 291.741 230.39 292.704 235.905C293.969 243.128 295.464 253.583 296.068 266.465C274.778 275.182 256.795 280.28 244.778 283.267C215.438 290.534 155.969 304.536 89.0536 285.249C73.5143 280.768 61.4537 275.613 54.4099 272.367L54.3956 272.353Z" fill="#FCEAF0"/>
<path d="M212.031 198.939C226.65 192.477 245.956 198.781 253.733 212.654C258.735 221.558 259.224 233.994 251.835 243.688C243.986 253.999 230.143 257.374 218.844 254.516C202.471 250.38 192.28 233.377 195.715 218.427C195.902 217.623 199.122 204.641 212.016 198.939H212.031Z" fill="#F7D0DD"/>
<path d="M75.2681 198.939C89.8874 192.477 109.193 198.782 116.97 212.654C121.972 221.558 122.461 233.995 115.072 243.688C107.224 253.999 93.3805 257.374 82.0818 254.516C65.7087 250.38 55.5168 233.377 58.9525 218.427C59.1393 217.623 62.3593 204.641 75.2537 198.939H75.2681Z" fill="#F7D0DD"/>
<path d="M58.55 271.204C51.7937 226.843 61.2381 182.41 82.2974 143.09C84.9137 138.207 77.4674 133.841 74.8512 138.738C52.6131 180.27 43.1113 226.699 50.2269 273.502C51.0606 278.959 59.3694 276.647 58.55 271.204Z" fill="#3E302E"/>
<path d="M257.513 149.466C280.24 184.363 292.272 224.789 291.74 266.45C291.668 271.993 300.293 271.993 300.365 266.45C300.911 223.367 288.477 181.218 264.959 145.114C261.941 140.49 254.466 144.798 257.513 149.466Z" fill="#3E302E"/>
<path d="M70.0643 155.814C70.9843 138.279 62.4599 120.486 44.5056 115.804L46.4031 122.999C61.3674 111.05 81.3918 105.608 99.9786 111.524C104.248 112.889 109.322 117.053 113.735 117.369C117.832 117.656 122.849 115.746 126.903 115.158C139.553 113.319 152.375 112.558 165.155 112.745C177.934 112.932 191.145 114.138 203.953 116.436C208.136 117.183 209.775 117.47 213.44 115.746C217.609 113.779 221.835 112.142 226.291 110.993C231.696 109.6 237.245 108.954 242.823 109.14C247.078 109.27 259.167 109.715 262.186 113.65C263.235 115.014 263.106 120.284 263.293 121.979C263.681 125.397 263.968 128.844 264.17 132.276C264.558 138.853 264.601 145.431 264.414 152.008C264.241 157.551 272.866 157.551 273.039 152.008C273.384 140.749 272.909 129.519 271.486 118.331C271.084 115.129 271.357 109.715 269.028 107.23C266.283 104.301 258.995 102.98 255.372 102.161C245.698 99.9637 235.635 100.036 225.961 102.233C222.08 103.109 218.313 104.344 214.633 105.837C211.816 106.986 209.056 108.437 207.288 108.351C196.952 107.805 186.602 105.191 176.18 104.574C163.904 103.841 151.57 104.028 139.337 105.134C134.766 105.55 130.224 106.096 125.681 106.728C121.958 107.259 117.128 108.911 113.635 108.092C109.854 107.216 106.045 104.444 102.25 103.238C97.2474 101.658 91.9861 100.739 86.7536 100.495C69.7768 99.6765 53.375 106.484 40.2937 116.938C37.7062 119.006 39.3019 123.386 42.1912 124.133C56.5231 127.867 62.1437 142.185 61.4249 155.842C61.1374 161.386 69.7624 161.371 70.0499 155.842L70.0643 155.814Z" fill="#3E302E"/>
<path d="M191.661 196.713C200.516 200.102 209.472 203.19 218.528 205.99C223.847 207.642 226.118 199.327 220.828 197.675C211.772 194.875 202.816 191.773 193.961 188.398C188.772 186.416 186.53 194.746 191.661 196.713Z" fill="#3E302E"/>
<path d="M120.923 191.098C111.967 194.387 102.81 196.742 93.3805 198.164C87.9036 198.997 90.2324 207.298 95.6805 206.479C105.11 205.057 114.267 202.702 123.223 199.413C128.384 197.518 126.155 189.188 120.923 191.098Z" fill="#3E302E"/>
<path d="M179.4 255.206C183.253 261.697 180.363 268.762 172.903 272.353C164.968 276.173 155.394 274.363 154.23 274.133C154.201 274.593 153.755 279.145 148.049 281.371C145.605 282.319 141.048 283.296 138.274 281.917C134.967 280.266 134.349 275.713 139.093 271.936C137.929 271.118 136.304 269.725 135.686 267.8C135.082 265.933 135.758 264.569 137.454 260.347C138 259.011 138.863 256.828 139.898 254.071" fill="#E490B1"/>
<path d="M175.677 257.374C181.427 268.949 162.97 271.405 155.365 269.969C152.375 269.409 150.248 271.204 149.903 274.119C149.845 274.564 148.149 276.417 147.761 276.704C146.266 277.81 137.828 279.131 142.126 274.952C143.664 273.459 143.923 270.299 142.126 268.863C138.044 265.589 142.529 259.169 144.038 255.191C146.007 249.993 137.67 247.752 135.715 252.894C132.696 260.864 127.866 268.432 136.017 274.952V268.863C129.275 275.383 130.353 286.24 141.134 286.814C149.184 287.245 157.522 282.52 158.514 274.105L153.051 278.255C168.403 281.142 192.841 272.64 183.095 252.994C180.637 248.025 173.19 252.391 175.648 257.346L175.677 257.374Z" fill="#3E302E"/>
<path d="M157.881 254.559C170.33 254.674 190.383 249.921 193.588 237.499C196.995 224.315 180.09 207.412 162.294 205.301C141.033 202.774 118.781 221.357 120.909 235.129C122.749 247.106 142.902 254.43 157.895 254.559H157.881Z" fill="#F7D0DD"/>
<path d="M157.881 258.868C170.517 258.782 187.393 255.708 195.026 244.435C203.493 231.941 193.933 217.235 183.497 209.524C169.74 199.356 152.447 198.351 137.339 206.163C126.615 211.706 113.29 224.186 117.042 237.671C121.426 253.454 143.908 258.466 157.881 258.839C163.43 258.997 163.43 250.38 157.881 250.222C148.365 249.964 124.157 245.986 125.092 232.386C126.026 218.786 145.576 209.811 157.133 209.394C169.582 208.949 190.555 219.461 189.707 234.382C188.96 247.48 167.699 250.165 157.881 250.237C152.332 250.28 152.318 258.896 157.881 258.853V258.868Z" fill="#3E302E"/>
<path d="M144.254 231.611C144.829 231.582 144.555 231.726 144.412 231.568C144.44 231.596 143.65 231.022 144.081 231.424C144.426 231.74 143.995 231.252 143.937 231.137C143.722 230.72 143.894 231.625 143.909 231.108C143.837 230.907 143.851 230.706 143.937 230.505L143.851 230.878L143.736 231.237L143.851 230.893C144.067 231.094 143.233 231.237 143.865 230.893C144.599 230.505 143.578 230.893 144.124 230.749C144.771 230.562 145.044 230.591 145.648 230.763C146.022 230.878 145.174 230.261 145.634 230.763C145.289 230.39 145.634 230.361 145.562 230.634C145.519 230.835 145.547 231.122 145.504 231.338C145.59 230.735 145.404 231.209 145.447 231.323C145.447 231.323 145.662 230.72 145.346 231.338C145.26 231.51 144.383 231.654 145.375 231.453C147.66 230.993 148.969 228.279 148.394 226.154C147.732 223.77 145.375 222.693 143.089 223.138C138.877 223.971 136.333 228.437 137.152 232.515C137.972 236.594 142.241 239.997 146.453 238.978C150.047 238.116 152.591 234.339 152.462 230.706C152.318 226.412 148.609 222.75 144.239 222.98C141.91 223.109 139.927 224.875 139.927 227.288C139.927 229.528 141.896 231.726 144.239 231.596L144.254 231.611Z" fill="#3E302E"/>
<path d="M165.356 232.314C164.767 232.243 164.608 232.185 164.22 231.769C164.608 232.185 164.292 232.085 164.278 231.596C164.263 231.065 164.077 232.027 164.307 231.525C164.623 230.864 163.962 232.056 164.335 231.481C163.89 231.884 164.68 230.95 164.335 231.481C164.422 231.395 165.011 231.008 164.623 231.223C164.235 231.438 165.011 231.094 165.14 231.094C165.298 231.094 165.557 231.252 165.687 231.237C165.945 231.194 165.802 231.611 165.572 231.137C165.816 231.654 165.945 231.826 165.83 232.444C165.931 231.84 165.73 232.271 165.787 232.386C166.017 232.013 166.06 231.941 165.888 232.185C165.744 232.357 165.758 232.357 165.931 232.185C166.118 232.013 166.118 231.998 165.931 232.156C165.845 232.257 165.744 232.3 165.615 232.329C165.155 232.501 166.448 232.357 165.37 232.372C167.699 232.314 169.683 230.433 169.683 228.064C169.683 225.694 167.713 223.698 165.37 223.755C161.273 223.841 157.867 227.058 157.392 231.108C156.875 235.632 160.627 239.638 165.155 239.739C169.367 239.825 172.601 236.163 172.888 232.142C173.032 230.16 172.313 228.25 171.106 226.714C169.625 224.832 167.699 224.028 165.37 223.755C163.042 223.482 161.058 225.924 161.058 228.064C161.058 230.62 163.042 232.099 165.37 232.372L165.356 232.314Z" fill="#3E302E"/>
<path d="M218.026 119.021C219.65 125.842 221.893 133.281 225.026 141.108C233.838 163.066 246.158 179.236 256.249 190.122C259.584 189.332 262.919 188.542 266.254 187.752C270.883 175.316 278.228 149.739 269.977 120.629C268.353 114.899 266.57 108.609 262.531 102.305C239.171 65.8277 159.304 58.044 128.197 92.3524C115.719 106.11 109.552 128.341 116.84 135.924C123.41 142.759 137.727 134.373 161.13 131.831C186.688 129.059 208.869 134.818 225.041 141.108" fill="#1E96EB"/>
<path d="M213.857 120.17C220.585 147.57 234.14 172.415 253.201 193.166C254.251 194.315 255.933 194.617 257.399 194.272C260.705 193.482 266.815 193.324 269.301 190.797C270.969 189.102 271.529 185.828 272.234 183.631C274.448 176.766 276.014 169.729 276.978 162.592C279.407 144.397 277.466 125.239 270.394 108.207C260.648 84.7554 235.218 72.6491 211.528 68.2403C186.746 63.6304 157.996 65.4974 136.448 79.7434C125.221 87.1681 117.027 98.0393 112.413 110.663C109.15 119.595 106.246 134.961 116.323 140.95C121.095 143.779 127.018 142.86 132.164 141.883C141.853 140.045 151.283 137.216 161.115 136.139C182.592 133.784 203.823 137.589 223.876 145.258C229.066 147.24 231.308 138.911 226.176 136.943C198.418 126.316 169.87 124.42 140.919 131.055C132.667 132.951 118.163 139.27 118.034 125.914C117.919 113.549 125.609 100.337 134.45 92.1657C150.248 77.5606 174.024 73.7262 194.782 74.8463C215.539 75.9665 238.381 82.3428 253.216 97.508C264.816 109.37 268.769 128.054 269.33 144.124C269.848 158.657 267.073 172.975 262.1 186.589L265.118 183.573C261.783 184.363 258.448 185.153 255.113 185.943L259.311 187.049C241.241 167.36 228.563 143.822 222.195 117.843C220.872 112.458 212.549 114.741 213.871 120.141L213.857 120.17Z" fill="#3E302E"/>
<path d="M260.374 147.168C270.709 146.421 282.971 153.228 285.789 165.808C288.563 178.173 280.772 189.748 271.543 194.186C258.534 200.433 240.766 193.367 236.885 179.595C232.803 165.105 245.496 148.245 260.374 147.168Z" fill="white"/>
<path d="M260.374 151.476C271.284 151.103 281.548 158.743 282.037 170.131C282.526 181.519 272.693 192.118 261.193 192.161C251.016 192.204 240.608 184.894 240.436 174.08C240.263 163.267 249.664 152.726 260.388 151.476C265.836 150.844 265.894 142.213 260.388 142.86C245.021 144.655 231.624 158.111 231.811 174.08C231.998 189.59 246.286 200.806 261.193 200.777C277.365 200.749 291.151 186.287 290.662 170.131C290.173 153.975 275.971 142.328 260.374 142.86C254.839 143.046 254.811 151.663 260.374 151.476Z" fill="#3E302E"/>
<path d="M292.588 96.129C296.728 97.7375 300.854 99.3746 304.965 101.069C307.006 101.917 309.047 102.778 311.089 103.654C314.064 105.923 315.186 104.717 314.424 100.035C314.05 99.8054 311.621 100.897 311.002 101.084C301.558 103.812 290.806 106.34 282.828 112.4C278.601 115.603 276.905 120.586 281.922 124.119C284.366 125.842 287.787 126.431 290.561 127.436C295.923 129.36 301.141 131.629 306.331 133.97C311.52 136.311 315.746 128.815 310.686 126.531C306.144 124.478 301.573 122.467 296.915 120.658C294.198 119.595 289.771 117.024 286.809 117.053C286.651 119.896 287.399 120.413 289.038 118.575C290.374 117.771 291.754 117.039 293.178 116.364C295.981 114.985 298.884 113.836 301.831 112.802C306.259 111.251 310.859 110.289 315.301 108.81C319.742 107.331 324.702 103.898 320.375 99.0587C317.629 95.9711 312.167 94.8078 308.415 93.2425C303.93 91.3756 299.416 89.5661 294.888 87.814C289.713 85.8035 287.471 94.1329 292.588 96.129Z" fill="#3E302E"/>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,30 @@
<svg width="360" height="360" viewBox="0 0 360 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M65.9947 262.755C59.7817 250.42 57.1047 239.764 55.8019 232.535C50.1902 201.253 59.7531 174.131 66.6246 154.654C69.4735 146.579 72.2793 140.096 74.2263 135.836C70.8764 131.92 64.0478 122.813 62.1724 109.488C60.8268 99.9215 62.5876 92.0904 64.0335 87.5293C71.2772 85.9803 83.1736 84.3883 97.4178 86.7835C107.696 88.519 115.856 91.7748 121.511 94.5573C132.892 92.4489 146.206 90.7421 161.108 90.2832C182.983 89.609 201.965 91.7605 216.997 94.5573C225.458 90.9286 240.718 85.7222 260.102 86.5253C270.423 86.9556 279.099 88.9636 285.612 91.0433C285.999 96.4362 285.927 104.11 283.751 113.002C281.618 121.737 278.211 128.564 275.405 133.211C277.71 139.364 281.06 148.472 284.882 159.587C293.686 185.161 298.081 197.94 300.987 213.43C302.906 223.628 304.881 238.545 304.351 257.19C291.21 262.354 272.399 268.851 249.179 273.856C191.944 286.191 146.893 281.085 134.08 279.407C116.901 277.155 93.2232 272.623 65.9804 262.741L65.9947 262.755Z" fill="#FCEAF0"/>
<path d="M217.999 178.463C231.8 172.353 250.009 178.319 257.353 191.443C262.077 199.876 262.535 211.637 255.564 220.817C248.148 230.584 235.092 233.768 224.427 231.058C208.98 227.142 199.36 211.049 202.595 196.907C202.767 196.147 205.802 183.855 217.985 178.463H217.999Z" fill="#F7D0DD"/>
<path d="M88.9428 178.463C102.743 172.353 120.953 178.319 128.297 191.443C133.021 199.876 133.479 211.637 126.507 220.817C119.092 230.584 106.036 233.768 95.3705 231.058C79.9238 227.142 70.3037 211.049 73.539 196.907C73.7108 196.147 76.7458 183.855 88.9284 178.463H88.9428Z" fill="#F7D0DD"/>
<path d="M62.7595 261.952C55.6876 218.006 63.3751 173.385 82.7443 133.512C85.1493 128.55 77.7481 124.189 75.3287 129.166C54.8572 171.306 47.0122 217.819 54.485 264.247C55.3583 269.697 63.6471 267.388 62.7738 261.952H62.7595Z" fill="#3E302E"/>
<path d="M265.842 132.508C293.171 168.021 305.411 212.685 300.057 257.19C299.398 262.683 307.988 262.626 308.646 257.19C314.158 211.394 301.359 164.694 273.258 128.163C269.936 123.831 262.464 128.119 265.842 132.508Z" fill="#3E302E"/>
<path d="M77.1754 134.617C67.4694 122.21 64.2483 106.448 68.7721 91.3159L65.7658 94.3279C74.0546 92.6497 82.5152 92.1334 90.9472 92.8649C96.8309 93.3812 102.643 94.543 108.283 96.2928C112.263 97.5263 116 99.7638 119.936 100.926C123 101.829 125.935 100.854 129.056 100.352C133.694 99.5917 138.347 98.9893 143.013 98.5016C153.578 97.4115 164.215 96.9669 174.837 97.1677C185.46 97.3685 195.881 98.1717 206.289 99.6777C209.839 100.194 214.005 101.628 217.584 101.514C220.433 101.413 223.568 99.6634 226.317 98.8602C245.485 93.2808 265.685 93.0513 285.04 97.8418L281.89 93.6968C282.692 107.136 279.771 120.059 273.329 131.877C270.681 136.739 278.097 141.085 280.745 136.223C287.874 123.128 291.367 108.628 290.48 93.6968C290.365 91.8322 289.234 90.025 287.33 89.5517C267.732 84.7038 247.218 84.5604 227.619 89.5804C224.427 90.3979 221.034 92.1621 217.799 92.578C214.019 93.0657 209.052 91.4306 205.273 90.9286C194.736 89.5087 184.128 88.6911 173.506 88.5477C162.884 88.4043 151.603 88.935 140.723 90.1541C136.056 90.6704 131.403 91.3159 126.765 92.0617C123.1 92.6641 121.798 92.2625 118.419 90.8712C101.011 83.6281 81.8853 82.2943 63.4753 86.009C62.0151 86.3102 60.8841 87.6441 60.469 89.021C55.0004 107.337 59.4669 125.839 71.0913 140.698C74.4984 145.058 80.5396 138.92 77.1611 134.617H77.1754Z" fill="#3E302E"/>
<path d="M166.906 232.463C178.66 232.564 197.571 228.074 200.591 216.328C203.798 203.849 187.85 187.857 171.058 185.864C151.002 183.468 130 201.067 132.005 214.09C133.751 225.421 152.762 232.348 166.906 232.478V232.463Z" fill="#F7D0DD"/>
<path d="M166.906 236.766C181.122 236.666 204.972 231.416 205.301 213.273C205.645 194.785 183.312 181.159 166.906 181.331C151.245 181.503 128.512 193.465 127.61 211.322C126.679 229.982 152.748 236.364 166.906 236.766C172.432 236.924 172.432 228.318 166.906 228.16C157.859 227.902 136.299 224.417 136.185 212.025C136.07 198.844 156.184 190.066 166.906 189.937C178.359 189.808 197.37 199.618 196.712 213.273C196.125 225.593 176.054 228.103 166.906 228.16C161.38 228.203 161.366 236.809 166.906 236.766Z" fill="#3E302E"/>
<path d="M154.051 210.978C154.595 210.949 154.38 211.092 154.137 210.935C154.094 210.906 153.364 210.39 153.722 210.748C154.065 211.078 153.607 210.49 153.535 210.404C153.335 210.103 153.435 210.705 153.507 210.318C153.564 210.031 153.564 209.314 153.464 210.002C153.392 210.433 153.335 210.332 153.493 209.959C153.321 210.375 153.278 210.189 153.55 209.916L153.922 209.673C153.578 209.873 153.564 209.888 153.879 209.73C154.566 209.529 154.895 209.543 155.54 209.773C156.041 209.959 154.91 209.271 155.583 209.83C155.239 209.543 155.554 209.371 155.54 209.759C155.54 210.045 155.54 210.261 155.482 210.547C155.597 209.916 155.583 210.547 155.411 210.576C155.64 210.218 155.668 210.16 155.497 210.404C155.439 210.519 155.368 210.59 155.268 210.648C155.11 210.834 154.351 210.978 155.225 210.806C157.501 210.347 158.804 207.636 158.231 205.513C157.572 203.132 155.225 202.057 152.949 202.501C148.811 203.319 146.435 207.679 147.179 211.652C147.924 215.625 152.175 218.909 156.227 217.934C159.706 217.088 162.182 213.43 162.068 209.888C161.924 205.714 158.331 202.128 154.079 202.343C151.846 202.458 149.67 204.237 149.785 206.646C149.885 208.869 151.674 211.078 154.079 210.949L154.051 210.978Z" fill="#3E302E"/>
<path d="M173.964 211.637C173.32 211.566 173.105 211.48 172.69 211.006C173.062 211.437 172.876 211.15 172.718 210.763C172.489 210.175 172.733 211.265 172.747 210.633C172.761 209.916 172.575 211.15 172.79 210.533C172.962 210.045 172.446 210.791 172.833 210.476C172.919 210.404 173.549 209.974 173.162 210.175C172.776 210.375 173.649 210.017 173.764 210.017C174.007 210.017 174.164 210.131 174.393 210.175C174.723 210.232 174.565 210.519 174.336 210.103C174.637 210.648 174.766 210.892 174.637 211.551C174.737 211.021 174.794 211.365 174.565 211.551C175.438 210.834 174.064 211.738 174.651 211.394C175.066 211.15 174.35 211.537 174.293 211.566C173.964 211.752 174.923 211.609 173.964 211.637C176.211 211.58 178.359 209.701 178.259 207.335C178.158 204.968 176.369 202.974 173.964 203.032C169.927 203.118 166.749 206.245 166.219 210.189C165.632 214.606 169.426 218.522 173.764 218.608C178.101 218.694 180.95 215.108 181.279 211.193C181.437 209.285 180.707 207.392 179.547 205.915C178.101 204.079 176.226 203.29 173.964 203.017C171.702 202.745 169.569 205.183 169.669 207.32C169.784 209.873 171.559 211.336 173.964 211.623V211.637Z" fill="#3E302E"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M78.3537 171.047C78.3027 169.3 79.2152 167.569 81.3984 166.988C103.058 161.208 125.376 160.204 147.494 163.79C148.954 164.034 150.1 165.482 150.5 166.802C153.764 177.688 152.719 189.966 144.302 198.27C136.743 205.728 125.29 208.367 114.954 207.392C95.9861 205.585 81.5702 190.898 78.4064 172.281C78.3336 171.849 78.3188 171.437 78.3537 171.047Z" fill="black"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M181.178 166.251C181.649 165.362 182.489 164.64 183.756 164.306C205.802 158.497 228.807 158.713 250.739 164.966C252.113 165.368 253.459 166.529 253.745 167.978C255.893 178.836 254.475 190.41 245.9 198.184C238.599 204.796 228.278 207.636 218.586 207.449C196.282 207.033 180.549 190.726 180.606 168.451C180.609 167.581 180.821 166.848 181.178 166.251Z" fill="black"/>
<path d="M250.41 187.384C267.016 185.304 282.649 180.169 296.95 171.349C306.356 165.554 297.723 150.666 288.275 156.49C276.722 163.618 263.91 168.48 250.41 170.173C239.587 171.535 239.444 188.761 250.41 187.384Z" fill="black"/>
<path d="M57.0761 179.553C68.3855 182.005 79.6949 184.458 91.0043 186.911C101.784 189.248 106.394 172.654 95.571 170.316C84.7484 167.978 72.9522 165.411 61.6428 162.958C50.3334 160.505 46.2534 177.215 57.0761 179.553Z" fill="black"/>
<path d="M173.678 254.637C183.24 253.16 191.715 247.423 197.971 240.223C201.579 236.063 195.538 229.953 191.901 234.141C186.49 240.366 179.647 245.071 171.401 246.333C165.961 247.179 168.266 255.469 173.692 254.637H173.678Z" fill="#3E302E"/>
<path d="M217.713 177.832C225.429 177.071 232.988 177.588 240.475 179.624C245.815 181.073 248.091 172.783 242.765 171.32C234.591 169.097 226.145 168.394 217.713 169.226C212.259 169.757 212.201 178.377 217.713 177.832Z" fill="white"/>
<path d="M112.664 177.889C121.368 175.824 130 176.44 138.504 179.094C143.801 180.743 146.063 172.439 140.795 170.789C130.845 167.691 120.552 167.189 110.388 169.584C105.005 170.861 107.281 179.151 112.678 177.889H112.664Z" fill="white"/>
<path d="M78.1917 257.233C76.9606 257.821 77.7336 257.477 79.4801 258.338C82.8873 260.016 86.0797 262.311 89.2435 264.376C90.2456 265.036 94.8982 267.302 95.2274 268.263C95.5137 269.08 92.7794 272.781 92.4931 273.283C92.0207 274.1 90.5319 277.772 89.5154 278.188C88.3845 278.661 81.3412 274.717 80.1387 274.215C77.3471 273.025 74.1404 270.873 71.1913 270.156C69.6452 269.783 69.7454 269.253 70.7046 270.443C71.4347 271.347 70.089 271.863 70.8621 271.433C71.5922 271.017 72.5513 267.99 72.9378 267.259C74.2549 264.72 75.6149 262.196 77.0178 259.715C77.0894 259.585 79.294 256.588 78.206 257.248C82.9302 254.379 78.6212 246.935 73.8684 249.818C69.1156 252.701 66.5817 260.604 64.2482 265.394C63.0743 267.833 61.6571 270.386 62.5446 273.139C63.4322 275.893 65.9231 277.141 68.2709 278.317C71.3059 279.837 74.4983 281.1 77.6191 282.434C81.3698 284.026 85.8506 286.693 90.0881 286.493C96.3584 286.191 98.9925 279.565 101.541 274.774C104.232 269.683 105.019 265.394 100.181 261.364C95.3419 257.334 88.4275 252.93 82.3719 250.191C79.4372 248.857 76.846 248.384 73.8684 249.818C68.8722 252.199 73.2385 259.614 78.206 257.248L78.1917 257.233Z" fill="#F39800"/>
<path d="M123.616 278.374C124.489 277.901 129.843 279.292 131.589 279.651C133.679 280.081 141.195 280.583 142.612 282.304C141.968 281.516 142.655 282.089 142.369 283.409C141.968 285.288 141.725 287.21 141.31 289.089C140.394 293.248 140.737 292.387 136.442 292.101C132.878 291.871 129.313 291.556 125.749 291.197C124.89 291.111 122.084 290.236 121.239 290.566C120.824 290.724 121.067 290.408 121.311 290.695C122.599 292.129 121.568 289.82 121.54 288.773C121.468 285.761 122.198 279.708 124.474 277.7C128.64 274.043 122.542 267.976 118.405 271.619C114.038 275.463 113.151 283.28 112.95 288.773C112.836 292.172 113.695 295.987 116.715 297.938C118.949 299.372 122.112 299.415 124.646 299.688C130.401 300.305 138.26 302.284 143.786 300.147C147.823 298.583 148.725 295.242 149.584 291.369C150.572 286.894 152.648 280.282 149.026 276.395C145.404 272.508 138.461 272.279 133.866 271.332C129.27 270.386 123.673 268.593 119.264 270.931C114.382 273.527 118.72 280.956 123.601 278.36L123.616 278.374Z" fill="#F39800"/>
<path d="M219.545 276.739C220.647 274.631 225.386 273.67 227.39 272.867C230.096 271.791 235.793 268.449 238.814 268.75C240.546 268.923 241.62 272.293 242.737 274.774C243.323 276.08 244.454 277.844 244.641 279.321C244.855 280.311 244.941 280.21 244.884 279.006C244.054 279.995 243.08 280.77 241.949 281.315C237.74 284.083 231.57 288.156 226.574 289.461C225.672 289.691 225.944 289.461 226.588 289.662C227.104 289.82 225.715 288.902 225.486 288.472C223.697 285.259 219.173 279.508 219.989 275.678C221.134 270.271 212.86 267.962 211.7 273.383C210.34 279.794 214.162 286.779 217.498 292.072C219.431 295.127 222.451 298.182 226.302 298.211C229.208 298.225 232.114 296.375 234.605 295.084C240.06 292.258 248.248 289.433 251.798 284.183C254.203 280.626 253.187 277.543 251.655 273.885C249.78 269.41 247.661 262.354 242.608 260.446C237.196 258.409 229.924 262.612 225.1 264.534C220.776 266.24 214.477 267.876 212.13 272.351C209.553 277.241 216.968 281.602 219.545 276.696V276.739Z" fill="#F39800"/>
<path d="M169.612 281.3C171.373 279.034 176.211 279.651 178.788 279.493C182.267 279.278 185.817 278.891 189.296 278.991C191.873 279.063 192.231 278.862 193.548 280.899C195.123 283.337 196.483 289.418 194.836 291.971C193.19 294.525 188.48 293.133 185.903 293.277C182.611 293.463 179.404 294.381 176.14 294.539C172.661 294.711 169.97 294.826 169.182 291.541C168.553 288.888 169.168 282.907 170.285 280.44C172.575 275.434 165.174 271.06 162.869 276.094C159.176 284.169 157.945 299.329 168.51 302.27C175.252 304.149 181.508 301.839 188.265 301.811C193.075 301.796 197.814 302.729 201.092 298.397C206.418 291.369 204.571 274.559 195.409 271.203C190.728 269.482 184.872 270.515 180.048 270.802C174.737 271.131 167.221 270.472 163.542 275.205C160.192 279.522 166.219 285.661 169.612 281.286V281.3Z" fill="#F39800"/>
<path d="M90.6036 278.045C100.739 282.692 111.247 286.105 122.227 288.056C127.638 289.017 129.957 280.727 124.517 279.751C114.282 277.944 104.404 274.932 94.9412 270.601C89.945 268.32 85.5787 275.735 90.6036 278.03V278.045Z" fill="#F39800"/>
<path d="M136.385 290.351C148.482 292.559 160.607 293.047 172.819 291.613C178.244 290.982 178.302 282.362 172.819 283.007C161.395 284.355 149.999 284.112 138.661 282.046C133.25 281.057 130.945 289.347 136.371 290.351H136.385Z" fill="#F39800"/>
<path d="M264.053 254.68C264.511 252.529 268.433 251.281 270.266 250.291C273.458 248.585 276.694 246.548 280.072 245.257C282.563 244.31 282.162 244.296 284.181 245.702C286.199 247.107 291.396 253.748 289.936 256.487C289.249 257.778 283.852 259.055 282.42 259.801C279.786 261.178 277.538 263.214 274.89 264.548C270.352 266.857 269.178 267.029 267.088 262.612C265.885 260.073 264.253 256.387 264.196 253.533C264.082 247.996 255.492 247.982 255.607 253.533C255.778 262.124 260.975 275.664 271.182 274.588C277.825 273.885 282.32 269.31 288.118 266.599C292.398 264.591 296.965 263.644 298.139 258.409C300.086 249.818 291.253 235.074 281.518 235.949C276.064 236.451 270.595 240.337 265.914 242.862C261.705 245.114 256.823 247.265 255.75 252.385C254.619 257.793 262.893 260.102 264.039 254.68H264.053Z" fill="#F39800"/>
<path d="M243.352 278.174C251.813 274.359 260.059 270.113 268.104 265.48C272.9 262.727 268.577 255.283 263.767 258.051C255.721 262.683 247.475 266.929 239.015 270.744C233.976 273.01 238.342 280.426 243.352 278.174Z" fill="#F39800"/>
<path d="M188.91 291.183C203.311 289.504 217.613 287.167 231.785 284.069C237.182 282.892 234.906 274.588 229.495 275.764C216.066 278.69 202.552 280.985 188.895 282.577C183.47 283.208 183.412 291.814 188.895 291.183H188.91Z" fill="#F39800"/>
<path d="M283.179 256.473C291.897 249.933 299.785 242.546 306.742 234.141C310.25 229.91 304.208 223.786 300.672 228.06C294.202 235.862 286.944 242.962 278.841 249.044C274.475 252.328 278.741 259.801 283.179 256.473Z" fill="#F39800"/>
<path d="M81.0692 262.899C72.852 258.825 66.1093 252.4 60.5548 245.142C57.2336 240.811 49.7751 245.085 53.1393 249.488C59.5813 257.907 67.1544 265.581 76.7316 270.328C81.6705 272.781 86.0225 265.351 81.0692 262.899Z" fill="#F39800"/>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,18 @@
<svg width="361" height="360" viewBox="0 0 361 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M64.0177 260.592C58.5372 253.634 57.7338 245.077 56.1412 227.964C55.2374 218.269 52.9706 189.905 68.7522 160.172C74.7062 148.965 81.478 140.826 86.3416 135.669C82.7692 131.319 76.8439 122.848 74.4049 110.69C73.0707 103.992 73.1854 98.1432 73.6302 93.8072C79.6846 90.9693 89.6271 87.2816 102.324 86.8062C122.137 86.0859 136.915 93.6487 143.213 97.3797C150.056 94.6139 157.99 92.0785 166.929 90.3643C198.391 84.3429 225.062 91.7184 240.055 97.3797C244.603 94.1529 254.015 88.4052 267.329 86.5469C281.747 84.5446 293.124 88.1891 298.361 90.2347C299.824 95.1757 302.522 106.858 298.39 120.515C295.85 128.899 291.69 134.906 288.706 138.507C290.714 142.223 293.411 147.597 296.051 154.295C299.05 161.915 305.764 180.772 306.611 211.527C307.457 241.937 307.887 257.135 301.431 265.49C284.545 287.357 249.108 264.438 167.761 266.757C112.31 268.342 79.5985 280.385 64.0034 260.606L64.0177 260.592Z" fill="#FCEAF0"/>
<path d="M90.4877 231.709C103.73 239.402 122.74 235.383 131.592 222.936C137.273 214.941 139.024 203.1 133.012 193.06C126.613 182.385 113.787 177.718 102.754 179.274C86.7432 181.521 75.2943 196.733 77.0016 211.383C77.0877 212.176 78.8093 224.924 90.4877 231.724V231.709Z" fill="#F7D0DD"/>
<path d="M224.374 185.022C238.362 178.813 256.841 184.878 264.287 198.217C269.079 206.788 269.538 218.744 262.479 228.079C254.961 238.004 241.719 241.246 230.902 238.494C215.235 234.518 205.479 218.154 208.764 203.777C208.936 202.999 212.021 190.51 224.374 185.036V185.022Z" fill="#F7D0DD"/>
<path d="M174.676 234.734C187.731 233.769 206.483 226.696 207.458 215.69C208.477 204.109 189.396 193.031 174.317 190.769C169.324 190.02 155.924 188.003 146.125 197.165C141.19 201.775 135.681 210.605 137.933 218.903C141.477 231.983 162.165 235.671 174.69 234.734H174.676Z" fill="#F7D0DD"/>
<path d="M174.676 239.056C187.904 237.831 214.058 230.903 211.605 212.809C209.152 194.716 184.891 187.254 170.243 185.944C152.395 184.345 129.052 197.871 133.543 218.917C137.216 236.146 160.085 239.92 174.661 239.056C180.171 238.739 180.199 230.081 174.661 230.413C164.963 230.975 149.497 229.981 143.5 220.876C138.421 213.17 145.135 202.438 151.864 198.102C157.33 194.587 163.916 193.996 170.243 194.572C180.745 195.537 197.932 200.781 202.38 211.643C207.53 224.247 182.767 229.649 174.676 230.413C169.21 230.917 169.152 239.574 174.676 239.056Z" fill="#3E302E"/>
<path d="M159.784 212.968C160.315 212.939 160.128 213.098 159.884 212.925C159.841 212.896 159.124 212.392 159.482 212.737C159.812 213.054 159.368 212.521 159.31 212.406C159.081 211.96 159.267 212.896 159.282 212.334C159.282 212.017 159.325 211.355 159.224 212.032C159.152 212.55 159.009 212.233 159.239 212.003C158.923 212.305 159.023 212.248 159.282 211.974L159.64 211.729C159.296 211.931 159.267 211.96 159.583 211.801C160.257 211.599 160.587 211.614 161.218 211.844C161.677 212.003 160.645 211.326 161.247 211.888C160.874 211.542 161.247 211.47 161.19 211.815C161.147 212.06 161.19 212.32 161.132 212.579C161.247 211.902 161.204 212.608 161.061 212.608C161.29 212.233 161.319 212.176 161.147 212.435C161.104 212.536 161.018 212.622 160.917 212.68C160.774 212.867 159.999 212.997 160.888 212.824C163.17 212.363 164.475 209.64 163.901 207.508C163.241 205.117 160.888 204.037 158.607 204.483C154.475 205.304 151.993 209.712 152.797 213.717C153.6 217.722 157.789 221.064 161.921 220.055C165.436 219.205 167.918 215.503 167.804 211.931C167.66 207.71 164.045 204.094 159.755 204.325C157.431 204.454 155.451 206.226 155.451 208.646C155.451 210.894 157.416 213.098 159.755 212.968H159.784Z" fill="#3E302E"/>
<path d="M179.984 213.645C179.353 213.573 179.152 213.501 178.736 213.026C179.109 213.458 178.922 213.198 178.779 212.795C178.564 212.219 178.779 213.299 178.808 212.68C178.836 212.06 178.592 213.098 178.836 212.593C179.08 212.089 178.435 212.91 178.865 212.536C178.951 212.464 179.568 212.032 179.181 212.233C178.793 212.435 179.64 212.089 179.769 212.075C180.013 212.075 180.156 212.19 180.371 212.233C180.701 212.291 180.515 212.565 180.3 212.161C180.601 212.709 180.716 212.925 180.587 213.587C180.716 212.867 180.587 213.602 180.515 213.587C180.744 213.227 180.773 213.155 180.587 213.4C180.429 213.587 180.443 213.587 180.615 213.4C180.988 213.314 180.415 213.487 180.271 213.573C179.941 213.76 180.902 213.616 179.97 213.631C182.222 213.573 184.374 211.686 184.274 209.309C184.173 206.932 182.38 204.93 179.97 204.987C175.895 205.074 172.696 208.229 172.165 212.219C171.562 216.67 175.393 220.632 179.769 220.718C184.145 220.804 187.014 217.189 187.344 213.242C187.502 211.311 186.77 209.41 185.594 207.912C184.145 206.053 182.251 205.261 179.97 204.987C177.689 204.714 175.565 207.163 175.666 209.309C175.78 211.873 177.559 213.342 179.97 213.631L179.984 213.645Z" fill="#3E302E"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M221.105 176.244C224.457 179.902 225.373 185.448 221.361 189.3C217.559 192.945 211.404 193.42 207.1 190.452C202.366 187.182 201.347 181.233 205.665 177.128C209.094 173.874 214.349 172.417 218.704 174.369C218.95 174.454 219.187 174.57 219.41 174.72C219.463 174.749 219.515 174.778 219.568 174.808C220.261 175.204 220.765 175.698 221.105 176.244Z" fill="#3E302E"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M124.679 186.053C124.564 186.007 124.448 185.956 124.332 185.9C118.837 183.235 116.987 176.09 121.162 171.437C124.705 167.49 130.631 166.554 135.265 169.061C146.341 175.053 135.15 189.473 125.365 186.333C125.12 186.253 124.892 186.159 124.679 186.053Z" fill="#3E302E"/>
<path d="M123.07 161.037C128.536 160.72 133.615 161.872 138.349 164.667C143.084 167.462 147.474 160.028 142.696 157.205C136.742 153.69 129.971 151.99 123.07 152.394C117.56 152.711 117.532 161.354 123.07 161.037Z" fill="#3E302E"/>
<path d="M202.437 166.179C208.736 169.205 214.833 171.164 221.748 169.205C227.071 167.692 224.804 159.351 219.453 160.864C214.89 162.16 210.945 160.705 206.77 158.718C201.792 156.326 197.43 163.774 202.423 166.179H202.437Z" fill="#3E302E"/>
<path d="M305.606 266.628C317.371 220.07 309.236 172.187 287.472 129.907C284.932 124.966 277.501 129.331 280.04 134.272C300.728 174.477 308.49 220.055 297.299 264.337C295.936 269.725 304.243 272.03 305.606 266.642V266.628Z" fill="#3E302E"/>
<path d="M87.4893 128.005C53.0566 163.385 40.7612 214.092 57.2459 260.966C59.0823 266.181 67.4036 263.934 65.5528 258.662C50.0724 214.668 61.177 167.404 93.5724 134.113C97.4461 130.137 91.363 124.015 87.4893 128.005Z" fill="#3E302E"/>
<path d="M291.776 141.546C303.555 126.45 308.074 107.679 302.536 89.0678C302.12 87.6993 301.001 86.3452 299.523 86.0427C280.872 82.2685 261.489 83.6226 243.814 90.9549C240.141 92.4818 239.194 92.7988 235.335 92.1649C230.643 91.4014 225.923 90.7532 221.189 90.2202C210.156 88.9814 199.037 88.434 187.947 88.5924C176.857 88.7509 166.412 89.572 155.723 91.0125C151.778 91.5455 146.9 93.1877 142.998 92.6835C139.727 92.2658 136.283 90.4795 133.027 89.644C113.17 84.5301 92.3673 84.6886 72.4967 89.6152C70.5743 90.0906 69.4552 91.9056 69.3404 93.7783C68.4366 108.947 71.9659 123.669 79.1968 136.965C81.851 141.849 89.2827 137.498 86.6285 132.601C80.1006 120.572 77.1308 107.435 77.9486 93.7639L74.7923 97.9271C94.4189 93.0581 114.935 93.2741 134.375 98.9498C137.173 99.7709 140.301 101.543 143.227 101.644C146.886 101.773 151.018 100.304 154.662 99.7853C165.221 98.244 175.91 97.4373 186.584 97.2356C197.258 97.0339 208.147 97.4805 218.864 98.5897C223.613 99.0795 228.333 99.6989 233.039 100.477C236.239 100.995 239.137 101.989 242.25 101.067C246.253 99.8862 250.04 97.6245 254.072 96.3569C259.38 94.7003 264.875 93.5334 270.413 92.9716C279.38 92.0641 288.404 92.5683 297.228 94.3545L294.215 91.3294C298.806 106.743 295.535 122.776 285.678 135.395C282.292 139.731 288.347 145.882 291.761 141.503L291.776 141.546Z" fill="#3E302E"/>
<path d="M263.096 137.383C247.444 159.481 243.097 180.513 250.916 188.637C253.728 191.562 260.629 195.437 267.73 193.881C267.73 193.881 273.641 192.584 277.587 187.471C284.574 178.395 278.419 158.228 263.082 137.383H263.096Z" fill="#1E96EB"/>
<path d="M259.38 135.208C250.916 147.453 242.107 162.967 242.867 178.453C243.455 190.481 253.226 199.052 265.377 198.519C275.449 198.073 283.77 189.833 284.66 179.893C286.094 163.932 275.65 147.467 266.812 135.208C263.598 130.742 256.124 135.05 259.38 139.573C265.966 148.735 289.739 184.748 266.597 189.718C254.789 192.253 250.399 181.463 251.82 172.158C253.627 160.259 260.098 149.296 266.826 139.573C269.997 134.992 262.537 130.67 259.395 135.208H259.38Z" fill="#3E302E"/>
</svg>

After

Width:  |  Height:  |  Size: 8.4 KiB

View File

@ -0,0 +1,17 @@
<svg width="360" height="360" viewBox="0 0 360 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M97.0957 266.394C76.2047 263.396 60.4737 246.947 59.0233 227.79C57.8379 212.113 66.3589 196.727 80.779 188.288C81.0161 181.851 82.2851 171.189 88.0309 159.559C92.0334 151.465 96.9005 145.54 100.722 141.604C97.4444 137.598 90.7643 128.289 88.9374 114.671C87.6264 104.892 89.3557 96.8809 90.7503 92.2264C96.7889 90.8728 105.226 89.6712 115.225 90.4308C129.492 91.5081 140.454 96.066 146.953 99.4085C159.239 97.0191 174.231 95.0716 191.37 94.9197C210.476 94.7401 227.072 96.8257 240.321 99.4085C247.057 96.3285 258.004 92.3092 272.048 91.3286C287.611 90.2513 300.079 93.3865 307.401 95.8174C307.777 101.328 307.708 109.173 305.588 118.262C303.496 127.184 300.163 134.159 297.429 138.91C305.058 151.673 313.732 169.089 319.994 190.815C328.166 219.13 329.129 243.894 328.389 261.118C306.146 263.659 274.949 267.167 237.532 271.117C157.273 279.598 131.751 271.38 97.0818 266.394H97.0957Z" fill="#FCEAF0"/>
<path d="M195.373 181.175C208.97 174.932 226.905 181.023 234.143 194.434C238.787 203.053 239.247 215.083 232.386 224.461C225.078 234.433 212.22 237.693 201.719 234.93C186.49 230.925 177.02 214.475 180.214 200.014C180.381 199.227 183.38 186.672 195.373 181.161V181.175Z" fill="#F7D0DD"/>
<path d="M87.2222 181.368C94.3068 181.603 99.662 194.393 101.28 200.152C102.172 203.343 104.864 212.873 99.2018 222.292C98.7416 223.066 91.6292 234.433 78.1016 235.51C74.4059 235.8 70.5987 236.104 67.9768 234.102C56.9456 225.621 73.8202 180.94 87.2222 181.382V181.368Z" fill="#F7D0DD"/>
<path d="M101.545 137.322C95.9243 122.64 94.9063 107.102 98.8809 91.8673L95.9522 94.7677C105.617 92.9584 115.574 93.0689 125.169 95.2788C129.994 96.3975 134.722 97.9583 139.213 100.058C141.639 101.19 144.233 103.331 146.953 103.566C150.453 103.87 154.832 102.199 158.36 101.674C163.353 100.942 168.36 100.375 173.38 99.9472C184.035 99.0494 194.745 98.8284 205.428 99.2704C215.065 99.6709 224.646 100.665 234.171 102.116C237.922 102.682 239.177 101.978 242.594 100.362C246.931 98.3036 251.478 96.7014 256.135 95.5136C272.926 91.2319 290.415 93.2761 306.285 99.8229L303.217 95.8313C304.904 110.375 301.725 124.477 293.817 136.839C290.931 141.355 298.169 145.512 301.041 141.024C309.66 127.543 313.425 111.701 311.585 95.8451C311.348 93.7871 310.399 92.6269 308.516 91.8534C292.883 85.4033 275.604 83.2901 258.911 86.4392C253.82 87.3922 248.856 88.8701 244.044 90.7761C240.586 92.1435 238.034 93.8423 234.436 93.8423C224.897 93.8423 215.037 91.4115 205.428 91.0109C193.937 90.5413 182.417 90.8314 170.968 91.9087C166.742 92.3092 162.53 92.8065 158.333 93.4004C154.428 93.9528 149.993 95.4998 146.478 94.4363C142.643 93.2761 138.976 90.859 135.14 89.5331C130.566 87.9447 125.852 86.8397 121.069 86.1215C111.934 84.768 102.8 85.1133 93.7488 86.7983C92.3681 87.0607 91.1688 88.3867 90.8201 89.6988C86.4969 106.273 87.3476 123.538 93.4838 139.56C95.3805 144.504 103.469 142.363 101.559 137.35L101.545 137.322Z" fill="#3E302E"/>
<path d="M286.873 135.83C313.914 171.907 327.162 216.27 324.22 261.118C323.871 266.449 332.239 266.421 332.587 261.118C335.614 214.986 321.919 168.758 294.097 131.645C290.917 127.405 283.651 131.535 286.873 135.83Z" fill="#3E302E"/>
<path d="M141.249 221.491C152.824 221.823 171.539 217.583 174.733 205.635C178.122 192.942 162.712 176.299 146.2 173.937C126.48 171.12 105.477 188.688 107.207 202.044C108.713 213.66 127.317 221.105 141.249 221.491Z" fill="#F7D0DD"/>
<path d="M141.249 225.635C155.613 225.801 178.763 220.497 179.363 202.652C179.963 184.807 159.072 169.711 142.239 169.504C126.243 169.31 103.971 181.686 102.967 199.323C101.921 217.693 126.801 224.931 141.249 225.635C146.632 225.897 146.618 217.61 141.249 217.348C131.863 216.892 109.731 212.155 111.376 199.033C112.98 186.271 130.747 177.597 142.239 177.777C154.135 177.956 171.163 188.605 170.995 201.879C170.828 215.152 150.969 217.458 141.249 217.348C135.866 217.293 135.866 225.58 141.249 225.635Z" fill="#3E302E"/>
<path d="M129.004 199.268C129.939 199.227 128.907 198.978 128.614 199.02C128.335 199.061 128.656 198.702 128.767 199.144C128.739 199.033 128.53 198.785 128.474 198.66C128.209 198.163 128.711 198.426 128.474 198.688L128.53 198.343L128.432 198.716C128.725 198.384 128.586 198.591 128.391 198.771C128.711 198.481 128.628 198.619 128.363 198.771C128.669 198.578 128.893 198.37 129.297 198.329C129.562 198.246 129.827 198.287 130.078 198.426C130.678 198.633 130.803 198.647 130.469 198.481C130.301 198.481 130.469 198.619 130.413 198.426C130.273 197.997 130.469 198.522 130.496 198.605C130.566 198.923 130.566 198.163 130.427 198.495C130.413 198.536 130.329 199.323 130.399 198.84C130.441 198.536 130.106 199.006 130.385 198.826C130.734 198.591 130.259 198.923 130.162 198.992C129.994 199.144 129.283 199.282 130.134 199.102C132.351 198.647 133.634 196.064 133.062 194.006C132.435 191.727 130.134 190.65 127.916 191.105C123.872 191.934 121.487 196.271 122.268 200.138C123.007 203.798 126.536 206.961 130.427 206.478C134.318 205.994 136.8 202.293 136.856 198.66C136.912 194.475 133.327 190.746 129.032 190.953C126.773 191.064 124.848 192.777 124.848 195.097C124.848 197.265 126.759 199.351 129.032 199.241L129.004 199.268Z" fill="#3E302E"/>
<path d="M148.626 199.945C148.194 199.89 147.817 199.627 147.455 199.531C147.873 199.641 147.58 200 147.566 199.669C147.566 199.489 147.469 199.254 147.441 199.075C147.511 199.613 147.343 199.268 147.525 199.006C147.134 199.6 147.678 199.006 147.608 199.006L147.441 199.31L147.678 199.019L147.441 199.254L147.734 199.006C148.041 198.909 148.264 198.757 148.612 198.799C148.822 198.826 148.961 198.95 149.142 199.006C149.365 199.061 148.989 198.688 149.073 198.909C149.128 199.061 149.254 199.337 149.324 199.489C149.519 199.89 149.407 199.061 149.351 199.489C149.351 199.572 149.184 200.276 149.282 199.821C149.393 199.296 149.254 200.249 149.282 199.765C149.463 199.6 149.449 199.586 149.282 199.738C149.087 199.876 149.1 199.876 149.282 199.752C149.672 199.558 148.738 199.931 148.64 199.931C150.899 199.876 152.824 198.066 152.824 195.788C152.824 193.509 150.913 191.589 148.64 191.644C144.568 191.741 141.43 195 141.026 198.923C140.621 202.845 144.066 206.906 148.236 207.044C152.183 207.168 155.237 204.019 155.725 200.29C155.99 198.274 155.46 196.326 154.247 194.696C152.824 192.777 150.983 191.948 148.64 191.644C146.297 191.34 144.456 193.757 144.456 195.788C144.456 198.274 146.395 199.641 148.64 199.931L148.626 199.945Z" fill="#3E302E"/>
<path d="M103.901 129.187C92.4379 139.504 83.8471 152.639 79.2171 167.294C78.0456 170.981 77.1531 174.724 76.5255 178.537C75.8979 182.349 75.117 181.907 72.3138 184.724C66.9586 190.097 62.719 196.533 59.9438 203.55C50.5721 227.168 60.39 253.645 81.6995 267.098C86.2598 269.971 90.4575 262.803 85.9251 259.944C66.1358 247.458 58.7863 221.878 70.208 201.257C71.8676 198.26 73.834 195.456 76.0932 192.873C78.0875 190.608 81.7413 188.412 83.3172 185.94C85.7996 182.031 85.6043 175.07 86.971 170.539C91.1269 156.797 99.1598 144.67 109.842 135.057C113.831 131.466 107.904 125.61 103.929 129.201L103.901 129.187Z" fill="#3E302E"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M177.359 171.122C181.119 166.576 188.214 166.741 191.552 171.631C194.425 175.829 194.118 181.561 190.883 185.47C182.613 195.442 171.428 180.677 176.672 172.004C176.878 171.662 177.109 171.37 177.359 171.122Z" fill="#3E302E"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M97.6242 164.982C97.6524 164.96 97.6808 164.939 97.7095 164.918C102.591 161.341 109.396 163.482 111.39 169.075C113.148 173.992 111.042 179.6 106.746 182.473C96.2173 189.531 89.7603 172.321 96.8727 165.567C97.1163 165.336 97.3677 165.141 97.6242 164.982Z" fill="#3E302E"/>
<path d="M288.155 222.071C283.609 222.32 279.09 222.196 274.586 221.422C271.169 220.828 263.318 219.682 260.751 217.127C255.689 212.086 264.433 203.37 260.5 197.086C252.97 185.056 237.531 204.669 234.7 210.911L239.428 209.005C223.014 206.036 207.213 221.132 212.777 237.803C218.342 254.474 241.492 261.159 257.418 263.024C262.76 263.659 262.704 255.358 257.418 254.736C245.439 253.328 230.558 249.529 222.986 239.336C215.413 229.143 224.59 214.696 237.211 216.975C238.884 217.279 241.143 216.809 241.938 215.069C242.524 213.771 250.836 200.304 253.067 202.997C253.723 203.785 251.352 209.144 251.212 210.773C250.975 213.605 251.45 216.409 252.37 219.102C254.364 224.931 260.779 226.436 266.344 228.011C273.428 230.027 280.834 230.745 288.183 230.345C293.538 230.055 293.566 221.768 288.183 222.058L288.155 222.071Z" fill="#3E302E"/>
<path d="M47.6574 94.9611C47.2111 95.0578 52.8034 108.787 47.8108 119.822C44.2825 127.612 36.5425 131.728 30.978 133.924C35.8731 132.819 43.1389 132.018 49.1775 135.734C59.6091 142.156 60.8503 158.661 62.1333 158.385C63.4024 158.109 57.81 142.888 64.4204 132.336C68.3253 126.107 75.2704 123.413 80.0538 122.143C72.8717 122.53 62.8585 121.853 56.2202 115.334C48.4802 107.723 48.0618 94.8782 47.6574 94.9611Z" fill="#F8B62D"/>
<path d="M43.4737 94.9611C43.3063 96.3009 44.0733 97.9997 44.3801 99.2704C45.203 102.723 45.8026 106.232 45.719 109.795C45.4679 119.891 38.8018 126.245 29.8764 129.919C25.0092 131.922 26.6967 139.021 32.1077 137.916C43.9339 135.485 51.4368 140.485 55.3138 151.327C56.6108 154.96 56.8339 160.844 61.0595 162.377C62.3286 162.846 64.2531 162.349 65.1317 161.313C68.2138 157.639 65.4525 150.761 65.3688 146.535C65.1596 135.72 70.9611 129.049 81.1975 126.134C85.6323 124.878 84.921 117.806 80.0818 117.999C70.3754 118.386 60.3343 116.646 55.523 107.24C53.3056 102.903 53.8216 96.7843 51.2973 92.8755C48.4105 88.4005 41.1586 92.544 44.0733 97.0605C43.4039 96.0246 44.1152 98.3036 44.1989 98.8837C44.5057 100.9 45.0217 102.931 45.6353 104.878C46.988 109.201 48.9823 113.441 52.0086 116.867C59.0373 124.85 69.9012 126.701 80.0957 126.286L78.9801 118.151C70.3057 120.624 62.5238 125.361 59.0373 133.966C57.2104 138.496 56.792 143.496 57.071 148.33C57.1825 150.319 57.4475 152.28 57.7264 154.242C57.8101 154.863 57.7683 156.092 58.0751 156.645C58.8839 158.04 56.1924 159.034 59.2047 155.443L63.2769 154.38C66.0522 155.402 65.313 156.893 64.8249 153.8C64.5878 152.239 63.9045 150.595 63.3745 149.117C61.9242 144.988 60.0833 140.996 57.322 137.557C50.4745 129.035 40.1127 127.819 29.8764 129.919L32.1077 137.916C41.0889 134.214 49.4983 128.538 52.6362 118.938C54.1981 114.187 54.3376 109.063 53.7658 104.146C53.5147 101.978 53.1103 99.8229 52.6222 97.6958C52.4409 96.9086 51.9807 94.0219 51.8691 94.9611C52.5246 89.685 44.1431 89.7264 43.5016 94.9611H43.4737Z" fill="#3E302E"/>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -0,0 +1,21 @@
<svg width="360" height="360" viewBox="0 0 360 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M114.271 290.249C105.547 286.292 72.5713 271.356 71.0379 242.421C69.6831 217.176 93.2499 199.414 96.1678 197.272C95.617 190.785 95.4979 179.926 99.4728 167.608C102.242 159.024 106.083 152.538 109.194 148.135C106.857 139.358 104.207 130.224 101.155 120.807C98.788 113.473 96.3316 106.436 93.8454 99.6826C99.3388 97.6296 107.11 95.4726 116.578 95.1007C130.081 94.5651 140.904 97.9123 147.41 100.516C158.635 96.7222 172.466 93.0775 188.499 90.9799C206.394 88.6294 222.19 88.8526 234.933 89.9386C241.156 89.0608 252.545 86.5616 263.696 78.2308C269.487 73.9018 273.581 69.2158 276.365 65.4074C278.211 66.7463 295.168 79.4656 294.855 100.412C294.691 111.896 289.406 120.227 286.905 123.693C291.833 129.376 296.76 135.059 301.688 140.741C305.842 145.517 309.98 150.307 314.134 155.082V255.855C310.397 259.232 304.8 263.903 297.475 268.663C277.824 281.427 256.371 287.884 198.608 292.332C153.142 295.828 130.081 297.419 114.271 290.249Z" fill="#FCEAF0"/>
<path d="M207.868 181.324C220.641 173.41 239.236 177.382 248.064 189.982C253.736 198.075 255.656 210.095 249.955 220.345C243.895 231.234 231.494 236.054 220.701 234.552C205.069 232.365 193.636 216.983 195.05 202.077C195.124 201.273 196.568 188.301 207.838 181.324H207.868Z" fill="#F7D0DD"/>
<path d="M103.001 189.372C112.693 190.548 118.514 204.665 119.273 206.54C120.866 210.422 124.93 220.271 119.898 229.018C115.834 236.069 108.286 238.197 105.457 239C95.1405 241.901 80.8337 239.61 75.906 231.309C67.4797 217.087 88.0392 187.557 103.001 189.387V189.372Z" fill="#F7D0DD"/>
<path d="M112.067 145.07C110.028 127.457 103.254 111.524 91.895 97.8825L90.9869 104.889C106.351 97.5999 123.992 96.4098 140.1 101.974C142.78 102.896 145.802 105.023 148.69 104.815C151.772 104.592 155.375 102.524 158.337 101.587C167.166 98.8198 176.262 96.8263 185.447 95.7552C194.633 94.6841 204.503 94.4758 214.001 95.175C217.872 95.4577 221.743 95.8891 225.569 96.4842C228.517 96.9453 232.164 98.3586 235.141 97.7933C238.298 97.1834 242.005 94.342 244.788 92.7799C249.076 90.37 253.289 87.8112 257.413 85.1037C265.125 80.0458 272.479 74.482 279.536 68.5463H273.223C289.391 81.3995 293.962 103.61 283.064 121.432C280.057 126.341 287.783 130.834 290.776 125.939C303.579 104.979 298.8 77.5465 279.536 62.2387C277.511 60.6321 275.248 60.5428 273.223 62.2387C265.318 68.8736 256.996 74.9432 248.227 80.3879C244.297 82.8128 240.188 85.6393 235.93 87.4542C232.521 88.9121 230.765 88.3022 226.983 87.722C209.327 85.0442 191.432 85.312 173.88 88.5402C165.796 90.0278 158.263 92.9287 150.343 94.8626C146.398 95.8296 151.013 96.0676 147.217 95.1899C145.936 94.8924 144.686 94.1486 143.435 93.7023C139.475 92.2741 135.396 91.203 131.242 90.5187C115.879 87.9749 100.485 90.5187 86.4909 97.1685C83.6772 98.5074 83.9154 102.167 85.5828 104.175C95.2893 115.823 101.393 130.001 103.15 145.056C103.805 150.694 112.737 150.753 112.082 145.056L112.067 145.07Z" fill="#3E302E"/>
<path d="M114.3 133.705C95.8252 147.748 87.0416 170.702 91.7609 193.493L93.8154 188.45C79.0769 198.105 68.224 214.305 66.5268 231.963C64.0704 257.536 80.4465 280.847 103.284 291.082C108.479 293.418 113.035 285.727 107.795 283.376C87.7711 274.406 72.9284 254.65 75.4592 231.963C77.0671 217.563 86.2824 204.04 98.3263 196.156C100.083 195.01 100.798 193.151 100.381 191.113C96.5547 172.607 103.701 152.881 118.811 141.396C123.322 137.96 118.886 130.209 114.3 133.69V133.705Z" fill="#3E302E"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M190.764 167.111C187.973 173.028 190.317 180.051 195.511 183.972C201.511 188.509 208.508 185.966 212.483 180.104C216.22 174.6 215.758 166.835 210.592 162.357C204.848 157.397 197.109 159.844 192.409 164.816C191.982 165.149 191.594 165.589 191.268 166.15C191.038 166.447 190.872 166.771 190.764 167.111Z" fill="#3E302E"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M110.141 168.248C115.351 164.58 122.593 165.259 126.047 171.238C129.307 176.876 127.952 184.537 123.188 188.896C118.008 193.642 111.1 192.556 107.72 186.427C105.046 181.561 104.774 175.685 107.594 171.018C107.813 170.46 108.178 169.915 108.718 169.408C108.74 169.388 108.762 169.367 108.783 169.347C109.207 168.843 109.666 168.483 110.141 168.248Z" fill="#3E302E"/>
<path d="M161.657 223.171C173.21 222.115 191.328 215.599 193.055 203.222C194.886 190.071 177.527 175.21 160.794 174.823C140.83 174.362 122.057 194.534 125.407 207.73C128.325 219.214 147.738 224.451 161.657 223.171Z" fill="#F7D0DD"/>
<path d="M161.658 227.634C176.277 226.028 198.772 218.262 197.581 199.905C196.375 181.131 172.972 168.679 156.09 170.628C139.207 172.577 120.226 187.156 120.553 204.903C120.911 223.826 147.202 228.646 161.658 227.619C167.359 227.218 167.404 218.292 161.658 218.694C152.398 219.348 131.511 217.905 129.605 205.721C127.699 193.538 144.507 181.904 154.854 179.822C167.077 177.367 186.579 185.519 188.574 199.414C190.42 212.282 171.245 217.637 161.658 218.694C156 219.318 155.941 228.244 161.658 227.619V227.634Z" fill="#3E302E"/>
<path d="M147.455 202.463C147.038 202.538 146.472 202.27 146.145 202.3C146.725 202.225 146.413 202.746 146.13 202.24C146.07 202.151 145.773 201.437 145.907 201.868C146.1 202.493 145.832 201.11 145.862 201.764C145.892 202.3 146.026 201.006 145.817 201.839C145.907 201.482 146.115 201.348 145.832 201.749C146.041 201.467 146.294 201.333 145.907 201.63C146.472 201.199 146.755 201.08 147.5 201.08C148.259 201.139 148.437 201.125 148.036 201.035C147.797 200.961 147.812 200.976 148.08 201.08C148.348 201.199 148.363 201.199 148.14 201.08C147.931 200.946 147.931 200.946 148.14 201.08C148.348 201.244 148.363 201.229 148.17 201.05C147.961 200.812 147.991 200.872 148.289 201.184C148.289 201.571 148.467 201.616 148.289 201.184C148.289 201.497 148.393 201.764 148.348 201.288C148.378 201.556 148.318 202.106 148.378 201.497C148.155 201.973 148.125 202.062 148.289 201.779C148.423 201.571 148.408 201.586 148.259 201.809C147.991 202.092 147.812 202.3 147.41 202.434C149.703 201.675 151.192 199.354 150.537 196.944C149.926 194.713 147.336 193.062 145.043 193.82C141.038 195.144 138.552 199.384 139.684 203.549C140.741 207.447 144.85 210.69 148.988 209.693C152.651 208.816 155.047 204.844 154.75 201.184C154.571 199.101 153.782 197.182 152.234 195.739C150.209 193.85 147.708 193.374 145.043 193.82C142.661 194.222 141.336 197.153 141.917 199.31C142.617 201.824 145.028 202.835 147.41 202.434L147.455 202.463Z" fill="#3E302E"/>
<path d="M165.871 200.946C165.603 200.946 165.394 200.753 165.141 200.708C164.858 200.44 164.828 200.411 165.052 200.634C165.23 200.827 165.245 200.827 165.096 200.663C165.052 200.693 164.709 199.934 164.903 200.411C165.141 200.961 164.784 199.652 164.843 200.262C164.888 200.723 165.082 199.548 164.784 200.292C164.918 199.964 165.037 199.801 165.245 199.518C164.933 199.934 165.037 199.622 165.35 199.473C165.662 199.325 165.975 199.191 166.347 199.22C166.555 199.235 166.868 199.473 167.017 199.488C167.196 199.652 167.196 199.637 167.017 199.458C166.838 199.28 166.823 199.265 167.002 199.458C167.136 199.86 167.27 199.979 167.344 200.47C167.27 199.92 167.404 200.262 167.285 200.604C167.493 200.053 167.389 200.485 167.196 200.663C167.598 200.262 167.3 200.574 167.091 200.693C167.821 200.262 166.838 200.723 166.719 200.812C166.347 201.08 166.808 200.812 167.106 200.768C169.429 200.44 170.903 197.361 170.233 195.278C169.414 192.734 167.225 191.812 164.739 192.154C161.077 192.675 158.501 196.617 158.427 200.098C158.352 204.412 162.059 208.161 166.392 208.102C170.724 208.042 173.701 204.323 173.82 200.232C173.954 195.843 170.292 192.02 165.915 191.99C163.578 191.976 161.345 194.058 161.449 196.453C161.553 198.849 163.414 200.887 165.915 200.916L165.871 200.946Z" fill="#3E302E"/>
<path d="M276.797 122.384C291.714 133.259 303.043 147.912 310.293 164.841C312.541 170.107 320.238 165.57 318.005 160.334C310.13 141.917 297.46 126.445 281.308 114.678C276.663 111.286 272.196 119.037 276.797 122.384Z" fill="#3E302E"/>
<path d="M309.668 68.6951V294.816C309.668 300.558 318.6 300.573 318.6 294.816V68.6951C318.6 62.9528 309.668 62.9379 309.668 68.6951Z" fill="#3E302E"/>
<path d="M42.3648 137.022C45.4316 131.83 50.2253 126.207 56.6566 125.523C63.088 124.839 65.604 131.697 65.2169 137.156C64.8 142.943 59.9616 145.799 57.4159 150.53C54.8702 155.261 55.1232 160.899 56.8651 165.882C58.7558 171.268 67.3904 168.947 65.4849 163.502C62.0012 153.565 72.214 149.295 73.8218 140.146C74.983 133.556 73.2263 125.642 68.4326 120.762C57.1479 109.293 40.7718 122.146 34.6531 132.515C31.7203 137.469 39.4468 141.976 42.3648 137.022Z" fill="#3E302E"/>
<path d="M63.0135 171.699C60.2147 173.083 59.3363 176.727 59.9318 179.554C60.6613 183.035 64.0854 185.266 67.5393 184.805C71.4547 184.285 73.2858 180.149 72.3926 176.579C71.4993 173.008 67.7775 170.241 64.0705 171.238C61.8225 171.848 60.2147 174.436 60.9442 176.727C61.6736 179.018 64.0258 180.506 66.4376 179.851C65.7379 180.06 65.0977 180 64.5171 179.673C64.2045 179.509 64.1449 179.494 64.3534 179.613C64.8 179.881 63.6983 178.944 64.2194 179.524L63.8174 179.018C63.9812 179.331 63.9812 179.286 63.8174 178.914C63.475 178.066 63.8025 179.063 63.8174 179.078C63.743 178.989 63.743 177.977 63.7132 178.602C63.8472 177.843 63.877 177.635 63.8025 177.977C63.743 178.2 63.7876 178.126 63.9216 177.754C64.2194 177.233 64.5618 176.683 65.1275 176.4L66.7056 175.998C66.3483 175.998 66.3781 175.998 66.8098 176.028C66.9884 176.073 68.0603 176.519 67.5393 176.192C67.9263 176.43 68.239 176.757 68.4772 177.144C68.0454 176.445 68.8196 177.962 68.6112 177.501C68.2836 176.817 68.7749 177.665 68.6558 177.917C68.7005 177.828 68.7451 176.906 68.626 177.843C68.507 178.855 68.626 177.843 68.7005 177.813C68.7154 177.813 68.2092 178.884 68.507 178.349C68.3134 178.721 68.0454 179.003 67.703 179.227C67.3308 179.479 67.2713 179.539 67.5244 179.405C69.6235 178.364 70.3679 175.225 69.1322 173.306C67.7477 171.164 65.2615 170.598 63.0284 171.699H63.0135Z" fill="#3E302E"/>
<path d="M157.772 238.286C160.987 237.096 165.216 239.104 167.404 241.722C172.615 247.941 169.756 261.567 162.58 263.724C156.7 265.51 148.363 259.455 148.125 254.099C148.065 252.85 149.346 250.618 151.906 246.185C155.956 239.193 156.923 238.583 157.757 238.271L157.772 238.286Z" fill="#E490B1"/>
<path d="M158.963 242.585C168.193 240.354 167.806 261.88 158.472 259.247C156.536 258.696 154.214 257.194 153.246 255.394C152.278 253.594 152.963 253.43 154.11 251.377C155.435 248.982 156.804 246.587 158.293 244.311C159.052 243.15 160.779 241.856 158.963 242.6C164.218 240.458 161.911 231.815 156.581 233.987C153.916 235.073 152.457 236.977 150.879 239.327C148.378 243.031 144.76 247.896 143.867 252.404C142.11 261.181 153.053 268.827 160.868 268.47C180.832 267.577 178.123 228.75 156.581 233.972C150.998 235.325 153.365 243.939 158.963 242.585Z" fill="#3E302E"/>
<path d="M298.115 268.693C300.036 269.199 306.809 270.954 312.869 267.548C326.684 259.782 321.816 233.659 321.086 229.717C319.598 221.714 317.99 213.07 311.469 210.199C302.879 206.391 291.297 215.094 285.788 222.294C284.568 223.885 275.754 235.846 280.28 250.187C280.876 252.061 285.297 265.346 298.115 268.693Z" fill="#FCEAF0"/>
<path d="M296.924 273.007C316.233 277.842 326.52 263.07 326.967 245.62C327.28 233.049 325.627 209.113 310.903 205.32C294.259 201.035 278.166 220.583 275.248 235.087C272.032 251.094 281.099 268.113 296.924 273.022C302.433 274.733 304.785 266.119 299.306 264.409C288.23 260.972 281.843 248.64 283.868 237.453C284.717 232.782 286.816 228.214 289.748 224.481C293.53 219.646 301.763 212.222 308.536 213.918C316.888 216.016 317.737 234.299 318.005 241.767C318.422 253.846 314.878 268.306 299.306 264.409C293.723 263.01 291.356 271.624 296.924 273.022V273.007Z" fill="#3E302E"/>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 16 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 20 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 20 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 18 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 18 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 17 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 17 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 20 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 18 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 19 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 21 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 21 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 16 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 18 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -0,0 +1,24 @@
<svg width="361" height="360" viewBox="0 0 361 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M173.599 78.203C169.168 85.2189 165.45 92.7304 161.603 100.072C151.337 119.663 141.311 139.364 130.767 158.811C122.942 173.244 114.17 187.226 107.419 202.215C100.275 218.078 95.2816 234.564 89.9862 251.08C88.5364 255.602 86.3938 259.077 83.9764 263.124C80.2412 269.377 76.9134 275.828 73.5784 282.298C70.1708 288.909 66.4939 295.634 64.1345 302.712" stroke="#C8C8C8" stroke-width="20" stroke-linecap="round"/>
<path d="M64.1345 303.141C83.1492 302.349 102.15 301.086 121.18 300.661C133.911 300.377 146.657 300.851 159.385 300.47C166.987 300.243 174.511 299.39 182.089 298.944C190.62 298.442 199.208 299.041 207.75 298.825C217.834 298.57 227.956 297.793 238.037 297.322C245.824 296.959 253.713 296.69 261.48 296.035C270.416 295.281 279.381 293.613 288.238 292.243C290.772 291.851 293.381 290.693 295.941 290.693" stroke="#C8C8C8" stroke-width="20" stroke-linecap="round"/>
<path d="M172.311 74.3395C172.822 75.8722 173.698 77.2035 174.577 78.5607C178.958 85.3315 183.852 91.7765 188.671 98.2357C203.666 118.334 218.778 138.345 233.792 158.429C249.194 179.031 264.337 199.824 279.724 220.435C283.264 225.176 286.76 230.008 290.552 234.553C295.773 240.812 302.093 246.858 305.815 254.204C307.801 258.127 308.565 262.468 309.583 266.701C310.409 270.137 310.904 273.856 310.966 277.385C311.012 280.008 309.493 281.312 308.915 283.729C307.711 288.765 307.2 291.507 302.38 293.698" stroke="#C8C8C8" stroke-width="20" stroke-linecap="round"/>
<path d="M140.974 137.872C153.635 141.459 165.392 148.224 177.224 153.85C186.482 158.252 195.863 162.353 205.174 166.633C213.9 170.644 222.119 175.522 230.501 180.179C235.69 183.061 241.102 185.802 246.575 188.097C251.724 190.256 257.557 192.899 262.029 196.253" stroke="#C8C8C8" stroke-width="20" stroke-linecap="round"/>
<path d="M136.252 145.599C136.155 163.499 133.473 181.137 130.004 198.685C125.803 219.936 120.907 240.892 117.913 262.385C116.012 276.026 115.218 289.806 115.218 303.571" stroke="#C8C8C8" stroke-width="20" stroke-linecap="round"/>
<path d="M115.647 304C133.055 298.232 150.461 291.796 166.54 282.87C180.165 275.306 192.711 265.673 203.982 254.944C212.689 246.655 221.304 238.962 231.145 232.073C239.003 226.572 246.927 221.145 254.731 215.57C256.769 214.115 259.015 213.404 261.218 212.303C263.537 211.143 265.566 209.415 267.609 207.843" stroke="#C8C8C8" stroke-width="20" stroke-linecap="round"/>
<path d="M132.818 197.541C146.69 187.278 161.034 176.558 177.2 170.091C181.979 168.179 186.247 165.46 190.77 163.199" stroke="#C8C8C8" stroke-width="20" stroke-linecap="round"/>
<path d="M191.628 163.199C191.943 175.475 193.4 187.619 193.345 199.925C193.302 209.866 192.837 219.79 192.916 229.736C192.973 236.951 194.791 244.056 195.921 251.152C196.305 253.563 197.209 256.041 197.209 258.497" stroke="#C8C8C8" stroke-width="20" stroke-linecap="round"/>
<path d="M197.209 258.497C184.157 251.184 171.329 243.5 158.312 236.127C152.189 232.659 145.502 230.144 139.496 226.54C136.222 224.576 133.186 221.978 129.813 220.292" stroke="#C8C8C8" stroke-width="20" stroke-linecap="round"/>
<path d="M154.282 191.102C154.282 203.264 155.228 215.38 155.14 227.542C155.135 228.206 155.006 237.727 155.092 237.654C159.621 233.84 163.433 229.097 168.018 225.276C171.19 222.633 174.882 220.425 178.392 218.265C180.649 216.876 183.21 216.013 185.475 214.64C187.587 213.36 192.117 211.1 192.916 208.702" stroke="#C8C8C8" stroke-width="20" stroke-linecap="round"/>
<path d="M192.916 208.272C186.836 204.356 180.419 200.961 173.694 198.304C170.195 196.921 166.472 195.96 163.201 194.106C160.539 192.598 157.189 191.212 154.282 190.243" stroke="#C8C8C8" stroke-width="20" stroke-linecap="round"/>
<path d="M159.714 58.8634C155.283 65.8794 151.566 73.3909 147.719 80.7325C137.453 100.323 127.426 120.025 116.883 139.471C109.057 153.904 100.286 167.887 93.5349 182.875C86.3903 198.738 81.3971 215.224 76.1017 231.741C74.652 236.263 72.5094 239.737 70.0919 243.784C66.3568 250.037 63.0289 256.489 59.694 262.958C56.2864 269.569 52.6095 276.294 50.25 283.373" stroke="black" stroke-width="20" stroke-linecap="round"/>
<path d="M50.25 283.802C69.2647 283.01 88.2655 281.746 107.295 281.322C120.027 281.038 132.772 281.512 145.501 281.131C153.102 280.904 160.627 280.05 168.204 279.605C176.736 279.103 185.324 279.702 193.865 279.485C203.95 279.23 214.072 278.453 224.153 277.983C231.94 277.62 239.828 277.35 247.596 276.695C256.531 275.942 265.497 274.274 274.354 272.903C276.888 272.511 279.497 271.353 282.057 271.353" stroke="black" stroke-width="20" stroke-linecap="round"/>
<path d="M158.427 55C158.937 56.5327 159.814 57.864 160.692 59.2212C165.073 65.992 169.968 72.4369 174.787 78.8961C189.781 98.9945 204.894 119.005 219.908 139.09C235.309 159.692 250.453 180.485 265.84 201.096C269.379 205.836 272.875 210.669 276.667 215.214C281.889 221.472 288.209 227.518 291.93 234.865C293.917 238.788 294.681 243.129 295.698 247.362C296.524 250.797 297.019 254.517 297.081 258.046C297.127 260.669 295.608 261.973 295.03 264.389C293.826 269.426 293.315 272.167 288.496 274.358" stroke="black" stroke-width="20" stroke-linecap="round"/>
<path d="M127.09 118.532C139.751 122.12 151.508 128.885 163.339 134.511C172.597 138.913 181.978 143.013 191.29 147.293C200.016 151.305 208.234 156.183 216.617 160.839C221.805 163.722 227.218 166.462 232.691 168.757C237.84 170.916 243.672 173.559 248.144 176.913" stroke="black" stroke-width="20" stroke-linecap="round"/>
<path d="M122.368 126.259C122.271 144.16 119.589 161.797 116.119 179.346C111.918 200.597 107.022 221.552 104.028 243.045C102.128 256.687 101.333 270.467 101.333 284.231" stroke="black" stroke-width="20" stroke-linecap="round"/>
<path d="M101.763 284.66C119.171 278.892 136.577 272.457 152.655 263.531C166.281 255.967 178.826 246.333 190.097 235.604C198.805 227.316 207.42 219.622 217.261 212.734C225.119 207.233 233.042 201.805 240.847 196.23C242.884 194.775 245.131 194.065 247.334 192.963C249.652 191.804 251.681 190.076 253.725 188.504" stroke="black" stroke-width="20" stroke-linecap="round"/>
<path d="M118.934 178.201C132.806 167.938 147.149 157.218 163.315 150.751C168.094 148.84 172.362 146.121 176.885 143.859" stroke="black" stroke-width="20" stroke-linecap="round"/>
<path d="M177.744 143.859C178.059 156.135 179.515 168.279 179.461 180.586C179.417 190.526 178.953 200.451 179.032 210.396C179.089 217.612 180.906 224.717 182.037 231.812C182.421 234.223 183.324 236.701 183.324 239.158" stroke="black" stroke-width="20" stroke-linecap="round"/>
<path d="M183.324 239.158C170.272 231.845 157.445 224.16 144.428 216.788C138.304 213.32 131.618 210.805 125.611 207.201C122.338 205.237 119.301 202.639 115.929 200.952" stroke="black" stroke-width="20" stroke-linecap="round"/>
<path d="M140.397 171.762C140.397 183.924 141.343 196.04 141.256 208.202C141.251 208.866 141.121 218.387 141.208 218.314C145.737 214.5 149.549 209.758 154.134 205.937C157.305 203.294 160.997 201.086 164.508 198.925C166.764 197.537 169.326 196.673 171.591 195.3C173.702 194.021 178.232 191.761 179.032 189.362" stroke="black" stroke-width="20" stroke-linecap="round"/>
<path d="M179.032 188.933C172.951 185.017 166.535 181.622 159.81 178.964C156.31 177.581 152.587 176.62 149.316 174.767C146.654 173.258 143.304 171.873 140.397 170.903" stroke="black" stroke-width="20" stroke-linecap="round"/>
</svg>

After

Width:  |  Height:  |  Size: 7.2 KiB

View File

@ -0,0 +1,6 @@
<svg width="360" height="360" viewBox="0 0 360 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M172 126.5C172.151 129.344 172.127 132.409 171.862 135.64C172.469 165.592 184.692 200.307 252.777 187.917C254.323 187.595 255.898 187.29 257.5 187C255.897 187.33 254.323 187.636 252.777 187.917C184.113 202.199 170.404 247.654 171.318 288.675C172.001 294.061 172.406 299.828 172.5 306C171.883 300.388 171.449 294.577 171.318 288.675C164.041 231.294 125.31 217.112 97.6982 216.314C96.5097 216.279 96.1668 214.141 97.2872 213.743C154.347 193.466 169.877 159.868 171.862 135.64C171.799 132.522 171.861 129.456 172 126.5Z" fill="#9ABCFF"/>
<path d="M260.033 59C260.09 60.0809 260.114 61.2873 260.059 62.5841C260.68 72.2728 266.166 83.2744 288.016 79.2887C288.503 79.1873 288.997 79.091 289.5 79C288.997 79.1038 288.503 79.2 288.016 79.2887C265.358 84.0102 259.663 99.916 259.722 113.605C259.898 115.287 260.004 117.083 260.033 119C259.843 117.264 259.73 115.455 259.722 113.605C257.523 92.5936 244.454 89.345 235.5 90C255.882 83.6478 259.693 71.1458 260.059 62.5841C259.98 61.3573 259.979 60.1516 260.033 59Z" fill="#9ABCFF"/>
<path d="M157 99C158.333 124.167 143 180.1 71 202.5C100.667 200.333 160.3 215.8 161.5 295C156.5 249.5 169 189.5 252 174.5C172.4 190.9 155.5 131 157 99Z" stroke="black" stroke-width="20" stroke-linejoin="round"/>
<path d="M256.033 52C256.468 60.2177 251.47 78.4816 228 85.7959C237.67 85.0884 257.109 90.1388 257.5 116C255.87 101.143 259.945 81.551 287 76.6531C261.053 82.0082 255.544 62.449 256.033 52Z" stroke="black" stroke-width="10" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,12 @@
<svg width="360" height="360" viewBox="0 0 360 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M119.5 106.5C115.9 105.3 99.6667 143 92 162C88.5 163.833 80.9 168.5 78.5 172.5C75.5 177.5 73 209.5 73 216.5C73 223.5 80.5 264.5 84.5 271.5C88.5 278.5 106 289.5 122.5 296C135.7 301.2 150 303.5 155.5 304H249C249.5 306.167 255.9 306.3 277.5 289.5C299.1 272.7 302.833 243.833 302 231.5C302.167 218.167 300 186.7 290 167.5C280 148.3 259.5 148.5 250.5 151C243.7 130.6 235.333 111.167 232 104C222.8 104.8 208.5 135.667 202.5 151C191.7 147 155.667 149.333 139 151C134 136.667 123.1 107.7 119.5 106.5Z" fill="#FFE179"/>
<path d="M187.5 168V183" stroke="black" stroke-width="20" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M125 171L131.5 186.5" stroke="black" stroke-width="20" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M100.5 81.5C96.9 80.3 80.6667 118 73 137C69.5 138.833 61.9 143.5 59.5 147.5C56.5 152.5 54 184.5 54 191.5C54 198.5 61.5 239.5 65.5 246.5C69.5 253.5 87 264.5 103.5 271C116.7 276.2 131 278.5 136.5 279H230C230.5 281.167 236.9 281.3 258.5 264.5C280.1 247.7 283.833 218.833 283 206.5C283.167 193.167 281 161.7 271 142.5C261 123.3 240.5 123.5 231.5 126C224.7 105.6 216.333 86.1667 213 79C203.8 79.8 189.5 110.667 183.5 126C172.7 122 136.667 124.333 120 126C115 111.667 104.1 82.7 100.5 81.5Z" stroke="black" stroke-width="20" stroke-linejoin="round"/>
<path d="M100.5 128.5C123.667 124.5 184.3 123.7 199.5 128.5" stroke="black" stroke-width="20" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M139.006 217C138.839 224.333 142.006 239 156.006 239C170.006 239 173.839 226.333 174.006 220C175.839 227.333 182.106 242.1 192.506 242.5C205.506 243 215 228 214.5 220C214.333 216.833 213.7 210 212.5 208" stroke="black" stroke-width="20" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M245 230C268 234.833 315.2 246.8 320 256" stroke="black" stroke-width="20" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M258 180C275.667 182.5 314.5 188.8 328.5 194" stroke="black" stroke-width="20" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M46 265C58.5 256 87.9 236.4 105.5 230" stroke="black" stroke-width="20" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M32 210.5C47.1667 207.167 79.8 200.2 89 199" stroke="black" stroke-width="20" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,4 @@
<svg width="361" height="360" viewBox="0 0 361 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M186.75 166.5L239.75 68L280.25 91.5L206.25 231L268.75 295.5L228.25 325L160.25 267L86.75 323L68.25 276L133.25 213L79.25 131.5L114.75 89L186.75 166.5Z" fill="#FF4B4B"/>
<path d="M167.25 148.5L220.25 50L260.75 73.5L186.75 213L249.25 277.5L208.75 307L140.75 249L67.25 305L48.75 258L113.75 195L59.75 113.5L95.25 71L167.25 148.5Z" stroke="black" stroke-width="20" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 500 B

View File

@ -0,0 +1,8 @@
<svg width="361" height="360" viewBox="0 0 361 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M126.556 287.096C56.913 246.675 91.4193 98 126.556 98C150.207 98 179.795 112.207 173.354 189.046C165.638 281.093 140.981 291.765 126.556 287.096Z" fill="#D9D9D9"/>
<path d="M256.556 305.096C186.913 264.675 221.419 116 256.556 116C280.207 116 309.795 130.207 303.354 207.046C295.638 299.093 270.981 309.765 256.556 305.096Z" fill="#D9D9D9"/>
<path d="M109.556 274.096C39.913 233.675 74.4193 85 109.556 85C133.207 85 162.795 99.2072 156.354 176.046C148.638 268.093 123.981 278.765 109.556 274.096Z" stroke="black" stroke-width="20" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M237.556 287.096C167.913 246.675 202.419 98 237.556 98C261.207 98 290.795 112.207 284.354 189.046C276.638 281.093 251.981 291.765 237.556 287.096Z" stroke="black" stroke-width="20" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M109.75 172.5C99.75 150.9 82.9167 163.5 75.75 172.5C68.95 192.9 87.5833 203 97.75 205.5C105.917 203.5 119.75 194.1 109.75 172.5Z" fill="white" stroke="black" stroke-width="20" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M237.708 169.926C227.708 148.326 210.874 160.926 203.708 169.926C196.908 190.326 215.541 200.426 225.708 202.926C233.874 200.926 247.708 191.526 237.708 169.926Z" fill="white" stroke="black" stroke-width="20" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,6 @@
<svg width="361" height="360" viewBox="0 0 361 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M202.066 312.5C100.066 305.3 85.8992 228.833 91.5658 191.5C110.766 186.3 131.899 200.333 140.066 208C136.466 163.6 145.233 127.5 150.066 115C160.066 116.6 174.233 136.333 180.066 146C200.066 130.8 217.399 95.6667 223.566 80C229.166 85.2 239.899 124.5 244.566 143.5C252.166 146.7 272.399 144.833 281.566 143.5C270.066 169.5 273.566 182.5 279.066 190C283.466 196 297.566 197.833 304.066 198C299.066 226.167 284.366 285.9 265.566 299.5C246.766 313.1 215.399 313.833 202.066 312.5Z" fill="#FFC691"/>
<path d="M191.066 255C170.266 257 163.399 289.5 162.566 305.5C216.966 321.5 253.899 305.167 265.566 295C255.566 286.6 233.066 268.167 223.066 260C221.066 257.5 211.866 253 191.066 255Z" fill="#FCBD5F"/>
<path d="M185.066 296.5C83.0658 289.3 68.8992 212.833 74.5658 175.5C93.7658 170.3 114.899 184.333 123.066 192C119.466 147.6 128.233 111.5 133.066 99C143.066 100.6 157.233 120.333 163.066 130C183.066 114.8 200.399 79.6667 206.566 64C212.166 69.2 222.899 108.5 227.566 127.5C235.166 130.7 255.399 128.833 264.566 127.5C253.066 153.5 256.566 166.5 262.066 174C266.466 180 280.566 181.833 287.066 182C282.066 210.167 267.366 269.9 248.566 283.5C229.766 297.1 198.399 297.833 185.066 296.5Z" stroke="black" stroke-width="20" stroke-linejoin="round"/>
<path d="M174.066 239C153.266 241 146.399 273.5 145.566 289.5C199.966 305.5 236.899 289.167 248.566 279C238.566 270.6 216.066 252.167 206.066 244C204.066 241.5 194.866 237 174.066 239Z" stroke="black" stroke-width="20"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,8 @@
<svg width="361" height="360" viewBox="0 0 361 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="205" cy="204.5" r="126.5" fill="#9ABCFF"/>
<path d="M204.759 176.317C206.259 189.151 207.559 218.817 200.759 234.817C200.425 235.984 198.659 238.517 194.259 239.317C188.759 240.317 185.259 196.317 189.759 180.317C193.359 167.517 201.259 172.317 204.759 176.317Z" fill="white" stroke="white" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M190.259 136.817C187.059 146.417 195.259 149.484 199.759 149.817L204.759 136.817C201.259 132.817 193.459 127.217 190.259 136.817Z" fill="white" stroke="white" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M188.559 167.801C190.059 180.634 191.359 210.301 184.559 226.301C184.226 227.467 182.459 230.001 178.059 230.801C172.559 231.801 169.059 187.801 173.559 171.801C177.159 159.001 185.059 163.801 188.559 167.801Z" fill="black" stroke="black" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M174.059 128.301C170.859 137.901 179.059 140.967 183.559 141.301L188.559 128.301C185.059 124.301 177.259 118.701 174.059 128.301Z" stroke="black" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
<circle cx="183" cy="180.5" r="132.5" stroke="black" stroke-width="20"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,4 @@
<svg width="361" height="360" viewBox="0 0 361 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M95.617 308.52C64.3265 279.122 65.1058 232.459 69.4068 212.803C78.2653 209.181 100.111 200.384 116.627 194.168C133.143 187.952 146.379 211.438 150.932 223.959C169.606 189.839 209.851 121.888 221.442 123.04C233.033 124.193 268.479 193.772 284.754 228.417C292.213 218.692 311.386 208.3 320.041 204.319C327.771 207.9 336.263 227.682 339.542 237.126C341.593 258.772 321.415 298.597 311.07 315.803C232.582 324.02 134.731 314.371 95.617 308.52Z" fill="#FFE279"/>
<path d="M73.617 278.52C42.3265 249.122 43.1058 202.459 47.4068 182.803C56.2653 179.181 78.1114 170.384 94.6273 164.168C111.143 157.952 124.379 181.438 128.932 193.959C147.606 159.839 187.851 91.8877 199.442 93.0404C211.033 94.1931 246.479 163.772 262.754 198.417C270.213 188.692 289.386 178.3 298.041 174.319C305.771 177.9 314.263 197.682 317.542 207.126C319.593 228.772 299.415 268.597 289.07 285.803C210.582 294.02 112.731 284.371 73.617 278.52Z" stroke="black" stroke-width="20" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,9 @@
<svg width="361" height="360" viewBox="0 0 361 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="204.75" cy="204.5" r="126.5" fill="#FFD99A"/>
<circle cx="182.75" cy="180.5" r="132.5" stroke="black" stroke-width="20"/>
<path d="M117.632 122.84C128.432 114.84 133.465 121.173 134.632 125.34C138.298 121.173 147.732 114.84 156.132 122.84C164.532 130.84 145.298 150.84 134.632 159.84C124.465 150.84 106.832 130.84 117.632 122.84Z" fill="#FFABAB"/>
<path d="M214.632 127.84C225.432 119.84 230.465 126.173 231.632 130.34C235.298 126.173 244.732 119.84 253.132 127.84C261.532 135.84 242.298 155.84 231.632 164.84C221.465 155.84 203.832 135.84 214.632 127.84Z" fill="#FFABAB"/>
<path d="M117.632 120.84C128.432 112.84 133.465 119.173 134.632 123.34C138.298 119.173 147.732 112.84 156.132 120.84C164.532 128.84 145.298 148.84 134.632 157.84C124.465 148.84 106.832 128.84 117.632 120.84Z" stroke="black" stroke-width="15" stroke-linejoin="round"/>
<path d="M212.013 127.68C222.813 119.68 227.847 126.013 229.013 130.18C232.68 126.013 242.113 119.68 250.513 127.68C258.913 135.68 239.68 155.68 229.013 164.68C218.847 155.68 201.213 135.68 212.013 127.68Z" stroke="black" stroke-width="15" stroke-linejoin="round"/>
<path d="M83.25 190.5C86.25 221.5 109.35 277.2 175.75 280C242.15 282.8 275.417 230 288.25 201.5" stroke="black" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,4 @@
<svg width="360" height="360" viewBox="0 0 360 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M119.885 83.3776C170.685 71.3776 198.385 107.711 205.885 127.378C216.685 110.978 231.718 104.878 237.885 103.878C297.885 85.0777 331.218 122.711 340.385 143.878C359.885 225.878 293.885 265.378 267.885 285.378C241.885 305.378 148.885 322.378 137.385 311.878C128.185 303.478 94.5515 250.878 79.3849 206.378C71.3849 183.211 69.0849 95.3776 119.885 83.3776Z" fill="#FFABAB"/>
<path d="M102 59.5C152.8 47.5 180.5 83.8333 188 103.5C198.8 87.0999 213.833 81 220 80C280 61.2 313.333 98.8333 322.5 120C342 202 276 241.5 250 261.5C224 281.5 131 298.5 119.5 288C110.3 279.6 76.6667 227 61.5 182.5C53.5 159.333 51.2 71.5 102 59.5Z" stroke="black" stroke-width="20" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 795 B

View File

@ -0,0 +1,8 @@
<svg width="361" height="360" viewBox="0 0 361 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M66.4639 298.5C52.0639 255.3 109.464 103 193.464 95C266.464 113.5 345.964 269.5 328.964 298.5C311.964 327.5 164.864 363.7 66.4639 298.5Z" fill="#FFE179"/>
<path d="M48.4639 269.5C34.0639 226.3 91.4639 74 175.464 66C248.464 84.5 327.964 240.5 310.964 269.5C293.964 298.5 146.864 334.7 48.4639 269.5Z" stroke="black" stroke-width="20" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M180.649 222.534C179.149 209.7 177.849 180.034 184.649 164.034C184.983 162.867 186.749 160.334 191.149 159.534C196.649 158.534 200.149 202.534 195.649 218.534C192.049 231.334 184.149 226.534 180.649 222.534Z" fill="white" stroke="white" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M195.149 262.034C198.349 252.434 190.149 249.367 185.649 249.034L180.649 262.034C184.149 266.034 191.949 271.634 195.149 262.034Z" fill="white" stroke="white" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M164.45 214.017C162.95 201.183 161.65 171.517 168.45 155.517C168.783 154.35 170.55 151.817 174.95 151.017C180.45 150.017 183.95 194.017 179.45 210.017C175.85 222.817 167.95 218.017 164.45 214.017Z" fill="black" stroke="black" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M178.95 253.517C182.15 243.917 173.95 240.85 169.45 240.517L164.45 253.517C167.95 257.517 175.75 263.117 178.95 253.517Z" stroke="black" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,8 @@
<svg width="360" height="360" viewBox="0 0 360 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M117.077 329C119.477 309.8 161.077 226.333 181.577 187C189.077 187 203.677 188.8 202.077 196C200.077 205 114.077 353 117.077 329Z" fill="#D4D4D4"/>
<path d="M279.077 76.2464C269.477 51.8464 242.91 54.5797 228.577 58.7464C217.077 81.7464 194.777 129.446 197.577 136.246C200.377 143.046 228.41 150.746 242.077 153.746C258.077 136.246 272.91 96.2464 279.077 76.2464Z" fill="#FFAEAE"/>
<path d="M125 159C144.2 142.6 181 138.167 197 138L243.5 152.5C257.561 156.885 258.026 195.66 256.5 214.5C202.9 204.1 146.5 173.167 125 159Z" fill="#FF9595"/>
<path d="M264.077 57.2464C254.477 32.8464 227.91 35.5797 213.577 39.7464C202.077 62.7464 179.777 110.446 182.577 117.246C185.377 124.046 213.41 131.746 227.077 134.746C243.077 117.246 257.91 77.2464 264.077 57.2464Z" stroke="black" stroke-width="20" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M110.077 139.746C129.277 123.346 166.077 118.913 182.077 118.746L228.577 133.246C242.638 137.631 243.102 176.407 241.577 195.246C187.977 184.846 131.577 153.913 110.077 139.746Z" stroke="black" stroke-width="20" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M95.0767 312.746C97.4767 293.546 139.077 210.08 159.577 170.746C167.077 170.746 181.677 172.546 180.077 179.746C178.077 188.746 92.0767 336.746 95.0767 312.746Z" stroke="black" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,6 @@
<svg width="361" height="360" viewBox="0 0 361 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M193.219 180.188V256.688L224.219 253.188C222.619 251.588 221.886 218.855 221.719 202.688C231.319 198.288 247.052 194.521 253.719 193.188C283.319 148.388 284.052 116.188 280.719 105.688C275.386 87.1882 250.919 53.8882 195.719 68.6882C140.519 83.4882 137.053 129.521 142.219 150.688H183.719C176.119 135.888 189.552 119.521 197.219 113.188C208.219 106.521 230.819 100.588 233.219 130.188C235.619 159.788 207.552 175.855 193.219 180.188Z" fill="#FFE179"/>
<path d="M214.522 312.722C212.522 291.922 202.355 289.055 197.522 290.222C194.522 290.222 187.222 293.122 182.022 304.722C176.822 316.322 186.188 323.555 191.522 325.722C200.022 330.055 216.522 333.522 214.522 312.722Z" fill="#FFE179"/>
<path d="M162.219 161.188V237.688L193.219 234.188C191.619 232.588 190.886 199.855 190.719 183.688C200.319 179.288 216.052 175.521 222.719 174.188C252.319 129.388 253.052 97.1882 249.719 86.6882C244.386 68.1882 219.919 34.8882 164.719 49.6882C109.519 64.4882 106.053 110.521 111.219 131.688H152.719C145.119 116.888 158.552 100.521 166.219 94.1882C177.219 87.5215 199.819 81.5882 202.219 111.188C204.619 140.788 176.552 156.855 162.219 161.188Z" stroke="black" stroke-width="20" stroke-linejoin="round"/>
<path d="M197.741 297.41C195.741 276.61 185.574 273.743 180.741 274.91C177.741 274.91 170.441 277.81 165.241 289.41C160.041 301.01 169.408 308.243 174.741 310.41C183.241 314.743 199.741 318.21 197.741 297.41Z" stroke="black" stroke-width="20" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,9 @@
<svg width="360" height="360" viewBox="0 0 360 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="198.5" cy="200.5" r="126.5" fill="#FFD99A"/>
<path d="M233.401 173.71C230.901 153.71 240.401 131.377 252.901 114.71C252.901 114.71 269.901 92.0102 277.901 89.2102C285.901 86.4102 295.401 112.377 296.401 119.71C301.568 139.877 304.401 171.91 296.401 186.71C288.401 201.51 271.068 200.544 263.401 198.21C254.235 196.71 235.401 189.71 233.401 173.71Z" fill="#79C7FF"/>
<circle cx="182.5" cy="180.5" r="132.5" stroke="black" stroke-width="20"/>
<path d="M224.5 152.5C222 132.5 231.5 110.167 244 93.5C244 93.5 261 70.8 269 68C277 65.2 286.5 91.1667 287.5 98.5C292.667 118.667 295.5 150.7 287.5 165.5C279.5 180.3 262.167 179.333 254.5 177C245.333 175.5 226.5 168.5 224.5 152.5Z" stroke="black" stroke-width="20" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M96.5 151.5C102.667 145.333 118.6 135.7 133 146.5" stroke="black" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M162 149C168.333 142.5 184.5 132.7 198.5 145.5" stroke="black" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M116.5 247C120.667 254 137.8 266.4 173 260" stroke="black" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,8 @@
<svg width="361" height="360" viewBox="0 0 361 360" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M252.5 105.582C201.7 100.382 179.667 101.249 146.5 105.582C126.5 126.582 85.9 174.382 83.5 197.582C87.8333 225.082 106.5 284.682 126.5 297.082C157.833 301.749 225.4 310.182 245 306.582C266.667 285.916 311.7 239.882 318.5 221.082C313.7 168.282 272.5 122.082 252.5 105.582Z" fill="#FF4B4B"/>
<path d="M176.7 205.017C175.2 192.183 173.9 162.517 180.7 146.517C181.033 145.35 182.8 142.817 187.2 142.017C192.7 141.017 196.2 185.017 191.7 201.017C188.1 213.817 180.2 209.017 176.7 205.017Z" fill="white" stroke="white" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M191.2 244.517C194.4 234.917 186.2 231.85 181.7 231.517L176.7 244.517C180.2 248.517 188 254.117 191.2 244.517Z" fill="white" stroke="white" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M232.5 83.5824C181.7 78.3824 159.667 79.249 126.5 83.5824C106.5 104.582 65.9 152.382 63.5 175.582C67.8333 203.082 86.5 262.682 106.5 275.082C137.833 279.749 205.4 288.182 225 284.582C246.667 263.916 291.7 217.882 298.5 199.082C293.7 146.282 252.5 100.082 232.5 83.5824Z" stroke="black" stroke-width="20" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M160.5 196.5C159 183.667 157.7 154 164.5 138C164.833 136.833 166.6 134.3 171 133.5C176.5 132.5 180 176.5 175.5 192.5C171.9 205.3 164 200.5 160.5 196.5Z" fill="black" stroke="black" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M175 236C178.2 226.4 170 223.333 165.5 223L160.5 236C164 240 171.8 245.6 175 236Z" stroke="black" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,24 @@
<svg width="405" height="240" viewBox="0 0 405 240" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M197.311 54.1072C194.426 58.6753 192.006 63.5659 189.501 68.3459C182.817 81.1013 176.289 93.9287 169.424 106.59C164.329 115.987 158.618 125.091 154.222 134.85C149.571 145.178 146.32 155.912 142.872 166.666C141.928 169.61 140.533 171.872 138.959 174.507C136.527 178.579 134.36 182.779 132.189 186.991C129.97 191.296 127.576 195.674 126.04 200.283" stroke="#C8C8C8" stroke-width="15" stroke-linecap="round"/>
<path d="M126.04 200.562C138.42 200.046 150.792 199.224 163.182 198.947C171.471 198.762 179.769 199.071 188.057 198.823C193.006 198.675 197.905 198.12 202.839 197.829C208.393 197.503 213.985 197.893 219.546 197.752C226.112 197.586 232.703 197.08 239.266 196.774C244.336 196.537 249.473 196.362 254.53 195.935C260.348 195.444 266.185 194.359 271.952 193.466C273.601 193.211 275.3 192.457 276.967 192.457" stroke="#C8C8C8" stroke-width="15" stroke-linecap="round"/>
<path d="M196.473 51.5918C196.805 52.5897 197.376 53.4565 197.948 54.3402C200.8 58.7485 203.987 62.9448 207.124 67.1503C216.887 80.2361 226.727 93.2651 236.502 106.342C246.53 119.756 256.39 133.294 266.408 146.713C268.713 149.8 270.989 152.946 273.458 155.905C276.857 159.98 280.972 163.916 283.395 168.7C284.689 171.254 285.186 174.08 285.849 176.836C286.386 179.073 286.709 181.495 286.749 183.793C286.779 185.501 285.79 186.35 285.414 187.923C284.63 191.202 284.297 192.987 281.159 194.413" stroke="#C8C8C8" stroke-width="15" stroke-linecap="round"/>
<path d="M176.069 92.957C184.313 95.2926 191.968 99.6975 199.671 103.36C205.699 106.226 211.807 108.896 217.869 111.683C223.551 114.295 228.902 117.471 234.36 120.503C237.738 122.379 241.262 124.163 244.825 125.658C248.177 127.064 251.975 128.784 254.887 130.968" stroke="#C8C8C8" stroke-width="15" stroke-linecap="round"/>
<path d="M172.995 97.9879C172.932 109.643 171.186 121.126 168.927 132.552C166.192 146.388 163.004 160.032 161.055 174.026C159.817 182.908 159.3 191.88 159.3 200.842" stroke="#C8C8C8" stroke-width="15" stroke-linecap="round"/>
<path d="M159.579 201.121C170.914 197.366 182.247 193.175 192.715 187.364C201.586 182.439 209.755 176.167 217.093 169.181C222.762 163.785 228.372 158.776 234.779 154.29C239.895 150.709 245.054 147.175 250.136 143.545C251.462 142.598 252.925 142.135 254.359 141.418C255.869 140.663 257.19 139.538 258.52 138.515" stroke="#C8C8C8" stroke-width="15" stroke-linecap="round"/>
<path d="M170.759 131.807C179.791 125.125 189.13 118.145 199.656 113.935C202.767 112.69 205.546 110.92 208.491 109.447" stroke="#C8C8C8" stroke-width="15" stroke-linecap="round"/>
<path d="M209.05 109.447C209.255 117.44 210.203 125.347 210.168 133.359C210.139 139.832 209.837 146.293 209.888 152.769C209.926 157.467 211.109 162.093 211.845 166.712C212.095 168.282 212.683 169.896 212.683 171.495" stroke="#C8C8C8" stroke-width="15" stroke-linecap="round"/>
<path d="M212.683 171.495C204.185 166.734 195.833 161.73 187.358 156.93C183.371 154.672 179.018 153.035 175.107 150.688C172.976 149.409 170.999 147.718 168.803 146.62" stroke="#C8C8C8" stroke-width="15" stroke-linecap="round"/>
<path d="M184.734 127.614C184.734 135.533 185.35 143.421 185.293 151.34C185.29 151.772 185.205 157.971 185.262 157.924C188.211 155.441 190.693 152.353 193.678 149.865C195.743 148.144 198.146 146.707 200.432 145.3C201.901 144.396 203.569 143.834 205.044 142.94C206.418 142.107 209.368 140.635 209.888 139.074" stroke="#C8C8C8" stroke-width="15" stroke-linecap="round"/>
<path d="M209.888 138.794C205.93 136.244 201.752 134.034 197.373 132.304C195.095 131.403 192.671 130.778 190.541 129.571C188.808 128.589 186.627 127.686 184.734 127.055" stroke="#C8C8C8" stroke-width="15" stroke-linecap="round"/>
<path d="M188.271 41.5154C185.386 46.0835 182.965 50.9741 180.461 55.7541C173.777 68.5095 167.249 81.3369 160.384 93.9983C155.289 103.395 149.578 112.499 145.182 122.258C140.531 132.586 137.28 143.32 133.832 154.074C132.888 157.018 131.493 159.28 129.919 161.915C127.487 165.987 125.32 170.187 123.149 174.399C120.93 178.704 118.536 183.082 117 187.691" stroke="black" stroke-width="15" stroke-linecap="round"/>
<path d="M117 187.97C129.38 187.455 141.752 186.632 154.142 186.356C162.431 186.171 170.729 186.479 179.017 186.231C183.966 186.083 188.865 185.528 193.799 185.238C199.353 184.911 204.945 185.301 210.506 185.16C217.072 184.994 223.663 184.488 230.226 184.182C235.296 183.945 240.433 183.77 245.49 183.343C251.307 182.853 257.145 181.767 262.912 180.874C264.561 180.619 266.26 179.865 267.927 179.865" stroke="black" stroke-width="15" stroke-linecap="round"/>
<path d="M187.432 39C187.765 39.9979 188.336 40.8647 188.908 41.7484C191.76 46.1567 194.947 50.353 198.084 54.5585C207.847 67.6443 217.687 80.6733 227.462 93.7498C237.49 107.164 247.35 120.702 257.368 134.121C259.673 137.208 261.949 140.354 264.418 143.314C267.817 147.388 271.932 151.325 274.355 156.108C275.649 158.662 276.146 161.489 276.809 164.245C277.346 166.482 277.669 168.903 277.709 171.201C277.739 172.909 276.75 173.758 276.374 175.331C275.59 178.61 275.257 180.395 272.119 181.822" stroke="black" stroke-width="15" stroke-linecap="round"/>
<path d="M167.029 80.3652C175.273 82.7008 182.928 87.1057 190.631 90.7686C196.659 93.6347 202.767 96.3044 208.829 99.0913C214.511 101.703 219.862 104.879 225.32 107.911C228.698 109.788 232.222 111.572 235.785 113.066C239.137 114.472 242.935 116.193 245.847 118.376" stroke="black" stroke-width="15" stroke-linecap="round"/>
<path d="M163.955 85.3961C163.892 97.051 162.146 108.534 159.887 119.96C157.152 133.797 153.964 147.441 152.014 161.434C150.777 170.316 150.26 179.288 150.26 188.25" stroke="black" stroke-width="15" stroke-linecap="round"/>
<path d="M150.539 188.529C161.874 184.774 173.207 180.584 183.675 174.772C192.546 169.847 200.715 163.575 208.053 156.589C213.722 151.193 219.332 146.184 225.739 141.699C230.855 138.117 236.014 134.583 241.095 130.954C242.422 130.006 243.885 129.543 245.319 128.826C246.829 128.072 248.15 126.946 249.48 125.923" stroke="black" stroke-width="15" stroke-linecap="round"/>
<path d="M161.719 119.215C170.751 112.533 180.09 105.553 190.616 101.343C193.727 100.098 196.506 98.3278 199.451 96.8553" stroke="black" stroke-width="15" stroke-linecap="round"/>
<path d="M200.01 96.8553C200.215 104.848 201.163 112.755 201.128 120.768C201.099 127.24 200.797 133.701 200.848 140.177C200.886 144.875 202.069 149.501 202.805 154.121C203.055 155.69 203.643 157.304 203.643 158.903" stroke="black" stroke-width="15" stroke-linecap="round"/>
<path d="M203.643 158.903C195.145 154.142 186.793 149.138 178.318 144.338C174.331 142.08 169.978 140.443 166.067 138.096C163.936 136.818 161.959 135.126 159.763 134.028" stroke="black" stroke-width="15" stroke-linecap="round"/>
<path d="M175.694 115.022C175.694 122.941 176.31 130.83 176.253 138.748C176.25 139.18 176.165 145.38 176.222 145.332C179.17 142.849 181.653 139.761 184.638 137.273C186.703 135.553 189.106 134.115 191.392 132.708C192.861 131.804 194.529 131.242 196.004 130.348C197.378 129.515 200.328 128.043 200.848 126.482" stroke="black" stroke-width="15" stroke-linecap="round"/>
<path d="M200.848 126.202C196.89 123.653 192.712 121.442 188.333 119.712C186.055 118.811 183.631 118.186 181.501 116.979C179.768 115.997 177.587 115.094 175.694 114.464" stroke="black" stroke-width="15" stroke-linecap="round"/>
</svg>

After

Width:  |  Height:  |  Size: 7.2 KiB

View File

@ -0,0 +1,6 @@
<svg width="405" height="240" viewBox="0 0 405 240" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M195.573 81C195.684 83.1073 195.667 85.3779 195.47 87.7721C195.921 109.965 204.988 135.687 255.497 126.507C256.644 126.268 257.811 126.042 259 125.827C257.811 126.072 256.643 126.298 255.497 126.507C204.559 137.089 194.389 170.768 195.066 201.163C195.573 205.154 195.874 209.427 195.944 214C195.486 209.841 195.164 205.536 195.066 201.163C189.864 160.185 162.984 148.941 142.707 147.651C141.52 147.576 141.156 145.286 142.27 144.871C182.864 129.778 194.023 105.42 195.47 87.7721C195.423 85.462 195.47 83.1902 195.573 81Z" fill="#9ABCFF"/>
<path d="M261.173 31C261.215 31.8107 261.233 32.7155 261.192 33.688C261.652 40.9546 265.716 49.2058 281.901 46.2165C282.261 46.1404 282.628 46.0682 283 46C282.628 46.0778 282.261 46.15 281.901 46.2165C265.117 49.7577 260.899 61.687 260.942 71.9539C261.072 73.2154 261.151 74.5624 261.173 76C261.032 74.6982 260.948 73.3412 260.942 71.9539C259.313 56.1952 249.632 53.7587 243 54.25C258.098 49.4859 260.921 40.1094 261.192 33.688C261.133 32.768 261.133 31.8637 261.173 31Z" fill="#9ABCFF"/>
<path d="M184.669 61C185.656 79.6182 174.304 120.997 121 137.569C142.963 135.966 187.112 147.408 188 206C184.298 172.339 193.552 127.952 255 116.855C196.07 128.987 183.558 84.6735 184.669 61Z" stroke="black" stroke-width="15" stroke-linejoin="round"/>
<path d="M257.906 26C258.23 32.0349 254.503 45.4474 237 50.8189C244.212 50.2993 258.708 54.0082 259 73C257.785 62.0893 260.823 47.7015 281 44.1046C261.65 48.0372 257.541 33.6735 257.906 26Z" stroke="black" stroke-width="10" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,12 @@
<svg width="405" height="240" viewBox="0 0 405 240" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M162.444 63.6417C160.087 62.8537 149.459 87.6098 144.44 100.086C142.148 101.29 137.172 104.355 135.601 106.981C133.637 110.265 132 131.278 132 135.874C132 140.471 136.91 167.394 139.529 171.991C142.148 176.587 153.606 183.811 164.409 188.079C173.051 191.493 182.413 193.004 186.014 193.332H247.231C247.558 194.755 251.748 194.842 265.89 183.811C280.032 172.779 282.477 153.823 281.931 145.724C282.04 136.969 280.621 116.306 274.074 103.698C267.527 91.0901 254.105 91.2214 248.213 92.863C243.761 79.4672 238.283 66.7061 236.1 62C230.077 62.5253 220.715 82.7943 216.786 92.863C209.715 90.2364 186.124 91.7686 175.212 92.863C171.938 83.4509 164.801 64.4297 162.444 63.6417Z" fill="#FFE179"/>
<path d="M207 104V114" stroke="black" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M166 106L170 116" stroke="black" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M149.444 47.6417C147.087 46.8537 136.459 71.6098 131.44 84.0863C129.148 85.2902 124.172 88.3546 122.601 90.9813C120.637 94.2646 119 115.278 119 119.874C119 124.471 123.91 151.394 126.529 155.991C129.148 160.587 140.606 167.811 151.409 172.079C160.051 175.493 169.413 177.004 173.014 177.332H234.231C234.558 178.755 238.748 178.842 252.89 167.811C267.032 156.779 269.477 137.823 268.931 129.724C269.04 120.969 267.621 100.306 261.074 87.6979C254.527 75.0901 241.105 75.2214 235.213 76.863C230.761 63.4672 225.283 50.7061 223.1 46C217.077 46.5253 207.715 66.7943 203.786 76.863C196.715 74.2364 173.124 75.7686 162.212 76.863C158.938 67.4509 151.801 48.4297 149.444 47.6417Z" stroke="black" stroke-width="15" stroke-linejoin="round"/>
<path d="M150 78C165.21 75.5807 205.02 75.0969 215 78" stroke="black" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M175.004 135.998C174.896 140.885 176.951 150.659 186.034 150.659C195.118 150.659 197.605 142.218 197.714 137.997C198.903 142.884 202.969 152.725 209.717 152.992C218.152 153.325 224.312 143.329 223.988 137.997C223.88 135.887 223.469 131.333 222.69 130" stroke="black" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M244 145C259.027 148.16 289.864 155.985 293 162" stroke="black" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M253 112C264.527 113.607 289.865 117.657 299 121" stroke="black" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M114 168C122.193 162.086 141.464 149.206 153 145" stroke="black" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M105 132C114.845 129.971 136.028 125.73 142 125" stroke="black" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -0,0 +1,4 @@
<svg width="405" height="240" viewBox="0 0 405 240" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M217.255 106.156L252.255 41L279 56.5447L230.132 148.821L271.406 191.486L244.66 211L199.755 172.634L151.217 209.677L139 178.588L181.925 136.914L146.264 83.0039L169.708 54.8911L217.255 106.156Z" fill="#FF4B4B"/>
<path d="M204.255 94.1556L239.255 29L266 44.5447L217.132 136.821L258.406 179.486L231.66 199L186.755 160.634L138.217 197.677L126 166.588L168.925 124.914L133.264 71.0039L156.708 42.8911L204.255 94.1556Z" stroke="black" stroke-width="15" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 587 B

View File

@ -0,0 +1,8 @@
<svg width="405" height="240" viewBox="0 0 405 240" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M171.153 166.543C136.332 146.12 153.585 71 171.153 71C182.978 71 197.772 78.1784 194.552 117.002C190.694 163.51 178.366 168.902 171.153 166.543Z" fill="#D9D9D9"/>
<path d="M237.611 175.543C201.998 155.12 219.643 80 237.611 80C249.705 80 264.835 87.1784 261.542 126.002C257.596 172.51 244.988 177.902 237.611 175.543Z" fill="#D9D9D9"/>
<path d="M162.611 159.543C126.998 139.12 144.643 64 162.611 64C174.705 64 189.835 71.1784 186.542 110.002C182.596 156.51 169.988 161.902 162.611 159.543Z" stroke="black" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M227.611 166.543C191.998 146.12 209.643 71 227.611 71C239.705 71 254.835 78.1784 251.542 117.002C247.596 163.51 234.988 168.902 227.611 166.543Z" stroke="black" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M163.207 108.106C158.072 97.0477 149.428 103.498 145.749 108.106C142.257 118.549 151.825 123.72 157.045 125C161.238 123.976 168.341 119.164 163.207 108.106Z" fill="white" stroke="black" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M227.296 107.106C222.418 96.0477 214.207 102.498 210.711 107.106C207.394 117.549 216.483 122.72 221.443 124C225.426 122.976 232.174 118.164 227.296 107.106Z" fill="white" stroke="black" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,6 @@
<svg width="405" height="240" viewBox="0 0 405 240" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M210.956 196.712C147.912 192.261 139.156 144.996 142.659 121.92C154.526 118.706 167.588 127.38 172.635 132.119C170.41 104.674 175.829 82.3604 178.816 74.634C184.997 75.623 193.753 87.8204 197.359 93.7956C209.72 84.4002 220.433 62.6838 224.245 53C227.706 56.2142 234.34 80.5061 237.224 92.2503C241.922 94.2282 254.428 93.0744 260.093 92.2503C252.985 108.321 255.149 116.357 258.548 120.993C261.268 124.701 269.983 125.834 274 125.938C270.91 143.348 261.824 180.27 250.204 188.676C238.584 197.082 219.197 197.536 210.956 196.712Z" fill="#FFC691"/>
<path d="M204.432 161.302C191.71 162.515 187.51 182.227 187 191.931C220.274 201.635 242.864 191.728 250 185.562C243.883 180.468 230.121 169.288 224.005 164.335C222.782 162.819 217.154 160.089 204.432 161.302Z" fill="#FCBD5F"/>
<path d="M199.956 186.712C136.912 182.261 128.156 134.996 131.659 111.92C143.526 108.706 156.588 117.38 161.635 122.119C159.41 94.6744 164.829 72.3604 167.816 64.634C173.997 65.623 182.753 77.8204 186.359 83.7956C198.72 74.4002 209.433 52.6838 213.245 43C216.706 46.2142 223.34 70.5061 226.224 82.2503C230.922 84.2282 243.428 83.0744 249.093 82.2503C241.985 98.3212 244.149 106.357 247.548 110.993C250.268 114.701 258.983 115.834 263 115.938C259.91 133.348 250.824 170.27 239.204 178.676C227.584 187.082 208.197 187.536 199.956 186.712Z" stroke="black" stroke-width="15" stroke-linejoin="round"/>
<path d="M193.709 151.311C180.784 152.559 176.518 172.833 176 182.814C209.802 192.796 232.751 182.606 240 176.264C233.786 171.024 219.806 159.525 213.592 154.43C212.35 152.87 206.633 150.063 193.709 151.311Z" stroke="black" stroke-width="15"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,8 @@
<svg width="405" height="240" viewBox="0 0 405 240" fill="none" xmlns="http://www.w3.org/2000/svg">
<ellipse cx="214" cy="132.5" rx="77" ry="77.5" fill="#9ABCFF"/>
<path d="M213.692 115.369C214.607 123.197 215.4 141.292 211.252 151.052C211.049 151.763 209.971 153.309 207.288 153.797C203.933 154.407 201.798 127.568 204.543 117.809C206.739 110.001 211.557 112.929 213.692 115.369Z" fill="white" stroke="white" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M204.848 91.2752C202.896 97.1309 207.897 99.0015 210.642 99.2048L213.692 91.2752C211.557 88.8354 206.8 85.4195 204.848 91.2752Z" fill="white" stroke="white" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M203.811 110.174C204.726 118.002 205.519 136.097 201.371 145.857C201.168 146.569 200.09 148.114 197.406 148.602C194.052 149.212 191.917 122.373 194.661 112.614C196.857 104.806 201.676 107.734 203.811 110.174Z" fill="black" stroke="black" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M194.966 86.0803C193.015 91.9359 198.016 93.8065 200.761 94.0098L203.811 86.0803C201.676 83.6404 196.918 80.2246 194.966 86.0803Z" stroke="black" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<circle cx="200" cy="118" r="79.5" stroke="black" stroke-width="15"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,4 @@
<svg width="405" height="240" viewBox="0 0 405 240" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M134.564 191.179C112.504 170.453 113.053 137.554 116.085 123.695C122.331 121.142 137.733 114.94 149.377 110.557C161.022 106.175 170.353 122.733 173.563 131.561C186.729 107.505 215.103 59.597 223.275 60.4097C231.447 61.2224 256.439 110.278 267.913 134.704C273.171 127.847 286.689 120.521 292.791 117.714C298.241 120.238 304.228 134.186 306.54 140.844C307.986 156.105 293.76 184.183 286.467 196.314C231.13 202.108 162.142 195.305 134.564 191.179Z" fill="#FFE279"/>
<path d="M119.054 170.028C96.9928 149.302 97.5422 116.403 100.575 102.544C106.82 99.9911 122.222 93.7889 133.867 89.4062C145.511 85.0235 154.842 101.582 158.053 110.41C171.218 86.3541 199.592 38.446 207.764 39.2587C215.937 40.0714 240.928 89.1269 252.402 113.553C257.66 106.696 271.179 99.3696 277.28 96.5632C282.731 99.0875 288.717 113.035 291.029 119.693C292.475 134.954 278.25 163.032 270.956 175.163C215.619 180.957 146.631 174.154 119.054 170.028Z" stroke="black" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,9 @@
<svg width="405" height="240" viewBox="0 0 405 240" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="214" cy="133" r="80" fill="#FFD99A"/>
<circle cx="200" cy="118" r="82.5" stroke="black" stroke-width="15"/>
<path d="M159.155 81.4446C166.035 76.3516 169.242 80.3836 169.986 83.0362C172.322 80.3836 178.332 76.3516 183.684 81.4446C189.035 86.5377 176.782 99.2703 169.986 105C163.508 99.2703 152.274 86.5377 159.155 81.4446Z" fill="#FFABAB"/>
<path d="M220.155 84.4446C227.035 79.3516 230.242 83.3836 230.986 86.0362C233.322 83.3836 239.332 79.3516 244.684 84.4446C250.035 89.5377 237.782 102.27 230.986 108C224.508 102.27 213.274 89.5377 220.155 84.4446Z" fill="#FFABAB"/>
<path d="M159.155 80.4446C166.035 75.3516 169.242 79.3836 169.986 82.0362C172.322 79.3836 178.332 75.3516 183.684 80.4446C189.035 85.5377 176.782 98.2703 169.986 104C163.508 98.2703 152.274 85.5377 159.155 80.4446Z" stroke="black" stroke-width="10" stroke-linejoin="round"/>
<path d="M219.078 84.4446C225.713 79.3516 228.805 83.3836 229.522 86.0362C231.774 83.3836 237.57 79.3516 242.731 84.4446C247.891 89.5377 236.075 102.27 229.522 108C223.276 102.27 212.443 89.5377 219.078 84.4446Z" stroke="black" stroke-width="10" stroke-linejoin="round"/>
<path d="M137 124C138.902 143.719 153.551 179.151 195.659 180.932C237.766 182.713 258.862 149.126 267 130.997" stroke="black" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,4 @@
<svg width="405" height="240" viewBox="0 0 405 240" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M158.367 64.29C185.946 57.7794 200.984 77.4919 205.055 88.162C210.918 79.2643 219.08 75.9547 222.427 75.4122C255 65.2123 273.096 85.6302 278.073 97.114C288.659 141.603 252.829 163.033 238.714 173.884C224.599 184.735 174.111 193.959 167.868 188.262C162.873 183.704 144.614 155.167 136.38 131.023C132.037 118.454 130.789 70.8005 158.367 64.29Z" fill="#FFABAB"/>
<path d="M148.367 51.29C175.946 44.7794 190.984 64.4919 195.055 75.162C200.918 66.2643 209.08 62.9547 212.427 62.4122C245 52.2123 263.096 72.6302 268.073 84.114C278.659 128.603 242.829 150.033 228.714 160.884C214.599 171.735 164.111 180.959 157.868 175.262C152.873 170.704 134.614 142.167 126.38 118.023C122.037 105.454 120.789 57.8005 148.367 51.29Z" stroke="black" stroke-width="15" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 887 B

View File

@ -0,0 +1,8 @@
<svg width="405" height="240" viewBox="0 0 405 240" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M127.351 179.772C118.562 153.497 153.599 60.8657 204.873 56C249.432 67.252 297.96 162.134 287.583 179.772C277.206 197.41 187.415 219.428 127.351 179.772Z" fill="#FFE179"/>
<path d="M116.351 161.772C107.562 135.497 142.599 42.8657 193.873 38C238.432 49.252 286.96 144.134 276.583 161.772C266.206 179.41 176.415 201.428 116.351 161.772Z" stroke="black" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M196.788 133.379C195.803 125.563 194.948 107.495 199.417 97.7508C199.636 97.0403 200.798 95.4974 203.689 95.0102C207.304 94.4012 209.604 121.198 206.647 130.943C204.281 138.738 199.089 135.815 196.788 133.379Z" fill="white" stroke="white" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M205.573 157.814C207.465 152.044 202.617 150.2 199.956 150L197 157.814C199.069 160.218 203.681 163.584 205.573 157.814Z" fill="white" stroke="white" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M187.723 128.379C186.819 120.563 186.036 102.495 190.133 92.7508C190.333 92.0403 191.398 90.4974 194.049 90.0102C197.362 89.4012 199.471 116.198 196.76 125.943C194.591 133.738 189.831 130.815 187.723 128.379Z" fill="black" stroke="black" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M196.525 152.524C198.627 146.229 193.241 144.219 190.285 144L187 152.524C189.299 155.147 194.423 158.819 196.525 152.524Z" stroke="black" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,8 @@
<svg width="405" height="240" viewBox="0 0 405 240" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M159.047 209.382C160.512 197.567 185.902 146.205 198.414 122C202.991 122 211.902 123.108 210.926 127.538C209.705 133.077 157.216 224.151 159.047 209.382Z" fill="#D4D4D4"/>
<path d="M259 53.4279C253.01 38.4504 236.435 40.1282 227.492 42.6858C220.317 56.804 206.403 86.0838 208.15 90.2579C209.897 94.432 227.388 99.1585 235.915 101C245.898 90.2579 255.152 65.7046 259 53.4279Z" fill="#FFAEAE"/>
<path d="M164 104.176C175.773 93.8863 198.339 91.1046 208.15 91L236.663 100.098C245.286 102.849 245.57 127.179 244.635 139C211.768 132.475 177.184 113.065 164 104.176Z" fill="#FF9595"/>
<path d="M249 41.4279C243.128 26.4504 226.877 28.1282 218.11 30.6858C211.075 44.804 197.435 74.0838 199.147 78.2579C200.86 82.432 218.008 87.1585 226.368 89C236.155 78.2579 245.228 53.7046 249 41.4279Z" stroke="black" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M154 92.1765C165.919 81.8863 188.763 79.1046 198.695 79L227.56 88.098C236.289 90.8492 236.577 115.179 235.63 127C202.357 120.475 167.346 101.065 154 92.1765Z" stroke="black" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M145.048 199.382C146.541 187.567 172.419 136.205 185.172 112C189.837 112 198.92 113.108 197.924 117.538C196.68 123.077 143.181 214.151 145.048 199.382Z" stroke="black" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,6 @@
<svg width="405" height="240" viewBox="0 0 405 240" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M200.673 116.495V158L217.534 156.101C216.663 155.233 216.265 137.474 216.174 128.702C221.395 126.315 229.952 124.272 233.578 123.548C249.677 99.2421 250.076 81.772 248.263 76.0753C245.363 66.0381 232.055 47.9713 202.033 56.001C172.01 64.0307 170.125 89.006 172.935 100.49H195.506C191.373 92.4602 198.679 83.5805 202.849 80.1444C208.832 76.5274 221.123 73.3083 222.429 89.3677C223.734 105.427 208.469 114.144 200.673 116.495Z" fill="#FFE179"/>
<path d="M211.912 188.232C210.859 177.035 205.507 175.491 202.962 176.119C201.382 176.119 197.539 177.681 194.801 183.925C192.063 190.17 196.995 194.064 199.803 195.23C204.278 197.563 212.965 199.429 211.912 188.232Z" fill="#FFE179"/>
<path d="M183.673 106.495V148L200.534 146.101C199.663 145.233 199.265 127.474 199.174 118.702C204.395 116.315 212.952 114.272 216.578 113.548C232.677 89.2421 233.076 71.772 231.263 66.0753C228.363 56.0381 215.055 37.9713 185.033 46.001C155.01 54.0307 153.125 79.006 155.935 90.4899H178.506C174.373 82.4602 181.679 73.5805 185.849 70.1444C191.832 66.5274 204.123 63.3083 205.429 79.3677C206.734 95.4271 191.469 104.144 183.673 106.495Z" stroke="black" stroke-width="15" stroke-linejoin="round"/>
<path d="M202.912 180.232C201.859 169.035 196.507 167.491 193.962 168.119C192.382 168.119 188.539 169.681 185.801 175.925C183.063 182.17 187.995 186.064 190.803 187.23C195.278 189.563 203.965 191.429 202.912 180.232Z" stroke="black" stroke-width="15" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,9 @@
<svg width="405" height="240" viewBox="0 0 405 240" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="212" cy="131" r="79" fill="#FFD99A"/>
<path d="M233.252 114.868C231.681 102.386 237.653 88.4475 245.512 78.0458C245.512 78.0458 256.2 63.8787 261.23 62.1312C266.259 60.3837 272.232 76.5896 272.861 81.1664C276.109 93.7524 277.89 113.745 272.861 122.981C267.831 132.218 256.934 131.615 252.113 130.159C246.35 129.222 234.51 124.854 233.252 114.868Z" fill="#79C7FF"/>
<circle cx="202" cy="119" r="81.5" stroke="black" stroke-width="15"/>
<path d="M228.247 100.868C226.711 88.3859 232.545 74.4475 240.221 64.0458C240.221 64.0458 250.661 49.8787 255.573 48.1312C260.486 46.3837 266.32 62.5896 266.934 67.1664C270.106 79.7524 271.846 99.7446 266.934 108.981C262.021 118.218 251.377 117.615 246.669 116.159C241.04 115.222 229.475 110.854 228.247 100.868Z" stroke="black" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M149 101C152.717 97.2534 162.321 91.4007 171 97.9623" stroke="black" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M189 99C192.991 95.6654 203.178 90.6378 212 97.2044" stroke="black" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M161 160C163.581 164.737 174.195 173.127 196 168.796" stroke="black" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,8 @@
<svg width="405" height="240" viewBox="0 0 405 240" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M245.66 57.5283C209.991 53.8583 194.521 54.47 171.234 57.5283C157.191 72.3492 128.685 106.084 127 122.458C130.043 141.866 143.149 183.93 157.191 192.681C179.191 195.975 226.632 201.926 240.394 199.386C255.606 184.8 287.226 152.312 292 139.043C288.63 101.779 259.702 69.1733 245.66 57.5283Z" fill="#FF4B4B"/>
<path d="M191.854 127.995C190.786 119.036 189.861 98.3239 194.702 87.1534C194.939 86.3389 196.197 84.5702 199.33 84.0117C203.246 83.3136 205.738 114.032 202.534 125.203C199.971 134.139 194.346 130.788 191.854 127.995Z" fill="white" stroke="white" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M202.478 155.524C204.79 149.229 198.865 147.219 195.613 147L192 155.524C194.529 158.147 200.165 161.819 202.478 155.524Z" fill="white" stroke="white" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M231.379 42.5283C195.494 38.8583 179.93 39.47 156.502 42.5283C142.374 57.3492 113.695 91.0844 112 107.458C115.061 126.866 128.247 168.93 142.374 177.681C164.508 180.975 212.236 186.926 226.081 184.386C241.386 169.8 273.197 137.312 278 124.043C274.609 86.7793 245.506 54.1733 231.379 42.5283Z" stroke="black" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M180.854 121.995C179.786 113.036 178.861 92.3239 183.702 81.1534C183.939 80.3389 185.197 78.5702 188.33 78.0117C192.246 77.3136 194.738 108.032 191.534 119.203C188.971 128.139 183.346 124.788 180.854 121.995Z" fill="black" stroke="black" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M190.525 149.524C192.627 143.229 187.241 141.219 184.285 141L181 149.524C183.299 152.147 188.423 155.819 190.525 149.524Z" stroke="black" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,22 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_167_2)">
<mask id="path-1-outside-1_167_2" maskUnits="userSpaceOnUse" x="72" y="77" width="368" height="358" fill="black">
<rect fill="white" x="72" y="77" width="368" height="358"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M370.879 93H423.675V418.96H359.401V194.461H281.813V149.469H289.159C342.874 149.469 368.583 126.973 370.879 93ZM179.472 157.96H216.313V223.057H280.786V260.066H216.313V325.163H179.472V260.066H115V223.057H179.472V157.96ZM149.111 310.96H126.889V350.282H88V372.638H126.889V411.96H149.111V372.638H188V350.282H149.111V310.96Z"/>
</mask>
<path fill-rule="evenodd" clip-rule="evenodd" d="M370.879 93H423.675V418.96H359.401V194.461H281.813V149.469H289.159C342.874 149.469 368.583 126.973 370.879 93ZM179.472 157.96H216.313V223.057H280.786V260.066H216.313V325.163H179.472V260.066H115V223.057H179.472V157.96ZM149.111 310.96H126.889V350.282H88V372.638H126.889V411.96H149.111V372.638H188V350.282H149.111V310.96Z" fill="#E82553"/>
<path d="M423.675 93H439.675V77H423.675V93ZM370.879 93V77H355.923L354.915 91.9214L370.879 93ZM423.675 418.96V434.96H439.675V418.96H423.675ZM359.401 418.96H343.401V434.96H359.401V418.96ZM359.401 194.461H375.401V178.461H359.401V194.461ZM281.813 194.461H265.813V210.461H281.813V194.461ZM281.813 149.469V133.469H265.813V149.469H281.813ZM216.313 157.96H232.313V141.96H216.313V157.96ZM179.472 157.96V141.96H163.472V157.96H179.472ZM216.313 223.057H200.313V239.057H216.313V223.057ZM280.786 223.057H296.786V207.057H280.786V223.057ZM280.786 260.066V276.066H296.786V260.066H280.786ZM216.313 260.066V244.066H200.313V260.066H216.313ZM216.313 325.163V341.163H232.313V325.163H216.313ZM179.472 325.163H163.472V341.163H179.472V325.163ZM179.472 260.066H195.472V244.066H179.472V260.066ZM115 260.066H99V276.066H115V260.066ZM115 223.057V207.057H99V223.057H115ZM179.472 223.057V239.057H195.472V223.057H179.472ZM126.889 310.96V294.96H110.889V310.96H126.889ZM149.111 310.96H165.111V294.96H149.111V310.96ZM126.889 350.282V366.282H142.889V350.282H126.889ZM88 350.282V334.282H72V350.282H88ZM88 372.638H72V388.638H88V372.638ZM126.889 372.638H142.889V356.638H126.889V372.638ZM126.889 411.96H110.889V427.96H126.889V411.96ZM149.111 411.96V427.96H165.111V411.96H149.111ZM149.111 372.638V356.638H133.111V372.638H149.111ZM188 372.638V388.638H204V372.638H188ZM188 350.282H204V334.282H188V350.282ZM149.111 350.282H133.111V366.282H149.111V350.282ZM423.675 77H370.879V109H423.675V77ZM439.675 418.96V93H407.675V418.96H439.675ZM359.401 434.96H423.675V402.96H359.401V434.96ZM343.401 194.461V418.96H375.401V194.461H343.401ZM281.813 210.461H359.401V178.461H281.813V210.461ZM265.813 149.469V194.461H297.813V149.469H265.813ZM289.159 133.469H281.813V165.469H289.159V133.469ZM354.915 91.9214C354.046 104.777 349.02 114.324 339.825 121.083C330.111 128.222 314.046 133.469 289.159 133.469V165.469C317.987 165.469 341.633 159.468 358.777 146.867C376.439 133.884 385.415 115.197 386.842 94.0786L354.915 91.9214ZM216.313 141.96H179.472V173.96H216.313V141.96ZM232.313 223.057V157.96H200.313V223.057H232.313ZM280.786 207.057H216.313V239.057H280.786V207.057ZM296.786 260.066V223.057H264.786V260.066H296.786ZM216.313 276.066H280.786V244.066H216.313V276.066ZM232.313 325.163V260.066H200.313V325.163H232.313ZM179.472 341.163H216.313V309.163H179.472V341.163ZM163.472 260.066V325.163H195.472V260.066H163.472ZM115 276.066H179.472V244.066H115V276.066ZM99 223.057V260.066H131V223.057H99ZM179.472 207.057H115V239.057H179.472V207.057ZM163.472 157.96V223.057H195.472V157.96H163.472ZM126.889 326.96H149.111V294.96H126.889V326.96ZM142.889 350.282V310.96H110.889V350.282H142.889ZM88 366.282H126.889V334.282H88V366.282ZM104 372.638V350.282H72V372.638H104ZM126.889 356.638H88V388.638H126.889V356.638ZM142.889 411.96V372.638H110.889V411.96H142.889ZM149.111 395.96H126.889V427.96H149.111V395.96ZM133.111 372.638V411.96H165.111V372.638H133.111ZM188 356.638H149.111V388.638H188V356.638ZM172 350.282V372.638H204V350.282H172ZM149.111 366.282H188V334.282H149.111V366.282ZM133.111 310.96V350.282H165.111V310.96H133.111Z" fill="white" mask="url(#path-1-outside-1_167_2)"/>
</g>
<defs>
<filter id="filter0_d_167_2" x="63.1" y="68.1" width="385.475" height="375.76" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="4.45"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.26 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_167_2"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_167_2" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

@ -0,0 +1,19 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_149_582)">
<path d="M264.341 300.814L271.56 298.488L269.153 291.296C268.133 288.248 267.053 284.256 267.053 280.933C267.053 277.252 269.324 272.85 275.217 267.005C279.919 262.342 285.885 257.735 292.551 252.589C294.128 251.371 295.743 250.123 297.391 248.838C305.71 242.345 314.633 235.018 321.456 226.555C328.356 217.997 333.5 207.799 333.5 195.626C333.5 172.79 320.964 152.443 303.761 138.06C286.55 123.669 263.834 114.5 241.787 114.5C220.304 114.5 199.601 119.765 181.82 131.702L175.016 136.269L180.167 142.643L213.923 184.411L218.564 190.154L224.379 185.603C238.154 174.821 255.748 168.437 270.924 168.437C276.817 168.437 279.979 169.803 281.526 171.056C282.867 172.143 283.678 173.678 283.678 176.157C283.678 176.843 283.406 178.12 282.057 180.188C280.713 182.247 278.61 184.616 275.712 187.343C271.356 191.441 265.976 195.661 260.005 200.345C257.889 202.006 255.699 203.724 253.454 205.515C245.155 212.138 236.343 219.596 229.6 227.865C222.856 236.137 217.586 245.942 217.586 257.217C217.586 275.999 227.314 290.769 245.635 303.697L248.695 305.857L252.26 304.708L264.341 300.814ZM260.065 310.152L254.778 305.191L249.641 310.308L214.463 345.351L208.967 350.827L214.625 356.135L251.224 390.47L256.512 395.431L261.648 390.313L296.826 355.27L302.322 349.795L296.664 344.487L260.065 310.152Z" fill="#FFD955" stroke="white" stroke-width="15"/>
<path d="M364.198 278.806L371.607 280.396L373.12 272.972C373.275 272.211 373.481 271.338 373.753 270.477C374.033 269.592 374.33 268.895 374.607 268.417C374.931 267.855 376.102 266.668 380.342 265.548C383.67 264.668 387.545 264.143 392.145 263.519C393.26 263.368 394.418 263.211 395.62 263.042C401.416 262.226 408.066 261.138 414.077 258.811C420.201 256.44 426.234 252.566 430.11 245.852C437.07 233.797 436.548 219.472 432.054 207.166C427.556 194.849 418.734 183.491 407.399 176.947C396.623 170.725 384.581 167.303 371.976 168.165L363.811 168.724L365.078 176.809L369.684 206.206L370.828 213.511L378.149 212.471C387.097 211.199 396.529 212.917 403.075 216.697C405.197 217.922 405.808 218.854 405.945 219.115C405.938 219.135 405.928 219.158 405.916 219.184C405.819 219.256 405.63 219.381 405.307 219.545C404.429 219.991 403.053 220.472 401.026 220.951C397.96 221.676 394.427 222.182 390.326 222.77C388.824 222.985 387.245 223.211 385.585 223.463C379.749 224.349 373.15 225.531 367.265 227.772C361.376 230.015 355.329 233.643 351.665 239.989C345.747 250.241 346.599 261.231 352.089 273.139L352.196 273.37L327.769 279.884L320.284 281.88L322.521 289.297L330.551 315.912L332.648 322.864L339.663 320.993L366.243 313.905L373.728 311.909L371.491 304.492L363.71 278.702L364.198 278.806ZM405.972 219.032C405.973 219.029 405.973 219.027 405.973 219.027C405.973 219.027 405.973 219.029 405.972 219.032Z" fill="#FFD955" stroke="white" stroke-width="15"/>
<path d="M142.4 347.314L149.611 344.986L147.21 337.799C146.964 337.063 146.705 336.204 146.511 335.323C146.311 334.417 146.22 333.664 146.22 333.112C146.22 332.463 146.641 330.85 149.752 327.759C152.194 325.334 155.288 322.941 158.959 320.101C159.849 319.413 160.774 318.698 161.731 317.95C166.342 314.346 171.557 310.079 175.599 305.058C179.718 299.943 183.005 293.571 183.005 285.818C183.005 271.898 175.39 259.754 165.345 251.343C155.292 242.925 141.972 237.5 128.884 237.5C116.44 237.5 104.301 240.558 93.8155 247.607L87.024 252.172L92.1635 258.541L110.851 281.697L115.495 287.451L121.314 282.89C128.428 277.314 137.455 274.086 145.014 274.086C147.465 274.086 148.459 274.589 148.709 274.746C148.712 274.767 148.715 274.791 148.718 274.82C148.67 274.931 148.569 275.134 148.371 275.437C147.833 276.262 146.882 277.367 145.367 278.795C143.073 280.956 140.267 283.161 137.01 285.72C135.816 286.658 134.562 287.643 133.251 288.692C128.639 292.377 123.515 296.7 119.539 301.583C115.561 306.47 112.138 312.636 112.138 319.963C112.138 331.801 118.371 340.893 129.08 348.46L129.288 348.607L111.391 366.461L105.906 371.932L111.552 377.237L131.814 396.272L137.106 401.244L142.246 396.116L161.721 376.688L167.205 371.217L161.559 365.912L141.926 347.467L142.4 347.314ZM148.691 274.66C148.69 274.657 148.689 274.656 148.689 274.656C148.689 274.656 148.69 274.657 148.691 274.66Z" fill="#FFD955" stroke="white" stroke-width="15"/>
</g>
<defs>
<filter id="filter0_d_149_582" x="71.048" y="102" width="376.845" height="314.681" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="2.5"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_149_582"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_149_582" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@ -0,0 +1,112 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_169_350)">
<path d="M240.718 146.839L234.126 143.262L230.549 149.855L81.0407 425.444C77.8654 431.298 80.0362 438.617 85.8893 441.792L126.515 463.831C132.368 467.007 139.687 464.836 142.862 458.983L292.371 183.393L295.947 176.801L289.355 173.224L240.718 146.839Z" fill="url(#paint0_linear_169_350)" stroke="white" stroke-width="15"/>
<path d="M281.735 187.407L288.327 190.983L291.904 184.391L332.796 109.013C336.128 102.872 333.85 95.1942 327.71 91.8631L288.124 70.3877C281.984 67.0566 274.306 69.3339 270.975 75.4742L230.082 150.852L226.506 157.444L233.098 161.021L281.735 187.407Z" fill="url(#paint1_linear_169_350)" stroke="white" stroke-width="15"/>
</g>
<g filter="url(#filter1_d_169_350)">
<path d="M237.142 153.431L285.779 179.817L136.27 455.406C135.07 457.619 132.304 458.439 130.091 457.239L89.4657 435.2C87.2534 433.999 86.4329 431.233 87.6331 429.021L237.142 153.431Z" fill="url(#paint2_linear_169_350)"/>
<path d="M277.567 79.0506C278.923 76.5511 282.048 75.6241 284.548 76.9801L324.133 98.4554C326.633 99.8114 327.56 102.937 326.204 105.436L285.311 180.814L236.674 154.428L277.567 79.0506Z" fill="url(#paint3_linear_169_350)"/>
</g>
<g filter="url(#filter2_d_169_350)">
<path d="M361.386 265.116C361.78 263.127 360.62 261.159 358.689 260.541C356.757 259.923 354.67 260.852 353.836 262.701C348.418 274.722 341.889 282.308 333.951 286.408C326.012 290.509 316.047 291.442 303.108 288.903C301.118 288.513 299.152 289.677 298.538 291.61C297.924 293.542 298.858 295.628 300.708 296.457C312.539 301.76 320.312 308.347 324.545 316.363C328.762 324.349 329.775 334.337 326.925 347.08C326.473 349.098 327.639 351.126 329.61 351.752C331.581 352.378 333.703 351.394 334.499 349.485C339.44 337.633 346.102 329.888 354.238 325.686C362.375 321.483 372.546 320.533 385.071 323.364C387.088 323.82 389.119 322.658 389.75 320.689C390.38 318.719 389.401 316.595 387.494 315.795C375.452 310.743 367.893 304.137 363.822 296.076C359.736 287.984 358.863 277.833 361.386 265.116Z" fill="url(#paint4_linear_169_350)"/>
<path d="M368.742 266.576C369.879 260.847 366.537 255.177 360.974 253.397C355.411 251.618 349.399 254.295 346.999 259.619C342.004 270.7 336.446 276.678 330.509 279.745L333.951 286.408L330.509 279.745C324.571 282.812 316.479 283.884 304.552 281.543C298.821 280.419 293.159 283.773 291.39 289.339C289.622 294.905 292.311 300.912 297.64 303.301C308.523 308.179 314.714 313.808 317.913 319.866C321.067 325.837 322.19 333.887 319.605 345.443C318.305 351.255 321.663 357.098 327.34 358.9C333.017 360.703 339.13 357.869 341.422 352.371C345.891 341.65 351.533 335.524 357.68 332.349C363.827 329.174 372.088 328.119 383.418 330.679C389.227 331.992 395.077 328.648 396.893 322.975C398.708 317.302 395.887 311.183 390.395 308.879C379.476 304.298 373.561 298.722 370.517 292.695C367.429 286.58 366.422 278.273 368.742 266.576Z" stroke="white" stroke-width="15"/>
</g>
<g filter="url(#filter3_d_169_350)">
<mask id="path-7-outside-1_169_350" maskUnits="userSpaceOnUse" x="51.7461" y="59.6968" width="139.912" height="139.912" fill="black">
<rect fill="white" x="51.7461" y="59.6968" width="139.912" height="139.912"/>
<path d="M112.078 94.2129C111.329 92.72 109.579 92.0266 108.011 92.6012C106.443 93.1758 105.555 94.8356 105.948 96.459C108.502 107.016 108.092 115.25 105.002 121.93C101.913 128.61 95.9048 134.255 86.2069 139.145C84.7156 139.897 84.0257 141.649 84.6035 143.216C85.1814 144.783 86.843 145.667 88.4656 145.271C98.8401 142.738 107.225 143.092 114.03 146.164C120.81 149.225 126.518 155.208 131.108 164.936C131.834 166.477 133.618 167.206 135.216 166.617C136.814 166.027 137.697 164.314 137.249 162.671C134.47 152.466 134.887 144.061 138.053 137.214C141.219 130.368 147.354 124.608 156.93 120.116C158.472 119.393 159.205 117.611 158.62 116.011C158.034 114.412 156.323 113.525 154.678 113.969C144.294 116.772 136.038 116.298 129.315 113.114C122.567 109.918 116.867 103.758 112.078 94.2129Z"/>
</mask>
<path d="M112.078 94.2129C111.329 92.72 109.579 92.0266 108.011 92.6012C106.443 93.1758 105.555 94.8356 105.948 96.459C108.502 107.016 108.092 115.25 105.002 121.93C101.913 128.61 95.9048 134.255 86.2069 139.145C84.7156 139.897 84.0257 141.649 84.6035 143.216C85.1814 144.783 86.843 145.667 88.4656 145.271C98.8401 142.738 107.225 143.092 114.03 146.164C120.81 149.225 126.518 155.208 131.108 164.936C131.834 166.477 133.618 167.206 135.216 166.617C136.814 166.027 137.697 164.314 137.249 162.671C134.47 152.466 134.887 144.061 138.053 137.214C141.219 130.368 147.354 124.608 156.93 120.116C158.472 119.393 159.205 117.611 158.62 116.011C158.034 114.412 156.323 113.525 154.678 113.969C144.294 116.772 136.038 116.298 129.315 113.114C122.567 109.918 116.867 103.758 112.078 94.2129Z" fill="url(#paint5_linear_169_350)"/>
<path d="M108.011 92.6012L102.851 78.5168L102.851 78.5168L108.011 92.6012ZM112.078 94.2129L125.486 87.4864L125.486 87.4864L112.078 94.2129ZM105.948 96.459L120.527 92.9315L120.527 92.9315L105.948 96.459ZM105.002 121.93L91.3878 115.633L91.3878 115.633L105.002 121.93ZM86.2069 139.145L92.9608 152.539L92.9609 152.539L86.2069 139.145ZM84.6035 143.216L70.5297 148.405L70.5297 148.405L84.6035 143.216ZM88.4656 145.271L92.0229 159.843L92.0229 159.843L88.4656 145.271ZM114.03 146.164L120.202 132.493L114.03 146.164ZM131.108 164.936L117.542 171.336L117.542 171.336L131.108 164.936ZM135.216 166.617L140.407 180.69L140.407 180.69L135.216 166.617ZM137.249 162.671L151.722 158.73L151.722 158.73L137.249 162.671ZM138.053 137.214L124.438 130.918L124.438 130.918L138.053 137.214ZM156.93 120.116L163.299 133.697L163.299 133.697L156.93 120.116ZM158.62 116.011L172.704 110.852L172.704 110.852L158.62 116.011ZM154.678 113.969L150.769 99.4875L150.769 99.4875L154.678 113.969ZM129.315 113.114L122.895 126.671L129.315 113.114ZM113.172 106.686C107.58 108.734 101.341 106.262 98.6711 100.939L125.486 87.4864C121.317 79.178 111.579 75.3189 102.851 78.5168L113.172 106.686ZM120.527 92.9315C121.928 98.7194 118.763 104.637 113.172 106.686L102.851 78.5168C94.1226 81.7147 89.1826 90.9518 91.3686 99.9866L120.527 92.9315ZM118.617 128.226C123.597 117.457 123.566 105.493 120.527 92.9315L91.3686 99.9866C93.4377 108.538 92.5863 113.042 91.3878 115.633L118.617 128.226ZM92.9609 152.539C104.5 146.72 113.637 138.994 118.617 128.226L91.3878 115.633C90.1892 118.225 87.3092 121.79 79.453 125.752L92.9609 152.539ZM98.6773 138.027C100.737 143.614 98.2779 149.858 92.9608 152.539L79.453 125.752C71.1532 129.937 67.314 139.683 70.5297 148.405L98.6773 138.027ZM84.9083 130.699C90.6933 129.287 96.6173 132.439 98.6773 138.027L70.5297 148.405C73.7454 157.126 82.9927 162.048 92.0229 159.843L84.9083 130.699ZM120.202 132.493C109.36 127.598 97.3013 127.674 84.9083 130.699L92.0229 159.843C100.379 157.803 105.09 158.586 107.859 159.836L120.202 132.493ZM144.674 158.536C139.046 146.607 131.135 137.428 120.202 132.493L107.859 159.836C110.486 161.022 113.991 163.81 117.542 171.336L144.674 158.536ZM130.026 152.544C135.723 150.442 142.082 153.044 144.674 158.536L117.542 171.336C121.586 179.91 131.513 183.971 140.407 180.69L130.026 152.544ZM122.776 166.612C121.181 160.753 124.328 154.645 130.025 152.544L140.407 180.69C149.301 177.41 154.213 167.876 151.722 158.73L122.776 166.612ZM124.438 130.918C119.392 141.83 119.353 154.042 122.776 166.612L151.722 158.73C149.587 150.889 150.381 146.292 151.668 143.511L124.438 130.918ZM150.56 106.536C138.765 112.068 129.485 120.006 124.438 130.918L151.668 143.511C152.954 140.729 155.943 137.147 163.299 133.697L150.56 106.536ZM144.535 121.17C142.446 115.468 145.062 109.115 150.56 106.536L163.299 133.697C171.882 129.671 175.965 119.754 172.704 110.852L144.535 121.17ZM158.587 128.451C152.724 130.034 146.623 126.873 144.535 121.17L172.704 110.852C169.444 101.951 159.922 97.0172 150.769 99.4875L158.587 128.451ZM122.895 126.671C133.735 131.805 145.853 131.888 158.587 128.451L150.769 99.4875C142.735 101.656 138.34 100.791 135.735 99.5574L122.895 126.671ZM98.6711 100.939C104.392 112.342 112.144 121.579 122.895 126.671L135.735 99.5574C132.99 98.2571 129.343 95.1744 125.486 87.4864L98.6711 100.939Z" fill="white" mask="url(#path-7-outside-1_169_350)"/>
</g>
<g filter="url(#filter4_d_169_350)">
<path d="M451.02 74.3738C452.354 72.2566 451.887 69.4758 449.935 67.9103C447.983 66.3449 445.167 66.493 443.39 68.2546C431.835 79.7094 420.96 85.5637 410.002 86.7792C399.043 87.9947 387.15 84.6661 373.365 76.022C371.245 74.6927 368.466 75.1653 366.904 77.1205C365.343 79.0756 365.496 81.8912 367.262 83.6646C378.548 95.0031 384.592 106.027 385.926 117.133C387.256 128.197 384.008 140.152 375.092 153.574C373.68 155.699 374.127 158.551 376.121 160.144C378.115 161.736 380.995 161.54 382.756 159.693C393.686 148.222 404.784 142.243 416.016 140.997C427.247 139.751 439.386 143.152 452.565 151.949C454.687 153.366 457.54 152.926 459.137 150.935C460.734 148.945 460.544 146.064 458.701 144.299C447.061 133.158 441.271 122.206 440.144 111.119C439.012 99.9908 442.493 87.91 451.02 74.3738Z" fill="url(#paint6_linear_169_350)"/>
<path d="M457.366 78.3712C460.732 73.0282 459.553 66.0103 454.627 62.0595C449.701 58.1087 442.595 58.4825 438.11 62.9282C427.287 73.657 417.895 78.3577 409.175 79.3249C400.455 80.2921 390.261 77.7641 377.35 69.668C372 66.3131 364.984 67.5058 361.044 72.4401C357.103 77.3745 357.491 84.48 361.946 88.9556C372.499 99.5578 377.41 109.121 378.48 118.028C379.538 126.83 377.087 137.016 368.845 149.424C365.281 154.788 366.409 161.986 371.441 166.005C376.474 170.023 383.743 169.529 388.185 164.867C398.27 154.283 407.837 149.45 416.843 148.451C425.849 147.452 436.241 150.071 448.401 158.187C453.757 161.763 460.958 160.652 464.987 155.628C469.017 150.605 468.539 143.335 463.887 138.881C453.126 128.581 448.502 119.18 447.605 110.36C446.698 101.435 449.393 91.0284 457.366 78.3712Z" stroke="white" stroke-width="15"/>
</g>
<defs>
<filter id="filter0_d_169_350" x="56.6316" y="48.4812" width="300.646" height="442.334" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="2.57438"/>
<feGaussianBlur stdDeviation="7.72314"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_350"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_169_350" result="shape"/>
</filter>
<filter id="filter1_d_169_350" x="71.6345" y="63.4842" width="270.64" height="412.328" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="2.57438"/>
<feGaussianBlur stdDeviation="7.72314"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_350"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_169_350" result="shape"/>
</filter>
<filter id="filter2_d_169_350" x="274.948" y="236.948" width="138.395" height="138.395" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="4.2"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_350"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_169_350" result="shape"/>
</filter>
<filter id="filter3_d_169_350" x="60.9976" y="68.9976" width="121.226" height="121.226" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="4.2"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_350"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_169_350" result="shape"/>
</filter>
<filter id="filter4_d_169_350" x="342.428" y="43.4279" width="141.192" height="141.192" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="4.2"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_350"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_169_350" result="shape"/>
</filter>
<linearGradient id="paint0_linear_169_350" x1="176.858" y1="264.552" x2="227.811" y2="292.194" gradientUnits="userSpaceOnUse">
<stop stop-color="#181310"/>
<stop offset="0.575" stop-color="#3C4851"/>
<stop offset="1" stop-color="#181310"/>
</linearGradient>
<linearGradient id="paint1_linear_169_350" x1="254.893" y1="120.846" x2="303.53" y2="147.232" gradientUnits="userSpaceOnUse">
<stop stop-color="#F0F1F4"/>
<stop offset="0.16" stop-color="white"/>
<stop offset="0.795" stop-color="white"/>
<stop offset="1" stop-color="#F0F1F4"/>
</linearGradient>
<linearGradient id="paint2_linear_169_350" x1="176.858" y1="264.552" x2="227.811" y2="292.194" gradientUnits="userSpaceOnUse">
<stop stop-color="#181310"/>
<stop offset="0.575" stop-color="#3C4851"/>
<stop offset="1" stop-color="#181310"/>
</linearGradient>
<linearGradient id="paint3_linear_169_350" x1="254.893" y1="120.846" x2="303.53" y2="147.232" gradientUnits="userSpaceOnUse">
<stop stop-color="#F0F1F4"/>
<stop offset="0.16" stop-color="white"/>
<stop offset="0.795" stop-color="white"/>
<stop offset="1" stop-color="#F0F1F4"/>
</linearGradient>
<linearGradient id="paint4_linear_169_350" x1="332.28" y1="260.677" x2="353.28" y2="347.177" gradientUnits="userSpaceOnUse">
<stop stop-color="#A91EEB"/>
<stop offset="1" stop-color="#421E8F"/>
</linearGradient>
<linearGradient id="paint5_linear_169_350" x1="85" y1="110" x2="155.5" y2="147.5" gradientUnits="userSpaceOnUse">
<stop stop-color="#EBBE1E"/>
<stop offset="1" stop-color="#FF7338"/>
</linearGradient>
<linearGradient id="paint6_linear_169_350" x1="413" y1="62.5" x2="413" y2="163" gradientUnits="userSpaceOnUse">
<stop stop-color="#48B3FF"/>
<stop offset="1" stop-color="#2599EA"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,18 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_147_433)">
<path d="M365.885 273.138C253.167 262.853 197 228.972 98.6344 160C84.6962 184.201 75 227.52 75 228.972C191.96 320.329 328 345 365.885 343V361.755L447 290L365.885 243.492C366.289 253.374 366.85 273.226 365.885 273.138Z" fill="#FDA7F0"/>
<path d="M103.514 153.04L95.9062 147.706L91.2687 155.758C83.7808 168.759 77.6467 186.431 73.4417 200.598C71.3132 207.769 69.629 214.216 68.4725 218.981C67.8947 221.362 67.443 223.347 67.1308 224.811C66.9759 225.537 66.8475 226.172 66.7537 226.68C66.7076 226.929 66.6607 227.197 66.6221 227.455C66.6217 227.458 66.621 227.462 66.6201 227.468C66.6027 227.58 66.5 228.239 66.5 228.972V233.118L69.7677 235.67C129.19 282.085 193.377 311.506 247.469 329.079C294.461 344.346 334.41 350.852 357.385 351.547V361.755V380.623L371.517 368.122L452.632 296.366L461.504 288.518L451.228 282.626L370.113 236.118L356.763 228.464L357.392 243.839C357.592 248.733 357.83 256.077 357.899 262.15C357.905 262.722 357.91 263.278 357.914 263.815C306.717 258.431 267.733 247.812 230.395 230.838C190.767 212.824 152.714 187.538 103.514 153.04ZM357.758 271.135C357.752 271.178 357.752 271.167 357.761 271.111C357.76 271.12 357.759 271.128 357.758 271.135Z" stroke="white" stroke-width="17"/>
</g>
<defs>
<filter id="filter0_d_147_433" x="52" y="129.411" width="430.008" height="276.079" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="3"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_147_433"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_147_433" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,46 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_147_446)">
<path d="M250.581 125.192L284.529 135.878C280.999 190.438 277.83 244.598 274.299 299.157L267.417 299.534L239.254 282.448C232.44 228.075 226.03 174.059 219.217 119.686L225.127 115.561L250.581 125.192ZM262.163 322.633L303.558 357.244L267.762 396.843L226.368 362.232L262.163 322.633Z" fill="#E84F4F"/>
<path d="M292.014 136.362L292.394 130.491L286.781 128.724L253.036 118.102L227.781 108.546L224.079 107.145L220.834 109.411L214.924 113.536L211.212 116.127L211.775 120.619C215.18 147.791 218.484 174.876 221.791 201.975L221.791 201.982C225.097 229.075 228.404 256.182 231.812 283.381L232.263 286.979L235.364 288.86L263.527 305.947L265.511 307.15L267.827 307.023L274.71 306.646L281.354 306.282L281.784 299.642C283.55 272.35 285.225 245.16 286.9 217.984L286.9 217.979C288.575 190.797 290.249 163.629 292.014 136.362ZM266.974 316.879L261.438 312.251L256.6 317.604L220.804 357.203L215.576 362.986L221.557 367.986L262.952 402.597L268.487 407.225L273.326 401.872L309.122 362.273L314.349 356.49L308.369 351.49L266.974 316.879Z" stroke="white" stroke-width="15"/>
</g>
<g filter="url(#filter1_d_147_446)">
<path d="M371.084 158.916L386.233 169.734C375.632 196.292 365.275 222.71 354.674 249.268L351.191 248.34L339.956 235.278C345.383 207.135 350.953 179.236 356.38 151.094L359.988 150L371.084 158.916ZM344.833 258.975L359.806 282.896L335.587 296.784L320.613 272.863L344.833 258.975Z" fill="#E84F4F"/>
<path d="M393.198 172.514L395.379 167.05L390.591 163.63L375.616 152.936L364.686 144.154L361.6 141.675L357.812 142.823L354.205 143.916L349.873 145.229L349.016 149.673C346.305 163.731 343.558 177.729 340.809 191.742L340.807 191.747C338.059 205.754 335.308 219.774 332.592 233.858L331.905 237.419L334.27 240.168L343.612 251.03L341.103 252.468L316.883 266.356L310.12 270.234L314.256 276.842L329.229 300.763L333.058 306.88L339.317 303.29L363.537 289.403L370.3 285.525L366.164 278.917L352.022 256.323L352.743 256.516L359.173 258.229L361.64 252.049C366.944 238.76 372.187 225.508 377.424 212.269L377.428 212.26C382.668 199.014 387.903 185.781 393.198 172.514Z" stroke="white" stroke-width="15"/>
</g>
<g filter="url(#filter2_d_147_446)">
<path d="M139.355 200.843L158.136 200.561C165.698 228.78 173.372 256.735 180.933 284.954L177.561 286.299L160.574 282.371C147.879 255.981 135.445 229.705 122.75 203.315L124.996 200.235L139.355 200.843ZM178.884 298.877L205.474 309.46L194.364 335.514L167.774 324.931L178.884 298.877Z" fill="#E84F4F"/>
<path d="M165.381 198.62L163.868 192.974L158.024 193.062L139.457 193.341L125.313 192.742L121.302 192.572L118.936 195.816L116.69 198.896L114.045 202.522L115.991 206.567C122.333 219.749 128.61 232.904 134.893 246.073L134.895 246.077C141.176 259.24 147.463 272.416 153.816 285.622L155.377 288.866L158.884 289.678L173.238 292.998L171.985 295.935L160.875 321.989L157.861 329.058L165.001 331.899L191.59 342.483L198.392 345.19L201.263 338.456L212.373 312.402L215.387 305.333L208.247 302.492L182.701 292.324L183.711 291.921L189.903 289.452L188.178 283.013C184.394 268.893 180.583 254.84 176.775 240.799L176.773 240.794C172.964 226.749 169.158 212.716 165.381 198.62Z" stroke="white" stroke-width="15"/>
</g>
<defs>
<filter id="filter0_d_147_446" x="191.408" y="86.9298" width="145.533" height="342.478" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="5.9"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_147_446"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_147_446" result="shape"/>
</filter>
<filter id="filter1_d_147_446" x="287.827" y="121.549" width="128.499" height="207.226" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="5.9"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_147_446"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_147_446" result="shape"/>
</filter>
<filter id="filter2_d_147_446" x="93.5408" y="173.109" width="143.559" height="193.556" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="5.9"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_147_446"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_147_446" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

@ -0,0 +1,43 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_149_634)">
<rect x="67" y="136" width="378" height="239" rx="5" fill="url(#paint0_linear_149_634)"/>
<rect x="59.5" y="128.5" width="393" height="254" rx="12.5" stroke="white" stroke-width="15"/>
</g>
<g filter="url(#filter1_d_149_634)">
<path d="M135.137 209.26C135.137 199.21 136.474 189.958 139.149 181.502C141.85 173.047 145.97 165.213 151.508 158H168C165.893 160.674 163.934 163.943 162.124 167.806C160.314 171.642 158.734 175.856 157.383 180.449C156.033 185.041 154.979 189.796 154.223 194.712C153.466 199.602 153.088 204.451 153.088 209.26C153.088 215.662 153.736 222.132 155.033 228.669C156.357 235.18 158.14 241.231 160.382 246.823C162.651 252.415 165.19 256.994 168 260.56H151.508C145.97 253.347 141.85 245.513 139.149 237.057C136.474 228.602 135.137 219.336 135.137 209.26Z" fill="white"/>
<path d="M101.725 243.581C99.0507 243.581 96.7545 242.636 94.8365 240.745C92.9455 238.827 92 236.531 92 233.856C92 231.209 92.9455 228.94 94.8365 227.049C96.7545 225.158 99.0507 224.212 101.725 224.212C104.319 224.212 106.588 225.158 108.533 227.049C110.478 228.94 111.45 231.209 111.45 233.856C111.45 235.639 110.991 237.273 110.073 238.759C109.181 240.218 108.006 241.393 106.547 242.285C105.088 243.149 103.481 243.581 101.725 243.581ZM101.725 199.98C99.0507 199.98 96.7545 199.035 94.8365 197.144C92.9455 195.253 92 192.957 92 190.255C92 187.608 92.9455 185.352 94.8365 183.488C96.7545 181.597 99.0507 180.651 101.725 180.651C104.319 180.651 106.588 181.597 108.533 183.488C110.478 185.352 111.45 187.608 111.45 190.255C111.45 192.065 110.991 193.713 110.073 195.199C109.181 196.657 108.006 197.819 106.547 198.684C105.088 199.548 103.481 199.98 101.725 199.98Z" fill="white"/>
</g>
<defs>
<filter id="filter0_d_149_634" x="44.9" y="113.9" width="422.2" height="283.2" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="3.55"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_149_634"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_149_634" result="shape"/>
</filter>
<filter id="filter1_d_149_634" x="88" y="154" width="84" height="110.56" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="2"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_149_634"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_149_634" result="shape"/>
</filter>
<linearGradient id="paint0_linear_149_634" x1="256" y1="136" x2="256" y2="375" gradientUnits="userSpaceOnUse">
<stop stop-color="#2F69FF"/>
<stop offset="0.145" stop-color="#2C61E8"/>
<stop offset="0.245" stop-color="#2F69FF"/>
<stop offset="0.355" stop-color="#3766DD"/>
<stop offset="0.467337" stop-color="#2F69FF"/>
<stop offset="0.575" stop-color="#1E5DFF"/>
<stop offset="0.735" stop-color="#1758FF"/>
<stop offset="0.885" stop-color="#2F69FF"/>
<stop offset="1" stop-color="#2F69FF"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 140 KiB

View File

@ -0,0 +1,35 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_147_2)">
<path d="M452.244 183.689L62.3983 240.75C60.7589 240.99 59.6245 242.514 59.8644 244.153L61.0954 252.564C61.3354 254.203 60.2009 255.727 58.5615 255.967L28.3831 260.384C26.7437 260.624 25.6092 262.147 25.8492 263.787L28.6009 282.586C28.8408 284.226 30.3643 285.36 32.0037 285.12L73.5609 279.038C75.2003 278.798 76.3348 277.274 76.0948 275.635L74.9362 267.719C74.6963 266.08 75.8307 264.556 77.4701 264.316L124.964 257.365C126.603 257.125 128.127 258.259 128.367 259.898L129.526 267.814C129.765 269.453 131.289 270.588 132.928 270.348L140.844 269.189C142.483 268.949 144.007 270.084 144.247 271.723L145.55 280.628C145.79 282.268 147.314 283.402 148.953 283.162L155.385 282.221C157.024 281.981 158.548 283.115 158.787 284.755L159.946 292.67C160.186 294.31 161.71 295.444 163.349 295.204L168.791 294.408C170.43 294.168 171.954 295.302 172.194 296.942L173.497 305.847C173.737 307.486 175.261 308.621 176.9 308.381L265.456 295.419C267.096 295.179 268.23 293.655 267.99 292.016L266.687 283.111C266.447 281.472 267.581 279.948 269.221 279.708L271.694 279.346C273.334 279.106 274.468 277.583 274.228 275.943L273.07 268.027C272.83 266.388 273.964 264.865 275.604 264.625L280.056 263.973C281.696 263.733 282.83 262.209 282.59 260.57L281.287 251.665C281.047 250.026 282.181 248.502 283.821 248.262L315.483 243.628C317.123 243.388 318.646 244.522 318.886 246.162L320.769 259.025C321.009 260.664 322.532 261.798 324.172 261.558L329.614 260.762C331.253 260.522 332.777 261.656 333.017 263.296L333.741 268.243C333.981 269.882 335.504 271.017 337.144 270.777L430.152 257.163C431.792 256.923 432.926 255.4 432.686 253.761L431.745 247.329C431.505 245.69 432.64 244.166 434.279 243.926L444.668 242.406C446.308 242.166 447.442 240.642 447.202 239.003L446.116 231.582C445.876 229.942 447.01 228.419 448.65 228.179L458.544 226.731C460.184 226.491 461.318 224.967 461.078 223.328L455.647 186.223C455.407 184.584 453.884 183.449 452.244 183.689Z" fill="white"/>
<path d="M65.7125 244.946L448.632 188.898L450.805 203.74L67.8849 259.788L65.7125 244.946Z" fill="black"/>
<path d="M31.275 265.146L67.8849 259.788L70.0573 274.63L33.4474 279.988L31.275 265.146Z" fill="black"/>
<path d="M134.179 250.084L450.805 203.74L452.977 218.582L136.351 264.926L134.179 250.084Z" fill="black"/>
<path d="M324.348 237.409L437.146 220.899L439.318 235.741L326.52 252.251L324.348 237.409Z" fill="black"/>
<path d="M339.383 250.369L424.476 237.914L426.649 252.755L341.556 265.21L339.383 250.369Z" fill="black"/>
<path d="M162.27 276.292L267.153 260.941L269.325 275.783L164.443 291.134L162.27 276.292Z" fill="black"/>
<path d="M176.316 289.396L261.409 276.941L263.582 291.783L178.489 304.238L176.316 289.396Z" fill="black"/>
<path d="M149.214 263.044L274.875 244.651L277.047 259.493L151.386 277.885L149.214 263.044Z" fill="black"/>
<path d="M155.947 246.898L170.788 244.726L172.961 259.568L158.119 261.74L155.947 246.898Z" fill="white"/>
<path d="M330.091 221.409L344.933 219.237L347.105 234.078L332.263 236.251L330.091 221.409Z" fill="white"/>
<path d="M172.961 259.568L187.803 257.395L189.975 272.237L175.133 274.41L172.961 259.568Z" fill="white"/>
<path d="M347.105 234.078L361.947 231.906L364.12 246.748L349.278 248.92L347.105 234.078Z" fill="white"/>
<path d="M189.975 272.237L204.817 270.065L206.989 284.907L192.147 287.079L189.975 272.237Z" fill="white"/>
<path d="M185.63 242.553L200.472 240.381L202.645 255.223L187.803 257.395L185.63 242.553Z" fill="white"/>
<path d="M359.775 217.064L374.617 214.892L376.789 229.734L361.947 231.906L359.775 217.064Z" fill="white"/>
<path d="M202.645 255.223L217.486 253.051L219.659 267.892L204.817 270.065L202.645 255.223Z" fill="white"/>
<path d="M376.789 229.734L391.631 227.561L393.803 242.403L378.961 244.576L376.789 229.734Z" fill="white"/>
<path d="M219.659 267.892L234.501 265.72L236.673 280.562L221.831 282.734L219.659 267.892Z" fill="white"/>
</g>
<defs>
<filter id="filter0_d_147_2" x="19.8172" y="177.657" width="447.293" height="136.755" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="3"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_147_2"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_147_2" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@ -0,0 +1,18 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_147_450)">
<path d="M398.023 99V88H387.023H270.558H259.558V99V102.558H256H245V113.558V197.186H241.442H230.442V208.186V211.744H219.605H208.605V222.744V226.302H197.767H186.767V237.302V240.86H183.209H172.209V251.86V255.419H165.093V251.86V240.86H154.093H150.535V237.302V226.302H139.535H135.977V208.186V197.186H124.977H110.419H99.4186V208.186V295.535V306.535H110.419H113.977V310.093V321.093H124.977H128.535V324.651V335.651H139.535H143.093V339.209V350.209H154.093H157.651V353.767V364.767H168.651H172.209V412V423H183.209H212.326H223.326V412V397.442V393.884V386.442V382.884V379.326H226.884H230.442H237.884H241.442H245V412V423H256H285.116H296.116V412V397.442V386.442H285.116H281.558V350.209H285.116H296.116V339.209V335.651H299.674H310.674V324.651V313.814H314.233H325.233V302.814V277.419H328.791H343.349H354.349V266.419V237.302V226.302H343.349H325.233V219.186H372.465H383.465V208.186V193.628V190.07H401.581H412.581V179.07V113.558V102.558H401.581H398.023V99Z" fill="#535353" stroke="white" stroke-width="22"/>
<path d="M285 145V121H309V145H285Z" fill="white"/>
</g>
<defs>
<filter id="filter0_d_147_450" x="82.2186" y="70.8" width="347.563" height="369.4" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="3.1"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_147_450"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_147_450" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,21 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_149_592)">
<path d="M128 147.191L135.023 148.83L155.808 153.68L141.255 138.068L113.755 108.568L108.667 103.11L103.958 108.898L79.9579 138.398L68.0935 152.981L86.4317 148.84L94 147.131V381V387.5H100.5H377.263L371.614 395.861L380.001 405.266L429.001 379.766L440.536 373.763L428.811 368.139L379.811 344.639L372.231 354.916L374.623 357.5H128V147.191Z" fill="black" stroke="white" stroke-width="13"/>
<path d="M171.635 197.238L164.637 198.468L166.483 205.329C168.157 211.551 171.602 218.62 174.475 223.917C175.944 226.628 177.333 228.998 178.388 230.731C178.916 231.596 179.37 232.318 179.718 232.854C179.889 233.119 180.051 233.363 180.191 233.567C180.259 233.666 180.344 233.787 180.436 233.911C180.481 233.972 180.548 234.062 180.631 234.164L180.631 234.165C180.684 234.231 180.87 234.463 181.131 234.724L183.373 236.966L186.52 236.579C217.22 232.806 244.337 222.729 265.081 212.159C281.284 203.902 293.931 195.17 301.446 188.64L302.31 189.504L312.512 199.706L313.394 185.305L316.071 141.58L316.625 132.539L307.882 134.91L271.379 144.808L260.022 147.888L268.676 155.862C269.591 156.705 270.787 157.82 271.979 158.954C257.136 170.616 243.954 177.979 229.633 183.348C213.442 189.42 195.582 193.032 171.635 197.238Z" fill="#27D56C" stroke="white" stroke-width="13"/>
<path d="M174 355V276.5H206L208.5 355H174Z" fill="#4A93FF" stroke="white" stroke-width="13"/>
<path d="M230 243L240 357.5H266.5V245.5L230 243Z" fill="#FFB74A" stroke="white" stroke-width="13"/>
<path d="M288 357.5L297 199H331L337 357.5H288Z" fill="#4A93FF" stroke="white" stroke-width="13"/>
</g>
<defs>
<filter id="filter0_d_149_592" x="46.687" y="88.72" width="412.886" height="326.812" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="2.25"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_149_592"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_149_592" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,21 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="25" y="175" width="463" height="163" rx="20" fill="url(#paint0_linear_147_23)"/>
<rect x="38.5" y="188.5" width="436" height="136" rx="8.5" stroke="#2C2C2C" stroke-width="3"/>
<path d="M83.864 233.048H93.464V270.68H116.312V279H83.864V233.048ZM140.909 244.056C151.213 244.056 158.317 250.84 158.317 261.976C158.317 273.112 151.213 279.896 140.909 279.896C130.605 279.896 123.501 273.112 123.501 261.976C123.501 250.712 130.797 244.056 140.909 244.056ZM132.717 261.976C132.717 268.696 135.469 272.344 140.909 272.344C146.477 272.344 149.101 268.44 149.101 261.976C149.101 255.512 146.413 251.608 140.845 251.608C135.661 251.608 132.717 255.32 132.717 261.976ZM197.186 257.112H188.098C187.586 254.04 185.858 251.608 182.338 251.608C177.474 251.608 175.042 255.384 175.042 261.976C175.042 270.36 178.178 272.536 181.954 272.536C185.346 272.536 187.714 269.912 188.034 266.584H197.122C196.098 274.008 191.042 279.896 181.57 279.896C171.074 279.896 165.826 273.048 165.826 262.936C165.826 250.712 171.65 244.056 182.146 244.056C190.274 244.056 196.674 248.792 197.186 257.112ZM234.156 253.656V272.664C234.156 275.992 234.861 277.144 236.14 277.656V279H226.476C226.028 277.656 225.708 276.44 225.644 274.968C222.38 278.488 218.988 279.896 214.636 279.896C208.428 279.896 204.268 276.056 204.268 269.976C204.268 265.56 205.868 260.312 214.956 258.968L221.356 258.008C224.684 257.496 225.389 256.856 225.389 255.128C225.389 252.76 223.917 251.224 219.5 251.224C216.172 251.224 214.316 252.696 213.996 255.96H205.356C206.06 248.792 209.452 244.056 220.332 244.056C229.101 244.056 234.156 247.768 234.156 253.656ZM217.388 273.496C221.356 273.496 225.389 270.808 225.389 266.648V262.424C223.852 263.384 222.444 263.832 218.988 264.344C215.404 264.856 213.228 266.136 213.228 269.4C213.228 271.896 214.892 273.496 217.388 273.496ZM245.591 233.048H254.551V279H245.591V233.048ZM288.064 233.048H320.768V241.176H297.664V251.544H317.888V259.672H297.664V279H288.064V233.048ZM329.941 232.6H338.901V240.92H329.941V232.6ZM329.941 244.952H338.901V279H329.941V244.952ZM368.682 244.056C369.13 244.056 369.706 244.12 370.41 244.184V253.272C369.898 253.208 369.066 253.144 367.978 253.144C363.114 253.144 359.594 255.128 359.594 261.08V279H350.634V244.952H359.21V250.84H359.338C361.962 245.656 364.778 244.056 368.682 244.056ZM390.571 244.056C400.811 244.056 405.483 248.408 405.867 255.32H397.099C396.587 251.928 394.603 250.84 391.019 250.84C387.627 250.84 385.579 251.672 385.579 254.168C385.579 256.472 389.931 257.24 394.219 258.072C404.075 259.928 406.891 263.32 406.891 268.12C406.891 276.44 400.107 279.896 391.787 279.896C381.739 279.896 375.595 275.352 375.595 268.12H384.811C384.811 270.872 386.475 273.112 392.171 273.112C395.755 273.112 397.931 271.64 397.931 269.592C397.931 267.352 394.923 266.584 388.715 265.432C380.779 264.024 376.811 261.016 376.811 255.448C376.811 248.728 381.803 244.056 390.571 244.056ZM417.686 235.736H426.646V244.952H432.214V251.352H426.646V270.36C426.646 272.152 427.414 272.6 430.294 272.6C430.678 272.6 431.318 272.536 432.214 272.472V279.256C430.422 279.32 428.758 279.384 427.414 279.384C418.838 279.384 417.686 276.504 417.686 271.96V251.352H413.078V244.952H417.686V235.736Z" fill="#2C2C2C"/>
<defs>
<linearGradient id="paint0_linear_147_23" x1="25" y1="256.5" x2="488" y2="256.5" gradientUnits="userSpaceOnUse">
<stop offset="0.0170935" stop-color="#EEEAF8"/>
<stop offset="0.330988" stop-color="#EAECF8"/>
<stop offset="0.38898" stop-color="#F9F6EB"/>
<stop offset="0.438094" stop-color="#F9EBF5"/>
<stop offset="0.468738" stop-color="#EBF2F9"/>
<stop offset="0.509596" stop-color="#EBF9F9"/>
<stop offset="0.582889" stop-color="#F9F8EB"/>
<stop offset="0.727975" stop-color="#F9EBF8"/>
<stop offset="0.772692" stop-color="#EEEBF9"/>
<stop offset="0.818153" stop-color="#EBF9F7"/>
<stop offset="0.870787" stop-color="#EBF9EC"/>
<stop offset="1" stop-color="#F6F8EA"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,43 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_147_440)">
<g filter="url(#filter1_i_147_440)">
<path d="M182.847 98.8011C186.605 95.0574 191.696 92.9597 197 92.9695L315.126 93.1885C320.43 93.1983 325.513 95.3149 329.257 99.0726L412.63 182.755C416.374 186.513 418.471 191.604 418.462 196.908L418.243 315.034C418.233 320.338 416.116 325.422 412.359 329.165L328.676 412.538C324.918 416.282 319.827 418.38 314.523 418.37L196.397 418.151C191.093 418.141 186.009 416.024 182.266 412.267L98.8928 328.584C95.1491 324.827 93.0514 319.736 93.0612 314.431L93.2802 196.305C93.29 191.001 95.4066 185.918 99.1643 182.174L182.847 98.8011Z" fill="#E84F4F"/>
</g>
<path d="M191.669 107.656C193.078 106.252 194.988 105.466 196.977 105.469L315.103 105.688C317.092 105.692 318.998 106.486 320.402 107.895L403.775 191.578C405.179 192.987 405.965 194.896 405.962 196.885L405.743 315.011C405.739 317 404.945 318.906 403.536 320.31L319.854 403.683C318.444 405.087 316.535 405.874 314.546 405.87L196.42 405.651C194.431 405.647 192.525 404.854 191.121 403.444L107.748 319.762C106.344 318.353 105.557 316.444 105.561 314.454L105.78 196.328C105.784 194.339 106.578 192.433 107.987 191.029L191.669 107.656Z" stroke="white" stroke-width="25"/>
<g filter="url(#filter2_d_147_440)">
<path d="M253.31 185.77L269.84 192.04C266.61 219.21 263.57 246.19 260.34 273.36H256.92L243.43 264.05C241.53 236.69 239.82 209.52 237.92 182.16L240.96 180.26L253.31 185.77ZM253.69 284.76L273.26 303.19L254.45 322L234.88 303.57L253.69 284.76Z" fill="white"/>
</g>
</g>
<defs>
<filter id="filter0_d_147_440" x="87.0612" y="86.9695" width="337.401" height="337.4" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="3"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_147_440"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_147_440" result="shape"/>
</filter>
<filter id="filter1_i_147_440" x="93.0612" y="92.9695" width="325.401" height="325.4" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="15"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_147_440"/>
</filter>
<filter id="filter2_d_147_440" x="223.08" y="168.46" width="61.98" height="165.34" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="5.9"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_147_440"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_147_440" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@ -0,0 +1,24 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_147_502)">
<mask id="path-1-outside-1_147_502" maskUnits="userSpaceOnUse" x="62.4252" y="39.6795" width="359.205" height="422.161" fill="black">
<rect fill="white" x="62.4252" y="39.6795" width="359.205" height="422.161"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M278.699 80.2519L370.963 133.521C373.081 134.743 372.925 137.85 370.695 138.854L324.195 159.797C323.622 160.055 323.144 160.487 322.829 161.032L303.476 194.552C302.971 195.428 302.94 196.5 303.396 197.403L331.245 252.61C331.7 253.514 331.67 254.585 331.164 255.461L319.397 275.843C318.569 277.277 316.734 277.769 315.299 276.941L182.325 200.168C180.89 199.34 180.399 197.505 181.227 196.07L192.994 175.689C193.5 174.813 194.413 174.251 195.423 174.194L257.158 170.708C258.168 170.651 259.081 170.089 259.587 169.213L278.94 135.693C279.254 135.148 279.39 134.518 279.327 133.892L274.214 83.1507C273.969 80.7177 276.581 79.0292 278.699 80.2519ZM234.995 230.577L157.764 392.383C157.233 393.495 158.793 394.396 159.491 393.38L261.004 245.593L234.995 230.577Z"/>
</mask>
<path fill-rule="evenodd" clip-rule="evenodd" d="M278.699 80.2519L370.963 133.521C373.081 134.743 372.925 137.85 370.695 138.854L324.195 159.797C323.622 160.055 323.144 160.487 322.829 161.032L303.476 194.552C302.971 195.428 302.94 196.5 303.396 197.403L331.245 252.61C331.7 253.514 331.67 254.585 331.164 255.461L319.397 275.843C318.569 277.277 316.734 277.769 315.299 276.941L182.325 200.168C180.89 199.34 180.399 197.505 181.227 196.07L192.994 175.689C193.5 174.813 194.413 174.251 195.423 174.194L257.158 170.708C258.168 170.651 259.081 170.089 259.587 169.213L278.94 135.693C279.254 135.148 279.39 134.518 279.327 133.892L274.214 83.1507C273.969 80.7177 276.581 79.0292 278.699 80.2519ZM234.995 230.577L157.764 392.383C157.233 393.495 158.793 394.396 159.491 393.38L261.004 245.593L234.995 230.577Z" fill="#F0F2F4"/>
<path d="M370.695 138.854L362.482 120.618L362.482 120.618L370.695 138.854ZM324.195 159.797L315.982 141.561L315.982 141.561L324.195 159.797ZM322.829 161.032L305.509 151.032L322.829 161.032ZM303.476 194.552L320.797 204.552L303.476 194.552ZM303.396 197.403L285.539 206.411L285.539 206.411L303.396 197.403ZM331.245 252.61L313.388 261.618L313.388 261.618L331.245 252.61ZM331.164 255.461L348.485 265.461L331.164 255.461ZM319.397 275.843L302.077 265.843L319.397 275.843ZM195.423 174.194L196.55 194.162L196.551 194.162L195.423 174.194ZM257.158 170.708L258.286 190.676L258.286 190.676L257.158 170.708ZM279.327 133.892L299.226 131.887L299.226 131.887L279.327 133.892ZM274.214 83.1507L254.314 85.1558L254.314 85.1558L274.214 83.1507ZM157.764 392.383L139.715 383.768L157.764 392.383ZM234.995 230.577L244.995 213.257L226.263 202.442L216.946 221.962L234.995 230.577ZM159.491 393.38L143.006 382.056L143.006 382.056L159.491 393.38ZM261.004 245.593L277.489 256.917L289.736 239.088L271.004 228.273L261.004 245.593ZM380.963 116.2L288.699 62.9314L268.699 97.5724L360.963 150.841L380.963 116.2ZM378.908 157.09C396.002 149.391 397.199 125.574 380.963 116.2L360.963 150.841C348.963 143.913 349.847 126.309 362.482 120.618L378.908 157.09ZM332.408 178.033L378.908 157.09L362.482 120.618L315.982 141.561L332.408 178.033ZM340.15 171.032C338.367 174.12 335.659 176.569 332.408 178.033L315.982 141.561C311.584 143.542 307.92 146.855 305.509 151.032L340.15 171.032ZM320.797 204.552L340.15 171.032L305.509 151.032L286.156 184.552L320.797 204.552ZM321.253 188.396C323.834 193.514 323.663 199.588 320.797 204.552L286.156 184.552C282.278 191.268 282.046 199.487 285.539 206.411L321.253 188.396ZM349.101 243.603L321.253 188.396L285.539 206.411L313.388 261.618L349.101 243.603ZM348.485 265.461C352.362 258.745 352.594 250.527 349.101 243.603L313.388 261.618C310.806 256.5 310.978 250.426 313.844 245.461L348.485 265.461ZM336.718 285.843L348.485 265.461L313.844 245.461L302.077 265.843L336.718 285.843ZM305.299 294.261C316.3 300.612 330.367 296.843 336.718 285.843L302.077 265.843C306.771 257.712 317.168 254.926 325.299 259.62L305.299 294.261ZM172.325 217.489L305.299 294.261L325.299 259.62L192.325 182.848L172.325 217.489ZM163.907 186.07C157.555 197.071 161.324 211.137 172.325 217.489L192.325 182.848C200.456 187.542 203.242 197.939 198.548 206.07L163.907 186.07ZM175.674 165.689L163.907 186.07L198.548 206.07L210.315 185.689L175.674 165.689ZM194.296 154.225C186.553 154.663 179.551 158.973 175.674 165.689L210.315 185.689C207.449 190.653 202.274 193.839 196.55 194.162L194.296 154.225ZM256.031 150.74L194.296 154.225L196.551 194.162L258.286 190.676L256.031 150.74ZM242.267 159.213C245.133 154.248 250.308 151.063 256.031 150.74L258.286 190.676C266.029 190.239 273.03 185.929 276.908 179.213L242.267 159.213ZM261.619 125.693L242.267 159.213L276.908 179.213L296.26 145.693L261.619 125.693ZM259.427 135.897C259.07 132.35 259.837 128.78 261.619 125.693L296.26 145.693C298.672 141.516 299.709 136.686 299.226 131.887L259.427 135.897ZM254.314 85.1558L259.427 135.897L299.226 131.887L294.113 81.1456L254.314 85.1558ZM288.699 62.9314C272.463 53.5577 252.435 66.503 254.314 85.1558L294.113 81.1456C295.502 94.9325 280.699 104.501 268.699 97.5724L288.699 62.9314ZM175.814 400.998L253.045 239.192L216.946 221.962L139.715 383.768L175.814 400.998ZM143.006 382.056C156.27 362.745 185.903 379.861 175.814 400.998L139.715 383.768C128.564 407.13 161.317 426.046 175.977 404.703L143.006 382.056ZM244.518 234.269L143.006 382.056L175.977 404.703L277.489 256.917L244.518 234.269ZM224.995 247.898L251.004 262.914L271.004 228.273L244.995 213.257L224.995 247.898Z" fill="white" mask="url(#path-1-outside-1_147_502)"/>
<path d="M370.963 133.521L278.699 80.2519C276.581 79.0292 273.969 80.7177 274.214 83.1507L279.327 133.892C279.39 134.518 279.254 135.148 278.94 135.693L259.587 169.213C259.081 170.089 258.168 170.651 257.158 170.708L195.423 174.194C194.413 174.251 193.5 174.813 192.994 175.689L181.227 196.07C180.399 197.505 180.89 199.34 182.325 200.168L315.299 276.941C316.734 277.769 318.569 277.277 319.397 275.843L331.164 255.461C331.67 254.585 331.7 253.514 331.245 252.61L303.396 197.403C302.94 196.5 302.971 195.428 303.476 194.552L322.829 161.032C323.144 160.487 323.622 160.055 324.195 159.797L370.695 138.854C372.925 137.85 373.081 134.743 370.963 133.521Z" fill="#E14B44"/>
<path d="M157.764 392.383L234.995 230.577L261.004 245.593L159.491 393.38C158.793 394.396 157.233 393.495 157.764 392.383Z" fill="#F0F2F4"/>
</g>
<defs>
<filter id="filter0_d_147_502" x="131.443" y="53.8034" width="267.021" height="366.21" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="3"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_147_502"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_147_502" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 7.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 212 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 38 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 55 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 130 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 32 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 65 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 103 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 81 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 27 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 28 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 45 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 90 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 127 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 61 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 37 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 64 KiB

View File

@ -119,7 +119,7 @@ export const createConfiguration: (
assetModuleFilename:
buildFlags.mode === 'production'
? 'assets/[name]-[contenthash:8][ext][query]'
: '[name][ext]',
: '[name]-[contenthash:8][ext]',
devtoolModuleFilenameTemplate: 'webpack://[namespace]/[resource-path]',
hotUpdateChunkFilename: 'hot/[id].[fullhash].js',
hotUpdateMainFilename: 'hot/[runtime].[fullhash].json',