1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-05 01:50:49 +00:00

Adding more emojis

This commit is contained in:
Arnaud Roques 2021-12-06 19:58:08 +01:00
parent 4a1856f6ee
commit 42d759d951
840 changed files with 1590 additions and 384 deletions

View File

@ -39,6 +39,7 @@
<copy todir="build/net/sourceforge/plantuml/emojitwo/data">
<fileset dir="src/net/sourceforge/plantuml/emojitwo/data">
<include name="*.svg" />
<include name="*.txt" />
</fileset>
</copy>
<copy todir="build/net/sourceforge/plantuml/fun">

View File

@ -146,6 +146,7 @@
<include>net/sourceforge/plantuml/openiconic/data/*.txt</include>
<include>net/sourceforge/plantuml/openiconic/data/*.svg</include>
<include>net/sourceforge/plantuml/emojitwo/data/*.svg</include>
<include>net/sourceforge/plantuml/emojitwo/data/*.txt</include>
<include>net/sourceforge/plantuml/fun/*.png</include>
<include>sprites/archimate/*.png</include>
<include>net/sourceforge/plantuml/dedication/*.png</include>

View File

@ -65,6 +65,7 @@ import net.sourceforge.plantuml.eggs.PSystemEggFactory;
import net.sourceforge.plantuml.eggs.PSystemPathFactory;
import net.sourceforge.plantuml.eggs.PSystemRIPFactory;
import net.sourceforge.plantuml.eggs.PSystemWelcomeFactory;
import net.sourceforge.plantuml.emojitwo.PSystemListEmojiFactory;
import net.sourceforge.plantuml.error.PSystemError;
import net.sourceforge.plantuml.error.PSystemErrorUtils;
import net.sourceforge.plantuml.flowdiagram.FlowDiagramFactory;
@ -169,6 +170,7 @@ public class PSystemBuilder {
factories.add(new PSystemDonorsFactory());
factories.add(new PSystemSkinparameterListFactory());
factories.add(new PSystemListFontsFactory());
factories.add(new PSystemListEmojiFactory());
factories.add(new PSystemOpenIconicFactory());
factories.add(new PSystemListOpenIconicFactory());
factories.add(new PSystemListInternalSpritesFactory());

View File

@ -39,19 +39,21 @@ import java.awt.geom.Dimension2D;
import net.sourceforge.plantuml.Dimension2DDouble;
import net.sourceforge.plantuml.emojitwo.EmojiTwo;
import net.sourceforge.plantuml.graphic.FontConfiguration;
import net.sourceforge.plantuml.graphic.StringBounder;
import net.sourceforge.plantuml.ugraphic.UGraphic;
import net.sourceforge.plantuml.ugraphic.color.HColor;
public class AtomEmojiTwo extends AbstractAtom implements Atom {
private static final double MAGIC = 4.0;
private static final double MAGIC = 40.0;
private final EmojiTwo emojiTwo;
private final double factor;
private final HColor color;
public AtomEmojiTwo(EmojiTwo emojiTwo, double scale, FontConfiguration fontConfiguration) {
public AtomEmojiTwo(EmojiTwo emojiTwo, double scale, double size2D, HColor color) {
this.emojiTwo = emojiTwo;
this.factor = scale * fontConfiguration.getSize2D() / 12.0 / MAGIC;
this.factor = scale * size2D / MAGIC;
this.color = color;
}
public Dimension2D calculateDimension(StringBounder stringBounder) {
@ -64,7 +66,7 @@ public class AtomEmojiTwo extends AbstractAtom implements Atom {
}
public void drawU(UGraphic ug) {
emojiTwo.drawU(ug, this.factor);
emojiTwo.drawU(ug, this.factor, this.color);
}
}

View File

@ -70,8 +70,9 @@ public class CommandCreoleEmojiTwo implements Command {
if (m.find() == false)
throw new IllegalStateException();
final String emoji = m.group(2);
stripe.addEmojiTwo(emoji);
final boolean monochrome = m.group(2).equals(":") == false;
final String emoji = m.group(4);
stripe.addEmojiTwo(emoji, monochrome, m.group(3));
return line.substring(m.group(1).length());
}

View File

@ -105,7 +105,7 @@ public class AtomTextUtils {
final String valOpenicon = m.group(1);
final String valSprite = m.group(3);
final String valImg = m.group(5);
final String valEmojiTwo = m.group(6);
final String valEmojiTwo = m.group(7);
if (valEmojiTwo != null)
throw new UnsupportedOperationException();

View File

@ -1,91 +0,0 @@
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
* (C) Copyright 2009-2020, Arnaud Roques
*
* Project Info: http://plantuml.com
*
* If you like this project or if you find it useful, you can support us at:
*
* http://plantuml.com/patreon (only 1$ per month!)
* http://plantuml.com/paypal
*
* This file is part of PlantUML.
*
* PlantUML is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* PlantUML distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
* License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
*
*
* Original Author: Arnaud Roques
*
*
*/
package net.sourceforge.plantuml.creole.legacy;
import java.util.regex.Pattern;
// Syntax from https://github.com/ikatyang/emoji-cheat-sheet/blob/master/README.md
// Unicode from https://unicode.org/emoji/charts/full-emoji-list.html
public enum EmojiUnused {
wave(0x1F44B), //
grinning(0x1F600), //
yum(0x1F60B), //
// smile(0x1F642), //
disappointed(0x2639), //
smile(0x263A), //
innocentfoo(0x1F607); //
static private final Pattern ALL = allPattern();
private final int[] codePoints;
private EmojiUnused(int... codePoints) {
this.codePoints = codePoints;
}
private static Pattern allPattern() {
final StringBuilder result = new StringBuilder();
result.append("\\<:(");
for (EmojiUnused emoji : EmojiUnused.values()) {
if (result.toString().endsWith("(") == false)
result.append("|");
result.append(emoji.name());
}
result.append("):\\>");
return Pattern.compile(result.toString());
}
private String toJavaString() {
final StringBuilder result = new StringBuilder();
for (Integer codePoint : codePoints)
for (char ch : Character.toChars(codePoint))
result.append(ch);
return result.toString();
}
public static String replace(String s) {
if (ALL.matcher(s).find())
for (EmojiUnused emoji : EmojiUnused.values())
s = s.replace("<:" + emoji.name() + ":>", emoji.toJavaString());
return s;
}
}

View File

@ -87,6 +87,7 @@ import net.sourceforge.plantuml.openiconic.OpenIcon;
import net.sourceforge.plantuml.security.SecurityUtils;
import net.sourceforge.plantuml.sprite.Sprite;
import net.sourceforge.plantuml.ugraphic.color.HColor;
import net.sourceforge.plantuml.ugraphic.color.NoSuchColorException;
import net.sourceforge.plantuml.utils.CharHidder;
public class StripeSimple implements Stripe {
@ -265,10 +266,21 @@ public class StripeSimple implements Stripe {
atoms.add(new AtomOpenIcon(color, scale, openIcon, fontConfiguration, null));
}
public void addEmojiTwo(String emoji) {
public void addEmojiTwo(String emoji, boolean monochrome, String forcedColor) {
final EmojiTwo emojiTwo = EmojiTwo.retrieve(emoji);
if (emojiTwo != null)
atoms.add(new AtomEmojiTwo(emojiTwo, 1, fontConfiguration));
if (emojiTwo != null) {
HColor col = null;
if (monochrome) {
col = fontConfiguration.getColor();
if (forcedColor != null)
try {
col = skinParam.getIHtmlColorSet().getColor(skinParam.getThemeStyle(), forcedColor);
} catch (NoSuchColorException e) {
}
}
atoms.add(new AtomEmojiTwo(emojiTwo, 1, fontConfiguration.getSize2D(), col));
}
}

View File

@ -92,28 +92,30 @@ public class Display implements Iterable<CharSequence> {
public final static Display NULL = new Display(null, null, true, CreoleMode.FULL);
public Display withoutStereotypeIfNeeded(Style usedStyle) {
if (this == NULL)
return NULL;
final boolean showStereotype = usedStyle.value(PName.ShowStereotype).asBoolean();
if (showStereotype) {
if (showStereotype)
return this;
}
final List<CharSequence> copy = new ArrayList<>(displayData);
final Display result = new Display(naturalHorizontalAlignment, isNull, defaultCreoleMode);
for (Iterator<CharSequence> it = copy.iterator(); it.hasNext();) {
final CharSequence cs = it.next();
if (cs instanceof Stereotype && usedStyle.getSignature().match(((Stereotype) cs))) {
if (cs instanceof Stereotype && usedStyle.getSignature().match(((Stereotype) cs)))
it.remove();
}
}
result.displayData.addAll(copy);
return result;
}
public Stereotype getStereotypeIfAny() {
for (CharSequence cs : displayData) {
if (cs instanceof Stereotype) {
for (CharSequence cs : displayData)
if (cs instanceof Stereotype)
return (Stereotype) cs;
}
}
return null;
}
@ -122,9 +124,8 @@ public class Display implements Iterable<CharSequence> {
final Display result = new Display(this, defaultCreoleMode);
for (int i = 0; i < result.displayData.size(); i++) {
final CharSequence s = displayData.get(i);
if (s.toString().contains("\\t")) {
if (s.toString().contains("\\t"))
result.displayData.set(i, s.toString().replace("\\t", "\t"));
}
}
return result;
}
@ -132,9 +133,9 @@ public class Display implements Iterable<CharSequence> {
public Display replace(String src, String dest) {
final List<CharSequence> newDisplay = new ArrayList<>();
for (CharSequence cs : displayData) {
if (cs.toString().contains(src)) {
if (cs.toString().contains(src))
cs = cs.toString().replace(src, dest);
}
newDisplay.add(cs);
}
return new Display(newDisplay, naturalHorizontalAlignment, isNull, defaultCreoleMode);
@ -155,9 +156,9 @@ public class Display implements Iterable<CharSequence> {
public static Display createFoo(List<StringLocated> data) throws NoSuchColorException {
final List<CharSequence> tmp = new ArrayList<>();
for (StringLocated s : data) {
for (StringLocated s : data)
tmp.add(s.getString());
}
final Display result = create(tmp);
CreoleParser.checkColor(result);
return result;
@ -178,10 +179,9 @@ public class Display implements Iterable<CharSequence> {
}
public static Display getWithNewlines(String s) {
if (s == null) {
// Thread.dumpStack();
if (s == null)
return NULL;
}
final List<String> result = new ArrayList<>();
final StringBuilder current = new StringBuilder();
HorizontalAlignment naturalHorizontalAlignment = null;
@ -189,20 +189,20 @@ public class Display implements Iterable<CharSequence> {
for (int i = 0; i < s.length(); i++) {
final char c = s.charAt(i);
final String sub = s.substring(i);
if (sub.startsWith("<math>") || sub.startsWith("<latex>") || sub.startsWith("[[")) {
if (sub.startsWith("<math>") || sub.startsWith("<latex>") || sub.startsWith("[["))
rawMode = true;
} else if (sub.startsWith("</math>") || sub.startsWith("</latex>") || sub.startsWith("]]")) {
else if (sub.startsWith("</math>") || sub.startsWith("</latex>") || sub.startsWith("]]"))
rawMode = false;
}
if (rawMode == false && c == '\\' && i < s.length() - 1) {
final char c2 = s.charAt(i + 1);
i++;
if (c2 == 'n' || c2 == 'r' || c2 == 'l') {
if (c2 == 'r') {
if (c2 == 'r')
naturalHorizontalAlignment = HorizontalAlignment.RIGHT;
} else if (c2 == 'l') {
else if (c2 == 'l')
naturalHorizontalAlignment = HorizontalAlignment.LEFT;
}
result.add(current.toString());
current.setLength(0);
} else if (c2 == 't') {
@ -239,9 +239,9 @@ public class Display implements Iterable<CharSequence> {
private Display(Collection<? extends CharSequence> other, HorizontalAlignment naturalHorizontalAlignment,
boolean isNull, CreoleMode defaultCreoleMode) {
this(naturalHorizontalAlignment, isNull, defaultCreoleMode);
if (isNull == false) {
if (isNull == false)
this.displayData.addAll(manageEmbeddedDiagrams(other));
}
}
private static List<CharSequence> manageEmbeddedDiagrams(final Collection<? extends CharSequence> strings) {
@ -255,9 +255,9 @@ public class Display implements Iterable<CharSequence> {
other.add("@start" + type);
while (it.hasNext()) {
final CharSequence s2 = it.next();
if (s2 != null && StringUtils.trin(s2.toString()).equals("}}")) {
if (s2 != null && StringUtils.trin(s2.toString()).equals("}}"))
break;
}
other.add(s2);
}
other.add("@end" + type);
@ -276,9 +276,9 @@ public class Display implements Iterable<CharSequence> {
result.add(line);
} else {
String lineString = line.toString();
if (first && VisibilityModifier.isVisibilityCharacter(line)) {
if (first && VisibilityModifier.isVisibilityCharacter(line))
lineString = lineString.substring(1).trim();
}
final String withGuillement = Guillemet.GUILLEMET.manageGuillemet(lineString);
result.add(withGuillement);
}
@ -288,9 +288,9 @@ public class Display implements Iterable<CharSequence> {
}
public Display withPage(int page, int lastpage) {
if (displayData == null) {
if (displayData == null)
return this;
}
final List<CharSequence> result = new ArrayList<>();
for (CharSequence line : displayData) {
line = line.toString().replace("%page%", "" + page);
@ -314,17 +314,17 @@ public class Display implements Iterable<CharSequence> {
public String getEndingStereotype() {
final Matcher2 m = patternStereotype.matcher(displayData.get(displayData.size() - 1));
if (m.matches()) {
if (m.matches())
return m.group(2);
}
return null;
}
public Display underlined() {
final List<CharSequence> result = new ArrayList<>();
for (CharSequence line : displayData) {
for (CharSequence line : displayData)
result.add("<u>" + line);
}
return new Display(result, this.naturalHorizontalAlignment, this.isNull, this.defaultCreoleMode);
}
@ -346,17 +346,17 @@ public class Display implements Iterable<CharSequence> {
}
public Display withCreoleMode(CreoleMode mode) {
if (isNull) {
if (isNull)
throw new IllegalArgumentException();
}
return new Display(this, mode);
}
@Override
public String toString() {
if (isNull) {
if (isNull)
return "NULL";
}
return displayData.toString();
}
@ -391,18 +391,18 @@ public class Display implements Iterable<CharSequence> {
public Display addGeneric(CharSequence s) {
final Display result = new Display(this, this.defaultCreoleMode);
final int size = displayData.size();
if (size == 0) {
if (size == 0)
result.displayData.add("<" + s + ">");
} else {
else
result.displayData.set(size - 1, displayData.get(size - 1) + "<" + s + ">");
}
return result;
}
public int size() {
if (isNull) {
if (isNull)
return 0;
}
return displayData.size();
}
@ -435,11 +435,10 @@ public class Display implements Iterable<CharSequence> {
public boolean hasUrl() {
final UrlBuilder urlBuilder = new UrlBuilder(null, ModeUrl.ANYWHERE);
for (CharSequence s : this) {
if (urlBuilder.getUrl(s.toString()) != null) {
for (CharSequence s : this)
if (urlBuilder.getUrl(s.toString()) != null)
return true;
}
}
return false;
}
@ -506,24 +505,23 @@ public class Display implements Iterable<CharSequence> {
ISkinSimple spriteContainer, LineBreakStrategy maxMessageSize, CreoleMode creoleMode,
UFont fontForStereotype, HColor htmlColorForStereotype) {
Objects.requireNonNull(maxMessageSize);
if (getNaturalHorizontalAlignment() != null) {
if (getNaturalHorizontalAlignment() != null)
horizontalAlignment = getNaturalHorizontalAlignment();
}
final FontConfiguration stereotypeConfiguration = fontConfiguration.forceFont(fontForStereotype,
htmlColorForStereotype);
if (size() > 0) {
if (get(0) instanceof Stereotype) {
if (get(0) instanceof Stereotype)
return createStereotype(fontConfiguration, horizontalAlignment, spriteContainer, 0, fontForStereotype,
htmlColorForStereotype, maxMessageSize, creoleMode);
}
if (get(size() - 1) instanceof Stereotype) {
if (get(size() - 1) instanceof Stereotype)
return createStereotype(fontConfiguration, horizontalAlignment, spriteContainer, size() - 1,
fontForStereotype, htmlColorForStereotype, maxMessageSize, creoleMode);
}
if (get(0) instanceof MessageNumber) {
if (get(0) instanceof MessageNumber)
return createMessageNumber(fontConfiguration, horizontalAlignment, spriteContainer, maxMessageSize,
stereotypeConfiguration);
}
}
return getCreole(fontConfiguration, horizontalAlignment, spriteContainer, maxMessageSize, creoleMode,
@ -535,19 +533,19 @@ public class Display implements Iterable<CharSequence> {
LineBreakStrategy maxMessageSize, CreoleMode creoleMode) {
final Stereotype stereotype = (Stereotype) get(position);
TextBlock circledCharacter = null;
if (stereotype.isSpotted()) {
if (stereotype.isSpotted())
circledCharacter = new CircledCharacter(stereotype.getCharacter(), stereotype.getRadius(),
stereotype.getCircledFont(), stereotype.getHtmlColor(), null, fontConfiguration.getColor());
} else {
else
circledCharacter = stereotype.getSprite(spriteContainer);
}
final FontConfiguration stereotypeConfiguration = fontConfiguration.forceFont(fontForStereotype,
htmlColorForStereotype);
final TextBlock result = getCreole(fontConfiguration, horizontalAlignment, (ISkinSimple) spriteContainer,
maxMessageSize, creoleMode, stereotypeConfiguration);
if (circledCharacter != null) {
if (circledCharacter != null)
return new TextBlockSprited(circledCharacter, result);
}
return result;
}
@ -583,23 +581,22 @@ public class Display implements Iterable<CharSequence> {
}
private static boolean hasSeveralGuideLines(Collection<? extends CharSequence> all) {
if (all.size() <= 1) {
if (all.size() <= 1)
return false;
}
for (CharSequence cs : all) {
final String s = cs.toString();
if (s.startsWith("< ")) {
if (s.startsWith("< "))
return true;
}
if (s.startsWith("> ")) {
if (s.startsWith("> "))
return true;
}
if (s.endsWith(" <")) {
if (s.endsWith(" <"))
return true;
}
if (s.endsWith(" >")) {
if (s.endsWith(" >"))
return true;
}
}
return false;
}

View File

@ -2,11 +2,14 @@ package net.sourceforge.plantuml.emojitwo;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.TreeMap;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
@ -14,45 +17,67 @@ import net.sourceforge.plantuml.emojitwo.data.Dummy;
import net.sourceforge.plantuml.openiconic.SvgPath;
import net.sourceforge.plantuml.ugraphic.UEllipse;
import net.sourceforge.plantuml.ugraphic.UGraphic;
import net.sourceforge.plantuml.ugraphic.UPolygon;
import net.sourceforge.plantuml.ugraphic.URectangle;
import net.sourceforge.plantuml.ugraphic.UStroke;
import net.sourceforge.plantuml.ugraphic.UTranslate;
import net.sourceforge.plantuml.ugraphic.color.HColor;
import net.sourceforge.plantuml.ugraphic.color.HColorNone;
import net.sourceforge.plantuml.ugraphic.color.HColorSet;
import net.sourceforge.plantuml.ugraphic.color.HColorSimple;
// Shorcut from https://github.com/ikatyang/emoji-cheat-sheet/blob/master/README.md
// Emojji from https://github.com/EmojiTwo/emojitwo
// Shorcut from https://api.github.com/emojis
public class EmojiTwo {
private final static Map<String, EmojiTwo> ALL = new HashMap<>();
static {
new EmojiTwo("2600");
new EmojiTwo("1f600", "smile");
new EmojiTwo("1f607", "innocent");
new EmojiTwo("1f60b", "yum");
try (BufferedReader br = new BufferedReader(new InputStreamReader(getRessourceAllTxt()))) {
String s = null;
while ((s = br.readLine()) != null) {
new EmojiTwo(s);
}
} catch (IOException e) {
e.printStackTrace();
}
}
public static Map<String, EmojiTwo> getAll() {
return Collections.unmodifiableMap(new TreeMap<>(ALL));
}
static private InputStream getRessourceAllTxt() {
return Dummy.class.getResourceAsStream("all.txt");
}
private final List<String> data = new ArrayList<>();
private final String unicode;
private final String shortcut;
private EmojiTwo(String unicode) {
this(unicode, null);
}
private EmojiTwo(String unicode, String shortcut) {
final int x = unicode.indexOf(';');
if (x == -1) {
this.shortcut = null;
} else {
this.shortcut = unicode.substring(x + 1);
ALL.put(this.shortcut, this);
unicode = unicode.substring(0, x);
}
this.unicode = unicode;
ALL.put(unicode, this);
if (shortcut != null)
ALL.put(shortcut, this);
}
public static String pattern() {
final StringBuilder sb = new StringBuilder("\\<:(");
final StringBuilder sb = new StringBuilder("\\<(:|(#\\w+)?\\.)(");
for (String s : ALL.keySet()) {
if (sb.toString().endsWith("(") == false)
sb.append("|");
sb.append(s);
}
sb.append("):\\>");
sb.append(")[:.]\\>");
return sb.toString();
}
@ -60,13 +85,6 @@ public class EmojiTwo {
return ALL.get(name.toLowerCase());
}
private HColor extractFill(String s) {
final String col = extractData("fill", s);
if (col == null)
return null;
return HColorSet.instance().getColorOrWhite(col);
}
private String extractData(String name, String s) {
final Pattern p = Pattern.compile(name + "=\"([^\"]+)\"");
final Matcher m = p.matcher(s);
@ -83,59 +101,279 @@ public class EmojiTwo {
new InputStreamReader(Dummy.class.getResourceAsStream(unicode + ".svg")))) {
String s = null;
while ((s = br.readLine()) != null) {
if (s.contains("<path")) {
data.add(s);
} else if (s.contains("<g ")) {
data.add(s);
} else if (s.contains("<circle ")) {
data.add(s);
} else {
// System.err.println("???=" + s);
if (s.startsWith("<svg ") && s.endsWith("</svg>")) {
loadSingleLine(s);
return;
}
addDirective(s);
}
}
}
public void drawU(UGraphic ug, double scale) {
private void loadSingleLine(String line) {
final Pattern p = Pattern.compile("\\<[^<>]+\\>");
final Matcher m = p.matcher(line);
while (m.find()) {
final String s = m.group(0);
addDirective(s);
}
}
private void addDirective(String s) {
if (s.contains("<path")) {
data.add(s);
} else if (s.contains("<g ")) {
data.add(s);
} else if (s.contains("<g>")) {
data.add(s);
} else if (s.contains("</g>")) {
data.add(s);
} else if (s.contains("<circle ")) {
data.add(s);
} else if (s.contains("<ellipse ")) {
data.add(s);
} else if (s.contains("<rect ")) {
data.add(s);
} else if (s.contains("<polygon ")) {
data.add(s);
} else {
// System.err.println("???=" + s);
}
}
public void drawU(UGraphic ug, double scale, HColor colorForMonochrome) {
try {
loadIfNeed();
} catch (IOException e) {
e.printStackTrace();
}
UGraphicWithScale ugs = new UGraphicWithScale(ug, scale);
final List<UGraphicWithScale> stack = new ArrayList<>();
for (String s : data) {
if (s.contains("<path")) {
// System.err.println("**path=" + s);
final HColor fill = extractFill(s);
if (fill != null)
ug = ug.apply(fill).apply(fill.bg());
final int x1 = s.indexOf("d=\"");
final int x2 = s.indexOf('"', x1 + 3);
final String tmp = s.substring(x1 + 3, x2);
// System.err.println("tmp=" + tmp);
final SvgPath svgPath = new SvgPath(tmp);
svgPath.drawMe(ug, scale);
if (s.contains("<path ")) {
drawPath(ugs, s, colorForMonochrome);
} else if (s.contains("</g>")) {
ugs = stack.remove(0);
} else if (s.contains("<g>")) {
stack.add(0, ugs);
} else if (s.contains("<g ")) {
// System.err.println("**g=" + s);
final HColor fill = extractFill(s);
if (fill != null)
ug = ug.apply(fill).apply(fill.bg());
stack.add(0, ugs);
ugs = applyFill(ugs, s, colorForMonochrome);
ugs = applyTransform(ugs, s);
} else if (s.contains("<circle ")) {
final double cx = Double.parseDouble(extractData("cx", s)) * scale;
final double cy = Double.parseDouble(extractData("cy", s)) * scale;
final double r = Double.parseDouble(extractData("r", s)) * scale;
final HColor fill = extractFill(s);
if (fill != null)
ug = ug.apply(fill).apply(fill.bg());
ug.apply(new UTranslate(cx - r, cy - r)).draw(new UEllipse(r * 2, r * 2));
drawCircle(ugs, s, colorForMonochrome);
} else if (s.contains("<ellipse ")) {
drawEllipse(ugs, s, colorForMonochrome);
} else if (s.contains("<rect ")) {
drawRect(ugs, s, colorForMonochrome);
} else if (s.contains("<polygon ")) {
drawPolygon(ugs, s, colorForMonochrome);
} else {
// System.err.println("**?=" + s);
}
}
}
private UGraphicWithScale applyFill(UGraphicWithScale ugs, String s, HColor colorForMonochrome) {
final String fillString = extractData("fill", s);
if (fillString == null)
return ugs;
if (fillString.equals("none")) {
final String strokeString = extractData("stroke", s);
if (strokeString == null)
throw new IllegalArgumentException(s);
ugs = ugs.apply(new HColorNone().bg());
final HColor stroke = getTrueColor(strokeString, colorForMonochrome);
ugs = ugs.apply(stroke);
final String strokeWidth = extractData("stroke-width", s);
if (strokeWidth != null) {
ugs = ugs.apply(new UStroke(Double.parseDouble(strokeWidth)));
}
} else {
final HColor fill = getTrueColor(fillString, colorForMonochrome);
ugs = ugs.apply(fill).apply(fill.bg());
}
return ugs;
}
private HColor getTrueColor(String code, HColor colorForMonochrome) {
final HColorSimple result = (HColorSimple) HColorSet.instance().getColorOrWhite(code);
if (colorForMonochrome == null)
return result;
return result.asMonochrome((HColorSimple) colorForMonochrome);
}
private void drawPolygon(UGraphicWithScale ugs, String s, HColor colorForMonochrome) {
final double scalex = ugs.getScaleX();
final double scaley = ugs.getScaleY();
final String points = extractData("points", s);
final UPolygon polygon = new UPolygon();
for (String pair : points.split(" ")) {
final String both[] = pair.split(",");
final double x = Double.parseDouble(both[0].trim());
final double y = Double.parseDouble(both[1].trim());
polygon.addPoint(x * scalex, y * scaley);
}
ugs = applyFill(ugs, s, colorForMonochrome);
ugs = applyTransform(ugs, s);
polygon.affine(ugs.getAffineTransform());
ugs.draw(polygon);
}
private void drawCircle(UGraphicWithScale ugs, String s, HColor colorForMonochrome) {
final double scalex = ugs.getScaleX();
final double scaley = ugs.getScaleY();
final double cx = Double.parseDouble(extractData("cx", s)) * scalex;
final double cy = Double.parseDouble(extractData("cy", s)) * scaley;
final double rx = Double.parseDouble(extractData("r", s)) * scalex;
final double ry = Double.parseDouble(extractData("r", s)) * scaley;
ugs = applyFill(ugs, s, colorForMonochrome);
ugs.apply(new UTranslate(cx - rx, cy - ry)).draw(new UEllipse(rx * 2, ry * 2));
}
private void drawRect(UGraphicWithScale ugs, String s, HColor colorForMonochrome) {
final double scalex = ugs.getScaleX();
final double scaley = ugs.getScaleY();
final double x = Double.parseDouble(extractData("x", s)) * scalex;
final double y = Double.parseDouble(extractData("y", s)) * scaley;
final double width = Double.parseDouble(extractData("width", s)) * scalex;
final double height = Double.parseDouble(extractData("height", s)) * scaley;
ugs = applyFill(ugs, s, colorForMonochrome);
ugs.apply(new UTranslate(x, y)).draw(new URectangle(width, height));
}
private void drawEllipse(UGraphicWithScale ugs, String s, HColor colorForMonochrome) {
final double scalex = ugs.getScaleX();
final double scaley = ugs.getScaleY();
final double cx = Double.parseDouble(extractData("cx", s)) * scalex;
final double cy = Double.parseDouble(extractData("cy", s)) * scaley;
final double rx = Double.parseDouble(extractData("rx", s)) * scalex;
final double ry = Double.parseDouble(extractData("ry", s)) * scaley;
ugs = applyFill(ugs, s, colorForMonochrome);
ugs.apply(new UTranslate(cx - rx, cy - ry)).draw(new UEllipse(rx * 2, ry * 2));
}
private void drawPath(UGraphicWithScale ugs, String s, HColor colorForMonochrome) {
s = s.replace("id=\"", "ID=\"");
ugs = applyFill(ugs, s, colorForMonochrome);
ugs = applyTransform(ugs, s);
final int x1 = s.indexOf("d=\"");
final int x2 = s.indexOf('"', x1 + 3);
final String tmp = s.substring(x1 + 3, x2);
final SvgPath svgPath = new SvgPath(tmp);
svgPath.drawMe(ugs.getUg(), ugs.getAffineTransform());
}
private UGraphicWithScale applyTransform(UGraphicWithScale ugs, String s) {
final String transform = extractData("transform", s);
if (transform == null)
return ugs;
if (transform.contains("rotate("))
return applyRotate(ugs, transform);
if (transform.contains("matrix("))
return applyMatrix(ugs, transform);
final double[] scale = getScale(transform);
final UTranslate translate = getTranslate(transform);
ugs = ugs.applyTranslate(translate.getDx(), translate.getDy());
return ugs.applyScale(scale[0], scale[1]);
}
private UGraphicWithScale applyMatrix(UGraphicWithScale ugs, final String transform) {
final Pattern p3 = Pattern
.compile("matrix\\(([-.0-9]+)[ ,]+([-.0-9]+)[ ,]+([-.0-9]+)[ ,]+([-.0-9]+)[ ,]+([-.0-9]+)[ ,]+([-.0-9]+)\\)");
final Matcher m3 = p3.matcher(transform);
if (m3.find()) {
final double v1 = Double.parseDouble(m3.group(1));
final double v2 = Double.parseDouble(m3.group(2));
final double v3 = Double.parseDouble(m3.group(3));
final double v4 = Double.parseDouble(m3.group(4));
final double v5 = Double.parseDouble(m3.group(5));
final double v6 = Double.parseDouble(m3.group(6));
ugs = ugs.applyMatrix(v1, v2, v3, v4, v5, v6);
} else
System.err.println("WARNING: " + transform);
return ugs;
}
private UGraphicWithScale applyRotate(UGraphicWithScale ugs, final String transform) {
final Pattern p3 = Pattern.compile("rotate\\(([-.0-9]+)[ ,]+([-.0-9]+)[ ,]+([-.0-9]+)\\)");
final Matcher m3 = p3.matcher(transform);
if (m3.find()) {
final double angle = Double.parseDouble(m3.group(1));
final double x = Double.parseDouble(m3.group(2));
final double y = Double.parseDouble(m3.group(3));
ugs = ugs.applyRotate(angle, x, y);
} else
System.err.println("WARNING: " + transform);
return ugs;
}
private UTranslate getTranslate(String transform) {
final double x;
final double y;
final Pattern p3 = Pattern.compile("translate\\(([-.0-9]+)[ ,]+([-.0-9]+)\\)");
final Matcher m3 = p3.matcher(transform);
if (m3.find()) {
x = Double.parseDouble(m3.group(1));
y = Double.parseDouble(m3.group(2));
} else {
final Pattern p4 = Pattern.compile("translate\\(([-.0-9]+)\\)");
final Matcher m4 = p4.matcher(transform);
if (m4.find()) {
x = Double.parseDouble(m4.group(1));
y = Double.parseDouble(m4.group(1));
} else
throw new UnsupportedOperationException(transform);
}
return new UTranslate(x, y);
}
private double[] getScale(String transform) {
final double scale[] = new double[] { 1, 1 };
final Pattern p1 = Pattern.compile("scale\\(([.0-9]+)\\)");
final Matcher m1 = p1.matcher(transform);
if (m1.find()) {
scale[0] = Double.parseDouble(m1.group(1));
scale[1] = scale[0];
} else {
final Pattern p2 = Pattern.compile("scale\\(([.0-9]+)[ ,]+([.0-9]+)\\)");
final Matcher m2 = p2.matcher(transform);
if (m2.find()) {
scale[0] = Double.parseDouble(m2.group(1));
scale[1] = Double.parseDouble(m2.group(2));
}
}
return scale;
}
public String getShortcut() {
return shortcut;
}
}

View File

@ -0,0 +1,82 @@
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
* (C) Copyright 2009-2020, Arnaud Roques
*
* Project Info: http://plantuml.com
*
* If you like this project or if you find it useful, you can support us at:
*
* http://plantuml.com/patreon (only 1$ per month!)
* http://plantuml.com/paypal
*
* This file is part of PlantUML.
*
* PlantUML is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* PlantUML distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
* License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
*
*
* Original Author: Arnaud Roques
*
*
*/
package net.sourceforge.plantuml.emojitwo;
import java.util.Map;
import java.util.Map.Entry;
import net.sourceforge.plantuml.PlainStringsDiagram;
import net.sourceforge.plantuml.core.DiagramDescription;
import net.sourceforge.plantuml.core.UmlSource;
public class PSystemListEmoji extends PlainStringsDiagram {
public PSystemListEmoji(UmlSource source, String text) {
super(source);
strings.add(" <b><size:16>Emoji available on Unicode Block " + text);
strings.add(" (Blocks available: 26, 1F3, 1F4, 1F5, 1F6, 1F9)");
strings.add(" ");
final Map<String, EmojiTwo> all = EmojiTwo.getAll();
for (Entry<String, EmojiTwo> ent : all.entrySet()) {
final String code = ent.getKey();
final StringBuilder sb = new StringBuilder();
if (code.startsWith(text) == false)
continue;
final String shortcut = ent.getValue().getShortcut();
sb.append("<size:13>");
sb.append("\"\"<U+003C>:" + code + ":<U+003E> \"\"");
sb.append("<:" + code + ":>");
sb.append(" ");
sb.append("<." + code + ".>");
if (shortcut != null) {
sb.append(" ");
sb.append("\"\"<U+003C>:" + shortcut + ":<U+003E> \"\"");
}
// strings.add(" ");
strings.add(sb.toString());
}
}
public DiagramDescription getDescription() {
return new DiagramDescription("(List Emoji)");
}
}

View File

@ -0,0 +1,56 @@
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
* (C) Copyright 2009-2020, Arnaud Roques
*
* Project Info: http://plantuml.com
*
* If you like this project or if you find it useful, you can support us at:
*
* http://plantuml.com/patreon (only 1$ per month!)
* http://plantuml.com/paypal
*
* This file is part of PlantUML.
*
* PlantUML is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* PlantUML distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
* License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
*
*
* Original Author: Arnaud Roques
*
*
*/
package net.sourceforge.plantuml.emojitwo;
import net.sourceforge.plantuml.AbstractPSystem;
import net.sourceforge.plantuml.StringUtils;
import net.sourceforge.plantuml.command.PSystemSingleLineFactory;
import net.sourceforge.plantuml.core.UmlSource;
public class PSystemListEmojiFactory extends PSystemSingleLineFactory {
@Override
protected AbstractPSystem executeLine(UmlSource source, String line) {
final String lineLower = StringUtils.goLowerCase(line);
if (lineLower.equals("emoji") || lineLower.startsWith("emoji ")) {
final int idx = line.indexOf(' ');
final String code = idx == -1 ? "26" : line.substring(idx + 1);
return new PSystemListEmoji(source, code.toLowerCase());
}
return null;
}
}

View File

@ -0,0 +1,71 @@
package net.sourceforge.plantuml.emojitwo;
import java.awt.geom.AffineTransform;
import net.sourceforge.plantuml.ugraphic.UChange;
import net.sourceforge.plantuml.ugraphic.UGraphic;
import net.sourceforge.plantuml.ugraphic.UShape;
public class UGraphicWithScale {
final private UGraphic ug;
final private AffineTransform at;
public UGraphicWithScale(UGraphic ug, double scale) {
this(ug, AffineTransform.getScaleInstance(scale, scale));
}
private UGraphicWithScale(UGraphic ug, AffineTransform at) {
this.ug = ug;
this.at = at;
}
public UGraphic getUg() {
return ug;
}
public double getScaleX() {
return at.getScaleX();
}
public double getScaleY() {
return at.getScaleY();
}
public UGraphicWithScale apply(UChange change) {
return new UGraphicWithScale(ug.apply(change), at);
}
public UGraphicWithScale applyScale(double changex, double changey) {
final AffineTransform copy = new AffineTransform(at);
copy.scale(changex, changey);
return new UGraphicWithScale(ug, copy);
}
public void draw(UShape shape) {
ug.draw(shape);
}
public UGraphicWithScale applyRotate(double angle, double x, double y) {
final AffineTransform copy = new AffineTransform(at);
copy.rotate(angle * Math.PI / 180, x, y);
return new UGraphicWithScale(ug, copy);
}
public UGraphicWithScale applyTranslate(double x, double y) {
final AffineTransform copy = new AffineTransform(at);
copy.translate(x, y);
return new UGraphicWithScale(ug, copy);
}
public AffineTransform getAffineTransform() {
return at;
}
public UGraphicWithScale applyMatrix(double v1, double v2, double v3, double v4, double v5, double v6) {
final AffineTransform copy = new AffineTransform(at);
copy.concatenate(new AffineTransform(new double[] { v1, v2, v3, v4, v5, v6 }));
return new UGraphicWithScale(ug, copy);
}
}

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><g fill="#4fd1d9"><path d="M58 33.2c-.4-14.1-12.6-24.7-26.7-22.1-12 2.2-19.3 15.1-13.9 26.1 2.6 5.4 9.1 7.8 14.8 6.5 6-1.3 9.2-8.5 6.9-13.9-1.3-3-6.3-1.7-5 1.4 2.4 5.7-3.6 9.1-8.5 7-3.7-1.6-4.9-5.9-4.9-9.6.1-9.1 10.7-14 18.7-12.6 10.2 1.9 14.6 13.6 13 22.8-1.7 9.9-10.8 16.5-20.3 18.2-3.3.6-1.9 5.6 1.4 5C47.6 59.4 58.4 47.8 58 33.2"/><path d="M46.6 25.5c-6.4-11.2-25.6-4.9-21 8.2 1.1 3.1 6.1 1.8 5-1.4-1.7-4.9 1.7-8.3 6.9-7.6 4 .6 6 5.1 6.4 8.6C45.4 45 31.8 51.1 22.5 47c-8.8-3.9-12.7-13.9-10.6-22.9 2.2-9 10.7-16.2 19.9-16.9 3.3-.3 3.3-5.4 0-5.2C18 3.1 7.1 14.4 6.1 28 5 41.6 16.8 54.1 30.5 53.6c14-.5 23-16.1 16.1-28.1"/></g></svg>

After

Width:  |  Height:  |  Size: 694 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#b4d7ee" d="M0 0h64v64H0z"/><g fill="#dae3ea"><path d="M19.7 6.4c0 .8-.7 1.5-1.5 1.5H5.3c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h12.9c.8 0 1.5.7 1.5 1.5"/><path d="M25.4 3.5c0 .8-.7 1.5-1.5 1.5H11c-.8 0-1.5-.7-1.5-1.5.1-.8.7-1.5 1.5-1.5h13c.8 0 1.4.7 1.4 1.5m34.8 16.1c0 .8-.7 1.5-1.5 1.5H45.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h12.9c.8 0 1.5.7 1.5 1.5"/><path d="M56.8 16.7c0 .8-.7 1.5-1.5 1.5H42.4c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h12.9c.8 0 1.5.7 1.5 1.5"/></g><path fill="#7c8d93" d="M48 30.7h16V49H44V34.7c0-2.2 1.8-4 4-4"/><path d="M60.8 34h.4c.4 0 .8.4.8 1v14h-2V35c0-.6.4-1 .8-1m-5 0h.4c.4 0 .8.4.8 1v14h-2V35c0-.6.4-1 .8-1" fill="#d6eef0"/><g fill="#7c8d93"><path d="M51.3 28h11v2.9h-11zM0 28.1h13.1v-5.2L0 25.9z"/><path d="M0 28h13v21H0z"/></g><path d="M9.5 36c0 .5-.4 1-1 1h-3c-.6 0-1-.5-1-1v-2c0-.6.4-1 1-1h3c.6 0 1 .4 1 1v2m0 8c0 .5-.4 1-1 1h-3c-.6 0-1-.5-1-1v-2c0-.6.4-1 1-1h3c.6 0 1 .4 1 1v2" fill="#d6eef0"/><path fill="#62727a" d="M23 4 13 15.3V49h20V15.3z"/><path fill="#d6eef0" d="M30 28c0 .5-.5 1-1 1H17c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h12c.5 0 1 .4 1 1v2"/><path fill="#ffdd7d" d="M30 44c0 .5-.5 1-1 1H17c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h12c.5 0 1 .4 1 1v2"/><path fill="#d6eef0" d="M30 20c0 .5-.5 1-1 1H17c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h12c.5 0 1 .4 1 1v2"/><path fill="#62727a" d="M50 23v-4l-6-2V6h-2v11l-6 2v4h-3v26h20V23z"/><path d="M41.5 30c0 .5-.5 1-1 1h-3c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h3c.5 0 1 .4 1 1v2m8 8c0 .5-.5 1-1 1h-3c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h3c.5 0 1 .4 1 1v2" fill="#d6eef0"/><path d="M41.5 46c0 .5-.5 1-1 1h-3c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h3c.5 0 1 .4 1 1v2m8 0c0 .5-.5 1-1 1h-3c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h3c.5 0 1 .4 1 1v2" fill="#6adbc6"/><path fill="#d6eef0" d="M30 36c0 .5-.5 1-1 1H17c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h12c.5 0 1 .4 1 1v2"/><path fill="#d0d0d0" d="m0 56 64-10v18H0z"/><path fill="#e8e8e8" d="M47 40.9c.4 0 .7.1 1.1.2.4-2.4 2.4-4.2 4.9-4.2 2 0 3.7 1.2 4.5 2.9.7-.5 1.5-.9 2.5-.9 2.2 0 4 1.8 4 4s-1.8 4-4 4H47c-1.7 0-3-1.3-3-3 0-1.6 1.3-3 3-3"/><circle cx="8" cy="52.9" fill="#d0d0d0" r="8"/><path d="M8.9 42.5c.5 0 1 .1 1.4.3.5-3.3 3.2-5.9 6.4-5.9 2.6 0 4.8 1.7 5.9 4 .9-.8 2-1.2 3.2-1.2 2.9 0 5.2 2.5 5.2 5.6 0 3.1-2.3 5.6-5.2 5.6H8.9C6.7 50.9 5 49 5 46.7c0-2.3 1.7-4.2 3.9-4.2M0 54c2.5 0 4.5 1.8 4.9 4.2.4-.2.7-.3 1.1-.3 1.7 0 3 1.3 3 3 0 1.6-1.3 3-3 3H0V54" fill="#e8e8e8"/><path fill="#d0d0d0" d="M58.2 41.6c-2.7 0-5.1.9-7 2.5-2.3-4.8-7.1-8.1-12.8-8.1-7 0-12.8 5.1-13.9 11.7-.9-.4-2-.6-3-.6-4.7 0-8.5 3.8-8.5 8.4 0 4.6 3.8 8.4 8.5 8.4H64V43.2c-1.7-1-3.7-1.6-5.8-1.6"/><path d="M59.2 50.3c-.6 0-1.2.1-1.7.3-.6-3.8-3.9-6.7-7.9-6.7-3.2 0-6 1.9-7.2 4.6-1.1-.9-2.5-1.4-4-1.4-3.5 0-6.4 2.9-6.4 6.4 0 3.5 2.9 6.4 6.4 6.4h20.8c2.7 0 4.8-2.1 4.8-4.8 0-2.6-2.1-4.8-4.8-4.8M28 58c-.4 0-.7.1-1.1.2-.4-2.4-2.4-4.2-4.9-4.2-2 0-3.7 1.2-4.5 2.9-.7-.6-1.6-.9-2.5-.9-2.2 0-4 1.8-4 4s1.8 4 4 4h13c1.7 0 3-1.3 3-3s-1.3-3-3-3" fill="#e8e8e8"/><path d="M47 63.9c-.9-4.6-5.1-8-10-8s-9.1 3.4-10 8h20m-25.5.1c-1.7-3.6-4.9-6-8.5-6s-6.8 2.4-8.5 6h17M0 42.9v8h9.8c-.9-4.5-5-8-9.8-8" fill="#d0d0d0"/></svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#d0d0d0" d="M35.428 25.084 46.74 13.771l1.839 1.838-11.314 11.314z"/><path fill="#f2b200" d="M36.7 26.3c-4.8-4.8-3.9-9.2-2.3-12.5L2.7 60l47-32c-3.2 1.5-8.4 2.8-13-1.7"/><path fill="#ffce31" d="M21.6 11.1c-2.9-2.9-4.3-6.7-3.7-9.8L2.7 60l32.1-46.9c-3 3.1-9 2.2-13.2-2"/><path fill="#ff8736" d="M61.6 45c-3.1.5-6.9-.8-9.8-3.7-4.2-4.2-5.1-10.2-2-13.3l-47 32 58.8-15"/><path d="m46.8 13.7.1.1 1.7 1.7.3.3 6.3-6.3c1-1 3-.7 4.4.6 1.4 1.4 1.7 3.3.6 4.4-.5.5-.4 1.5.3 2.2.7.7 1.7.8 2.2.3 2.1-2.1 1.5-6-1.3-8.7-2.8-2.8-6.7-3.4-8.7-1.3l-6.3 6.3.4.4M.5 62.3c.5.5 1.2.6 1.6.2l3.1-3.1c-.2-.4-.4-.8-.7-1.1-.3-.3-.7-.6-1.1-.7L.3 60.7c-.4.3-.3 1.1.2 1.6m43.9-41c-.1 0-.3-.1-.4-.3l-.4-.4 1.2-1.2c-.2 1.1.1 1.9-.4 1.9" fill="#3e4347"/></svg>

After

Width:  |  Height:  |  Size: 794 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#42ade2" d="M0 0h64v64H0z"/><path fill="#3e4347" d="M48 45.7h16V64H44V49.7c0-2.2 1.8-4 4-4"/><path d="M60.8 49h.4c.4 0 .8.4.8 1v14h-2V50c0-.6.4-1 .8-1m-5 0h.4c.4 0 .8.4.8 1v14h-2V50c0-.6.4-1 .8-1" fill="#d0d0d0"/><path d="M51.3 43h11v2.9h-11zM0 43.1h13.1v-5.2L0 40.9z" fill="#3e4347"/><path fill="#ffdd7d" d="M57.7 1.6s.5 6.9-3.3 11.1c-3.9 4.1-10.6 3.9-10.6 3.9 4.2 3.6 10.7 3.2 14.6-1 3.8-4.1 3.5-10.4-.7-14"/><path fill="#6adbc6" d="M10.6 14.3 8.9 11l-1.7 3.3L3.9 16l3.3 1.7L8.9 21l1.7-3.3 3.3-1.7z"/><path fill="#fff" d="m6.351 15.993 2.475-2.475 2.475 2.475-2.475 2.475z"/><path fill="#6adbc6" d="m34.2 8.7-1.6-3.4-1.7 3.4-3.3 1.6 3.3 1.7 1.7 3.3 1.6-3.3 3.4-1.7z"/><path fill="#fff" d="m30.097 10.368 2.475-2.474 2.475 2.474-2.475 2.475z"/><path fill="#6adbc6" d="M56.7 25.8 55 22.4l-1.7 3.4-3.3 1.6 3.3 1.7 1.7 3.3 1.7-3.3 3.3-1.7z"/><path fill="#fff" d="m52.442 27.406 2.475-2.475 2.475 2.475-2.475 2.474z"/><path fill="#3e4347" d="M0 43h13v21H0z"/><path d="M9.5 51c0 .5-.4 1-1 1h-3c-.6 0-1-.5-1-1v-2c0-.6.4-1 1-1h3c.6 0 1 .4 1 1v2m0 8c0 .5-.4 1-1 1h-3c-.6 0-1-.5-1-1v-2c0-.6.4-1 1-1h3c.6 0 1 .4 1 1v2" fill="#ed4c5c"/><path fill="#121314" d="M23 19 13 30.3V64h20V30.3z"/><path d="M30 43c0 .5-.5 1-1 1H17c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h12c.5 0 1 .4 1 1v2m0 16c0 .5-.5 1-1 1H17c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h12c.5 0 1 .4 1 1v2m0-24c0 .5-.5 1-1 1H17c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h12c.5 0 1 .4 1 1v2" fill="#ffdd7d"/><path fill="#121314" d="M50 38v-4l-6-2V21h-2v11l-6 2v4h-3v26h20V38z"/><path d="M41.5 45c0 .5-.5 1-1 1h-3c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h3c.5 0 1 .4 1 1v2m8 8c0 .5-.5 1-1 1h-3c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h3c.5 0 1 .4 1 1v2m-8 8c0 .5-.5 1-1 1h-3c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h3c.5 0 1 .4 1 1v2m8 0c0 .5-.5 1-1 1h-3c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h3c.5 0 1 .4 1 1v2" fill="#6adbc6"/><path fill="#ffdd7d" d="M30 51c0 .5-.5 1-1 1H17c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h12c.5 0 1 .4 1 1v2"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#f2b200" d="M0 0h64v64H0z"/><g fill="#ffdf99"><circle cx="32" cy="32" r="10.7"/><path d="M3.5 4.2c2.3 4.5 5.6 8.4 9.2 11.8 3.3 3.2 7.2 6.4 11.5 8.2-1.9-4.6-5.4-8.8-8.9-12.3-3.6-3.5-7.7-7.1-12.4-9 .2.4.4.9.6 1.3m38.7 15.7c-.9 1.4-1.7 2.8-2.4 4.3 4.6-1.9 8.8-5.5 12.3-8.9 3.5-3.5 7-7.6 8.9-12.3-3.6 1.5-6.9 4.1-9.9 6.6-3.3 3-6.4 6.4-8.9 10.3M29.9.4c-.4 3.7-.4 7.4 0 11 .3 3.2.8 6.5 2.1 9.5 2-4.7 2.4-10.3 2.4-15.4 0-1.4-.1-2.7-.2-4.1 0-.1-.1-1.4-.2-1.4h-2.8c-.6 0-1.2-.2-1.3.4M18.7 3.2c1 3.5 2.3 7 4 10.3 1.4 2.9 3.1 5.8 5.4 8.1.2-5.1-1.5-10.5-3.3-15.2-.5-1.4-1.1-2.7-1.8-4.1-.4-.6-.8-2.3-1.6-2.3h-3.5c.3 1.1.5 2.2.8 3.2m24.3-1c-1.8 3.2-3.3 6.6-4.5 10.1-1 3-1.9 6.3-1.9 9.5 2.8-2.6 4.9-6.1 6.6-9.4 2.1-3.9 3.7-8.1 4.7-12.4h-3.6C44 0 43.1 1.9 43 2.2m20.6 27.7c-3.7-.4-7.4-.4-11 0-3.2.3-6.6.8-9.5 2.1 4.7 2 10.3 2.4 15.4 2.4 1.4 0 2.7-.1 4.1-.2.2 0 1.4-.1 1.4-.2V31.2c0-.6.2-1.2-.4-1.3m-2.8-11.2c-3.5 1-7 2.3-10.3 4-2.9 1.4-5.8 3.1-8.1 5.4 5.1.2 10.5-1.5 15.2-3.3 1.4-.5 2.7-1.1 4.1-1.8.6-.3 2.3-.8 2.3-1.5V18c-1.1.2-2.2.4-3.2.7M.4 34.1c3.7.4 7.4.4 11 0 3.2-.3 6.5-.8 9.5-2.1-4.7-2-10.3-2.4-15.4-2.4-1.4 0-2.7.1-4.1.2-.1 0-1.4.1-1.4.2v2.9c0 .5-.2 1.1.4 1.2M2.2 21c3.2 1.8 6.6 3.3 10.1 4.5 3 1 6.3 1.9 9.5 1.9-2.6-2.8-6.1-4.9-9.4-6.6-3.9-2-8.1-3.7-12.4-4.7v3.6c0 .3 1.9 1.2 2.2 1.3"/></g><path fill="#3e4347" d="M0 29.8v11.3l16.7-4.4z"/><path fill="#d0d0d0" d="m64 31.8-16.7-9.5L32 35l-15.3-7.7L0 38.5v4.2h64z"/><path fill="#3e4347" d="m47.3 22.3 5.6 6.6-10.2 3.6 12.9 4.2-12.9 3.8-26-13.2-4.2 7.7 8.8 1.7-4.6 6H64V31.8z"/><path fill="#83bf4f" d="M64 39.8c-1.8.3-3.6.9-5.1 1.7-.9-1.2-2.4-2-4-2-1.4 0-2.7.6-3.6 1.5-.4-.3-.8-.5-1.3-.5-.8 0-1.5.5-1.8 1.1-.7-.3-1.5-.5-2.3-.5-1.2 0-2.2.4-3.1 1-1.4-1.6-3.4-2.6-5.6-2.6-2.2 0-4.2 1-5.5 2.5-.6-.9-1.5-1.5-2.7-1.5-1.4 0-2.6.9-3 2.2-1-1-2.3-1.7-3.8-1.7-1.1 0-2.1.3-2.9.9-.1-2.9-2.4-5.2-5.4-5.2-2.7 0-4.9 1.9-5.3 4.5-1.3-1.1-2.9-1.7-4.7-1.7-1.4 0-2.6.4-3.7 1V64h64L64 39.8"/><path d="M63.5 47.2c-2.4-1.2-5.4-1.2-7.7.3-.6-2.4-2.8-4.4-5.4-4.4-2.5 0-6.1 1.8-6.1 4.7-1.9-.8-4.3-.7-5.9.6-1-1.6-3.1-2.1-4.8-1.5-.7.3-.9 1-1.7.4-.8-.6-1.7-1.1-2.7-1.3-1.9-.5-3.9-.4-5.6.4-.4.2-.8.4-1.2.7-.4.3-.8.8-1.2 1-.2.1-.7-.2-.9-.3-.5-.2-1.1-.3-1.7-.4-.9-.1-1.6.2-2.4.4-.3.1-.5-.3-.7-.4-.3-.2-.8-.4-1.2-.4-.6 0-1.1.4-1.7.3-.2 0-.7-.4-.9-.5l-1.5-.6c-1.8-.4-3.8.2-5.1 1.6-.5.5-1.5-.2-2.1-.4-1.1-.3-2.1-.6-3.2-.7 1.7.5 3.4 1 4.9 1.9.5.3.8-.5 1.2-.8.8-.6 1.7-.9 2.7-1 .9 0 1.7.2 2.5.6.5.3.8.9 1.3 1.2.2.1.5-.2.6-.3.3-.3.7-.3 1.1-.2.4.1.7.3.9.6.2.2.2.6.6.6.9-.2 1.6-.6 2.6-.5 1 .1 1.9.5 2.7 1 .4.3.6-.1 1-.4.4-.4.8-.7 1.3-1.1 3.1-2.4 6.9-.5 9.2 1.9.8-1 1.7-2.2 3.2-1.8 1.3.3 1.7 1.7 2.1 2.8 1-1 2.1-2 3.5-2.2 1.6-.2 2.9.5 4.2 1.3.2-2.8 1.1-5.3 4.1-5.8 3-.5 5 1.9 5.7 4.5 2.5-2.1 5.6-2.7 8.6-1.3 0-.3-.1-.4-.3-.5m.5 11.2c-2.3-1.8-5.6-2.2-8.3-1-.7.3-1.4.8-2 1.3-.7.6-1 .1-1.9-.1-.7-.2-1.5-.2-2.2-.1-.1 0-1.5.4-1.5.4-.4-.6-1.2-.9-1.9-.9-.3 0-.6.1-.9.2-.6.2-.5.2-1.1-.2-1.3-.8-2.8-1-4.2-.7-.6.2-1.3.5-1.8.8-.4.3-.9 1.1-1.4.9-1.6-.6-3.1-1-4.7-1.3 1.6.4 3.3.9 4.8 1.8.5.4.7 0 1-.4.6-.7 1.6-1 2.4-1.2.9-.1 1.7-.1 2.5.3.7.3 1.1.8 1.6 1.2.5.4.8 0 1.3-.3.8-.4 1.5.3 1.8.9.3.5 1.2-.1 1.7-.2 1-.2 2.1-.1 3 .4.2.1 1.1.9 1.4.8.5-.4.9-1 1.4-1.4 2.8-2.1 6.7-1.5 9.1 1-.1-.8-.1-1.7-.1-2.2m-13.8 1.2s.1 0 0 0m-15.1-4.5c-2.4-1.3-5.4-1.2-7.7.3C26.8 53 24.6 51 22 51c-1.6 0-3.2.5-4.3 1.6-.5.5-1 1.1-1.3 1.7-.2.4-.2 1.1-.5 1.4-1.4-.6-3.2-.7-4.6-.1-.4.2-1.2.9-1.5.5-.4-.6-1.1-1-1.7-1.3-.7-.3-1.5-.3-2.2-.2-.3.2-.6.3-.9.4-.2.1-.8.7-1 .6-.2 0-.5-.4-.7-.5-.4-.3-.7-.5-1.1-.7-.7-.3-1.4-.6-2.2-.7v1.4c0 .2 1.3.6 1.6.7 1 .5 1.8 1.4 2.6 2.2.8-1 1.7-2.2 3.2-1.8 1.3.3 1.7 1.7 2.1 2.8 1-1 2.1-2 3.5-2.2 1.6-.2 2.9.5 4.2 1.3.2-2.8 1.1-5.3 4.1-5.8 3-.5 5 1.9 5.7 4.5 2.5-2.1 5.6-2.7 8.6-1.3-.1-.2-.3-.3-.5-.4" fill="#699635"/></svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#f2b200" d="M0 0h64v64H0z"/><g fill="#ffdf99"><circle cx="32" cy="32" r="10.7"/><path d="M3.5 4.2c.4.8 1 1.8 1.8 3C6 8.4 7 9.7 8.1 11.1c1.1 1.4 2.4 2.8 3.7 4.1 1.3 1.3 2.7 2.6 4.1 3.7 1.4 1.1 2.7 2.1 3.9 2.9.6.4 1.2.7 1.7 1 .5.3 1 .5 1.4.7.4.2.7.3.9.4.2.1.3.1.3.1s0-.1-.1-.3c-.1-.2-.2-.5-.4-.9l-.7-1.4c-.3-.5-.6-1.1-1-1.7-.8-1.2-1.8-2.5-2.9-3.9-1.1-1.4-2.4-2.8-3.7-4.1-1.3-1.3-2.7-2.6-4.1-3.7-1.5-1-2.8-2-4-2.7-1.2-.8-2.3-1.4-3-1.8-.4-.2-.7-.4-1-.4-.2-.1-.3-.2-.3-.2s.1.1.2.3c0 .3.2.6.4 1m38.7 15.7c-.4.6-.7 1.2-1 1.7-.3.5-.5 1-.7 1.4-.2.4-.3.7-.4.9-.1.2-.1.3-.1.3s.1 0 .3-.1c.2-.1.5-.2.9-.4l1.4-.7c.5-.3 1.1-.6 1.7-1 1.2-.8 2.5-1.8 3.9-2.9 1.4-1.1 2.8-2.4 4.1-3.7 1.3-1.3 2.6-2.7 3.7-4.1 1-1.6 2-2.9 2.7-4.1.8-1.2 1.4-2.3 1.8-3 .2-.4.3-.7.4-.9.1-.3.2-.4.2-.4s-.1.1-.3.1c-.2.1-.5.2-.9.4-.8.4-1.8 1-3 1.8-1.3.8-2.6 1.8-4 2.9-1.4 1.1-2.8 2.4-4.1 3.7-1.3 1.3-2.6 2.7-3.7 4.1-1.1 1.4-2.1 2.8-2.9 4M29.9.4c-.2 1.8-.3 3.6-.3 5.5s.1 3.8.3 5.5c.2 1.8.4 3.4.7 4.8.3 1.4.6 2.6.9 3.4.1.4.3.7.3 1 .1.2.1.3.1.3s.1-.1.1-.3c.1-.2.2-.5.3-1 .3-.8.6-2 .9-3.4.3-1.4.6-3.1.7-4.8.2-1.8.3-3.6.3-5.5s-.1-3.8-.3-5.5V0h-4.1c.1.1.1.2.1.4M18.7 3.2c.5 1.7 1.1 3.5 1.7 5.2.7 1.8 1.4 3.5 2.2 5.1.8 1.6 1.6 3 2.4 4.2.4.6.8 1.2 1.1 1.6.3.5.7.9.9 1.2.3.3.5.6.7.8s.2.3.2.3v-1.4c0-.4-.1-1-.1-1.5-.1-.6-.1-1.2-.3-2-.2-1.4-.6-3-1-4.8-.5-1.7-1.1-3.5-1.7-5.2-.7-1.8-1.4-3.5-2.2-5.1-.3-.5-.6-1.1-.9-1.6h-3.8c.2 1 .5 2.1.8 3.2m24.3-1c-.9 1.5-1.7 3.2-2.5 4.9-.8 1.7-1.4 3.5-2 5.1-.6 1.7-1 3.3-1.3 4.7-.3 1.4-.5 2.6-.6 3.5 0 .4-.1.8-.1 1v.4l.3-.3.7-.7c.6-.6 1.4-1.6 2.2-2.7.8-1.2 1.7-2.6 2.6-4.1.9-1.5 1.7-3.2 2.5-4.9.8-1.7 1.4-3.5 2-5.1.5-1.4.8-2.7 1.1-3.9h-3.6c-.4.6-.9 1.4-1.3 2.1m20.6 27.7c-1.8-.2-3.6-.3-5.5-.3s-3.8.1-5.5.3c-1.8.2-3.4.4-4.8.7-1.4.3-2.6.6-3.4.9-.4.1-.7.3-1 .3-.2.1-.3.1-.3.1s.1.1.3.1c.2.1.5.2 1 .3.8.3 2 .6 3.4.9 1.4.3 3 .6 4.8.7 1.8.2 3.6.3 5.5.3s3.8-.1 5.5-.3h.4v-4.1c-.1.1-.2.1-.4.1m-2.8-11.2c-1.7.5-3.5 1.1-5.2 1.7-1.8.7-3.5 1.4-5.1 2.2-1.6.8-3 1.6-4.2 2.4-.6.4-1.2.8-1.6 1.1-.5.3-.9.7-1.2.9-.3.3-.6.5-.8.7-.2.2-.3.2-.3.2h1.4c.4 0 1-.1 1.5-.1.6-.1 1.2-.1 2-.3 1.4-.2 3-.6 4.8-1 1.7-.5 3.5-1.1 5.2-1.7 1.8-.7 3.5-1.4 5.1-2.2.6-.3 1.2-.6 1.7-.9v-3.8c-1.1.2-2.2.5-3.3.8M.4 34.1c1.8.2 3.6.3 5.5.3s3.8-.1 5.5-.3c1.8-.2 3.4-.4 4.8-.7.7-.1 1.3-.3 1.9-.5.6-.2 1.1-.3 1.5-.4.4-.1.7-.3 1-.3.2-.1.3-.1.3-.1s-.1 0-.3-.1c-.2-.1-.5-.2-1-.3-.4-.1-.9-.3-1.5-.4-.6-.2-1.2-.3-1.9-.5-1.4-.3-3.1-.6-4.8-.7-1.8-.2-3.6-.3-5.5-.3s-3.8.1-5.5.3H0v4.1c.1-.1.2-.1.4-.1M2.2 21c1.5.9 3.2 1.7 4.9 2.5 1.7.8 3.5 1.4 5.1 2 1.7.6 3.3 1 4.7 1.3 1.4.3 2.6.5 3.5.6.4 0 .8.1 1 .1h.4l-.3-.3-.7-.7c-.6-.6-1.6-1.4-2.7-2.2-1.2-.8-2.6-1.7-4.1-2.6-1.5-.9-3.2-1.7-4.9-2.5-1.7-.8-3.5-1.4-5.1-2-1.4-.5-2.7-.8-3.9-1.1v3.6c.6.4 1.4.9 2.1 1.3"/></g><path fill="#42ade2" d="M0 32h64v32H0z"/><g fill="#ffdf99"><ellipse cx="31" cy="36.2" rx="12.9" ry="1.4"/><ellipse cx="34" cy="41.1" rx="10.3" ry="1.1"/><ellipse cx="30.1" cy="45.5" rx="8.2" ry=".9"/><ellipse cx="32.6" cy="49.5" rx="6.6" ry=".7"/><ellipse cx="30.2" cy="53.1" rx="5.3" ry=".6"/><ellipse cx="32.6" cy="56.2" rx="4.2" ry=".5"/></g></svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#fbbf67" d="M0 0h64v64H0z"/><path fill="#f15744" d="M0 0h64v64H0z" opacity=".7"/><path fill="#62727a" d="M48 45.7h16V64H44V49.7c0-2.2 1.8-4 4-4"/><path d="M60.8 49h.4c.4 0 .8.4.8 1v14h-2V50c0-.6.4-1 .8-1m-5 0h.4c.4 0 .8.4.8 1v14h-2V50c0-.6.4-1 .8-1" fill="#d0d0d0"/><g fill="#62727a"><path d="M51.3 43h11v2.9h-11zM0 43.1h13.1v-5.2L0 40.9z"/><path d="M0 43h13v21H0z"/></g><path d="M9.5 51c0 .5-.4 1-1 1h-3c-.6 0-1-.5-1-1v-2c0-.6.4-1 1-1h3c.6 0 1 .4 1 1v2m0 8c0 .5-.4 1-1 1h-3c-.6 0-1-.5-1-1v-2c0-.6.4-1 1-1h3c.6 0 1 .4 1 1v2" fill="#ed4c5c"/><path fill="#3e4347" d="M50 38v-4l-6-2V21h-2v11l-6 2v4h-3v-7.7L23 19 13 30.3V64h40V38z"/><path d="M41.5 45c0 .5-.5 1-1 1h-3c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h3c.5 0 1 .4 1 1v2m8 8c0 .5-.5 1-1 1h-3c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h3c.5 0 1 .4 1 1v2m-8 8c0 .5-.5 1-1 1h-3c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h3c.5 0 1 .4 1 1v2m8 0c0 .5-.5 1-1 1h-3c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h3c.5 0 1 .4 1 1v2" fill="#6adbc6"/><path d="M30 43c0 .5-.5 1-1 1H17c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h12c.5 0 1 .4 1 1v2m0 16c0 .5-.5 1-1 1H17c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h12c.5 0 1 .4 1 1v2m0-24c0 .5-.5 1-1 1H17c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h12c.5 0 1 .4 1 1v2m0 16c0 .5-.5 1-1 1H17c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h12c.5 0 1 .4 1 1v2" fill="#ffdd7d"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#ef8a45" d="M0 0h64v64H0z"/><g fill="#f9b04e"><path d="M28.2 0 30 28h4l1.8-28zm18.6 0L37 28.6l3.7 1.5L56.5 0zM64 8.4 43.3 31.9l2.8 2.8L64 18.9zm0 21-16.1 7.9 1.5 3.7L64 36zm-40.7.7 3.7-1.5L17.2 0H7.5zM0 18.9l17.9 15.8 2.8-2.8L0 8.4zM0 36l14.6 5 1.5-3.7L0 29.4z" opacity=".5"/><path d="m0 48.9 14-.9v-4l-14-.9z"/></g><circle cx="32" cy="38.7" r="25.3" fill="#ffc466"/><path fill="#62727a" d="M48 45.7h16V64H44V49.7c0-2.2 1.8-4 4-4"/><path d="M60.8 49h.4c.4 0 .8.4.8 1v14h-2V50c0-.6.4-1 .8-1m-5 0h.4c.4 0 .8.4.8 1v14h-2V50c0-.6.4-1 .8-1" fill="#d0d0d0"/><g fill="#62727a"><path d="M51.3 43h11v2.9h-11zM0 43.1h13.1v-5.2L0 40.9z"/><path d="M0 43h13v21H0z"/></g><path d="M9.5 51c0 .5-.4 1-1 1h-3c-.6 0-1-.5-1-1v-2c0-.6.4-1 1-1h3c.6 0 1 .4 1 1v2m0 8c0 .5-.4 1-1 1h-3c-.6 0-1-.5-1-1v-2c0-.6.4-1 1-1h3c.6 0 1 .4 1 1v2" fill="#ed4c5c"/><path fill="#3e4347" d="M50 38v-4l-6-2V21h-2v11l-6 2v4h-3v-7.7L23 19 13 30.3V64h40V38z"/><path d="M41.5 45c0 .5-.5 1-1 1h-3c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h3c.5 0 1 .4 1 1v2m8 8c0 .5-.5 1-1 1h-3c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h3c.5 0 1 .4 1 1v2m-8 8c0 .5-.5 1-1 1h-3c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h3c.5 0 1 .4 1 1v2m8 0c0 .5-.5 1-1 1h-3c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h3c.5 0 1 .4 1 1v2" fill="#6adbc6"/><path d="M30 43c0 .5-.5 1-1 1H17c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h12c.5 0 1 .4 1 1v2m0 16c0 .5-.5 1-1 1H17c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h12c.5 0 1 .4 1 1v2m0-24c0 .5-.5 1-1 1H17c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h12c.5 0 1 .4 1 1v2m0 16c0 .5-.5 1-1 1H17c-.5 0-1-.5-1-1v-2c0-.6.5-1 1-1h12c.5 0 1 .4 1 1v2" fill="#ffdd7d"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#f66" d="M62 6.5V2C35 2 13.2 23.8 13.2 50.6h4.5C17.7 26.3 37.5 6.5 62 6.5z"/><path fill="#fffb80" d="M17.7 50.6h4.5C22.2 28.8 40 11 62 11V6.5c-24.5 0-44.3 19.8-44.3 44.1z"/><path fill="#a3e66f" d="M62 15.5V11c-22 0-39.8 17.7-39.8 39.6h4.5c0-19.4 15.8-35.1 35.3-35.1"/><path fill="#66c2ff" d="M26.7 50.6h4.5C31.3 33.7 45 20 62 20v-4.5c-19.5 0-35.3 15.7-35.3 35.1z"/><path fill="#9180ff" d="M62 24.5V20c-17 0-30.7 13.7-30.7 30.6h4.5c0-14.4 11.7-26.1 26.2-26.1"/><path fill="#fff" d="M10.1 60.7c-.7 0-1.4-.1-2.1-.3-2.8-.9-4.7-3.5-4.7-6.4 0-1.9.8-3.8 2.3-5.1l1.2-.9.4-1.6c1.1-3.9 4.8-6.6 8.8-6.6.4 0 .8 0 1.3.1.4.1.7.1 1.1.2l.2-.3c1.6-2.9 4.8-4.8 8.1-4.8 5.1 0 9.3 4.2 9.3 9.3v.9c.4.2.8.3 1.2.5 2.5 1.4 4 4.1 4 6.9 0 3.7-2.6 6.9-6.2 7.8-.6.1-1.2.2-1.8.2l-23.1.1"/><path fill="#75d6ff" d="M26.9 36.4c4.4 0 8 3.5 8 7.9v.6c-1.8.1-3.5.9-4.8 2 1-.6 2.1-.9 3.3-.9.4 0 .9 0 1.3.1.7.1 1.4.4 2 .8 2 1.1 3.3 3.3 3.3 5.7 0 3.1-2.2 5.8-5.2 6.5-.5.1-1 .2-1.5.2H10.1c-.6 0-1.2-.1-1.7-.3-2.2-.7-3.7-2.7-3.7-5.1 0-1.6.7-3.1 1.9-4.1.5-.5 1.1-.8 1.8-1 .6-.2 1.2-.3 1.8-.3 1.7 0 3.3.8 4.3 2.1-1.2-2.1-3.3-3.6-5.8-3.8.9-3.2 3.9-5.6 7.5-5.6.4 0 .8 0 1.1.1.7.1 1.4.3 2.1.6 2.4 1.1 4.2 3.3 4.6 6 0-3.1-1.6-5.7-4-7.3 1.3-2.6 3.9-4.2 6.9-4.2m0-2.7c-3.7 0-7.1 1.9-9 4.9h-.2c-.6-.1-1-.1-1.5-.1-4.7 0-8.8 3.1-10.1 7.6l-.3 1.1c-.3.2-.7.5-1 .7a7.79 7.79 0 0 0-2.8 6c0 3.5 2.2 6.6 5.6 7.7.8.3 1.7.4 2.6.4h23.2c.7 0 1.4-.1 2.1-.2 4.3-1 7.3-4.7 7.3-9.1 0-3.3-1.8-6.4-4.7-8.1-.1-.1-.3-.2-.4-.2v-.1c-.1-5.9-4.9-10.6-10.8-10.6z"/></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#42ade2" d="M0 0h64v64H0z"/><path fill="#428bc1" d="M0 52h64v12H0z"/><path fill="#3e4347" d="M64 28.9v-2c-4.8-.5-9.1-3-12-6.6V10h-6v10.3c-3.3 4.1-8.3 6.7-14 6.7-5.7 0-10.7-2.6-14-6.7V10h-6v10.3c-2.9 3.6-7.2 6.1-12 6.6v2c1.7-.2 3.4-.6 5-1.2V34H0v6h9l1.2 6H12v6h6v-6h1.8l1.2-6h22l1.2 6H46v6h6v-6h1.8l1.2-6h9v-6h-5v-6.3c1.6.6 3.3 1 5 1.2m-18-5.7V28c0 3-2.2 5.4-5 5.9v-7.1c1.8-.9 3.5-2.1 5-3.6m-23 3.6v7.1c-2.8-.5-5-2.9-5-5.9v-4.8c1.5 1.5 3.1 2.7 5 3.6m-11-3.5V28c0 3-2.2 5.4-5 5.9v-7.1c1.9-.9 3.5-2.1 5-3.5M25 34v-6.3c1.9.7 3.9 1.1 6 1.2v5h-6zm8 0v-5c2.1-.1 4.1-.5 6-1.2V34h-6m24-.1c-2.8-.5-5-2.9-5-5.9v-4.7c1.5 1.4 3.2 2.6 5 3.6v7"/><circle cx="32" cy="12" r="8" fill="#fff"/><g fill="#d0d0d0"><circle cx="35" cy="9" r="2"/><circle cx="29" cy="15" r="2"/><circle cx="29" cy="9" r="1"/><circle cx="35" cy="15" r="1"/></g><path d="M40 53c0 .6-.5 1-1 1H25c-.6 0-1-.4-1-1 0-.5.4-1 1-1h14c.5 0 1 .5 1 1m-2 4c0 .6-.5 1-1 1H27c-.6 0-1-.4-1-1 0-.5.4-1 1-1h10c.5 0 1 .5 1 1m-2 4c0-.5-.5-1-1-1h-6c-.6 0-1 .5-1 1 0 .6.4 1 1 1h6c.5 0 1-.4 1-1M2.7 4.976l.991-.99.99.992-.992.989zm3.381 9.627.991-.989.99.991-.992.99zM19.483 4.496l.991-.989.989.991-.99.989zM39 19.604l.991-.99.989.992-.99.989zM57.176 4.48l.99-.99.99.991-.991.99zm2.407 39.91.991-.99.989.992-.99.989zM36.01 48l.99-.99.989.991-.99.99zm-9.02-3.593.991-.989.99.991-.992.99zM5.096 47.596l.991-.989.989.991-.991.99zM53.697 12.97l.99-.988.99.99-.991.99zm5.49 4.604.991-.989.99.991-.992.99z" fill="#fff"/></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#75d6ff" d="M58.9 2.6c-.4-.1-.7-.2-1.1-.3-1-.2-2.2-.3-3.8-.3-15.3 0-27.5 8.8-33.4 22.5C13 42.5 13.4 57.7 2 57.7 2 60.1 3.9 62 6.3 62s4.3-1.9 4.3-4.3c0 2.4 1.9 4.3 4.3 4.3s4.3-1.9 4.3-4.3c0 2.4 1.9 4.3 4.3 4.3s4.3-1.9 4.3-4.3c0 2.4 1.9 4.3 4.3 4.3s4.3-1.9 4.3-4.3c0 2.4 1.9 4.3 4.3 4.3s4.3-1.9 4.3-4.3c0 2.4 1.9 4.3 4.3 4.3s4.3-1.9 4.3-4.3c0 2.4 1.9 4.3 4.3 4.3s4.2-2 4.2-4.3c0 0-28.8-4.5-19.7-23.8 1.2-2.4 2.9-3.6 3.9-4.1.5.7 1.2 1.3 2.1 1.6 2.4.9 5.1-.4 6-2.9.5-1.3.3-2.7-.2-3.8 1.1-.5 2.1-1.5 2.5-2.8.4-1.1.4-2.2 0-3.2 1.2-.5 2.2-1.5 2.7-2.8.5-1.4.3-2.8-.3-4 1.2-.5 2.3-1.5 2.7-2.9.8-2.7-.5-5.5-2.9-6.4"/><path fill="#fff" d="M50.4 23.1c-.1.6.9 2.3.4 3.7-.7 1.9-4 2.4-2.1 3.1 1.8.7 3.9-.3 4.6-2.2.5-1.4.1-3-.9-4 1.4-.1 2.6-1 3.2-2.4.5-1.4.1-3-.9-4 1.4-.1 2.6-1 3.2-2.4.5-1.5.1-3.1-1-4 1.4 0 2.7-1 3.3-2.4.7-1.9-.3-4-2.1-4.7-1.8-.7.4 1.9-.3 3.8-.8 1.5-2.8 2.1-2.9 2.7-.3.5.9 2.3.4 3.8-.5 1.4-2.4 2.1-2.6 2.6-.1.6.9 2.3.4 3.7s-2.4 2.1-2.7 2.7c0-.1 0-.1 0 0"/><g fill="#4fa1d9"><path d="M54.9 4.5c-1.4-.1-2.8 0-4.2.1-3.6.4-7 1.3-10.3 2.8-4 1.8-7.7 4.6-10.7 7.9-4 4.5-6.8 10.1-8.6 15.9-.6 1.8 2.2 2.6 2.7.8 1.8-6 4.7-11.5 9-15.9 1.8-1.8 3.4-3 5.5-4.4.9-.6 1.9-1.1 2.8-1.5.2-.1.4-.2.7-.3.4-.2-.3.1.1 0 .1 0 .2-.1.3-.1.5-.2.9-.4 1.4-.6 1.5-.5 3-.9 4.5-1.3.3-.1.7-.1 1-.2.1 0 .3 0 .4-.1.1 0 .7-.1.2 0 .6-.1 1.1-.1 1.7-.2 1.1-.1 2.2-.2 3.3-.1.8.1 1.4-.7 1.4-1.5.3-.7-.4-1.3-1.2-1.3"/><path d="M52.5 11.6c-1.8-.3-3.8 0-5.6.3-4.3.8-8.3 2.8-11.6 5.7-4.2 3.6-7 8.5-9 13.6-.3.7.3 1.6 1 1.8.8.2 1.5-.3 1.7-1 1.2-3.1 2.8-6.2 4.9-8.8 1.7-2.1 3.6-3.9 5.7-5.3.9-.6 1.9-1.2 2.9-1.6 0 0 .4-.2.1-.1.1 0 .2-.1.3-.1.2-.1.5-.2.7-.3.5-.2.9-.3 1.4-.5.8-.3 1.7-.5 2.5-.6.2 0 .4-.1.6-.1h.3c.3 0 .7-.1 1.1-.1 1-.1 2-.1 3 0 .8.1 1.4-.7 1.4-1.5s-.7-1.3-1.4-1.4"/><path d="M50 17.6c-2.4-.1-5 .6-7.2 1.5-5.3 2.2-9 6.6-10.9 12.1-.3.8.3 1.6 1 1.8.8.2 1.5-.3 1.7-1 .9-2.6 2.3-4.9 4.2-6.8.8-.8 1.5-1.3 2.4-2 .4-.3.9-.5 1.3-.8.2-.1.5-.2.7-.4.1-.1.2-.1.4-.2-.3.1.1 0 .1-.1.8-.3 1.6-.6 2.4-.8.4-.1.7-.2 1.1-.2.2 0 .4-.1.5-.1.1 0 .7-.1.2 0 .6-.1 1.3-.2 2-.1 1.9.1 1.9-2.9.1-2.9"/><path d="M47.7 24.2c-4.4 0-8.5 3-10.3 7-.3.7-.2 1.6.5 2 .6.4 1.6.2 1.9-.5.6-1.3 1.4-2.4 2.4-3.3.4-.4.8-.6 1.3-.9.2-.1.4-.2.6-.4.1-.1.3-.1.4-.2-.3.1.1-.1.2-.1.7-.3 1.5-.5 2.3-.6h.7c1.8-.1 1.8-3 0-3"/></g></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#594640" d="M40.5 31.9c-1.4-3.2-1.9-1.1-3.2-2.1-1.3-1-3.7 1-5.3.4-1.6-.6-4 .8-5.4-.1-1.4-.9-2.2 0-2.5.5-.4.7-1.4 3-1.5 3.1C14.6 51.9 2 62 2 62h60S49 51 40.5 31.9"/><g fill="#89664c"><path d="M24.9 34.4c-.8 1.6-1 2.9-.8 4.7.2 1.8-.1 3.5-1.4 4.8-.8.8-1.7 1.4-2.5 2.1-1.4 1.1-2.5 2.4-3.3 4.1-.5-3.2 2.2-5.3 4.1-7.2 1.3-1.4 1.2-2.9 1.4-4.7.3-1.7 1.2-2.9 2.5-3.8m-8.7 18.3c.2 2.1-1.7 4.2-3.3 5.2-1.7 1-3.6 1.7-5.2 2.9.2-2 2.6-3.5 4.1-4.5 1.6-.9 3.1-2.3 4.4-3.6m11.9-16.9c-.2 1.3-.3 2.6-.1 3.9.2 1.3.7 2.5 1.2 3.7.9 2.7-.1 6.1-2 8.2.3-2.6.8-5.4-.1-8-.9-2.6-1-5.7 1-7.8m-4 10.3c1.2 2.5-.4 5.6-2.2 7.2-.9.9-1.8 1.8-1.8 3.2-.1 1.3.3 2.5.8 3.7-2.6-1.7-3.3-5.3-1.1-7.6 1.9-2 3.6-3.8 4.3-6.5m7.4-11.7c-1 2.9 0 5.3 2 7.5 1.3 1.5 3.5 5.1 1.1 6.6.9-2.4-1.8-4.5-3.2-6-2-2.3-2.6-6.2.1-8.1m.7 14.1c-.8 2.4-.1 4.4 1.2 6.4.8 1.3 1.8 4 .5 5.3 0-1.8-1.5-3.4-2.5-4.8-1.5-2.1-1.8-5.6.8-6.9m-6.4 3.1c-.6 1.9.7 3.5 1.7 4.9.5.7 2 3.7.4 4.2.4-1.1-1.8-2.8-2.3-3.5-1.2-1.4-2.2-4.7.2-5.6M35 34.8c-.3 2 1 4 2.4 5.2.6.5 1.2.9 1.7 1.5 2.7 3 .6 8-2.1 10.1 1.1-3 2.5-7-.1-9.5-1.6-1.6-3.9-5-1.9-7.3m0 17.9c3.3.2 7 5 4.4 8.1-.5-1.5-.9-3-1.8-4.3-.8-1.3-1.8-2.5-2.6-3.8m3.4-17.9c3.1 2.1 5.1 6.1 6.2 9.6.4 1.3.7 2.7.8 4.1.2 1.6.6 3.9 2.2 4.7-1.9.3-3.2-2-3.8-3.5-.4-1.3-.7-2.7-1-4-1-3.8-2.5-7.6-4.4-10.9m3 16c.9 2.3 2.1 4.3 4.1 5.7.5.4 1.1.8 1.5 1.2.3.3 1.8 2.2.6 2.4.6-.9-2.6-1.7-3-2.1-2.5-1.1-4.6-4.4-3.2-7.2m7 .8c2 .5 4 2.3 4.2 4.5.3 2.1 2.2 3.2 3.9 4.1-2.1.5-5-.6-5.7-2.9-.2-.7-.2-1.4-.4-2.1-.4-1.3-1.3-2.4-2-3.6"/></g><g fill="#ed4c5c"><path d="M40.6 29.5c1.4-1.4 3.4-1.9 2.7-3.9-1.2-3.5-7.2 5.6-4.4.3s-.1-5.9-.9-4.7c-.8 1.2-2.8 12.5-3.3 5.8-.5-6.8 7.2-27.5 3-24.6-4.2 2.9-3.6 21.7-6 24.9-2.4 3 2.5-20.9.6-23.3-1.4-1.8-4.9-1.4-3.4 13.9 1.5 15.4-1 7.2-2.3 3.3-1.3-3.9-2.7-2.5-1.3 4.6 1.1 5.6-1.5-2.3-4.6-8.2-3.1-5.9-10-2.6-4.1 1.7 5.4 4 6.2 7.5 7.3 10.4-1.1 1-2 3.2-3 6.5-.7 2.3 1.8-1.5 2.8-2.6 1.1-1.1 1.7 3.3 3.3.7 1.6-2.6 2.9-1.2 5.7 2.1 2.7 3.3 4.4 2.4 5.6.8s1.7-1.9 4.2-.2.9-.7.9-.7c-1-1.2-2.1-5.7-2.8-6.8"/><path d="M40 19c1.7-1.9 2.5-7.6 1.2-5.7C40 15.2 39 20.1 40 19zm7.8-.3c-1.6 1.6-5.4 6.1-3.3 5.4 1.6-.5 4.8-7 3.3-5.4m-.9-8.9c-1.8 1-4.8 8.6-5 11.5-.2 3.1 6.7-12.4 5-11.5m-22.8 6.8c3.2 2.3-3.3-9.9-3.8-7.5-.4 2.4 2.4 6.5 3.8 7.5"/></g></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#3f3261" d="M0 0h64v46H0z"/><path fill="#42ade2" d="M0 46h64v10H0z"/><path fill="#296d8f" d="M0 34h64v1H0z"/><path fill="#3283ab" d="M0 37h64v2H0z"/><path fill="#3b9ac9" d="M0 41h64v3H0z"/><path fill="#3e4347" d="M0 55s5.8-3.8 8-4c2.8-.3 8.2 3.3 11 3 2.2-.2 5.8-3.7 8-4 1.5-.2 4.5 1.3 6 1 1.8-.4 4.2-4 6-4 2.4 0 5.6 4.9 8 5 2.6.1 6.5-4.5 9-5 2-.4 8 1 8 1v16H0v-9"/><path d="m6.944 23.5 1.485-1.486L9.914 23.5l-1.485 1.485zm5-5 1.485-1.486 1.485 1.485-1.485 1.485zm6 3 1.485-1.486 1.485 1.485-1.485 1.485zm2.063-7.926 1.485-1.485 1.485 1.485-1.485 1.484zm3.937 4.926 1.485-1.486 1.485 1.485-1.485 1.485zm4-6 1.485-1.486 1.484 1.485-1.484 1.485zm2 8 1.485-1.486 1.484 1.485-1.484 1.485zm5-8 1.484-1.485 1.485 1.485-1.485 1.484zm6-3 1.484-1.485L43.913 9.5l-1.485 1.484zm.999 5 1.485-1.485 1.485 1.485-1.485 1.484zm6 0 1.485-1.485 1.485 1.485-1.485 1.484zm1-7 1.485-1.485L51.913 7.5l-1.485 1.485zm8-4 1.485-1.485L59.913 3.5l-1.485 1.485z" fill="#fff"/><path d="m36.51 17.5.99-.99.99.99-.99.99zm9.085-6.208.99-.99.99.99-.99.99zM60.188 7.75l.99-.99.99.99-.99.99zm-34.499 19 .99-.99.99.99-.99.99zm-22.999-3 .99-.99.99.99-.99.99zm1.32-8.25.99-.99.99.99-.99.99zm14.68-9.75.989-.99.99.99-.99.99zm29.499 15.5.99-.99.99.99-.99.99z" fill="#c79cff"/><path d="m45.189 6.25.99-.99.99.99-.99.99zm9.108 1.55.99-.99.99.99-.99.989zm.975 4.41.99-.99.99.99-.99.99zM36.724 8.035l.99-.99.99.99-.99.99zM31.01 15.5l.99-.99.99.99-.99.99zm-13.291 1.637.99-.99.99.99-.99.99zm-4.03 10.113.99-.99.99.99-.99.99zm-6.185-9.148.99-.99.99.99-.99.99zM3.19 28.25l.99-.99.99.99-.99.99zm3.5-21.5.99-.99.99.99-.99.99zM45.01 29l.99-.99.99.99-.99.99zm13.502-6.201.99-.99.99.99-.99.99zM30.51 2.5l.99-.99.99.99-.99.99z" fill="#ffabed"/></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#008db3" d="m58.4 22.7 1.6 20C55.8 54 44.8 62 32 62 15.4 62 2 48.6 2 32S15.4 2 32 2c6 0 11.6 1.8 16.3 4.8l10.1 15.9z"/><g fill="#ffc942"><path d="M48.3 6.8c.3 1 .6 2.1-.4 1.6-1.7-.9-3.9-1.9-3.2-1.2s1 1.5-.1 1.4c-1.1-.1-3.1-.4-4 .9-.9 1.3-2.1 1-2.4 1.5-.3.5-.8 2.6-1.7 1.9-.9-.6-2.7-2.9-1.2-2.3 1.5.6 3.2-.1 1.8-1.7-1.4-1.6-2.8-1-3.4-1.9-.6-.9-2.6-2-4.1.2-1.4 2.2-2.7 5.1-3.5 5.7-.8.6-2.5 1.7-2.2 2.6.2.9.3 3 1.2 2.4s1.4-.9 1.8-.3c.3.6.2 1.8.9 1.8 0 0 1.4-1 1.5-1.9.1-.9-1-1.4-.2-2.7s2.6-3.8 2.2-2.5c-.4 1.2-1.3 3-.6 3.8.6.8 4.1-.2 2.5.6-1.6.8-2.4 1.4-2.7 2.4-.3 1-.6 1.8-1.4 1.4s-1.8-.2-2.2-.2-.6-1.8-1.3-1.4c-.6.4.2 1.7-.5 1.8-.7.1-.8.9-1.6 1.5s-1.9 1.8-2.6 1.9 1.1 1 .8 1.8c-.3.9-1.9.8-2.5.9s-.1 1.3-.4 2c-.3.7.3 1.4 1.3 1.4s2-.2 2.1-1.1c.1-.9 1-2.4 1.7-2.1.6.3 2.1-.6 2.4-.1.3.5 2.2 2.2 2 2.4s-1.3.7-.9.9c0 0 .3.5.5.4s.7-1.4 1-1.6.3-.9-.1-1.2c-.5-.3-2.2-1.5-1.8-2.1s1.3.7 1.7 1.1c.4.4 1 .9 1 1.8s.6.9.6 1.3c.1.5.3.6.8.6.5-.1.7-1.2.5-1.5-.3-.3-.3-.9.3-.9s1.3-.5 1.3-.8c0-.3.6-2.1 1-2.1s.7.7.8 1.1c.2.4 1.2-.3 1-.7-.2-.4.1-.5.4-.5.3 0 .1.8.3 1 .3.2 1.7 1.1 1.2 1.6s-1.2.2-1.7-.2-1.8-.2-2.2.2c-.3.4-.6.6-1.2.6s-.5 1.1 0 1.5c.5.5 1.2.1 1.7.4.5.3 1.3-.4 1.4.1.1.5-.1 2-.6 2.1-.5.1-2.1.4-3.2-.1-1.2-.5-2.3-.7-2.4-.2-.1.6-.1 1-.9.5s-1.5-.8-2-.8-.5-.9-.4-1.6c.1-.7-1.2-.5-2-.3s-2.4.7-3.4.7-1.4.2-1.6.6-1.1.4-1.1 1.2c0 .8.1 1-.7 1.4-.9.3-1.1 1.9-1.5 2.3-.4.4.4 1.4 0 2-.4.5-.8 1.9-.1 2.2.7.3 1.4 1.7 1.7 2.2.3.5 1.4 1 2.5.8 1.1-.2 3.1-.8 4.2-.3s2.2.4 1.7 1.4c-.6 1 .3 2.3 1 3 .7.7.5 2.5.1 3-.4.6-.3 1.6.1 2.1s.6 1.7.6 2.1c0 .5.8 1.4.9 2.3.1 1-.6 2.1.3 2.1.9 0 3.2.1 3.4-.3s2-2 2.5-2.7 1.5-1.9 1.2-2.6c-.6-.5-.2-1 .8-1.4 1-.4 1-3.2.5-3.9-.5-.7.4-2.4 1.5-2.9s3.7-5.1 2.9-4.7c-.9.4-2.6.7-3.2.3-.6-.4-4.1-6.4-3.6-6.8s3.3 5.5 3.8 6.2c.5.8 5.2-2.1 5.8-2.8.5-.7-.3-1.4-.6-1.4s-1.4-.7-1.7-.3-2.3-2.9-1.6-2.6c.7.3 2.2 1.3 3.6 2.1s3-.5 3.9 1c1 1.5 1.6.5 1.5 1.2s1.2 3.6 1.7 4.5c.4.9 1.3-.4 1.4-1.4.1-1.1 2.2-2.8 3-3.4.7-.6 2.1.3 2.3 1.5.2 1.2 1.2-.2 1.2.7 0 1-.2 2.3.5 3.5 1.4-3.5 2.1-7 2.1-10.8 0-10.6-5.5-19.9-13.7-25.2m-31.9 3.8c-.6.2-1.2.9-2 .5s-2.5.2-1.4 1.1c1 1 .6 1.6 1.6 1.7s1.6-1.3 2.3-1.2.2-2.3-.5-2.1"/><path d="M40.7 49.7c-.7.1-.5 1.5-1.3 1.7-.7.2-.1.8-.5 1.3-.3.5-.5 1.7 0 2.3.5.7.7.7 1.3-.4.6-1 2-5 .5-4.9M20.6 17.3c-.3 0-.6.2-.9.2-.3.1-.5.5-.5.9 0 .5.8.6.5.9-.3.3-1.9.6-1.7 1.1s.5.9.2 1.4c-.3.5.3.6.9.4s1-.9.9-1.3c-.1-.5.9-.6.6-.2s-.8 1.4-.5 1.7c.3.3-.8.8-.4 1 .4.2 1.5-.8 2.1-.6s.8-.2.9-.7c.1-.6-.8-1.3-1.1-2-.3-.8-.1-2.8-1-2.8"/></g></svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#008db3" d="M62 32c0 16.6-13.4 30-30 30S2 48.6 2 32C2 17.6 12.1 5.6 25.7 2.7h.8l.6-.3c.5-.1 1-.1 1.5-.2h1l.8-.2h.4l1.2.2.8-.2h.4l1.6.4 1.9-.1c.2 0 .5.1.7.1L44.6 7l7.8 3c5.9 5.5 9.6 13.3 9.6 22"/><g fill="#ffc942"><path d="M33.5 11.5c2 .6 1.9-.6 3.1.8.7.8 2 2.3 3.5 2.7.2.1.7-.4.7-.8s-1.1-1.1-1.7-1.3c-.6-.2.2-1.3-.6-1.6s-1.7-1.6-2-2.6c-.3-1-1.7-.2-2.2-.4-.5-.2-1.1-.1-1.6.7s.3 2.3.8 2.5"/><path d="M44 39.7c0-.4-3.9-2.5-4.3-2.6-.8 0-1.8-.4-2.5 0-.3.2-.6.4-.7.7-.1.2-.9-.2-1.2-.1-.7.4-1.1-.8-.9-1.3.5-1.1-1.2-.4-1.4-.7.2.4-.1-3.2-.7-1.2-.5 1.5-2.2-.2-2-1.3.3-1.7 2.9-2 3.5-1.7.3.2 1.3 1.7 1.5 1.6.3-.1-.2-1.8-.2-2-.2-.8 1.4-1.1 1.5-2 .1-.7.6-.5 1.1-.9.7-.6.2-1.6 1.1-2.2.3-.2 1.5-.3 1.6-.7.1-.3-1-1.1 0-1.4.9-.2 1.8.2 2-1.1.2-1.1-1.1-1.4-1.4-2.3-.1-.3-.3-1.8-.8-1.5-.7.4-1.1 1.2-1.6.2-1-1.8-3.4-2.6-2.3.3.6 1.5-1.6 6-1.9 1.8-.1-1.4-4.4-1.9-3-3.5 1.5-1.6 3.5-1.7 4-4.2.8-3.5-1.6-.5-2.9-1.2-1.8-1-.3-.5-1.2.8-.4.5-1.5-.3-2.1-.2-.5.1-1.7 1.1-2.1.5-.6-1.2-4.9-2-6.1-1.5-2.4.9-3.3-.3-5.7-.8-.8-.2-5-.3-4.7 1.1.1.6.5 1 .7 1.5.3.8-.9.2-1.2.4-.1.1 1.4 1.1 1.5 1.2.4.4-1.5.9-1.7 1.6-.4 1.4 2.6 1 2.1 2.6-.2.5-1.9 1.3-2.1 3 0 .3 2.1-2.1 3.5-1.6 1.2.4 1.1-2.9 2.7-2.9 2.9 0 3.4 2.8 4.9 4.7.7.9 1.3 1.2 1.4 2.4.1 1.1-.1 2.4.3 3.4s1.1 1 1.6 1.8c.6.9.9 1.8 1.7 2.6 1.2 1.2 3.1 2.9 4.9 2.7.4-.1 1.7.7 2 .9.5.4.7.9 1.1 1.4.3.4 1.3.2 1.8.4.4.2-1 3.2-.5 4 .6.9.6 1.8 1.5 2.5.8.6 1.1.7 1.2 1.8.2 1.8-.4 3.7-.8 5.4-.2.9.2 1.9-.1 2.7-.4 1-.7 1.9-.3 3.1.6 2 4.3 2.3 2.1.6-.9-.7 1-2.6.4-2.7-1-.4.2-.8.3-1.3.3-.9 4.3-4.5 4.6-5.1.3-.5.1-1 .5-1.5.5-.5 1.1-.3 1.6-.7 1.1-.7.7-1.9 1.1-2.9.9-2 1.2-1.2 0-2.7-.4-.5-3.3-.3-3.4-1.9"/><path d="M22.4 10.1c.7.8 1.5-.4 1.6 0s.1 1.2 1 1.2-.8.6-.3.9c.6.2 1.8 1 2.2.7.4-.3 1-.6 1.2-.3.2.2 1.4 0 1.1-.4-.3-.4-1.3-1.4-1.2-1.9 0-.6 1.1-2-.1-1.8-.7-.1-.9.6-.9 1s-1.1-.6-1.3-.6c-.2 0-1-1.2-1.3-1.2s-2.2-.6-2 0-.7 1.6 0 2.4m17 5.8c-.6-.3-1.7-1.8-2.1-1.3-.5.5.1 1.6.5 2.1s2.1 1.5 1.9 1.1.8-1.3-.3-1.9M23.5 5.6c.3 0 .8 1 1.2 1.1.4.1.6.6.8.7s2-.6 2.4-.7c.5-.2-.5-1.2-.9-1.9-.3-.7 0 1.2-.6.9s-.4-.7-1-.7-.2-1.3-1-1-1.2 1.6-.9 1.6M30 8c-.5.1-.4.5-.7.8-.3.3-.3.7 0 1.1.3.4.7 1 1 .4.3-.6 0-1.1 0-1.5 0-.4 0-.9-.3-.8m1.1 1.9c.1.3.4-.6.9-1 .5-.5-.3-1.6-.7-1-.4.3-.3 1.7-.2 2m-.1.4c-.3.4-.5 1.4 0 1.5.5.1.8-.5.6-.9s-.5-.8-.6-.6m2-6.8c-.5.2.7.6-.1.8-.8.2-.8.9-1.5.3-.7-.6-1.5.2-.9.5s1.4 1.2 1.4 1.6c0 .5.8.7 1.6.6.8-.1 1.8.2 1.8-.2s.1-.5 0-.8c-.1-.4-.5-.8-1.3-.4-.8.3-1.4.2-1.5-.2-.1-.4 1.6-1.2 2.4-.6.8.5 1.5-.3.9-.7s-.2-.8.2-.8c.3 0 .5-.8.7-1.3-1.2-.2-2.4-.3-3.6-.4.1.9.4 1.4-.1 1.6m-7.1-.7c.5.2 1.4 0 1.3-.4l-1.5.3s.1.1.2.1m.3.4c-.8-.4-.7.6-.4.9s1.4-.4.4-.9"/><path d="M30.8 2c.6.1.9.5 1 .9.2.3 1-.4 1-.9h-2m-1.6 1.1c-.3.5 0 1 .4.6.4-.5.1-1.7.4-1.1.3.5.9 1.3 1.3 1.4.4 0 .1-.5 0-.9 0-.4-1-.8-.9-1-.6 0-1.2.1-1.8.1.4.3.9.6.6.9M31 7.2c.5.2 0-1 0-1-.5.3-.5.8 0 1m-1.7-.8c.1.3.6.4.9 0 .3-.4 0-2-.4-1.5s-.8.3-1.6 0 1 1.2 1.1 1.5M34.6 34c.7-.1 1.1.7 1.8.7s1.9 1.1 2.5.4c.5-.5-2.3-1-3.2-1.5-1-.5-1.8.5-1.1.4m3.3-30.4c.9.4.8.4.2.9s-.4 1.4.9 1.3 2-1.3 2.6.4c.6 1.8.2 3.7.9 4.2s.1.9 0 1.4.2.9.8.7.4.9 0 1.3-.9 1.3.4 2.8 1.4 1.3 1.8 1.9c.4.5.7-.2.8-.8s-.4-2.7 1.1-2.7c1.4 0 1.8-1.1 2-1.5s1.3-.3 1.9-.8c.5-.5 1.1-.9 1.2-2.7-4.1-3.8-9.2-6.4-14.9-7.5-.2.4-.2.9.3 1.1"/></g></svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#008db3" d="M62 32c0 16.6-13.4 30-30 30S2 48.6 2 32c0-4.4.9-8.5 2.6-12.3l32-17.3c2.3.4 4.5 1 6.5 1.8l.7 1.5 1.2-.8C55 9.8 62 20.1 62 32"/><g fill="#ffc942"><path d="M7.5 20.9c.9 1.8 2.1-.6 2 1.2-.1 1.8 1.2 5.8 2 5.3s.8-3.5 2.1-3.8c1.4-.4 3.3-2.7 3.9-1.6.6 1 .4 2.9.9 2.5.5-.4 1.2 0 1.1 1.3-.1 1.3 1.1 3.1 1.5 3.8s-2.1-2-3.3-3.6c-1.2-1.6.9 3.4 2.4 5.3s7.4 3.2 8.9 4c1.5.8 5.7-1.5 4.1-1.4 0 0-3.7.5-5-.2s-4.4-.7-5-1.6c-.5-.9-.5-2.3-1.5-3.6-.9-1.3-1.5-3.6-.3-2.6s2.6 1.2 2.8.5c.2-.7-2.4-3-.8-4 1.6-1 3.2-.3 3.9-1 .8-.8 2.6-3.1 2.1-4.2-.4-1.1-.5-1.9 0-2.2.5-.3-2.5-.3-1.3-1.2 1.2-.9 2.5-1.6 2.6 0 .1 1.6 0 3.1.6 3.1s1.5-1.8 1.3-2.6c-.3-.8.3-2.5 1.5-2.6 1.2-.1 2.6-2.1 2.9-4s.3-3.5-.6-3.3c-.8.2-.9-1 .3-2-1.5-.3-3-.4-4.6-.4C19.8 2 9.3 9.3 4.6 19.7c1 0 2.3.1 2.9 1.2m35.1-13c-.7 1.2 1.1-.5 2.3-3-.6-.3-1.2-.5-1.8-.8.1 1.1.1 2.9-.5 3.8"/><path d="M34.3 16.9c1.4-.9 3.6-.9 3.6-2.8s5.4-5.1 4.1-5c-1.3.1-3.8 2.5-3.8.9s0-4.6-.3-5.4c-.4-.9-.2 4.4-.6 5.3-.4.9 0 4.2-1.1 4.6-1.2.4-3.2 1.3-3.2 2.5s-.1.8 1.3-.1m1.5 15.8c.7.6-.4 2.2.4 1.8.8-.3 1.7.6 2.1 0 .4-.5.5-.9 1.7.2 1.3 1 2.2.8 1.4 0-.8-.8-1.5-2.2-3.2-2.7 0 0-1.8-.2-3-.8 0 0-1.7-.9-2.3-.3-.5.6-.5-1.6-.9-1.2-.4.4.2 1.7-1 1.4-1.2-.3-1.6.1-1.9-.9s-2.1-.5-.7-1.2c1.4-.7 2.1-1 2.1-.4.1.6 1.4-.5.9-2.1-.5-1.5-1.9-1-1.8-3 0-.9-1.4.3-1.1 1.4.2 1.1-.3 1.3-.8 2.2-.6.9-2.7 2.9-3.2 2.9-.6 0-.4 1.1 0 1.8s2.4.8 2.8.9c.4.1.9-3.1 1-2.2.1.9.3 3.4.6 2.8.3-.6 1.4.2 1.4-.3s-.5-1.5.6-1 2.6.9 2.5.3c-.2-.7 1.7-.2 2.4.4M29.2 26c.5 2.1-.7 2.5-1.1 2.1s1-2.6 1.1-2.1m11.5 13.7c-1.7-1.5-2.4-3.9-2.8-4.2-.7-.6-.4 2-.6 2.6-.2.5-1.2-.6-1.6-.9-.5-.2-.2-.6 0-1 .2-.5-.9-.9-1.7-.7-.8.2-.8-.1-1.1.6s-.1 1.2-.9.8c-.8-.4-1.3.2-1.9.8-.6.6-.8.9-1 1.3-.2.5-3.4.2-3.4 1.7s1.3 2.7 1 3.8.2 2.3 1.2 1.8c1-.6 2.4-.4 2.8-.9.4-.5 3.1-1.2 3.5-.3.5.9 1 1.3 1.8 1.3s.9.8.9 1.3c0 .6 1.2.1 1.9.3.7.2 2.3.1 2.5-1.3.1-1.3.9-2.2 1.1-2.9s-.1-2.7-1.7-4.1m-1.5 9.1c-.8-.1-.2 1.8.3 1.9.5.2.8-1.1.7-1.9 0-.6-.2.1-1 0m12.6-1.7c-.5.1-.9-1.3-1.3-1-.7.6.8 1.9 0 2.6-.8.7-1 1.9-1.7 2s-1.6 1-1 1.5c.6.5 1.6 0 1.9-1 .3-1 .6-1.4 1.3-1.7s.6-1.1 1.3-1.6c.7-.3 0-.8-.5-.8"/></g></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#4fd1d9" d="M32 2C15.5 2 2 15.5 2 32s13.5 30 30 30 30-13.5 30-30S48.5 2 32 2m20 46.2c-1.2-1.1-2.5-2.1-3.8-2.9 1.7-3.4 2.7-7.1 3-10.9h6.4c-.4 5.2-2.4 10-5.6 13.8M6.3 34.4h6.3c.3 3.8 1.4 7.5 3 10.9-1.3.9-2.5 1.8-3.7 2.9-3.1-3.8-5.1-8.6-5.6-13.8M12 15.8c1.2 1.1 2.4 2 3.7 2.9-1.8 3.6-2.8 7.5-3.1 11.5H6.3c.3-5.4 2.4-10.4 5.7-14.4m17.9-6.2v9.6c-2.9-.2-5.7-1-8.4-2.1 2.2-3.1 5.1-5.7 8.4-7.5m0 13.8v6.8H16.8c.2-3.4 1.1-6.6 2.6-9.5 3.2 1.6 6.8 2.5 10.5 2.7m0 11v6.2c-3.7.3-7.3 1.2-10.6 2.7-1.3-2.7-2.2-5.7-2.5-8.9h13.1m0 10.4v9.7c-3.4-1.9-6.2-4.4-8.4-7.5 2.6-1.2 5.5-2 8.4-2.2m4.2 9.6v-9.6c2.9.2 5.7.9 8.3 2.1-2.2 3-5 5.6-8.3 7.5m0-13.8v-6.2H47c-.3 3.1-1.2 6.1-2.5 8.8-3.2-1.5-6.7-2.4-10.4-2.6m0-10.4v-6.8c3.7-.2 7.2-1.2 10.5-2.7 1.4 2.9 2.3 6.1 2.5 9.4h-13zm0-11V9.6c3.3 1.9 6.1 4.4 8.3 7.5-2.6 1.2-5.4 1.9-8.3 2.1M44.5 13c-2-2.4-4.3-4.5-6.9-6.1 4.4 1 8.3 3 11.5 5.9-1 .9-2 1.6-3 2.3-.5-.7-1-1.5-1.6-2.1m-25.1 0c-.5.7-1.1 1.4-1.6 2.1-1-.7-2-1.4-2.9-2.3C18.1 10 22 7.9 26.3 6.9c-2.7 1.6-5 3.7-6.9 6.1m-1.6 36c.4.6.8 1.2 1.3 1.7 2 2.5 4.4 4.7 7.1 6.4-4.3-1-8.2-3-11.4-5.9 1-.8 2-1.5 3-2.2m26.8 2c.5-.7 1.1-1.4 1.6-2.1 1.1.7 2.1 1.5 3 2.3-3.2 2.9-7.2 4.9-11.5 5.9 2.5-1.6 4.9-3.7 6.9-6.1m6.7-20.8c-.2-4-1.3-7.9-3.1-11.5 1.3-.9 2.6-1.8 3.8-2.9 3.2 4 5.3 9 5.7 14.4h-6.4"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><circle cx="32" cy="32" r="30" fill="#3e4347"/><g fill="#464d51"><circle cx="50" cy="35.2" r="7"/><circle cx="18.1" cy="39" r="6"/><circle cx="24.2" cy="50" r="9"/><circle cx="24" cy="17.2" r="4"/><circle cx="37" cy="18.2" r="4"/><circle cx="12.1" cy="25.9" r="4"/><circle cx="39" cy="9.2" r="2"/><circle cx="8.1" cy="39" r="2"/><circle cx="52" cy="50" r="2"/><circle cx="25" cy="29.9" r="3"/><circle cx="15" cy="15.7" r="2"/><circle cx="46" cy="52.6" r="4"/><path d="M24.2 10.8c0 2.8 2.2 5 5 5s5-2.2 5-5-2.2-5-5-5c-2.8-.1-5 2.2-5 5"/></g></svg>

After

Width:  |  Height:  |  Size: 605 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#3e4347" d="M49 32c0-16.6-7.6-30-17-30C15.4 2 2 15.4 2 32s13.4 30 30 30c9.4 0 17-13.4 17-30"/><path fill="#ffe8a6" d="M32 2c9.4 0 17 13.4 17 30s-7.6 30-17 30c16.6 0 30-13.4 30-30S48.6 2 32 2z"/><g fill="#464d51"><path d="M48.9 28.3c-3.3.5-5.9 3.4-5.9 6.9 0 3.2 2.1 5.9 5 6.7.6-3.1 1-6.5 1-10 0-1.1 0-2.4-.1-3.6M24.2 41h-.4c.2-.6.4-1.3.4-2 0-3.3-2.7-6-6-6s-6 2.7-6 6c0 2.9 2 5.2 4.7 5.8-1 1.5-1.6 3.2-1.6 5.2 0 5 4 9 9 9s9-4 9-9c-.1-4.9-4.2-9-9.1-9M24 21.2c2.2 0 4-1.8 4-4 0-.6-.2-1.2-.4-1.8.5.2 1 .3 1.6.3 2.8 0 5-2.2 5-5s-2.2-5-5-5-5 2.2-5 5c0 1 .3 1.9.8 2.6-.3-.1-.6-.1-.9-.1-2.2 0-4 1.8-4 4-.1 2.3 1.7 4 3.9 4"/><circle cx="37" cy="18.2" r="4"/><circle cx="12.1" cy="25.9" r="4"/><circle cx="39" cy="9.2" r="2"/><circle cx="8.1" cy="39" r="2"/><circle cx="25" cy="29.9" r="3"/><circle cx="15" cy="15.7" r="2"/><path d="M42 52.6c0 .9.3 1.8.9 2.5 1.3-1.9 2.4-4 3.3-6.4h-.1c-2.3-.1-4.1 1.7-4.1 3.9"/></g><g fill="#f4dc9f"><path d="M57 35.2c0-3.9-3.1-7-7-7-.4 0-.8 0-1.1.1.1 1.2.1 2.5.1 3.7 0 3.5-.3 6.8-1 10 .6.2 1.3.3 2 .3 3.9-.1 7-3.2 7-7.1"/><circle cx="52" cy="50" r="2"/><path d="M46 56.6c2.2 0 4-1.8 4-4s-1.7-3.9-3.9-4c-.9 2.4-2 4.6-3.3 6.4.8 1 1.9 1.6 3.2 1.6"/></g></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#ffe8a6" d="M32 2c-1.1 0-2 13.4-2 30s.9 30 2 30c16.6 0 30-13.4 30-30S48.6 2 32 2z"/><path fill="#3e4347" d="M30 32c0-16.6.9-30 2-30C15.4 2 2 15.4 2 32s13.4 30 30 30c-1.1 0-2-13.4-2-30"/><g fill="#f4dc9f"><circle cx="50" cy="35.2" r="7"/><path d="M30.1 43.3c.1 5.1.4 9.5.7 12.8 1.5-1.6 2.3-3.7 2.3-6 .1-2.7-1.1-5.1-3-6.8"/><circle cx="37" cy="18.2" r="4"/><circle cx="39" cy="9.2" r="2"/><circle cx="52" cy="50" r="2"/><circle cx="46" cy="52.6" r="4"/><path d="M34.2 10.8c0-2.1-1.3-3.9-3.2-4.6-.3 2.4-.5 5.6-.7 9.5 2.2-.6 3.9-2.6 3.9-4.9"/></g><g fill="#464d51"><path d="M24.2 41h-.4c.2-.6.4-1.3.4-2 0-3.3-2.7-6-6-6s-6 2.7-6 6c0 2.9 2 5.2 4.7 5.8-1 1.5-1.6 3.2-1.6 5.2 0 5 4 9 9 9 2.6 0 5-1.1 6.7-3-.3-3.2-.5-7.6-.7-12.8-1.7-1.3-3.8-2.2-6.1-2.2M24 21.2c2.2 0 4-1.8 4-4 0-.6-.2-1.2-.4-1.8.5.2 1 .3 1.6.3.4 0 .8-.1 1.2-.2.2-3.9.4-7.1.7-9.5-.6-.2-1.2-.4-1.8-.4-2.8 0-5 2.2-5 5 0 1 .3 1.9.8 2.6-.3-.1-.6-.1-.9-.1-2.2 0-4 1.8-4 4-.2 2.4 1.6 4.1 3.8 4.1"/><circle cx="12.1" cy="25.9" r="4"/><circle cx="8.1" cy="39" r="2"/><circle cx="25" cy="29.9" r="3"/><circle cx="15" cy="15.7" r="2"/></g></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#ffe8a6" d="M32 2c-9.4 0-17 13.4-17 30s7.6 30 17 30c16.6 0 30-13.4 30-30S48.6 2 32 2z"/><path fill="#3e4347" d="M15 32c0-16.6 7.6-30 17-30C15.4 2 2 15.4 2 32s13.4 30 30 30c-9.4 0-17-13.4-17-30"/><g fill="#f4dc9f"><circle cx="50" cy="35.2" r="7"/><path d="M24.2 41h-.4c.2-.6.4-1.3.4-2 0-3.3-2.7-6-6-6-1.1 0-2.2.3-3.1.9.1 3.9.7 7.6 1.6 10.9h.1l-.1.1c1.7 6.1 4.5 11 7.9 14 4.8-.2 8.5-4.2 8.5-9 .1-4.8-4-8.9-8.9-8.9M24 21.2c2.2 0 4-1.8 4-4 0-.6-.2-1.2-.4-1.8.5.2 1 .3 1.6.3 2.8 0 5-2.2 5-5s-2.2-5-5-5-5 2.2-5 5c0 1 .3 1.9.8 2.6-.3-.1-.6-.1-.9-.1-2.2 0-4 1.8-4 4-.1 2.3 1.7 4 3.9 4"/><circle cx="37" cy="18.2" r="4"/><path d="M15.6 24c-.2 1.5-.4 3-.5 4.5.6-.7 1-1.6 1-2.6 0-.7-.2-1.3-.5-1.9"/><circle cx="39" cy="9.2" r="2"/><circle cx="52" cy="50" r="2"/><circle cx="25" cy="29.9" r="3"/><circle cx="46" cy="52.6" r="4"/></g><g fill="#464d51"><path d="M15 33.9c-1.7 1-2.9 3-2.9 5.1 0 2.8 1.9 5.1 4.5 5.8-.9-3.3-1.4-7-1.6-10.9M16.7 45c-1 1.4-1.5 3.2-1.5 5 0 5 4 9 9 9h.5c-3.5-2.9-6.3-7.9-8-14m-4.6-15.1c1.2 0 2.3-.5 3-1.4.1-1.6.3-3.1.5-4.5-.7-1.2-2-2.1-3.5-2.1-2.2 0-4 1.8-4 4s1.8 4 4 4"/><circle cx="8.1" cy="39" r="2"/><circle cx="15" cy="15.7" r="2"/></g></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><circle cx="32" cy="32" r="30" fill="#ffe8a6"/><g fill="#f4dc9f"><circle cx="50" cy="35.2" r="7"/><circle cx="18.1" cy="39" r="6"/><circle cx="24.2" cy="50" r="9"/><circle cx="24" cy="17.2" r="4"/><circle cx="37" cy="18.2" r="4"/><circle cx="12.1" cy="25.9" r="4"/><circle cx="39" cy="9.2" r="2"/><circle cx="8.1" cy="39" r="2"/><circle cx="52" cy="50" r="2"/><circle cx="25" cy="29.9" r="3"/><circle cx="15" cy="15.7" r="2"/><circle cx="46" cy="52.6" r="4"/><path d="M24.2 10.8c0 2.8 2.2 5 5 5s5-2.2 5-5-2.2-5-5-5c-2.8-.1-5 2.2-5 5"/></g></svg>

After

Width:  |  Height:  |  Size: 605 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#ffe8a6" d="M49 32c0-16.6-7.6-30-17-30C15.4 2 2 15.4 2 32s13.4 30 30 30c9.4 0 17-13.4 17-30"/><path fill="#3e4347" d="M32 2c9.4 0 17 13.4 17 30s-7.6 30-17 30c16.6 0 30-13.4 30-30S48.6 2 32 2z"/><g fill="#f4dc9f"><path d="M48.9 28.3c-3.3.5-5.9 3.4-5.9 6.9 0 3.2 2.1 5.9 5 6.7.6-3.1 1-6.5 1-10 0-1.1 0-2.4-.1-3.6M24.2 41h-.4c.2-.6.4-1.3.4-2 0-3.3-2.7-6-6-6s-6 2.7-6 6c0 2.9 2 5.2 4.7 5.8-1 1.5-1.6 3.2-1.6 5.2 0 5 4 9 9 9s9-4 9-9c-.1-4.9-4.2-9-9.1-9M24 21.2c2.2 0 4-1.8 4-4 0-.6-.2-1.2-.4-1.8.5.2 1 .3 1.6.3 2.8 0 5-2.2 5-5s-2.2-5-5-5-5 2.2-5 5c0 1 .3 1.9.8 2.6-.3-.1-.6-.1-.9-.1-2.2 0-4 1.8-4 4-.1 2.3 1.7 4 3.9 4"/><circle cx="37" cy="18.2" r="4"/><circle cx="12.1" cy="25.9" r="4"/><circle cx="39" cy="9.2" r="2"/><circle cx="8.1" cy="39" r="2"/><circle cx="25" cy="29.9" r="3"/><circle cx="15" cy="15.7" r="2"/><path d="M42 52.6c0 .9.3 1.8.9 2.5 1.3-1.9 2.4-4 3.3-6.4h-.1c-2.3-.1-4.1 1.7-4.1 3.9"/></g><g fill="#464d51"><path d="M57 35.2c0-3.9-3.1-7-7-7-.4 0-.8 0-1.1.1.1 1.2.1 2.5.1 3.7 0 3.5-.3 6.8-1 10 .6.2 1.3.3 2 .3 3.9-.1 7-3.2 7-7.1"/><circle cx="52" cy="50" r="2"/><path d="M46 56.6c2.2 0 4-1.8 4-4s-1.7-3.9-3.9-4c-.9 2.4-2 4.6-3.3 6.4.8 1 1.9 1.6 3.2 1.6"/></g></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#ffe8a6" d="M34 32c0-16.6-.9-30-2-30C15.4 2 2 15.4 2 32s13.4 30 30 30c1.1 0 2-13.4 2-30"/><path fill="#3e4347" d="M32 2c1.1 0 2 13.4 2 30s-.9 30-2 30c16.6 0 30-13.4 30-30S48.6 2 32 2z"/><g fill="#f4dc9f"><path d="M24.2 41h-.4c.2-.6.4-1.3.4-2 0-3.3-2.7-6-6-6s-6 2.7-6 6c0 2.9 2 5.2 4.7 5.8-1 1.5-1.6 3.2-1.6 5.2 0 5 4 9 9 9s9-4 9-9c-.1-4.9-4.2-9-9.1-9M24 21.2c2.2 0 4-1.8 4-4 0-.6-.2-1.2-.4-1.8.5.2 1 .3 1.6.3 1.9 0 3.6-1.1 4.4-2.7-.1-2-.2-3.8-.4-5.3-.9-1.2-2.4-2.1-4-2.1-2.8 0-5 2.2-5 5 0 1 .3 1.9.8 2.6-.3-.1-.6-.1-.9-.1-2.2 0-4 1.8-4 4s1.7 4.1 3.9 4.1m9.9-.5c0-1.6-.1-3.2-.2-4.7-.4.6-.7 1.4-.7 2.2 0 1 .3 1.8.9 2.5"/><circle cx="12.1" cy="25.9" r="4"/><circle cx="8.1" cy="39" r="2"/><circle cx="25" cy="29.9" r="3"/><circle cx="15" cy="15.7" r="2"/></g><g fill="#464d51"><circle cx="50" cy="35.2" r="7"/><path d="M37 14.2c-1.4 0-2.6.7-3.3 1.8.1 1.5.1 3 .2 4.7.7.9 1.9 1.6 3.1 1.6 2.2 0 4-1.8 4-4s-1.8-4.1-4-4.1"/><circle cx="39" cy="9.2" r="2"/><circle cx="52" cy="50" r="2"/><circle cx="46" cy="52.6" r="4"/><path d="M33.2 7.8c.1 1.5.3 3.3.4 5.3.4-.7.6-1.5.6-2.3 0-1.2-.4-2.2-1-3"/></g></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#3e4347" d="M32 2c-9.4 0-17 13.4-17 30s7.6 30 17 30c16.6 0 30-13.4 30-30S48.6 2 32 2z"/><path fill="#ffe8a6" d="M15 32c0-16.6 7.6-30 17-30C15.4 2 2 15.4 2 32s13.4 30 30 30c-9.4 0-17-13.4-17-30"/><g fill="#464d51"><circle cx="50" cy="35.2" r="7"/><path d="M24.2 41h-.4c.2-.6.4-1.3.4-2 0-3.3-2.7-6-6-6-1.1 0-2.2.3-3.1.9.1 3.9.7 7.6 1.6 10.9h.1l-.1.1c1.7 6.1 4.5 11 7.9 14 4.8-.2 8.5-4.2 8.5-9 .1-4.8-4-8.9-8.9-8.9M24 21.2c2.2 0 4-1.8 4-4 0-.6-.2-1.2-.4-1.8.5.2 1 .3 1.6.3 2.8 0 5-2.2 5-5s-2.2-5-5-5-5 2.2-5 5c0 1 .3 1.9.8 2.6-.3-.1-.6-.1-.9-.1-2.2 0-4 1.8-4 4-.1 2.3 1.7 4 3.9 4"/><circle cx="37" cy="18.2" r="4"/><path d="M15.6 24c-.2 1.5-.4 3-.5 4.5.6-.7 1-1.6 1-2.6 0-.7-.2-1.3-.5-1.9"/><circle cx="39" cy="9.2" r="2"/><circle cx="52" cy="50" r="2"/><circle cx="25" cy="29.9" r="3"/><circle cx="46" cy="52.6" r="4"/></g><g fill="#f4dc9f"><path d="M15 33.9c-1.7 1-2.9 3-2.9 5.1 0 2.8 1.9 5.1 4.5 5.8-.9-3.3-1.4-7-1.6-10.9M16.7 45c-1 1.4-1.5 3.2-1.5 5 0 5 4 9 9 9h.5c-3.5-2.9-6.3-7.9-8-14m-4.6-15.1c1.2 0 2.3-.5 3-1.4.1-1.6.3-3.1.5-4.5-.7-1.2-2-2.1-3.5-2.1-2.2 0-4 1.8-4 4s1.8 4 4 4"/><circle cx="8.1" cy="39" r="2"/><circle cx="15" cy="15.7" r="2"/></g></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#ffce31" d="M43.1 2c3.2 4.8 5.1 10.6 5.1 16.8C48.3 35.5 34.6 49 17.7 49 12 49 6.6 47.4 2 44.7 7.2 55 17.9 62 30.3 62 47.8 62 62 48 62 30.7 62 17.9 54.2 6.9 43.1 2z"/></svg>

After

Width:  |  Height:  |  Size: 244 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><circle cx="32" cy="32" r="30" fill="#3e4347"/><g fill="#464d51"><circle cx="25.9" cy="7.8" r="3.4"/><circle cx="46.9" cy="14.6" r="5.7"/><circle cx="34.7" cy="14.1" r="2.6"/><circle cx="57.5" cy="37" r="2"/><circle cx="55.5" cy="22.3" r="2"/><circle cx="22.5" cy="15.7" r="2"/><circle cx="14.4" cy="16.7" r="4.6"/><circle cx="51.9" cy="29.4" r="2.6"/></g><g fill="#fff" opacity=".7"><path d="M33.8 33c.1-.3.4-.6.7-.8.3-.2.6-.4.9-.5.6-.3 1.3-.4 1.9-.5 1.2-.2 2.4-.4 3.5-.5 1.1-.2 2.1-.4 3-.7 1-.4 1.9-1 2.9-1.9.1 1.4-.5 2.8-1.6 3.8s-2.6 1.5-3.9 1.7c-1.4.2-2.7.1-3.9-.1-.6-.1-1.2-.2-1.8-.4-.5-.1-1-.3-1.7-.1m-16 2.1c-1.1.3-1.6.8-2.3 1.3-.7.5-1.6 1-2.6 1.3-1 .3-2.4.3-3.5-.2S7.6 36 7.3 35c1.1.2 2 .3 2.7.3.7 0 1.3-.2 2-.4s1.6-.5 2.6-.6c.5-.1 1.1-.1 1.7 0 .6.1 1.2.3 1.5.8"/><path d="M14.3 23.5c1.7-.1 3.4.1 5 1.1.8.5 1.5 1.1 2.1 1.8.6.7 1 1.6 1.3 2.4.7 1.7.9 3.5 1 5.2 0 1.7-.1 3.5-.4 5.1-.1.8-.3 1.7-.5 2.5-.2.7-.2 1.3-.1 1.9.1 1.2.8 2.1 2.1 2.7 1.2.6 2.8.7 4.3.6 1.5-.1 3.1-.6 4.5-1.5-1 1.3-2.6 2.3-4.2 2.8-1.7.5-3.5.7-5.4.2-.9-.3-1.9-.8-2.6-1.5-.8-.8-1.3-1.8-1.4-2.8-.2-1-.1-2.1 0-3 .1-.8.3-1.6.4-2.4.4-3.1.7-6.3.1-9.2-.3-1.4-1-2.8-2.1-3.8-1-.8-2.5-1.5-4.1-2.1m4.8 29.9c2.7 0 5.3.2 7.9.1 2.6-.1 5.1-.3 7.5-.9 2.4-.6 4.8-1.5 7.1-2.6s4.6-2.5 7-3.8c-1.6 2.2-3.5 4.2-5.8 5.8-2.3 1.6-4.8 2.8-7.6 3.5-2.8.7-5.6.7-8.3.4-2.8-.4-5.4-1.3-7.8-2.5"/></g></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#ffe8a6" d="M22.4 2.2c5 2.5 9.4 6.4 12.4 11.5 1.6 2.7 2.6 5.6 3.2 8.5.8 3.9.1 9.5-6.8 7.6-3.7-1-7.3 5.7-.4 7.6 2 .5-4.7 2.1.4 4.9 0 0-5.5 1.3-2.1 3.9 1.5 1.2-.2 3.1-1.1 3.9-1.4 1.2-3 2.2-4.7 3.2C18.5 55.9 13.2 57.1 8 57c9.3 6.1 21.8 6.9 32.3 1.1 14.8-8.2 20.1-26.5 11.8-40.9C46 6.5 34.1 1 22.4 2.2"/><path d="M42.9 47.5c-1.5-.4-3 .4-3.4 1.9-.4 1.4.5 2.9 1.9 3.3s3-.4 3.4-1.9c.4-1.4-.4-2.9-1.9-3.3m4-32.5c-1.5-.4-3 .4-3.4 1.9-.4 1.4.5 2.9 1.9 3.3 1.5.4 3-.4 3.4-1.9.4-1.4-.4-2.9-1.9-3.3M34.1 48.5c-2.4-.7-5 .7-5.6 3.1-.7 2.4.7 4.9 3.2 5.5s5-.7 5.6-3.1c.7-2.3-.7-4.8-3.2-5.5m17-17.4c-2.6-.7-5.2.8-5.9 3.3-.7 2.5.8 5.1 3.3 5.8 2.6.7 5.2-.8 5.9-3.3.8-2.5-.7-5.1-3.3-5.8m-26.8 24c-1.2-.3-2.4.4-2.7 1.5-.3 1.1.4 2.3 1.5 2.6 1.2.3 2.4-.4 2.7-1.5.3-1-.4-2.2-1.5-2.6M38.5 7.4c-.9-.2-1.9.3-2.1 1.2-.3.9.3 1.8 1.2 2.1.9.2 1.9-.3 2.1-1.2.3-.9-.3-1.9-1.2-2.1" fill="#f4dc9f"/><path fill="#7f5629" d="M45.5 41.7c-.3.5-.9.9-1.4 1.2-.6.3-1.2.5-1.8.6-1.2.3-2.5.3-3.8.3-1.3-.1-2.5-.2-3.7-.5-1.2-.3-2.4-.6-3.6-1.1 2.5.2 4.9.5 7.3.6 1.2.1 2.4.1 3.6 0 .6-.1 1.2-.1 1.8-.3.6-.1 1.1-.4 1.6-.8"/><path fill="#b79918" d="M37.4 46.8c-1.3.1-2.4-.1-3.6-.2-.6-.1-1.2-.1-1.7-.1-.6 0-1.1 0-1.8.1.4-.5 1.1-.8 1.7-.9.6-.1 1.3-.1 1.9-.1 1.3.2 2.5.5 3.5 1.2"/><path fill="#7f5629" d="M34.5 37.5c-.3-.2-.6-.3-.8-.4L33 37c-.5-.2-1.1-.4-1.6-.9.7-.2 1.2-.2 1.9-.1.3.1.6.2.9.5.2.3.4.7.3 1"/><path fill="#fff" d="M44.1 23c2.7.7 4.7 3.6 4 6.3-.8 2.7-4 4.1-6.7 3.4-2.7-.7-2.2-2.9-1.4-5.6.7-2.7 1.3-4.8 4.1-4.1"/><path fill="#7f5629" d="M42.8 24.6c1.7.5 3.1 2.3 2.7 4s-2.7 2.5-4.4 2.1c-1.7-.5-1.3-1.8-.9-3.5.5-1.7.9-3.1 2.6-2.6"/><path fill="#b79918" d="M37.1 35.2c.7 1 1.7 1.5 2.7 2l3.1 1.5c1 .5 2.1 1.1 3 1.9.5.4.9.9 1.2 1.4.3.6.4 1.2.2 1.8-.1-1.2-1-2-1.9-2.6-.9-.6-2-1.1-3-1.7-1-.5-2.1-1.1-3.1-1.8-.8-.4-1.8-1.3-2.2-2.5"/></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#ffe8a6" d="M41.6 2.2c-5 2.5-9.4 6.4-12.4 11.5-1.6 2.7-2.6 5.6-3.2 8.5-.8 3.9-.1 9.5 6.8 7.6 3.7-1 7.3 5.7.4 7.6-2 .5 4.7 2.1-.4 4.9 0 0 5.5 1.3 2.1 3.9-1.5 1.2.2 3.1 1.1 3.9 1.4 1.2 3 2.2 4.7 3.2 4.9 2.7 10.2 3.9 15.3 3.8-9.3 6.1-21.8 6.9-32.3 1.1C8.9 49.8 3.6 31.5 11.9 17.1 18 6.5 29.9 1 41.6 2.2"/><path d="M21.1 47.5c1.5-.4 3 .4 3.4 1.9.4 1.4-.5 2.9-1.9 3.3s-3-.4-3.4-1.9c-.4-1.4.4-2.9 1.9-3.3m-4-32.5c1.5-.4 3 .4 3.4 1.9.4 1.4-.5 2.9-1.9 3.3-1.5.4-3-.4-3.4-1.9-.4-1.4.4-2.9 1.9-3.3m12.8 33.5c2.4-.7 5 .7 5.6 3.1.7 2.4-.7 4.9-3.2 5.5-2.4.7-5-.7-5.6-3.1-.7-2.3.7-4.8 3.2-5.5m-17-17.4c2.6-.7 5.2.8 5.9 3.3.7 2.5-.8 5.1-3.3 5.8s-5.2-.8-5.9-3.3c-.8-2.5.7-5.1 3.3-5.8m26.8 24c1.2-.3 2.4.4 2.7 1.5.3 1.1-.4 2.3-1.5 2.6-1.2.3-2.4-.4-2.7-1.5-.3-1 .4-2.2 1.5-2.6M25.5 7.4c.9-.2 1.9.3 2.1 1.2.3.9-.3 1.8-1.2 2.1-.9.2-1.9-.3-2.1-1.2-.3-.9.3-1.9 1.2-2.1" fill="#f4dc9f"/><path fill="#7f5629" d="M18.5 41.7c.5.4 1 .6 1.6.8.6.2 1.2.2 1.8.3 1.2.1 2.4.1 3.6 0 2.4-.1 4.8-.3 7.3-.6-1.1.5-2.3.9-3.6 1.1-1.2.3-2.5.4-3.7.5-1.3 0-2.5 0-3.8-.3-.6-.1-1.2-.3-1.8-.6-.6-.2-1.1-.6-1.4-1.2"/><path fill="#b79918" d="M26.6 46.8c1.1-.7 2.3-1 3.5-1.2.6 0 1.3 0 1.9.1.6.1 1.3.4 1.7.9-.6-.1-1.2-.1-1.8-.1-.6 0-1.1.1-1.7.1-1.2.1-2.4.3-3.6.2"/><path fill="#7f5629" d="M29.5 37.5c-.1-.3.1-.7.4-1 .3-.3.6-.4.9-.5.6-.1 1.2-.2 1.9.1-.5.5-1.1.8-1.6.9l-.7.2c-.4 0-.6.1-.9.3"/><path fill="#fff" d="M20 23c-2.7.7-4.7 3.6-4 6.3.8 2.7 4 4.1 6.7 3.4 2.7-.7 2.2-2.9 1.4-5.6-.8-2.7-1.4-4.8-4.1-4.1"/><path fill="#7f5629" d="M21.2 24.6c-1.7.5-3.1 2.3-2.7 4s2.7 2.5 4.4 2.1c1.7-.5 1.3-1.8.9-3.5-.5-1.7-.9-3.1-2.6-2.6"/><path fill="#b79918" d="M26.9 35.2c-.3 1.2-1.4 2-2.3 2.7-1 .7-2 1.2-3.1 1.8-1 .5-2.1 1-3 1.7-.9.6-1.8 1.4-1.9 2.6-.2-.6-.1-1.2.2-1.8.3-.6.7-1 1.2-1.4.9-.8 2-1.4 3-1.9l3.1-1.5c1-.7 2.1-1.2 2.8-2.2"/></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><circle cx="32" cy="32" r="30" fill="#ffe8a6"/><g fill="#f4dc9f"><circle cx="50" cy="35.2" r="7"/><circle cx="18.1" cy="39" r="6"/><circle cx="24.2" cy="50" r="9"/><circle cx="24" cy="17.2" r="4"/><circle cx="37" cy="18.2" r="4"/><circle cx="12.1" cy="25.9" r="4"/><circle cx="39" cy="9.2" r="2"/><circle cx="8.1" cy="39" r="2"/><circle cx="52" cy="50" r="2"/><circle cx="25" cy="29.9" r="3"/><circle cx="15" cy="15.7" r="2"/><circle cx="46" cy="52.6" r="4"/><path d="M24.2 10.8c0 2.8 2.2 5 5 5s5-2.2 5-5-2.2-5-5-5c-2.8-.1-5 2.2-5 5"/></g><g fill="#827717"><path d="M37 39c-3.5 4.9-11.3 4.8-9.8-3.7.6-3.3 2.2-13 2.2-13v10.6c0 7.6 2.1 7.3 7.6 6.1"/><path d="M42.8 43.9c-7 4.8-14.7 4.8-21.6 0-.8-.6-1.6.4-1 1.4 2.1 3.5 6.4 6.6 11.8 6.6s9.7-3.1 11.8-6.6c.6-1-.2-2-1-1.4m-4.4-19.2c3.7 7 11.2 7 14.9 0 .2-.4-.3-.5-.9-.9-3.7 2.9-9.8 2.7-13.1 0-.6.4-1.1.6-.9.9m-27.7 0c3.7 7 11.2 7 14.9 0 .2-.4-.3-.5-.9-.9-3.7 2.9-9.8 2.7-13.1 0-.6.4-1.1.6-.9.9"/></g></svg>

After

Width:  |  Height:  |  Size: 1011 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><g fill="#ffca28"><path d="m20.5 59.7 7-7.2c-2.5-.5-4.8-1.5-6.9-2.9l-.1 10.1m23-55.4-7 7.2c2.5.5 4.8 1.5 6.9 2.9l.1-10.1m-32 32.2-7.2 7 10.1-.1C13 41.3 12 39 11.5 36.5m41-9 7.2-7-10.1.1c1.4 2.1 2.4 4.4 2.9 6.9m-38.1-6.9-10.1-.1 7.2 7c.5-2.5 1.5-4.8 2.9-6.9m35.2 22.8 10.1.1-7.2-7c-.5 2.5-1.5 4.8-2.9 6.9M27.5 11.5l-7-7.2.1 10.1c2.1-1.4 4.4-2.4 6.9-2.9m9 41 7 7.2-.1-10.1C41.3 51 39 52 36.5 52.5M14.8 44l-4 9.3 9.3-4C18 47.8 16.2 46 14.8 44m34.4-24 4-9.3-9.3 4c2.1 1.5 3.9 3.3 5.3 5.3M11 32c0-1.3.1-2.5.4-3.7L2 32l9.4 3.7c-.3-1.2-.4-2.4-.4-3.7m51 0-9.4-3.7c.2 1.2.4 2.5.4 3.7 0 1.3-.1 2.5-.4 3.7L62 32M20 14.8l-9.3-4 4 9.3c1.5-2.1 3.3-3.9 5.3-5.3m24 34.4 9.3 4-4-9.3C47.8 46 46 47.8 44 49.2m-8.3-37.8L32 2l-3.7 9.4c1.2-.2 2.5-.4 3.7-.4 1.3 0 2.5.1 3.7.4m-7.4 41.2L32 62l3.7-9.4c-1.2.3-2.4.4-3.7.4-1.3 0-2.5-.1-3.7-.4"/><path d="M32 13c-10.5 0-19 8.5-19 19s8.5 19 19 19 19-8.5 19-19-8.5-19-19-19M20.4 30.7c1.2-3.2 3-4.9 4.7-4.9s3.5 1.6 4.7 4.9c.1.3-.5.9-.8.6-1.1-1.2-2.5-1.7-3.9-1.7s-2.8.5-3.9 1.7c-.4.4-1-.2-.8-.6m20.3 7.5C39.1 40.8 36 43 32 43c-4 0-7.2-2.3-8.7-4.8-.4-.7.1-1.4.8-1 5.1 3.6 10.8 3.6 15.9 0 .6-.4 1.1.4.7 1m2.2-6.9c-1.1-1.2-2.5-1.7-3.9-1.7s-2.8.5-3.9 1.7c-.3.3-.9-.3-.8-.6 1.2-3.2 3-4.9 4.7-4.9 1.8 0 3.5 1.6 4.7 4.9.1.4-.5 1-.8.6"/></g></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#ffce31" d="M62 23H39.1L32 2l-7.1 21H2l18.5 13-7.1 21L32 44l18.5 13-7.1-21L62 23z"/><path d="m46.2 20.3 4-11.4-10.5 7.2 1.5 4.2zM27.9 50 32 62l4.1-12-4.1-2.8zm22.8-15.7-3.8 2.6 1.6 4.8h12.9zM24.3 16.1 13.8 8.9l4 11.4h5zm-11 18.2L2.6 41.7h12.9l1.6-4.8z" fill="#ffdf85"/></svg>

After

Width:  |  Height:  |  Size: 347 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64 64"><path fill="#f5a300" d="m7 31 14.1 10.3L14.2 62l17.9-12.8 18 12.8L57 2z"/><path id="a" fill="#fff" d="m38.9 39.9 10.9-7.8H36.3l-4.2-12.6L28 32.1H14.5l10.9 7.8-4.1 12.6 10.8-7.8L43 52.5z"/><use xlink:href="#a"/><path d="M39 28.4h3.5L57 2 37.8 24.7zM57 2 34.6 15l1.8 5.6zm-3.1 26.4L57 2l-9.8 26.4z" fill="#ffce31"/></svg>

After

Width:  |  Height:  |  Size: 422 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#a1b8c7" d="m37.9 46.2 3.1-36c0-11-18-11-18 0l3.1 36C24.2 47.9 23 50.3 23 53c0 5 4 9 9 9s9-4 9-9c0-2.7-1.2-5.1-3.1-6.8M32 59.8c-3.7 0-6.7-3-6.7-6.8 0-2.4 1.3-4.6 3.3-5.8l-2-37.2c0-6.4 10.8-6.4 10.8 0l-1.9 37.2c1.9 1.2 3.3 3.3 3.3 5.8 0 3.7-3.1 6.8-6.8 6.8" opacity=".8"/><g fill="#ed4c5c"><path d="m28.4 21.4 1.4 27.5h4.4l1.4-27.5z"/><path d="M37.6 53c0 3.1-2.5 5.6-5.6 5.6-3.1 0-5.6-2.5-5.6-5.6 0-3.1 2.5-5.6 5.6-5.6 3.1 0 5.6 2.5 5.6 5.6"/></g><ellipse cx="32" cy="21.4" fill="#a5203c" rx="3.6" ry="1.2"/><path d="M30.9 28.2H26l-.1-1.5h4.9zm0 4.2h-4.7v-1.5h4.6zm0 4.2h-4.5v-1.5h4.4zm0 4.2h-4l-.1-1.5h4.1zM31 45h-3.8v-1.4h3.7z" fill="#51575b"/></svg>

After

Width:  |  Height:  |  Size: 723 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#ff5a79" d="M32 2C20.6 17.6 14 32 14 43.8c0 10 8.1 18.2 18 18.2s18-8.1 18-18.2C50 32 43.2 17.4 32 2z"/></svg>

After

Width:  |  Height:  |  Size: 181 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><g fill="#ffce31"><circle cx="32" cy="32" r="14"/><path d="M37.6 15.7 32 2l-5.6 13.7c1.8-.3 3.7-.5 5.6-.5 1.9 0 3.8.2 5.6.5M26.4 48.3 32 62l5.6-13.7c-1.8.3-3.7.5-5.6.5-1.9 0-3.8-.2-5.6-.5m21.9-10.7L62 32l-13.7-5.6c.3 1.8.5 3.7.5 5.6 0 1.9-.2 3.8-.5 5.6M15.7 26.4 2 32l13.7 5.6c-.3-1.8-.5-3.7-.5-5.6 0-1.9.2-3.8.5-5.6m31.8-2 5.7-13.6-13.6 5.7c1.5 1.1 3 2.2 4.3 3.6 1.4 1.4 2.5 2.8 3.6 4.3m-31 15.2-5.7 13.6 13.6-5.7c-1.5-1.1-3-2.2-4.3-3.6-1.4-1.4-2.5-2.8-3.6-4.3m23.1 7.9 13.6 5.7-5.7-13.6c-1.1 1.5-2.2 3-3.6 4.3-1.4 1.4-2.8 2.5-4.3 3.6m-15.2-31-13.6-5.7 5.7 13.6c1.1-1.5 2.2-3 3.6-4.3 1.4-1.4 2.8-2.5 4.3-3.6"/></g></svg>

After

Width:  |  Height:  |  Size: 681 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><g fill="#ffce31"><circle cx="32" cy="32" r="14"/><path d="M37.6 15.7 32 2l-5.6 13.7c1.8-.3 3.7-.5 5.6-.5 1.9 0 3.8.2 5.6.5M26.4 48.3 32 62l5.6-13.7c-1.8.3-3.7.5-5.6.5-1.9 0-3.8-.2-5.6-.5m21.9-10.7L62 32l-13.7-5.6c.3 1.8.5 3.7.5 5.6 0 1.9-.2 3.8-.5 5.6M15.7 26.4 2 32l13.7 5.6c-.3-1.8-.5-3.7-.5-5.6 0-1.9.2-3.8.5-5.6m31.8-2 5.7-13.6-13.6 5.7c1.5 1.1 3 2.2 4.3 3.6 1.4 1.4 2.5 2.8 3.6 4.3m-31 15.2-5.7 13.6 13.6-5.7c-1.5-1.1-3-2.2-4.3-3.6-1.4-1.4-2.5-2.8-3.6-4.3m23.1 7.9 13.6 5.7-5.7-13.6c-1.1 1.5-2.2 3-3.6 4.3-1.4 1.4-2.8 2.5-4.3 3.6m-15.2-31-13.6-5.7 5.7 13.6c1.1-1.5 2.2-3 3.6-4.3 1.4-1.4 2.8-2.5 4.3-3.6"/></g><path fill="#fff" d="M30 45.8c-.7 0-1.4-.1-2.1-.3-2.7-.9-4.6-3.5-4.6-6.5 0-2 .8-3.8 2.3-5.1l1.2-.9.4-1.6c1.1-3.9 4.7-6.7 8.7-6.7.4 0 .8 0 1.3.1.4.1.7.1 1.1.2l.2-.3c1.6-3 4.7-4.8 8-4.8 5 0 9.1 4.2 9.1 9.3v.9c.4.2.8.3 1.1.6 2.4 1.4 4 4.1 4 7 0 3.8-2.5 7-6.1 7.8-.6.1-1.2.2-1.8.2l-22.8.1"/><path fill="#75d6ff" d="M46.5 21.3c4.3 0 7.8 3.6 7.8 8v.6c-1.8.1-3.4.9-4.7 2 1-.6 2.1-.9 3.3-.9.4 0 .9 0 1.3.1.7.1 1.4.4 2 .8 2 1.2 3.3 3.3 3.3 5.8 0 3.2-2.2 5.8-5.1 6.5-.5.1-1 .2-1.5.2H30c-.6 0-1.1-.1-1.7-.3-2.1-.7-3.7-2.8-3.7-5.2 0-1.6.7-3.1 1.8-4.1.5-.5 1.1-.8 1.7-1 .5-.2 1.1-.3 1.8-.3 1.7 0 3.2.8 4.2 2.1-1.1-2.1-3.2-3.6-5.7-3.9.9-3.3 3.9-5.7 7.4-5.7.4 0 .7 0 1.1.1.7.1 1.4.3 2 .6 2.4 1.1 4.1 3.3 4.5 6 0-3.1-1.5-5.8-3.9-7.4 1.5-2.4 4-4 7-4m0-2.7c-3.6 0-6.9 1.9-8.9 5h-.2c-.5-.1-1-.1-1.5-.1-4.6 0-8.7 3.1-9.9 7.7l-.3 1.1c-.3.2-.6.5-.9.7-1.8 1.4-2.8 3.6-2.8 6 0 3.5 2.2 6.6 5.5 7.7.8.3 1.7.4 2.5.4h22.8c.7 0 1.4-.1 2.1-.2 4.2-1 7.1-4.8 7.1-9.2 0-3.4-1.8-6.5-4.6-8.2-.1-.1-.3-.2-.4-.2v-.1c0-5.8-4.7-10.6-10.5-10.6z"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><g fill="#ffce31"><circle cx="22" cy="24" r="9.3"/><path d="M25.7 13.1 22 4l-3.7 9.1c1.2-.2 2.5-.3 3.7-.3 1.3 0 2.5.1 3.7.3m-7.4 21.8L22 44l3.7-9.1c-1.2.2-2.5.3-3.7.3-1.3 0-2.5-.1-3.7-.3m14.6-7.2L42 24l-9.1-3.7c.2 1.2.3 2.5.3 3.7 0 1.3-.1 2.5-.3 3.7m-21.8-7.4L2 24l9.1 3.7c-.2-1.2-.3-2.5-.3-3.7 0-1.3.1-2.5.3-3.7M32.3 19l3.8-9.1-9.1 3.8c1 .7 2 1.5 2.9 2.4.9.9 1.7 1.8 2.4 2.9M11.7 29l-3.8 9.1 9.1-3.8c-1-.7-2-1.5-2.9-2.4-.9-.9-1.7-1.8-2.4-2.9M27 34.3l9.1 3.8-3.8-9.1c-.7 1-1.5 2-2.4 2.9-.9.9-1.8 1.7-2.9 2.4M17 13.7 7.9 9.9l3.8 9.1c.7-1 1.5-2 2.4-2.9.9-.9 1.8-1.7 2.9-2.4"/></g><path fill="#fff" d="M17.2 58.1c-1 0-2-.2-2.9-.5-3.8-1.3-6.4-4.9-6.4-9 0-2.7 1.2-5.3 3.2-7.1.5-.5 1.1-.9 1.7-1.2l.6-2.2c1.5-5.5 6.5-9.3 12.1-9.3.6 0 1.1 0 1.8.1l1.5.3.2-.5c2.3-4.1 6.6-6.7 11.2-6.7C47.3 22 53 27.8 53 35v1.3c.5.2 1.1.5 1.6.8 3.4 2 5.5 5.7 5.5 9.7 0 5.2-3.5 9.7-8.6 10.9-.8.2-1.7.3-2.5.3l-31.8.1"/><path fill="#75d6ff" d="M40.3 24.1c6 0 10.9 5 10.9 11.1v.9c-2.5.2-4.8 1.2-6.6 2.8 1.3-.8 2.9-1.2 4.6-1.2.6 0 1.2.1 1.8.2 1 .2 1.9.6 2.8 1.1 2.7 1.6 4.6 4.6 4.6 8 0 4.4-3 8.1-7.1 9-.7.2-1.3.2-2.1.2h-32c-.8 0-1.6-.1-2.3-.4-3-1-5.1-3.8-5.1-7.2 0-2.3 1-4.3 2.6-5.7.7-.6 1.5-1.1 2.4-1.4.8-.3 1.6-.4 2.5-.4 2.4 0 4.5 1.2 5.9 2.9h.1c-1.6-3-4.5-5-8-5.4 1.3-4.6 5.4-7.9 10.3-7.9.5 0 1 .1 1.5.1 1 .1 1.9.4 2.8.8 3.3 1.5 5.7 4.6 6.3 8.4v-.1c0-4.3-2.2-8-5.4-10.2 1.8-3.3 5.3-5.6 9.5-5.6m0-3.7c-5 0-9.7 2.6-12.4 6.9h-.3c-.8-.1-1.4-.2-2.1-.2-6.4 0-12.2 4.4-13.9 10.6l-.4 1.5c-.5.3-.9.6-1.3 1C7.4 42.3 6 45.4 6 48.7c0 4.9 3.1 9.2 7.7 10.8 1.1.4 2.3.6 3.5.6h31.9c1 0 1.9-.1 2.9-.3 5.9-1.4 10-6.6 10-12.7 0-4.6-2.5-9-6.5-11.3l-.6-.3v-.1c0-8.4-6.5-15-14.6-15z"/></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><g fill="#ffce31"><circle cx="20" cy="20" r="8.4"/><path d="M23.4 10.2 20 2l-3.4 8.2c1.1-.2 2.2-.3 3.4-.3 1.2 0 2.3.1 3.4.3m-6.8 19.6L20 38l3.4-8.2c-1.1.2-2.2.3-3.4.3-1.2 0-2.3-.1-3.4-.3m13.2-6.4L38 20l-8.2-3.4c.2 1.1.3 2.2.3 3.4 0 1.2-.1 2.3-.3 3.4m-19.6-6.8L2 20l8.2 3.4c-.2-1.1-.3-2.2-.3-3.4 0-1.2.1-2.3.3-3.4m19.1-1.1 3.4-8.2-8.2 3.4c.9.6 1.8 1.3 2.6 2.2.9.8 1.6 1.7 2.2 2.6m-18.6 9-3.4 8.2 8.2-3.4c-.9-.6-1.8-1.3-2.6-2.2-.9-.8-1.6-1.6-2.2-2.6m13.8 4.8 8.2 3.4-3.4-8.2c-.6.9-1.3 1.8-2.2 2.6-.8.9-1.6 1.6-2.6 2.2m-9-18.6L7.3 7.3l3.4 8.2c.6-.9 1.3-1.8 2.2-2.6.8-.9 1.7-1.6 2.6-2.2"/></g><path fill="#fff" d="M24 33.5c-.8 0-1.7-.1-2.5-.4-3.2-1.1-5.4-4.1-5.4-7.5 0-2.3 1-4.4 2.7-5.9.4-.4.9-.7 1.4-1l.5-1.8C22 12.4 26.2 9.2 31 9.2c.5 0 1 0 1.5.1.4.1.9.2 1.3.3l.2-.4c1.9-3.4 5.6-5.6 9.5-5.6 6 0 10.9 4.8 10.9 10.8v1.1c.5.2.9.4 1.3.6 2.9 1.7 4.7 4.8 4.7 8.1 0 4.4-3 8.1-7.3 9.1-.7.2-1.4.2-2.1.2H24"/><path fill="#b6c1d1" d="M43.6 5.1c5.1 0 9.3 4.1 9.3 9.2v.7c-2.1.2-4.1 1-5.6 2.3 1.1-.7 2.5-1 3.9-1 .5 0 1 .1 1.5.1.8.2 1.6.5 2.4.9 2.3 1.3 3.9 3.8 3.9 6.7 0 3.7-2.6 6.8-6 7.5-.6.1-1.1.2-1.7.2H24c-.7 0-1.4-.1-2-.3-2.5-.8-4.3-3.2-4.3-6 0-1.9.8-3.6 2.2-4.7.6-.5 1.3-.9 2.1-1.2.7-.2 1.4-.4 2.1-.4 2 0 3.9 1 5 2.5h.1c-1.3-2.5-3.9-4.2-6.8-4.5 1.1-3.8 4.6-6.6 8.8-6.6.4 0 .9 0 1.3.1.8.1 1.7.4 2.4.7 2.8 1.2 4.9 3.9 5.3 7v-.1c0-3.6-1.8-6.7-4.6-8.5 1.4-2.6 4.5-4.6 8-4.6m0-3.1c-4.3 0-8.2 2.2-10.5 5.7h-.3c-.7-.1-1.2-.1-1.8-.1-5.5 0-10.3 3.6-11.8 8.9l-.4 1.2c-.4.2-.8.5-1.1.8-2.1 1.8-3.3 4.4-3.3 7.1 0 4.1 2.6 7.7 6.5 9 1 .3 2 .5 3 .5H51c.8 0 1.6-.1 2.5-.3 5-1.1 8.5-5.5 8.5-10.6 0-3.9-2.1-7.5-5.5-9.4-.2-.1-.3-.2-.5-.3v-.1C56 7.6 50.4 2 43.6 2z"/><path d="M28.8 46c-.6 1.6-.1 3.2 1.1 3.6s2.6-.5 3.2-2.1c.7-1.8.7-4.4.3-7.3-2.3 2-4 4-4.6 5.8m13.1 1.6c.7-1.8.7-4.4.3-7.3-2.2 1.9-3.8 3.9-4.5 5.8-.6 1.6-.1 3.2 1.1 3.6s2.5-.6 3.1-2.1m9.1-7.3c-2.2 1.9-3.8 3.9-4.5 5.8-.6 1.6-.1 3.2 1.1 3.6s2.6-.5 3.2-2.1c.6-1.9.6-4.4.2-7.3M19.9 46c-.6 1.6-.1 3.2 1.1 3.6s2.6-.5 3.2-2.1c.7-1.8.7-4.4.3-7.3-2.3 2-3.9 4-4.6 5.8m1.9 12.3c-.6 1.6-.1 3.2 1.1 3.6s2.6-.5 3.2-2.1c.7-1.8.7-4.4.3-7.3-2.3 1.9-3.9 3.9-4.6 5.8m13.1 1.5c.7-1.8.7-4.4.3-7.3-2.2 1.9-3.8 3.9-4.5 5.8-.6 1.6-.1 3.2 1.1 3.6s2.5-.5 3.1-2.1m9.1-7.3c-2.2 1.9-3.8 3.9-4.5 5.8-.6 1.6-.1 3.2 1.1 3.6s2.6-.5 3.2-2.1c.6-1.8.7-4.4.2-7.3m-31 5.8c-.6 1.6-.1 3.2 1.1 3.6s2.6-.5 3.2-2.1c.7-1.8.7-4.4.3-7.3-2.3 1.9-4 3.9-4.6 5.8" fill="#75d6ff"/></svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path d="M23.6 45.4c-.6 1.6-.1 3.3 1.1 3.8 1.2.4 2.7-.5 3.3-2.2.7-1.9.7-4.6.3-7.6-2.3 2-4 4-4.7 6M37.2 47c.7-1.9.7-4.6.3-7.6-2.3 2-4 4.1-4.7 6-.6 1.6-.1 3.3 1.1 3.8 1.2.4 2.7-.6 3.3-2.2m9.4-7.6c-2.3 2-4 4.1-4.7 6-.6 1.6-.1 3.3 1.1 3.8 1.2.4 2.7-.5 3.3-2.2.8-1.9.8-4.6.3-7.6m-32.2 6c-.6 1.6-.1 3.3 1.1 3.8 1.2.4 2.7-.5 3.3-2.2.7-1.9.7-4.6.3-7.6-2.3 2-4 4-4.7 6m2 12.7c-.6 1.6-.1 3.3 1.1 3.8 1.2.4 2.7-.5 3.3-2.2.7-1.9.7-4.6.3-7.6-2.3 2-4 4.1-4.7 6M30 59.7c.7-1.9.7-4.6.3-7.6-2.3 2-4 4.1-4.7 6-.6 1.6-.1 3.3 1.1 3.8 1.2.4 2.7-.5 3.3-2.2m9.4-7.6c-2.3 2-4 4.1-4.7 6-.6 1.6-.1 3.3 1.1 3.8 1.2.4 2.7-.5 3.3-2.2.8-1.9.8-4.5.3-7.6m-32.2 6c-.6 1.6-.1 3.3 1.1 3.8 1.2.4 2.7-.5 3.3-2.2.7-1.9.7-4.6.3-7.6-2.3 2-4 4.1-4.7 6" fill="#75d6ff"/><path fill="#fff" d="M18.9 33.7c-.8 0-1.7-.1-2.5-.4-3.3-1.1-5.4-4.1-5.4-7.5 0-2.3 1-4.5 2.7-6 .4-.4.9-.7 1.5-1l.5-1.8C17 12.4 21.3 9.2 26 9.2c.5 0 1 0 1.5.1.4.1.9.2 1.3.3l.2-.4c1.9-3.5 5.6-5.6 9.5-5.6 6 0 10.9 4.9 10.9 10.9v1.1c.5.2.9.4 1.4.6 2.9 1.7 4.7 4.8 4.7 8.1 0 4.4-3 8.2-7.3 9.1-.7.2-1.4.2-2.1.2l-27.2.1"/><path fill="#b6c1d1" d="M38.5 5.2c5.1 0 9.3 4.2 9.3 9.3v.7c-2.2.2-4.1 1-5.6 2.4 1.1-.7 2.5-1 3.9-1 .5 0 1 .1 1.5.1.8.2 1.6.5 2.4.9 2.3 1.3 3.9 3.9 3.9 6.8 0 3.7-2.6 6.8-6.1 7.6-.6.1-1.1.2-1.8.2H18.9c-.7 0-1.4-.1-2-.3-2.5-.8-4.4-3.2-4.4-6 0-1.9.8-3.6 2.2-4.8.6-.5 1.3-.9 2.1-1.2.7-.2 1.4-.4 2.1-.4 2 0 3.9 1 5 2.5h.1c-1.3-2.5-3.9-4.2-6.8-4.5 1.1-3.8 4.6-6.6 8.8-6.6.4 0 .9 0 1.3.1.8.1 1.7.4 2.4.7 2.8 1.3 4.9 3.9 5.3 7v-.1c0-3.6-1.8-6.8-4.6-8.6 1.5-2.9 4.6-4.8 8.1-4.8m0-3.2C34.2 2 30.2 4.2 28 7.8h-.3c-.7-.1-1.2-.1-1.8-.1-5.5 0-10.3 3.7-11.9 8.9l-.4 1.3c-.4.2-.8.5-1.1.8-2.1 1.8-3.3 4.4-3.3 7.2 0 4.1 2.6 7.7 6.5 9 1 .3 2 .5 3 .5H46c.8 0 1.7-.1 2.5-.3 5-1.1 8.5-5.5 8.5-10.7 0-3.9-2.1-7.5-5.5-9.5-.2-.1-.3-.2-.5-.3v-.1C51 7.6 45.4 2 38.5 2z"/></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path d="m20.6 43.2 1.5-2.4-2.3 1.5-.7-4.1-.6 4.1-2.3-1.5 1.5 2.4-4.1.6 4.1.6-1.5 2.3 2.3-1.5.6 4.2.7-4.2 2.3 1.5-1.5-2.3 4.1-.6zm30.1 0 1.5-2.4-2.3 1.5-.6-4.1-.6 4.1-2.4-1.5 1.5 2.4-4.1.6 4.2.6-1.6 2.3 2.4-1.5.6 4.2.6-4.2 2.3 1.5-1.5-2.3 4.2-.6zm-15.1 0 1.6-2.4-2.4 1.5-.6-4.1-.6 4.1-2.3-1.5 1.5 2.4-4.2.6 4.2.6-1.5 2.3 2.3-1.5.6 4.2.6-4.2 2.4 1.5-1.6-2.3 4.2-.6zM13.1 54.3l1.6-2.3-2.4 1.5-.6-4.1-.6 4.1L8.8 52l1.5 2.3-4.2.6 4.2.6-1.5 2.4 2.3-1.5.6 4.1.6-4.1 2.4 1.5-1.6-2.4 4.2-.6zm30.2 0 1.5-2.3-2.3 1.5-.6-4.1-.7 4.1-2.3-1.5 1.5 2.3-4.1.6 4.1.6-1.5 2.4 2.3-1.5.7 4.1.6-4.1 2.3 1.5-1.5-2.4 4.1-.6zm-15.1 0 1.5-2.3-2.3 1.5-.6-4.1-.6 4.1-2.4-1.5 1.6 2.3-4.2.6 4.2.6-1.6 2.4 2.4-1.5.6 4.1.6-4.1 2.3 1.5-1.5-2.4 4.2-.6z" fill="#75d6ff"/><path fill="#fff" d="M21.1 34c-.8 0-1.6-.1-2.4-.4-3.1-1-5.3-3.9-5.3-7.2 0-2.2 1-4.3 2.6-5.7.4-.4.9-.7 1.4-1l.5-1.8c1.3-4.4 5.4-7.5 10-7.5.5 0 .9 0 1.5.1.4.1.8.1 1.2.3l.2-.4C32.7 7.1 36.2 5 40 5c5.8 0 10.5 4.7 10.5 10.5v1c.4.2.9.4 1.3.6 2.8 1.6 4.5 4.6 4.5 7.8 0 4.2-2.9 7.8-7 8.8-.7.2-1.4.2-2 .2H21.1z"/><path fill="#75d6ff" d="M40 6.5c5 0 9 4 9 8.9v.7c-2.1.2-4 1-5.4 2.3 1.1-.6 2.4-1 3.7-1 .5 0 1 0 1.5.1.8.2 1.6.5 2.3.9 2.3 1.3 3.8 3.7 3.8 6.5 0 3.6-2.5 6.5-5.8 7.3-.5.1-1.1.2-1.7.2H21.1c-.7 0-1.3-.1-1.9-.3-2.4-.8-4.2-3.1-4.2-5.8 0-1.8.8-3.5 2.1-4.6.6-.5 1.3-.9 2-1.2.6-.2 1.3-.3 2-.3 2 0 3.7.9 4.9 2.4h.1c-1.3-2.4-3.7-4.1-6.6-4.3 1.1-3.7 4.5-6.4 8.5-6.4.4 0 .9 0 1.3.1.8.1 1.6.3 2.3.7 2.7 1.2 4.7 3.7 5.1 6.8v-.1c0-3.4-1.8-6.5-4.5-8.3 1.5-2.7 4.4-4.6 7.8-4.6m0-3c-4.1 0-8 2.1-10.2 5.6h-.3c-.6-.1-1.2-.1-1.7-.1-5.3 0-10 3.5-11.4 8.6l-.3 1.2c-.4.2-.7.5-1.1.8-2 1.7-3.1 4.2-3.1 6.9 0 4 2.5 7.4 6.3 8.7.9.3 1.9.5 2.9.5h26.2c.8 0 1.6-.1 2.4-.3 4.8-1.1 8.2-5.3 8.2-10.3 0-3.8-2-7.3-5.3-9.1-.2-.1-.3-.2-.5-.3v-.1c0-6.7-5.4-12.1-12.1-12.1z"/></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#ffce31" d="m24.5 31.9-4.9 16.2h12.5L27.9 62l16.5-20.2H32.5l2.9-9.9z"/><path fill="#fff" d="M18.2 32.5c-.8 0-1.6-.1-2.4-.4-3.1-1-5.3-3.9-5.3-7.2 0-2.2 1-4.3 2.6-5.7.4-.4.9-.7 1.4-1l.5-1.8c1.3-4.4 5.4-7.5 10-7.5.5 0 .9 0 1.5.1.4.1.8.1 1.2.3l.2-.4c1.9-3.3 5.4-5.4 9.2-5.4C43 3.5 47.7 8.2 47.7 14v1c.4.2.9.4 1.3.6 2.8 1.6 4.5 4.6 4.5 7.8 0 4.2-2.9 7.8-7 8.8-.7.2-1.4.2-2 .2H18.2z"/><path fill="#b6c1d1" d="M37.1 5c5 0 9 4 9 8.9v.7c-2.1.2-4 1-5.4 2.3 1.1-.6 2.4-1 3.7-1 .5 0 1 .1 1.5.1.8.2 1.6.5 2.3.9 2.3 1.3 3.8 3.7 3.8 6.5 0 3.6-2.5 6.5-5.8 7.3-.7.2-1.2.3-1.8.3H18.2c-.7 0-1.3-.1-1.9-.3-2.4-.8-4.2-3.1-4.2-5.8 0-1.8.8-3.5 2.1-4.6.6-.5 1.3-.9 2-1.2.6-.2 1.3-.3 2-.3 2 0 3.7.9 4.9 2.4h.1c-1.3-2.4-3.7-4.1-6.6-4.3 1.1-3.7 4.5-6.4 8.5-6.4.4 0 .9 0 1.3.1.8.1 1.6.3 2.3.7 2.7 1.2 4.7 3.7 5.1 6.8V18c0-3.4-1.8-6.5-4.5-8.3C30.8 6.9 33.8 5 37.1 5m0-3C33 2 29.2 4.1 27 7.6h-.3c-.6-.1-1.2-.1-1.7-.1-5.3 0-10 3.5-11.4 8.6l-.3 1.2c-.4.2-.7.5-1.1.8-2 1.7-3.1 4.2-3.1 6.9 0 4 2.5 7.4 6.3 8.7.9.3 1.9.5 2.9.5h26.2c.8 0 1.6-.1 2.4-.3 4.8-1.1 8.2-5.3 8.2-10.3 0-3.8-2-7.3-5.3-9.1-.2-.1-.3-.2-.5-.3v-.1C49.2 7.4 43.8 2 37.1 2z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#97a3a2" d="M4.3 11.1C4.3 31 19.5 61 27.1 61c9.7 0 2.1-19.6 2.1-19.6l30.2-11.9C63.9 2.5 4.3-3.6 4.3 11.1z"/><path fill="#c8d9d8" d="M58.1 17.6C73.4 22.4 40.8-3.4 9.5 3c-9.1 1.9-6 9.9-6 9.9-2.1 3-2 7.2 0 10.3 1.7 2.6 0 7.1 4.9 12.1.8.8-2.1 5.2 3.6 9.3 1.2.9 3.2 2.4 2.7 4.7-.6 2.8 5 5.4 6 8.6 2.1 6.5 10.1 4.6 13.8-1.1 0 0-1.3.4-1.8-.5 4.1-2 4.7-7.3-.6-7.8 4.8-4.1 2.6-9.5 9.6-10.8 5.7-1 6.7-3.4 6.7-3.4 7.9.1 18.9-5.2 9.7-16.7M6.9 21.2c-.7-1.4-1.6-3.4-1-5 1.3 1.3 2.7 2.5 4.2 3.6-1.1.2-2.3.7-3.2 1.4M9 29.5c2.2 2.5 4.9 3 4.9 3-2 .9-4.5 1.3-4.9-3m6.1 16.6s1.4 0 1.4.4c.2 2.7-1.4-.4-1.4-.4m-2.5-7.7c3.2 1.8 6.8 3.1 10.4 3.9-12.7 1.7-11.9-4.8-10.4-3.9m12.7 9.4s-2.6.7-4.8.2c1.5-1.6 4.8-.2 4.8-.2m-3.5 5.3C21 54.3 19 52 19 51c.1-2 5.9-.4 5.9-.4s-2.4 1.4-3.1 2.5m2.7 4.7c1.6 0 3.3-.1 4.9-.4-.9 1.2-2.8 2.7-4.9.4m2.5-4.2c2.7-1.2 4.4-1.2 4.4-1.2s-2 1.7-4.4 1.2M15.9 35.5c5.3-2.6 9.9 1.3 17.6 3.1-2.9.8-12.9.6-17.6-3.1m11.8-2.6s7.1.5 5.8-.7c-4.3-4.1-18.6 1.7-24.5-8 2.7-2.4 5.8-1.4 8.5.1-4.9 3.1.4 1.1 3.2 1.7 5 1.1 14.7 4 16.7 8-6 .7-9.7-1.1-9.7-1.1m13.3.5c.6.5 3.2.1 3.2.1-1.5.8-3.9 2.5-3.2-.1M13.9 17.5C31.6 19 42.8 23.8 45 30.1c-13.4-1.1-8.1-7.6-31.1-12.6m42 12.1c-.2-5.7-9.5-14.6-5-5 1.9 4.1-.4 7.4-2.4 4.2C38.7 13.3 18.2 19.3 9.3 14c8.9-4.3 43.7 8 34.8 4C18.4 6.2 6.7 12.6 6.7 9.7c0-5.3 17.5-8.3 40.9 2-28.8-5.6-31.7-2.6-26.9-2.1 35.2 3.6 41.2 14.1 35.2 20"/><path d="M30.3 13.5C7.9 9 6.1 8.7 27.2 14.3c28.3 7.5 19 2.4 3.1-.8m-9.8 9.2C9.7 15.3 5.2 13.2 11.9 19 26 31.1 39 31.9 41.2 31.7c4.8-.6-8-.4-20.7-9m-2.9 8c-9.3-5.5-13-6.2-7-1.4 12.8 10.1 22.9 8.3 24.4 7.5 3.2-2-6.5.4-17.4-6.1m3.1 8.7c-7.3-2.9-10-2.8-4.9.1 10.6 6.1 17 2.8 17.8 1.8 1.7-2.3-4.2 1.5-12.9-1.9m.3 5.3c-6.1-1.4-8.1-.5-3.7.8 8 2.4 12.3.9 13.1.3 2-1.3-2.3.6-9.4-1.1m6.8 4.6c7.7-2.8-3-1.5-4.3.4-.5.7 3.3 0 4.3-.4m.5 3.4c7.2-2.1-2.6-1.6-3.9.1-.5.5 3 .1 3.9-.1m-3.4 2.6c-.5.5 2.6.5 3.5.3 6.7-1.2-2.1-1.7-3.5-.3" fill="#fff"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#979797" d="M2 29.6c15.8-12.6 23.3.5 32.8.5 7.5 0 16.8-13.1 27.2-2.4-11.9-5.7-16.3 6.5-28.7 6.5-9.5 0-13.2-11.3-31.3-4.6"/><path fill="#d0d0d0" d="M62 39.7c-9.2-7.6-15.1-1.4-22.7 1.8-4.8 2-9.8 1.5-14.8-3.8 3.6 1.3 11.5 5.6 19.3-2-6.7 3-15.1.9-21.9-2.5-7.5-3.7-13.6-4.3-19.9 2.5 3.9-3 9.6-2.3 14-1.1-2.8.1-8.9.8-14 8.7C17.4 30.5 23 48 35.1 48c11.7 0 10.6-13.1 26.9-8.3"/><path fill="#979797" d="M2 25.3c1.9-5.4 15.2-13.2 25.8.1C13 18.6 2 25.3 2 25.3"/><path fill="#d0d0d0" d="M42.1 19.8c6.2-6.8 16.1-3.1 19.9.3-3.1-.4-12.5-2.4-16.5 2-6.4 6.8-13.9 5.8-16.3 3.4 0-.1 7.6.2 12.9-5.7"/><path fill="#979797" d="M45.4 35.4c8-13.3 16.6-2.1 16.6-2.1-9.4-3.3-16.6 2.1-16.6 2.1"/></svg>

After

Width:  |  Height:  |  Size: 747 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#c8d2da" d="M23.3 53 2 37.5V62c2.2-6.5 21.3-9 21.3-9z"/><path fill="#e4eef7" d="M18.8 51.9c-8.9-5.1-10.5-16-10.5-16s-1.4-5.8 5.8-16.2c4-5.7 15.9-10 17.5-5.7 3.3 9 0 12 1.4 14.2 1.7 2.7 2.9 3.6 3.8 4.2.7.4 1.1 1 1.1 2.1-.1 1.6-2.8 1.9-2.9 2.3-.2 1.2.6 1.7 2 2.6 1.3.9-1.1 1.9-.6 4.8.5 3 .7 4.1.7 4.1-1.1.9-3.4.9-3.1 2.7.6 4.2-4.6 7-15.2.9"/><path fill="#91999f" d="M34.6 42.7c.6-.4 1.2-.9 1.7-1.4.4-.5.8-1.1.4-2.2.4.1.8.6 1 1.2.2.6 0 1.4-.2 1.9s-.5 1-.8 1.4c.3.4.7.9.8 1.5.2.6.2 1.2.1 1.7s-.2 1-.4 1.5c-.4-1-.6-1.9-1-2.4l-.6-.6c-.2-.2-.5-.4-.9-.6l-1.6-1 1.5-1"/><path fill="#adb5bc" d="M31.2 30c-4.1 3.1-7.5-.2-7.5-.2 3.6.9 7.5.2 7.5.2"/><path fill="#c8d2da" d="M30.5 39.4c.5.5.9 1.2 1.1 1.9.3.7.5 1.5.6 2.3.1.8 0 1.7-.2 2.5s-.6 1.5-1.1 2c.2-.8.3-1.5.4-2.2v-2.2c-.1-1.4-.4-2.8-.8-4.3"/><path d="M27.6 21.3c-3.2 0-6.4 3.1-6.4 3.1 6.9-3.4 11.7 0 11.7 0-.5-.8-2.8-3.1-5.3-3.1m-11.9 1.6s-6.3 21.5 0 39.1H11s-6.8-19.5.8-39.7l3.9.6" fill="#91999f"/><path fill="#adb5bc" d="M11.9 22.8s-6.3 21.6 0 39.2H7.3s-6.8-19.6.8-39.8l3.8.6"/><path fill="#91999f" d="M8.2 22.9S1.9 44.4 8.2 62H2V37.5l6.2-14.6z"/><path fill="#c8d2da" d="M19.5 4.4s3.5-1.1 5.2-.1c11.2 6.5 5.8 7.5 1.9 5.9-2.9-1.2-7.1-5.8-7.1-5.8"/><path fill="#adb5bc" d="M27.6 9.5s3.6-1.3 5.2-.1C40.2 15 34 26.1 34 26.1s1.4-10.8-2.5-12.5c-2.9-1.2-3.9-4.1-3.9-4.1"/><g fill="#c8d2da"><path d="M2 4.5c11.9-6.1 19 .7 19 .7L2 27.4V4.5z"/><path d="M20.9 17.6c7.1-6.9 10.6-4 10.6-4C21-5.1 2 20.9 2 37.5c0 0 12.5-13.7 18.9-19.9z"/><path d="M17.4 27.7c8.2-9.1 11.8-17.3 11.8-17.3C20.5 22.3 5.1 29.1 2 58.2c0 0 7.8-22 15.4-30.5"/></g><path fill="#adb5bc" d="M13.7 13.6C21.2 5.9 27 8.5 27 8.5 18.7-2.7 4.5 3.7 2 23.1v14.4S7.6 20 13.7 13.6z"/><g fill="#42ade2"><path d="M38 43.3c4.8.9 10.2-1.6 12.3-6 1.7-3.6 1-10.3-3.7-11.2-3.7-.7-6.1 3.1-5.6 6.3 1.1 6.7 9 2.1 5.5-1.7 1.7 3.1-2.7 5.8-4.2 2.8-1.3-2.7 1.2-7.3 4.6-5.5 3.8 2 2.8 8 .3 10.5-2.4 2.6-5.8 3.9-9.2 4.8m19.2-13c1.2 1.8-1.3 4.3-2.8 2.2-1.6-2.2 1.1-5.8 3.5-3.6 4.3 4.5-2.7 10.4-7.6 11.6 3.9.2 8.5-1.9 10-5.7 1-2.6.5-6.8-2.5-8-3.3-1.3-6.1 2.8-4.5 5.6 2.1 3.8 6.3.4 3.9-2.1"/><path d="M38 44.3c4.4.4 9.7.7 13.3 3.4 2.8 2.1 3.8 7 1.3 9.7-2.5 2.7-6.1 0-5.8-3.2.3-3.8 5.8-2.7 4.7.9 2.6-4.8-6.9-6.7-5.6.8.8 4.7 7.4 5.6 9.3 1.2C59.8 46 45.7 42.2 38 44.3"/><path d="M47.8 42.9c3.9.2 13.6.3 12.5 5.9-.5 2.3-3.6 2.3-3.4-.3.1-2.1 2.8-1.6 2.4.5 2-4-5.6-3.5-3.3 1.3 1.5 3.2 5.7 1.3 6-1.9.6-7.4-9.7-6.6-14.2-5.5"/></g></svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#d9a559" d="M51.3 4.4c5.8 5.8 0 21-12.9 34s-28.2 18.7-34 12.9c-8.6-8.6 8.2-12.8 21.1-25.8 12.9-13 17.2-29.8 25.8-21.1"/><path fill="#fbbf67" d="M27.2 27.2C39.6 14.7 44-1.2 51.9 5.1c-.2-.3-.4-.5-.6-.8-8.6-8.6-12.8 8.2-25.8 21.1-13 13-29.8 17.2-21.1 25.8.2.2.5.4.8.6-6.4-7.8 9.5-12.2 22-24.6"/><path fill="#c94747" d="M54.6 5.2c5.8 5.8-2 20.3-15.8 34.1S10.4 61 4.6 55.2c-6.7-6.7 10.4-12 24.2-25.8C42.7 15.6 47.9-1.5 54.6 5.2z"/><path fill="#fbbf67" d="M59.8 12.9c5.7 5.7-.1 20.9-13.1 33.9s-28.1 18.7-33.8 13c-5.7-5.7 9-12 22-24.9 12.9-13 19.1-27.8 24.9-22"/><path d="M54.5 12.5c.7-.4 1.3-.8 2-.9.3-2.7-.3-4.9-1.8-6.5-1.3-1.3-2.6-1.7-3.9-1.4 3.5 2.3 4.4 5.4 3.7 8.8m-41.3 41c-8.3 2.9-9.7-3.1-9.7-3.1-.7 1.6-.5 3.2 1.1 4.8 1.7 1.7 4.1 2.2 7 1.8 0-1.1.6-2.2 1.6-3.5" opacity=".5" fill="#3e4347"/><path fill="#d9a559" d="M43.7 43.7c-18.8 18.8-30.2 16-31.2 15.7.1.2.3.3.4.5 5.7 5.7 20.9-.1 33.9-13.1C59 34.5 64.9 20.3 60.6 13.9c1.4 5.4-1.7 14.5-16.9 29.8"/><path d="M14.4 44.9c2.2.5 3.9 1.4 3.7 1.9-.2.6-2.1.6-4.3.1-2.2-.5-3.9-1.4-3.7-1.9.1-.6 2-.6 4.3-.1m5.8-4.2c2.2.5 3.9 1.4 3.7 1.9-.2.5-2.1.6-4.3 0-2.2-.5-3.9-1.4-3.7-1.9.2-.5 2.1-.5 4.3 0m6.7-5c2.2.5 3.9 1.4 3.7 1.9-.2.5-2.1.6-4.3.1-2.2-.5-3.9-1.4-3.7-1.9.2-.6 2.1-.6 4.3-.1m5.9-5.9c2.2.5 3.9 1.4 3.7 1.9-.2.6-2.1.6-4.3.1-2.2-.5-3.9-1.4-3.7-1.9s2.1-.6 4.3-.1m6.7-6.7c2.2.5 3.9 1.4 3.7 1.9-.2.5-2.1.6-4.3.1-2.2-.5-3.9-1.4-3.7-1.9.1-.6 2.1-.6 4.3-.1m5.9-7.5c2.2.5 3.9 1.4 3.7 1.9-.2.5-2.1.6-4.3.1-2.2-.5-3.9-1.4-3.7-1.9.1-.6 2-.6 4.3-.1" opacity=".5" fill="#3e4347"/><path fill="#ffce31" d="M10.5 52.1c.8-4.4 4.9-2.7 6.8-5.7 1-1.5 1.5-3.2 2.3-4.7.7-1.4 3.6-.9 5.1-1.4 3.7-1.3 2.1-8.3 6.6-7.9 2.1.2 4.8-.8 5.1-3.2.2-1.3.2-2.4 0-3.6-.4-3.6 4.3-3 6-3.9 2.4-1.3 3.4-2.8 2.6-5.5-.8-2.8 3.4.2 7.1-3.5 1.8-1.8.5-4.9-.5-6.1-1.5-1.7-2.7.2-2.5 2.5.1 1.6-3 .9-4.3.9-.8 0-1.9.2-2.5.8-1.8 1.9.4 4-.8 6.2-1.5 2.7-5.2.9-7.6 4.4-2.4 3.4-.5 7.7-3.8 7.4-2.4-.2-4 2.2-5.1 4-1.1 1.9-1.6 4.8-4.6 4.5-1-.1-1.7.3-2.5.8-3.2 2.2-1.8 5.8-6.2 7-3.5.9-4.2 2.7-4.9 6.2-.1 2.2 3.3 3.1 3.7.8"/></svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#d3976e" d="M16.4 61.9c-6.1 0-12 0-14.3-30.8-3.1-42 52.1-26.7 52.1-2.5 0 13.3-37.8 33.3-37.8 33.3"/><path fill="#fff" d="M3.6 31.1c-1.3-18 8-25.4 19.2-26.2v-.1C11 5 .7 12.3 2.1 31.1 4.2 59.6 9.5 61.9 15 61.9 9.9 61 5.5 57.1 3.6 31.1" opacity=".5"/><path fill="#594640" d="m19.3 25.5-15 6.6L2.2 37l2.7 1.6L3 42.9l1.5.9-2.1 4.5 3.3 2-1.9 4.3L7.7 57 7 58.6l4.5 2.7.9-2 2.2 2.5 3.6-.9 11.7-22.5-10.6-12.9"/><path fill="#89664c" d="m23 39 3-4-22.3-2.9-1.6 3.6 3.3 2 1-2.2 1.7 1-1.3 2.8-2.3-1.4-1.6 3.6 3.3 1.9 1.3-3 2.2 1.3-.1.3 2 1.2-.6.6L7.9 42l-1.4 3-2.7-1.6L2.2 47l3.3 1.9L6.8 46l2.7 1.6.8-1.9.7.8-1 2.3-1.6-.9-1.3 2.8-1.9-1.2-1.6 3.6 3.3 2 1.3-2.8 1.9 1.2.3-.7 1 1.2-.6 1-2.3-1.4-1.6 3.6 3.3 1.9 1.4-3.1 2.4 3.4 2.2-2.5 1.8 2 2.6-2.9-2.6-2.8-2.2 2.5-.8-.8.5-1 2.3-2.7 1.2 1.4 2.6-2.9-2.6-3-2.4 2.8-1.2-1.4-2 2.2 1.3-2.9-1.2-.7.7-.8.6.3 1.7 1.9 2.6-2.9-2.6-2.9-.2.2-.9-.5 1.2-1.3 1.7 1.9-.3.3 2.3 2.6-.5.6 2.6 2.9 2.6-2.9-2-7.1"/><path d="m9.6 38.1-2.2-1.4-1.2 2.5 2.3 1.4zm4.4-1.3.7-1.5-1.4-.9-.8 1.6zm-3.4 5.4-.7 1.6 1.4.9.7-1.6zm.5 3.5-.7 1.5 1.4.9.7-1.6zm2.1-4.2 1.4.8.7-1.5-1.4-.9zm-8.7 3.2-1.4-.8-.7 1.5 1.4.9zm.2 6L4 52.3l1.4.8.7-1.5zm2.7 5.7 1.4.8.7-1.6-1.4-.8zm-.1-10.1.7-1.6-1.4-.8-.7 1.5zm.3 1.1-1.2 2.5 2.3 1.4 1.1-2.5zm3.2 5.6 1.4.8.7-1.5-1.4-.9zm1.3 3.7 1.4.8.7-1.5-1.4-.9zm6.1-21.5-1.1-1.3-1.1 1.3 1.1 1.2zm1.1 3.9-1.7-2-1.8 2 1.8 2zm.5 1.8-1.1 1.3 1.1 1.2 1.1-1.2zm.6 4.5 1.1 1.3 1.1-1.3-1.1-1.3zm-3.9 1.7 1.1 1.3 1.1-1.3-1.1-1.3zm.3 6.3 1.1 1.2 1.1-1.2-1.1-1.3zm-1.9 3.8 1.1 1.3 1.1-1.3-1.1-1.3z" fill="#d3976e"/><path fill="#ffec40" d="m45.7 8.8-9.5-6.3-1.3-.5.4 3.9L24 3.6l-1.2.3L11 12 6.3 24 3 25v2l7-2-3.3 3.2 1 4.4 18 1.2z"/><path d="M22.5 4.6c-2.2-.4-4 2-6.1 2.7-2.2.8 1.8 3.8 3 3.8 3.4 0 9.8-5.2 3.1-6.5m-11 12.5c.8-2.3.5-5.1-2.6-3.1-2.6 1.7.2 4.3-3 5.8-3.1 1.4-1 5.4 1.7 4.2 2.4-.9 3.2-4.6 3.9-6.9m0 0c0 .1 0 .1 0 0m13.2 14.2c.2.3.5.5 0 0-3.7-3.6-9.1 5-7.9 6.6 4.7 6.2 10.1-4.3 7.9-6.6" fill="#83bf4f"/><g fill="#ed4c5c"><path d="m13.3 25.5-2.6 6.1 6.6 2.4 3.7-6.7z"/><path d="m9.7 24.3 3.4 2.7 5.7-4-3.7-3zm11.2-4.8 4.6 3.5 6-3.6-3.1-4.2zm-5-8 .4 4.8 6.5-3-.3-3.4-3-1.7zm13.5-8.3-1.7 5.1L35 9l-.4-4.9zM37 3l.4 5 6.7-.7.8-3.1z"/></g><g fill="#83bf4f"><path d="M35.2 11.7c2.7.7-1.1-.2 0 0m.8.3c-.9-.7-2.7 2.2-3.7 2.8-1.2.8-10.7 3.1-2.5 5.2 2.6.7 8.2-6.4 6.2-8m4.3-2.3c-.8-.5.8.5 0 0m3-4c-1.7 2.3-1.4-2.6-3.9-.4-1.5 1.3-.7 3.5.9 4.4 1.4.9 6.3.4 6.6-1.9.2-1.5-2.4-3.7-3.6-2.1M7 26c-1.4 0-4.3 3.7-4.3 3.7-2.6 2.8 2.8 2.8 2.9 3.3-.8.6-1.6 1.2-2.5 1.7 0 2 4.2-.2 3.9 0-2.4 4.1 7.5-.7 8.1-1.1C18.5 31.5 13 26 7 26m11-4.1c-1.4-.1.8 0 0 0"/><path d="M20.4 16.3c-3.4-6.3-3.8 0-4.4.7-.4.4-5 0-2.9 2.5.9 1.1 3.6 2.7 5 2.3 2.9-.8 3-4.2 2.3-5.5"/></g><path d="M20.7 24 9.8 25.4 7 27.5l1.2 1L19 25l2.7-.2zM29 12.7l-4.7-.4L14 15.7l1.6 1.3 8.5-2.7 5-.5zm-5.9 8.5-1.1.1 2.1 5.1 3.1.6.8-1.8-1.8-.7zm-1.6 6.5 2.2 6.2-1.6 1.1-1.8-5.5zM38.6 7.3l-2.1-.6L34.9 2l-1.3.1 1.6 5.5 2.7 1.1zm-9-2-6.8-1.4-.7 1.1 7.2 1.9z" fill="#ffffd4"/><path fill="#fbbf67" d="M16.4 61.9s4.2 0 6.6-16.2C25.5 29.3 36.5 7.2 53.6 7.2c5.9 0 10 3.9 7.7 25.2-.3 3.7-39.7 29.5-44.9 29.5"/><path fill="#fddfb3" d="M53.7 6.2C32 6.2 25.3 30.8 23 45.7c-2.5 16.2-9.1 16.2-9.1 16.2s4.2.5 5.4-.5c1.8-1.5 3.9-5.4 5.2-14 2.3-15 10.3-39.7 29.7-39.7 5.5 0 7.3 7.9 7.3 7.9s-.9-9.4-7.8-9.4"/><path d="m39.2 40.8 1-1 1 1-1 1.1zm1.3-14 1-1.1 1 1.1-1 1.1zm15.6 0 1-1.1 1 1.1-1 1.1zm-1.9-11 1-1.1 1 1.1-1 1z" fill="#d3976e"/><path d="m48.3 33.4-1 1 1 1.1 1-1.1-1-1m2.4-12.6-1 1 1 1.1 1-1.1-1-1M43 17l-1 1.1 1 1.1 1-1.1-1-1.1m-9.5 15.8-1 1.1 1 1 1-1-1-1.1m-2.3 13.6-1 1.1 1 1 1-1-1-1.1" fill="#fddfb3"/></svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#fddfb3" d="M58.2 4.1C54.4.1 36.4-.8 11.1 24.3.9 34.4 4.8 56.3 21.3 60.5c18.2 4.6 24.1-5 27.3-9.4 10.1-13.7 18.6-43.5 9.6-47"/><path fill="#89664c" d="M44.8 30.2C38.5 20 29.7 20 24.9 20.3 2.3 21.6 1.4 55.5 23.2 59.4c24.2 4.5 27.9-18.9 21.6-29.2z"/><g fill="#d3976e"><path d="m25.3 29.2-6 2-1.3 7.9 7 .4zm.7 21.5-3.2-6.9-7.3-.6.2 9.1z"/><path d="M19.8 47.5s-5.7.3-6.7 2.5c-1 2.3-2.5 6.3-1.5 8 1 1.7 5.9 2.5 8.2 1 2.4-1.5 1.8-11.7 0-11.5"/></g><path fill="#89664c" d="M13.1 50c-1 2.3-2.5 6.3-1.5 8-.9-3.4 4.5-1.8 6-2.4 1.5-.6 2.2-8.1 2.2-8.1s-5.7.2-6.7 2.5" opacity=".5"/><path fill="#d3976e" d="M16.7 47s-2-6.3-4.4-6.7c-2.4-.4-6.5-.9-7.8.8-1.3 1.7-.5 7.3 1.6 9.5S17.4 49 16.7 47"/><path fill="#89664c" d="M12.3 40.4c-2.4-.4-6.5-.9-7.8.8 2.8-2 3.1 4.4 4.1 5.9 1 1.5 8.1-.1 8.1-.1s-2-6.2-4.4-6.6" opacity=".5"/><path fill="#d3976e" d="M14.3 29.8s-5-2.4-6.8-1-4.5 4.3-4.3 6.3c.2 2 4.1 4.9 6.7 4.7 2.7-.2 6-9.4 4.4-10"/><path fill="#89664c" d="M7.6 28.8C5.9 30.3 3 33.1 3.2 35c.5-3.3 4.6.5 6.1.7 1.5.2 5-6 5-6s-5-2.4-6.7-.9" opacity=".5"/><path fill="#d3976e" d="M23.8 23s-4.8-3.9-6.9-2.7c-2.1 1.1-5.8 3.3-5.9 5.5-.2 2.2 3.3 6.2 6.1 6.7 2.7.4 8.2-8.4 6.7-9.5"/><path fill="#89664c" d="M16.9 20.3c-2.1 1.1-5.8 3.3-5.9 5.5 1.2-3.4 4.7 1.7 6.3 2.3 1.6.6 6.6-5 6.6-5s-4.9-4-7-2.8" opacity=".5"/><path d="M26.2 42.3c-3.6 2-4.4 3-3.9 6.1.5 3.1 3-.8 8.2-2.3s2.4-7.6-4.3-3.8m3-10.8c-2.8-3.2-3.9-3.8-6.4-2.4-2.5 1.4 1.6 3 4.3 7.9s7.2.4 2.1-5.5" fill="#ffc7ce"/><path d="M9.4 40.4c-5.1 3.4-8.7 6.3-7 7.6 2.2 1.6 8.9-4.5 11.5-7.7 2.7-3.2 6-6.8-4.5.1m4.6 9.3c-4.9 3.5-8.3 6.5-6.6 7.7 2.2 1.6 8.7-4.8 11.1-8 2.4-3.2 5.6-6.9-4.5.3m13.5 4c-5.7 2.2-9.8 4.3-8.4 6 1.8 2.1 9.7-2.6 12.9-5.1 3.3-2.6 7.3-5.5-4.5-.9m1.2-15.3c-6 1.1-10.5 2.4-9.4 4.3 1.4 2.4 10-.7 13.7-2.6 3.7-2 8.2-4-4.3-1.7m3.7-16.6c-5.5-1.5-9.8-2.2-9.6-.2.2 2.6 8.7 3.5 12.6 3.4 3.8-.2 8.3-.1-3-3.2" fill="#83bf4f"/><path d="M32 61.8c-.8.4-.1.2 0 0m12.2-33.5L40.7 25l-2.4-.2-1.3-2.5-4.1-.2-.8 3.1-3.2-.1v3l-2.4 1.3 4.1 3.6-.8 4.5 2.1 5.6-3.7 4 .6 1.6 1.9-1.3-2.6 7 3.1-2.6-2.3 6.4h2l-2 3 8-2 5.1-3.7 4.2-5.5-1.3-2.8 2.6-4 .2-4.4-1.1-4.5-2.7-3.5z" fill="#fffbe9"/><path d="m42.5 51.2-1.2 4 2.6-2.8.9-3.8zM45 38.9l.5 2.8 2-2.9-.7-2.8zm-2.5-7.3.1 3.1 2.4 1.9.1-3.1zm-6.2 9.5.1 3.1 2.4 1.9.1-3zM30.4 45l.1 3.1 2.4 1.9.1-3.1zm11.3 6.2-3.1 2-1.7 3 3-1zM35 53l-3.1 2-1.7 3 3-1zm6.8-24.6-1.6-2.8-3.7-1.1 1.8 2.8zm-8 6 2.3 2.2 3.4-.1-2.3-2.1zM34.9 48l2.4 2.2 3.4-.1-2.3-2.1zm1-22.1-3.6-.8-2.8 1.4 3.5.9zm-2.5 6-3.6-.8-2.9 1.5 3.6.8zm6.8 8.1 1.8-2.8-.7-2.9-1.7 2.9zm-5.5-1.3-1.1-2.8-1.3 2.9.9 2.7zm9.2 4.6-1-2.8-1.3 2.9.8 2.8zm-5.6-12.4-1.1-2.8-1.3 2.8.9 2.8z" fill="#e8e1d6"/><path fill="#ffc7ce" d="M23 50.4c-2.4-2.9-3.3-3.4-5.5-2.3s1.3 2.6 3.5 7c2.3 4.4 6.4.6 2-4.7"/><g fill="#e8662d"><path d="m25.5 47.8-3.6 4.4 1.7 3.6 5.7-.2 1.5-6.6-2.1-2.3-3.2 1.1"/><path d="m28.7 46.7-3.2 1.1-3.6 4.4 1.7 3.6 5.7-.2 1.5-6.6-2.1-2.3m-5.2-24.5L19.9 28l2.6 3.9 6.7-1.2.7-8.1-2.7-2.3-3.7 1.9"/><path d="m27.2 20.3-3.7 1.9-3.6 5.8 2.6 3.9 6.7-1.2.7-8.1-2.7-2.3M10.1 45.4l-1.2 4.3 2.2 1.8 3.9-2.1-.9-5-2.1-.9-1.9 1.9"/><path d="m12 43.5-1.9 1.9-1.2 4.3 2.2 1.8 3.9-2.1-.9-5-2.1-.9m2-8.6v6.4l3.7 1.5 4.5-4.7-3.2-6.5-3.2-.2-1.8 3.5"/><path d="M15.8 31.4 14 34.9v6.4l3.7 1.5 4.5-4.7-3.2-6.5-3.2-.2"/></g><g fill="#89664c"><path d="m39.3 12-1 1-1-1 1-1zm14.6 13.1-1 1-1-1 1-1zm-16.4-9.8-1 1-1-1 1-1zm11.4-8-1 1-1-1 1-1zm.335 2.455.494-.496.496.493-.493.497zm1.045 16.88.494-.496.496.493-.493.497zM49.239 5.754l.494-.496.496.495-.495.495zM55.4 28.1l-1.5 1.5-1.5-1.5 1.5-1.5zM35.6 13.8l-2 2-2-2 2-2z" opacity=".5"/><path d="M32.4 17.5c9.1 2.5 25.5 2.9 25.8-13.4 0 0 2.1 16.7-14.4 16.9-12.9.1-15.7-4.9-24.9-3.8-.1 0 5.1-2 13.5.3" opacity=".33"/></g></svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#947151" d="M62 32c0 15.5-13.4 28-30 28S2 47.5 2 32 32 4 32 4s30 12.5 30 28z"/><path fill="#e0ac7e" d="M32 50.9c-10.3 0-19.9-3.1-27.7-8.3C8.8 52.8 19.5 60 32 60s23.2-7.2 27.7-17.3c-7.8 5.2-17.4 8.2-27.7 8.2"/><g fill="#846144"><path d="M32 4c-3.4 3-6.7 6-9.8 9.2-1.5 1.6-3 3.2-4.3 5-1.4 1.7-2.6 3.5-3.7 5.4-2.2 3.7-3.7 7.8-3.6 12 0 4.2 1.6 8.4 4.1 12.3-1.7-1.5-3.2-3.3-4.3-5.4-1.1-2.1-1.9-4.4-2.1-6.8-.3-2.4 0-4.8.6-7.1s1.6-4.5 2.8-6.5c2.4-4 5.5-7.5 9-10.5C24.1 8.5 27.9 6 32 4m0 0c4.1 2 7.9 4.5 11.4 7.5S50 18 52.4 22c1.2 2 2.2 4.2 2.8 6.5.6 2.3.9 4.8.6 7.1-.2 2.4-1 4.7-2.1 6.8-1.1 2-2.6 3.9-4.3 5.4 2.4-3.8 4.1-8 4.1-12.3 0-4.2-1.5-8.3-3.6-12-1.1-1.9-2.3-3.6-3.7-5.4-1.3-1.7-2.8-3.4-4.3-5C38.7 10 35.4 7 32 4"/><path d="M32 4c-1.3 4.1-2.6 7.9-3.9 11.8-1.3 3.9-2.6 7.7-3.6 11.5s-1.8 7.7-2 11.5c-.2 3.9.2 7.7 2.1 11.6-1.8-1.2-3.2-3-4.2-5s-1.6-4.2-1.9-6.4c-.6-4.4 0-8.8 1.1-13 1.1-4.2 2.8-8.1 4.8-11.8C26.6 10.5 29 7 32 4m0 0c3 3 5.4 6.5 7.5 10.2 2 3.7 3.7 7.7 4.8 11.8 1.1 4.1 1.7 8.6 1.1 13-.3 2.2-.9 4.4-1.9 6.4-1 2-2.4 3.8-4.2 5 1.9-3.8 2.3-7.7 2.1-11.6-.2-3.9-1-7.7-2-11.5s-2.3-7.7-3.6-11.5C34.6 11.9 33.3 8.1 32 4"/><path d="M32 4c1 3.9 1.6 7.8 2 11.7.4 3.9.5 7.8.5 11.7 0 3.9-.2 7.8-.5 11.7-.4 3.9-.9 7.8-2 11.7-1-3.9-1.6-7.8-2-11.7-.4-3.9-.5-7.8-.5-11.7 0-3.9.2-7.8.5-11.7.4-3.9 1-7.8 2-11.7"/></g></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path d="M48.5 38.4c-8 0-10.1-6.6-10.1-6.6s2.1-8.3 10.1-8.3C54 23.5 63 31 63 31s-9 7.4-14.5 7.4zM18 6.7c6.3 6.4 2.6 13.6 2.6 13.6s-7.7 4.4-14-2C2.3 13.9 1 1 1 1s12.7 1.3 17 5.7z" fill="#83bf4f"/><g fill="#75a843"><path d="M63 31c-5-1-10.1-1.6-15.1-1-4.9.5-9.9 2.3-13.2 5.7-1.7 1.7-2.9 3.7-3.5 5.9-.1.5-.2 1.1-.3 1.6-.1.6 0 1 0 1.7l.2 3.8.7 15.3h-5l.8-15.3.2-3.8c0-.6.1-1.4.2-2.1.1-.7.3-1.4.5-2.1.9-2.7 2.6-5 4.7-6.7 2.1-1.8 4.5-3 7-3.9 2.5-.8 5.1-1.2 7.7-1.3 5.1-.2 10.2.8 15.1 2.2"/><path d="M1 1c5.2 3.2 10 7.2 14.2 11.7 4.2 4.5 8 9.4 11.1 14.8 1.5 2.7 3 5.5 3.9 8.7.2.8.4 1.6.5 2.5l.1 2.4.2 4.6.8 18.3h-5l.8-18.4.2-4.6.1-1.1v-1.1c0-.6-.1-1.3-.3-2-.6-2.8-1.8-5.6-3.2-8.3-2.7-5.4-6.2-10.4-10.1-15.1C10.5 8.7 6.1 4.5 1 1"/></g></svg>

After

Width:  |  Height:  |  Size: 793 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#947151" d="M25 52.1h14V64H25z"/><path fill="#71a03a" d="M32 34.9 2 55.1s14.5 3.4 30 3.4 30-3.4 30-3.4L32 34.9z"/><path fill="#76aa3f" d="M32 23.6 7 43.8s12.1 3.4 25 3.4 25-3.4 25-3.4L32 23.6z"/><path fill="#7cb545" d="M32 12.3 12 32.5s9.7 3.4 20 3.4 20-3.4 20-3.4L32 12.3z"/><path fill="#83bf4f" d="M32 1 17 20.8s7.2 3.8 15 3.8 15-3.8 15-3.8L32 1z"/></svg>

After

Width:  |  Height:  |  Size: 429 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><g fill="#83bf4f"><ellipse cx="17.8" cy="38.3" rx="15.8" ry="15.2"/><ellipse cx="17.8" cy="21.4" rx="15" ry="14.4"/><ellipse cx="34.2" cy="16.9" rx="15.5" ry="14.9"/><ellipse cx="49" cy="28.5" rx="13" ry="12.5"/><ellipse cx="39.5" cy="40.2" rx="13" ry="12.5"/></g><g fill="#947151"><path d="M28.9 64c.3-4-.3-8.2-.9-12.6-.6-4.4-1.4-8.9-1.4-13.5-.1-4.6.5-9.3 2.1-13.6 1.5-4.3 3.8-8.2 6.5-11.7-2.3 3.8-4 7.9-4.9 12.2-.9 4.2-.9 8.6-.3 12.8.6 4.2 1.8 8.4 3.1 12.7 1.2 4.3 2.5 8.8 2.8 13.7h-7"/><path d="M28.4 36.2c2 .2 4.2.1 6.3-.1 2.1-.2 4.2-.7 6.2-1.4s3.9-1.7 5.6-3c1.7-1.3 3.2-2.9 4.3-4.8-1 1.9-2.3 3.7-4 5.2-1.6 1.5-3.5 2.6-5.6 3.5-2 .9-4.2 1.5-6.3 2-2.2.4-4.4.7-6.7.6l.2-2m-.6-1.4c-1.5-.9-2.8-1.9-4-2.9-1.2-1.1-2.4-2.3-3.4-3.5-2-2.6-3.5-5.7-3.7-8.9.5 3.2 2.3 6 4.5 8.2 1.1 1.1 2.3 2.1 3.6 3 1.3.9 2.7 1.7 4 2.3l-1 1.8m1.6 11.4c-1.7-.1-3.3-.4-4.9-.8-1.6-.4-3.1-1-4.6-1.8-2.9-1.6-5.4-3.9-6.9-6.8 1.8 2.7 4.4 4.7 7.3 5.8 1.4.6 3 1 4.5 1.3 1.5.3 3.1.4 4.6.3v2"/></g><path d="M9.8 41.9c0 2.2-1.8 4-1.8 4s-1.8-1.8-1.8-4 1.8-4 1.8-4 1.8 1.8 1.8 4m46.3-8.6c0 2.2-1.8 4-1.8 4s-1.8-1.8-1.8-4 1.8-4 1.8-4 1.8 1.8 1.8 4M14.8 47c0 2.2-1.8 4-1.8 4s-1.8-1.8-1.8-4 1.8-4 1.8-4 1.8 1.8 1.8 4m-5-26.1c0 2.2-1.8 4-1.8 4s-1.8-1.8-1.8-4 1.8-4 1.8-4 1.8 1.8 1.8 4m5-5.8c0 2.2-1.8 4-1.8 4s-1.8-1.8-1.8-4 1.8-4 1.8-4 1.8 1.8 1.8 4M40.5 18c0 2.2-1.8 4-1.8 4S37 20.2 37 18s1.8-4 1.8-4 1.7 1.8 1.7 4m5-5.4c0 2.2-1.8 4-1.8 4s-1.8-1.8-1.8-4 1.8-4 1.8-4 1.8 1.8 1.8 4M22.2 35.8c0 2.2-1.8 4-1.8 4s-1.8-1.8-1.8-4 1.8-4 1.8-4 1.8 1.8 1.8 4m-5.6-5.1c0 2.2-1.8 4-1.8 4s-1.8-1.8-1.8-4 1.8-4 1.8-4 1.8 1.8 1.8 4m9.5-9.8c0 2.2-1.8 4-1.8 4s-1.8-1.8-1.8-4 1.8-4 1.8-4 1.8 1.8 1.8 4M30 14c0 2.2-1.8 4-1.8 4s-1.8-1.8-1.8-4 1.8-4 1.8-4 1.8 1.8 1.8 4m5.4 16.7c0 2.2-1.8 4-1.8 4s-1.8-1.8-1.8-4 1.8-4 1.8-4 1.8 1.8 1.8 4M49 39.8c0 2.2-1.8 4-1.8 4s-1.8-1.8-1.8-4 1.8-4 1.8-4 1.8 1.8 1.8 4m-3.5-16.7c0 2.2-1.8 4-1.8 4s-1.8-1.8-1.8-4 1.8-4 1.8-4 1.8 1.8 1.8 4m-6 19.9c0 2.2-1.8 4-1.8 4s-1.8-1.8-1.8-4 1.8-4 1.8-4 1.8 1.8 1.8 4m4.7 4.5c0 2.2-1.8 4-1.8 4s-1.8-1.8-1.8-4 1.8-4 1.8-4 1.8 1.8 1.8 4" fill="#75a843"/></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#947151" d="M44.1 64h-10l-5.6-30.8h6.4z"/><path d="m33.5 60.7.4 2.4 6.1-1.3zM32.3 54l.4 2.4 6.1-1.2zm-1.2-6.5.4 2.2 5.7-1.1zm-1.2-6.6.4 2.2 5.5-1.1zm-1.2-6.5.4 2 5.1-1zm14.1 25.3-.6-2.3-5.6 1.1zm-2-6.7-.6-2.1-5.2 1zm-2-6.7-.6-2-5 1zm-2-6.6-.6-2.1-5.2 1.1z" fill="#6d533e"/><path fill="#83bf4f" d="M32 28.6c11.2-2.8 26.9-.1 19.1 12.2l-.5-3-2.8 2.4.8-3.7-2.7 2.3.5-3.5-3 2.2.7-3.9-3.4 2.2.5-3.4-3.3 2.1.4-3-2.9 1.4v-2.4l-2 .7-1.4-2.6"/><g fill="#75a843"><path d="M31.8 31.3C30.4 17.8 36.5-2 50.3 5.7l-3.8 1.1L49 9.9l-4.5-.4 2.3 3-4.3-.1 2.2 3.3-4.7-.2 2.2 3.9-4.2-.1 2 3.8h-3.6l1.2 3.3-2.9.3.6 2.3-3.5 2.3"/><path d="M32.6 28.9c-2.3-13.6-14-30.6-25.7-18.2l4.1-.3-1.6 3.9 4.4-1.9-1.5 3.6 4.3-1.6-1.3 4 4.7-1.9-1.1 4.5 4.1-1.6-1 4.4 3.6-1.3-.3 3.7 3-.7.1 2.4 4.2 1"/></g><g fill="#83bf4f"><path d="M33.2 31C24.9 19.5 6.7 8.5 2 24.5l3.6-1.9.3 4.2 3-3.5.4 4 3.1-3.2.7 4.2 3.3-3.6 1.1 4.6 3-3.1 1.2 4.4 2.6-2.6 1.5 3.5 2.3-1.9 1.2 2.2 3.9-.8"/><path d="M33.7 29.2c-12.2-2.4-29.6 1.3-21.7 14l.7-3.2 2.9 2.4-.6-3.9 2.8 2.3-.3-3.8 3.1 2.2-.5-4.1 3.6 2.2-.4-3.6 3.5 2-.3-3.1 3.1 1.3.1-2.5 2.1.7 1.9-2.9"/><path d="M30.8 29.1C39 18.5 57.2 8.2 62 23.1l-3.6-1.8-.3 3.9-3-3.2-.4 3.7-3.1-2.9-.6 3.8-3.3-3.3-1.1 4.2-3-2.9-1.2 4-2.6-2.4-1.5 3.2-2.3-1.7-1.2 2-4-.6"/></g><path fill="#68584d" d="M36.8 32.6c1.1 1.3 1.1 3.2 0 4.2-1.2 1-3 .7-4.2-.7-1.1-1.3-1.1-3.2 0-4.2 1.2-1 3.1-.7 4.2.7"/><path fill="#726256" d="M37.3 26.8c1.7.9 2.4 2.7 1.7 4.2-.8 1.4-2.7 1.9-4.4 1-1.7-.9-2.4-2.7-1.7-4.2.7-1.4 2.7-1.8 4.4-1"/><path fill="#847266" d="M33.2 33.9c-1.2 2.1-3.8 3-5.6 2-1.9-1.1-2.4-3.7-1.1-5.8 1.2-2.1 3.8-3 5.6-2 1.8 1.1 2.3 3.7 1.1 5.8"/></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><g fill="#83bf4f"><path d="M15.2 31.4c0 1.7-1.4 3-3 3H10c-1.7 0-3-1.3-3-3V18.1c0-5.9 8.2-5.9 8.2 0v13.3z"/><path d="M23.4 26.3c1.7 0 3 1.3 3 3v2.1c0 1.7-1.4 3-3 3H10c-1.7 0-3-1.3-3-3v-2.1c0-1.7 1.4-3 3-3h13.4"/></g><g fill="#699635"><path d="M26.9 28.5v-1.2h-11c-.2 0-1.7-.1-1.7-1.8v-7c0-4.3-3-4.9-3-4.9s1.9.8 1.9 4.9v7.7c0 2.2 1.8 2.2 2.2 2.2l11.6.1"/><path d="M13.4 29.7c-.2 0-1.8-.2-1.8-2.8v-8.4c0-3.3-.6-4.9-.6-4.9s-.6 1.5-.6 4.9v9.1c0 3.3 1.8 3.3 2.2 3.3H27v-1.2H13.4"/><path d="M9.2 29.4V18.5c0-4.1 1.9-4.9 1.9-4.9s-3 .6-3 4.9V30c0 3.3 2.8 3.3 3.3 3.3H27v-1.2H12c-.3.1-2.8-.2-2.8-2.7"/></g><g fill="#83bf4f"><path d="M46.4 47.2c0 2.1 1.8 3.9 3.9 3.9H53c2.2 0 3.9-1.7 3.9-3.9V30c0-7.6-10.6-7.6-10.6 0 .1 0 .1 17.2.1 17.2"/><path d="M35.8 40.6c-2.2 0-3.9 1.7-3.9 3.9v2.7c0 2.1 1.8 3.9 3.9 3.9h17.3c2.2 0 3.9-1.7 3.9-3.9v-2.7c0-2.1-1.8-3.9-3.9-3.9H35.8"/></g><g fill="#699635"><path d="M31.3 43.5V42h14.2c.3 0 2.3-.1 2.3-2.3v-9.1c0-5.5 3.9-6.3 3.9-6.3s-2.4 1-2.4 6.3v10c0 2.9-2.3 2.9-2.9 2.9H31.3"/><path d="M48.7 45.1c.3 0 2.3-.3 2.3-3.6V30.6c0-4.3.8-6.3.8-6.3s.8 2 .8 6.3v11.8c0 4.2-2.3 4.2-2.9 4.2H31.2v-1.5h17.5"/><path d="M54.1 44.6v-14c0-5.3-2.4-6.3-2.4-6.3s3.9.8 3.9 6.3v14.9c0 4.2-3.7 4.2-4.2 4.2H31.2v-1.5h19.4c.3 0 3.5-.4 3.5-3.6"/></g><path fill="#83bf4f" d="M39.5 64H22.8V10c0-12 16.7-12 16.7 0v54z"/><g fill="#699635"><path d="M37.4 64V11c0-8.7-6.2-10-6.2-10S35 2.6 35 11v53h2.4z"/><path d="M32.3 64V11c0-6.8-1.2-10-1.2-10S30 4.2 30 11v53h2.3z"/><path d="M27.3 64V11c0-8.4 3.8-10 3.8-10s-6.2 1.3-6.2 10v53h2.4"/></g></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#6c9925" d="M6.6 2.5C3 5.8 5.8 13.3 5.8 13.3 1.7 18 3 26.1 3 26.1l4.9-13.3C7.3 5.6 10 3.5 10 3.5c.5-1.1-2.1-2.2-3.4-1"/><path fill="#8cc63e" d="M7.6 3.3c-3 2.7-.2 9.8-.2 9.8-4.1 4.7-2.7 9-2.8 11.6l19.9-11.8C22.3 7.1 10 10.2 10 10.2c-2.5-4.3 0-6.7 0-6.7s-.8.3-2.4-.2"/><path fill="#ed4040" d="M42.9 48c-9.7-9.3-10.8-16.8-10.8-25.2 0-6.6-4-11.3-8.3-12.1-2.2-.4-9-.7-6.7 1.3 2.2 2-8.1.4-8.1 4.7 0 3.1-2.6-.6-5.7 7.1-3.1 8-.1 13.5 4.4 18.5 8.8 9.6 29.4 27.1 50.7 16.1 11-5.5-6.1-1.4-15.5-10.4"/></svg>

After

Width:  |  Height:  |  Size: 569 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#83bf4f" d="M39.8 45.1C33.4 50.4 33.9 64 33.9 64h2.2C41.9 46.2 62 39.5 62 39.5s-12.8-2.3-22.2 5.6z"/><path fill="#75a843" d="m33.6 1 2.5 63h-5z"/><path fill="#aa1f65" d="M45.2 25.1c0 11-5.2 15.7-11.6 15.7S22 36.1 22 25.1 33.6 1 33.6 1s11.6 13.1 11.6 24.1z"/><path fill="#d33777" d="M37 19.9c14.8 9.3 4.8 22.5-3.6 22.5s-15.2-8.6-15.2-19.3 8.3-19.3 8.3-19.3-.4 9.3 10.5 16.1"/><path fill="#e84d88" d="M30.3 19.9c-14.8 9.3-4.8 22.5 3.6 22.5s15.2-8.6 15.2-19.3-8.2-19.2-8.2-19.2.3 9.2-10.6 16"/><path fill="#83bf4f" d="M24.8 43.1c6.6 6.6 8.7 20.9 8.7 20.9h-4.8C21 45.8 2 32.5 2 32.5s16.2 4.1 22.8 10.6z"/></svg>

After

Width:  |  Height:  |  Size: 679 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><g fill="#ff506e"><path d="M36.1 2C35.7 3.9 34 5.4 32 5.4c-2 0-3.7-1.5-4.1-3.4-3.1 1.7-5.3 5.6-5.3 12.3 0 9.3 9.4 20.5 9.4 20.5s9.4-11.2 9.4-20.5c0-6.7-2.2-10.6-5.3-12.3"/><path d="M62 24.3c-1.9.4-3.8-.5-4.7-2.4-.9-1.9-.4-4.1 1.1-5.4-2.8-2.2-7.1-2.5-12.9.4-8 4.2-13.5 17.9-13.5 17.9s13.7 4 21.7-.1c5.8-2.9 8.2-6.7 8.3-10.4m-60 0c1.9.4 3.8-.5 4.7-2.4.9-1.9.4-4.1-1.1-5.4 2.8-2.2 7.1-2.5 12.9.4C26.5 21 32 34.7 32 34.7s-13.7 4-21.7-.1C4.5 31.8 2.1 28 2 24.3"/><path d="M46.5 61.9c-.7-1.9-.1-4 1.5-5.2 1.6-1.2 3.8-1 5.2.3 1.6-3.3 1.3-7.8-2.3-13.3C45.8 36.1 32 32.5 32 32.5S30.3 47.3 35.4 55c3.6 5.5 7.6 7.4 11.1 6.9"/><path d="M17.5 61.9c.7-1.9.1-4-1.5-5.2-1.6-1.2-3.8-1-5.2.3-1.6-3.3-1.3-7.8 2.3-13.3C18.2 36.1 32 32.5 32 32.5s1.7 14.8-3.4 22.5c-3.6 5.5-7.6 7.4-11.1 6.9"/></g><g fill="#fff0f3"><path d="M35.6 5.7c-.4 1.7-1.9 3-3.6 3s-3.2-1.3-3.6-3c-2.7 1.5-4.6 4.9-4.6 10.8 0 8.2 8.3 18 8.3 18s8.3-9.8 8.3-18c-.1-5.9-2-9.3-4.8-10.8"/><path d="M58.3 25.3c-1.6.4-3.4-.4-4.1-2.1-.8-1.7-.3-3.6 1-4.7-2.5-1.9-6.3-2.2-11.3.3C36.8 22.4 32 34.4 32 34.4s12 3.5 19.1-.1c5-2.5 7.1-5.8 7.2-9m-52.6 0c1.6.4 3.4-.4 4.1-2.1.8-1.7.3-3.6-1-4.7 2.5-1.9 6.3-2.2 11.3.3 7 3.6 11.9 15.6 11.9 15.6s-12 3.5-19.1-.1c-5-2.5-7.1-5.8-7.2-9"/><path d="M44.7 58.3c-.6-1.6-.1-3.6 1.4-4.6s3.3-.9 4.6.3c1.4-2.9 1.1-6.8-2-11.6-4.6-6.8-16.7-10-16.7-10s-1.5 13 3 19.7c3.2 4.9 6.6 6.6 9.7 6.2"/><path d="M19.3 58.3c.6-1.6.1-3.6-1.4-4.6s-3.3-.9-4.6.3c-1.4-2.9-1.1-6.8 2-11.6 4.5-6.7 16.6-9.9 16.6-9.9s1.5 13-3 19.7c-3.1 4.8-6.5 6.5-9.6 6.1"/></g><g fill="#ff506e"><path d="m28.7 40.9-1.2-.6 7.8-17.2 1.2.6z"/><path d="M37.5 23.3c0 .9-.6 1.7-1.5 1.7s-1.6-.7-1.7-1.6c0-.9.6-1.7 1.5-1.7s1.6.7 1.7 1.6m-7.8 17.2c0 .9-.6 1.7-1.5 1.7s-1.6-.7-1.7-1.6c0-.9.6-1.7 1.5-1.7s1.7.7 1.7 1.6m-5.8-4.1-.5-1.3 16.7-7.5.5 1.3z"/><path d="M41.9 28.3c-.1.9-.8 1.6-1.7 1.5-.9-.1-1.5-.9-1.5-1.8.1-.9.8-1.6 1.7-1.5.9.1 1.6.9 1.5 1.8m-16.6 7.6c-.1.9-.8 1.6-1.7 1.5-.9-.1-1.5-.9-1.5-1.8.1-.9.8-1.6 1.7-1.5s1.5.9 1.5 1.8m14.6.8-16.4-8.1.6-1.3 16.4 8.1z"/><path d="M40.3 37.7c-.9 0-1.6-.7-1.7-1.6 0-.9.6-1.7 1.5-1.7s1.6.7 1.7 1.6c.1.9-.6 1.7-1.5 1.7m-16.4-8.1c-.9 0-1.6-.7-1.7-1.6 0-.9.6-1.7 1.5-1.7s1.6.7 1.7 1.6c0 .9-.7 1.7-1.5 1.7M35 41l-7.2-17.4L29 23l7.2 17.4z"/><path d="M35.5 42.4c-.9-.1-1.5-.9-1.5-1.8.1-.9.8-1.6 1.7-1.5.9.1 1.5.9 1.5 1.8-.1.9-.8 1.6-1.7 1.5m-7.2-17.5c-.9-.1-1.5-.9-1.5-1.8s.8-1.6 1.7-1.5 1.5.9 1.5 1.8c-.1.9-.9 1.6-1.7 1.5"/><ellipse cx="32" cy="32" rx="3.4" ry="3.5"/></g></svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#75a843" d="M32.9 17.3 35.4 64h-5z"/><path fill="#83bf4f" d="M27.1 45.3c6.8 3.7 5.3 10.1 5.3 10.1s-5.6 5.1-12.5 1.4c-4.7-2.5-8.8-12.4-8.8-12.4s11.2-1.6 16 .9"/><path fill="#947151" d="m40.9 48.4-7.3-2.1-.1 4z"/><path fill="#871212" d="M25.6 22.2c3.7 9.5 5.2 14.5 11.7 14.5 6.5 0 16.3-16.6 6.9-22C35 9.4 35.3 2 35.3 2s-15.8 4.7-9.7 20.2z"/><path fill="#991d1d" d="M45.2 24.2c-4.8 9.1-5.2 14.5-11.7 14.5s-18.3-21.8-7.8-25.1C38.7 9.5 42 4.7 42 4.7s10.3 5.9 3.2 19.5"/><path fill="#ad2727" d="M46 16c0-3.9-17-7.2-20-13.3 0 0-8.2 5.9-5.1 12 1.8 3.4 25 14.5 25.1 1.3"/><path fill="#cc3636" d="M36.8 19.5c10.4 13 4.8 20.8-3.7 20.8s-17.8-8.2-15.4-17.8c2.4-9.6-1-17.8-1-17.8s12.2 4.9 20.1 14.8"/><path fill="#e24b4b" d="M27.3 18.5c-11.8 11.9-2.1 21.7 6.4 21.7s15.4-8 15.4-17.8 2.6-15.8 2.6-15.8-16 3.4-24.4 11.9"/><path fill="#75a843" d="M34 36.1c13.1-.2 7.4 5-1.1 5-20.9 0-20-18.3-20-18.3S22.3 36.2 34 36.1"/><path fill="#83bf4f" d="M34 36.1c-3.5 1.4-12.7 3.5-4.4 5.1C46 44.5 52.9 23.4 52.9 23.4S44.5 31.8 34 36.1z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#83bf4f" d="M45.6 35.1c-6.6-2.2-20.7-2.2-27.3 0C10.7 37.6 2 37.6 2 37.6s.9 24 18.5 21.2c6.1-1 9.7-3.8 11.5-5.8 1.8 2 5.3 4.8 11.5 5.8C61.1 61.6 62 37.6 62 37.6s-8.7 0-16.4-2.5"/><path fill="#ffc7ce" d="M57.8 27c0-7.5-6-13.6-13.4-13.7C42.4 8.4 37.6 5 32 5c-5.6 0-10.4 3.4-12.4 8.3-7.4.2-13.2 6.3-13.2 13.7 0 4 1.7 7.6 4.4 10.1-.6 1.5-.9 3.1-.9 4.8 0 7.6 6.1 13.7 13.5 13.7 3.3 0 6.3-1.2 8.6-3.1 2.3 1.9 5.3 3.1 8.6 3.1 7.5 0 13.5-6.1 13.5-13.7 0-1.6-.3-3.2-.8-4.6 2.8-2.6 4.5-6.2 4.5-10.3"/><g fill="#ff506e"><path d="M33.3 48.5c1.6 1 3.4 1.5 5.4 1.5 5.8 0 10.6-4.8 10.6-10.7 0-.8-.1-1.5-.2-2.2-3.4-4.8-11.5-7.3-16.7-6.7 2 .9 5.9 7.8.9 18.1"/><path d="M14.9 37.6c-.1.5-.1 1.1-.1 1.7 0 5.9 4.7 10.7 10.6 10.7 2.2 0 4.2-.7 5.8-1.8 4.8-8.2 2.5-17.3 1.2-17.8-2.7 3.6-8 9-17.5 7.2"/><path d="M40.7 15.2c-1.9-2.8-5.1-4.7-8.7-4.7-3.2 0-6.1 1.5-8 3.8-1.4 5 1.6 11.9 8.4 16.2-1.7-4.2.6-12.6 8.3-15.3"/><path d="M42.4 17.1c-5.7 1.6-11.1 9-10.1 13.3 4.4-2.3 14.3-1.5 17.5 3.5 1.2-1.7 2-3.9 2-6.2 0-5.5-4.1-10-9.4-10.6m-22.3.2c-4.7 1.1-8.1 5.3-8.1 10.4 0 2.9 1.2 5.6 3.1 7.5 7.4 1.1 14.8-3.6 17.3-4.8-4.6-.8-12.6-6.9-12.3-13.1"/></g><path fill="#83bf4f" d="M31.1 32.4 24 22.9l2.6-1.7 7.1 9.5c1.4 1.8-1.3 3.3-2.6 1.7"/><path fill="#fabf49" d="M26 20.2h2.8l.9.9 1.4-1.3-1.4-1.4-.9.9H26l-.5-.6 2.2-2.2h1.2v-1.9H27v1.2l-2.2 2.3-.5-.6v-2.8l.8-.9-1.3-1.4-1.4 1.4.9.9v2.8l-.5.6-2.2-2.3v-1.2h-2v1.9h1.3l2.2 2.2-.5.6h-2.8l-.9-.9-1.4 1.4 1.4 1.3.9-.9h2.8l.5.6-2.2 2.2h-1.2v2h1.9v-1.3l2.2-2.2.5.5v2.9l-.9.9 1.4 1.3 1.3-1.3-.8-.9V22l.5-.5 2.2 2.2V25h1.9v-2h-1.2l-2.2-2.2z"/><path fill="#ffd582" d="m27.3 22 2.8-.3 1 .7 1.1-1.5-1.5-1.2-.7 1-2.8.4-.6-.5 1.9-2.5 1.2-.2-.3-1.9-1.9.3.2 1.2-1.9 2.6-.6-.5-.4-2.8.8-1-1.5-1.2-1.2 1.5 1 .8.4 2.8-.5.6-2.5-1.9-.2-1.2-1.9.2.3 1.9 1.2-.1 2.5 1.9-.4.6-2.8.4-1-.8-1.2 1.6 1.6 1.2.7-1.1 2.8-.3.6.4-1.9 2.6-1.2.1.3 1.9 1.8-.2-.1-1.3 1.9-2.5.6.5.4 2.8-.8 1 1.5 1.2 1.2-1.6-1-.7-.4-2.8.5-.7 2.5 1.9.1 1.3 1.9-.3-.2-1.9-1.3.2-2.5-1.9z"/><path fill="#fc6" d="m28.8 24.6 2.8.3.8 1 1.4-1.2-1.2-1.5-1 .8-2.7-.3-.5-.6 2.4-2 1.2.1.2-1.9-1.9-.2-.1 1.3-2.4 2-.5-.6.2-2.9 1-.8-1.2-1.5-1.5 1.3.8.9-.2 2.9-.7.5-1.9-2.5.1-1.2-1.9-.2-.2 1.9 1.2.1 2 2.5-.6.5-2.8-.3-.8-1-1.4 1.2 1.2 1.5.9-.8 2.8.3.5.6-2.4 2-1.2-.1-.2 1.9 1.9.2.1-1.2 2.4-2.1.5.7-.3 2.8-.9.8 1.2 1.5 1.5-1.2-.8-1 .2-2.8.6-.5 2 2.4-.1 1.3 1.9.2.2-2-1.3-.1-1.9-2.4z"/></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#83bf4f" d="M39.4 49.5C32.7 54.7 30.9 64 30.9 64h2.4c9-13.1 26.5-22.2 26.5-22.2S48 42.9 39.4 49.5z"/><path fill="#75a843" d="M30.5 1 33 64h-5z"/><path fill="#83bf4f" d="M23.9 50.7c5.8 6.2 6.5 13.3 6.5 13.3H28C19 48.7 4.2 43.4 4.2 43.4s12.8 0 19.7 7.3"/><g fill="#f4bc58"><path d="M42.8 23.6c-5.3-1.4-7.9-.2-8.5 2s1.1 4.6 6.4 6 12.8-.8 12.8-.8-5.4-5.8-10.7-7.2m-24.3 2.1c5.3 1.4 7.9.2 8.5-2 .6-2.2-1.1-4.6-6.4-6-5.3-1.4-12.8.8-12.8.8s5.4 5.7 10.7 7.2m11.2-13.2c-1.4 5.3-.2 7.9 2 8.5 2.2.6 4.6-1.1 6-6.4 1.3-5.3-.9-12.8-.9-12.8s-5.7 5.4-7.1 10.7m2 24.3c1.4-5.3.2-7.9-2-8.5-2.2-.6-4.6 1.1-6 6.4-1.4 5.3.8 12.8.8 12.8s5.8-5.4 7.2-10.7"/><path d="M38.5 15.3c-4.8 2.7-5.7 5.5-4.6 7.4 1.1 2 4 2.5 8.7-.3 4.8-2.7 8.5-9.7 8.5-9.7s-7.8-.1-12.6 2.6M22.8 33.9c4.8-2.7 5.7-5.5 4.6-7.4-1.1-2-4-2.5-8.7.3s-8.5 9.7-8.5 9.7 7.9.2 12.6-2.6m-1.4-17.1c2.7 4.8 5.5 5.7 7.4 4.6 2-1.1 2.5-4-.3-8.7-2.7-4.8-9.7-8.5-9.7-8.5s-.2 7.8 2.6 12.6M40 32.5c-2.7-4.8-5.5-5.7-7.4-4.6-2 1.1-2.5 4 .3 8.7 2.7 4.8 9.7 8.5 9.7 8.5s.1-7.9-2.6-12.6"/></g><g fill="#fc6"><path d="M34.8 13.2c0 5.5-1.8 7.7-4.1 7.7s-4.1-2.2-4.1-7.7C26.5 7.7 30.7 1 30.7 1s4.1 6.7 4.1 12.2m-8.3 22.9c0-5.5 1.8-7.7 4.1-7.7s4.1 2.2 4.1 7.7-4.1 12.2-4.1 12.2-4.1-6.7-4.1-12.2m15.6-7.3c-5.5 0-7.7-1.8-7.7-4.1s2.2-4.1 7.7-4.1 12.2 4.1 12.2 4.1-6.7 4.1-12.2 4.1m-22.9-8.3c5.5 0 7.7 1.8 7.7 4.1s-2.2 4.1-7.7 4.1S7 24.6 7 24.6s6.7-4.1 12.2-4.1"/><path d="M41.7 19.4c-3.9 3.9-6.8 4.1-8.4 2.5s-1.4-4.5 2.5-8.4c3.9-3.9 11.5-5.7 11.5-5.7s-1.7 7.8-5.6 11.6m-22 10.4c3.9-3.9 6.8-4.1 8.4-2.5 1.6 1.6 1.4 4.5-2.5 8.4-4 3.8-11.6 5.6-11.6 5.6s1.8-7.6 5.7-11.5m16.2 5.8c-3.9-3.9-4.1-6.8-2.5-8.4 1.6-1.6 4.5-1.4 8.4 2.5 3.9 3.9 5.7 11.5 5.7 11.5s-7.8-1.7-11.6-5.6m-10.4-22c3.9 3.9 4.1 6.8 2.5 8.4-1.6 1.6-4.5 1.4-8.4-2.5C15.8 15.6 14 7.9 14 7.9s7.6 1.8 11.5 5.7"/></g><g fill="#ffd68d"><path d="M31.7 12.5c1.4 5.3.2 7.9-2 8.5-2.2.6-4.6-1.1-6-6.4-1.4-5.3.8-12.8.8-12.8s5.8 5.4 7.2 10.7m-2 24.3c-1.4-5.3-.2-7.9 2-8.5s4.6 1.1 6 6.4c1.4 5.3-.8 12.8-.8 12.8s-5.8-5.4-7.2-10.7m13.1-11.1c-5.3 1.4-7.9.2-8.5-2-.6-2.2 1.1-4.6 6.4-6 5.3-1.4 12.8.8 12.8.8s-5.4 5.7-10.7 7.2m-24.3-2.1c5.3-1.4 7.9-.2 8.5 2 .6 2.2-1.1 4.6-6.4 6-5.2 1.4-12.7-.9-12.7-.9s5.3-5.7 10.6-7.1"/><path d="M40 16.8c-2.7 4.8-5.5 5.7-7.4 4.6-2-1.1-2.5-4 .3-8.7 2.7-4.8 9.7-8.5 9.7-8.5s.1 7.8-2.6 12.6M21.4 32.5c2.7-4.8 5.5-5.7 7.4-4.6 2 1.1 2.5 4-.3 8.7-2.7 4.8-9.7 8.5-9.7 8.5s-.2-7.9 2.6-12.6m17.1 1.4c-4.8-2.7-5.8-5.5-4.6-7.4s4-2.5 8.7.3c4.8 2.7 8.5 9.7 8.5 9.7s-7.8.2-12.6-2.6M22.8 15.3c4.8 2.7 5.7 5.5 4.6 7.4-1.1 2-4 2.5-8.7-.3s-8.5-9.7-8.5-9.7 7.9-.1 12.6 2.6"/></g><circle cx="30.7" cy="24.4" r="13.2" fill="#947151"/><circle cx="30.7" cy="24.4" r="10" fill="#3e4347"/></svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path d="M43.8 63.4c-7.7 2-11-2-11-2s.6-6.2 8.4-8.2c5.3-1.4 15.3 1.4 15.3 1.4s-7.4 7.4-12.7 8.8M21 58c7.7 2 11-2 11-2s-.6-6.2-8.4-8.2c-5.3-1.4-15.3 1.4-15.3 1.4S15.7 56.6 21 58" fill="#83bf4f"/><path fill="none" stroke="#75a843" stroke-miterlimit="10" stroke-width="4" d="M32 28v36"/><path d="M50.3 19.6c-4.9 4.9-15 8.4-16.7 6.8-1.6-1.6 1.8-11.8 6.8-16.7 6.9-6.9 16.8 3 9.9 9.9M13.7 36.4c4.9-4.9 15-8.4 16.7-6.8 1.6 1.6-1.9 11.7-6.8 16.7-6.9 6.9-16.8-3-9.9-9.9m26.7 9.9c-4.9-4.9-8.4-15-6.8-16.7 1.6-1.6 11.8 1.8 16.7 6.8 6.9 6.9-3 16.8-9.9 9.9M23.6 9.7c4.9 4.9 8.4 15 6.8 16.7-1.6 1.6-11.8-1.9-16.7-6.8-6.9-6.9 3-16.8 9.9-9.9" fill="#d0d0d0"/><path d="M50.9 35c-7 0-16.6-4.7-16.6-7s9.6-7 16.6-7c9.8 0 9.8 14 0 14M13.1 21c7 0 16.6 4.7 16.6 7s-9.6 7-16.6 7c-9.8 0-9.8-14 0-14M25 46.9c0-7 4.7-16.6 7-16.6s7 9.6 7 16.6c0 9.8-14 9.8-14 0M39 9.1c0 7-4.7 16.6-7 16.6s-7-9.6-7-16.6c0-9.8 14-9.8 14 0" fill="#e6eded"/><circle cx="32" cy="28" r="9.6" fill="#f29a2e"/></svg>

After

Width:  |  Height:  |  Size: 1023 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#8cc63e" d="M59.3 48.4c.9 1 .9 2.6 0 3.5l-4.2 4.4c-.9 1-2.5 1-3.4 0l1.3-6.2 6.3-1.7"/><path fill="#64892f" d="M56.6 52.3c5.4-4.5 9.4-11.5-1.7-22.6-8.4-8.4-1-13.8-1-13.8s-25 0 2.7 36.4"/><path fill="#c9ac1c" d="M11.3 7.3c-5.1 4.9 1.1 19.6 21.8 39.8 11.3 11 16.8 9.2 21.8 4.2s6.8-10.6-4.1-22c-20-20.9-34.6-27.1-39.5-22"/><g fill="#ffe62e"><path d="M13.6 6.4c-1.8-1.4-5.3 1.8-2.6 4 1.6 1.4 5.3-1.9 2.6-4"/><path d="M17 9.7c-1.9-1.5-5.4 1.7-2.6 4.1 1.7 1.4 5.4-1.8 2.6-4.1"/><path d="M20.4 13c-1.7-1.3-5.2 1.9-2.6 4 1.5 1.3 5.1-2 2.6-4"/><path d="M23.7 16.3c-1.7-1.3-5.2 1.9-2.6 4 1.5 1.3 5.2-2 2.6-4"/><path d="M27.1 19.6c-1.7-1.3-5.2 1.9-2.6 4 1.5 1.3 5.2-2 2.6-4"/><path d="M30.5 22.9c-1.7-1.3-5.2 1.9-2.6 4 1.5 1.3 5.2-2 2.6-4"/><path d="M33.8 26.5c-1.7-1.3-5.2 1.9-2.6 4 1.5 1.3 5.1-2 2.6-4"/><path d="M37.1 29.7c-1.7-1.3-5.2 1.9-2.6 4 1.5 1.3 5.1-2 2.6-4"/><path d="M40.2 32.8c-1.7-1.3-5.2 1.9-2.6 4 1.5 1.3 5.1-2 2.6-4"/><path d="M43.5 36.1c-1.7-1.3-5.2 1.9-2.6 4 1.5 1.3 5.2-2 2.6-4"/><path d="M46.7 39.6c-1.7-1.3-5.2 1.9-2.6 4 1.5 1.3 5.1-2.1 2.6-4"/><path d="M50.3 42.8c-1.7-1.3-5.2 1.9-2.6 4 1.5 1.3 5.1-2 2.6-4"/><path d="M53.5 46.2c-1.7-1.3-5.2 1.9-2.6 4 1.5 1.3 5.2-2 2.6-4"/><path d="M56.3 49c-1.1-.7-4.5 2.6-2.9 3.7.9.7 4.5-2.7 2.9-3.7m3.2-4.3c.5.9-.8 3.2-1.7 3.6-2.4 1.4.7-5.4 1.7-3.6M32.6 17.5c-1.7-1.3-5.2 1.9-2.6 4 1.5 1.3 5.2-2 2.6-4m5.3-1.7c-1.7-1.3-4.8 1.5-2.3 3.6 1.6 1.4 4.9-1.6 2.3-3.6"/><path d="M41.5 19.3c-1.7-1.3-4.8 1.5-2.3 3.6 1.5 1.3 4.8-1.6 2.3-3.6"/><path d="M45.4 22.5c-1.9-1.5-5.4 1.7-2.6 4.1 1.8 1.5 5.5-1.8 2.6-4.1"/><path d="M49.3 26.4c-1.9-1.5-5.4 1.7-2.6 4.1 1.7 1.5 5.4-1.8 2.6-4.1"/><path d="M52.9 30.4c-1.9-1.5-5.4 1.7-2.6 4.1 1.8 1.4 5.5-1.9 2.6-4.1"/><path d="M56.5 34.9c-1.4-2-4.5-.4-2.5 2.7 1.2 1.8 4.6.3 2.5-2.7M36.1 21c-1.7-1.3-5.2 1.9-2.6 4 1.5 1.3 5.2-2 2.6-4"/><path d="M39.6 24.6c-1.7-1.3-5.2 1.9-2.6 4 1.5 1.2 5.2-2.1 2.6-4"/><path d="M43.1 28.1c-1.7-1.3-5.2 1.9-2.6 4 1.5 1.3 5.2-2 2.6-4"/><path d="M46.6 31.6c-1.7-1.3-5.2 1.9-2.6 4 1.5 1.3 5.2-2 2.6-4m3.6 3.6c-1.7-1.3-5.2 1.9-2.6 4 1.5 1.3 5.2-2 2.6-4"/><path d="M53.6 38.6c-1.7-1.3-5.2 1.9-2.6 4 1.5 1.3 5.2-2 2.6-4"/><path d="M57.1 42.2c-1.7-1.3-5.2 1.9-2.6 4 1.6 1.3 5.2-2 2.6-4m-27.8-28c-1.7-1.3-5.2 1.9-2.6 4 1.5 1.3 5.2-2 2.6-4m5.7 1.3c1.1-1.7-2.1-4.9-4-2.3-1.2 1.5 2.2 4.9 4 2.3"/><path d="M25.8 11c-1.7-1.3-5.2 1.9-2.6 4 1.5 1.3 5.1-2 2.6-4"/><path d="M22.3 8.4c-1.5-1.2-4.7 1.7-2.4 3.6 1.4 1.2 4.7-1.8 2.4-3.6"/><path d="M18.6 6.9c-1.2-1-3.2.7-1.3 2.4 1.1 1 3.2-.8 1.3-2.4"/><path d="M14.4 5.5c-.6.8 1 2.6 2 1.3.6-.7-1.1-2.5-2-1.3m2.1-.2c-.2.4 1.5 1.8 2 .5.2-.8-1.7-1.1-2-.5m2.4.7c-.2.4 1.8 2.1 2.4.6.3-.9-2.1-1.2-2.4-.6m2.8.8c-.3.4 1.3 2.5 2.1 1.1.6-.8-1.7-1.6-2.1-1.1m36.9 35.7c.9-.1 1.5-4.8-1.4-4.2-1.7.4.1 4.3 1.4 4.2M27.7 9.8c-.8.7.8 4.8 3.3 2.4 1.5-1.5-2.1-3.3-3.3-2.4M24.3 8c-.6.5.7 3.9 2.7 1.9 1.2-1.2-1.7-2.7-2.7-1.9m-2.8 20.7c-1.3-1.7 1.9-5.2 4-2.7 1.3 1.6-2 5.3-4 2.7M19.8 34c-1.3-1.7 1.5-4.8 3.6-2.3 1.3 1.6-1.6 4.9-3.6 2.3"/><path d="M25 32.2c-1.3-1.7 1.9-5.2 4-2.7 1.3 1.6-2 5.3-4 2.7"/><path d="M28.5 35.7c-1.3-1.7 1.9-5.2 4-2.7 1.3 1.6-2 5.3-4 2.7M18.2 25.4c-1.3-1.7 1.9-5.2 4-2.7 1.3 1.6-2 5.2-4 2.7m1.3 5.6c-1.7 1.1-4.9-2.1-2.3-4 1.6-1.1 4.9 2.3 2.3 4"/><path d="M15.1 21.8c-1.3-1.7 1.9-5.2 4-2.7 1.2 1.6-2.1 5.3-4 2.7"/><path d="M12.5 18.3c-1.2-1.5 1.7-4.7 3.6-2.4 1.2 1.4-1.8 4.7-3.6 2.4"/><path d="M11 14.6c-1-1.2.7-3.3 2.4-1.3.9 1.1-.9 3.2-2.4 1.3"/><path d="M9.6 10.4c.8-.6 2.5 1 1.3 2-.7.5-2.5-1.1-1.3-2m-.2 2.1c.4-.2 1.8 1.5.5 2-.8.2-1.1-1.8-.5-2m.7 2.4c.4-.2 2.1 1.8.6 2.4-.9.2-1.2-2.1-.6-2.4m.8 2.8c.4-.3 2.5 1.3 1.1 2.2-.8.5-1.7-1.8-1.1-2.2m3 6c.7-.8 4.8.8 2.4 3.3-1.5 1.5-3.4-2.1-2.4-3.3M12 20.4c.5-.6 3.9.7 1.9 2.7-1.2 1.2-2.6-1.8-1.9-2.7"/></g><path fill="#8cc63e" d="M2 30.5s22.3 8.2 30.5 20.9c5.4 8.3 16.1 11.4 22.6.7C35.5 25.7 2 30.5 2 30.5z"/></svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path d="M10.7 27.5c-.6 3-.9 6.1-.8 9.1.1 3 .7 6 1.6 8.8 1 2.8 2.3 5.5 4 8.1.8 1.3 1.7 2.5 2.7 3.7 1 1.2 2 2.3 3.1 3.4-1.3-.8-2.5-1.8-3.6-2.9-1.1-1.1-2.2-2.3-3.1-3.5-1.9-2.5-3.4-5.3-4.4-8.3-1-3-1.5-6.2-1.4-9.3.1-3.2.7-6.3 1.9-9.1m40.6.5c-3.2 1.8-6.3 3.8-9.2 6-2.9 2.2-5.6 4.7-8 7.4-2.4 2.7-4.6 5.6-6.4 8.7-.9 1.6-1.8 3.2-2.5 4.8-.8 1.7-1.4 3.4-2 5.1.2-1.8.7-3.6 1.3-5.4.6-1.8 1.3-3.5 2.2-5.1 1.7-3.3 3.9-6.4 6.4-9.2 2.5-2.8 5.3-5.2 8.4-7.3 3.1-2 6.4-3.8 9.8-5" fill="#75a843"/><g fill="#f4bc58"><path d="M28.5 14.7c-1.5 1.8-4.1 1.2-4.1 1.2s-1-2.5.4-4.3c1.5-1.8 5-2.3 5-2.3s.1 3.7-1.3 5.4m-5.3.4c.4 1.8-1.2 3.2-1.2 3.2s-2.1-.6-2.6-2.4c-.4-1.8 1-4.4 1-4.4s2.3 1.8 2.8 3.6m2.8 5c-1.8.4-3.2-1.2-3.2-1.2s.6-2.1 2.4-2.6 4.4 1 4.4 1-1.8 2.3-3.6 2.8m-5.8-.5c.6 1.7-.8 3.4-.8 3.4s-2.2-.3-2.8-2c-.6-1.7.4-4.5.4-4.5s2.6 1.4 3.2 3.1m3.4 4.6c-1.7.6-3.4-.8-3.4-.8s.3-2.2 2-2.8c1.7-.6 4.5.4 4.5.4s-1.4 2.6-3.1 3.2m-5.4.2c.9 1.7-.5 3.6-.5 3.6s-2.3-.1-3.2-1.8c-.9-1.7 0-4.7 0-4.7s2.9 1.1 3.7 2.9m4 4.4c-1.7.9-3.6-.5-3.6-.5s.1-2.3 1.8-3.2c1.7-.9 4.7 0 4.7 0s-1.1 2.8-2.9 3.7M16.4 30c1.2 1.7.1 4 .1 4s-2.5.4-3.7-1.4c-1.2-1.7-.9-5.1-.9-5.1s3.3.8 4.5 2.5m5.2 4.1c-1.7 1.2-4 .1-4 .1s-.4-2.5 1.4-3.7 5.1-.9 5.1-.9-.8 3.2-2.5 4.5m-6.3 2.6c1.5 1.6.6 4.2.6 4.2s-2.6.7-4.1-.9-1.6-5.2-1.6-5.2 3.6.2 5.1 1.9m5.9 3.5c-1.6 1.5-4.2.6-4.2.6s-.7-2.6.9-4.1 5.2-1.6 5.2-1.6-.2 3.6-1.9 5.1"/><path d="M24.5 15.8c-2.5 3.1-4.3 6.7-5.4 10.4-.5 1.9-1 3.8-1.3 5.7-.3 1.9-.5 3.9-.6 5.9-.1 2-.1 3.9-.1 5.9 0 2 .2 3.9.3 5.9.2 2 .4 3.9.7 5.9.3 2 .6 3.9 1 5.9-.6-1.9-1.1-3.8-1.5-5.8-.4-1.9-.8-3.9-1-5.9-.3-2-.4-4-.5-6-.1-2-.1-4 0-6s.3-4 .7-6c.4-2 .8-3.9 1.5-5.8.6-1.9 1.5-3.7 2.5-5.5 1-1.6 2.2-3.2 3.7-4.6"/></g><g fill="#fc6"><path d="M51.7 8.7c-2.4 1.7-5.6.1-5.6.1s-.4-3.5 2-5.2c2.4-1.7 7.1-1.2 7.1-1.2S54.1 7 51.7 8.7M45 7.4c-.1 2.4-2.7 3.6-2.7 3.6s-2.5-1.4-2.4-3.8C40 4.8 42.6 2 42.6 2s2.5 3 2.4 5.4"/><path d="M46.8 14.5c-2.4-.1-3.6-2.7-3.6-2.7s1.4-2.5 3.8-2.4c2.4.1 5.2 2.7 5.2 2.7s-3 2.5-5.4 2.4M39.7 12c.2 2.4-2.2 3.9-2.2 3.9s-2.6-1.1-2.9-3.5c-.2-2.4 2-5.5 2-5.5s2.9 2.7 3.1 5.1m2.7 6.9c-2.4.2-3.9-2.2-3.9-2.2s1.1-2.6 3.5-2.9c2.4-.2 5.5 2 5.5 2s-2.7 2.9-5.1 3.1m-6.8-1.6c.5 2.5-1.9 4.3-1.9 4.3s-2.9-.9-3.3-3.3c-.5-2.5 1.5-5.9 1.5-5.9s3.2 2.4 3.7 4.9m3.5 6.9c-2.5.5-4.3-1.9-4.3-1.9s.9-2.9 3.3-3.3c2.5-.5 5.9 1.5 5.9 1.5s-2.4 3.2-4.9 3.7m-7.7-.4c1 2.6-1.2 5-1.2 5s-3.2-.4-4.2-3 .6-6.7.6-6.7 3.9 2.1 4.8 4.7m5.1 6.8c-2.6 1-5-1.2-5-1.2s.4-3.2 3-4.2 6.7.6 6.7.6-2.1 3.8-4.7 4.8m-8.7 1.1c1.4 2.6-.6 5.4-.6 5.4s-3.5 0-4.8-2.6-.2-7.1-.2-7.1 4.2 1.7 5.6 4.3m6.2 6.5c-2.6 1.4-5.4-.6-5.4-.6s0-3.5 2.6-4.8c2.6-1.4 7.1-.2 7.1-.2s-1.7 4.2-4.3 5.6"/><path d="M46.4 8.8c-4.2 3-7.6 6.9-10.3 11.2-1.3 2.2-2.5 4.4-3.5 6.8-1 2.3-1.9 4.7-2.7 7.1-.8 2.4-1.5 4.9-2.1 7.4-.6 2.5-1.1 5-1.6 7.5-.4 2.5-.8 5.1-1.2 7.6-.3 2.5-.6 5.1-.8 7.7-.1-2.6-.1-5.2.1-7.7.2-2.6.4-5.2.7-7.7.3-2.6.8-5.1 1.4-7.6.6-2.5 1.2-5 2-7.5s1.8-4.9 2.9-7.3c1.1-2.4 2.4-4.6 3.8-6.8 1.5-2.2 3.1-4.2 5-6 1.9-1.9 4-3.5 6.3-4.7"/></g><path fill="#83bf4f" d="M39.4 39.5c-2.5.5-4.9 1.2-7.1 2.2-2.2 1-4.2 2.4-6 4.1-1.7 1.7-3.1 3.7-4.3 5.9-.6 1.1-1.1 2.2-1.5 3.4-.4 1.2-.8 2.4-1.1 3.6 0-1.3.1-2.5.4-3.8.3-1.2.6-2.5 1.1-3.7 1-2.4 2.4-4.6 4.3-6.4 1.9-1.8 4.1-3.2 6.6-4.1 2.5-.9 5.1-1.3 7.6-1.2"/></svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#75a843" d="M25.1 2c1.2 2.3 2.1 4.7 3 7.1.9 2.4 1.6 4.9 2.2 7.3 1.2 5 2 10 2.3 15.2.3 5.1.1 10.3-.7 15.4-.7 5.1-2 10.2-3.8 15.1l-3.4-1.2c4-9.1 6.1-19.1 6.1-29.2 0-5-.4-10.1-1.4-15-.5-2.5-1-5-1.8-7.4-.6-2.5-1.4-5-2.5-7.3"/><path d="M35.6 42c-5.2 2.2-4.8 7.3-4.8 7.3s3.9 4.4 9 2.2c3.6-1.5 8.1-8.5 8.1-8.5s-8.7-2.5-12.3-1m-2.8-17.3c-3.9 3-.6 6.5-.6 6.5s5.9 2.2 9.8-.7c2.7-2 2.4-8.2 2.4-8.2s-9 .3-11.6 2.4m-2-12.8c-2.9 2.2-.4 4.9-.4 4.9s4.4 1.7 7.3-.6c2-1.5 1.8-6.2 1.8-6.2s-6.7.3-8.7 1.9m-1.6 21.4c4.9 2.2 2.2 6.2 2.2 6.2s-5.8 3.1-10.8.9c-3.4-1.5-4.6-7.5-4.6-7.5s9.8-1.2 13.2.4m1.3-15c3 2.9-.1 5.2-.1 5.2s-5.1.9-8.1-2c-2.1-2-1.3-6.8-1.3-6.8s7.5 1.6 9.5 3.6m-.4-11.7c1 2.6-1.8 3.4-1.8 3.4s-3.6-.6-4.6-3.2C23 5 25.1 2 25.1 2s4.3 2.8 5 4.6" fill="#83bf4f"/><path d="M31.4 39.4c-.5-.5-1.1-.8-1.7-1.1-.6-.3-1.2-.6-1.9-.9-1.3-.6-2.6-1.1-3.9-1.6L20 34.3l-2-.7-2-.8c1.4.3 2.8.7 4.1 1.1 1.4.4 2.7.9 4 1.4 1.3.5 2.6 1.1 3.9 1.8.6.3 1.2.7 1.8 1.1l.9.6c.2.1.5.3.7.6m-.9-16c-.3-.5-.5-1-.8-1.4-.3-.5-.5-.9-.9-1.4-.7-.9-1.4-1.6-2.3-2.3-1.7-1.4-3.6-2.5-5.5-3.6 2.1.7 4.2 1.8 5.9 3.2.9.7 1.7 1.5 2.3 2.5.3.5.6 1 .8 1.5.2.5.3 1 .5 1.5m1.7 7.8c.3-.6.6-1.1 1-1.7l1.2-1.5c.9-1 1.8-1.8 2.9-2.6 1.1-.8 2.2-1.4 3.4-2 .6-.3 1.2-.5 1.8-.7.6-.2 1.3-.4 1.9-.5-1.2.5-2.4 1-3.5 1.6-1.1.6-2.2 1.3-3.3 2-1 .7-2 1.6-2.9 2.4-.9 1-1.8 2-2.5 3m-1.9-14.4c.3-.9.8-1.8 1.4-2.6.6-.8 1.3-1.5 2.1-2.1.8-.6 1.7-1.1 2.7-1.5 1-.4 2-.6 3-.6-1.9.5-3.7 1.3-5.3 2.5-.8.6-1.5 1.2-2.1 1.9-.6.8-1.2 1.5-1.8 2.4m-2-6.8c-.4-1.4-.7-2.8-1.2-4.2-.5-1.4-1.1-2.6-2-3.8.6.4 1.1 1 1.6 1.6.4.6.7 1.3 1 2 .2.7.4 1.4.5 2.2.1.7.1 1.5.1 2.2m2.6 39.4c.5-.6 1-1.1 1.6-1.6.6-.5 1.3-.9 1.9-1.3 1.3-.8 2.8-1.4 4.3-1.9s3-.8 4.6-1c.8-.1 1.6-.2 2.3-.3.8-.1 1.6-.1 2.3-.1-.8.1-1.5.2-2.3.4-.8.1-1.5.3-2.3.4-1.5.3-3 .7-4.5 1.1-1.5.5-2.9 1-4.3 1.7-1.2.7-2.5 1.5-3.6 2.6" fill="#75a843"/></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><circle cx="32" cy="31" fill="#699635" r="2.8"/><path fill="#7bb246" d="M3.8 40c-5.9 9.8 4.3 12.8 8.8 9.5-3.4 5-.1 14.4 9.7 8.7 10.9-6.4 7.9-24.5 8.5-26.6-1.8.3-20.7-2.1-27 8.4"/><path fill="#699635" d="M12.6 49.5c1.4-1.6 2.9-3.1 4.3-4.7l4.5-4.5c1.5-1.5 3-3 4.6-4.4l2.3-2.2 2.4-2.1-2.1 2.4-2.2 2.3-4.5 4.5c-1.5 1.5-3 3-4.6 4.4-1.5 1.5-3 2.9-4.7 4.3"/><path fill="#7bb246" d="M60.2 22c5.9-9.8-4.3-12.8-8.8-9.5 3.4-5 .1-14.4-9.7-8.7-10.9 6.4-7.9 24.5-8.5 26.6 1.8-.3 20.7 2.1 27-8.4"/><path fill="#699635" d="M51.4 12.5c-1.4 1.6-2.9 3.1-4.3 4.7l-4.5 4.5c-1.5 1.5-3 3-4.6 4.4l-2.3 2.2-2.4 2.1 2.1-2.4 2.2-2.3 4.5-4.5c1.5-1.5 3-3 4.6-4.4 1.5-1.5 3-2.9 4.7-4.3"/><path fill="#83bf4f" d="M22.3 3.8c-10-5.8-13 4.2-9.7 8.7-5-3.3-14.6-.1-8.8 9.5 6.5 10.7 24.9 7.8 27 8.3-.3-1.7 2.2-20.3-8.5-26.5"/><path fill="#699635" d="M12.6 12.5c1.6 1.4 3.2 2.8 4.7 4.2 1.6 1.4 3.1 2.9 4.6 4.4l4.5 4.5 2.2 2.3 2.1 2.4-2.4-2.1-2.3-2.1c-1.6-1.4-3.1-2.9-4.6-4.4l-4.5-4.5c-1.4-1.6-2.9-3.1-4.3-4.7"/><path fill="#83bf4f" d="M41.7 58.2c10 5.8 13-4.2 9.7-8.7 5.1 3.3 14.6.1 8.8-9.5-6.5-10.7-24.9-7.8-27-8.3.3 1.7-2.2 20.3 8.5 26.5"/><path d="M51.4 49.5c-1.6-1.4-3.2-2.8-4.7-4.2-1.6-1.4-3.1-2.9-4.6-4.4l-4.5-4.5-2.2-2.4-2.1-2.4 2.4 2.1 2.3 2.2c1.6 1.4 3.1 2.9 4.6 4.4l4.5 4.5c1.4 1.6 2.9 3.1 4.3 4.7M32 36.8l2.5 22.7c.1 1.3-.9 2.4-2.2 2.5-1.4.1-2.6-.8-2.8-2.1v-.5L32 36.8" fill="#699635"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#83bf4f" d="M59.3 33.6c-1.1-.5-1.1-1.4-1-2.1l2.6-9.1-8.7 1.8c-.3 0-1.1 0-1.6-1.7l-.8-3.1-6 7s-3.9 4.3-2.7-2.2l2.6-13.9-4.8 2.4c-.3.1-1.2.2-2.5-2.2L32 2l-4.4 8.4c-1.3 2.4-2.2 2.3-2.5 2.2l-4.8-2.4 2.6 13.9c1.2 6.5-2.7 2.2-2.7 2.2l-6-7-.8 3.1c-.4 1.7-1.3 1.8-1.6 1.7l-8.7-1.8 2.6 9.1c.1.7.1 1.6-1 2.1L2 34.8s10 8 13.2 10.7c.6.5 2.2 2.1 1.6 3.7l-1.2 3.6 13.6-2.1c.7-.1 4.6-.1 5.3 0l13.6 2.1-1.2-3.6c-.5-1.7 1-3.2 1.6-3.7C52 42.8 62 34.8 62 34.8l-2.7-1.2"/><path fill="#75a843" d="M56.8 35.5c-1.8.1-3.5.2-5.3.3-2.9.1-5.8.2-8.8.2 1.3-.9 2.5-1.9 3.8-2.8l7.3-5.3 3.6-2.7c1.2-.9 2.4-1.8 3.5-2.9-1.1 1-2.4 1.8-3.6 2.7l-3.7 2.5-7.2 4.7c.5-1.9 1-3.9 1.5-5.8l1-3.5c.3-1.2.7-2.4 1.1-3.5-.5 1.1-.9 2.3-1.4 3.4l-1.2 3.5c-.8 2.3-1.5 4.5-2.2 6.8-2.2 1.5-4.4 2.9-6.6 4.4-1.2.9-2.5 1.7-3.7 2.6-.6.4-1.2.9-1.8 1.4l-.4-13.9c1.4-3.1 3-6.1 4.9-8.9 1.9-2.9 4-5.8 6.3-8.5-2.4 2.6-4.6 5.4-6.7 8.2-1.6 2.3-3.2 4.7-4.5 7.2L32 4.3l-.6 21.3c-1.3-2.5-2.9-4.9-4.5-7.2-2.1-2.9-4.3-5.6-6.7-8.2 2.3 2.7 4.3 5.6 6.3 8.5 1.8 2.9 3.5 5.8 4.9 8.9L31 41.4c-.6-.5-1.2-.9-1.8-1.4-1.2-.9-2.5-1.8-3.7-2.6-2.2-1.5-4.4-3-6.6-4.4-.7-2.3-1.4-4.5-2.2-6.8l-1.2-3.5c-.4-1.1-.8-2.3-1.4-3.4.5 1.1.8 2.3 1.1 3.5l1 3.5c.5 1.9 1 3.9 1.5 5.8l-7.2-4.7L6.8 25c-1.2-.9-2.5-1.7-3.6-2.7 1.1 1.1 2.3 2 3.5 2.9l3.6 2.7 7.3 5.3c1.3.9 2.5 1.9 3.8 2.8-2.9 0-5.8-.1-8.8-.2-1.8-.1-3.5-.2-5.3-.3-1.8-.2-3.5-.3-5.2-.7 1.7.5 3.5.7 5.2 1 1.8.2 3.5.4 5.3.6 3.4.3 6.7.5 10.1.7.7.5 1.4 1 2.1 1.6 1.1.9 2.2 1.7 3.3 2.6-1.9 1.9-3.7 3.8-5.6 5.7-1.1 1.1-2.1 2.1-3.2 3.1s-2.2 2-3.4 2.8c1.3-.8 2.5-1.7 3.6-2.7 1.1-1 2.3-1.9 3.4-2.9 2-1.8 4-3.7 6-5.4.4.3.8.6 1.1 1 .4.4.8.8 1.1 1.2L30.5 62h3L33 44.1c.3-.4.7-.8 1.1-1.2.4-.3.7-.7 1.1-1l6 5.4c1.1 1 2.2 2 3.4 2.9 1.2.9 2.3 1.9 3.6 2.7-1.2-.8-2.3-1.8-3.4-2.8-1.1-1-2.2-2.1-3.2-3.1-1.9-1.9-3.7-3.8-5.6-5.7 1.1-.9 2.2-1.8 3.3-2.6.7-.5 1.4-1 2.1-1.6 3.4-.2 6.7-.4 10.1-.7 1.8-.2 3.5-.3 5.3-.6 1.8-.2 3.5-.4 5.2-1-1.7.4-3.5.6-5.2.7"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#ffd93b" d="M56.5 31.3c0-.5.1-.9.3-1.3-1.9-1.1-3-2.7-3-4.5.1-2.8 3.3-5.1 7.4-5.5 1-9.4.8-17 .8-17S24.9 1.7 11.4 14.7l-.7.7c2 1.2 3.3 3.2 3.3 5.5 0 3.7-3.5 6.8-7.8 6.8-1.3 0-2.5-.3-3.6-.8-3.9 11.7 12 15.1 15.5 18.5 4.5 4.3 9 28.4 31.7 6.5 4.1-4 6.9-10.2 8.7-16.8-1.2-1-2-2.3-2-3.8"/><path fill="#db9523" d="m24.5 40.9 4.6-4.6 19 11.7-18.3-12.5 7.6-7.6 17 7.5-16.3-8.3 7.1-7.2 12.9-.6-11.9-.4L62 3 45.5 18.2l-.4-11.5-.6 12.5-7.4 6.9-8.6-15.8 7.8 16.5-8 7.3-12.9-17.6 12.2 18.3-4.8 4.4-12.9-7.6 12.2 8.3L9.6 51.4l2.3 2.2 11.9-12 8.6 11.7z"/></svg>

After

Width:  |  Height:  |  Size: 616 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#83bf4f" d="M28.6 38.4c-15.4 2.8-6.9 10.5-6.4 13.2.5 2.7-4.9 12.7 10.6 9.9C48.9 58.6 53.6 43 53.6 43s-19.7-5.6-25-4.6"/><path fill="#699635" d="m25.9 50.4 3.1-.6.7-9.8-.1 9.7 5.4-1.2 1-8-.5 7.9 4.7-1.2 3.1-4.6-2.4 4.5L53.6 43 41 47.6l5.3 3.1-6-3-4.7 1.3 4.5 7.2-5-7-5.4 1.4 3.5 9-4-8.9-3.1.7-.6 6.6.1-6.5-8.2 1.8-.3-1.4 8.3-1.5-2.4-6z"/><path fill="#42ade2" d="M20.5 49.8c-2.7-1-5.2-2.9-7-5.4-1.8-2.5-2.8-5.6-3-8.7-.1-1.6-.1-3.1.2-4.7.3-1.6.7-3.1 1.3-4.6 1.2-3 3-5.7 5.3-7.9.3-.3.6-.5.9-.8l.5-.4.4-.3c.6-.5 1.3-1 1.9-1.4 1.3-.9 2.7-1.7 4.2-2.3 3-1.2 6.2-1.9 9.5-1.9 3.3.1 6.6.9 9.6 2.6 1.5.9 2.9 2.1 4 3.6s1.9 3.4 2 5.4c.1 2-.5 3.9-1.4 5.5-.9 1.6-2.1 2.8-3.3 3.9-2.5 2.2-5.6 3.7-8.9 4.2-1.7.2-3.4.2-5.1-.2-1.7-.4-3.4-1.2-4.7-2.7-1.3-1.4-2-3.4-1.9-5.2 0-1.8.5-3.4 1.2-4.9 1.4-2.9 3.4-5.2 5.5-7.3 2.1-2.1 4.4-3.9 6.8-5.6 4.8-3.4 9.8-6.2 15.1-8.7-4.8 3.2-9.6 6.5-13.9 10.2-2.2 1.8-4.2 3.8-6.1 5.9-1.8 2.1-3.5 4.4-4.4 6.8-.5 1.2-.7 2.4-.7 3.5.1 1.1.5 2 1.2 2.7 1.4 1.4 4 1.8 6.3 1.3 2.4-.5 4.7-1.7 6.4-3.4 1.8-1.8 2.9-3.9 2.6-5.6-.2-1.8-1.6-3.5-3.6-4.6-2-1.2-4.5-1.7-6.9-1.8-5-.1-10.1 1.9-14 5.2-1.9 1.7-3.6 3.7-4.8 6-.6 1.2-1.1 2.4-1.4 3.6-.4 1.3-.6 2.6-.7 3.9-.1 2.6.3 5.3 1.4 7.8 1.2 2.4 3.1 4.6 5.5 6.3"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#e84d88" d="M54.7 13.7c-3.2-3.1-7-5.8-10.7-7.8-.2 5.6-5.5 10-12 10s-11.8-4.5-12-10c-3.8 2-7.6 4.7-10.7 7.8 2.1 3.3 1.1 8.8-2.3 12.8-1.5 1.7-3.2 2.9-4.9 3.4C3 47.4 16 46.7 32 46.7c16 0 29 .7 29.9-16.8-1.7-.6-3.4-1.7-4.9-3.4-3.4-4-4.4-9.6-2.3-12.8"/><path d="M32 15.9c6.5 0 11.8-4.5 12-10C39.4 3.4 35 2 32 2s-7.4 1.4-12 3.9c.2 5.5 5.5 10 12 10M9.3 13.7C5 17.8 2 22.8 2 27.9c0 .7 0 1.4.1 2.1 1.7-.6 3.4-1.7 4.9-3.4 3.4-4.1 4.4-9.7 2.3-12.9m45.4 0c-2.1 3.3-1.1 8.8 2.3 12.8 1.5 1.7 3.2 2.9 4.9 3.4 0-.7.1-1.3.1-2.1 0-5-3-10-7.3-14.1" fill="#fdeeff"/><path fill="#a52355" d="M50 41.5c0 4.3-8.1 5.2-18 5.2s-18-.9-18-5.2c0-4.2 8.6-8.1 18-8.1 9.4.1 18 3.9 18 8.1"/><path fill="#e2ccaf" d="M47 64H17s2.8-8.2 3.7-14.9c1-7.6 1.5-13.9 11.3-13.9s10.3 6.3 11.3 13.9C44.2 55.8 47 64 47 64z"/></svg>

After

Width:  |  Height:  |  Size: 855 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#ef4d3c" d="M62 31.6C62.8 47 48.9 60 32.1 60S.4 46.2 2.1 30.9C4.5 9.4 20.4 8 32.1 8 39.2 8 60.2 1.8 62 31.6z"/><path fill="#8cc63e" d="M11 27c6.2-9.6 16.8-6.8 19.6-10.4 0 6.9 5 3.5 7.5 6.6 3.2 4 4.4 11.1 8.2 12.5-3.7-7.9 2.3-7.6-6.1-18.2 4.5 2.8 6.8 0 12.9 2.5-5.3-8.4-13.6-6-13.6-6s5.2-4.8 9.6-2.3c-4.6-6.8-17.9 1.8-17.9 1.8s-5.5-9.4-17.3.5c6.9-2.8 14.5 0 14.5 0S15.9 10.9 11 27"/><g fill="#64892f"><path d="M11 27s7.3-13.5 19.9-12.3C19.8 9.6 11 20.4 11 27z"/><path d="M13.9 14s9.2-6.9 17.3 0c-2.4-8.4-14.7-4.5-17.3 0m19.3.9c12.2 5.6 8.1 12 13.1 21-3.4-7.5 5-21-13.1-21"/><path d="M28.4 14s2.8-4.2 3.8-9.4c.1-.7 3.1-.6 3 .1-1 6.7 1.7 10.4 1.7 10.4s-2.1.7-4.7.7c-2.6.1-3.8-1.8-3.8-1.8"/></g><ellipse cx="33.7" cy="4.6" fill="#8cc63e" rx="1.5" ry=".6"/></svg>

After

Width:  |  Height:  |  Size: 830 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#7a2d77" d="M53.4 34.4c-7.6-9.1-19.5-10.3-30.6-21.1-6.7-6.5-18.5 6.4-15.3 12.6 4.3 8.2 14.2 23.9 23.1 30.8 19.1 14.7 38.2-3.9 22.8-22.3"/><path d="M10 27.9c2.2-2.6 1.6-6.9 1.6-6.9s1.7 2 4.2 2l.2-4.4s3.8-.1 7.1-3.8l-11.2-.4L8 20.8l2 7.1" opacity=".15"/><g fill="#83b730"><path d="m10.9 12.5-.9 1.6C7.6 12.5 4.2 8.1 7.6 2l1.5 1c-3.1 5.5 1.3 9.1 1.8 9.5"/><path d="M17.2 16.2c3.8.4 7.3-2.6 7.3-2.6s-2.6-3.6-6.5-4c-3.8-.4-7.1.7-7.3 2.5-.2 1.9 2.7 3.7 6.5 4.1m-12.1 4c-.5 4 2 7.5 2 7.5s3.2-2.9 3.7-6.9-.4-7.3-2-7.5c-1.6-.1-3.2 3-3.7 6.9"/></g><path fill="#8cc63e" d="M8.7 18c2.5 3.5 7.9 3.5 7.9 3.5s1.2-5.7-1.3-9.3c-2.5-3.5-6.1-5.1-7.9-3.5-1.9 1.6-1.3 5.7 1.3 9.3"/></svg>

After

Width:  |  Height:  |  Size: 739 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path d="M38.8 22.1c5.8-4.7-.8-18.4-.8-18.4s-.6 2.6-2 5.8C30.8 4.6 22.6 2 22.6 2s4.4 6.7 5.5 14.9c-3.5 0-6.2-.9-6.2-.9s9.2 12.4 16.9 6.1m9.5 18.5c-5.5 5.1-3 14.6-3 14.6s1-2.2 2.8-5.1c3 2.8 8.9 3.1 8.9 3.1s-2.1-4.4-1.3-10.8c2.7-.7 4.6-.6 4.6-.6s-4.7-8-12-1.2" fill="#8cc63e"/><g fill="#843dc9"><ellipse cx="44.7" cy="23" rx="6.6" ry="6.9"/><ellipse cx="25.3" cy="26" rx="6.1" ry="6.4"/><ellipse cx="30.9" cy="55.6" rx="6.1" ry="6.4"/><ellipse cx="42.8" cy="48.5" rx="4.7" ry="4.9"/></g><ellipse cx="35.4" cy="27.8" fill="#ab7dcc" rx="8" ry="8.4"/><g fill="#6f43a3"><ellipse cx="29.4" cy="36.3" rx="7" ry="7.4"/><ellipse cx="43.4" cy="37.9" rx="7" ry="7.4"/></g><ellipse cx="19.2" cy="39.8" fill="#843dc9" rx="8.9" ry="9.3"/><ellipse cx="22" cy="51.7" fill="#6f43a3" rx="6.1" ry="6.4"/><path fill="none" stroke="#9fc427" stroke-miterlimit="10" stroke-width="2" d="M15.1 49.8c6.8-4.5 33.7-16.5 38.7-34.7"/><g fill="#ab7dcc"><ellipse cx="32" cy="44.7" rx="8.3" ry="8.7"/><path d="M18.3 52.2c0 4.7-3.6 8.5-8.1 8.5s-8.1-3.8-8.1-8.5 3.6-8.5 8.1-8.5c4.4 0 8.1 3.8 8.1 8.5"/><ellipse cx="53.3" cy="32.1" rx="8.7" ry="9.1"/></g></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#f5f0ae" d="M61.3 29.2C57.8 14.7 41.8 5.4 25.6 8.6 9.4 11.8-.8 26.2 2.7 40.8c3.5 14.6 19.5 23.8 35.7 20.6 16.2-3.2 26.4-17.6 22.9-32.2"/><path d="M29.3 8.3c-.2-.1-.3-.1-.5-.2-1.1.1-2.1.3-3.2.5s-2.1.5-3.1.8c-.1.1-.3.2-.4.4 1.3.5 2.7 1.1 4.2 1.8 1-1.2 2.1-2.3 3-3.3m-5.9 8.5 4.8 2.7 3.2-4.3-4.8-2.5zm1.9 9 5.3 3.3 3.2-5-5.2-3.1zm2.4 10.1 5.3 3.4 3.3-5.1-5.3-3.5zm11 8.3-5.3-3.3-3.2 5 5.2 3.2zm1.9 9.1-4.8-2.8-3.2 4.3 4.8 2.5zm-5.9 8.4c.2.1.3.1.5.2 1.1-.1 2.2-.3 3.2-.5s2.1-.5 3.2-.8c.1-.1.2-.2.4-.3-1.3-.5-2.7-1.1-4.2-1.8-1.1 1.1-2.1 2.2-3.1 3.2m-1.1-47.6 2.8-3.7-4.7-2-2.9 3.3zM31 19.7l5.2 3.2 2.9-4.5-5.1-3zm10.8 8.1-5.2-3.3-3.2 4.9 5.3 3.4zm2.5 10.1-5.2-3.4-3.2 5.1 5.2 3.3zm1.9 9.6-4.8-3-3.2 4.8 4.8 2.8zm-3 5.9-3.3 4 4.2 1.9 3.4-3.6zM38.9 8.7c-1.4-.3-2.8-.5-4.2-.6 1.2.5 2.3 1 3.5 1.5.2-.3.5-.6.7-.9m-3 5.7 5.1 2.9 2.6-3.9-5-2.7zm2.7 8.9 5.1 3.3 2.8-4.6-5.1-3.2zm5.6 4.9-3.1 5 5.1 3.4 2.9-5zm7 13.2-4.7-3.2-3.1 5 4.7 3zm1.3 8.9-4.1-2.6-3.3 4.5 4.2 2.4zm-5.6 8.1c1.2-.6 2.4-1.4 3.5-2.1-.3-.2-.7-.4-1.1-.5-.7.9-1.5 1.8-2.4 2.6m-.5-47.1c-1.7-.8-3.4-1.5-5.2-2-.1.2-.3.4-.4.6 1.6.8 3.3 1.7 4.9 2.7.1-.5.4-.9.7-1.3m-.3 2.5-2.5 3.9 4.9 3.3 2.3-4.1zm7.5 12L49 22.5 46.4 27l4.8 3.4zm-2 6.2-2.8 4.9 4.5 3.1 2.6-4.8zm5.9 12.4-3.9-2.8-3 4.8 4 2.6zm-5.9 10.2c.2.1.4.2.7.4 1.4-1.2 2.7-2.4 3.8-3.8-.4-.3-.8-.5-1.3-.8-1.1 1.4-2.1 2.8-3.2 4.2m1-39.2c-1.4-1.2-2.9-2.2-4.5-3.2-.2.3-.3.5-.5.8 1.6 1 3.1 2 4.6 3.1.2-.2.3-.4.4-.7m2.5 9.5 1.8-4-4.2-3.4-2.1 4zm4.2 4.7-3.8-3.3-2.3 4.5 4.2 3.3zm-4.1 10.7 3.8 2.8 2.2-4.6-3.5-2.9zm1.2 8.8c.3.2.5.3.8.5 1-1.4 1.9-3 2.6-4.6-.2-.2-.4-.3-.7-.5-.8 1.6-1.7 3.1-2.7 4.6m4.5-21.2c-.6-2-1.5-3.9-2.5-5.7-.4 1-.8 2-1.3 3.1 1.3 1.1 2.5 2.2 3.6 3.3.1-.2.1-.5.2-.7m.7 2.7L61 30c-.5 1.4-1.1 2.8-1.7 4.3.9.8 1.8 1.6 2.6 2.3.2-1.9.1-3.9-.3-6m-40.8-14 3.2-4-4.1-1.9-3.4 3.6zm-3 5.9 4.8 3 3.2-4.8-4.8-2.8zm1.9 9.6 5.2 3.4 3.2-5.1-5.2-3.3zm10.9 8.5-5.3-3.5-3.1 5 5.2 3.4zm2.4 9.6-5.2-3.1-2.9 4.5 5.1 3zm-2.7 5.7-2.8 3.6 4.8 2.1 2.9-3.3zM17 11.6c-1.2.6-2.4 1.3-3.4 2.1.3.2.7.3 1 .5.8-.9 1.6-1.8 2.4-2.6m-5.5 8.1 4.1 2.6 3.3-4.6-4.2-2.3zm1.3 8.9 4.6 3.2 3.2-5-4.7-3.1zm7 13.1 3.1-4.9-5.1-3.4-2.9 4.9zm5.6 5-5.1-3.4-2.8 4.6 5.1 3.3zm2.7 8.9-5.1-3-2.6 4 5 2.6zm-3 5.7c1.4.3 2.9.5 4.4.6-1.2-.5-2.4-1-3.6-1.6-.3.4-.6.7-.8 1M12.4 15.4c-.2-.1-.4-.2-.6-.4-1.4 1.2-2.7 2.4-3.8 3.8.4.3.8.5 1.3.8 1-1.4 2-2.8 3.1-4.2M6.5 25.6l3.9 2.8 3-4.8-4-2.6zM12.4 38l2.8-4.9-4.5-3.2-2.6 4.8zm5.2 5-4.8-3.4-2.4 4.5 4.6 3.4zm.3 13.2 2.5-3.9-5-3.3-2.2 4zm-.3 2.5c1.7.8 3.4 1.5 5.2 2 .2-.2.3-.4.5-.6-1.6-.8-3.3-1.7-4.9-2.7-.3.5-.5.9-.8 1.3m-10-37.8c-.3-.2-.5-.3-.8-.5-1 1.4-1.9 3-2.6 4.6.2.2.4.3.7.5.8-1.6 1.7-3.1 2.7-4.6m1.2 8.8L5 26.8l-2.2 4.7 3.5 2.9zM4.7 40.3l3.8 3.3 2.3-4.5-4.2-3.2zm4.2 4.8-1.8 4 4.1 3.4 2.2-4zm2.4 9.5c1.4 1.2 2.9 2.3 4.5 3.2.2-.3.3-.5.5-.8-1.6-1-3.1-2-4.6-3.1-.1.2-.2.4-.4.7M2.1 33.3c-.1 2 0 4 .3 6.1l.6.6c.5-1.4 1.1-2.8 1.7-4.3-1-.9-1.8-1.7-2.6-2.4m1 8.8c.6 2 1.5 3.9 2.5 5.7.4-1 .8-2 1.3-3.1-1.3-1.1-2.5-2.2-3.6-3.3-.1.2-.2.4-.2.7" fill="#d0d18b"/><path fill="#8cc63e" d="M35.6 11.8H24.3c.6-.7 2.7-1.7 6.2-1.7 3.1 0 5.1.8 5.1 1.7"/><g fill="#64892f"><path d="M35.6 11.8c.1 1-2.5 2.5-5.7 2.8-3.2.3-5.9-.8-6-1.7-.1-1 1.4-3 6.1-1.5 3.1 1 5.6-.5 5.6.4"/><path d="M29.3 12.5C28.7 9 28.1 8 27.4 6.7c-.2-.4-.5-.9-.8-1.5l1.9-1 .7 1.4c.8 1.5 1.5 2.6 2.1 6.5l-2 .4"/></g><g fill="#8cc63e"><path d="m26.6 5.5 2.2.2c.8 1.5-.2 3 .5 6.9 0-.1-2-5.8-2.7-7.1"/><path d="M32 6.4c-2.5.2-5-.3-7.7-.9-3-.7-6.8-1.3-10.6-1.3-1.6 0-1.7-2.2-.1-2.2 4.9 0 8 .6 11.1 1.3 3.7.8 6.8 1.6 9.9.2l.7 2c-1.1.6-2.2.8-3.3.9"/></g><ellipse cx="34.9" cy="4.6" fill="#ceff80" rx=".7" ry="1.1" transform="rotate(-19.78 34.927 4.607)"/></svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#f55" d="M2.1 50.3c16.2 15.6 43.6 15.6 59.8-.1L32 2 2.1 50.3z"/><path fill="#ceff80" d="m6 44-1.1 1.6c11.8 10.4 36.8 14.5 54.3-.1L58 44C42.9 55.5 21.1 55.5 6 44z"/><path fill="#8cc63e" d="M4.9 45.6 2 50.2c16.2 15.7 43.7 15.7 60-.1l-2.8-4.6C43.7 58 20.3 58 4.9 45.6z"/><path d="M16 38.5c0-1.3 2.4-4.6 2.4-4.6s2.5 3.4 2.5 4.7c0 1.3-1 2.3-2.4 2.3S16 39.8 16 38.5m12.4 4.6c0-1.3 2.4-4.6 2.4-4.6s2.5 3.4 2.5 4.7c0 1.3-1 2.3-2.4 2.3s-2.5-1.1-2.5-2.4m8.1-11.6c0-1.3 2.4-4.6 2.4-4.6s2.5 3.4 2.5 4.7c0 1.3-1 2.3-2.4 2.3s-2.5-1.1-2.5-2.4m8.2 11c0-1.3 2.4-4.6 2.4-4.6s2.5 3.4 2.5 4.7c0 1.3-1 2.3-2.4 2.3-1.4-.1-2.5-1.1-2.5-2.4M27.2 20.9c0-1.3 2.4-4.6 2.4-4.6S32 19.7 32 21c0 1.3-1 2.3-2.4 2.3-1.3-.1-2.4-1.1-2.4-2.4" fill="#3e4347"/><path d="M28.2 54.7v7.1c2.5.2 5 .2 7.5 0v-7.1c-2.4.2-5 .2-7.5 0m-17.6-5.3-2.2 5.8c2.1 1.4 4.4 2.5 6.7 3.5l2.3-6.2c-2.3-.8-4.6-1.9-6.8-3.1m42.8 0c-2.2 1.2-4.5 2.3-6.9 3.1l2.3 6.2c2.3-1 4.6-2.1 6.7-3.5l-2.1-5.8" fill="#64892f"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#628c2c" d="m30.2 11.5.2-1.2s3.6 2.1 7.8.7l.2.8c-4.5 1.5-8.1-.2-8.2-.3"/><ellipse cx="27.9" cy="38.1" fill="#f29a2e" rx="25.9" ry="23.9"/><path fill="#7fb539" d="M22 18.9c.2-1.2 4.7-.6 4.7-.6s-.2-3 .6-3.2c.7-.1 2 2.9 2 2.9s3.6-1.4 4.1-.5c.4.8-2.5 2.6-2.5 2.6s3.8 3.1 3 4.1C33.1 25.3 29 22 29 22s-2.6 4.4-3.7 3.8c-1.1-.6.9-5 .9-5s-4.4-.7-4.2-1.9"/><path d="m18.6 29.1-.8.8.8.8.8-.8-.8-.8m-6-.5-.8.8.8.8.8-.8-.8-.8m-4.8 0-.8.8.8.8.7-.8-.7-.8M22 32.4l-.8.8.8.8.7-.8-.7-.8m-3.4 4.1-.8.8.8.8.8-.8-.8-.8m-5.2 0-.8.8.8.8.7-.8-.7-.8m-6 .5-.8.8.8.8.8-.8-.8-.8m8.6-4.4-.8.8.8.8.8-.8-.8-.8m-5.2 0-.8.8.8.8.7-.8-.7-.8m-5.3 0-.8.8.8.8.8-.8-.8-.8m15.9-7-.8.8.8.8.8-.8-.8-.8m-5.8 0-.8.8.8.8.8-.8-.8-.8m-5.6-.8-.8.8.8.8.8-.8-.8-.8m9.2-2.3-.8.8.8.8.8-.8-.8-.8m-2.2-3-.8.8.8.8.8-.8-.8-.8m-3.6 2.2-.8.8.8.8.7-.8-.7-.8M16 40.5l-.8.8.8.8.8-.8-.8-.8m-5.5 0-.8.8.8.8.7-.8-.7-.8" fill="#ffc44a"/><path fill="#8cc63e" d="M47.4 6.2c6.5 5.4 14.6 3.9 14.6 3.9s-13.1 16.5-24 9.7c-10.2-6.3 0-21.4 9.4-13.6"/><path fill="#628c2c" d="m30.5 2.8-1.9.9c2.9 9.3-.7 14.5-1.5 15.4-1.2 1.2 1.6 2.3 2.9.6.2-.3 4-5.9.5-16.9"/><ellipse cx="29.6" cy="3.3" fill="#8cc63e" rx="1" ry="1.3"/><path fill="#7fb539" d="M33.8 11.8c1-.7 2.1-1.3 3.3-1.7 1.2-.4 2.4-.6 3.7-.6 2.5 0 4.9.7 7.2 1.3 2.3.6 4.7 1 7 .9 2.4-.1 4.7-.8 7-1.7-1 .6-2.2 1.1-3.3 1.6-1.2.4-2.4.7-3.6.8-2.5.3-5-.1-7.3-.7-2.4-.6-4.6-1.4-7-1.5-2.4-.1-4.8.5-7 1.6"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#77a836" d="M28.2 4.6C21 1.3 16 11.5 16 11.5s2.1 4.7 5.3 5.7c11.6 3.5 21.6-12 21.6-12s-7.6 2.7-14.7-.6"/><path fill="#947151" d="M9 7.9c-.4 0-.5 1.5-.1 1.5 6.4 1.4 9 6.1 9.2 7 .3 1.2 2.1-.1 1.5-1.6-.2-.2-3.9-6.1-10.6-6.9"/><path fill="#64892f" d="M57.8 57.8c.3.3 1.5.6 2.1 0 .6-.6.3-1.9 0-2.2-.3-.3-1 0-1.5.6-.6.7-.8 1.4-.6 1.6"/><path fill="#ffe62e" d="M17.3 19.1c-.5-.7.1-2.3 1.5-3.8 1.4-1.4 3-2.1 3.7-1.6 8.4-5.4 21.2-2.9 30.4 6.6 8.2 8.5 11.1 20 7.8 28.6 1.6 2.1 1.1 5.7-1.4 8.3-2.5 2.6-6 3.2-8 1.5-8.3 3.3-19.4.4-27.6-8.1C14.5 41 12 27.8 17.3 19.1"/><path fill="#8cc63e" d="M18.7 16.1C17.2 11.9 11 9.5 11 9.5s-12.6 7.1-8 16.3C7.5 34.9 4.6 45 4.6 45s19.2-14 14.1-28.9z"/><path fill="#7fb539" d="M11 9.5c-.9 1.2-1.7 2.5-2.3 3.9-.6 1.4-1 3-1.2 4.6-.4 3.2 0 6.3.2 9.4.3 3 .3 6.1-.2 9.1s-1.6 5.9-2.9 8.6c.8-1.2 1.5-2.6 2.2-4 .6-1.4 1.1-2.9 1.5-4.4.7-3.2.7-6.4.4-9.5-.3-3.1-.7-6.2-.4-9.2.2-3 1.3-5.9 2.7-8.5"/></svg>

After

Width:  |  Height:  |  Size: 987 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#f2eacc" d="M46.6 42.2c-6.5 9.4-16.8 1.2-10.3-8.2C48.1 22.7 47.8 6.6 52.2 6c5.6-.7 9.8 16-5.6 36.2"/><path fill="#9c6525" d="m5.5 40.7-3.5 3c.9 1.3 1.8 2.6 2.9 3.8 1.7-1.4 3.6-3.2 4.9-5-1.5-.4-3-1-4.3-1.8"/><path fill="#fee801" d="M34.2 20.1c-7.2-1.8-11.9 3.2-11.9 3.2 6.8-3.6 16.8 4.6 15.4 7.3-5.1 9.2-15.2 14.5-25.7 12.5-.8-.1-1.5-.3-2.2-.6-1.3 1.7-3.2 3.6-4.9 5 14.1 7 30.9 2.9 38.1-11.3 2.9-5.7-2.7-14.5-8.8-16.1"/><path fill="#e5c900" d="M62 43.2s-1.4-5.7-8.2-8.4C47.2 32.1 43 36.2 43 36.2c-5.4 9.7-16 15.2-27 13.1-3.3-.6-6.3-1.9-9-3.7-.7.7-1.4 1.3-2.1 1.9 3.8 4.3 8.9 7.4 14.8 8.6 9.3 1.8 18.3-1.6 24.4-8.3C53.5 35.9 62 43.2 62 43.2"/><path fill="#fee801" d="M62 43.2c.2 5.3-3.7 13.7-10.3 14.8-6.7 1.1 8.4-19.9-1.7-24.1 0 0 11.6 0 12 9.3"/><path fill="#e5c900" d="M35.9 20.8C21.1 14.6 16 33.4 23.5 31.2c2.6-.8 4.2-6.4 12.4-10.4"/></svg>

After

Width:  |  Height:  |  Size: 914 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><g fill="#64892f"><path d="M16.9 11.2c4.9 4.9 5.7 8.2 4.1 9.8-1.6 1.6-4.9.8-9.8-4.1C6.3 12 3.3 3.3 3.3 3.3s8.7 3 13.6 7.9"/><path d="M23.7 14.1c2.9 6.3 2.5 9.7.5 10.6-2 .9-4.9-.9-7.8-7.2C13.5 11.2 13.6 2 13.6 2s7.2 5.8 10.1 12.1"/><path d="M29.6 21.2c-2.9 6.3-5.7 8.2-7.7 7.2-2-.9-2.5-4.3.4-10.6s10-12.2 10-12.2.2 9.4-2.7 15.6"/><path d="M26.9 18c-.4 6.9-2.4 9.7-4.6 9.6-2.2-.1-3.9-3.1-3.5-10 .4-6.9 4.9-15 4.9-15S27.3 11 26.9 18"/><path d="M33.2 24c-4.4 5.3-7.7 6.4-9.4 4.9-1.7-1.4-1.2-4.8 3.2-10.1s12.9-9.1 12.9-9.1-2.2 9-6.7 14.3"/><path d="M14.1 23.7c6.3 2.9 9.7 2.5 10.6.5.9-2-.9-4.9-7.2-7.8C11.2 13.5 2 13.6 2 13.6s5.8 7.2 12.1 10.1"/><path d="M21.2 29.6c6.3-2.9 8.2-5.7 7.2-7.7-.9-2-4.3-2.5-10.6.4s-12.2 10-12.2 10 9.4.2 15.6-2.7"/><path d="M18 26.9c6.9-.4 9.7-2.4 9.6-4.6-.1-2.2-3.1-3.9-10-3.5s-15 4.9-15 4.9S11 27.3 18 26.9"/><path d="M24 33.2c5.3-4.4 6.4-7.7 4.9-9.4-1.4-1.7-4.8-1.2-10.1 3.2S9.7 39.9 9.7 39.9s9-2.2 14.3-6.7"/></g><path fill="#b46137" d="M55.9 31.2c8 8 5.8 16.8-1.1 23.6-6.8 6.8-15.7 9.1-23.6 1.1-8-8-14.7-25.8-7.9-32.6 6.8-6.8 24.6-.1 32.6 7.9"/><path d="M47.1 47.1c-1 1-2.1 4.3-1.2 5.2.9.9 4.3-.2 5.2-1.2 1-1 2.1-4.3 1.2-5.2s-4.3.2-5.2 1.2m5.8 5.8c-1 1-1.8 4.6-.9 5.5.9.9 7.4-5.6 6.5-6.5-1-.8-4.7 0-5.6 1M34.8 34.8c-1 1-2.1 4.3-1.2 5.2.9.9 4.3-.2 5.2-1.2 1-1 2.1-4.3 1.2-5.2s-4.2.3-5.2 1.2m6.1 6.1c-1 1-2.1 4.3-1.2 5.2S44 46 45 45s2.1-4.3 1.2-5.2-4.3.2-5.3 1.1M29 29c-1 1-2.1 4.3-1.2 5.2S32 34 33 33s2.1-4.3 1.2-5.2-4.3.2-5.2 1.2zm.1 23c-1.4 1.4-1 5.8 3.6 7 1.2.3 3.5-7.4 2.6-8.4-1.7-1.7-5.3.5-6.2 1.4m7.3 5.7c-3.5 3.5 2.4 5.7 4.7 3.4.9-.9 1.2-3.4.3-4.3-.9-1-4.1 0-5 .9m1.7-8.7c-1 1-2.1 5.1-1.2 6s5.2 0 6.2-1 1.5-4.8.6-5.7c-.8-.9-4.6-.3-5.6.7m6.2 6.2c-1 1-1.8 4.7-.9 5.6 1.7 1.7 4.9.3 5.8-.6 1-1 1.5-4.9.6-5.8-.8-1-4.5-.2-5.5.8M32.2 43.1c-1 1-2.4 4.8-1.5 5.7.9.9 5.1-.1 6.1-1.1s1.8-4.7.9-5.6-4.5 0-5.5 1M20.6 31.3c-1 1-1.4 3.7-.5 4.6.9.9 3.6.5 4.6-.5 1-1 2.1-4.3 1.2-5.2s-4.4.1-5.3 1.1m0 6.8c-.9.9.8 6.5 1.6 5.6.9-.9 2.4-4.7 1.5-5.6s-2.2-.9-3.1 0m3.7 7.2c-1.2 1.2-1.4 6.2 1.8 6.7 1.2.2 4.2-6.4 3.2-7.3-.8-.9-4.1-.2-5 .6m1.9-8.2c-1 1-1.8 4.7-.9 5.6.9.9 4.8.2 5.7-.8 1-1 1.6-4.7.7-5.6s-4.5-.2-5.5.8m25.8-8c1.4-1.4 5.8-1 7 3.6.3 1.2-7.4 3.5-8.4 2.6-1.7-1.7.5-5.3 1.4-6.2m5.7 7.3c3.5-3.5 5.7 2.3 3.4 4.7-.9.9-3.4 1.2-4.3.3-1-.9 0-4.1.9-5M49 38.1c1-1 5.1-2.1 6-1.2s0 5.2-1 6.2-4.8 1.5-5.7.6c-.9-.8-.3-4.6.7-5.6m6.2 6.2c1-1 4.7-1.8 5.6-.9 1.7 1.7.3 4.9-.6 5.8s-4.9 1.5-5.8.6c-1-.8-.2-4.5.8-5.5M43.1 32.2c1-1 4.8-2.4 5.7-1.5.9.9-.1 5.1-1.1 6.1s-4.7 1.8-5.6.9c-.9-.9 0-4.5 1-5.5M31.3 20.6c1-1 3.7-1.4 4.6-.5s.5 3.6-.5 4.6c-1 1-4.3 2.1-5.2 1.2-1-1 .1-4.4 1.1-5.3m6.8 0c.9-.9 6.5.8 5.6 1.7-.9.9-4.7 2.4-5.6 1.5s-.9-2.3 0-3.2m7.2 3.7c1.2-1.2 6.2-1.4 6.7 1.8.2 1.2-6.4 4.2-7.3 3.2-.9-.8-.2-4.1.6-5m-8.2 1.9c1-1 4.7-1.8 5.6-.9s.2 4.8-.8 5.7c-1 1-4.7 1.6-5.6.7-.9-.8-.2-4.5.8-5.5" fill="#e7a74f"/><g fill="#84b234"><path d="M21.9 18.4c3.7 3.7 4.5 6.1 3.6 7-1 1-3.3.2-7-3.6s-6.5-10-6.5-10 6.2 2.9 9.9 6.6"/><path d="M25.7 31.5c3.3-2.7 3.8-4.8 2.7-6.1-1.1-1.3-3.4-1.2-6.7 1.4-3.3 2.7-5.3 8.2-5.3 8.2s6-.8 9.3-3.5"/><path d="M21.4 24.2c4.7 0 6.9 1.2 7.2 2.7.4 1.5-1.3 2.8-6 2.8-4.6.1-10.8-2.7-10.8-2.7s4.9-2.8 9.6-2.8"/><path d="M20.9 20.4c4.8 1.3 6.7 3 6.6 4.5-.1 1.5-2.1 2.1-6.9.8-4.8-1.3-10.4-5.5-10.4-5.5s5.9-1.1 10.7.2"/><path d="M31.5 25.7c-2.7 3.3-4.8 3.8-6.1 2.7-1.3-1.1-1.2-3.4 1.4-6.7 2.7-3.3 8.2-5.3 8.2-5.3s-.8 6-3.5 9.3"/><path d="M24.2 21.4c0 4.7 1.2 6.9 2.7 7.2 1.5.4 2.8-1.3 2.8-6S27 11.7 27 11.7s-2.8 5-2.8 9.7"/><path d="M20.4 20.9c1.3 4.8 3 6.7 4.5 6.6 1.5-.1 2.1-2.1.8-6.9-1.3-4.8-5.5-10.4-5.5-10.4s-1.1 5.9.2 10.7"/></g><path fill="#8cc63e" d="M29.8 22.5c-1.1-2.2-3.3-3.8-3.3-3.8s-.8 1.7-1.2 3.6c-2.1-.9-5.6-2.7-5.6-2.7s1.8 3.5 2.7 5.6c-2 .4-3.6 1.2-3.6 1.2s1.7 2.2 3.8 3.3c-1.6 2.3-2.5 5.5-2.5 5.5s6.2-1.8 9.8-5.4c3.6-3.6 5.4-9.8 5.4-9.8s-3.2.9-5.5 2.5"/></svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#83bf4f" d="M31.4 4.9c1.1 2.5-.5 10.9-.5 10.9s-7.5-4.4-8.6-6.9c-1.1-2.5 0-5.4 2.5-6.5 2.5-1.1 5.5 0 6.6 2.5"/><path fill="#947151" d="M33.3 16.3h-2.6c0-4.3 2.4-11.6 12-11.6v2.6c-8.7 0-9.4 8.2-9.4 9"/><path fill="#ef4d3c" d="M32 15.8C24.7 8.4 3 8.1 3 29.3 3 42.7 18.8 62 25.7 62c3.1 0 4.2-2 6.1-2 1.8 0 2.4 2 6.4 2C45.1 62 61 42.8 61 29.3 61 8.1 39.3 8.4 32 15.8z"/></svg>

After

Width:  |  Height:  |  Size: 443 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#64892f" d="M31.4 4.9c1.1 2.5-.5 10.9-.5 10.9s-7.5-4.4-8.6-6.9c-1.1-2.5 0-5.4 2.5-6.5 2.5-1.1 5.5 0 6.6 2.5"/><path fill="#947151" d="M33.3 16.3h-2.6c0-4.3 2.4-11.6 12-11.6v2.6c-8.7 0-9.4 8.2-9.4 9"/><path fill="#8cc63e" d="M32 15.8C24.7 8.4 3 8.1 3 29.3 3 42.7 18.8 62 25.7 62c3.1 0 4.2-2 6.1-2 1.8 0 2.4 1.9 6.4 1.9C45.1 62 61 42.8 61 29.3 61 8.1 39.3 8.4 32 15.8z"/></svg>

After

Width:  |  Height:  |  Size: 447 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#ced74d" d="M47.6 27.8c-3.8-6.2-3.5-16.7-13.4-16.7s-8.9 10.5-12.6 16.7c-2.7 4.5-8.2 10.6-8.2 17.2 0 22.7 42.5 22.7 42.5 0-.1-6.6-5.6-12.7-8.3-17.2"/><path fill="#947151" d="M35.2 2.1c-.1-.3-1.1.2-1 .5 1.7 4.7-.4 8.3-.9 8.8-.7.7.9 1.3 1.6.4.1-.2 2.4-5 .3-9.7"/><path fill="#8cc63e" d="M21.2 5.2C16.6 10.7 9 13.1 9 13.1S24.5 16.9 32.6 9c2.3-2.2 1.9-6 1.9-6S25.8-.3 21.2 5.2z"/><path fill="#7fb539" d="M34.6 3c-1.1 0-2.2.1-3.3.4-1.2.2-2.3.6-3.5 1-2.2 1-4.2 2.3-6.2 3.6-1.9 1.3-3.9 2.4-6.1 3.3-2.1.9-4.4 1.4-6.6 1.8 1.1-.1 2.2-.2 3.3-.4 1.1-.2 2.3-.6 3.4-1 2.3-.8 4.4-2 6.4-3.3 2-1.3 3.8-2.6 5.9-3.6 2.2-1 4.5-1.6 6.7-1.8"/></svg>

After

Width:  |  Height:  |  Size: 698 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#8e6244" d="M34.4 9.1c0-2.3-3.4-2.7-3.4-.5 0 2.6-1.4 3.6-1.4 5 0 1.8 4 2.1 4 .2 0-1.8.8-1.6.8-4.7"/><path fill="#a87451" d="M33.1 8.8c2.8 0-2.3-3.6-2.3-.3 0 2.6-1.9 3.9-1.1 5.6 1.8-2.2.5-5.3 3.4-5.3"/><path fill="#ff9463" d="M4.4 32.7c0-16.2 13.2-26.1 27.2-18.5C46 6.9 62 16.5 62 32.7c0 14.5-8 22.7-18 26.4-3.6 1.3-10.4 3-14.2 2.9-2.8-.1-2.7-1.5-5.4-2.3-10.9-3.2-20-11.6-20-27"/><path fill="#8cc63e" d="M32.4 8.3c-.1 0-.2-.1-.3-.2-2-3-3.9-2.3-3.9-2.3l-.2-1s2.4-.8 4.8 2.6c.1.2.1.6 0 .7-.2.2-.3.2-.4.2"/><path fill="#7fb539" d="M24.3 2.1C14.3 1.1 4 12.6 4 12.6s7-2.6 13-1.4c6.1 1.3 11.5-6 11.5-6s-1.4-2.9-4.2-3.1z"/><path fill="#8cc63e" d="M15 10C9.8 17 2 21 2 21s14.9 1.5 23.9-8.8c2.6-2.9 2.6-7.1 2.6-7.1S20.3 2.9 15 10z"/><path fill="#7fb539" d="M28.5 5.1c-1 .2-2.2.5-3.3 1-1.2.5-2.3 1.1-3.5 1.9-2.3 1.5-4.5 3.4-6.5 5.1-2.1 1.8-4.2 3.4-6.4 4.8C6.5 19.1 4.3 20.2 2 21c1.1-.3 2.2-.6 3.3-1.1 1.1-.5 2.3-1 3.5-1.7 2.4-1.3 4.6-3.1 6.7-4.8 2.1-1.8 4.1-3.6 6.3-5.1 2.2-1.5 4.5-2.5 6.7-3.2"/><path fill="#d97448" d="M40.5 33.9c.4 3.6.3 7.1-.7 10.5-1 3.4-2.8 6.5-5.8 9.2 4.2-1.6 7.3-4.7 8.9-8.2 1.7-3.5 2.2-7.5 1.7-11.4-.5-3.9-1.9-7.9-4.3-11.5-2.3-3.6-5.8-7.1-10.3-9.1 3.5 3 5.7 6.4 7.4 9.9 1.6 3.4 2.6 7 3.1 10.6"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#d33b23" d="M61 39.2c3.7 10.5-4.1 18.4-12.8 19.9-8.7 1.4-18.4-3.6-18.8-14.7-.6-14.7 10.1-13 13.9-13.6 6.3-1 13-5 17.7 8.4"/><path fill="none" stroke="#83bf4f" stroke-miterlimit="10" stroke-width="2" d="M45.1 34C43 31.6 34.5 24 37.4 9"/><path fill="#ef4d3c" d="M38.5 42.2C40.7 54.5 30.4 62 20.4 62c-10 0-19.8-7.4-18.2-19.8C4.4 25.7 16 29.6 20.4 29.6c7.2-.1 15.4-3.3 18.1 12.6"/><path fill="none" stroke="#9fc427" stroke-miterlimit="10" stroke-width="2" d="M20.4 33c0-4.1 6-25.5 34.1-30"/><path fill="#ce0f00" d="M13.3 31.6c2.3.3 4.4.7 6.5.9 1.1.1 2.1.2 3.2.3 1.1.1 2.2.1 3.3.1-1 .6-2.1.9-3.3 1.1-1.1.2-2.3.2-3.4.1s-2.3-.4-3.3-.8c-1.1-.5-2.2-1-3-1.7"/><path fill="#a51000" d="m38.5 34.8 5.6-1.3c.9-.2 1.8-.5 2.7-.7l2.8-.9c-.6.8-1.4 1.5-2.3 1.9-.9.5-1.9.9-2.8 1.1-1 .2-2 .4-3 .4-1.1 0-2.1-.1-3-.5"/><path fill="#64892f" d="M46.3 7.1c-3.8 8.9 9.3 21.2 9.3 21.2s-1.3-9.3 2.2-17.6C60.1 5.5 54.5 2 54.5 2s-6.3.6-8.2 5.1"/></svg>

After

Width:  |  Height:  |  Size: 993 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#8cc63e" d="M23.5 13.1C25 9.2 35.7 2 35.7 2s3.4 12.9 2 16.7c-1.4 3.9-5.7 5.7-9.6 4.2-4-1.6-6-6-4.6-9.8"/><path fill="#64892f" d="M17.2 20.8c-1.8-3.7.8-16.5.8-16.5S29.4 11 31.1 14.8c1.7 3.7 0 8.1-3.9 9.8-3.8 1.6-8.3-.1-10-3.8"/><path fill="#8cc63e" d="M20.7 17.2C17 15.5 4.3 18 4.3 18S11 29.5 14.7 31.3c3.7 1.7 8.1 0 9.7-3.9 1.7-3.9 0-8.5-3.7-10.2"/><path fill="#64892f" d="M13 23.6C9.2 25.1 2 35.9 2 35.9s12.8 3.4 16.7 2c3.8-1.4 5.7-5.8 4.1-9.7-1.6-4-5.9-6-9.8-4.6"/><path fill="#ef4d3c" d="M51.5 16.7C63 28.3 64.3 53.4 58.9 58.9c-5.5 5.5-30.4 4.1-42-7.5-8.5-8.5-4.5-21.4 4.3-30.3 8.9-8.9 21.8-12.9 30.3-4.4"/><path d="M40.7 15.7c-.5 0-1 .2-1.3.6-.5.8-.1 2 1.1 2.8.6.4 1.2.6 1.7.6s1-.2 1.2-.6c.5-.8.1-2-1.1-2.8-.4-.4-1-.6-1.6-.6m3.7 17.5c-.3 0-.6.1-.9.3-.7.6-.5 1.9.3 3 .6.7 1.4 1.1 2 1.1.3 0 .6-.1.9-.3.7-.6.5-1.9-.3-3-.6-.7-1.4-1.1-2-1.1m-8.6-8.6c-.3 0-.6.1-.9.3-.7.6-.6 1.9.3 3 .6.7 1.4 1.1 2 1.1.3 0 .6-.1.9-.3.7-.6.6-1.9-.3-3-.6-.7-1.4-1.1-2-1.1m14.7 1c-.2 0-.4 0-.6.1-.8.4-.9 1.8-.3 3 .5.9 1.3 1.5 2.1 1.5.2 0 .4 0 .6-.1.8-.4.9-1.8.3-3-.5-.9-1.4-1.5-2.1-1.5m4.6 13.2h-.3c-.9.2-1.4 1.5-1 2.8.3 1.2 1.1 2 2 2h.3c.9-.2 1.4-1.5 1-2.8-.4-1.2-1.2-2-2-2m-1.2 12.4c-.3 0-.7.1-.9.3-.7.6-.5 2 .4 3 .6.7 1.4 1 2 1 .3 0 .7-.1.9-.3.7-.6.5-2-.4-3-.6-.6-1.3-1-2-1m-22.2-1.5c-.5 0-1 .2-1.3.6-.5.8 0 2 1.1 2.8.6.4 1.2.6 1.7.6s1-.2 1.3-.6c.5-.8 0-2-1.1-2.8-.5-.4-1.1-.6-1.7-.6m-11.5-3.3c-.6 0-1 .2-1.3.6-.5.8 0 2 1.1 2.8.6.4 1.2.6 1.7.6s1-.2 1.3-.6c.5-.8 0-2-1.1-2.8-.6-.4-1.2-.6-1.7-.6m21.4 8.1c-.8 0-1.4.3-1.7.9-.3.9.4 2 1.7 2.5.4.2.9.3 1.3.3.8 0 1.4-.3 1.7-.9.3-.9-.4-2-1.7-2.5-.4-.2-.9-.3-1.3-.3m2.3-10c-.6 0-1.1.2-1.4.7-.5.8.1 2 1.3 2.7.5.3 1.1.5 1.6.5.6 0 1.1-.2 1.4-.7.5-.8-.1-2-1.3-2.7-.6-.3-1.1-.5-1.6-.5m-10.7-7.1c-.5 0-.9.2-1.1.5-.6.7-.2 2 .8 2.9.6.5 1.3.7 1.9.7.5 0 .9-.2 1.1-.5.6-.7.2-2-.8-2.9-.6-.4-1.3-.7-1.9-.7m-8.7-13.5c-.4 0-.7.1-1 .4-.7.7-.4 2 .5 2.9.6.6 1.3.9 2 .9.4 0 .7-.1 1-.4.7-.7.4-2-.5-2.9-.6-.6-1.3-.9-2-.9m-2.8 10.8c-.5 0-.9.2-1.2.5-.6.7-.2 2 .9 2.9.6.5 1.3.7 1.8.7s.9-.2 1.2-.5c.6-.7.2-2-.9-2.9-.6-.4-1.3-.7-1.8-.7" fill="#fff0f0"/></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#e7a74f" d="M62 44.5C62 56.5 51.1 62 32.2 62c-19 0-29.8-5.5-29.8-17.5 0-17.6 59.6-17.6 59.6 0"/><path fill="#ba8443" d="M61.8 36.2c0 12-10.8 17.5-29.7 17.5-18.8 0-29.7-5.5-29.7-17.5.1-17.5 59.4-17.5 59.4 0"/><path fill="#826046" d="M2.4 36.5c0-5 5.9-11.9 29.8-11.9S62 31.6 62 36.5c0 9.1-8.4 15.7-29.8 15.7S2.4 45.6 2.4 36.5"/><path fill="#68472c" d="M3 31.3c0-5 5.8-11.9 29.2-11.9s29.2 7 29.2 11.9c0 9.1-8.2 15.7-29.2 15.7S3 40.4 3 31.3z"/><path fill="#ef4d3c" d="M3.2 24.8c1.4-3 5.1-3.2 17.1 1.9 12 5.1 14.3 7.8 12.9 10.9-2.6 5.5-9.7 9.6-20.5 5S.5 30.4 3.2 24.8"/><path fill="#d33b23" d="M4.2 21.4c1.4-3 5.1-3.2 17.1 1.9 12 5.1 14.3 7.8 12.9 10.9-2.6 5.5-9.7 9.6-20.5 5S1.5 26.9 4.2 21.4"/><path fill="#ef4d3c" d="M29.3 34.5c-.8-3.2 2-5.5 14.9-8.3s16.4-2 17.2 1.3c1.5 5.9-1.5 13.2-13.1 15.7-11.5 2.5-17.6-2.8-19-8.7"/><path fill="#d33b23" d="M28 31.3c-.8-3.2 2-5.5 14.9-8.3 12.9-2.8 16.4-2 17.2 1.3C61.6 30.2 58.6 37.5 47 40c-11.5 2.5-17.5-2.8-19-8.7"/><path fill="#ffe62e" d="m9.7 30.9 20 19.2 19.6-19.2z"/><path fill="#8cc63e" d="M60.7 25.9s.9 3.4 0 4.4c-.8.9-3.3-.1-4.4.7-1 .7-.7 3.4-1.9 4-1.1.6-3.2-1.1-4.4-.6-1.1.4-1.5 3.1-2.7 3.5-1.2.3-3-1.7-4.2-1.5-1.2.2-2 2.8-3.3 3-1.2.2-2.7-2.1-4-2-1.2.1-2.4 2.5-3.7 2.5-1.3 0-2.4-2.5-3.7-2.5-1.3-.1-2.7 2.2-4 2-1.3-.2-2.1-2.7-3.3-3-1.3-.3-3 1.8-4.2 1.5-1.2-.4-1.6-3-2.7-3.5-1.2-.5-3.4 1.2-4.4.6-1.2-.6-.9-3.3-1.9-4-1.1-.8-3.6.2-4.4-.7-.9-1 0-4.4 0-4.4h57.2"/><path fill="#e7a74f" d="M62 23.4c0 6.5-13.3 9.7-29.8 9.7S2.4 29.9 2.4 23.4C2.4 11.6 15.7 2 32.2 2S62 11.6 62 23.4z"/><path d="m16.3 14.4-1.6 1.5-1.5-1.5 1.5-1.5zm7.4-2.4-1.5 1.5-1.5-1.5 1.5-1.5zm4.3 6.8-1.6 1.5-1.5-1.5 1.5-1.5zm5.2-5.4-1 1-1-1 1-1zm18.7 3.9-1 1-1-1 1-1zm6.2 1-1 1-1-1 1-1zM46.4 11l-1 1-1-1 1-1zM15.9 9.7l-1 1-1-1 1-1zm-5.4 4.7-1 1-1-1 1-1zm6.3 6.7-1 1-1.1-1 1.1-1zM28.5 5.7l-1 1-1.1-1 1.1-1zm9.5-1-1 1-1-1 1-1zm-15.8 2-1 1-1-1 1-1zm28.7 2.4-1 1-1-1 1-1zM40 21.7l-1.5 1.5-1.5-1.5 1.5-1.5zM37.6 14l-1.5 1.5-1.5-1.5 1.5-1.5zm5.6-5.8-1.5 1.5-1.5-1.5 1.5-1.5zm4.4 6.5-1.5 1.5-1.6-1.5 1.6-1.5zm6.4-2.2L52.5 14l-1.6-1.5 1.6-1.5zm-4.9 8.8-1.5 1.5-1.5-1.5 1.5-1.5zm-36.6-2.6L11 20.2l-1.5-1.5 1.5-1.5z" fill="#ffc17a"/></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#f6da77" d="M16.9 62.3c24.4-.1 45-20.8 45.1-45.2L2 2.3l14.9 60"/><path fill="#860d16" d="m15 54.5.4 2.1c19-1 38.9-14.6 40.9-41l-2-.3C51.7 35.5 35.3 52 15 54.5"/><path fill="#c98e52" d="m15.4 56.5 1.4 5.7C41.2 62.3 62 41.5 62 16.9l-5.7-1.4c-2.2 23.5-17.6 38.8-40.9 41z"/><path d="M22.3 13.5c0-1.7.6-3.2 1.8-4.4.5-.5 1.3-.5 1.7 0 .5.5.5 1.3 0 1.7-1.4 1.4-1.4 3.9 0 5.3.7.7 1.6 1.1 2.6 1.1s1.9-.4 2.6-1.1c.5-.5 1.3-.5 1.7 0 .5.5.5 1.3 0 1.7-1.2 1.2-2.7 1.8-4.4 1.8-1.7 0-3.2-.6-4.4-1.8-.9-1.1-1.6-2.7-1.6-4.3m19.8 25.1h-.5c-.3-.1-.5-.2-.7-.5-.2-.3-.2-.6-.1-.8.2-.8 0-1.6-.4-2.3-.4-.7-1.1-1.2-1.9-1.4-1.6-.4-3.3.7-3.7 2.3-.1.6-.8 1-1.3.8-.6-.1-1-.7-.8-1.3.5-2 2-3.5 4-4 .8-.2 1.6-.2 2.3 0 1.4.3 2.5 1.2 3.3 2.4.8 1.2 1 2.6.7 4-.2.3-.5.7-.9.8m-29 5.3v-.5c.1-.3.2-.5.5-.6.2-.1.5-.2.8-.1.7.2 1.5.1 2.2-.3.7-.4 1.2-1 1.4-1.8.4-1.5-.6-3.2-2-3.6-.5-.1-.9-.8-.7-1.3.2-.6.7-.9 1.3-.7 1.8.5 3.3 2 3.6 3.9.1.7.1 1.5-.1 2.2-.3 1.3-1.2 2.4-2.3 3-1.2.7-2.5.8-3.8.5-.5 0-.8-.3-.9-.7" fill="#83bf4f"/><path d="M27.8 37.1c-4.1 1.4-8.5-.8-9.9-5-1.4-4.2.8-8.7 4.9-10 4.1-1.4 8.5.8 9.9 5 1.4 4.1-.8 8.6-4.9 10M27 49.6c-2.5.8-5.1-.5-6-3-.8-2.5.5-5.2 3-6 2.5-.8 5.1.5 6 3 .8 2.4-.5 5.1-3 6M45 29c-3.3 1.1-7-.7-8.1-4.1-1.1-3.4.7-7.1 4-8.2 3.3-1.1 7 .7 8.1 4.1 1.1 3.4-.7 7.1-4 8.2m-35 5.4-2.4-9.7c2.6-.9 5.7.9 6.4 3.5.8 3.2-1.5 5.3-4 6.2m7-14.8c-3.4 1.2-7.2-.7-8.3-4.2-1.2-3.5.7-7.3 4.2-8.5 3.4-1.2 7.2.7 8.3 4.2 1.1 3.5-.8 7.3-4.2 8.5" fill="#b21725"/><path fill="#e0a763" d="M56.3 15.5c-.1 5.3-1.1 10.6-3.1 15.6-1.9 5-4.9 9.7-8.8 13.5-3.8 3.8-8.5 6.8-13.5 8.8-5 2-10.3 3-15.6 3.1 5.2-.9 10.3-2.3 15-4.5 4.7-2.2 9.1-5.1 12.7-8.8 3.7-3.6 6.6-8 8.7-12.7 2.3-4.7 3.7-9.8 4.6-15"/><path d="m50.564 16.794 1.98 1.98-1.98 1.98-1.98-1.98zM44.956 29.72l1.98 1.98-1.98 1.98-1.98-1.98zm-7.404-16.812 1.98 1.98-1.98 1.98-1.98-1.98zm-5.687 6.84 1.98 1.98-1.98 1.98-1.98-1.98zm-.255 17.797 1.98 1.98-1.98 1.98-1.98-1.98zM17.459 49.024l1.98 1.98-1.98 1.98-1.98-1.98zm1.889-29.407 1.98 1.98-1.98 1.98-1.98-1.98zm-7.251 1.417 1.98 1.98-1.98 1.98-1.98-1.98zM5.759 4.338l1.98 1.98-1.98 1.98-1.98-1.98zm40.913 9.632 1.485 1.485-1.485 1.485-1.485-1.485zM36.107 26.552l1.485 1.485-1.485 1.485-1.485-1.485zm-.062 13.523 1.485 1.485-1.485 1.485-1.485-1.485zm-8.209-26.639 1.485 1.485-1.485 1.485-1.485-1.485zM21.9 7.36l1.485 1.485-1.484 1.485-1.485-1.485zM9.515 5.03 11 6.515 9.515 8 8.03 6.515zm-.801 12.846 1.485 1.485-1.486 1.485-1.484-1.485zm6.94 12.902 1.485 1.485-1.485 1.485-1.485-1.485zm-2.55 6.264 1.485 1.485-1.485 1.485-1.484-1.485zm5.726 8.334 1.484 1.485-1.485 1.485-1.485-1.485z" fill="#ffab41"/></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path d="m26.5 42.6-5.7-5.2s-6.3 6.4-8.1 6.7c-2 .2-5.9-2.1-9.1 1.1-2.2 2.2-2.2 5.8 0 8 1.5 1.5 3.8 2 5.7 1.4-.6 1.9-.1 4.2 1.4 5.7 2.2 2.2 5.8 2.2 8 0 3.2-3.2.8-7.1 1.1-9.1 0-2.2 6.7-8.6 6.7-8.6m16.1-16.1-5.2-5.7s6.4-6.3 6.7-8.1c.2-2-2.1-5.9 1.1-9.1 2.2-2.2 5.8-2.2 8 0 1.5 1.5 2 3.8 1.4 5.7 1.9-.6 4.2-.1 5.7 1.4 2.2 2.2 2.2 5.8 0 8-3.2 3.2-7.1.8-9.1 1.1-2.2 0-8.6 6.7-8.6 6.7" fill="#ddd"/><path fill="#a86332" d="M31.9 10.6c-3.2.8-20.5 18.1-21.2 21.2-1.2 4.9 16.6 22.7 21.5 21.5 3.1-.8 20.5-18.1 21.2-21.2 1.2-4.9-16.6-22.7-21.5-21.5"/><path d="m14.6 31.9-1 1 1 1 1-1-1-1m3.3 1.4-1 1 1 1 1-1-1-1m18.707-13.486.99-.99.99.99-.99.99z" fill="#e6b858"/><path fill="#e6d0a3" d="m32.854 15.169 1.485-1.485 1.484 1.485-1.485 1.485z"/><path fill="#e6b858" d="m32.072 18.996.99-.99.99.99-.99.99z"/><path d="m30.92 13.67.99-.99.99.99-.99.99zm-9.919 10.848.99-.99.99.99-.99.99z" fill="#e6d0a3"/><path d="m24.05 28.63 1.485-1.486 1.485 1.485-1.485 1.485zm2.994 1.57.99-.99.99.99-.99.99z" fill="#e6b858"/><path d="m44.2 38.8-1 1 1 1 1-1-1-1m-3.3 1.3-1.5 1.5 1.5 1.5 1.5-1.5-1.5-1.5m-1.7-4-1 1 1 1 1-1-1-1m-8.4 11.3-1.5 1.5 1.5 1.5 1.5-1.5-1.5-1.5m-2.3-4.5-1 1 1 1 1-1-1-1m-.6 3.5-1 1 1 1 1-1-1-1m19.6-17.2-1 1 1 1 1-1-1-1m3.1.7-1 1 1 1 1-1-1-1m-7.7 5.7-1 1 1 1 1-1-1-1" fill="#804c26"/><path d="M49.8 37.5 22.9 17.8l1.6-1.6 26.2 20.4zM37.4 49.7l-23-23 .7-.9L39 48.5z" fill="#e6b858"/><path d="m38.8 48.9-24-23 .8-.8 25.9 20.7zm10.4-10.8L20.7 19.4l2.4-2.4 27.1 20.5z" fill="#804c26"/><path d="M11.6 59.8c-.6-3 .6-5.9 2.8-7.6h-.2c-2.5.5-4.1 3-3.6 5.6.2.9.6 1.6 1.1 2.3 0-.1 0-.2-.1-.3M4 50.9c-.4-2.2.4-4.2 2-5.5h-.1c-1.8.4-3 2.2-2.6 4 .1.6.4 1.2.8 1.6-.1 0-.1 0-.1-.1m55.8-39.5c-3-.6-5.9.6-7.6 2.8V14c.5-2.5 3-4.1 5.6-3.6.9.2 1.6.6 2.3 1.1-.1 0-.2-.1-.3-.1m-8.9-7.7c-2.2-.4-4.2.4-5.5 2v-.1c.3-1.8 2.2-3 4-2.6.6.1 1.2.4 1.6.8.1 0 0-.1-.1-.1" opacity=".4" fill="#fff"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

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