1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-06 06:43:22 +02:00

Added support for Mapsforge maps

This commit is contained in:
Martin Tůma 2021-04-10 15:27:40 +02:00
parent 8fe0f836ae
commit 44a5e5de81
208 changed files with 5761 additions and 475 deletions

1503
data/default.xml Normal file

File diff suppressed because it is too large Load Diff

View File

@ -15,6 +15,7 @@ QT += core \
printsupport
greaterThan(QT_MAJOR_VERSION, 5) {QT += openglwidgets}
CONFIG += object_parallel_to_source
INCLUDEPATH += ./src
HEADERS += src/common/config.h \
src/GUI/axislabelitem.h \
@ -93,7 +94,7 @@ HEADERS += src/common/config.h \
src/map/IMG/bitmapline.h \
src/map/IMG/bitstream.h \
src/map/IMG/deltastream.h \
src/map/IMG/gmap.h \
src/map/IMG/gmapdata.h \
src/map/IMG/huffmanbuffer.h \
src/map/IMG/huffmanstream.h \
src/map/IMG/huffmantable.h \
@ -102,8 +103,14 @@ HEADERS += src/common/config.h \
src/map/IMG/mapdata.h \
src/map/IMG/raster.h \
src/map/IMG/rastertile.h \
src/map/IMG/textpathitem.h \
src/map/IMG/textpointitem.h \
src/map/IMG/shield.h \
src/map/mapsforge/cmp.h \
src/map/mapsforge/style.h \
src/map/textpathitem.h \
src/map/textpointitem.h \
src/map/mapsforge/mapdata.h \
src/map/mapsforge/rastertile.h \
src/map/mapsforge/subfile.h \
src/map/bsbmap.h \
src/map/invalidmap.h \
src/map/kmzmap.h \
@ -180,7 +187,7 @@ HEADERS += src/common/config.h \
src/data/locparser.h \
src/data/slfparser.h \
src/data/dem.h \
src/data/polygon.h \
src/common/polygon.h \
src/data/area.h \
src/map/obliquestereographic.h \
src/GUI/coordinatesitem.h \
@ -190,7 +197,7 @@ HEADERS += src/common/config.h \
src/data/exifparser.h \
src/data/imageinfo.h \
src/map/imgmap.h \
src/map/IMG/img.h \
src/map/IMG/imgdata.h \
src/map/IMG/subfile.h \
src/map/IMG/trefile.h \
src/map/IMG/rgnfile.h \
@ -201,7 +208,7 @@ HEADERS += src/common/config.h \
src/map/IMG/netfile.h \
src/GUI/limitedcombobox.h \
src/GUI/pathtickitem.h \
src/map/IMG/textitem.h \
src/map/textitem.h \
src/map/IMG/label.h \
src/data/csv.h \
src/data/cupparser.h \
@ -212,7 +219,8 @@ HEADERS += src/common/config.h \
src/GUI/pngexportdialog.h \
src/data/geojsonparser.h \
src/GUI/timezoneinfo.h \
src/map/aqmmap.h
src/map/aqmmap.h \
src/map/mapsforgemap.h
SOURCES += src/main.cpp \
src/GUI/axislabelitem.cpp \
@ -274,7 +282,7 @@ SOURCES += src/main.cpp \
src/map/IMG/bitmapline.cpp \
src/map/IMG/bitstream.cpp \
src/map/IMG/deltastream.cpp \
src/map/IMG/gmap.cpp \
src/map/IMG/gmapdata.cpp \
src/map/IMG/huffmanbuffer.cpp \
src/map/IMG/huffmanstream.cpp \
src/map/IMG/huffmantable.cpp \
@ -282,8 +290,12 @@ SOURCES += src/main.cpp \
src/map/IMG/nodfile.cpp \
src/map/IMG/mapdata.cpp \
src/map/IMG/rastertile.cpp \
src/map/IMG/textpathitem.cpp \
src/map/IMG/textpointitem.cpp \
src/map/mapsforge/style.cpp \
src/map/textpathitem.cpp \
src/map/textpointitem.cpp \
src/map/mapsforge/mapdata.cpp \
src/map/mapsforge/rastertile.cpp \
src/map/mapsforge/subfile.cpp \
src/map/bsbmap.cpp \
src/map/kmzmap.cpp \
src/map/maplist.cpp \
@ -354,7 +366,7 @@ SOURCES += src/main.cpp \
src/map/rmap.cpp \
src/data/exifparser.cpp \
src/map/imgmap.cpp \
src/map/IMG/img.cpp \
src/map/IMG/imgdata.cpp \
src/map/IMG/subfile.cpp \
src/map/IMG/trefile.cpp \
src/map/IMG/rgnfile.cpp \
@ -363,7 +375,7 @@ SOURCES += src/main.cpp \
src/map/IMG/style.cpp \
src/map/IMG/netfile.cpp \
src/GUI/pathtickitem.cpp \
src/map/IMG/textitem.cpp \
src/map/textitem.cpp \
src/data/csv.cpp \
src/data/cupparser.cpp \
src/GUI/graphicsscene.cpp \
@ -372,7 +384,8 @@ SOURCES += src/main.cpp \
src/GUI/pdfexportdialog.cpp \
src/GUI/pngexportdialog.cpp \
src/data/geojsonparser.cpp \
src/map/aqmmap.cpp
src/map/aqmmap.cpp \
src/map/mapsforgemap.cpp
DEFINES += APP_VERSION=\\\"$$VERSION\\\" \
QT_NO_DEPRECATED_WARNINGS

View File

@ -1,6 +1,6 @@
<RCC>
<!-- GUI icons -->
<qresource prefix="/">
<!-- GUI -->
<file alias="gpxsee.png">icons/app/gpxsee.png</file>
<file alias="gpxsee@2x.png">icons/app/gpxsee@2x.png</file>
<file alias="dialog-close.png">icons/GUI/dialog-close.png</file>
@ -43,8 +43,10 @@
<file alias="view-filter@2x.png">icons/GUI/view-filter@2x.png</file>
<file alias="applications-internet_32.png">icons/GUI/applications-internet_32.png</file>
<file alias="applications-internet_32@2x.png">icons/GUI/applications-internet_32@2x.png</file>
<!-- POI -->
</qresource>
<!-- POI icons for default IMG map style -->
<qresource prefix="/POI">
<file alias="airfield-11.png">icons/POI/airfield-11.png</file>
<file alias="airport-11.png">icons/POI/airport-11.png</file>
<file alias="amusement-park-11.png">icons/POI/amusement-park-11.png</file>
@ -123,4 +125,141 @@
<file alias="wetland-11.png">icons/POI/wetland-11.png</file>
<file alias="zoo-11.png">icons/POI/zoo-11.png</file>
</qresource>
<!-- Mapsforge rendertheme -->
<qresource prefix="/mapsforge">
<file alias="default.xml">data/default.xml</file>
<file alias="patterns/hills.svg">icons/mapsforge/patterns/hills.svg</file>
<file alias="patterns/farmland.svg">icons/mapsforge/patterns/farmland.svg</file>
<file alias="patterns/coniferous.svg">icons/mapsforge/patterns/coniferous.svg</file>
<file alias="patterns/marsh.png">icons/mapsforge/patterns/marsh.png</file>
<file alias="patterns/dot.png">icons/mapsforge/patterns/dot.png</file>
<file alias="patterns/cemetery.png">icons/mapsforge/patterns/cemetery.png</file>
<file alias="patterns/rail.png">icons/mapsforge/patterns/rail.png</file>
<file alias="patterns/access-destination.png">icons/mapsforge/patterns/access-destination.png</file>
<file alias="patterns/deciduous.svg">icons/mapsforge/patterns/deciduous.svg</file>
<file alias="patterns/grass.svg">icons/mapsforge/patterns/grass.svg</file>
<file alias="patterns/wood-mixed.png">icons/mapsforge/patterns/wood-mixed.png</file>
<file alias="patterns/wood-deciduous.png">icons/mapsforge/patterns/wood-deciduous.png</file>
<file alias="patterns/pike.png">icons/mapsforge/patterns/pike.png</file>
<file alias="patterns/wood-coniferous.png">icons/mapsforge/patterns/wood-coniferous.png</file>
<file alias="patterns/coniferous_and_deciduous.svg">icons/mapsforge/patterns/coniferous_and_deciduous.svg</file>
<file alias="patterns/arrow.png">icons/mapsforge/patterns/arrow.png</file>
<file alias="patterns/military.png">icons/mapsforge/patterns/military.png</file>
<file alias="patterns/scrub.svg">icons/mapsforge/patterns/scrub.svg</file>
<file alias="patterns/nature-reserve.png">icons/mapsforge/patterns/nature-reserve.png</file>
<file alias="patterns/swamp.svg">icons/mapsforge/patterns/swamp.svg</file>
<file alias="patterns/quarry.svg">icons/mapsforge/patterns/quarry.svg</file>
<file alias="patterns/access-private.png">icons/mapsforge/patterns/access-private.png</file>
<file alias="symbols/barrier/blocks.svg">icons/mapsforge/symbols/barrier/blocks.svg</file>
<file alias="symbols/barrier/stile.svg">icons/mapsforge/symbols/barrier/stile.svg</file>
<file alias="symbols/barrier/cycle_barrier.svg">icons/mapsforge/symbols/barrier/cycle_barrier.svg</file>
<file alias="symbols/barrier/lift_gate.svg">icons/mapsforge/symbols/barrier/lift_gate.svg</file>
<file alias="symbols/barrier/bollard.svg">icons/mapsforge/symbols/barrier/bollard.svg</file>
<file alias="symbols/barrier/gate.svg">icons/mapsforge/symbols/barrier/gate.svg</file>
<file alias="symbols/dot_blue.svg">icons/mapsforge/symbols/dot_blue.svg</file>
<file alias="symbols/dot_blue_dark.svg">icons/mapsforge/symbols/dot_blue_dark.svg</file>
<file alias="symbols/peak.svg">icons/mapsforge/symbols/peak.svg</file>
<file alias="symbols/traffic_signal.svg">icons/mapsforge/symbols/traffic_signal.svg</file>
<file alias="symbols/place_of_worship/hindu.svg">icons/mapsforge/symbols/place_of_worship/hindu.svg</file>
<file alias="symbols/place_of_worship/unknown.svg">icons/mapsforge/symbols/place_of_worship/unknown.svg</file>
<file alias="symbols/place_of_worship/islamic.svg">icons/mapsforge/symbols/place_of_worship/islamic.svg</file>
<file alias="symbols/place_of_worship/jewish.svg">icons/mapsforge/symbols/place_of_worship/jewish.svg</file>
<file alias="symbols/place_of_worship/shinto.svg">icons/mapsforge/symbols/place_of_worship/shinto.svg</file>
<file alias="symbols/place_of_worship/buddhist.svg">icons/mapsforge/symbols/place_of_worship/buddhist.svg</file>
<file alias="symbols/place_of_worship/christian.svg">icons/mapsforge/symbols/place_of_worship/christian.svg</file>
<file alias="symbols/volcano.svg">icons/mapsforge/symbols/volcano.svg</file>
<file alias="symbols/bench.svg">icons/mapsforge/symbols/bench.svg</file>
<file alias="symbols/transport/parking_private.svg">icons/mapsforge/symbols/transport/parking_private.svg</file>
<file alias="symbols/transport/helicopter.svg">icons/mapsforge/symbols/transport/helicopter.svg</file>
<file alias="symbols/transport/rental_bicycle.svg">icons/mapsforge/symbols/transport/rental_bicycle.svg</file>
<file alias="symbols/transport/train_station2.svg">icons/mapsforge/symbols/transport/train_station2.svg</file>
<file alias="symbols/transport/parking.svg">icons/mapsforge/symbols/transport/parking.svg</file>
<file alias="symbols/transport/slipway.svg">icons/mapsforge/symbols/transport/slipway.svg</file>
<file alias="symbols/transport/bus_stop.svg">icons/mapsforge/symbols/transport/bus_stop.svg</file>
<file alias="symbols/transport/bus_station.svg">icons/mapsforge/symbols/transport/bus_station.svg</file>
<file alias="symbols/transport/airport2.svg">icons/mapsforge/symbols/transport/airport2.svg</file>
<file alias="symbols/transport/fuel.svg">icons/mapsforge/symbols/transport/fuel.svg</file>
<file alias="symbols/transport/lighthouse.svg">icons/mapsforge/symbols/transport/lighthouse.svg</file>
<file alias="symbols/transport/traffic_lights.svg">icons/mapsforge/symbols/transport/traffic_lights.svg</file>
<file alias="symbols/transport/tram_stop.svg">icons/mapsforge/symbols/transport/tram_stop.svg</file>
<file alias="symbols/food/bar.svg">icons/mapsforge/symbols/food/bar.svg</file>
<file alias="symbols/food/cafe.svg">icons/mapsforge/symbols/food/cafe.svg</file>
<file alias="symbols/food/drinkingtap.svg">icons/mapsforge/symbols/food/drinkingtap.svg</file>
<file alias="symbols/food/pub.svg">icons/mapsforge/symbols/food/pub.svg</file>
<file alias="symbols/food/fastfood.svg">icons/mapsforge/symbols/food/fastfood.svg</file>
<file alias="symbols/food/biergarten.svg">icons/mapsforge/symbols/food/biergarten.svg</file>
<file alias="symbols/food/restaurant.svg">icons/mapsforge/symbols/food/restaurant.svg</file>
<file alias="symbols/railway-crossing.svg">icons/mapsforge/symbols/railway-crossing.svg</file>
<file alias="symbols/accommodation/hotel2.svg">icons/mapsforge/symbols/accommodation/hotel2.svg</file>
<file alias="symbols/accommodation/camping.svg">icons/mapsforge/symbols/accommodation/camping.svg</file>
<file alias="symbols/accommodation/chalet.svg">icons/mapsforge/symbols/accommodation/chalet.svg</file>
<file alias="symbols/accommodation/alpinehut.svg">icons/mapsforge/symbols/accommodation/alpinehut.svg</file>
<file alias="symbols/accommodation/shelter2.svg">icons/mapsforge/symbols/accommodation/shelter2.svg</file>
<file alias="symbols/accommodation/caravan_park.svg">icons/mapsforge/symbols/accommodation/caravan_park.svg</file>
<file alias="symbols/accommodation/hostel.svg">icons/mapsforge/symbols/accommodation/hostel.svg</file>
<file alias="symbols/health/doctors2.svg">icons/mapsforge/symbols/health/doctors2.svg</file>
<file alias="symbols/health/hospital.svg">icons/mapsforge/symbols/health/hospital.svg</file>
<file alias="symbols/health/pharmacy.svg">icons/mapsforge/symbols/health/pharmacy.svg</file>
<file alias="symbols/chair_lift.svg">icons/mapsforge/symbols/chair_lift.svg</file>
<file alias="symbols/education/school.svg">icons/mapsforge/symbols/education/school.svg</file>
<file alias="symbols/education/nursery3.svg">icons/mapsforge/symbols/education/nursery3.svg</file>
<file alias="symbols/education/university.svg">icons/mapsforge/symbols/education/university.svg</file>
<file alias="symbols/money/atm2.svg">icons/mapsforge/symbols/money/atm2.svg</file>
<file alias="symbols/money/bank2.svg">icons/mapsforge/symbols/money/bank2.svg</file>
<file alias="symbols/shopping/marketplace.svg">icons/mapsforge/symbols/shopping/marketplace.svg</file>
<file alias="symbols/shopping/bicycle.svg">icons/mapsforge/symbols/shopping/bicycle.svg</file>
<file alias="symbols/shopping/alcohol.svg">icons/mapsforge/symbols/shopping/alcohol.svg</file>
<file alias="symbols/shopping/diy.svg">icons/mapsforge/symbols/shopping/diy.svg</file>
<file alias="symbols/shopping/bakery.svg">icons/mapsforge/symbols/shopping/bakery.svg</file>
<file alias="symbols/shopping/greengrocer.svg">icons/mapsforge/symbols/shopping/greengrocer.svg</file>
<file alias="symbols/shopping/laundrette.svg">icons/mapsforge/symbols/shopping/laundrette.svg</file>
<file alias="symbols/shopping/car_repair.svg">icons/mapsforge/symbols/shopping/car_repair.svg</file>
<file alias="symbols/shopping/butcher.svg">icons/mapsforge/symbols/shopping/butcher.svg</file>
<file alias="symbols/shopping/book.svg">icons/mapsforge/symbols/shopping/book.svg</file>
<file alias="symbols/shopping/convenience.svg">icons/mapsforge/symbols/shopping/convenience.svg</file>
<file alias="symbols/shopping/supermarket.svg">icons/mapsforge/symbols/shopping/supermarket.svg</file>
<file alias="symbols/poi/mountain_pass.svg">icons/mapsforge/symbols/poi/mountain_pass.svg</file>
<file alias="symbols/poi/embassy2.svg">icons/mapsforge/symbols/poi/embassy2.svg</file>
<file alias="symbols/poi/cave.svg">icons/mapsforge/symbols/poi/cave.svg</file>
<file alias="symbols/cable_car.svg">icons/mapsforge/symbols/cable_car.svg</file>
<file alias="symbols/railway-crossing-small.svg">icons/mapsforge/symbols/railway-crossing-small.svg</file>
<file alias="symbols/dot_magenta.svg">icons/mapsforge/symbols/dot_magenta.svg</file>
<file alias="symbols/dot_black.svg">icons/mapsforge/symbols/dot_black.svg</file>
<file alias="symbols/gondola.svg">icons/mapsforge/symbols/gondola.svg</file>
<file alias="symbols/dot_white.svg">icons/mapsforge/symbols/dot_white.svg</file>
<file alias="symbols/amenity/recycling.svg">icons/mapsforge/symbols/amenity/recycling.svg</file>
<file alias="symbols/amenity/firestation3.svg">icons/mapsforge/symbols/amenity/firestation3.svg</file>
<file alias="symbols/amenity/telephone.svg">icons/mapsforge/symbols/amenity/telephone.svg</file>
<file alias="symbols/amenity/post_box.svg">icons/mapsforge/symbols/amenity/post_box.svg</file>
<file alias="symbols/amenity/fountain2.svg">icons/mapsforge/symbols/amenity/fountain2.svg</file>
<file alias="symbols/amenity/playground.svg">icons/mapsforge/symbols/amenity/playground.svg</file>
<file alias="symbols/amenity/library.svg">icons/mapsforge/symbols/amenity/library.svg</file>
<file alias="symbols/amenity/post_office.svg">icons/mapsforge/symbols/amenity/post_office.svg</file>
<file alias="symbols/amenity/police2.svg">icons/mapsforge/symbols/amenity/police2.svg</file>
<file alias="symbols/amenity/toilets.svg">icons/mapsforge/symbols/amenity/toilets.svg</file>
<file alias="symbols/tourist/picnic.svg">icons/mapsforge/symbols/tourist/picnic.svg</file>
<file alias="symbols/tourist/monument.svg">icons/mapsforge/symbols/tourist/monument.svg</file>
<file alias="symbols/tourist/archaeological2.svg">icons/mapsforge/symbols/tourist/archaeological2.svg</file>
<file alias="symbols/tourist/museum.svg">icons/mapsforge/symbols/tourist/museum.svg</file>
<file alias="symbols/tourist/attraction.svg">icons/mapsforge/symbols/tourist/attraction.svg</file>
<file alias="symbols/tourist/information.svg">icons/mapsforge/symbols/tourist/information.svg</file>
<file alias="symbols/tourist/theatre.svg">icons/mapsforge/symbols/tourist/theatre.svg</file>
<file alias="symbols/tourist/zoo.svg">icons/mapsforge/symbols/tourist/zoo.svg</file>
<file alias="symbols/tourist/cinema2.svg">icons/mapsforge/symbols/tourist/cinema2.svg</file>
<file alias="symbols/tourist/castle2.svg">icons/mapsforge/symbols/tourist/castle2.svg</file>
<file alias="symbols/tourist/ruin.svg">icons/mapsforge/symbols/tourist/ruin.svg</file>
<file alias="symbols/tourist/memorial.svg">icons/mapsforge/symbols/tourist/memorial.svg</file>
<file alias="symbols/tourist/view_point.svg">icons/mapsforge/symbols/tourist/view_point.svg</file>
<file alias="symbols/tourist/windmill.svg">icons/mapsforge/symbols/tourist/windmill.svg</file>
<file alias="symbols/water/weir.svg">icons/mapsforge/symbols/water/weir.svg</file>
<file alias="symbols/sport/swimming_outdoor.svg">icons/mapsforge/symbols/sport/swimming_outdoor.svg</file>
<file alias="symbols/sport/tennis.svg">icons/mapsforge/symbols/sport/tennis.svg</file>
<file alias="symbols/sport/shooting.svg">icons/mapsforge/symbols/sport/shooting.svg</file>
<file alias="symbols/sport/stadium.svg">icons/mapsforge/symbols/sport/stadium.svg</file>
<file alias="symbols/sport/soccer.svg">icons/mapsforge/symbols/sport/soccer.svg</file>
<file alias="symbols/sport/golf.svg">icons/mapsforge/symbols/sport/golf.svg</file>
<file alias="symbols/oneway.svg">icons/mapsforge/symbols/oneway.svg</file>
</qresource>
</RCC>

Binary file not shown.

After

Width:  |  Height:  |  Size: 288 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 288 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 401 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 343 B

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<defs id="defs4">
<symbol id="symbol-university" viewBox="244.5 110 489 219.9">
<path d="M79,43l57,119c0,0,21-96,104-96s124,106,124,106l43-133l82-17L0,17L79,43z" id="path4460"/>
<path fill="none" stroke="#000000" stroke-width="20" d="M94,176l-21,39" id="path4462"/>
<path d="M300,19c0,10.5-22.6,19-50.5,19S199,29.5,199,19s22.6-19,50.5-19S300,8.5,300,19z" id="path4464"/>
<path ill="none" stroke="#000000" stroke-width="20" d="M112,216l-16-38L64,88c0,0-9-8-4-35s16-24,16-24" id="path4466"/>
</symbol>
<symbol viewBox="244.5 110 489 219.9" id="symbol9807">
<path id="path9809" d="M79,43l57,119c0,0,21-96,104-96s124,106,124,106l43-133l82-17L0,17L79,43z"/>
<path id="path9811" d="M94,176l-21,39" stroke-width="20" stroke="#000000" fill="none"/>
<path id="path9813" d="M300,19c0,10.5-22.6,19-50.5,19S199,29.5,199,19s22.6-19,50.5-19S300,8.5,300,19z"/>
<path id="path9815" d="M112,216l-16-38L64,88c0,0-9-8-4-35s16-24,16-24" stroke-width="20" stroke="#000000" ill="none"/>
</symbol>
</defs>
<path inkscape:connector-curvature="0" id="path8893-1-1" d="m 151.49813,293.8417 -44.4375,95.875 -0.34375,0.71875 0.78125,0 8.9375,0 -15.15625,27.53125 -0.40625,0.71875 0.84375,0 10.71875,0 -18.062502,29.875 -0.5625,0.90625 1.0625,-0.15625 45.593752,-6.84375 0,48.53125 0,0.5 0.5,0 10.625,0 0.375,0 0.125,0 0.375,0 10.59375,0 0.5,0 0,-0.5 0,-48.53125 45.6875,6.84375 1.03125,0.15625 -0.53125,-0.90625 -18.0625,-29.875 10.625,0 0.84375,0 -0.40625,-0.71875 -15.15625,-27.53125 9,0 0.78125,0 -0.3125,-0.71875 -44.53125,-95.875 -0.5,0.0937 -0.53125,-0.0937 z m -0.0312,2.4375 0,194.21875 -10,0 0,-48.625 0,-0.5625 -0.5625,0.0937 -45.125002,6.75 17.937502,-29.6875 0.46875,-0.78125 -0.875,0 -10.75,0 15.15625,-27.53125 0.40625,-0.71875 -0.84375,0 -9,0 43.1875,-93.15625 z m 1.125,0.0625 43.25,93.09375 -9.09375,0 -0.84375,0 0.40625,0.71875 15.15625,27.53125 -10.65625,0 -0.875,0 0.4375,0.78125 17.9375,29.6875 -45.15625,-6.75 -0.59375,-0.0937 0,0.5625 0,48.625 -9.96875,0 0,-194.15625 z m -0.63664,-2.30136 -44.44666,95.87969 9.78092,0 -15.56963,28.27819 11.57742,0 -18.497262,30.60698 46.176622,-6.91983 0,49.10424 10.97859,0 0,-196.94927 z m 0.13307,0 0,196.94927 10.97859,0 0,-49.10424 46.24316,6.91983 -18.49726,-30.60698 11.51089,0 -15.56964,-28.27819 9.84746,0 -44.5132,-95.87969 z" fill-opacity=".733" color="#000000" fill="#87b987"/>
<path inkscape:connector-curvature="0" id="path8893-1-7" d="m 438.03409,87.423634 -44.4375,95.874996 -0.34375,0.71875 0.78125,0 8.9375,0 -15.15625,27.53125 -0.40625,0.71875 0.84375,0 10.71875,0 -18.0625,29.875 -0.5625,0.90625 1.0625,-0.15625 45.59375,-6.84375 0,48.53125 0,0.5 0.5,0 10.625,0 0.375,0 0.125,0 0.375,0 10.59375,0 0.5,0 0,-0.5 0,-48.53125 45.6875,6.84375 1.03125,0.15625 -0.53125,-0.90625 -18.0625,-29.875 10.625,0 0.84375,0 -0.40625,-0.71875 -15.15625,-27.53125 9,0 0.78125,0 -0.3125,-0.71875 -44.53125,-95.874996 -0.5,0.0937 -0.53125,-0.0937 z m -0.0312,2.4375 0,194.218746 -10,0 0,-48.625 0,-0.5625 -0.5625,0.0937 -45.125,6.75 17.9375,-29.6875 0.46875,-0.78125 -0.875,0 -10.75,0 15.15625,-27.53125 0.40625,-0.71875 -0.84375,0 -9,0 43.1875,-93.156246 z m 1.125,0.0625 43.25,93.093746 -9.09375,0 -0.84375,0 0.40625,0.71875 15.15625,27.53125 -10.65625,0 -0.875,0 0.4375,0.78125 17.9375,29.6875 -45.15625,-6.75 -0.59375,-0.0937 0,0.5625 0,48.625 -9.96875,0 0,-194.156246 z m -0.63664,-2.30136 -44.44666,95.879686 9.78092,0 -15.56963,28.27819 11.57742,0 -18.49726,30.60698 46.17662,-6.91983 0,49.10424 10.97859,0 0,-196.949266 z m 0.13307,0 0,196.949266 10.97859,0 0,-49.10424 46.24316,6.91983 -18.49726,-30.60698 11.51089,0 -15.56964,-28.27819 9.84746,0 -44.5132,-95.879686 z" fill-opacity=".733" color="#000000" fill="#87b987"/>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<defs id="defs4">
<symbol id="symbol-university" viewBox="244.5 110 489 219.9">
<path d="M79,43l57,119c0,0,21-96,104-96s124,106,124,106l43-133l82-17L0,17L79,43z" id="path4460"/>
<path fill="none" stroke="#000000" stroke-width="20" d="M94,176l-21,39" id="path4462"/>
<path d="M300,19c0,10.5-22.6,19-50.5,19S199,29.5,199,19s22.6-19,50.5-19S300,8.5,300,19z" id="path4464"/>
<path ill="none" stroke="#000000" stroke-width="20" d="M112,216l-16-38L64,88c0,0-9-8-4-35s16-24,16-24" id="path4466"/>
</symbol>
<symbol viewBox="244.5 110 489 219.9" id="symbol9807">
<path id="path9809" d="M79,43l57,119c0,0,21-96,104-96s124,106,124,106l43-133l82-17L0,17L79,43z"/>
<path id="path9811" d="M94,176l-21,39" stroke-width="20" stroke="#000000" fill="none"/>
<path id="path9813" d="M300,19c0,10.5-22.6,19-50.5,19S199,29.5,199,19s22.6-19,50.5-19S300,8.5,300,19z"/>
<path id="path9815" d="M112,216l-16-38L64,88c0,0-9-8-4-35s16-24,16-24" stroke-width="20" stroke="#000000" ill="none"/>
</symbol>
</defs>
<path id="path8893-1" d="m 171,276.21875 -44.4375,95.875 -0.34375,0.71875 0.78125,0 8.9375,0 -15.15625,27.53125 -0.40625,0.71875 0.84375,0 10.71875,0 -18.0625,29.875 -0.5625,0.90625 1.0625,-0.15625 45.59375,-6.84375 0,48.53125 0,0.5 0.5,0 10.625,0 0.375,0 0.125,0 0.375,0 10.59375,0 0.5,0 0,-0.5 0,-48.53125 45.6875,6.84375 1.03125,0.15625 -0.53125,-0.90625 -18.0625,-29.875 10.625,0 0.84375,0 -0.40625,-0.71875 -15.15625,-27.53125 9,0 0.78125,0 -0.3125,-0.71875 -44.53125,-95.875 -0.5,0.0937 L 171,276.21875 z m -0.0312,2.4375 0,194.21875 -10,0 0,-48.625 0,-0.5625 -0.5625,0.0937 -45.125,6.75 17.9375,-29.6875 0.46875,-0.78125 -0.875,0 -10.75,0 15.15625,-27.53125 0.40625,-0.71875 -0.84375,0 -9,0 43.1875,-93.15625 z m 1.125,0.0625 43.25,93.09375 -9.09375,0 -0.84375,0 0.40625,0.71875 15.15625,27.53125 -10.65625,0 -0.875,0 0.4375,0.78125 17.9375,29.6875 -45.15625,-6.75 -0.59375,-0.0937 0,0.5625 0,48.625 -9.96875,0 0,-194.15625 z m -0.63664,-2.30136 -44.44666,95.87969 9.78092,0 -15.56963,28.27819 11.57742,0 -18.49726,30.60698 46.17662,-6.91983 0,49.10424 10.97859,0 0,-196.94927 z m 0.13307,0 0,196.94927 10.97859,0 0,-49.10424 46.24316,6.91983 -18.49726,-30.60698 11.51089,0 -15.56964,-28.27819 9.84746,0 -44.5132,-95.87969 z" fill-opacity=".733" color="#000000" fill="#87b987"/>
<path d="m 401.20072,107.52099 c -12.89249,-0.21792 -26.4631,6.91624 -29.20596,21.537 -1.16133,6.19036 -2.13136,8.18098 -9.45839,8.30804 -22.57124,0.39142 -32.17031,33.57097 -13.10114,49.20917 1.88949,1.54956 0.80099,2.89533 -5.56,7.73287 -32.37287,24.61961 2.48489,73.74553 35.59676,50.16779 4.84775,-3.4519 5.61647,-3.48967 6.71034,-0.63908 2.30895,6.01702 1.28278,34.9088 -1.5977,44.47997 l -2.87586,9.52229 17.31908,0 c 1.71459,0 2.57221,0.006 3.96229,0 1.40745,0.006 2.28396,0 4.0262,0 l 17.31908,0 -2.81195,-9.52229 c -2.88049,-9.57117 -3.97059,-38.46295 -1.66161,-44.47997 1.09387,-2.85059 1.86259,-2.81282 6.71034,0.63908 33.11187,23.57774 67.96963,-25.54818 35.59676,-50.16779 -6.36099,-4.83754 -7.77751,-6.8574 -5.49609,-7.73287 19.06917,-7.31754 8.85147,-45.48948 -13.16505,-49.20917 -7.22574,-1.22077 -8.23315,-2.11768 -9.39448,-8.30804 -2.87273,-15.31291 -17.65149,-22.36306 -31.05929,-21.40919 -0.61108,-0.0438 -1.23787,-0.1174 -1.85333,-0.12781 z" id="path9696" inkscape:connector-curvature="0" fill="#87b987" fill-opacity=".733"/>
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<defs id="defs4">
<symbol id="symbol-university" viewBox="244.5 110 489 219.9">
<path d="M79,43l57,119c0,0,21-96,104-96s124,106,124,106l43-133l82-17L0,17L79,43z" id="path4460"/>
<path fill="none" stroke="#000000" stroke-width="20" d="M94,176l-21,39" id="path4462"/>
<path d="M300,19c0,10.5-22.6,19-50.5,19S199,29.5,199,19s22.6-19,50.5-19S300,8.5,300,19z" id="path4464"/>
<path ill="none" stroke="#000000" stroke-width="20" d="M112,216l-16-38L64,88c0,0-9-8-4-35s16-24,16-24" id="path4466"/>
</symbol>
<symbol viewBox="244.5 110 489 219.9" id="symbol9807">
<path id="path9809" d="M79,43l57,119c0,0,21-96,104-96s124,106,124,106l43-133l82-17L0,17L79,43z"/>
<path id="path9811" d="M94,176l-21,39" stroke-width="20" stroke="#000000" fill="none"/>
<path id="path9813" d="M300,19c0,10.5-22.6,19-50.5,19S199,29.5,199,19s22.6-19,50.5-19S300,8.5,300,19z"/>
<path id="path9815" d="M112,216l-16-38L64,88c0,0-9-8-4-35s16-24,16-24" stroke-width="20" stroke="#000000" ill="none"/>
</symbol>
</defs>
<path d="m 159.3237,301.42595 c -12.89248,-0.21792 -26.46309,6.91624 -29.20596,21.537 -1.16132,6.19036 -2.13136,8.18098 -9.45839,8.30804 -22.571243,0.39142 -32.170313,33.57097 -13.10114,49.20917 1.88949,1.54956 0.80099,2.89533 -5.55999,7.73287 -32.372883,24.61961 2.48489,73.74553 35.59676,50.16779 4.84774,-3.4519 5.61646,-3.48967 6.71034,-0.63908 2.30895,6.01702 1.28278,34.9088 -1.5977,44.47997 l -2.87586,9.52229 17.31907,0 c 1.71459,0 2.57221,0.006 3.9623,0 1.40744,0.006 2.28396,0 4.0262,0 l 17.31907,0 -2.81195,-9.52229 c -2.88048,-9.57117 -3.97058,-38.46295 -1.66161,-44.47997 1.09388,-2.85059 1.8626,-2.81282 6.71034,0.63908 33.11188,23.57774 67.96964,-25.54818 35.59676,-50.16779 -6.36098,-4.83754 -7.77751,-6.8574 -5.49608,-7.73287 19.06916,-7.31754 8.85147,-45.48948 -13.16505,-49.20917 -7.22574,-1.22077 -8.23316,-2.11768 -9.39448,-8.30804 -2.87273,-15.31291 -17.6515,-22.36306 -31.0593,-21.40919 -0.61108,-0.0438 -1.23787,-0.1174 -1.85333,-0.12781 z" id="path9696" inkscape:connector-curvature="0" fill="#87b987" fill-opacity=".733"/>
<path d="m 419.39534,72.446632 c -12.89248,-0.21792 -26.46309,6.91624 -29.20596,21.537 -1.16132,6.190358 -2.13136,8.180978 -9.45839,8.308038 -22.57124,0.39142 -32.17031,33.57097 -13.10114,49.20917 1.88949,1.54956 0.80099,2.89533 -5.55999,7.73287 -32.37288,24.6196 2.48489,73.74552 35.59676,50.16778 4.84774,-3.4519 5.61646,-3.48967 6.71034,-0.63908 2.30895,6.01702 1.28278,34.9088 -1.5977,44.47997 l -2.87586,9.52229 17.31907,0 c 1.71459,0 2.57221,0.006 3.9623,0 1.40744,0.006 2.28396,0 4.0262,0 l 17.31907,0 -2.81195,-9.52229 c -2.88048,-9.57117 -3.97058,-38.46295 -1.66161,-44.47997 1.09388,-2.85059 1.8626,-2.81282 6.71034,0.63908 33.11189,23.57774 67.96965,-25.54818 35.59677,-50.16778 -6.36098,-4.83754 -7.77751,-6.8574 -5.49608,-7.73287 19.06916,-7.31754 8.85147,-45.48948 -13.16505,-49.20917 -7.22574,-1.22077 -8.23316,-2.11768 -9.39448,-8.308038 -2.87273,-15.31291 -17.65151,-22.36306 -31.05931,-21.40919 -0.61108,-0.0438 -1.23787,-0.1174 -1.85333,-0.12781 z" id="path9696-1" inkscape:connector-curvature="0" fill="#87b987" fill-opacity=".733"/>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 297 B

View File

@ -0,0 +1,51 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="128" width="128" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
<metadata>
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title/>
</cc:Work>
</rdf:RDF>
</metadata>
<g transform="translate(-311,-468.36218)">
<rect style="enable-background:new;" transform="scale(-1,-1)" height="64" width="64" y="-596.4" x="-375" fill="#f7f5e5"/>
<rect style="enable-background:new;" height="64" width="64" y="468.4" x="375" fill="#f7f5e5"/>
<rect style="enable-background:new;" transform="matrix(0,1,-1,0,0,0)" height="64" width="64" y="-439" x="532.4" fill="#f7f5e5"/>
<rect style="enable-background:new;" transform="matrix(0,-1,1,0,0,0)" height="64" width="64" y="311" x="-532.4" fill="#f7f5e5"/>
<rect style="enable-background:new;" transform="scale(-1,-1)" height="4" width="64" y="-594.4" x="-375" fill="#efe9c9"/>
<rect style="enable-background:new;" transform="scale(-1,-1)" height="4" width="64" y="-586.4" x="-375" fill="#efe9c9"/>
<rect style="enable-background:new;" transform="scale(-1,-1)" height="4" width="64" y="-578.4" x="-375" fill="#efe9c9"/>
<rect style="enable-background:new;" transform="scale(-1,-1)" height="4" width="64" y="-570.4" x="-375" fill="#efe9c9"/>
<rect style="enable-background:new;" transform="scale(-1,-1)" height="4" width="64" y="-562.4" x="-375" fill="#efe9c9"/>
<rect style="enable-background:new;" transform="scale(-1,-1)" height="4" width="64" y="-554.4" x="-375" fill="#efe9c9"/>
<rect style="enable-background:new;" transform="scale(-1,-1)" height="4" width="64" y="-546.4" x="-375" fill="#efe9c9"/>
<rect style="enable-background:new;" transform="scale(-1,-1)" height="4" width="64" y="-538.4" x="-375" fill="#efe9c9"/>
<rect style="enable-background:new;" height="4" width="64" y="470.4" x="375" fill="#efe9c9"/>
<rect style="enable-background:new;" height="4" width="64" y="478.4" x="375" fill="#efe9c9"/>
<rect style="enable-background:new;" height="4" width="64" y="486.4" x="375" fill="#efe9c9"/>
<rect style="enable-background:new;" height="4" width="64" y="494.4" x="375" fill="#efe9c9"/>
<rect style="enable-background:new;" height="4" width="64" y="502.4" x="375" fill="#efe9c9"/>
<rect style="enable-background:new;" height="4" width="64" y="510.4" x="375" fill="#efe9c9"/>
<rect style="enable-background:new;" height="4" width="64" y="518.4" x="375" fill="#efe9c9"/>
<rect style="enable-background:new;" height="4" width="64" y="526.4" x="375" fill="#efe9c9"/>
<rect style="enable-background:new;" transform="matrix(0,1,-1,0,0,0)" height="4" width="64" y="-437" x="532.4" fill="#efe9c9"/>
<rect style="enable-background:new;" transform="matrix(0,1,-1,0,0,0)" height="4" width="64" y="-429" x="532.4" fill="#efe9c9"/>
<rect style="enable-background:new;" transform="matrix(0,1,-1,0,0,0)" height="4" width="64" y="-421" x="532.4" fill="#efe9c9"/>
<rect style="enable-background:new;" transform="matrix(0,1,-1,0,0,0)" height="4" width="64" y="-413" x="532.4" fill="#efe9c9"/>
<rect style="enable-background:new;" transform="matrix(0,1,-1,0,0,0)" height="4" width="64" y="-405" x="532.4" fill="#efe9c9"/>
<rect style="enable-background:new;" transform="matrix(0,1,-1,0,0,0)" height="4" width="64" y="-397" x="532.4" fill="#efe9c9"/>
<rect style="enable-background:new;" transform="matrix(0,1,-1,0,0,0)" height="4" width="64" y="-389" x="532.4" fill="#efe9c9"/>
<rect style="enable-background:new;" transform="matrix(0,1,-1,0,0,0)" height="4" width="64" y="-381" x="532.4" fill="#efe9c9"/>
<rect style="enable-background:new;" transform="matrix(0,-1,1,0,0,0)" height="4" width="64" y="313" x="-532.4" fill="#efe9c9"/>
<rect style="enable-background:new;" transform="matrix(0,-1,1,0,0,0)" height="4" width="64" y="321" x="-532.4" fill="#efe9c9"/>
<rect style="enable-background:new;" transform="matrix(0,-1,1,0,0,0)" height="4" width="64" y="329" x="-532.4" fill="#efe9c9"/>
<rect style="enable-background:new;" transform="matrix(0,-1,1,0,0,0)" height="4" width="64" y="337" x="-532.4" fill="#efe9c9"/>
<rect style="enable-background:new;" transform="matrix(0,-1,1,0,0,0)" height="4" width="64" y="345" x="-532.4" fill="#efe9c9"/>
<rect style="enable-background:new;" transform="matrix(0,-1,1,0,0,0)" height="4" width="64" y="353" x="-532.4" fill="#efe9c9"/>
<rect style="enable-background:new;" transform="matrix(0,-1,1,0,0,0)" height="4" width="64" y="361" x="-532.4" fill="#efe9c9"/>
<rect style="enable-background:new;" transform="matrix(0,-1,1,0,0,0)" height="4" width="64" y="369" x="-532.4" fill="#efe9c9"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.0" width="580" height="580">
<metadata id="metadata10"/>
<path inkscape:connector-curvature="0" sodipodi:nodetypes="cc" id="path3781" d="m 185.62513,286.07679 0.32964,-83.39783" fill="none" stroke="#87b987" stroke-linejoin="round" stroke-linecap="round" stroke-width="11.654" stroke-opacity=".733"/>
<path inkscape:connector-curvature="0" sodipodi:nodetypes="cc" id="path3783" d="M 235.01392,232.12965 208.64307,286.1899" fill="none" stroke="#87b987" stroke-linejoin="round" stroke-linecap="round" stroke-width="11.654" stroke-opacity=".733"/>
<path inkscape:connector-curvature="0" sodipodi:nodetypes="cc" id="path3785" d="m 268.03405,253.11322 -32.3043,32.96357" fill="none" stroke="#87b987" stroke-linejoin="round" stroke-linecap="round" stroke-width="11.654" stroke-opacity=".733"/>
<path inkscape:connector-curvature="0" sodipodi:nodetypes="cc" d="m 140.65911,229.8222 22.74487,56.3677" id="path3787" fill="none" stroke="#87b987" stroke-linejoin="round" stroke-linecap="round" stroke-width="11.654" stroke-opacity=".733"/>
<path inkscape:connector-curvature="0" sodipodi:nodetypes="cc" d="m 104.34263,254.10212 31.97466,31.97467" id="path3789" fill="none" stroke="#87b987" stroke-linejoin="round" stroke-linecap="round" stroke-width="11.654" stroke-opacity=".733"/>
<path inkscape:connector-curvature="0" d="m 385.62513,190.07678 0.32964,-83.39783" id="path3793" sodipodi:nodetypes="cc" fill="none" stroke="#87b987" stroke-linejoin="round" stroke-linecap="round" stroke-width="11.654" stroke-opacity=".733"/>
<path inkscape:connector-curvature="0" d="M 435.01392,136.12964 408.64307,190.1899" id="path3795" sodipodi:nodetypes="cc" fill="none" stroke="#87b987" stroke-linejoin="round" stroke-linecap="round" stroke-width="11.654" stroke-opacity=".733"/>
<path inkscape:connector-curvature="0" d="m 468.03405,157.11321 -32.3043,32.96357" id="path3797" sodipodi:nodetypes="cc" fill="none" stroke="#87b987" stroke-linejoin="round" stroke-linecap="round" stroke-width="11.654" stroke-opacity=".733"/>
<path inkscape:connector-curvature="0" id="path3799" d="m 340.65911,133.8222 22.74487,56.3677" sodipodi:nodetypes="cc" fill="none" stroke="#87b987" stroke-linejoin="round" stroke-linecap="round" stroke-width="11.654" stroke-opacity=".733"/>
<path inkscape:connector-curvature="0" id="path3801" d="m 304.34263,158.10212 31.97466,31.97466" sodipodi:nodetypes="cc" fill="none" stroke="#87b987" stroke-linejoin="round" stroke-linecap="round" stroke-width="11.654" stroke-opacity=".733"/>
<path inkscape:connector-curvature="0" d="m 289.62513,436.07679 0.32964,-83.39783" id="path3807" sodipodi:nodetypes="cc" fill="none" stroke="#87b987" stroke-linejoin="round" stroke-linecap="round" stroke-width="11.654" stroke-opacity=".733"/>
<path inkscape:connector-curvature="0" d="m 339.01392,382.12965 -26.37085,54.06026" id="path3809" sodipodi:nodetypes="cc" fill="none" stroke="#87b987" stroke-linejoin="round" stroke-linecap="round" stroke-width="11.654" stroke-opacity=".733"/>
<path inkscape:connector-curvature="0" d="m 372.03405,403.11322 -32.3043,32.96357" id="path3811" sodipodi:nodetypes="cc" fill="none" stroke="#87b987" stroke-linejoin="round" stroke-linecap="round" stroke-width="11.654" stroke-opacity=".733"/>
<path inkscape:connector-curvature="0" id="path3813" d="m 244.65911,379.82221 22.74487,56.3677" sodipodi:nodetypes="cc" fill="none" stroke="#87b987" stroke-linejoin="round" stroke-linecap="round" stroke-width="11.654" stroke-opacity=".733"/>
<path inkscape:connector-curvature="0" id="path3815" d="m 208.34263,404.10213 31.97466,31.97466" sodipodi:nodetypes="cc" fill="none" stroke="#87b987" stroke-linejoin="round" stroke-linecap="round" stroke-width="11.654" stroke-opacity=".733"/>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.0" width="580" height="580">
<metadata id="metadata10"/>
<path d="m 362.98225,178.74951 c -18.3712,0.59518 -37.24028,3.30167 -53.875,11.21875 -11.25487,7.22101 -22.36174,14.50288 -33.40625,22.03125 -1.46855,1.05996 -6.63905,5.09345 -2.09375,3.0625 23.14953,-7.60492 43.81095,-22.25924 68.19266,-26.47693 20.60973,-5.15501 44.5539,-7.48552 63.05734,4.88318 12.34319,7.70967 22.99577,18.05648 36.3125,24.25 14.27752,7.77103 24.71792,24.76074 41.09375,26.75 -16.38702,-23.13213 -44.74653,-33.04697 -64.59013,-52.78497 -14.71539,-13.83429 -35.8556,-12.62913 -54.69112,-12.93378 z" id="path3656" fill="#999999"/>
<path d="m 196.70535,94.254447 c -39.22077,-0.83704 -81.18443,5.73512 -111.323742,32.742223 -17.84714,15.20614 -33.7635,33.63041 -55.27001,43.75778 -2.650844,3.00967 2.800086,3.75932 4.90625,3 9.019234,-2.2793 15.95483,-9.35158 24.07693,-13.84356 15.98596,-10.61568 29.67645,-23.9299 42.574182,-37.94328 13.17695,-9.53662 29.87141,-12.00889 45.2614,-16.37281 24.51897,-5.32234 49.90938,-8.779243 74.99374,-6.652853 17.9245,4.576333 29.12992,21.095083 44.84375,29.968753 15.17614,9.89258 31.52486,18.7369 45.25,30.25 1.11555,-1.9244 -0.91505,-5.53366 -1.15625,-7.84375 -3.15304,-7.06153 -11.43345,-9.86687 -17.1875,-14.53125 -15.56308,-9.47906 -31.54849,-18.77017 -44.28125,-31.8125 -7.39152,-7.118783 -17.21364,-11.069463 -27.5,-10.468753 -8.38657,-0.4434 -16.79286,-0.33168 -25.1875,-0.25 z" id="path3658" fill="#999999"/>
<path d="m 230.65504,246.00676 c -31.62382,2.61225 -64.4086,9.42287 -89.71169,29.65518 -17.03503,12.8395 -31.04208,29.79465 -50.069559,39.68857 -1.92089,2.78152 2.84221,7.28577 4.9375,3.78125 24.244999,-13.1651 41.551299,-35.81632 64.843749,-50.21875 22.74862,-11.9244 48.95265,-14.49799 74.09375,-17.625 17.57282,-0.89735 36.19959,4.8049 47.5625,18.71875 15.26441,12.85776 34.81496,19.83178 48.8125,34.1875 6.33889,5.2207 11.49959,13.49618 19.4375,15.4375 -0.53075,-5.86255 -6.28126,-9.81487 -9.53125,-14.34375 -14.02641,-15.2832 -32.85089,-24.47094 -49.75,-35.9375 -9.35849,-7.95098 -17.80511,-19.73683 -31.38058,-19.94438 -9.72254,-1.54075 -19.3656,-3.61775 -29.24442,-3.39937 z" id="path3660" fill="#999999"/>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 728 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 471 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 834 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 584 B

View File

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.0" width="580" height="580">
<metadata id="metadata10"/>
<path d="m 162.09375,118.90625 c -7.54388,1.86034 -17.86615,-1.8012 -23.34375,5.15625 -1.8527,8.27965 6.87822,17.21084 15.25,14.59375 8.64197,0.26924 18.88574,3.45596 26.28125,-2.5625 -1.07836,-7.98061 -9.49105,-12.22377 -15.3125,-16.625 -0.9167,-0.36606 -1.87567,-0.6779 -2.875,-0.5625 z" id="path2845" fill="none" stroke="#999999" stroke-linejoin="round" stroke-linecap="round" stroke-width="8.7"/>
<path id="path3720" d="m 213.09375,306.90625 c -7.54388,1.86034 -17.86615,-1.8012 -23.34375,5.15625 -1.8527,8.27965 6.87822,17.21084 15.25,14.59375 8.64197,0.26924 18.88574,3.45596 26.28125,-2.5625 -1.07836,-7.98061 -9.49105,-12.22377 -15.3125,-16.625 -0.9167,-0.36606 -1.87567,-0.6779 -2.875,-0.5625 z" fill="none" stroke="#999999" stroke-linejoin="round" stroke-linecap="round" stroke-width="8.7"/>
<path d="m 317.8125,219.03125 c -6.94506,1.66919 -15.66332,-1.75576 -21.21875,3.96875 -1.08673,7.66083 7.17525,14.05434 14.375,11.6875 7.55393,0.21939 16.59421,3.12237 23.0625,-1.625 -2.35509,-6.81053 -9.47907,-10.9266 -15.34375,-14.15625 -0.29932,0.01 -0.57875,-0.26991 -0.875,0.125 z" id="path3722" fill="none" stroke="#999999" stroke-linejoin="round" stroke-linecap="round" stroke-width="8.7"/>
<path d="m 179.90625,216.40625 c -2.77739,-0.30495 -3.49974,1.7747 -0.96875,2.84375 5.20747,2.21591 11.12585,-0.34164 16.5625,1.40625 4.32588,1.09062 2.00748,-1.10314 -0.25,-2.4375 -4.45512,-3.20523 -10.17563,-0.98733 -15.34375,-1.8125 z" id="path3724" fill="none" stroke="#999999" stroke-linejoin="round" stroke-linecap="round" stroke-width="8.7"/>
<path d="m 353.8125,325.90625 c -8.93261,1.51509 -21.54424,-1.63526 -26.8125,7.96875 -3.18584,11.10588 8.85949,22.88956 19.9375,19.84375 9.50902,0.73456 22.46427,3.65875 28.86766,-5.49246 0.73995,-10.83984 -10.56107,-17.02729 -18.49266,-21.91379 -1.13062,-0.328 -2.32223,-0.50738 -3.5,-0.40625 z" id="path3736" fill="none" stroke="#999999" stroke-linejoin="round" stroke-linecap="round" stroke-width="8.7"/>
<path id="path3742" d="m 278.90625,291.40625 c -2.77739,-0.30495 -3.49974,1.7747 -0.96875,2.84375 5.20747,2.21591 11.12585,-0.34164 16.5625,1.40625 4.32588,1.09062 2.00748,-1.10314 -0.25,-2.4375 -4.45512,-3.20523 -10.17563,-0.98733 -15.34375,-1.8125 z" fill="none" stroke="#999999" stroke-linejoin="round" stroke-linecap="round" stroke-width="8.7"/>
<path d="m 110.84375,257.34375 c -5.18653,1.2232 -12.129845,-1.78199 -16.25,2.0625 1.142733,5.72491 8.08668,6.54153 12.8125,5.375 4.60242,0.0651 11.34685,2.24094 14.84375,0.15625 -2.85276,-3.35591 -6.96625,-6.98346 -11.40625,-7.59375 z" id="path3744" fill="none" stroke="#999999" stroke-linejoin="round" stroke-linecap="round" stroke-width="8.7"/>
<path id="path3750" d="m 125.84375,403.34375 c -5.18653,1.2232 -12.12984,-1.78199 -16.25,2.0625 1.14273,5.72491 8.08668,6.54153 12.8125,5.375 4.60242,0.0651 11.34685,2.24094 14.84375,0.15625 -2.85276,-3.35591 -6.96625,-6.98346 -11.40625,-7.59375 z" fill="none" stroke="#999999" stroke-linejoin="round" stroke-linecap="round" stroke-width="8.7"/>
<path d="m 81.09375,509.90625 c -7.54388,1.86034 -17.86615,-1.8012 -23.34375,5.15625 -1.8527,8.27965 6.87822,17.21084 15.25,14.59375 8.64197,0.26924 18.88574,3.45596 26.28125,-2.5625 -1.07836,-7.98061 -9.49105,-12.22377 -15.3125,-16.625 -0.9167,-0.36606 -1.87567,-0.6779 -2.875,-0.5625 z" id="path3752" fill="none" stroke="#999999" stroke-linejoin="round" stroke-linecap="round" stroke-width="8.7"/>
<path d="m 184.90625,492.40625 c -2.77739,-0.30495 -3.49974,1.7747 -0.96875,2.84375 5.20747,2.21591 11.12585,-0.34164 16.5625,1.40625 4.32588,1.09062 2.00748,-1.10314 -0.25,-2.4375 -4.45512,-3.20523 -10.17563,-0.98733 -15.34375,-1.8125 z" id="path3754" fill="none" stroke="#999999" stroke-linejoin="round" stroke-linecap="round" stroke-width="8.7"/>
<path id="path3758" d="M 86.8125,336.03125 C 79.86744,337.70044 71.14918,334.27549 65.59375,340 c -1.08673,7.66083 7.17525,14.05434 14.375,11.6875 7.55393,0.21939 16.59421,3.12237 23.0625,-1.625 -2.35509,-6.81053 -9.47907,-10.9266 -15.34375,-14.15625 -0.29932,0.01 -0.57875,-0.26991 -0.875,0.125 z" fill="none" stroke="#999999" stroke-linejoin="round" stroke-linecap="round" stroke-width="8.7"/>
<path id="path3760" d="m 467.09375,281.90625 c -7.54388,1.86034 -17.86615,-1.8012 -23.34375,5.15625 -1.8527,8.27965 6.87822,17.21084 15.25,14.59375 8.64197,0.26924 18.88574,3.45596 26.28125,-2.5625 -1.07836,-7.98061 -9.49105,-12.22377 -15.3125,-16.625 -0.9167,-0.36606 -1.87567,-0.6779 -2.875,-0.5625 z" fill="none" stroke="#999999" stroke-linejoin="round" stroke-linecap="round" stroke-width="8.7"/>
<path id="path3762" d="m 46.812499,151.90625 c -8.93261,1.51509 -21.54424,-1.63526 -26.8125,7.96875 -3.18584,11.10588 8.85949,22.88956 19.9375,19.84375 9.50902,0.73456 22.46427,3.65875 28.86766,-5.49246 0.73995,-10.83984 -10.56107,-17.02729 -18.49266,-21.91379 -1.13062,-0.328 -2.32223,-0.50738 -3.5,-0.40625 z" fill="none" stroke="#999999" stroke-linejoin="round" stroke-linecap="round" stroke-width="8.7"/>
<path id="path3764" d="m 520.8125,504.90625 c -8.93261,1.51509 -21.54424,-1.63526 -26.8125,7.96875 -3.18584,11.10588 8.85949,22.88956 19.9375,19.84375 9.50902,0.73456 22.46427,3.65875 28.86766,-5.49246 0.73995,-10.83984 -10.56107,-17.02729 -18.49266,-21.91379 -1.13062,-0.328 -2.32223,-0.50738 -3.5,-0.40625 z" fill="none" stroke="#999999" stroke-linejoin="round" stroke-linecap="round" stroke-width="8.7"/>
<path d="m 496.90625,459.40625 c -2.77739,-0.30495 -3.49974,1.7747 -0.96875,2.84375 5.20747,2.21591 11.12585,-0.34164 16.5625,1.40625 4.32588,1.09062 2.00748,-1.10314 -0.25,-2.4375 -4.45512,-3.20523 -10.17563,-0.98733 -15.34375,-1.8125 z" id="path3766" fill="none" stroke="#999999" stroke-linejoin="round" stroke-linecap="round" stroke-width="8.7"/>
<path id="path3768" d="m 397.84375,514.34375 c -5.18653,1.2232 -12.12984,-1.78199 -16.25,2.0625 1.14273,5.72491 8.08668,6.54153 12.8125,5.375 4.60242,0.0651 11.34685,2.24094 14.84375,0.15625 -2.85276,-3.35591 -6.96625,-6.98346 -11.40625,-7.59375 z" fill="none" stroke="#999999" stroke-linejoin="round" stroke-linecap="round" stroke-width="8.7"/>
<path id="path3770" d="m 407.8125,418.03125 c -6.94506,1.66919 -15.66332,-1.75576 -21.21875,3.96875 -1.08673,7.66083 7.17525,14.05434 14.375,11.6875 7.55393,0.21939 16.59421,3.12237 23.0625,-1.625 -2.35509,-6.81053 -9.47907,-10.9266 -15.34375,-14.15625 -0.29932,0.01 -0.57875,-0.26991 -0.875,0.125 z" fill="none" stroke="#999999" stroke-linejoin="round" stroke-linecap="round" stroke-width="8.7"/>
<path d="m 284.09375,450.90625 c -7.54388,1.86034 -17.86615,-1.8012 -23.34375,5.15625 -1.8527,8.27965 6.87822,17.21084 15.25,14.59375 8.64197,0.26924 18.88574,3.45596 26.28125,-2.5625 -1.07836,-7.98061 -9.49105,-12.22377 -15.3125,-16.625 -0.9167,-0.36606 -1.87567,-0.6779 -2.875,-0.5625 z" id="path3772" fill="none" stroke="#999999" stroke-linejoin="round" stroke-linecap="round" stroke-width="8.7"/>
<path d="m 499.09375,133.90625 c -7.54388,1.86034 -17.86615,-1.8012 -23.34375,5.15625 -1.8527,8.27965 6.87822,17.21084 15.25,14.59375 8.64197,0.26924 18.88574,3.45596 26.28125,-2.5625 -1.07836,-7.98061 -9.49105,-12.22377 -15.3125,-16.625 -0.9167,-0.36606 -1.87567,-0.6779 -2.875,-0.5625 z" id="path3774" fill="none" stroke="#999999" stroke-linejoin="round" stroke-linecap="round" stroke-width="8.7"/>
<path id="path3776" d="m 456.90625,89.406249 c -2.77739,-0.30495 -3.49974,1.7747 -0.96875,2.843751 5.20747,2.21591 11.12585,-0.341641 16.5625,1.40625 4.32588,1.09062 2.00748,-1.10314 -0.25,-2.437501 -4.45512,-3.20523 -10.17563,-0.98733 -15.34375,-1.8125 z" fill="none" stroke="#999999" stroke-linejoin="round" stroke-linecap="round" stroke-width="8.7"/>
<path id="path3778" d="m 387.84375,174.34375 c -5.18653,1.2232 -12.12984,-1.78199 -16.25,2.0625 1.14273,5.72491 8.08668,6.54153 12.8125,5.375 4.60242,0.0651 11.34685,2.24094 14.84375,0.15625 -2.85276,-3.35591 -6.96625,-6.98346 -11.40625,-7.59375 z" fill="none" stroke="#999999" stroke-linejoin="round" stroke-linecap="round" stroke-width="8.7"/>
<path id="path3780" d="m 241.8125,21.906249 c -8.93261,1.51509 -21.54424,-1.63526 -26.8125,7.96875 -3.18584,11.10588 8.85949,22.88956 19.9375,19.84375 9.50902,0.73456 22.46427,3.65875 28.86766,-5.49246 0.73995,-10.83984 -10.56107,-17.02729 -18.49266,-21.91379 -1.13062,-0.328 -2.32223,-0.50738 -3.5,-0.40625 z" fill="none" stroke="#999999" stroke-linejoin="round" stroke-linecap="round" stroke-width="8.7"/>
<path id="path3782" d="m 270.90625,73.40625 c -2.77739,-0.30495 -3.49974,1.7747 -0.96875,2.84375 5.20747,2.21591 11.12585,-0.34164 16.5625,1.40625 4.32588,1.09062 2.00748,-1.10314 -0.25,-2.4375 -4.45512,-3.20523 -10.17563,-0.98733 -15.34375,-1.8125 z" fill="none" stroke="#999999" stroke-linejoin="round" stroke-linecap="round" stroke-width="8.7"/>
<path d="m 163.84375,50.34375 c -5.18653,1.2232 -12.12984,-1.78199 -16.25,2.0625 1.14273,5.72491 8.08668,6.54153 12.8125,5.375 4.60242,0.0651 11.34685,2.24094 14.84375,0.15625 -2.85276,-3.35591 -6.96625,-6.98346 -11.40625,-7.59375 z" id="path3784" fill="none" stroke="#999999" stroke-linejoin="round" stroke-linecap="round" stroke-width="8.7"/>
<path id="path3786" d="m 553.84375,171.34375 c -5.18653,1.2232 -12.12984,-1.78199 -16.25,2.0625 1.14273,5.72491 8.08668,6.54153 12.8125,5.375 4.60242,0.0651 11.34685,2.24094 14.84375,0.15625 -2.85276,-3.35591 -6.96625,-6.98346 -11.40625,-7.59375 z" fill="none" stroke="#999999" stroke-linejoin="round" stroke-linecap="round" stroke-width="8.7"/>
</svg>

After

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 201 B

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.0" width="580" height="580">
<metadata id="metadata10"/>
<path d="m 91.846983,454.74639 376.797227,0" id="path3752" fill="none" stroke="#87b987" stroke-linejoin="round" stroke-linecap="round" stroke-width="12" stroke-opacity=".733"/>
<g id="g3779" transform="matrix(0.74835908,0,0,0.74835908,47.4084,40.634415)" stroke="#87b987" stroke-opacity=".733">
<path d="m 219.43574,376.07932 0.44048,-111.44093" id="path3781" sodipodi:nodetypes="cc" fill="none" stroke-linejoin="round" stroke-linecap="round" stroke-width="15.573" stroke-opacity=".733"/>
<path d="m 285.43186,303.99208 -35.23824,72.23839" id="path3783" sodipodi:nodetypes="cc" fill="none" stroke-linejoin="round" stroke-linecap="round" stroke-width="15.573" stroke-opacity=".733"/>
<path d="m 329.55523,332.03152 -43.16684,44.0478" id="path3785" sodipodi:nodetypes="cc" fill="none" stroke-linejoin="round" stroke-linecap="round" stroke-width="15.573" stroke-opacity=".733"/>
<path id="path3787" d="m 159.34959,300.90874 30.39298,75.32173" sodipodi:nodetypes="cc" fill="none" stroke-linejoin="round" stroke-linecap="round" stroke-width="15.573" stroke-opacity=".733"/>
<path id="path3789" d="m 110.82144,333.35295 42.72636,42.72637" sodipodi:nodetypes="cc" fill="none" stroke-linejoin="round" stroke-linecap="round" stroke-width="15.573" stroke-opacity=".733"/>
</g>
<g transform="matrix(0.74835908,0,0,0.74835908,247.4084,-55.36559)" id="g3791" stroke="#87b987" stroke-opacity=".733">
<path sodipodi:nodetypes="cc" id="path3793" d="m 219.43574,376.07932 0.44048,-111.44093" fill="none" stroke-linejoin="round" stroke-linecap="round" stroke-width="15.573" stroke-opacity=".733"/>
<path sodipodi:nodetypes="cc" id="path3795" d="m 285.43186,303.99208 -35.23824,72.23839" fill="none" stroke-linejoin="round" stroke-linecap="round" stroke-width="15.573" stroke-opacity=".733"/>
<path sodipodi:nodetypes="cc" id="path3797" d="m 329.55523,332.03152 -43.16684,44.0478" fill="none" stroke-linejoin="round" stroke-linecap="round" stroke-width="15.573" stroke-opacity=".733"/>
<path sodipodi:nodetypes="cc" d="m 159.34959,300.90874 30.39298,75.32173" id="path3799" fill="none" stroke-linejoin="round" stroke-linecap="round" stroke-width="15.573" stroke-opacity=".733"/>
<path sodipodi:nodetypes="cc" d="m 110.82144,333.35295 42.72636,42.72637" id="path3801" fill="none" stroke-linejoin="round" stroke-linecap="round" stroke-width="15.573" stroke-opacity=".733"/>
</g>
<path id="path3803" d="m 346.41953,394.74639 169.65214,0" fill="none" stroke="#87b987" stroke-linejoin="round" stroke-linecap="round" stroke-width="12" stroke-opacity=".733"/>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.0" width="580" height="580">
<metadata id="metadata10"/>
<path inkscape:connector-curvature="0" d="m 181.73921,194.70571 c -0.36208,-47.80432 1.03597,-56.4901 0.0356,-77.88187 -0.70547,-15.15612 -3.35673,-41.490921 0.14412,-39.682489 13.97763,7.21985 27.08725,184.465759 5.24773,184.465759 -7.57632,0 -9.08557,-18.58927 -5.43179,-66.9014 l 0.004,0 1e-5,0 z" id="path3683" sodipodi:nodetypes="csssccc" fill="#60b8ff"/>
<path inkscape:connector-curvature="0" sodipodi:nodetypes="csssscccsssc" id="path3685" d="m 268.61521,245.51493 c 0,-8.85071 1.81377,-23.3155 7.5572,-39.2584 7.32509,-20.33329 22.5433,-25.46652 6.40886,-19.27518 -6.99753,2.68517 -18.97163,16.77542 -24.20646,31.79213 -11.82358,33.917 -9.98259,42.83363 1.34396,42.83363 4.89294,0 8.89626,-7.24146 8.89626,-16.09218 l 1.8e-4,0 z m -35.58505,-10.01745 c 0,-34.3596 8.12745,-55.66267 18.25122,-84.10944 10.42588,-29.29575 34.4997,-50.04067 11.69084,-31.16476 -33.48633,27.71221 -64.71212,141.38383 -38.83832,141.38383 4.89295,0 8.89626,-11.74929 8.89626,-26.10963 z" fill="#60b8ff"/>
<path inkscape:connector-curvature="0" d="m 278.32812,317.3576 c -11.73052,0.48378 -23.69834,0.39217 -35.19543,2.76424 -2.88537,1.6697 -1.19132,6.25193 2.00331,6.17633 17.49808,4.03041 35.74826,2.75786 53.61207,2.74633 7.66155,-0.34655 15.65922,-0.50312 22.85408,-3.1995 2.85708,-1.90147 0.91299,-6.4662 -2.37491,-6.24875 -13.37358,-2.92705 -27.26954,-2.38486 -40.89912,-2.23865 z" id="path3687" fill="#60b8ff"/>
<path inkscape:connector-curvature="0" d="m 101.122,245.51493 c 0,-8.85071 -1.813771,-23.3155 -7.557198,-39.2584 -7.32509,-20.33329 -22.543301,-25.46652 -6.408863,-19.27518 6.99753,2.68517 18.971631,16.77542 24.206461,31.79213 11.82357,33.917 9.98258,42.83363 -1.34396,42.83363 -4.89294,0 -8.89626,-7.24146 -8.89626,-16.09218 l -1.8e-4,0 z m 35.58505,-10.01745 c 0,-34.3596 -8.12745,-55.66267 -18.25122,-84.10944 -10.42588,-29.29575 -34.499697,-50.04067 -11.69084,-31.16476 33.48632,27.71221 64.71211,141.38383 38.83832,141.38383 -4.89295,0 -8.89626,-11.74929 -8.89626,-26.10963 z" id="path3689" sodipodi:nodetypes="csssscccsssc" fill="#60b8ff"/>
<path inkscape:connector-curvature="0" d="m 223.76353,283.99202 c -28.7682,0.42228 -57.64822,0.51219 -86.31446,2.60851 -2.70507,0.43595 -4.05156,4.4494 -1.09012,5.58689 14.32727,3.21782 29.2919,2.53438 43.93539,3.29402 40.22877,0.85238 80.55721,1.25187 120.71225,-1.60044 2.83845,-0.56816 8.41438,-0.63035 7.80607,-4.71089 -1.96973,-3.87654 -7.56813,-2.5836 -11.0959,-3.34824 -24.59864,-1.90498 -49.29685,-1.88353 -73.95323,-1.82985 z" id="path3713" fill="#60b8ff"/>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 893 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 849 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path id="path4143" d="m 39.8,167 c -6.9,3.6 -8.1,12.7 -2.7,18 18.4,25.6 22,21.5 47,11.3 l 0,274 c 0,6.3 5.1,11.5 11.5,11.5 l 30.6,0 c 6.3,0 11.5,-5.2 11.5,-11.5 0,-105 -0.2,-177 -0.2,-295 l 8.1,-3.1 144,-17 144,17.2 5.8,2.4 c -0.6,98 -0.3,197 -0.3,296 0,6.4 5,11.5 11.5,11.5 l 30.6,0 c 6.3,0 11.3,-5.1 11.4,-11.5 l 0,-274 c 32,13.6 26.7,13.4 50,-10.6 5.3,-5.4 3.9,-14.4 -2.7,-18 L 295,36.8 c -3.4,-1.7 -7.5,-1.8 -10.75,0.1 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path4145" d="m 316.9,254.7 c 17.2,-1.3 29.6,-14 29.8,-29.8 -1.4,-17 -14.3,-29.5 -29.8,-29.7 -17.3,1.3 -29.4,13.9 -29.6,29.7 1.3,17.5 13.7,29.6 29.6,29.8 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path4147" d="m 185.5,318.4 c -2.9,5 -1.8,8.8 3.1,11.5 l 14,8.4 c 5,3 8.9,1.9 11.6,-3 l 44,-76 c 3,-5 2,-8.8 -3,-11.6 -6.4,-2.3 -10.2,-6.3 -19.4,-10 -2.6,0 -4.8,1.6 -6.35,4.75 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path4149" d="m 223.5,345.2 c -2.5,4.4 -3.8,9.9 -3.5,16.4 l 1.4,89 -30.6,66 c -8.2,26.5 24.3,39 34.5,19.5 l 33.5,-71.8 c 1.2,-2.6 1.8,-5.5 1.8,-8.3 l -0.5,-54 34,46 10,81 c 10.4,23 42,15.6 39,-6.8 l -11.8,-93 c -1.2,-6.9 -5.3,-11 -9.1,-16.4 l -30,-42 29,-51 14.6,18.6 c 1.2,1.8 2.9,3 5.4,3.9 l 29,14.2 0,171 c 1.3,13.6 12.3,13 12.3,0 l 0,-170 c 14.2,-8.1 12.7,-25 -0.3,-29.8 L 357,313 321,269 c -5.1,-6 -12,-9.5 -24.4,-11.4 -16,-0.5 -26,5.3 -33.1,17.3 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 39.8,167 c -6.9,3.6 -8.1,12.7 -2.7,18 18.4,25.6 22,21.5 47,11.3 l 0,274 c 0,6.3 5.1,11.5 11.5,11.5 l 30.6,0 c 6.3,0 11.5,-5.2 11.5,-11.5 0,-105 -0.2,-177 -0.2,-295 l 8.1,-3.1 144,-17 144,17.2 5.8,2.4 c -0.6,98 -0.3,197 -0.3,296 0,6.4 5,11.5 11.5,11.5 l 30.6,0 c 6.3,0 11.3,-5.1 11.4,-11.5 l 0,-274 c 32,13.6 26.7,13.4 50,-10.6 5.3,-5.4 3.9,-14.4 -2.7,-18 L 295,36.8 c -3.4,-1.7 -7.5,-1.8 -10.75,0.1 z" id="path4140" fill="#0092da" fill-rule="evenodd"/>
<path d="m 316.9,254.7 c 17.2,-1.3 29.6,-14 29.8,-29.8 -1.4,-17 -14.3,-29.5 -29.8,-29.7 -17.3,1.3 -29.4,13.9 -29.6,29.7 1.3,17.5 13.7,29.6 29.6,29.8 z" id="path4138" fill="#0092da" fill-rule="evenodd"/>
<path d="m 185.5,318.4 c -2.9,5 -1.8,8.8 3.1,11.5 l 14,8.4 c 5,3 8.9,1.9 11.6,-3 l 44,-76 c 3,-5 2,-8.8 -3,-11.6 -6.4,-2.3 -10.2,-6.3 -19.4,-10 -2.6,0 -4.8,1.6 -6.35,4.75 z" id="path4136" fill="#0092da" fill-rule="evenodd"/>
<path d="m 223.5,345.2 c -2.5,4.4 -3.8,9.9 -3.5,16.4 l 1.4,89 -30.6,66 c -8.2,26.5 24.3,39 34.5,19.5 l 33.5,-71.8 c 1.2,-2.6 1.8,-5.5 1.8,-8.3 l -0.5,-54 34,46 10,81 c 10.4,23 42,15.6 39,-6.8 l -11.8,-93 c -1.2,-6.9 -5.3,-11 -9.1,-16.4 l -30,-42 29,-51 14.6,18.6 c 1.2,1.8 2.9,3 5.4,3.9 l 29,14.2 0,171 c 1.3,13.6 12.3,13 12.3,0 l 0,-170 c 14.2,-8.1 12.7,-25 -0.3,-29.8 L 357,313 321,269 c -5.1,-6 -12,-9.5 -24.4,-11.4 -16,-0.5 -26,5.3 -33.1,17.3 z" id="path4142" fill="#0092da" fill-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path white-space="normal" isolation="auto" mix-blend-mode="normal" id="path4136" d="m 238,69.9 35.5,69.6 C 201.85647,277.57135 133.9648,402.34008 70.8,520 l 434.2,0 0,0 1,0 C 438.24843,393.7415 371.88254,266.72481 305,140 L 340,72 317,60 290,111 261,58 Z M 378,494 202,494 c 20,-40 66,-134 88,-208 22,73 67,167 88,208 z" solid-color="#000000" color-interpolation-filters="linearRGB" opacity="0.8" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 238,69.9 35.5,69.6 C 201.85647,277.57135 133.9648,402.34008 70.8,520 l 434.2,0 0,0 1,0 C 438.24843,393.7415 371.88254,266.72481 305,140 L 340,72 317,60 290,111 261,58 Z M 378,494 202,494 c 20,-40 66,-134 88,-208 22,73 67,167 88,208 z" id="path2443" mix-blend-mode="normal" isolation="auto" white-space="normal" fill="#0092da" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" fill-rule="evenodd" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path id="path4154" d="m 437.37231,250.39628 c -4.5e-4,11.35401 -5.48014,17.03089 -16.43911,17.0307 l -58.15534,0 c -10.97172,1.9e-4 -16.45739,-5.67669 -16.45704,-17.0307 l 0,-27.60765 c -3.5e-4,-10.9711 5.48532,-16.45678 16.45704,-16.45704 l 58.15534,0 c 10.95897,2.6e-4 16.43866,5.48594 16.43911,16.45704 l 0,27.60765 z m -165.64595,0.59155 c -2.7e-4,10.9596 -5.68314,16.4393 -17.04861,16.43911 l -125.70448,0 c -10.97148,1.9e-4 -16.45714,-5.47951 -16.45702,-16.43911 l 0,-28.19925 c -1.2e-4,-10.9711 5.48554,-16.45677 16.45702,-16.45704 l 125.70448,0 c 11.36547,2.7e-4 17.04834,5.48594 17.04861,16.45704 l 0,28.19925 z m 257.88062,132.17613 -42.30784,0 0,-146.85839 c -4.9e-4,-22.71928 -7.93022,-41.91018 -23.78919,-57.57271 -15.85992,-15.66197 -34.95221,-23.49309 -57.27693,-23.49341 l -274.91131,0 c -22.71965,3.2e-4 -41.910547,7.83144 -57.572716,23.49341 -15.662329,15.66253 -23.49345,34.85343 -23.493391,57.57271 l 0,103.97689 c -5.9e-5,16.44518 5.874027,30.54181 17.622287,42.28991 11.748113,11.74826 25.844727,17.62236 42.28991,17.62229 l 94.58311,0 c 1.17104,-16.83939 7.82793,-31.13322 19.97074,-42.88151 12.14234,-11.74806 26.83056,-17.62215 44.06468,-17.62228 16.83918,1.3e-4 31.42582,5.87422 43.75993,17.62228 12.33347,11.74829 18.89477,25.84492 19.6839,42.28992 l 213.81592,0 c -5.5e-4,-10.95932 -5.48025,-16.43902 -16.4391,-16.43911 l 0,0 z m -260.82065,41.10672 c -5.48595,5e-5 -10.18582,-1.95699 -14.09962,-5.8711 -3.91434,-3.91403 -5.87137,-8.61389 -5.87111,-14.09963 -2.6e-4,-5.86805 1.95677,-10.66353 5.87111,-14.38645 3.9138,-3.72277 8.61367,-5.5842 14.09962,-5.58428 5.47344,8e-5 10.17033,1.86151 14.09067,5.58428 3.91975,3.72292 5.87977,8.5184 5.88006,14.38645 -2.9e-4,5.48574 -1.96031,10.1856 -5.88006,14.09963 -3.92034,3.91411 -8.61723,5.87115 -14.09067,5.8711 l 0,0 z m 0,-66.36594 c -12.93164,1.2e-4 -23.9,4.50279 -32.9051,13.50804 -9.00558,9.00544 -13.50826,19.96782 -13.50802,32.88717 -2.4e-4,12.53704 4.50244,23.30819 13.50802,32.3135 9.0051,9.00539 19.97346,13.50805 32.9051,13.50804 12.52475,1e-5 23.29292,-4.50265 32.30455,-13.50804 9.01101,-9.00531 13.51667,-19.77646 13.51699,-32.3135 -3.2e-4,-12.91935 -4.50598,-23.88173 -13.51699,-32.88717 -9.01163,-9.00525 -19.7798,-13.50792 -32.30455,-13.50804 l 0,0 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 437.37231,250.39628 c -4.5e-4,11.35401 -5.48014,17.03089 -16.43911,17.0307 l -58.15534,0 c -10.97172,1.9e-4 -16.45739,-5.67669 -16.45704,-17.0307 l 0,-27.60765 c -3.5e-4,-10.9711 5.48532,-16.45678 16.45704,-16.45704 l 58.15534,0 c 10.95897,2.6e-4 16.43866,5.48594 16.43911,16.45704 l 0,27.60765 z m -165.64595,0.59155 c -2.7e-4,10.9596 -5.68314,16.4393 -17.04861,16.43911 l -125.70448,0 c -10.97148,1.9e-4 -16.45714,-5.47951 -16.45702,-16.43911 l 0,-28.19925 c -1.2e-4,-10.9711 5.48554,-16.45677 16.45702,-16.45704 l 125.70448,0 c 11.36547,2.7e-4 17.04834,5.48594 17.04861,16.45704 l 0,28.19925 z m 257.88062,132.17613 -42.30784,0 0,-146.85839 c -4.9e-4,-22.71928 -7.93022,-41.91018 -23.78919,-57.57271 -15.85992,-15.66197 -34.95221,-23.49309 -57.27693,-23.49341 l -274.91131,0 c -22.71965,3.2e-4 -41.910547,7.83144 -57.572716,23.49341 -15.662329,15.66253 -23.49345,34.85343 -23.493391,57.57271 l 0,103.97689 c -5.9e-5,16.44518 5.874027,30.54181 17.622287,42.28991 11.748113,11.74826 25.844727,17.62236 42.28991,17.62229 l 94.58311,0 c 1.17104,-16.83939 7.82793,-31.13322 19.97074,-42.88151 12.14234,-11.74806 26.83056,-17.62215 44.06468,-17.62228 16.83918,1.3e-4 31.42582,5.87422 43.75993,17.62228 12.33347,11.74829 18.89477,25.84492 19.6839,42.28992 l 213.81592,0 c -5.5e-4,-10.95932 -5.48025,-16.43902 -16.4391,-16.43911 l 0,0 z m -260.82065,41.10672 c -5.48595,5e-5 -10.18582,-1.95699 -14.09962,-5.8711 -3.91434,-3.91403 -5.87137,-8.61389 -5.87111,-14.09963 -2.6e-4,-5.86805 1.95677,-10.66353 5.87111,-14.38645 3.9138,-3.72277 8.61367,-5.5842 14.09962,-5.58428 5.47344,8e-5 10.17033,1.86151 14.09067,5.58428 3.91975,3.72292 5.87977,8.5184 5.88006,14.38645 -2.9e-4,5.48574 -1.96031,10.1856 -5.88006,14.09963 -3.92034,3.91411 -8.61723,5.87115 -14.09067,5.8711 l 0,0 z m 0,-66.36594 c -12.93164,1.2e-4 -23.9,4.50279 -32.9051,13.50804 -9.00558,9.00544 -13.50826,19.96782 -13.50802,32.88717 -2.4e-4,12.53704 4.50244,23.30819 13.50802,32.3135 9.0051,9.00539 19.97346,13.50805 32.9051,13.50804 12.52475,1e-5 23.29292,-4.50265 32.30455,-13.50804 9.01101,-9.00531 13.51667,-19.77646 13.51699,-32.3135 -3.2e-4,-12.91935 -4.50598,-23.88173 -13.51699,-32.88717 -9.01163,-9.00525 -19.7798,-13.50792 -32.30455,-13.50804 l 0,0 z" id="flowRoot3192" fill="#0092da"/>
</svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<defs id="defs4">
<symbol viewBox="244.5 110 489 219.9" id="symbol-university">
<path id="path4460" d="M79,43l57,119c0,0,21-96,104-96s124,106,124,106l43-133l82-17L0,17L79,43z"/>
<path id="path4462" d="M94,176l-21,39" stroke-width="20" stroke="#000000" fill="none"/>
<path id="path4464" d="M300,19c0,10.5-22.6,19-50.5,19S199,29.5,199,19s22.6-19,50.5-19S300,8.5,300,19z"/>
<path id="path4466" d="M112,216l-16-38L64,88c0,0-9-8-4-35s16-24,16-24" stroke-width="20" stroke="#000000" ill="none"/>
</symbol>
</defs>
<g id="g8101">
<path id="path8105" d="M 184.57,66.176 22.128,206.55 l 32.488,0 0,210.57 97.464,0 0,-107.01 67.21,0 0,107.01 95.24,0 0,-210.57 32.48,0 -162.44,-140.374 0,0 0,0 z m 215.05,114.724 -7.38,15.7 -5.95,12.61 C 365.63,253 344.9,296.77 324.13,340.5 c -9.95,-13.67 -19.9,-27.32 -29.95,-40.92 l -7.18,-9.75 -6.36,10.26 C 241.5,362.73 202.75,425.6 163.4,488 l -7.79,12.41 14.67,0.1 c 122.88,1.05 245.76,2.02 368.63,3.08 l 13.13,0.1 -5.64,-11.79 C 500.09,393.37 453.52,295 407.01,196.6 l -7.39,-15.7 z m 0,138.99 c 2.49,0 4.94,1.21 6.46,3.18 7.34,9.24 14.49,16.8 17.34,17.95 1.42,0.57 1.08,0.66 2.56,-0.31 1.49,-0.97 4.49,-4.12 7.8,-10.57 1.39,-2.68 4.36,-4.45 7.38,-4.41 3.03,0 5.97,1.9 7.29,4.62 l 66.87,141.55 c 2.44,5.01 -1.92,11.87 -7.49,11.79 l -302.17,-2.56 c -2.88,-0 -5.69,-1.68 -7.08,-4.21 -1.38,-2.53 -1.3,-5.85 0.21,-8.31 l 59.49,-95.49 c 2.58,-4.16 9.22,-4.97 12.72,-1.54 5.3,5.26 9.89,8.04 15.38,8.41 5.5,0.37 13.19,-1.68 24.52,-10.05 3.47,-2.62 9.04,-1.78 11.59,1.75 l 5.23,7.18 21.54,-45.55 c 1.26,-2.75 4.15,-4.71 7.18,-4.82 3.03,-0.1 6.04,1.65 7.49,4.31 2.13,3.87 4.25,6.03 5.84,6.98 1.6,0.95 2.62,1.12 4.52,0.71 3.78,-0.8 11.09,-5.99 18.67,-17.02 1.47,-2.17 4.04,-3.55 6.66,-3.59 z" opacity="0.8" fill="none" stroke="#ffffff" stroke-linejoin="round" stroke-width="40"/>
</g>
<path inkscape:connector-curvature="0" id="path5240-1" d="m 393.67597,212.73143 c -22.60621,47.92953 -45.25319,95.83979 -68.00405,143.70085 -12.60271,-17.39413 -25.2881,-34.72804 -38.05354,-52.00309 -39.11955,62.61111 -77.85915,125.45937 -117.23774,187.90861 122.87897,1.04217 245.7585,2.01795 368.6373,3.0771 -46.30032,-98.51045 -92.87536,-196.89159 -139.3929,-295.2996 -1.98304,4.20537 -3.96604,8.41075 -5.94907,12.61613 z" fill="#ffffff"/>
<path inkscape:connector-curvature="0" id="path5240" d="m 393.67597,212.73143 c -22.60621,47.92953 -45.25319,95.83979 -68.00405,143.70085 -12.60271,-17.39413 -25.2881,-34.72804 -38.05354,-52.00309 -39.11955,62.61111 -77.85915,125.45937 -117.23774,187.90861 122.87897,1.04217 245.7585,2.01795 368.6373,3.0771 -46.30032,-98.51045 -92.87536,-196.89159 -139.3929,-295.2996 -1.98304,4.20537 -3.96604,8.41075 -5.94907,12.61613 z" opacity="0.25" fill="#0092da" stroke="#0092da"/>
<g id="g8092">
<path fill="#0092da" stroke-width="5" color="#000000" opacity="0.5" id="path3744" d="m 399.62231,180.90483 -7.38505,15.69324 -5.94907,12.61614 c -20.6536,43.7896 -41.39031,87.56068 -62.15754,131.28985 -9.94882,-13.67275 -19.90161,-27.32667 -29.9505,-40.92551 l -7.17992,-9.74416 -6.35935,10.25702 c -39.13714,62.63924 -77.88892,125.5066 -117.23774,187.9086 l -7.79533,12.411 14.66754,0.1024 c 122.88192,1.04221 245.7622,2.01799 368.6373,3.07711 l 13.12898,0.1024 -5.64136,-11.79557 C 500.09345,393.37373 453.52353,295.0032 407.00737,196.59807 l -7.38506,-15.69324 z m 0,138.98262 c 2.48519,0.007 4.93962,1.21532 6.46193,3.17968 7.33939,9.24471 14.48281,16.80271 17.33436,17.94978 1.42578,0.57371 1.07763,0.66578 2.56426,-0.30754 1.48662,-0.97348 4.4883,-4.11961 7.79533,-10.56473 1.39433,-2.68386 4.36089,-4.45286 7.38505,-4.41052 3.02414,0.0423 5.96375,1.89386 7.28249,4.61566 l 66.87577,141.54687 c 2.43717,5.01006 -1.91673,11.86877 -7.48763,11.79558 l -302.1718,-2.56442 c -2.8853,-0.0397 -5.68833,-1.67615 -7.07735,-4.20538 -1.38888,-2.52923 -1.30961,-5.85218 0.20514,-8.30819 l 59.49072,-95.49285 c 2.58116,-4.16468 9.21894,-4.96762 12.7187,-1.53856 5.3028,5.25747 9.89394,8.04016 15.38553,8.41076 5.4916,0.3706 13.18531,-1.68658 24.51428,-10.05188 3.47449,-2.61976 9.04052,-1.78239 11.59043,1.74369 l 5.23108,7.17992 21.53975,-45.54117 c 1.25972,-2.75269 4.15453,-4.71511 7.17991,-4.8208 3.02538,-0.10569 6.03871,1.64999 7.48762,4.30795 2.13163,3.86819 4.25504,6.02391 5.84651,6.97477 1.59146,0.95071 2.61975,1.12066 4.51308,0.71799 3.78667,-0.80533 11.08861,-5.99482 18.66778,-17.02665 1.47553,-2.16917 4.04389,-3.55221 6.66706,-3.58996 z" inkscape:connector-curvature="0"/>
<path stroke-width="0.852" fill-rule="evenodd" fill="#0092da" sodipodi:nodetypes="ccccccccccccc" id="path645" d="M 184.57113,66.176498 22.127529,206.5523 l 32.488502,0 0,210.56359 97.466389,0 0,-107.00635 67.20514,0 2.2e-4,107.00635 95.23845,0 0,-210.56359 32.4887,0 -162.4438,-140.375802 0,0 0,0 z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path id="path4151" d="M 56.699219 35 C 38.699219 35.5 38.8 55 39.5 68 C 38.7 223 37.000781 377 36.800781 531 C 41.000781 555 73.000781 543 70.800781 522 L 71 494 L 506 497 C 507 511 502 531 519 535 C 538 539 542 518 540 504 C 541 385 543 266 543 147 C 539 123 503 134 509 156 L 508 237 L 73 234 C 73 172 74 111 74 49 C 72.8 41 64.899219 34.8 56.699219 35 z M 72 267 L 508 269 L 506 461 L 71 459 L 72 267 z " mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path4153" d="m 143,144 c 18,34 73,31 88,-4 7,-38 -8,-66 -48,-67.1 C 149,73 125,114 143,144 Z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path4155" d="m 235,204 c 16,19 42,11 63,13 44,-1 89,1 133,-1 28,-4 34,-62 -3,-66 -55.66676,-0.3014 -111.33294,-3 -167,-3 -28,0 -45,37 -26,57 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path4157" d="m 134,178 c -26,-1 -20,41 4,35 l 69,0 c 23,-5 15,-36 6,-36 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path4159" d="m 138,368 c 18,34 73,31 88,-4 7,-38 -8,-66 -48,-67 -34,0 -58,41 -40,71 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path4161" d="m 256,444 c 44,0 127,0 171,-2 46,-7 37,-68 -6,-69 l -163,0 c -53,8 -37,69 -2,71 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path4163" d="m 130,404 c -22,-1 -23,36 5,35 23,0 46,1 69,0 23,-5 16,-36 -7,-35 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="M 56.699219 35 C 38.699219 35.5 38.8 55 39.5 68 C 38.7 223 37.000781 377 36.800781 531 C 41.000781 555 73.000781 543 70.800781 522 L 71 494 L 506 497 C 507 511 502 531 519 535 C 538 539 542 518 540 504 C 541 385 543 266 543 147 C 539 123 503 134 509 156 L 508 237 L 73 234 C 73 172 74 111 74 49 C 72.8 41 64.899219 34.8 56.699219 35 z M 72 267 L 508 269 L 506 461 L 71 459 L 72 267 z " id="path4148" fill="#0092da"/>
<path d="m 143,144 c 18,34 73,31 88,-4 7,-38 -8,-66 -48,-67.1 C 149,73 125,114 143,144 Z" id="path4146" fill="#0092da"/>
<path d="m 235,204 c 16,19 42,11 63,13 44,-1 89,1 133,-1 28,-4 34,-62 -3,-66 -55.66676,-0.3014 -111.33294,-3 -167,-3 -28,0 -45,37 -26,57 z" id="path4144" fill="#0092da"/>
<path d="m 134,178 c -26,-1 -20,41 4,35 l 69,0 c 23,-5 15,-36 6,-36 z" id="path4142" fill="#0092da"/>
<path d="m 138,368 c 18,34 73,31 88,-4 7,-38 -8,-66 -48,-67 -34,0 -58,41 -40,71 z" id="path4138" fill="#0092da"/>
<path d="m 256,444 c 44,0 127,0 171,-2 46,-7 37,-68 -6,-69 l -163,0 c -53,8 -37,69 -2,71 z" id="path4136" fill="#0092da"/>
<path d="m 130,404 c -22,-1 -23,36 5,35 23,0 46,1 69,0 23,-5 16,-36 -7,-35 z" id="path4189" fill="#0092da"/>
</svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path id="path4142" d="M 167,138.19922 C 136.5,137.69922 109,160.6 109,192 c 0,31.4 28,55 58,55 30.5,0 58,-22.9 58,-54 0,-31.4 -28,-54.00078 -58,-54.80078 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path4144" d="m 58.199219,171.59961 c -9.4,0.5 -17,8.10039 -17,16.90039 L 37.900391,426 c -0.3,9.5 7.30039,17.4 16.90039,17.5 9.5,0.1 17.398828,-7.6 17.298828,-17 l 1,-71 434.000001,2.90039 L 506,417.30078 c -0.3,9.5 7.20078,17.39961 16.80078,17.59961 9.5,0.2 17.4,-7.4 17.5,-17 l 3.09961,-155 c 0.3,-9.6 -7.4,-17.59961 -17,-17.59961 -9.5,0 -17.00117,7.6 -17.20117,17 L 508,325.19922 74,322.30078 l 1.699219,-132 c 0.285904,-11.70664 -8.981794,-19.13181 -17.5,-18.70117 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path4146" d="m 257,231 c -22.5,0 -41,18.6 -41,41 0,22.4 18.6,41 41,41 l 199,0 c 22.5,0 41,-18.6 41,-41 0,-22.4 -18.6,-41 -41,-41 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path4148" d="m 103,266.30078 c -11.3,0 -20.900391,9.49883 -20.900391,20.79883 C 82.099609,298.39961 91.7,308 103,308 l 86,0 c 11.3,0 20.90039,-9.50078 20.90039,-20.80078 0,-11.3 -9.60039,-20.89844 -20.90039,-20.89844 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="M 167,138.19922 C 136.5,137.69922 109,160.6 109,192 c 0,31.4 28,55 58,55 30.5,0 58,-22.9 58,-54 0,-31.4 -28,-54.00078 -58,-54.80078 z" id="path4140" fill="#0092da"/>
<path d="m 58.199219,171.59961 c -9.4,0.5 -17,8.10039 -17,16.90039 L 37.900391,426 c -0.3,9.5 7.30039,17.4 16.90039,17.5 9.5,0.1 17.398828,-7.6 17.298828,-17 l 1,-71 434.000001,2.90039 L 506,417.30078 c -0.3,9.5 7.20078,17.39961 16.80078,17.59961 9.5,0.2 17.4,-7.4 17.5,-17 l 3.09961,-155 c 0.3,-9.6 -7.4,-17.59961 -17,-17.59961 -9.5,0 -17.00117,7.6 -17.20117,17 L 508,325.19922 74,322.30078 l 1.699219,-132 c 0.285904,-11.70664 -8.981794,-19.13181 -17.5,-18.70117 z" id="path4138" fill="#0092da"/>
<path d="m 257,231 c -22.5,0 -41,18.6 -41,41 0,22.4 18.6,41 41,41 l 199,0 c 22.5,0 41,-18.6 41,-41 0,-22.4 -18.6,-41 -41,-41 z" id="path4136" fill="#0092da"/>
<path d="m 103,266.30078 c -11.3,0 -20.900391,9.49883 -20.900391,20.79883 C 82.099609,298.39961 91.7,308 103,308 l 86,0 c 11.3,0 20.90039,-9.50078 20.90039,-20.80078 0,-11.3 -9.60039,-20.89844 -20.90039,-20.89844 z" id="path4151" fill="#0092da"/>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path mix-blend-mode="normal" white-space="normal" isolation="auto" id="path4685" d="m 354,40 c -16,16 -37,36 -50,52 -4,9 10,18 16,9 16,-16 32,-31 46,-48 3,-5 2,-14 -6,-14.1 -1,0 -3,0.1 -6,1.1 z M 228,52 c -28,26 -58,55 -81,80 -6,9 8,19 15,11 26,-26 53,-52 78,-79.2 3,-4.8 -1,-12.8 -7,-12.8 -2,0 -3,0.6 -5,1 z M 123,82 c -26,26 -57,55 -80.2,79 -5.8,9 8,19 14.9,11 C 84,146 111,120 137,93 c 3,-5 -1,-13 -8,-13 -2,0 -4,1 -6,2 z m 404,5 c -21,17 -45,40 -62,58 -6,9 8,19 15,12 19,-19 39,-38 58,-57 3,-5 -1,-14 -7,-14 -1,0 -2,0 -4,1 z m -96,14 c -17,16 -50,49 -74,74 -5,9 8,19 15,11 26,-26 53,-52 79,-79 5,-4 4,-16 -5,-15 -3,0 -9,2 -15,9 z m -169,10 c -25,23 -59,57 -82,80 -5,9 8,19 15,11 26,-26 53,-52 79,-79 3,-5 -2,-13 -8,-13 -1,0 -3,1 -4,1 z m 77,14 c -14,11 -30,27 -44,41 -4,10 10,18 16,10 13,-13 28,-25 40,-39 2,-5 -2,-13 -7,-13 -2,0 -3,0 -5,1 z m 191,36 c -21,19 -47,44 -65,63 -6,8 8,19 15,11 20,-20 41,-40 60,-60 3,-5 1,-15 -6,-15 -1,0 -3,0 -4,1 z m -102,31 -24,25 c -6,10 5,21 14,11 l 24,-27 c 4,-5 1,-14 -5,-14 -3,0 -6,1 -9,5 z m -323,-3 c -21,19 -47,43 -65.2,63 -5.8,9 8,19 14.9,11 C 75,242 97,222 117,201 c 3,-5 -1,-13 -8,-14 -1,0 -3,1 -4,2 z" solid-color="#000000" color-interpolation-filters="linearRGB" opacity="0.8" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" fill-rule="evenodd" stroke-width="64" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path mix-blend-mode="normal" white-space="normal" isolation="auto" id="path4687" d="M 98.9,346.4 139,330 c 0.1,67 -0.3,135 0.2,202 -1.2,16 46,14.4 45,-0.3 0.3,-71 0,-143 0.1,-214 33.5,-3.8 67,-8.2 101,-11.6 l 98,11.6 c 0.1,72 -0.3,143 0.2,215 -0.2,16 45,14.4 45,-0.3 0.3,-68 0,-135 0.1,-203 15.8,5.8 31,13.6 47,18.2 12.7,-3.8 31.5,-23 13,-33.7 -67,-35 -199,-105 -202,-106 -0.9,-0.3 -1.8,0 -2.6,-0.2 -3.1,1.6 -148,76.9 -210,110.15 -9.8,15.55 18.6,31.85 24.9,28.55 z" solid-color="#000000" color-interpolation-filters="linearRGB" opacity="0.8" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" fill-rule="evenodd" stroke-width="64" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 354,40 c -16,16 -37,36 -50,52 -4,9 10,18 16,9 16,-16 32,-31 46,-48 3,-5 2,-14 -6,-14.1 -1,0 -3,0.1 -6,1.1 z M 228,52 c -28,26 -58,55 -81,80 -6,9 8,19 15,11 26,-26 53,-52 78,-79.2 3,-4.8 -1,-12.8 -7,-12.8 -2,0 -3,0.6 -5,1 z M 123,82 c -26,26 -57,55 -80.2,79 -5.8,9 8,19 14.9,11 C 84,146 111,120 137,93 c 3,-5 -1,-13 -8,-13 -2,0 -4,1 -6,2 z m 404,5 c -21,17 -45,40 -62,58 -6,9 8,19 15,12 19,-19 39,-38 58,-57 3,-5 -1,-14 -7,-14 -1,0 -2,0 -4,1 z m -96,14 c -17,16 -50,49 -74,74 -5,9 8,19 15,11 26,-26 53,-52 79,-79 5,-4 4,-16 -5,-15 -3,0 -9,2 -15,9 z m -169,10 c -25,23 -59,57 -82,80 -5,9 8,19 15,11 26,-26 53,-52 79,-79 3,-5 -2,-13 -8,-13 -1,0 -3,1 -4,1 z m 77,14 c -14,11 -30,27 -44,41 -4,10 10,18 16,10 13,-13 28,-25 40,-39 2,-5 -2,-13 -7,-13 -2,0 -3,0 -5,1 z m 191,36 c -21,19 -47,44 -65,63 -6,8 8,19 15,11 20,-20 41,-40 60,-60 3,-5 1,-15 -6,-15 -1,0 -3,0 -4,1 z m -102,31 -24,25 c -6,10 5,21 14,11 l 24,-27 c 4,-5 1,-14 -5,-14 -3,0 -6,1 -9,5 z m -323,-3 c -21,19 -47,43 -65.2,63 -5.8,9 8,19 14.9,11 C 75,242 97,222 117,201 c 3,-5 -1,-13 -8,-14 -1,0 -3,1 -4,2 z" id="path4160" isolation="auto" white-space="normal" mix-blend-mode="normal" fill="#734a08" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" fill-rule="evenodd" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path d="M 98.9,346.4 139,330 c 0.1,67 -0.3,135 0.2,202 -1.2,16 46,14.4 45,-0.3 0.3,-71 0,-143 0.1,-214 33.5,-3.8 67,-8.2 101,-11.6 l 98,11.6 c 0.1,72 -0.3,143 0.2,215 -0.2,16 45,14.4 45,-0.3 0.3,-68 0,-135 0.1,-203 15.8,5.8 31,13.6 47,18.2 12.7,-3.8 31.5,-23 13,-33.7 -67,-35 -199,-105 -202,-106 -0.9,-0.3 -1.8,0 -2.6,-0.2 -3.1,1.6 -148,76.9 -210,110.15 -9.8,15.55 18.6,31.85 24.9,28.55 z" id="path15803" isolation="auto" white-space="normal" mix-blend-mode="normal" fill="#734a08" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" fill-rule="evenodd" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata1976"/>
<path mix-blend-mode="normal" white-space="normal" isolation="auto" id="path4141" d="m 265,52.1 c -25,9.7 -46,29.8 -74,32 -20.4,0 -72.9,0 -47,32.6 12.7,9.8 24,38.5 39.7,39 l -20.8,17.8 c -12,-18.5 -29.7,-43 -53,-47.9 -4.5,-0.6 -9.7,2.1 -11.4,6.4 -4.4,26 -3.3,54 -19.5,77 -17.4,30 -40,64.9 -26.8,101 12.7,37.7 43.6,72 35.8,114 1.2,33 35.5,12.1 49.9,-2.5 9,-6.2 15.8,-14.8 18.4,-21.5 l 17.6,19 c -3,0.5 -6.3,2.3 -9.2,5.7 -10.7,9.5 -19.9,20.5 -30,30.5 -24.6,26 22.3,34 40.7,32.4 41.8,10.3 75,51 121,43.7 43,-5.3 79,-44 124,-37 27,2.8 24.5,-29.6 13.7,-40 -5.5,-7 -19.9,-25.7 -31,-27.9 L 418.7,412 c 5,8.4 19,18.7 24,24.5 10.3,12.2 47,24 43.6,-6.3 0.5,-25.6 9.3,-49.7 23.7,-71 16.6,-26 31.8,-58.8 18.9,-90 -12.5,-36.7 -39.6,-70 -35.6,-111 0.7,-11 -4.7,-26.3 -18.5,-23.7 -13.2,12.4 -43.1463,28.5284 -48.1463,45.5284 l -18.00947,-19.15473 c 4.9,-1 8.72829,-6.96321 13.15577,-11.17367 13.97491,-13.28991 49,-35.5 22.8,-55 C 415,94 385,92 361,74 340,60 315,46.7 290,47 c -8.4,0.1 -16.8,1.7 -25,5.1 z" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 265,52.1 c -25,9.7 -46,29.8 -74,32 -20.4,0 -72.9,0 -47,32.6 12.7,9.8 24,38.5 39.7,39 l -20.8,17.8 c -12,-18.5 -29.7,-43 -53,-47.9 -4.5,-0.6 -9.7,2.1 -11.4,6.4 -4.4,26 -3.3,54 -19.5,77 -17.4,30 -40,64.9 -26.8,101 12.7,37.7 43.6,72 35.8,114 1.2,33 35.5,12.1 49.9,-2.5 9,-6.2 15.8,-14.8 18.4,-21.5 l 17.6,19 c -3,0.5 -6.3,2.3 -9.2,5.7 -10.7,9.5 -19.9,20.5 -30,30.5 -24.6,26 22.3,34 40.7,32.4 41.8,10.3 75,51 121,43.7 43,-5.3 79,-44 124,-37 27,2.8 24.5,-29.6 13.7,-40 -5.5,-7 -19.9,-25.7 -31,-27.9 L 418.7,412 c 5,8.4 19,18.7 24,24.5 10.3,12.2 47,24 43.6,-6.3 0.5,-25.6 9.3,-49.7 23.7,-71 16.6,-26 31.8,-58.8 18.9,-90 -12.5,-36.7 -39.6,-70 -35.6,-111 0.7,-11 -4.7,-26.3 -18.5,-23.7 -13.2,12.4 -43.1463,28.5284 -48.1463,45.5284 l -18.00947,-19.15473 c 4.9,-1 8.72829,-6.96321 13.15577,-11.17367 13.97491,-13.28991 49,-35.5 22.8,-55 C 415,94 385,92 361,74 340,60 315,46.7 290,47 c -8.4,0.1 -16.8,1.7 -25,5.1 z" id="path3575" isolation="auto" white-space="normal" mix-blend-mode="normal" fill="#734a08" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path d="M 295,63.900391 C 273,64.000391 251,74 233,87 c -22,17 -54,13 -76,18 6,19 34,27 33,49 -3,2 -4.49023,1.87305 -6.49023,1.87305 l -20.61915,17.61718 C 137.7476,196.40419 127.964,143.37781 111,149 c 3,36 -20,67 -36,97 -14,22 -15.2,50 -3,74 11,28 35,54 31,86 -1,33 25,-4 36,-11 16,-9 21.16992,-4.08008 17.16992,4.91992 l 17.64063,19.08985 C 183.81055,417.00977 190,429 176,438 c -11,9 -44,38 -10,33 48,2 81,53 131,44 42,-7 77,-44 121,-36 15,-14 -24,-28 -27,-45 2,-6 7.5293,-8.63672 12.5293,-7.63672 l 15.38086,-14.49023 C 415.91016,406.87305 415,402 427,400 c 16,6 33,43 43,25 -3,-37 23,-66 38,-97 17,-29 4,-63 -11,-90 -13,-23 -23,-49 -20,-75 -16,-15 -29,34 -50,27 -1,-4 -1,-7 0,-10 l -18,-19 c -10,2 -16.82475,-5.14106 -7,-16 9.82475,-10.85894 38,-27 26,-36 C 391,113 359,91 328,74 318,67 307,64.000391 295,63.900391 Z M 278.90234,79.193359 C 290.19809,174.26445 347.61717,152.61478 327.84961,250.50977 301.49286,186.5015 252.5456,187.44263 278.90234,79.193359 Z m -25.88672,71.539061 c 11.57815,76.24514 58.36163,80.95137 80.95313,150.60742 9.97791,-32.56891 30.78141,-43.30032 20.61523,-124.25195 102.60306,139.3121 43.95969,189.20105 23.53321,239.08984 l 6.58789,-69.65625 c -32.00463,92.24721 -57.42032,110.13129 -80.95313,130.83985 12.99011,-43.29971 17.88529,-86.59884 -8.2832,-130.83985 -6.40092,71.44452 -24.47379,56.47731 -28.05078,113.89649 -35.76987,-27.20351 -43.29949,-55.53645 -49.88867,-100.71875 -4.89483,5.3654 -13.17926,27.67436 -12.80274,52.71289 l -0.1875,0 c -26.26261,-14.77838 -42.26597,-48.94736 -30.12304,-100.71875 8.28355,-36.3341 32.47549,-80.9516 13.93164,-118.60352 22.49736,15.53142 45.84104,52.43136 69.65625,94.13086 1.60023,-45.08817 -21.64952,-74.36261 -4.98829,-136.48828 z" id="path6053" opacity="0.9" fill="#ffffff" fill-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path id="path4137" d="m 256,65.6 c -2.1,-4.9 -3.4,-10 -8.8,-12.7 -40,-5.9 -48,104 -51,141 10.2,-33.6 39.6,-163 50.7,-111 -5.4,14 -14.8,50 -9.5,101 4.9,-26.4 7.1,-53.8 14.7,-80 10.8,58.9 17,123 20.4,175 -5.4,-22.5 -8.4,-53.7 -22.4,-65 -6.3,-3.8 -18,3.9 -21,8 -8.9,-7.6 -17.2,-13.4 -31.4,-7.2 -7.8,-2.4 -16.2,-4.3 -23.6,-1.9 C 78,206 45,393 34,466 69,369 83,286 141,237 102,308 96,343 77,463 c 37,-96 49,-221 101,-229 -39,62 -51.8,164 -54.6,234 21,-78 30,-171 71.8,-226 7.9,6.1 14.6,13.6 20.5,21.8 -12.3,67 -21,135 -20.8,203 15,-62 18.2,-125 30.7,-187 29.7,67 36,137 47,194 -76,-5.4 -140,43 -209,40.8 0.8,6 -3.9,14 6.5,14 l 439,0 c 10.4,0.1 5.7,-8 6.5,-14 -68,2.3 -133,-46 -209,-40.8 11.3,-57 17.7,-128 47,-194 12.5,62 15.6,126 30.7,187 0.2,-68 -8.5,-136 -20.8,-203 5.9,-8.2 12.6,-15.7 20.5,-21.8 41.5,56 50.6,148 71.8,226 -2.8,-69.9 -15.4,-172 -54.6,-234 51,8.1 64,133 101,230 -19,-120 -25,-155 -64,-227 58,48.8 71.8,132 107,229 -10.9,-73 -43,-259 -140,-252 -7.4,-2.3 -15.8,-0.5 -23.6,1.9 -14.2,-6.2 -22.4,-0.4 -31.4,7.2 -3,-4.2 -14.9,-11.8 -21,-8 -14,11.3 -17,42.6 -22.4,65 3.3,-52 9.6,-116 20.4,-175 7.5,25.8 9.8,53 14.7,80 5.3,-51 -4.1,-87 -9.5,-101 11.2,-52 40.5,78 50.7,111 -2.9,-37.6 -10.8,-147 -51,-141 -5.4,2.7 -6.8,7.8 -8.9,12.7 -2.3,-5.5 -4.6,-13 -12,-13.7 C 302,54 295,69 290,92 285,69 278,54 268,51.9 c -7.5,0.7 -9.8,8.2 -12,13.7 z M 279,188 C 281,175 257,81 262.9,81.85 271,80.9 279,170 279,188 Z m 22,0 c 0,-18 8,-107.1 16,-106 4,-1 -12,75 -16,106 z m -57,44 c 16.9,22 22.7,74 25.7,101 -9.9,-34 -15.9,-66.8 -29.9,-97 1.16391,-1.46884 3.28268,-3.46903 4.2,-4 z m 97.2,3.4 c -14,30.6 -20,63 -29.9,97 3,-26 8.8,-79 25.7,-100.7 1.5,0.3 2.9,1.6 4.2,3.7 z m -89.3,63.9 c -6.4,-17.4 -11.2,-33.6 -18.8,-48 0.2,-1.1 0.6,-1.6 0.95,-1.65 C 238,249.1 250,291.6 251.9,299.3 Z m 97.2,-48 c -7.6,14.5 -12.4,30.7 -18.8,48 1.9,-7.4 13.9,-50 17.85,-49.7 0.35,0.2 0.65,0.7 0.95,1.7 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 256,65.6 c -2.1,-4.9 -3.4,-10 -8.8,-12.7 -40,-5.9 -48,104 -51,141 10.2,-33.6 39.6,-163 50.7,-111 -5.4,14 -14.8,50 -9.5,101 4.9,-26.4 7.1,-53.8 14.7,-80 10.8,58.9 17,123 20.4,175 -5.4,-22.5 -8.4,-53.7 -22.4,-65 -6.3,-3.8 -18,3.9 -21,8 -8.9,-7.6 -17.2,-13.4 -31.4,-7.2 -7.8,-2.4 -16.2,-4.3 -23.6,-1.9 C 78,206 45,393 34,466 69,369 83,286 141,237 102,308 96,343 77,463 c 37,-96 49,-221 101,-229 -39,62 -51.8,164 -54.6,234 21,-78 30,-171 71.8,-226 7.9,6.1 14.6,13.6 20.5,21.8 -12.3,67 -21,135 -20.8,203 15,-62 18.2,-125 30.7,-187 29.7,67 36,137 47,194 -76,-5.4 -140,43 -209,40.8 0.8,6 -3.9,14 6.5,14 l 439,0 c 10.4,0.1 5.7,-8 6.5,-14 -68,2.3 -133,-46 -209,-40.8 11.3,-57 17.7,-128 47,-194 12.5,62 15.6,126 30.7,187 0.2,-68 -8.5,-136 -20.8,-203 5.9,-8.2 12.6,-15.7 20.5,-21.8 41.5,56 50.6,148 71.8,226 -2.8,-69.9 -15.4,-172 -54.6,-234 51,8.1 64,133 101,230 -19,-120 -25,-155 -64,-227 58,48.8 71.8,132 107,229 -10.9,-73 -43,-259 -140,-252 -7.4,-2.3 -15.8,-0.5 -23.6,1.9 -14.2,-6.2 -22.4,-0.4 -31.4,7.2 -3,-4.2 -14.9,-11.8 -21,-8 -14,11.3 -17,42.6 -22.4,65 3.3,-52 9.6,-116 20.4,-175 7.5,25.8 9.8,53 14.7,80 5.3,-51 -4.1,-87 -9.5,-101 11.2,-52 40.5,78 50.7,111 -2.9,-37.6 -10.8,-147 -51,-141 -5.4,2.7 -6.8,7.8 -8.9,12.7 -2.3,-5.5 -4.6,-13 -12,-13.7 C 302,54 295,69 290,92 285,69 278,54 268,51.9 c -7.5,0.7 -9.8,8.2 -12,13.7 z M 279,188 C 281,175 257,81 262.9,81.85 271,80.9 279,170 279,188 Z m 22,0 c 0,-18 8,-107.1 16,-106 4,-1 -12,75 -16,106 z m -57,44 c 16.9,22 22.7,74 25.7,101 -9.9,-34 -15.9,-66.8 -29.9,-97 1.16391,-1.46884 3.28268,-3.46903 4.2,-4 z m 97.2,3.4 c -14,30.6 -20,63 -29.9,97 3,-26 8.8,-79 25.7,-100.7 1.5,0.3 2.9,1.6 4.2,3.7 z m -89.3,63.9 c -6.4,-17.4 -11.2,-33.6 -18.8,-48 0.2,-1.1 0.6,-1.6 0.95,-1.65 C 238,249.1 250,291.6 251.9,299.3 Z m 97.2,-48 c -7.6,14.5 -12.4,30.7 -18.8,48 1.9,-7.4 13.9,-50 17.85,-49.7 0.35,0.2 0.65,0.7 0.95,1.7 z" id="path4151" fill="#734a08"/>
</svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path mix-blend-mode="normal" white-space="normal" isolation="auto" id="path4139" d="m 56,287 c 75,86 152,171 228,257 13.7,4.7 7.2,-16 8.5,-24.3 L 292,444 c -9,-14.6 -22.7,-26.4 -33.5,-39.9 0,0 -190,-218 -193,-219 -11.3,-4.9 -8.9,20.3 -9.25,24.85 C 55.9,235 55,261 56,287 Z M 70,157 c -4.9,5 9,15.9 15,23 l 214,243 c 9.5,3.4 18,-7.5 26.9,-10.8 L 524,298 c 6.6,-8.9 -6.2,-16.7 -12.4,-23.4 L 302,32.7 C 300.8,31.5 300,30.6 298,31 219,75.8 143,114 70,157 Z" solid-color="#000000" color-interpolation-filters="linearRGB" opacity="0.8" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path mix-blend-mode="normal" white-space="normal" isolation="auto" id="path4141" d="m 309,522 c -5.8,4.6 -4.7,17 3.8,18 6.5,-0.1 11.3,-5.4 17,-8 64.8,-38 130,-75.9 195,-114 6.1,-4.8 4.8,-18.7 -4.6,-18.4 C 448.78613,440.70065 370.7288,485.36996 309,522 Z m 0.4,-40.3 c -5.8,4.6 -4.7,17 3.8,18 6.5,-0.1 11.3,-5.4 17,-8 64.8,-38 130,-75.9 195,-114 6.1,-4.8 4.8,-18.7 -5.05,-17.85 -72.01734,39.87078 -148.55451,85.78517 -210.75,121.85 z m 0,-40 c -5.8,4.6 -4.7,17 3.8,18 6.5,-0.1 11.3,-5.4 17,-8 64.8,-38 130,-75.9 195,-114 6.1,-4.8 4.8,-18.7 -4.8,-18 -6.4,2 -149,86 -211,122 z" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 56,287 c 75,86 152,171 228,257 13.7,4.7 7.2,-16 8.5,-24.3 L 292,444 c -9,-14.6 -22.7,-26.4 -33.5,-39.9 0,0 -190,-218 -193,-219 -11.3,-4.9 -8.9,20.3 -9.25,24.85 C 55.9,235 55,261 56,287 Z M 70,157 c -4.9,5 9,15.9 15,23 l 214,243 c 9.5,3.4 18,-7.5 26.9,-10.8 L 524,298 c 6.6,-8.9 -6.2,-16.7 -12.4,-23.4 L 302,32.7 C 300.8,31.5 300,30.6 298,31 219,75.8 143,114 70,157 Z" id="path3474" isolation="auto" white-space="normal" mix-blend-mode="normal" fill="#734a08" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" fill-rule="evenodd" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path d="m 309,522 c -5.8,4.6 -4.7,17 3.8,18 6.5,-0.1 11.3,-5.4 17,-8 64.8,-38 130,-75.9 195,-114 6.1,-4.8 4.8,-18.7 -4.6,-18.4 C 448.78613,440.70065 370.7288,485.36996 309,522 Z m 0.4,-40.3 c -5.8,4.6 -4.7,17 3.8,18 6.5,-0.1 11.3,-5.4 17,-8 64.8,-38 130,-75.9 195,-114 6.1,-4.8 4.8,-18.7 -5.05,-17.85 -72.01734,39.87078 -148.55451,85.78517 -210.75,121.85 z m 0,-40 c -5.8,4.6 -4.7,17 3.8,18 6.5,-0.1 11.3,-5.4 17,-8 64.8,-38 130,-75.9 195,-114 6.1,-4.8 4.8,-18.7 -4.8,-18 -6.4,2 -149,86 -211,122 z" id="path3507" isolation="auto" white-space="normal" mix-blend-mode="normal" opacity="0.8" fill="#734a08" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" fill-rule="evenodd" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata10"/>
<path mix-blend-mode="normal" white-space="normal" isolation="auto" id="path4137" d="m 129,148 c -11,18 -4,43 16,53 19,11 44,5 56,-13 10,-32 -6,-59 -36,-59 -18,-1 -30,9 -36,19 z m 311,84 0,0 c 2,22 21,39 43,39 22,0 41,-18 39,-40 -1,-22 -20,-39 -42,-39 -22,0 -41,18 -40,40 z M 57,273 c -25,-2 -25.3,28 -7,32 l 63,12 c -7,11 -49,55 -24,60 13,4 48,-39 59,-53 l 134,27 c -15,31 -30,62 -45,94 l 106,0 c -14,-30 -29,-61 -43,-91 l 121,24 c 4,15 13,87 36,72 13,1 -1,-51 -2,-66 l 69,14 c 27,3 32,-27 1,-33 -7,-21 -9,-89 -31,-93 -22,-5 -52,53 -66,74 L 157,292 C 148,265 152,200 132,197.5 112,195 76,245 57,273 Z" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 129,148 c -11,18 -4,43 16,53 19,11 44,5 56,-13 10,-32 -6,-59 -36,-59 -18,-1 -30,9 -36,19 z m 311,84 0,0 c 2,22 21,39 43,39 22,0 41,-18 39,-40 -1,-22 -20,-39 -42,-39 -22,0 -41,18 -40,40 z M 57,273 c -25,-2 -25.3,28 -7,32 l 63,12 c -7,11 -49,55 -24,60 13,4 48,-39 59,-53 l 134,27 c -15,31 -30,62 -45,94 l 106,0 c -14,-30 -29,-61 -43,-91 l 121,24 c 4,15 13,87 36,72 13,1 -1,-51 -2,-66 l 69,14 c 27,3 32,-27 1,-33 -7,-21 -9,-89 -31,-93 -22,-5 -52,53 -66,74 L 157,292 C 148,265 152,200 132,197.5 112,195 76,245 57,273 Z" id="path4165" isolation="auto" white-space="normal" mix-blend-mode="normal" fill="#734a08" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata1976"/>
<path mix-blend-mode="normal" white-space="normal" isolation="auto" id="path4140" d="m 145,51.4 c -18.8,4.5 -31,23 -46.6,34 -12.9,8.3 -23.3,22.7 -11.8,37 15,32.7 27.4,70 14.5,106 -14,43.6 -39.6,86 -31.5,134 4.9,45.9 32.7,88 73,110 45,28.7 107,51 151,72.9 24.9,-11.4 33.39752,-20.51553 62,-34 50.9,-24 110,-47.7 137,-100 23,-44 22.6,-99 -0.4,-143 -14.9,-33 -34.2205,-81.20497 -22.7205,-119.20497 C 481.40745,121.55155 502.54348,105.53602 484.2,89.3 467,74 450,57 429,45 412,48.7 398,62 380,63 340,72 308,46.7 286,35 271,38.9 261,54.8 246,59 213.5,73.7 175,68 145,51.4 Z" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" fill-rule="evenodd" stroke-width="64" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 145,51.4 c -18.8,4.5 -31,23 -46.6,34 -12.9,8.3 -23.3,22.7 -11.8,37 15,32.7 27.4,70 14.5,106 -14,43.6 -39.6,86 -31.5,134 4.9,45.9 32.7,88 73,110 45,28.7 107,51 151,72.9 24.9,-11.4 33.39752,-20.51553 62,-34 50.9,-24 110,-47.7 137,-100 23,-44 22.6,-99 -0.4,-143 -14.9,-33 -34.2205,-81.20497 -22.7205,-119.20497 C 481.40745,121.55155 502.54348,105.53602 484.2,89.3 467,74 450,57 429,45 412,48.7 398,62 380,63 340,72 308,46.7 286,35 271,38.9 261,54.8 246,59 213.5,73.7 175,68 145,51.4 Z" id="path4158" isolation="auto" white-space="normal" mix-blend-mode="normal" fill="#734a08" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path d="m 444.8,74.9 c 24.78695,22.245963 43.44099,26.48199 24.24099,48.16149 C 452.0795,153.9795 449.1,193.9 462.6,228.9 c 11.7,35.8 35,69 34.5,108 1.6,43.9 -19.5,88 -56,112 -45,33 -82.9441,37.53354 -151,80 C 234,493 169,482 120,436 81,397 72,334 95,285 c 36,-71 35,-101 0,-177 16,-15 32,-28.1 48,-42 43,25 102,20.6 139,-13 40.9,20 77,33.7 119,19.7 16.3,-7.6 23.49503,-20.022981 43.8,2.2 z" id="path4150" isolation="auto" white-space="normal" mix-blend-mode="normal" opacity="0.9" fill="#ffffff" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path d="m 209.3,113.2 c -7.3,-5.6 -16.5,-1.6 -20.3,3.5 l -16.6,23.8 c -5.8,12.4 -3,20 7.3,25.9 l 8,24 c -5.3,7.4 -1,24.6 0.5,37 -14.8,5 -35.6,14.8 -38,30 -0.8,6.6 -2.2,14.2 0.5,19.7 18,20.2 47.9,25 74,23.7 24.7,28.5 12.4,76 -11.7,90 -8.4,4.3 -16.4,0.7 -24,2.5 -29.7,5.4 -29.5,42.6 -0.2,48 68,1.1 103,-87 80,-140 -6.3,-14 -15,-25.6 -25.4,-34.5 -2.5,-12 -14.2,-24 -24,-32.5 3.6,-16.3 -3,-44 -12.9,-50 l -8,-24.5 c 4.9,-9.4 13,-18.4 18.5,-27 l 17.9,-1.7 c 9.6,8 18.7,16 28,21.8 -1.8,13.2 -2.4,30 3.4,40.7 -4.9,91 70,122 120,107 13.9,-4.7 23.4,-8.7 31.5,-19.4 17.7,-24.8 -12.4,-50.6 -31,-35 -6.9,4.4 -10.4,12.9 -19.2,15.8 -43.8,7.7 -66,-21.5 -65.9,-56.6 23,-15.9 44,-52 38,-72 -15.9,-23.7 -32.6,-22.5 -59.7,-7.2 -7.7,-5.9 -15.6,-11.7 -23.4,-17.5 -7.3,-5.7 -15.7,-4.6 -21.8,2.7 -9,0.3 -17.2,1.2 -25.5,1.8 z m 55.9,27.8 c -5,-2 -13,-8.1 -17,-12.7 2.5,-2.5 4.8,-4.9 3.8,-8 6.7,4.9 12.5,7.9 18.25,12.05 1.95,0.65 -4.65,6.95 -5.05,8.65 z m -60.7,-8.9 c -1.5,5 -7.7,14.2 -12.2,18.6 -3.1,-2 -5.7,-3.2 -8.3,-0.7 4.1,-8.5 9,-18.6 15.35,-23.4 1.05,2.2 2.85,4.2 5.15,5.5 z m -4.1,92.8 c -2.1,-6.2 -3.2,-17.7 -1.9,-22.4 2.7,1.2 4.6,-0.2 6.2,-2.3 3.5,7.3 5.8,17.5 3.75,25.35 -2.75,-2.15 -5.25,-1.35 -8.05,-0.65 z" id="rect3389" fill="#734a08"/>
<path d="m 189.9,396.5 c -69,-6.3 -69.9,-102 -3.1,-111 l -6,-33.5 C 63,269 86,434 187,438 Z" id="path3325" opacity="0.8" fill="#734a08"/>
<path id="path3556" d="M 387,250 C 439,193 359.2,135 318,167 L 301,138 C 402,79 492,209 416,278.5 Z" opacity="0.8" fill="#734a08"/>
</svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path id="path4141" d="m 484,435 0,-292 -385,0 0,292 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 484,435 0,-292 -385,0 0,292 z" id="flowRoot3192" fill="#734a08"/>
<path d="M 226,289 126,389 126,189 Z" id="path4156" opacity="0.9" fill="#ffffff"/>
<path d="m 314,292 c -6.1,6.1 -13.8,9.2 -23,9.2 -9.6,0 -17.7,-3.2 -24,-9.6 l -122,-122 292,0.2 z" id="path4154" opacity="0.9" fill="#ffffff"/>
<path d="m 356,289 100,-100 0,200 z" id="path4152" opacity="0.9" fill="#ffffff"/>
<path d="m 244,308 4.3,4.3 c 11.6,11.3 25.6,16.9 42,16.9 16.4,0 30,-5.6 41.5,-16.9 l 4.3,-4.3 100,100 -292.55,0 z" id="path4150" opacity="0.9" fill="#ffffff"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path white-space="normal" isolation="auto" mix-blend-mode="normal" id="path4144" d="M 32,290 C 32,432 148,548 290,548 432,548 548,432 548,290 548,148 432,32 290,32 148,32 32,148 32,290 Z" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="M 32,290 C 32,432 148,548 290,548 432,548 548,432 548,290 548,148 432,32 290,32 148,32 32,148 32,290 Z" id="path4183" mix-blend-mode="normal" isolation="auto" white-space="normal" fill="#ac39ac" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path d="M 525,290 C 525,420 420,525 290,525 160,525 55,420 55,290 55,160 160,55 290,55 420,55 525,160 525,290 Z" id="circle4177" mix-blend-mode="normal" isolation="auto" white-space="normal" opacity="0.8" fill="#ffffff" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path d="M 122 163 L 122 417 L 457 417 L 457 163 L 122 163 z M 163 187 L 417 187.19922 L 310 293 C 304.7 298.3 298 301 290 301 C 281.6 301 274.59961 298.19961 269.09961 292.59961 L 163 187 z M 146 203 L 233 290 L 146 377 L 146 203 z M 434 203 L 434 377 L 347 290 L 434 203 z M 249 307 C 260.29741 318.49378 276.25955 325.22887 289.30078 325.40039 C 307.93883 323.32024 317.64861 318.35139 329 307 L 416 394 L 161 394 L 249 307 z " id="path4145" fill="#ac39ac"/>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path id="path4146" d="m 184.2,239 -100,0 40.7,23.6 -25,43 c -4.23491,8.05447 -3.850557,17.30188 0,24.6 l 39.6,69 c 1.8,-5 3.6,-9.3 5.4,-12.9 l 49,-85 40.05,24.15 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path4148" d="m 164.4,430.8 c 5.9,5.7 12.9,8.6 21,8.6 l 99,0 0,-80 -104,0 c -6.78203,11.95881 -12.71982,22.08356 -20.4,35.4 -7.18414,12.33935 -4.47208,27.18332 4.4,36 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path4150" d="m 293.1,196.7 100,0 50,-87 -40.7,23.6 -25,-43 C 372,83 365,79 356,79 l -79,0 c 3.2,3.6 5.9,7.1 8,10.7 l 48.7,85 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path4152" d="m 218.3,98 -49.8,86 c 18.9,11 41.9,24.3 69,39.6 16,-27.5 33.4,-57 51.9,-90 L 270,98 C 264.3,88 255.7,83 244.15,83 232.6,83 224,88 218.3,98 Z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path4154" d="m 372.3,312.5 -49.8,87 49.8,86 0,-46.6 49.8,0 c 9.6,0 16.9,-4.1 21.9,-12.3 l 39.6,-69 c -5.4,1.4 -9.8,2.1 -13.4,2.1 l -97.95,-0.6 c 0.0935,-15.53311 0.05,-31.06668 0.05,-46.6 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path4156" d="m 377.1,251.8 c 22,38 39.6,68 53,91 l 40,0 c 11.8,0 20.5,-5 26,-15 5.4,-9.6 5.2,-19.4 -0.5,-29.4 l -49.25,-86.1 c -2.05,1 -25.05,14.2 -69.25,39.5 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 184.2,239 -100,0 40.7,23.6 -25,43 c -4.23491,8.05447 -3.850557,17.30188 0,24.6 l 39.6,69 c 1.8,-5 3.6,-9.3 5.4,-12.9 l 49,-85 40.05,24.15 z" id="path4144" fill="#734a08"/>
<path d="m 164.4,430.8 c 5.9,5.7 12.9,8.6 21,8.6 l 99,0 0,-80 -104,0 c -6.78203,11.95881 -12.71982,22.08356 -20.4,35.4 -7.18414,12.33935 -4.47208,27.18332 4.4,36 z" id="path4142" fill="#734a08"/>
<path d="m 293.1,196.7 100,0 50,-87 -40.7,23.6 -25,-43 C 372,83 365,79 356,79 l -79,0 c 3.2,3.6 5.9,7.1 8,10.7 l 48.7,85 z" id="path4140" fill="#734a08"/>
<path d="m 218.3,98 -49.8,86 c 18.9,11 41.9,24.3 69,39.6 16,-27.5 33.4,-57 51.9,-90 L 270,98 C 264.3,88 255.7,83 244.15,83 232.6,83 224,88 218.3,98 Z" id="path4138" fill="#734a08"/>
<path d="m 372.3,312.5 -49.8,87 49.8,86 0,-46.6 49.8,0 c 9.6,0 16.9,-4.1 21.9,-12.3 l 39.6,-69 c -5.4,1.4 -9.8,2.1 -13.4,2.1 l -97.95,-0.6 c 0.0935,-15.53311 0.05,-31.06668 0.05,-46.6 z" id="path4136" fill="#734a08"/>
<path d="m 377.1,251.8 c 22,38 39.6,68 53,91 l 40,0 c 11.8,0 20.5,-5 26,-15 5.4,-9.6 5.2,-19.4 -0.5,-29.4 l -49.25,-86.1 c -2.05,1 -25.05,14.2 -69.25,39.5 z" id="flowRoot3192" fill="#734a08"/>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path id="path4146" d="M 188,205 C 51,396 105,494 127,509 l 89,-128 c -18,-12 -8,-34 16,-77 16,-28 38,-61 64,-91 18,-21 38,-41 56,-28 L 443,54.9 C 437,51 424,47 406,48 360,47.7 281,75 188,205 Z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path4148" d="m 362,192 40,28 c 4,3 15,1 17.5,-3 L 493,111 c 6,-8 4,-19 -4,-24 L 453,61.8 Z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path4150" d="m 137,516 40,28 c 4,3 15,0 17.5,-4 L 266,437 c 6,-8 3,-18 -4,-24 l -36,-25 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="M 188,205 C 51,396 105,494 127,509 l 89,-128 c -18,-12 -8,-34 16,-77 16,-28 38,-61 64,-91 18,-21 38,-41 56,-28 L 443,54.9 C 437,51 424,47 406,48 360,47.7 281,75 188,205 Z" id="path4152" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 362,192 40,28 c 4,3 15,1 17.5,-3 L 493,111 c 6,-8 4,-19 -4,-24 L 453,61.8 Z" id="path4154" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 137,516 40,28 c 4,3 15,0 17.5,-4 L 266,437 c 6,-8 3,-18 -4,-24 l -36,-25 z" id="path4156" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="M 188,205 C 51,396 105,494 127,509 l 89,-128 c -18,-12 -8,-34 16,-77 16,-28 38,-61 64,-91 18,-21 38,-41 56,-28 L 443,54.9 C 437,51 424,47 406,48 360,47.7 281,75 188,205 Z" id="path4138" fill="#734a08"/>
<path d="m 362,192 40,28 c 4,3 15,1 17.5,-3 L 493,111 c 6,-8 4,-19 -4,-24 L 453,61.8 Z" id="path4136" fill="#734a08"/>
<path d="m 137,516 40,28 c 4,3 15,0 17.5,-4 L 266,437 c 6,-8 3,-18 -4,-24 l -36,-25 z" id="path1333" fill="#734a08"/>
<path id="path4140" d="M 188,205 C 51,396 105,494 127,509 l 89,-128 c -18,-12 -8,-34 16,-77 16,-28 38,-61 64,-91 18,-21 38,-41 56,-28 L 443,54.9 C 437,51 424,47 406,48 360,47.7 281,75 188,205 Z" fill="#734a08"/>
<path id="path4142" d="m 362,192 40,28 c 4,3 15,1 17.5,-3 L 493,111 c 6,-8 4,-19 -4,-24 L 453,61.8 Z" fill="#734a08"/>
<path id="path4144" d="m 137,516 40,28 c 4,3 15,0 17.5,-4 L 266,437 c 6,-8 3,-18 -4,-24 l -36,-25 z" fill="#734a08"/>
</svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path id="path4145" d="M 543,290 A 253,253 0 0 1 290,543 253,253 0 0 1 37,290 253,253 0 0 1 290,37 253,253 0 0 1 543,290 Z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="M 543,290 A 253,253 0 0 1 290,543 253,253 0 0 1 37,290 253,253 0 0 1 290,37 253,253 0 0 1 543,290 Z" id="path3267" fill="#734a08"/>
<path d="m 305.6,471 0,-361 -28.6,0 0,361 z" id="path4143" fill="#ffffff"/>
<path d="m 133.2,176 c -9,0 -17,3.2 -24.3,9.7 -5.4,5 -9,10.6 -10.8,16.8 l -24.9,83 c -3.3816,9.92675 3.72505,17.15425 11.3,17.3 5.8,0 9.6,-3.2 11.4,-9.7 l 22.7,-76 12.4,0 -37,135 36,0 0,105 c 0,9.4 4.5,14 13.5,14 9,0 13.5,-4.7 13.5,-14 l 0,-105 13.5,0 0,106 c 0,9 4.5,13.5 13.5,13.5 9,0 13.5,-4.5 13.5,-13.5 l 0,-105 36,0 -37.8,-135 13,0 22.7,76 c 1.8,6.5 5.6,9.7 11.3,9.7 10.17001,-1.81294 15.15147,-8.88598 11.3,-17.3 l -24.9,-83 c -1.8,-5.8 -5.9,-11.4 -12.4,-16.8 -7.9,-6.5 -16.6,-9.7 -25.8,-10.2 z" id="path4141" fill="#ffffff"/>
<path d="m 192.9,142 c -1.30386,-17.62038 -13.69624,-29.38975 -29.7,-29.6 -17.28496,1.33431 -28.98803,13.98417 -29.2,29.6 1.32728,16.94133 13.77172,28.88968 29.2,29.1 17.16182,-1.21895 29.4786,-13.38168 29.7,-29.1 z" id="path4139" fill="#ffffff"/>
<path d="m 445.3,141.4 c -1.23748,-17.25187 -13.38979,-28.98634 -29.1,-29.2 -17.3663,1.32487 -28.89595,13.49205 -29.1,29.2 1.28754,16.8883 13.71941,28.98335 29.1,29.2 16.94133,-1.32728 28.88968,-13.77172 29.1,-29.2 z" id="path4137" fill="#ffffff"/>
<path d="m 377.2,176.5 c -10.4,0 -19.4,3.7 -26.8,11 -7.4,7.4 -11,16.5 -11,27.3 l 0,90 c 0,8.6 4,13 11.9,13 7.6,0 11.4,-4.3 11.4,-13 l 0,-87 14,0 0,238 c 0,10.8 5.4,16.2 16.2,16.2 10.8,0 16.2,-5.4 16.2,-16.2 l 0,-138 14,0 0,138 c 0,10.8 5.4,16.2 16.2,16.2 11.2,0 16.8,-5.4 16.8,-16.2 l 0,-238 13.5,0 0,88 c 0,9 3.8,13.5 11.4,13.5 7.6,0 11.4,-4.5 11.4,-13.5 l 0,-89 c 0,-10.4 -3.5,-19.5 -10.5,-27.3 -7,-7.8 -16,-11.6 -27.5,-12.3 z" id="flowRoot3192" fill="#ffffff"/>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path id="path4142" d="m 333.4082,239.80078 c -4.05705,52.83752 -7.97544,107.27619 -10.74218,151.79892 1.33172,12.36242 11.81493,23 25.33398,23 32.33334,-0.3331 64.66669,-0.66662 97.00003,-1 13.44016,0 24.05695,-9.94808 25.34375,-23 0.22336,-47.57134 -0.40528,-96.53651 -0.74417,-144.5997 0,-14.39987 -12.04379,-25.49157 -25.41406,-25.59375 l -84.09375,-6.00586 c -14.75458,1.04928 -25.63304,15.2893 -26.6836,25.40039 z" shape-rendering="auto" mix-blend-mode="normal" filter-blend-mode="normal" color-interpolation-filters="linearRGB" isolation="auto" white-space="normal" opacity="0.8" fill="none" solid-opacity="1" image-rendering="auto" solid-color="#000000" stroke="#ffffff" color="#000000" stroke-linejoin="round" stroke-width="64" color-rendering="auto" filter-gaussianBlur-deviation="0" color-interpolation="sRGB"/>
<path id="path4144" d="m 102,163 c -4,4 -6,11 -6,17 l 0,208 c 0,13 10,23 23,23 l 97,0 c 13,0 23,-10 23,-23 l 0,0 0,0 -6,-176 c -0.45443,-5.5379 -2.1836,-11.15846 -5,-15 -4,-4 -9,-7 -16,-10 l -92,-30 c -6.96524,-1.59555 -14.15061,1.02707 -18,6 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 333.4082,239.80078 c -4.05705,52.83752 -7.97544,107.27619 -10.74218,151.79892 1.33172,12.36242 11.81493,23 25.33398,23 32.33334,-0.3331 64.66669,-0.66662 97.00003,-1 13.44016,0 24.05695,-9.94808 25.34375,-23 0.22336,-47.57134 -0.40528,-96.53651 -0.74417,-144.5997 0,-14.39987 -12.04379,-25.49157 -25.41406,-25.59375 l -84.09375,-6.00586 c -14.75458,1.04928 -25.63304,15.2893 -26.6836,25.40039 z" id="path4137" shape-rendering="auto" mix-blend-mode="normal" color-interpolation-filters="linearRGB" isolation="auto" white-space="normal" fill="#666666" solid-opacity="1" image-rendering="auto" solid-color="#000000" color="#000000" color-rendering="auto" color-interpolation="sRGB"/>
<path d="m 102,163 c -4,4 -6,11 -6,17 l 0,208 c 0,13 10,23 23,23 l 97,0 c 13,0 23,-10 23,-23 l 0,0 0,0 -6,-176 c -0.45443,-5.5379 -2.1836,-11.15846 -5,-15 -4,-4 -9,-7 -16,-10 l -92,-30 c -6.96524,-1.59555 -14.15061,1.02707 -18,6 z" id="path6056" fill="#666666"/>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata10"/>
<path id="path4136" d="m 239,159 c -13,13 -20,31 -20,50 l 0,171 c -2,1 -5,1 -7,2 -8,2 -11,6 -11,10 l 0,25 c -1,5 4,10 14,12 19,6 42,5 64,6 29,0 59,0 86,-5 8,-3 14,-7 14,-11 l 0,0 0,-27 c 0,-2 -1,-5 -4,-7 -4,-2 -9,-4 -15,-5 l 0,-171 c 0,-19 -7,-38 -21,-51 -13,-13 -32,-21 -50,-21 -19,1 -37,8 -50,22 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 239,159 c -13,13 -20,31 -20,50 l 0,171 c -2,1 -5,1 -7,2 -8,2 -11,6 -11,10 l 0,25 c -1,5 4,10 14,12 19,6 42,5 64,6 29,0 59,0 86,-5 8,-3 14,-7 14,-11 l 0,0 0,-27 c 0,-2 -1,-5 -4,-7 -4,-2 -9,-4 -15,-5 l 0,-171 c 0,-19 -7,-38 -21,-51 -13,-13 -32,-21 -50,-21 -19,1 -37,8 -50,22 z" id="path4689" fill="#666666" color="#000000"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path id="path4138" d="m 380,421 c 10.8,34.4 53.8,16 49,-10 l -31,-161 49,0 0,172 c 0.7,28 36.7,19.7 34.8,-0.4 L 482,199 c -2,-25.7 -34.9,-19.4 -35,-0.4 l 0,16.4 -56,0 -13,-71 c -14,-35 -55.9,-17.8 -49,9 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path4140" d="m 189,215 -56,0 0,-16 c -3,-26 -34,-20 -35,0 l 0,223 c 4.3,25.9 34.9,18.6 35,-0.4 l 0,-171.6 49,0 -31,161 c -7.1,39.5 45.7,38 48.7,9.5 L 252,153 c 2,-35.8 -43.9,-37 -49.3,-9.5 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 380,421 c 10.8,34.4 53.8,16 49,-10 l -31,-161 49,0 0,172 c 0.7,28 36.7,19.7 34.8,-0.4 L 482,199 c -2,-25.7 -34.9,-19.4 -35,-0.4 l 0,16.4 -56,0 -13,-71 c -14,-35 -55.9,-17.8 -49,9 z" id="path4136" fill="#666666"/>
<path d="m 189,215 -56,0 0,-16 c -3,-26 -34,-20 -35,0 l 0,223 c 4.3,25.9 34.9,18.6 35,-0.4 l 0,-171.6 49,0 -31,161 c -7.1,39.5 45.7,38 48.7,9.5 L 252,153 c 2,-35.8 -43.9,-37 -49.3,-9.5 z" id="line6215" fill="#666666"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata10"/>
<path id="path4137" d="m415 154c-15.3.1-23.8 14.5-34.7 23L333 220c-73 0-147 0-220 0-20 .2-30 27.8-15.3 41 11 10.6 27.3 5.8 41 6.9 48 0 95 0 142 0l-52 47.9c-39.5.3-79-.5-118 .4-19.8 2.6-26.7 31-10.3 42.6 11.8 8.3 26.9 3.9 40 5 12 0 24 0 36 0-10.3 10-22 18.8-31 30-10.9 16.7 6.3 40.6 25.6 35.6 13-3.8 21-16 31.5-24.3C217 392 232 378 247 364c74-.1 147 .1 220-.1 19.9-.8 29.5-28.6 14.2-41-11.3-10-27-5.3-41-6.5-47 0-94 0-141 0l52-47.9c38.7-.1 77 .2 116-.1 19.9-1 29-28.9 13.8-41.6-11.6-10-27.6-5.1-41.5-6.3-12 0-24 0-36 0 10.3-10 22-18.9 31-30 9.8-15.3-2.2-36.7-20.3-36.4z" fill="none" stroke="#ffffff" stroke-linejoin="round" stroke-width="64" opacity="0.8"/>
<path d="m415 154c-15.3.1-23.8 14.5-34.7 23L333 220c-73 0-147 0-220 0-20 .2-30 27.8-15.3 41 11 10.6 27.3 5.8 41 6.9 48 0 95 0 142 0l-52 47.9c-39.5.3-79-.5-118 .4-19.8 2.6-26.7 31-10.3 42.6 11.8 8.3 26.9 3.9 40 5 12 0 24 0 36 0-10.3 10-22 18.8-31 30-10.9 16.7 6.3 40.6 25.6 35.6 13-3.8 21-16 31.5-24.3C217 392 232 378 247 364c74-.1 147 .1 220-.1 19.9-.8 29.5-28.6 14.2-41-11.3-10-27-5.3-41-6.5-47 0-94 0-141 0l52-47.9c38.7-.1 77 .2 116-.1 19.9-1 29-28.9 13.8-41.6-11.6-10-27.6-5.1-41.5-6.3-12 0-24 0-36 0 10.3-10 22-18.9 31-30 9.8-15.3-2.2-36.7-20.3-36.4" id="path2900" fill="#666666"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata10"/>
<path mix-blend-mode="normal" white-space="normal" isolation="auto" id="path4149" d="m 376,171.8 c -75,16.7 -151,32.9 -226,50 -19,6.5 -23.5,35.9 -6.6,47 14.5,10.9 32.7,1.6 48,-0.8 90,-19.7 180,-38.9 269,-59 20,-6.7 23.6,-38 4.6,-48.7 -4,-2.6 -8.8,-4 -13.3,-4.25 C 426.5,159.6 402,166.8 376,171.8 Z" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path mix-blend-mode="normal" white-space="normal" isolation="auto" id="path4151" d="m 398,413 c 0.3,13.9 13.7,25.4 27.4,24 13.8,-0.1 27.5,0.2 41,-0.1 13.5,-1 24,-14.2 22.9,-27.6 l 0,-132 C 489,264 475,253 462,254 l -39,0 c -14.4,-0.4 -26.8,13 -25.2,27.2 z" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path mix-blend-mode="normal" white-space="normal" isolation="auto" id="path4153" d="m 95.4,175.5 c 0.1,79 -0.2,158 0.1,237 1.3,17.8 19.7,31 37,28 14.2,-0.9 29,2.4 42.8,-2.8 13.4,-6.1 20,-21.6 18.3,-35.8 l 0,-137 c -15.3,4 -32.7,13.7 -47.9,4 -16.9,-9.3 -12.9,-37.7 4.3,-44 14,-3.8 31.8,-5.3 43,-11.4 -0.4,-16.9 1,-34 -0.9,-50.8 -3.8,-16 -21,-26 -37,-23.8 C 146,139 136,139 127,139 108.2,138.2 92.6,157.2 95.4,175.5 Z" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 376,171.8 c -75,16.7 -151,32.9 -226,50 -19,6.5 -23.5,35.9 -6.6,47 14.5,10.9 32.7,1.6 48,-0.8 90,-19.7 180,-38.9 269,-59 20,-6.7 23.6,-38 4.6,-48.7 -4,-2.6 -8.8,-4 -13.3,-4.25 C 426.5,159.6 402,166.8 376,171.8 Z" id="path3732" isolation="auto" white-space="normal" mix-blend-mode="normal" fill="#666666" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path d="m 398,413 c 0.3,13.9 13.7,25.4 27.4,24 13.8,-0.1 27.5,0.2 41,-0.1 13.5,-1 24,-14.2 22.9,-27.6 l 0,-132 C 489,264 475,253 462,254 l -39,0 c -14.4,-0.4 -26.8,13 -25.2,27.2 z" id="rect3827" isolation="auto" white-space="normal" mix-blend-mode="normal" opacity="0.8" fill="#666666" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path d="m 95.4,175.5 c 0.1,79 -0.2,158 0.1,237 1.3,17.8 19.7,31 37,28 14.2,-0.9 29,2.4 42.8,-2.8 13.4,-6.1 20,-21.6 18.3,-35.8 l 0,-137 c -15.3,4 -32.7,13.7 -47.9,4 -16.9,-9.3 -12.9,-37.7 4.3,-44 14,-3.8 31.8,-5.3 43,-11.4 -0.4,-16.9 1,-34 -0.9,-50.8 -3.8,-16 -21,-26 -37,-23.8 C 146,139 136,139 127,139 108.2,138.2 92.6,157.2 95.4,175.5 Z" id="rect3925" isolation="auto" white-space="normal" mix-blend-mode="normal" opacity="0.8" fill="#666666" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata10"/>
<path id="path4140" d="m 121.8,138.8 c -2.9,2.9 -4.6,7.1 -4.5,11.2 l 0,22.6 c -7.79341,-0.39187 -16.66305,0.75984 -21.8,5.6 -3.8,3.6 -6,8.8 -6,14 0,5.2 2.2,10.3 6,14 7.08798,5.84684 13.34906,5.6 21.8,5.6 l 0,59 c -7.79341,-0.39187 -16.66305,0.75984 -21.8,5.6 -3.8,3.6 -6,8.8 -6,14 0,5.2 2.2,10.3 6,14 7.08798,5.84684 13.34906,5.6 21.8,5.6 l 0,67.4 32,0 0,-67.4 75,0 c 0,-7.86667 0,-15.73333 0,-23.6 l 140,0 0,23.6 69,0 0,67.4 32,0 0,-67.4 c 7.04399,0.33687 14.89745,-1.35759 19.4,-5.6 3.8,-3.6 5.9,-8.8 5.9,-14 0,-5.2 -2.2,-10.3 -5.9,-14 -6.43243,-5.21599 -11.9333,-5.6 -19.4,-5.6 l 0,-59 c 7.04399,0.33687 14.89745,-1.35759 19.4,-5.6 3.8,-3.6 5.9,-8.8 5.9,-14 0,-5.2 -2.2,-10.3 -5.9,-14 -6.43243,-5.21599 -11.9333,-5.6 -19.4,-5.6 l 0,-22.6 c 0.1,-4.2 -1.7,-8.4 -4.7,-11.3 -3,-3 -7.3,-4.7 -11.6,-4.6 -4.2,0.1 -8.3,1.8 -11.2,4.8 -2.9,2.9 -4.6,7.1 -4.5,11.2 l 0,22.6 -285,0 0,-22.6 c 0.1,-4.2 -1.7,-8.4 -4.7,-11.3 -3,-3 -7.3,-4.7 -11.1,-4.7 -3.7,0 -7.8,1.7 -10.7,4.7 z m 311.5,73.4 0,59 -285,0 0,-59 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path4142" d="m 247,354 95,0 0,-50 -95,0 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" white-space="normal" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path4144" d="m 215,418 c 54,0 108,0 162,0 l 0,-50 c -54,0 -108,0 -162,0 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" white-space="normal" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 121.8,138.8 c -2.9,2.9 -4.6,7.1 -4.5,11.2 l 0,22.6 c -7.79341,-0.39187 -16.66305,0.75984 -21.8,5.6 -3.8,3.6 -6,8.8 -6,14 0,5.2 2.2,10.3 6,14 7.08798,5.84684 13.34906,5.6 21.8,5.6 l 0,59 c -7.79341,-0.39187 -16.66305,0.75984 -21.8,5.6 -3.8,3.6 -6,8.8 -6,14 0,5.2 2.2,10.3 6,14 7.08798,5.84684 13.34906,5.6 21.8,5.6 l 0,67.4 32,0 0,-67.4 75,0 c 0,-7.86667 0,-15.73333 0,-23.6 l 140,0 0,23.6 69,0 0,67.4 32,0 0,-67.4 c 7.04399,0.33687 14.89745,-1.35759 19.4,-5.6 3.8,-3.6 5.9,-8.8 5.9,-14 0,-5.2 -2.2,-10.3 -5.9,-14 -6.43243,-5.21599 -11.9333,-5.6 -19.4,-5.6 l 0,-59 c 7.04399,0.33687 14.89745,-1.35759 19.4,-5.6 3.8,-3.6 5.9,-8.8 5.9,-14 0,-5.2 -2.2,-10.3 -5.9,-14 -6.43243,-5.21599 -11.9333,-5.6 -19.4,-5.6 l 0,-22.6 c 0.1,-4.2 -1.7,-8.4 -4.7,-11.3 -3,-3 -7.3,-4.7 -11.6,-4.6 -4.2,0.1 -8.3,1.8 -11.2,4.8 -2.9,2.9 -4.6,7.1 -4.5,11.2 l 0,22.6 -285,0 0,-22.6 c 0.1,-4.2 -1.7,-8.4 -4.7,-11.3 -3,-3 -7.3,-4.7 -11.1,-4.7 -3.7,0 -7.8,1.7 -10.7,4.7 z m 311.5,73.4 0,59 -285,0 0,-59 z" id="path2900" opacity="0.8" fill="#666666" color="#000000"/>
<path d="m 247,354 95,0 0,-50 -95,0 z" id="path4138" fill="#666666" isolation="auto" color-rendering="auto" white-space="normal" solid-opacity="1" mix-blend-mode="normal" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path d="m 215,418 c 54,0 108,0 162,0 l 0,-50 c -54,0 -108,0 -162,0 z" id="path4403" fill="#666666" isolation="auto" color-rendering="auto" white-space="normal" solid-opacity="1" mix-blend-mode="normal" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
</svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" version="1.0">
<metadata id="metadata7"/>
<path id="path4141" d="M 72.400391 148.19922 L 72 244 L 144 244 L 144 292 L 48 292 L 48 349 L 77.699219 363.30078 L 102.59961 363.30078 C 97.999609 371.00078 96 380 96 388 C 96 414.5 117.5 436 144 436 C 170.5 436 192 414.5 192 388 C 192 379.5 189.70039 371.1 185.40039 364 C 255.40039 364.1 324.40039 364.1 394.40039 364 C 390.10039 371.3 387.80078 379.7 387.80078 388 C 387.80078 414.5 409.30078 436 435.80078 436 C 462.30078 436 483.80078 414.5 483.80078 388 C 483.80078 379.5 481.49922 371.09922 477.19922 363.69922 L 502.09961 363.69922 L 531.80078 349.40039 L 531.80078 292.40039 L 435.80078 292.40039 L 435.80078 244.40039 L 507.80078 244.40039 L 507.80078 148.40039 L 72.400391 148.19922 z M 168.80078 244.40039 L 411.80078 244.40039 L 411.80078 292.40039 C 330.00078 292.00039 249 292 168 292 L 168.80078 244.40039 z " mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="M 72.400391 148.19922 L 72 244 L 144 244 L 144 292 L 48 292 L 48 349 L 77.699219 363.30078 L 102.59961 363.30078 C 97.999609 371.00078 96 380 96 388 C 96 414.5 117.5 436 144 436 C 170.5 436 192 414.5 192 388 C 192 379.5 189.70039 371.1 185.40039 364 C 255.40039 364.1 324.40039 364.1 394.40039 364 C 390.10039 371.3 387.80078 379.7 387.80078 388 C 387.80078 414.5 409.30078 436 435.80078 436 C 462.30078 436 483.80078 414.5 483.80078 388 C 483.80078 379.5 481.49922 371.09922 477.19922 363.69922 L 502.09961 363.69922 L 531.80078 349.40039 L 531.80078 292.40039 L 435.80078 292.40039 L 435.80078 244.40039 L 507.80078 244.40039 L 507.80078 148.40039 L 72.400391 148.19922 z M 168.80078 244.40039 L 411.80078 244.40039 L 411.80078 292.40039 C 330.00078 292.00039 249 292 168 292 L 168.80078 244.40039 z " id="path4138" fill="#734a08"/>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" version="1.0">
<metadata id="metadata3003"/>
<path id="path3760" d="m489 124l-402 0c-14.8 0-26.9 11.8-26.9 26.4l0 283c0 14.5 12 26.5 26.9 26.5l402 0c15 .1 27-10.9 27-25.9l0-283c0-14.5-12-26.4-26.9-26.4"/>
<path d="m 84,176 0,89 c 0,8 7,15 16,15 l 89,0 c 8,0 15,-7 15,-15 l 0,-89 c 0,-9 -7,-16 -15,-16 l -89,0 c -9,0 -16,7 -16,16 z m 144,0 0,89 c 0,9 7,16 16,15 l 89,0 c 8,0 15,-7 15,-15 l 0,-89 c 0,-9 -7,-16 -16,-16 l -89,0 c -8,0 -15,7 -15,16 z m 144,0 0,89 c 0,8 7,15 16,15 l 89,0 c 8,0 15,-7 15,-15 l 0,-89 c 0,-9 -7,-16 -15,-16 l -89,0 c -9,0 -16,7 -16,16 z" id="path3758-6" opacity="0.7" fill="#ffffff"/>
<path id="rect3015" d="m276 3.6l24 0 0 132-24 0z"/>
</svg>

After

Width:  |  Height:  |  Size: 794 B

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" height="580" width="580">
<metadata id="metadata3003"/>
<path id="path15" d="m 156.2,183.43782 30,170 c 5.7,30.7 27.3,56.9 58,66 8.1,2.5 16.3,3.8 24.4,3.8 l 59,0.2 c 26.7,0 26.8,-36 0.2,-35.8 l -56,-0.2 c -5.4,-0.4 -11.2,-0.6 -16.6,-2.3 -18,-5.7 -30.7,-20.8 -34,-38 l -30.2,-169.5 c -2.1,-11.9 -9.9,-17.3 -17.8,-17.7 -10.1,-0.4 -19.8,8.3 -17,23.5 z m 113.40613,-23.43784 c -23.41349,0 -42.39388,-18.98035 -42.39388,-42.39385 0,-23.413508 18.98039,-42.393859 42.39388,-42.393859 23.41349,0 42.39387,18.980351 42.39387,42.393859 0,23.4135 -18.98038,42.39385 -42.39387,42.39385 z M 420,4.6386719 317.51758,235.22656 310.5,194.1875 c -1.5,-8.35 -16.2,-21.14961 -34.25,-21.84961 -20.25,-0.7 -36.25,15.30078 -36.25,35.30078 5.38217,38.23946 12.86696,78.74425 17.18359,103.67188 C 261.50022,336.23818 276.2,349.03711 294,349.03711 l 90,0 0.19922,111.10156 c 0.2,5.1 8.10078,12.59961 17.80078,12.59961 9.7,0 17.60078,-7.49961 17.80078,-12.59961 L 420,323.03711 c 0,-14.6 -12,-26.5 -27,-26.5 l -65,0 -3.81445,-22.31445 L 444,4.6386719 Z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.0" width="580" height="580">
<metadata id="metadata1976"/>
<defs id="defs4">
<marker viewBox="0 0 10 10" refY="5" refX="10" orient="auto" markerWidth="4" markerUnits="strokeWidth" markerHeight="3" id="ArrowStart">
<path id="path2111" d="M 10 0 L 0 5 L 10 10 z"/>
</marker>
<marker viewBox="0 0 10 10" refY="5" orient="auto" markerWidth="4" markerUnits="strokeWidth" markerHeight="3" id="ArrowEnd">
<path id="path2108" d="M 0 0 L 10 5 L 0 10 z"/>
</marker>
</defs>
<circle id="path4175" cx="290" cy="290" r="91.4" fill="#111" stroke="#fff" stroke-linejoin="bevel" stroke-linecap="square" stroke-width="16"/>
</svg>

After

Width:  |  Height:  |  Size: 867 B

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="580" width="580" version="1.0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
<title>other</title>
<metadata>
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title>other</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<circle opacity=".8" cx="290" cy="290" r="145" fill="#fff"/>
<circle cy="290" cx="290" r="116" fill="#0092DA"/>
</svg>

After

Width:  |  Height:  |  Size: 651 B

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="580" width="580" version="1.0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
<title>other</title>
<metadata>
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title>other</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<circle opacity=".8" cx="290" cy="290" r="145" fill="#fff"/>
<circle cy="290" cx="290" r="116" fill="#2d51bc"/>
</svg>

After

Width:  |  Height:  |  Size: 651 B

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="580" width="580" version="1.0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
<title>other</title>
<metadata>
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title>other</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<circle opacity=".8" cx="290" cy="290" r="145" fill="#fff"/>
<circle cy="290" cx="290" r="116" fill="#AC39AC"/>
</svg>

After

Width:  |  Height:  |  Size: 651 B

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.0" width="580" height="580">
<metadata id="metadata1976"/>
<defs id="defs4">
<marker viewBox="0 0 10 10" refY="5" refX="10" orient="auto" markerWidth="4" markerUnits="strokeWidth" markerHeight="3" id="ArrowStart">
<path id="path2111" d="M 10 0 L 0 5 L 10 10 z"/>
</marker>
<marker viewBox="0 0 10 10" refY="5" orient="auto" markerWidth="4" markerUnits="strokeWidth" markerHeight="3" id="ArrowEnd">
<path id="path2108" d="M 0 0 L 10 5 L 0 10 z"/>
</marker>
</defs>
<circle id="path4175" cx="290" cy="290" r="91.4" fill="#fff" stroke="#000" stroke-linejoin="bevel" stroke-linecap="square" stroke-width="36"/>
</svg>

After

Width:  |  Height:  |  Size: 867 B

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata10"/>
<path id="path4143" d="M 267.7,48.2 65,134 c -6.484346,3.30467 -11.877074,10.91674 -11.6,17.4 L 71,425 c 0.3,5.5 3.5,10.3 8.5,12.8 L 305,541 c 5.3,4.6 13,5 18.7,1 L 504,418 c 3.6,-2.7 5.8,-6.8 6,-11.3 L 529,132 c -0.3688,-8.45181 -5.43286,-15.06109 -12.8,-17.4 L 277,47.6 c -2.99801,-1.126334 -6.72717,-0.439814 -9.3,0.6 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="M 267.7,48.2 65,134 c -6.484346,3.30467 -11.877074,10.91674 -11.6,17.4 L 71,425 c 0.3,5.5 3.5,10.3 8.5,12.8 L 305,541 c 5.3,4.6 13,5 18.7,1 L 504,418 c 3.6,-2.7 5.8,-6.8 6,-11.3 L 529,132 c -0.3688,-8.45181 -5.43286,-15.06109 -12.8,-17.4 L 277,47.6 c -2.99801,-1.126334 -6.72717,-0.439814 -9.3,0.6 z" id="path4772" fill="#39ac39"/>
<path d="M 471,134 317,215 114,146 274,78 Z" id="path4770" opacity="0.2" fill="#ffffff"/>
<path d="M 480,397 331,500 333,242 497,157 Z" id="path4768" opacity="0.4" fill="#ffffff"/>
<path d="M 303,243 299,505 100,414 85,172 Z" id="path4763" opacity="0.1" fill="#ffffff"/>
<path d="m 297,112 c -14,3 -40,6 -37,25 l -61,-22 -37,17 177,62 32,-15 c 3,-3 -10,-4 -14,-7 -2,-2 22,1 30,-1 17,0 47,-18 23,-33 -28,-17 -62,-25 -95,-27 -6.07812,-0.46316 -12.45647,0.95107 -18,1 z m 64,44 c -19,10 -42,2 -60.5,-5 -18.5,-7 1.5,-17 14.5,-18 15,2 47,6 46,23 z" id="path4749" fill="#ffffff"/>
<path d="m 108,271 54,31 c 5,0 11,-11 23,-10 16,4 32,17 31,35 -19,0 -37,-4 -55,-8 -17,-4 -41,-11 -51,8 -10,31 9,66 34,84 20,13 44,26 69,19 15,-13 11,9 18,19 l 47,21 c 15,10 2,-10 1,-19 -3,-34 -3,-68 -5,-102 -4,-33 -23,-63 -52,-79 -27,-14 -54,-30 -85,-31 -18,0 -28,15 -29,32 z m 88,89 c 12,1 23,-1 22,16 -4,20 -17,31 -33,21 -13,-5 -27,-24 -17,-32 9.03852,-7.74001 18.7737,-5.08293 28,-5 z" id="path4754" fill="#ffffff"/>
<path id="path4167" d="m 437,320 c -11.9,-18.4 -37,7.5 -44,20.4 -6,12.5 -16.7,41 3.5,45 C 416,382 431,365 437,347 l 46,-21 c -15.6,49 -60,83 -107,101 -14,6.2 -35.8,2.2 -38.6,-15.4 -5.7,-42 20.9,-81 52,-106 21,-15 44,-31.5 71,-34.4 11.2,-0.9 21,6.2 23.6,17 z" fill="#ffffff"/>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path d="M 284.92932,46.525818 C 274,47 277.04368,53.955904 267.7207,73.837891 258.14927,95.491303 248.6831,117.59262 239.3125,140 L 73,140 c -13.9,1.3 -9.600781,16.99922 -10.300781,26.69922 l 0,258 c 1.3,13.9 17.001172,9.60078 26.701172,10.30078 l 33.503909,0 c -9.35603,24.05463 -18.65769,47.79942 -27.9043,71 -4,15 18,26 27,13 11.43556,-27.48546 22.78885,-55.58967 34.0957,-84 l 268.52149,0 c 11.53623,28.63732 23.2612,56.45785 35.38281,83 9.2,12.9 31.6,2.00078 27,-13.19922 C 477.2881,481.96215 467.70803,458.61482 458.19922,435 l 53.20117,0 c 13.9,-1.3 9.59883,-16.99922 10.29883,-26.69922 l 0,-258 C 519.99922,136.00078 504,141 495,140 l -152.89453,0 C 329.91675,110.2758 317.5796,81.154335 305,53 302.1875,48.03125 295.85864,46.051636 284.92932,46.525818 Z M 291,98 c 6.25468,13.82083 12.3721,27.84172 18.38477,42 l -36.17188,0 C 279.12468,125.82297 285.04917,111.78088 291,98 Z" id="path4144" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" white-space="normal" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" fill-rule="evenodd" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path4137" d="M267 76C206 214 150 368 95 506 91 521 113 532 122 519 179 382 234 230 291 98 353 235 402 391 460 518c9.2 12.9 31.6 2 27-13.2C425 359 368 194 305 53 302 47.7 295 45.8 289 46 274 47 272 59 267 76" fill="#ffffff" isolation="auto" color-rendering="auto" white-space="normal" solid-opacity="1" mix-blend-mode="normal" color-interpolation-filters="linearRGB" shape-rendering="auto" fill-rule="evenodd" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path d="m 95,506 c -4,15 18,26 27,13 57,-137 112,-289 169,-421 62,137 111,293 169,420 9.2,12.9 31.6,2 27,-13.2 C 425,359 368,194 305,53 302,47.7 295,45.8 289,46 274,47 277.04348,53.956522 267.7205,73.838509 206.7205,211.83851 150,368 95,506 Z" id="path3526" isolation="auto" white-space="normal" mix-blend-mode="normal" opacity="0.8" fill="#39ac39" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" fill-rule="evenodd" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path d="m 62.7,166.7 0,258 c 1.3,13.9 17,9.6 26.7,10.3 l 422,0 c 13.9,-1.3 9.6,-17 10.3,-26.7 l 0,-258 C 520,136 504,141 495,140 l -422,0 c -13.9,1.3 -9.6,17 -10.3,26.7 z" id="rect3544" isolation="auto" white-space="normal" mix-blend-mode="normal" fill="#39ac39" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path d="M 241 256 L 241 402 L 279 402 C 279 397 278 389 280 387 C 288 399 303 406 319 403 C 355 399 378 324 334 300 C 318 291 294 294 281 306 L 281 256 L 241 256 z M 299.5 324 C 318 324 319 349 316 363 C 309 380 284 378 282 360 C 279 347 281 324 299.5 324 z " id="path4147" fill="#ffffff"/>
<path d="M 156.68359 176.89453 C 151.71191 176.85938 146.0625 177 139.5 177 C 122 177 102 180 93 196 C 87 205 88 208 99 209 C 108 211 118 211 127 212 C 131 198 151 197 161 204 C 169 214 156 218 149 219 C 132 223 114 225 98 233 C 79 244 83 276 103 283 C 123 291 148 286 164 272 C 167 278 164 286 178 285 C 188 285 197 285 207 284 C 198 263 204 240 202 217 C 202 201 194 187 177 180 C 171.375 177.5 164.96973 176.95312 156.68359 176.89453 z M 162 234 C 167 246 158 264 144 264 C 122 270 118 242 139 238 C 146 236 155 236 162 234 z " id="path4142" fill="#ffffff"/>
<path d="m 368,206.5 c -9.6,22.5 -6.3,54 15,68 19.5,14 45,13.6 67.9,8.6 16.6,-4.1 27.9,-18 33.5,-33.6 C 464,246 451,244 447,244 c -4,14 -24,21 -35,12 -14,-11 -11,-35 -1,-47 13,-13 34,-5 38,8 25,-3.5 45,7.9 27,-17.6 C 465,182 448,176 424,177 c -25,-0.5 -46.6,8.3 -56,29.5 z" id="path4166" fill="#ffffff"/>
</svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path id="path4155" d="m 42.6,243.7 288,3.5 209,-109 c 4.2,-2.2 2.8,-8.5 -2,-8.7 l -266,-9.8 -231,115.15 c -4.3,2.35 -2.8,8.85 2,8.85 z m 120,14 c -2,-0.1 -3.9,1.2 -4.5,3.1 l -24.8,73 c -1.2,3.4 1.8,6.7 5.4,6 73.48294,-36.2841 149.88762,-27.80931 217.4,-2.4 43.28593,-48.43133 83.19649,-67.21816 140.8,-74.1 3.7,-0.4 5.4,-4.8 3,-7.6 L 451,202 c -0.9,-1.1 -116.7,60.5 -116.7,60.5 z M 111,248 c -21,37.9 -25,87 -28.8,124 -24.572451,7.23369 -16.973863,47.73377 -19,72.6 -0.372542,7.00789 7.375016,6.7936 9.1,1.5 -1.560988,6.78747 2.952867,8.53492 7.2,6.3 1.93466,5.29774 6.718935,5.66442 9.3,-0.2 -0.617692,5.75194 5.811108,7.11473 8.6,3.1 0.02276,5.08361 6.31592,6.88635 9,0.8 8.70178,-23.74187 29.26634,-56.23234 12.9,-77.2 1.8,-29.8 3.2,-55 13.9,-90 3.1,-8.4 5,-18.7 14.4,-24 L 144,247.2 Z" mix-blend-mode="normal" isolation="auto" white-space="normal" solid-color="#000000" color-interpolation-filters="linearRGB" opacity="0.8" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" fill-rule="evenodd" stroke-width="64" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path white-space="normal" isolation="auto" mix-blend-mode="normal" d="m 42.6,243.7 288,3.5 209,-109 c 4.2,-2.2 2.8,-8.5 -2,-8.7 l -266,-9.8 -231,115.15 c -4.3,2.35 -2.8,8.85 2,8.85 z m 120,14 c -2,-0.1 -3.9,1.2 -4.5,3.1 l -24.8,73 c -1.2,3.4 1.8,6.7 5.4,6 73.48294,-36.2841 149.88762,-27.80931 217.4,-2.4 43.28593,-48.43133 83.19649,-67.21816 140.8,-74.1 3.7,-0.4 5.4,-4.8 3,-7.6 L 451,202 c -0.9,-1.1 -116.7,60.5 -116.7,60.5 z M 111,248 c -21,37.9 -25,87 -28.8,124 -24.572451,7.23369 -16.973863,47.73377 -19,72.6 -0.372542,7.00789 7.375016,6.7936 9.1,1.5 -1.560988,6.78747 2.952867,8.53492 7.2,6.3 1.93466,5.29774 6.718935,5.66442 9.3,-0.2 -0.617692,5.75194 5.811108,7.11473 8.6,3.1 0.02276,5.08361 6.31592,6.88635 9,0.8 8.70178,-23.74187 29.26634,-56.23234 12.9,-77.2 1.8,-29.8 3.2,-55 13.9,-90 3.1,-8.4 5,-18.7 14.4,-24 L 144,247.2 Z" id="path2662" fill="#39ac39" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" fill-rule="evenodd" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path id="path4133" d="m 468.1,97.2 c 0,-5.9 -81,-10.8 -181,-10.8 -100,0 -181,4.8 -181,10.8 51.64415,50.6351 106.67027,100.13669 160,149.8 l 0,168 c -34.34272,24.51831 -69.25673,49.67779 -104.5,74.8 0,4.1 56,7.4 125,7.4 69,0 125,-3.3 125,-7.4 C 375.74331,463.63472 338.14159,437.22747 306.9,415 l 0,-168 C 370.6306,189.65724 408.28133,154.1855 468.1,97.2 Z M 281.5,218 l -77,-71.8 c -2.9,-2.7 -2,-4.9 1.9,-4.9 l 162,0 c 3.9,0 4.8,2.2 1.9,4.9 L 292.65,218 c -3.55,2.7 -8.25,2.7 -11.15,0 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 468.1,97.2 c 0,-5.9 -81,-10.8 -181,-10.8 -100,0 -181,4.8 -181,10.8 51.64415,50.6351 106.67027,100.13669 160,149.8 l 0,168 c -34.34272,24.51831 -69.25673,49.67779 -104.5,74.8 0,4.1 56,7.4 125,7.4 69,0 125,-3.3 125,-7.4 C 375.74331,463.63472 338.14159,437.22747 306.9,415 l 0,-168 C 370.6306,189.65724 408.28133,154.1855 468.1,97.2 Z M 281.5,218 l -77,-71.8 c -2.9,-2.7 -2,-4.9 1.9,-4.9 l 162,0 c 3.9,0 4.8,2.2 1.9,4.9 L 292.65,218 c -3.55,2.7 -8.25,2.7 -11.15,0 z" id="path2209" fill="#734a08"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata10"/>
<path mix-blend-mode="normal" white-space="normal" isolation="auto" id="path4141" d="m 258,42.5 c -7,-0.5 -15,0 -22,0.2 -44,1.3 -89,3.2 -130,20.3 -11,11 -5,27 -6,41 l 4,316 c -12.5,14.8 -26,32.6 -22.6,53 7.1,35 44.7,51 76,60 55.9,14 116,13.4 172,0.7 32.9,-8.6 72,-22.8 83,-58 1.3,-28 -7.8,-31.9 -18.9,-53 0.3,-35.4 -1.8,-41 13.6,-39.9 19.9,-3.1 40.6,-2.7 59.8,-8.5 16.5,-6.5 21.4,-24 22,-40 L 510,144 c -1,-23 -25,-39 -47,-33 -23,0 -46,1 -69,2 -1,-15 2,-32 -2,-46 C 359.32799,46.800924 296.18643,42.747697 258,42.5 Z M 466,146 c 17.91141,3.78666 6.52116,33.08254 5.9,46 -5.6,48.8 -11.6,98 -17,146 -19.39932,7.55772 -41.39362,8.57356 -62.9,12 l 1,-201 z" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 258,42.5 c -7,-0.5 -15,0 -22,0.2 -44,1.3 -89,3.2 -130,20.3 -11,11 -5,27 -6,41 l 4,316 c -12.5,14.8 -26,32.6 -22.6,53 7.1,35 44.7,51 76,60 55.9,14 116,13.4 172,0.7 32.9,-8.6 72,-22.8 83,-58 1.3,-28 -7.8,-31.9 -18.9,-53 0.3,-35.4 -1.8,-41 13.6,-39.9 19.9,-3.1 40.6,-2.7 59.8,-8.5 16.5,-6.5 21.4,-24 22,-40 L 510,144 c -1,-23 -25,-39 -47,-33 -23,0 -46,1 -69,2 -1,-15 2,-32 -2,-46 C 359.32799,46.800924 296.18643,42.747697 258,42.5 Z M 466,146 c 17.91141,3.78666 6.52116,33.08254 5.9,46 -5.6,48.8 -11.6,98 -17,146 -19.39932,7.55772 -41.39362,8.57356 -62.9,12 l 1,-201 z" id="path4146" isolation="auto" white-space="normal" mix-blend-mode="normal" fill="#734a08" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path d="M 349.90039 121.44922 C 258.00039 121.39922 206 171.00078 136 131.30078 L 139 430 C 162 450 193 457 222 459 C 268 460 318 456 357 428 L 358.80078 122 C 355.80078 121.9 352.80039 121.89922 349.90039 121.44922 z M 373 454 C 350 472 322 480 293 485 C 236 493 170 494 122 455 C 104 479 144 491 161 497 C 212 512 268 511 320 499 C 341 493 369 488 378 466 C 378 462 376 458 373 454 z " id="path4156" opacity="0.9" fill="#ffffff" isolation="auto" color-rendering="auto" white-space="normal" solid-opacity="1" mix-blend-mode="normal" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path d="m 135,90 0.5,41.8 c 73,41 126,-13.3 223,-10.2 L 359,89 C 341,85 323,82 305,80 283.6,78.9 262.1,78 241,78.1 205,78 169,81 135,90 Z" id="path2209" opacity="0.5" fill="#ffffff"/>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path white-space="normal" isolation="auto" mix-blend-mode="normal" id="path4136" d="m 76,124 c 0,0 -11,85 2,172 7,43 20,86 44,120 25,33 61,56 112,56 l 28,0 c 51.51511,-5.744 85.58808,-23.28584 117,-65 13,-1 15.89175,-1.19638 36,-5 28.75421,-7.40611 86.74641,-36.73875 112,-88 18.7349,-54.09102 18.31184,-115.43724 -17,-155 -10,-10 -25,-19 -42,-19 l -1,0 0,0 c -17,1 -31,5 -45,11 -1,-17 -3,-27 -3,-27 0,-5 -4,-8 -9,-8 l -324,0 c -5,0 -9,3 -10,8 z m 412,85 0,0 c 7.4375,29.47253 9.30868,62.16521 -2,85 l 0,1 0,0 c -14,31 -46,54 -80,62 -7.02179,6.00578 9.19723,-48.68941 11,-61 5,-34 7,-67 7,-95 15,-8 30,-14 44,-15 10.6253,1.74638 16.23838,14.33425 20,23 z" solid-color="#000000" color-interpolation-filters="linearRGB" opacity="0.8" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 76,124 c 0,0 -11,85 2,172 7,43 20,86 44,120 25,33 61,56 112,56 l 28,0 c 51.51511,-5.744 85.58808,-23.28584 117,-65 13,-1 15.89175,-1.19638 36,-5 28.75421,-7.40611 86.74641,-36.73875 112,-88 18.7349,-54.09102 18.31184,-115.43724 -17,-155 -10,-10 -25,-19 -42,-19 l -1,0 0,0 c -17,1 -31,5 -45,11 -1,-17 -3,-27 -3,-27 0,-5 -4,-8 -9,-8 l -324,0 c -5,0 -9,3 -10,8 z m 412,85 0,0 c 7.4375,29.47253 9.30868,62.16521 -2,85 l 0,1 0,0 c -14,31 -46,54 -80,62 -7.02179,6.00578 9.19723,-48.68941 11,-61 5,-34 7,-67 7,-95 15,-8 30,-14 44,-15 10.6253,1.74638 16.23838,14.33425 20,23 z" id="path3407" mix-blend-mode="normal" isolation="auto" white-space="normal" fill="#734a08" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" fill-rule="evenodd" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path id="path4141" d="M 542,291 C 542,430.72804 428.72804,544 289,544 149.27196,544 36,430.72804 36,291 36,151.27196 149.27196,38 289,38 428.72804,38 542,151.27196 542,291 Z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="M 542,291 C 542,430.72804 428.72804,544 289,544 149.27196,544 36,430.72804 36,291 36,151.27196 149.27196,38 289,38 428.72804,38 542,151.27196 542,291 Z" id="path3267" fill="#734a08"/>
<path d="m 218.1,249 c -52,0 -95,2.5 -95,4.25 0,0.1 29.45,229 29.45,229 -0.15,1.25 29.25,3.05 65.85,3.05 36,0 66,-1.7 65.8,-3 0,-0.1 29.025,-229.05 29.025,-229.05 C 313.1,251.5 270.6,249 218.1,249 Z M 172,463.3 143,269 c 48,0.2 83,2.6 148,-1.3 L 264.65,464.35 C 263.5,465.4 174,464.8 172,463.3 Z" id="path2209" fill="#ffffff"/>
<path d="m 298,266.3 -26.3,208 -111,1.3 -25.35,-210.8 z" id="path2381" opacity="0.1" fill="#ffffff" fill-rule="evenodd"/>
<path d="m 289.6,77.3 c 0,9 7.4,16.4 16.4,16.4 3.1,0 5.9,-0.6 8.8,-1.5 l 0,8.6 c -5.3,3.7 -9.2,9.2 -11.9,14.5 -2,3.9 -3.5,8.2 -4.7,12.7 -9.06665,-0.0641 -18.13363,-0.1015 -27.2,-0.2 -36.6,-0.6 -62,20.4 -71,40.5 -9.4,20 -7.7,39 -7.7,39 l 49,-3.3 c 0,0 -0.1,-8.1 3.2,-15 3.3,-6.9 5,-12.6 26.3,-12.3 10.24128,0.0976 19.66481,0.14188 30.3,0.2 0.7,1.8 1.4,3.5 2.3,5.1 4.8,9.6 13.4,19.3 26.6,19.3 13.2,0 21.8,-9.7 26.6,-19.3 0.8,-1.6 1.5,-3.2 2.1,-4.8 l 73,0.4 0.3,-49 -70,-0.4 c -1.2,-4.6 -2.7,-9 -4.8,-13 -2.7,-5.4 -6.6,-10.8 -11.9,-14.5 l 0,-8.7 c 3,1 5.9,1.6 9.1,1.6 9,0 17.47395,-7.464306 16.4,-16.4 -1.1996,-9.981145 -8.85098,-16.168182 -16.7,-16.4 -5.60241,0.497449 -10.53176,2.429826 -14.8,3.9 -2.59144,-1.924699 -5.74359,-2.944432 -8.97132,-2.902261 -3.03626,0.04933 -5.98301,1.036268 -8.43651,2.825583 C 316.5241,63.749065 311.53654,60.25233 306.49609,60.811662 297,60.9 289.6,68.3 289.6,77.3 Z" id="path3340" mix-blend-mode="normal" isolation="auto" white-space="normal" fill="#ffffff" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path id="path4142" d="m 475,186 -159,0 38,303 130,0 38.8,-303 -29.4,0 30.5,-105 -18.05,-5.15 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path4144" d="m 235,318.4 -107,0 C 83.4,320.7 62,335.6 65.2,363 l 232.4,0 c 2.5,-27.4 -18.2,-42 -62.6,-44.6 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path4146" d="m 128,489 108,0 c 44.6,-2 65,-16.6 62,-44 l -232.9,0 c -2.6,27.4 18.3,42 62.9,44 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path4148" d="m 75,384 c -5.5,0 -10.2,2 -14,5.9 -3.9,3.9 -5.9,8.4 -5.9,13.5 0,5.9 2,10.7 5.9,14.4 3.9,3.7 8.6,5.6 14,5.6 l 213,0 c 5.5,0 10.2,-1.9 14,-5.6 3.9,-3.7 5.9,-8.5 5.9,-14.4 0,-5.1 -2,-9.6 -5.9,-13.5 -3.9,-3.9 -8.6,-5.9 -14,-5.9 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 475,186 -159,0 38,303 130,0 38.8,-303 -29.4,0 30.5,-105 -18.05,-5.15 z" id="path4140" fill="#734a08"/>
<path d="m 235,318.4 -107,0 C 83.4,320.7 62,335.6 65.2,363 l 232.4,0 c 2.5,-27.4 -18.2,-42 -62.6,-44.6 z" id="path4138" fill="#734a08"/>
<path d="m 128,489 108,0 c 44.6,-2 65,-16.6 62,-44 l -232.9,0 c -2.6,27.4 18.3,42 62.9,44 z" id="path4136" fill="#734a08"/>
<path d="m 75,384 c -5.5,0 -10.2,2 -14,5.9 -3.9,3.9 -5.9,8.4 -5.9,13.5 0,5.9 2,10.7 5.9,14.4 3.9,3.7 8.6,5.6 14,5.6 l 213,0 c 5.5,0 10.2,-1.9 14,-5.6 3.9,-3.7 5.9,-8.5 5.9,-14.4 0,-5.1 -2,-9.6 -5.9,-13.5 -3.9,-3.9 -8.6,-5.9 -14,-5.9 z" id="flowRoot3192" fill="#734a08"/>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata10"/>
<path id="path4142" d="m 459.79151,89.267407 -0.23561,0 c 0.26941,-0.2328 0.41773,-0.46748 0.41773,-0.70404 0,-5.573165 -76.09903,-10.091214 -169.97363,-10.091214 -93.87365,0 -169.97362,4.518049 -169.97362,10.091214 16.98486,141.144143 34.27468,275.383353 52.57007,405.994503 0,3.85062 52.56443,6.96998 117.40542,6.96998 64.84193,0 117.40543,-3.11936 117.40543,-6.96998 15.16182,-134.06839 34.70027,-270.57874 52.38421,-405.290463 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 459.79151,89.267407 -0.23561,0 c 0.26941,-0.2328 0.41773,-0.46748 0.41773,-0.70404 0,-5.573165 -76.09903,-10.091214 -169.97363,-10.091214 -93.87365,0 -169.97362,4.518049 -169.97362,10.091214 16.98486,141.144143 34.27468,275.383353 52.57007,405.994503 0,3.85062 52.56443,6.96998 117.40542,6.96998 64.84193,0 117.40543,-3.11936 117.40543,-6.96998 15.16182,-134.06839 34.70027,-270.57874 52.38421,-405.290463 z" id="path4140" fill="#734a08"/>
<path d="m 374.57659,450.95662 c -2.71759,2.51482 -163.90077,1.33635 -166.61836,-1.17848 L 157.5658,130.37674 c 89.25089,61.86655 147.94966,-8.40244 264.8684,-2.35695 z" id="path2209" opacity="0.8" fill="#ffffff"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path d="M 481,269 472,66 c 0,-3.9 -3.1,-7 -7,-7 l -4.6,0 c -3.9,0 -7,3.1 -7,7 l 3.3,203 -20.3,0 -5.1,-205 c 0,-3.9 -3.1,-7 -7,-7 l -6,0 c -3.9,0 -7,3.1 -7,7 l 2.8,205 -25,0 2.8,-205 c 0,-3.9 -3.1,-7 -7,-7 l -6,0 c -3.9,0 -7,3.1 -7,7 l -5.1,205 -19.8,0 3.3,-203 c 0,-3.9 -3.1,-7 -7,-7 l -4.6,0 c -3.9,0 -7,3.1 -7,7 L 321,269 c 0,60 13.7,82 51,100 l -7.8,147 74,0 -8,-146.5 C 467.6,351.5 481,329.1 481,269 Z M 268.9,211 c 0,-74 -61.8,-155 -94,-155 -32,0 -94,81 -94,155 0,60 27,110 64.9,128 l -7.8,177 74,0 -7.9,-176.5 c 37.5,-18 64.8,-68.5 64.8,-128.5 z" id="path4138" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" fill-rule="evenodd" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path2112" d="M 481,269 472,66 c 0,-3.9 -3.1,-7 -7,-7 l -4.6,0 c -3.9,0 -7,3.1 -7,7 l 3.3,203 -20.3,0 -5.1,-205 c 0,-3.9 -3.1,-7 -7,-7 l -6,0 c -3.9,0 -7,3.1 -7,7 l 2.8,205 -25,0 2.8,-205 c 0,-3.9 -3.1,-7 -7,-7 l -6,0 c -3.9,0 -7,3.1 -7,7 l -5.1,205 -19.8,0 3.3,-203 c 0,-3.9 -3.1,-7 -7,-7 l -4.6,0 c -3.9,0 -7,3.1 -7,7 L 321,269 c 0,60 13.7,82 51,100 l -7.8,147 74,0 -8,-146.5 C 467.6,351.5 481,329.1 481,269 Z M 268.9,211 c 0,-74 -61.8,-155 -94,-155 -32,0 -94,81 -94,155 0,60 27,110 64.9,128 l -7.8,177 74,0 -7.9,-176.5 c 37.5,-18 64.8,-68.5 64.8,-128.5 z" fill="#734a08"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" version="1.0">
<metadata id="metadata3003"/>
<path d="M 276,3.5996094 276,124.61719 237,125 c -52,0 -93,40 -93,90 l 0,155 c 0,50 41,90 93,89 l 102,0 c 52,0 93,-40 93,-90 l 0,-155 c 0,-50 -41,-90 -93,-90 l -39,0.38281 0,-120.7832006 z" id="rect3195"/>
<path d="m 339,148 c 38,0 69,30.8 69,69 l 0,54 c 0,38 -30.8,69 -69,69 l -102,0 c -38,0 -69,-30.8 -69,-69 l 0,-54 c 0,-38 30.8,-69 69,-69 z" id="rect3199" opacity="0.7" fill="#ffffff"/>
</svg>

After

Width:  |  Height:  |  Size: 566 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path d="m 238.39124,109.8562 0,126.58754 -126.58754,0 c -5.35562,0 -9.7375,4.38187 -9.7375,9.7375 l 0,79.84752 c 0,5.35563 4.38188,9.73751 9.7375,9.73751 l 126.58754,0 0,126.58753 c 0,5.35563 4.38187,9.7375 9.7375,9.7375 l 79.84752,0 c 5.35563,0 9.73751,-4.38187 9.73751,-9.7375 l 0,-126.58753 126.58753,0 c 5.35563,0 9.7375,-4.38188 9.7375,-9.73751 l 0,-79.84752 c 0,-5.35563 -4.38187,-9.7375 -9.7375,-9.7375 l -126.58753,0 0,-126.58754 c 0,-5.35562 -4.38188,-9.7375 -9.73751,-9.7375 l -79.84752,0 c -5.35563,0 -9.7375,4.38188 -9.7375,9.7375 z M 35.851182,286.00763 c 0,139.24628 112.955028,252.20132 252.201318,252.20132 139.24629,0 252.20132,-112.95504 252.20132,-252.20132 0,-139.24629 -112.95503,-252.201324 -252.20132,-252.201324 -139.24629,0 -252.201318,112.955034 -252.201318,252.201324 z m 483.953888,0.58425 c 0,127.56128 -103.21753,231.75256 -230.77882,231.75256 -127.56128,0 -230.778812,-103.21753 -230.778812,-230.77881 0,-127.56129 103.217532,-230.778817 230.778812,-231.752568 126.58754,-0.97375 230.77882,102.243778 230.77882,230.778818 z" id="path4147" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" white-space="normal" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="rect3180" d="m 238.39124,109.8562 0,126.58754 -126.58754,0 c -5.35562,0 -9.7375,4.38187 -9.7375,9.7375 l 0,79.84752 c 0,5.35563 4.38188,9.73751 9.7375,9.73751 l 126.58754,0 0,126.58753 c 0,5.35563 4.38187,9.7375 9.7375,9.7375 l 79.84752,0 c 5.35563,0 9.73751,-4.38187 9.73751,-9.7375 l 0,-126.58753 126.58753,0 c 5.35563,0 9.7375,-4.38188 9.7375,-9.73751 l 0,-79.84752 c 0,-5.35563 -4.38187,-9.7375 -9.7375,-9.7375 l -126.58753,0 0,-126.58754 c 0,-5.35562 -4.38188,-9.7375 -9.73751,-9.7375 l -79.84752,0 c -5.35563,0 -9.7375,4.38188 -9.7375,9.7375 z M 35.851182,286.00763 c 0,139.24628 112.955028,252.20132 252.201318,252.20132 139.24629,0 252.20132,-112.95504 252.20132,-252.20132 0,-139.24629 -112.95503,-252.201324 -252.20132,-252.201324 -139.24629,0 -252.201318,112.955034 -252.201318,252.201324 z m 483.953888,0.58425 c 0,127.56128 -103.21753,231.75256 -230.77882,231.75256 -127.56128,0 -230.778812,-103.21753 -230.778812,-230.77881 0,-127.56129 103.217532,-230.778817 230.778812,-231.752568 126.58754,-0.97375 230.77882,102.243778 230.77882,230.778818 z" fill="#da0092" isolation="auto" color-rendering="auto" white-space="normal" solid-opacity="1" mix-blend-mode="normal" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path white-space="normal" isolation="auto" mix-blend-mode="normal" id="path4141" d="m 231,218 -82,0 c 0,44.33333 0,88.66667 0,133 l 82,0 0,82 132,0 0,-82 82,0 0,-133 -82,0 0,-81 c -44,0 -88,0 -132,0 z" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" fill-rule="evenodd" stroke-width="64" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path white-space="normal" isolation="auto" mix-blend-mode="normal" id="path4143" d="m 101,481.6 393,0 0,-393 -393,-0.3 c 0,131.1 0,262.2 0,393.3 z m 372,-372 0,351 -351,0 0,-351 z" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" fill-rule="evenodd" stroke-width="64" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 231,218 -82,0 c 0,44.33333 0,88.66667 0,133 l 82,0 0,82 132,0 0,-82 82,0 0,-133 -82,0 0,-81 c -44,0 -88,0 -132,0 z" id="rect2160" mix-blend-mode="normal" isolation="auto" white-space="normal" fill="#da0092" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path d="m 101,481.6 393,0 0,-393 -393,-0.3 c 0,131.1 0,262.2 0,393.3 z m 372,-372 0,351 -351,0 0,-351 z" id="rect3184" mix-blend-mode="normal" isolation="auto" white-space="normal" fill="#da0092" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path d="m 112,91 c -12,-0.4 -19.9,11.90039 -18,22.90039 0.2,27 -0.499609,54 0.400391,81 1.9,11.3 13.999999,15.80039 23.999999,14.40039 15.21604,-0.14561 30.4324,0.0708 45.64844,-0.0273 -22.16972,96.03415 -44.88195,191.42959 -66.54883,287.62695 -0.5,9.6 10.00039,13.29922 17.90039,11.69922 120,-1.1 239,-1.89961 359,-3.09961 10,-0.9 12.00039,-12.5 8.40039,-20 -21.55868,-92.039 -42.9306,-184.07819 -64.58984,-276.11719 17.77394,-0.0948 35.61939,0.46308 53.28906,-0.38281 11.3,-1.9 15.80039,-14 14.40039,-24 -0.2,-26.4 0.49961,-53 -0.40039,-79 -1.3125,-10.5 -10.66309,-14.875 -19.67969,-15.134766 C 342.61016,91.130872 217.54591,91.00438 112,91 Z" id="path4140" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m112 91c-12-.4-19.9 11.9-18 22.9.2 27-.5 54 .4 81 1.9 11.3 14 15.8 24 14.4 20.9-.2 41.8.3 62.7-.3 17.5-3.5 16.3-24.5 19.8-38-1.2-10.2 4.6-11.9 13.2-10.7 54.7-.4 109-.7 164-1.1 2.6 12.8 4.6 25.8 7.7 38.6 4.3 12.6 18.4 11.9 29 11.6 18.9-.2 37.9.5 56.7-.4 11.3-1.9 15.8-14 14.4-24-.2-26.4.5-53-.4-79C484 94 472 90 462 91c-117 0-233 0-350 0" id="rect7186" fill="#734a08" opacity="0.5"/>
<path d="m393 146c-69 .6-201-.6-208 1.5-7.9 2.1-7.9 8.8-13.5 29.4-24.5 107-49.9 213-74 320-.5 9.6 10 13.3 17.9 11.7 120-1.1 239-1.9 359-3.1 10-.9 12-12.5 8.4-20-26-111-51.7-222-78-333-1.8-4-6.1-6.7-10.5-6.7m-9 22.9l74 314-335 2.8c24.6-105 49-210 73-316l188-1.3" id="path3163" fill="#734a08"/>
<path id="path3163-3-2" d="m187 159c-1.4 8.4-79 339-79 339l364-3.1-79-337-206 1.4" fill="#ffffff"/>
<path id="path3163-3" d="m187 159c-1.4 8.4-79 339-79 339l364-3.1-79-337-206 1.4" fill="#734a08" opacity="0.1"/>
<path d="m290 194c-9.9-.1-18 9.4-16.9 19-19.7 3-37.7 16.2-44.6 35-8.8 22.9-3.9 52.6 17.2 67 8.2 6.1 17.7 10 27.4 13l0 83C255 405 248 385 246 368l-26 4.6c5.8 37.9 21.9 51 53 63 .5 9.5-2.4 21 6.3 27.8 10 9 27.9 1.2 28-12.3.1-5.4 0-10.9 0-16.3 24.3-2.8 44.9-21.9 50.9-45.5 6.2-22.9.7-50.9-20-64.9-9.2-6.6-19.9-10.7-30.9-13.4l0-75c12.6 5.4 19 18.8 20.9 31.7l27-3.9c-2.4-20.5-15-40.6-35-47.6-13.5-5.4-13.9-3.6-14-5.1-.6-15.4-9.4-17.7-16.3-17.5m-16.9 42l0 65.9c-12.6-5.2-22.9-17-22.5-31-1.1-14.9 8.4-29.6 22.5-34.8m34 101c12.8 4.4 24.8 14.5 25.9 28.7 3.1 17.6-9.4 39-26 46l.3-10.4z" id="path4370" fill="#734a08"/>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path white-space="normal" isolation="auto" mix-blend-mode="normal" id="path4149" d="m55.8 236c-7 7.8-.8 16.3 11.6 16.5l30.9 0c.1 94-.3 189 .2 283 3.3 12.2 18.3 6.9 27.4 8 116-.1 231 .3 347-.2 12.2-3.3 6.9-18.3 8-27.4l0-263c13.2-.8 25-.2 39.8-1.2 8.7-4.6 4.6-14.5-3-20C451 180 311 66 294 57.8 291 55 286 56.9 283 58 265 71 124 183 55.8 236" solid-color="#000000" color-interpolation-filters="linearRGB" opacity="0.8" color="#000000" image-rendering="auto" color-rendering="auto" fill-rule="evenodd" stroke-width="64" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" stroke="#ffffff" shape-rendering="auto"/>
<path d="m55.8 236c-7 7.8-.8 16.3 11.6 16.5l30.9 0c.1 94-.3 189 .2 283 3.3 12.2 18.3 6.9 27.4 8 116-.1 231 .3 347-.2 12.2-3.3 6.9-18.3 8-27.4l0-263c13.2-.8 25-.2 39.8-1.2 8.7-4.6 4.6-14.5-3-20C451 180 311 66 294 57.8 291 55 286 56.9 283 58 265 71 124 183 55.8 236" id="path3198" mix-blend-mode="normal" isolation="auto" white-space="normal" fill="#ac39ac" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" fill-rule="evenodd" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path id="path4162" d="m290 80l197 152c-8.8.6-24-3.5-25.8 9.3-.1 94 0 188 0 282l-342 0c-.1-94 .3-189-.2-283-2.9-11.6-17-7.2-25.6-8z" mix-blend-mode="normal" isolation="auto" white-space="normal" opacity="0.8" fill="#ffffff" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" fill-rule="evenodd" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path d="M292 135C278 135 264 148 266 170 156 192 160 304 267 329L267 434C241 428 228 400 225 376 212 376 191 379 181 382 170 422 239 472 268 471 268 520 311 507 313 472 431 455 431 319 314 299L314 205C339 202 349 237 350 248 364 246 379 245 393 242 384 204 351 171 313 169 315 146 303 135 292 135M268 204L268 288C221 272 227 215 268 204M314 341C401 358 350 449 311 437L314 341" id="path4146" fill="#ac39ac"/>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata10"/>
<path id="path4151" d="m 30,261 286,0 0,-72.5 234,101.85 -234,101.15 0,-72.5 -286,0 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 30,261 286,0 0,-72.5 234,101.85 -234,101.15 0,-72.5 -286,0 z" id="path4136" fill="#6a6a6a"/>
</svg>

After

Width:  |  Height:  |  Size: 745 B

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" width="580" viewBox="0 0 6444.4444 6444.4444" height="580">
<metadata id="metadata9"/>
<path white-space="normal" isolation="auto" mix-blend-mode="normal" id="path4138" d="m 2126.6284,4166.6666 1228.927,-2010.9689 1228.927,2010.9689 z" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="1024" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 2126.6284,4166.6666 1228.927,-2010.9689 1228.927,2010.9689 z" id="path3-9" inkscape:connector-curvature="0" fill="#aaaaaa" stroke="#000000" stroke-width="266.67"/>
</svg>

After

Width:  |  Height:  |  Size: 940 B

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path id="path4159" d="M 287.90234 36.982422 C 271.94739 37.181375 272.67266 49.272656 271.80078 60.800781 C 213.80078 64.800781 169.10078 118.00078 154.80078 175.80078 C 141.40078 175.20078 132.8 176.59961 129.5 192.59961 C 129.8 204.29961 141.10078 213.8 155.80078 211 C 166.80078 265 210.20078 316.2 259.80078 326 C 274.80078 329 273.09961 324.7 272.59961 337 C 272.59961 342.6 274.1 347.1 277 350 L 277.40039 350.40039 C 283.20039 356.10039 297.29922 356.4 302.19922 351 C 304.09922 348.9 306.00039 343.20039 306.40039 338.40039 C 307.60039 323.90039 302.59961 332.6 323.59961 325 C 366.69961 312 411.59961 271 422.59961 221 C 424.09961 212.4 424.50078 211.99922 433.80078 210.69922 C 448.00078 208.69922 454.99922 198.19922 450.19922 185.69922 C 448.49922 180.69922 437.09922 175.29961 430.19922 176.09961 C 424.89922 176.79961 424.20078 175.9 422.80078 168 C 413.80078 123 364.80078 64.1 304.80078 60 C 304.70078 46 303.4 37.5 289.5 37 C 288.95 36.98125 288.41702 36.976004 287.90234 36.982422 z M 273 94.25 C 273 94.25 272.90039 126.2 272.40039 151.5 C 271.00039 151.5 233.70039 112.5 233.40039 111 C 234.00039 105.7 264.2 95.4 273 94.25 z M 307 95.849609 C 320 96.999609 336.00078 100.99922 347.80078 110.69922 L 305.80078 152.69922 L 307 95.849609 z M 207.59961 135.59961 C 222.59961 150.59961 231.69961 161.09961 246.59961 175.59961 L 246.30078 175.40039 C 225.30078 175.80039 209.50078 176.59961 191.30078 176.59961 C 193.60078 164.99961 198.59961 148.89961 207.59961 135.59961 z M 371.94922 136 C 377.89922 138.6 387.29961 166.59961 388.09961 176.59961 C 372.89961 176.49961 343.69961 176.99922 332.09961 175.69922 C 332.09961 173.99922 370.39922 136 371.94922 136 z M 290.76172 172.90039 C 295.89922 172.97539 300.90078 175.39922 305.30078 180.19922 C 310.80078 186.19922 312.59922 193.69922 309.69922 200.69922 C 305.49922 209.49922 301.59922 211.59961 297.69922 213.59961 C 289.79922 217.69961 279.79961 214.60039 273.59961 207.40039 C 268.19961 201.10039 265.90039 188.69922 275.40039 179.69922 C 280.35039 175.09922 285.62422 172.82539 290.76172 172.90039 z M 190.80078 210.90039 L 248.80078 210.90039 C 234.80078 223.90039 221.10078 237.10039 206.80078 249.90039 C 203.10078 249.90039 191.80078 219.70039 190.80078 210.90039 z M 331.80078 210.90039 L 389.80078 210.90039 C 387.50078 223.80039 382.80078 239.69922 372.80078 250.69922 C 357.80078 236.79922 345.60078 224.40039 331.80078 210.90039 z M 270.84961 237.19922 C 271.79961 237.39922 272.30039 288.80039 272.90039 293.40039 C 254.90039 290.60039 245.50078 285.89961 232.30078 275.59961 C 247.40078 259.89961 257.09961 249.79922 270.84961 237.19922 z M 306.80078 237.40039 C 319.80078 250.50039 328.50078 259.99922 347.80078 276.94922 C 334.00078 285.49922 321.99961 290.39922 305.09961 293.19922 C 305.09961 271.79922 305.80078 258.40039 306.80078 237.40039 z " mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path color-interpolation="sRGB" color-rendering="auto" color="#000000" solid-color="#000000" image-rendering="auto" solid-opacity="1" white-space="normal" isolation="auto" color-interpolation-filters="linearRGB" mix-blend-mode="normal" shape-rendering="auto" id="path4141" d="m207 362c-5.3 0-9.6 4.3-9.6 9.6l0 161c0 5.3 4.3 9.6 9.6 9.6l161 0c5.3 0 9.6-4.3 9.6-9.6l0-161c0-5.3-4.3-9.6-9.6-9.6z" opacity="0.8" filter-gaussianBlur-deviation="0" stroke-width="64" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff"/>
<path d="M 287.90234 36.982422 C 271.94739 37.181375 272.67266 49.272656 271.80078 60.800781 C 213.80078 64.800781 169.10078 118.00078 154.80078 175.80078 C 141.40078 175.20078 132.8 176.59961 129.5 192.59961 C 129.8 204.29961 141.10078 213.8 155.80078 211 C 166.80078 265 210.20078 316.2 259.80078 326 C 274.80078 329 273.09961 324.7 272.59961 337 C 272.59961 342.6 274.1 347.1 277 350 L 277.40039 350.40039 C 283.20039 356.10039 297.29922 356.4 302.19922 351 C 304.09922 348.9 306.00039 343.20039 306.40039 338.40039 C 307.60039 323.90039 302.59961 332.6 323.59961 325 C 366.69961 312 411.59961 271 422.59961 221 C 424.09961 212.4 424.50078 211.99922 433.80078 210.69922 C 448.00078 208.69922 454.99922 198.19922 450.19922 185.69922 C 448.49922 180.69922 437.09922 175.29961 430.19922 176.09961 C 424.89922 176.79961 424.20078 175.9 422.80078 168 C 413.80078 123 364.80078 64.1 304.80078 60 C 304.70078 46 303.4 37.5 289.5 37 C 288.95 36.98125 288.41702 36.976004 287.90234 36.982422 z M 273 94.25 C 273 94.25 272.90039 126.2 272.40039 151.5 C 271.00039 151.5 233.70039 112.5 233.40039 111 C 234.00039 105.7 264.2 95.4 273 94.25 z M 307 95.849609 C 320 96.999609 336.00078 100.99922 347.80078 110.69922 L 305.80078 152.69922 L 307 95.849609 z M 207.59961 135.59961 C 222.59961 150.59961 231.69961 161.09961 246.59961 175.59961 L 246.30078 175.40039 C 225.30078 175.80039 209.50078 176.59961 191.30078 176.59961 C 193.60078 164.99961 198.59961 148.89961 207.59961 135.59961 z M 371.94922 136 C 377.89922 138.6 387.29961 166.59961 388.09961 176.59961 C 372.89961 176.49961 343.69961 176.99922 332.09961 175.69922 C 332.09961 173.99922 370.39922 136 371.94922 136 z M 290.76172 172.90039 C 295.89922 172.97539 300.90078 175.39922 305.30078 180.19922 C 310.80078 186.19922 312.59922 193.69922 309.69922 200.69922 C 305.49922 209.49922 301.59922 211.59961 297.69922 213.59961 C 289.79922 217.69961 279.79961 214.60039 273.59961 207.40039 C 268.19961 201.10039 265.90039 188.69922 275.40039 179.69922 C 280.35039 175.09922 285.62422 172.82539 290.76172 172.90039 z M 190.80078 210.90039 L 248.80078 210.90039 C 234.80078 223.90039 221.10078 237.10039 206.80078 249.90039 C 203.10078 249.90039 191.80078 219.70039 190.80078 210.90039 z M 331.80078 210.90039 L 389.80078 210.90039 C 387.50078 223.80039 382.80078 239.69922 372.80078 250.69922 C 357.80078 236.79922 345.60078 224.40039 331.80078 210.90039 z M 270.84961 237.19922 C 271.79961 237.39922 272.30039 288.80039 272.90039 293.40039 C 254.90039 290.60039 245.50078 285.89961 232.30078 275.59961 C 247.40078 259.89961 257.09961 249.79922 270.84961 237.19922 z M 306.80078 237.40039 C 319.80078 250.50039 328.50078 259.99922 347.80078 276.94922 C 334.00078 285.49922 321.99961 290.39922 305.09961 293.19922 C 305.09961 271.79922 305.80078 258.40039 306.80078 237.40039 z " id="path4156"/>
<path d="m207 362c-5.3 0-9.6 4.3-9.6 9.6l0 161c0 5.3 4.3 9.6 9.6 9.6l161 0c5.3 0 9.6-4.3 9.6-9.6l0-161c0-5.3-4.3-9.6-9.6-9.6z" id="rect4154" shape-rendering="auto" mix-blend-mode="normal" color-interpolation-filters="linearRGB" isolation="auto" white-space="normal" solid-opacity="1" image-rendering="auto" solid-color="#000000" color="#000000" color-rendering="auto" color-interpolation="sRGB"/>
<path d="m217 381l142 0 0 142-142 0z" id="rect3587-8" shape-rendering="auto" mix-blend-mode="normal" color-interpolation-filters="linearRGB" isolation="auto" white-space="normal" opacity="0.8" fill="#ffffff" solid-opacity="1" image-rendering="auto" solid-color="#000000" color="#000000" color-rendering="auto" color-interpolation="sRGB"/>
</svg>

After

Width:  |  Height:  |  Size: 7.3 KiB

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path white-space="normal" isolation="auto" mix-blend-mode="normal" id="path4149" d="m 208,369 c -5.4,0 -9.7,4.4 -9.7,9.8 l 0,164 c 0,5.4 4.4,9.8 9.7,9.8 l 164,0 c 5.4,0 9.7,-4.4 9.7,-9.8 l 0,-164 c 0,-5.4 -4.4,-9.8 -9.7,-9.8 z" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" stroke-linecap="round" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 250.7,198 -75,-0.5 0,-38 0,-36.4 75,-1.4 1.3,-83 76,-1.3 0,84 75.9,0 0,37.6 0,37.6 -75.9,0 0,150 c -24,-2.8 -52,4.5 -75.95,-1.65 z" id="path4151" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" stroke-linecap="round" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 208,369 c -5.4,0 -9.7,4.4 -9.7,9.8 l 0,164 c 0,5.4 4.4,9.8 9.7,9.8 l 164,0 c 5.4,0 9.7,-4.4 9.7,-9.8 l 0,-164 c 0,-5.4 -4.4,-9.8 -9.7,-9.8 z" id="rect4154" mix-blend-mode="normal" isolation="auto" white-space="normal" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path d="m 218,389 144,0 0,145 -144,0 z" id="rect3587" mix-blend-mode="normal" isolation="auto" white-space="normal" opacity="0.8" fill="#ffffff" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path id="path1873" d="m 250.7,198 -75,-0.5 0,-38 0,-36.4 75,-1.4 1.3,-83 76,-1.3 0,84 75.9,0 0,37.6 0,37.6 -75.9,0 0,150 c -24,-2.8 -52,4.5 -75.95,-1.65 z"/>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path id="path4139" d="m 151,256 c -5.5,-16.5 -9.3,-33.6 -10.6,-51 11.5,-17.5 20.9,8.6 20.4,19.3 10.2,37 31,75 68,90 22.4,9.1 52,0.3 61,-23.7 8.8,-24.9 -2.9,-51.9 -17,-72 -11.6,-11.2 -19.8,16.3 -32.7,18.5 -12.8,7.6 -21.4,-17.5 -22,-28 6.2,-11.7 23,-12.2 31.5,-22.5 11.3,-9.4 17.7,-32 3.6,-41.7 -16.5,-8.8 -35.9,-2.7 -51.7,4.6 -16.9,5.5 -28,-25 -19,-36.4 16.4,-5.5 34.8,-6.3 52,-4.7 33.9,7.6 53,47 44,80 0.9,15.5 18.4,-8.4 26,-8.8 14.5,-6.8 35,-5.2 36.7,-26 11,-32 60,-38.5 81,-13.2 18.4,22.5 16.2,53.6 16.8,80.9 -0.1,30 -8.5,64.8 -36.5,81 -16.9,9.7 -43,9.5 -54,-8.7 -10,-21 -6.6,-45 -8.8,-67 -4.8,-20.6 -27.5,-11.9 -38,-2.6 13,20 24.4,43 23.4,68 0.1,24.4 -15.4,48.9 -39.6,55 -15,4.4 -31.5,4.4 -47.1,1.2 C 195,336.1 165,297 151,256 Z m 266.7,-66.5 c -4.9,-16.7 -19.6,-33.4 -38.7,-30 -13.6,2.7 -35.6,14.9 -21.8,29.7 6.2,23.3 0.5,48 5.9,72 4.1,15.3 23,17.2 34.65,8.85 C 421.7,251.5 427.2,216.5 417.7,189.5 Z M 240.4,80.3 c 2.3,-19.3 23,-4.5 29.6,3.9 20,12.5 49.6,7 63,-12.5 13.3,-4.6 27.9,14.5 31,22.9 -17,23 -48.8,35 -76,25.35 C 268,112.9 252.4,97.3 240.4,80.3 Z m 52.4,-38.9 c 9.5,-13.7 21,9.7 28,17.4 -1.9,8.2 -15.7,19.8 -22.5,22 -3.2,-3.3 -6.3,-6.7 -9.5,-9.95 -14.8,-7.95 -8.5,-22.95 4,-29.45 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path white-space="normal" isolation="auto" mix-blend-mode="normal" id="path4141" d="m 211,360 c -5.4,0 -9.7,4.4 -9.7,9.8 l 0,164 c 0,5.4 4.4,9.8 9.7,9.8 l 164,0 c 5.4,0 9.7,-4.4 9.7,-9.8 l 0,-164 c 0,-5.4 -4.4,-9.8 -9.7,-9.8 z" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 151,256 c -5.5,-16.5 -9.3,-33.6 -10.6,-51 11.5,-17.5 20.9,8.6 20.4,19.3 10.2,37 31,75 68,90 22.4,9.1 52,0.3 61,-23.7 8.8,-24.9 -2.9,-51.9 -17,-72 -11.6,-11.2 -19.8,16.3 -32.7,18.5 -12.8,7.6 -21.4,-17.5 -22,-28 6.2,-11.7 23,-12.2 31.5,-22.5 11.3,-9.4 17.7,-32 3.6,-41.7 -16.5,-8.8 -35.9,-2.7 -51.7,4.6 -16.9,5.5 -28,-25 -19,-36.4 16.4,-5.5 34.8,-6.3 52,-4.7 33.9,7.6 53,47 44,80 0.9,15.5 18.4,-8.4 26,-8.8 14.5,-6.8 35,-5.2 36.7,-26 11,-32 60,-38.5 81,-13.2 18.4,22.5 16.2,53.6 16.8,80.9 -0.1,30 -8.5,64.8 -36.5,81 -16.9,9.7 -43,9.5 -54,-8.7 -10,-21 -6.6,-45 -8.8,-67 -4.8,-20.6 -27.5,-11.9 -38,-2.6 13,20 24.4,43 23.4,68 0.1,24.4 -15.4,48.9 -39.6,55 -15,4.4 -31.5,4.4 -47.1,1.2 C 195,336.1 165,297 151,256 Z m 266.7,-66.5 c -4.9,-16.7 -19.6,-33.4 -38.7,-30 -13.6,2.7 -35.6,14.9 -21.8,29.7 6.2,23.3 0.5,48 5.9,72 4.1,15.3 23,17.2 34.65,8.85 C 421.7,251.5 427.2,216.5 417.7,189.5 Z M 240.4,80.3 c 2.3,-19.3 23,-4.5 29.6,3.9 20,12.5 49.6,7 63,-12.5 13.3,-4.6 27.9,14.5 31,22.9 -17,23 -48.8,35 -76,25.35 C 268,112.9 252.4,97.3 240.4,80.3 Z m 52.4,-38.9 c 9.5,-13.7 21,9.7 28,17.4 -1.9,8.2 -15.7,19.8 -22.5,22 -3.2,-3.3 -6.3,-6.7 -9.5,-9.95 -14.8,-7.95 -8.5,-22.95 4,-29.45 z" id="path1873"/>
<path d="m 211,360 c -5.4,0 -9.7,4.4 -9.7,9.8 l 0,164 c 0,5.4 4.4,9.8 9.7,9.8 l 164,0 c 5.4,0 9.7,-4.4 9.7,-9.8 l 0,-164 c 0,-5.4 -4.4,-9.8 -9.7,-9.8 z" id="rect4154" mix-blend-mode="normal" isolation="auto" white-space="normal" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path d="m 220,379 144,0 0,145 -144,0 z" id="rect3587-1" mix-blend-mode="normal" isolation="auto" white-space="normal" opacity="0.8" fill="#ffffff" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
</svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path id="path4145" d="M 292.80273 36.71875 C 282.36665 36.616724 271.93672 37.725 261.69922 40 C 223.49922 45 190.69922 70 168.69922 100 C 137.29922 142 132.1 201 153 248 C 173 292 213.99961 327.09961 262.34961 336.09961 C 289.59961 340.99961 317.09961 337.90078 342.59961 329.30078 C 355.39961 323.50078 373.00039 318.90078 379.40039 306.30078 C 361.40039 305.40078 343.70039 312.90039 325.40039 313.40039 C 273.10039 312.40039 226.00039 272.40039 210.40039 223.40039 C 203.70039 194.40039 203.90039 162.40039 216.90039 135.40039 C 237.90039 89.400391 289.90039 55.800391 340.90039 63.400391 C 352.80039 63.400391 371.49922 74.000781 379.69922 66.800781 C 368.19922 53.100781 349.09922 48.899219 332.69922 43.199219 C 319.64922 38.980469 306.22056 36.849927 292.80273 36.71875 z M 380.40039 127.90039 C 371.20039 132.00039 366.99922 153.59922 362.69922 165.69922 L 363 166 C 349.6 167.2 335.30039 165.39961 322.40039 169.59961 C 319.10039 173.39961 325.8 176.5 328 179 C 336.2 185.8 345.2 191.5 353.5 198 C 350 210.9 343.49922 223.40039 342.69922 236.90039 C 344.89922 242.90039 351.69922 237.99961 354.69922 235.59961 C 363.19922 229.99961 371.10078 222.60039 380.30078 218.40039 C 392.00078 224.70039 401.90078 234.19922 413.30078 240.69922 C 418.50078 240.89922 417.00039 233.49961 416.40039 230.09961 C 414.50039 219.29961 409.10039 209.10039 407.40039 198.40039 C 417.00039 188.50039 429.80039 182.4 438.90039 172 C 439.50039 166.8 431.89961 168.10078 428.59961 167.30078 C 418.09961 166.60078 407.6 167.10039 397 166.90039 C 392 154.00039 388.60039 131.40039 380.40039 127.90039 z M 205 360 C 199.6 360 195.30078 364.40078 195.30078 369.80078 L 195.30078 533.80078 C 195.30078 539.20078 199.7 543.59961 205 543.59961 L 369 543.59961 C 374.4 543.59961 378.69922 539.20078 378.69922 533.80078 L 378.69922 369.80078 C 378.69922 364.40078 374.3 360 369 360 L 205 360 z " mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="M 292.80273 36.71875 C 282.36665 36.616724 271.93672 37.725 261.69922 40 C 223.49922 45 190.69922 70 168.69922 100 C 137.29922 142 132.1 201 153 248 C 173 292 213.99961 327.09961 262.34961 336.09961 C 289.59961 340.99961 317.09961 337.90078 342.59961 329.30078 C 355.39961 323.50078 373.00039 318.90078 379.40039 306.30078 C 361.40039 305.40078 343.70039 312.90039 325.40039 313.40039 C 273.10039 312.40039 226.00039 272.40039 210.40039 223.40039 C 203.70039 194.40039 203.90039 162.40039 216.90039 135.40039 C 237.90039 89.400391 289.90039 55.800391 340.90039 63.400391 C 352.80039 63.400391 371.49922 74.000781 379.69922 66.800781 C 368.19922 53.100781 349.09922 48.899219 332.69922 43.199219 C 319.64922 38.980469 306.22056 36.849927 292.80273 36.71875 z M 380.40039 127.90039 C 371.20039 132.00039 366.99922 153.59922 362.69922 165.69922 L 363 166 C 349.6 167.2 335.30039 165.39961 322.40039 169.59961 C 319.10039 173.39961 325.8 176.5 328 179 C 336.2 185.8 345.2 191.5 353.5 198 C 350 210.9 343.49922 223.40039 342.69922 236.90039 C 344.89922 242.90039 351.69922 237.99961 354.69922 235.59961 C 363.19922 229.99961 371.10078 222.60039 380.30078 218.40039 C 392.00078 224.70039 401.90078 234.19922 413.30078 240.69922 C 418.50078 240.89922 417.00039 233.49961 416.40039 230.09961 C 414.50039 219.29961 409.10039 209.10039 407.40039 198.40039 C 417.00039 188.50039 429.80039 182.4 438.90039 172 C 439.50039 166.8 431.89961 168.10078 428.59961 167.30078 C 418.09961 166.60078 407.6 167.10039 397 166.90039 C 392 154.00039 388.60039 131.40039 380.40039 127.90039 z M 205 360 C 199.6 360 195.30078 364.40078 195.30078 369.80078 L 195.30078 533.80078 C 195.30078 539.20078 199.7 543.59961 205 543.59961 L 369 543.59961 C 374.4 543.59961 378.69922 539.20078 378.69922 533.80078 L 378.69922 369.80078 C 378.69922 364.40078 374.3 360 369 360 L 205 360 z " id="path4510"/>
<path d="m215 380l144 0 0 145-144 0z" id="rect3587" shape-rendering="auto" mix-blend-mode="normal" color-interpolation-filters="linearRGB" isolation="auto" white-space="normal" opacity="0.8" fill="#ffffff" solid-opacity="1" image-rendering="auto" solid-color="#000000" color="#000000" color-rendering="auto" color-interpolation="sRGB"/>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path id="path4190" d="M 285.17969 35.509766 L 238.17969 114.50977 L 151 116.09961 L 192 195.09961 L 153 276.09961 L 242 278 L 242.5 278.09961 L 288.19922 354.09961 L 337.09961 278.09961 L 428.09961 275.5 L 384.09961 195.5 L 426 115.5 L 333.17969 114.50977 L 285.17969 35.509766 z M 286.30273 86.623047 L 302.50391 115.12305 L 269.50391 115.12305 L 286.30273 86.623047 z M 355.24219 141.22852 L 388.24219 141.22852 L 372.04297 169.72852 L 355.24219 141.22852 z M 193.19922 142.30859 L 222.37891 142.81836 L 210 170.80859 L 193.19922 142.30859 z M 252.7793 142.30859 L 318.67969 142.30859 L 353.19922 195.80078 L 321.09961 252.19922 L 256.09961 251.69922 L 226.69922 195.80078 L 252.7793 142.30859 z M 368.94336 222.25977 L 381.32227 250.25 L 352.14258 250.75977 L 368.94336 222.25977 z M 208.63281 223.69922 L 221.01172 251.69141 L 191.83203 252.19922 L 208.63281 223.69922 z M 272.38477 276.83398 L 305.38477 276.83398 L 289.18555 305.33398 L 272.38477 276.83398 z " mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path4192" d="m 208,360 c -5.4,0 -9.7,4.4 -9.7,9.8 l 0,164 c 0,5.4 4.4,9.8 9.7,9.8 l 164,0 c 5.4,0 9.7,-4.4 9.7,-9.8 l 0,-164 c 0,-5.4 -4.4,-9.8 -9.7,-9.8 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="M 285.17969 35.509766 L 238.17969 114.50977 L 151 116.09961 L 192 195.09961 L 153 276.09961 L 242 278 L 242.5 278.09961 L 288.19922 354.09961 L 337.09961 278.09961 L 428.09961 275.5 L 384.09961 195.5 L 426 115.5 L 333.17969 114.50977 L 285.17969 35.509766 z M 286.30273 86.623047 L 302.50391 115.12305 L 269.50391 115.12305 L 286.30273 86.623047 z M 355.24219 141.22852 L 388.24219 141.22852 L 372.04297 169.72852 L 355.24219 141.22852 z M 193.19922 142.30859 L 222.37891 142.81836 L 210 170.80859 L 193.19922 142.30859 z M 252.7793 142.30859 L 318.67969 142.30859 L 353.19922 195.80078 L 321.09961 252.19922 L 256.09961 251.69922 L 226.69922 195.80078 L 252.7793 142.30859 z M 368.94336 222.25977 L 381.32227 250.25 L 352.14258 250.75977 L 368.94336 222.25977 z M 208.63281 223.69922 L 221.01172 251.69141 L 191.83203 252.19922 L 208.63281 223.69922 z M 272.38477 276.83398 L 305.38477 276.83398 L 289.18555 305.33398 L 272.38477 276.83398 z " id="path4151"/>
<path d="m 208,360 c -5.4,0 -9.7,4.4 -9.7,9.8 l 0,164 c 0,5.4 4.4,9.8 9.7,9.8 l 164,0 c 5.4,0 9.7,-4.4 9.7,-9.8 l 0,-164 c 0,-5.4 -4.4,-9.8 -9.7,-9.8 z" id="path3648"/>
<path d="m218 380l144 0 0 145-144 0z" id="rect3587-6" mix-blend-mode="normal" isolation="auto" white-space="normal" shape-rendering="auto" image-rendering="auto" color-rendering="auto" fill="#ffffff" solid-opacity="1" solid-color="#000000" color-interpolation-filters="linearRGB" color-interpolation="sRGB" color="#000000" opacity="0.8"/>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path id="path4140" d="M 450.15625 35.261719 C 448.3725 35.295151 446.11328 35.886719 443.30078 37.199219 C 424.80078 46.399219 404.30078 49.800391 384.30078 53.400391 C 348.30078 58.100391 312.90078 57.2 277.30078 58 C 243.30078 59.5 209.00078 53.900391 175.30078 48.900391 C 158.30078 47.300391 144.30078 34.700391 127.30078 35.400391 C 120.40078 45.400391 140.60039 58.199609 139.90039 71.099609 C 143.20039 87.899609 168.50078 85.500391 167.80078 103.90039 C 180.40078 113.00039 198.40078 107.30078 212.30078 113.80078 C 219.70078 127.30078 195.00078 129.90039 185.30078 127.40039 C 164.30078 120.00039 165.09961 143.00039 169.59961 156.40039 C 182.59961 159.10039 196.10039 158.30039 209.40039 158.90039 C 217.30039 156.80039 217.29961 162.39961 216.59961 168.59961 C 220.89961 181.29961 209.49961 185.2 203.09961 191 C 211.89961 206.2 209.20039 224.2 209.90039 241 C 210.50039 270.3 208.10039 300.39922 212.15039 330.19922 C 217.20039 336.59922 230.19922 337.3 235.19922 331 C 239.79922 274 237.69961 216 240.59961 159 C 273.59961 157.2 306.59961 157.50078 339.59961 156.80078 C 347.39961 154.40078 347.60078 159.60039 346.80078 165.90039 C 348.20078 177.20039 343.80039 188.60039 343.90039 198.90039 C 348.60039 237.90039 346.90078 276.30039 349.80078 314.90039 C 344.00078 333.80039 371.29961 338.4 379.59961 326.5 C 381.69961 290.5 379.5 254.5 379 218.5 C 379.4 212.1 376.59922 204.60078 382.69922 200.30078 C 395.29922 191.10078 384.60078 182.70078 373.30078 180.30078 C 369.20078 173.30078 371.00039 164.49961 369.90039 156.59961 L 387.30078 156.30078 C 397.90078 154.20078 417.79922 161.39961 419.19922 146.59961 C 425.39922 129.19961 413.19922 119.90078 396.69922 126.30078 C 384.89922 134.30078 360.19922 111.80039 382.69922 110.40039 C 396.89922 108.00039 419.29961 113 421.59961 93 C 433.89961 85.2 447.09961 73.899219 449.09961 58.199219 C 455.51211 51.196094 459.78851 35.081186 450.15625 35.261719 z M 275.24219 111.74805 C 279.58943 111.62093 279.61382 116.2423 280.09961 123.59961 C 282.49961 131.59961 276.60078 131.29922 270.30078 130.69922 C 260.50078 132.49922 237.90078 126.99961 245.30078 114.09961 C 254.10078 110.89961 263.79961 112.49961 273.09961 112.09961 C 273.91099 111.88179 274.62115 111.76621 275.24219 111.74805 z M 329.41602 111.80078 C 339.63114 111.64336 352.52148 113.26914 341.34961 124.40039 C 333.59961 129.90039 323.59922 128.10039 314.69922 128.40039 C 307.99922 130.00039 312.29961 120.49961 311.09961 116.59961 C 308.89961 108.89961 318.69961 113.19961 323.09961 112.09961 C 324.84336 111.96836 327.05868 111.83711 329.41602 111.80078 z M 212 360 C 206.6 360 202.30078 364.40078 202.30078 369.80078 L 202.30078 533.80078 C 202.30078 539.20078 206.7 543.59961 212 543.59961 L 376 543.59961 C 381.4 543.59961 385.69922 539.20078 385.69922 533.80078 L 385.69922 369.80078 C 385.69922 364.40078 381.3 360 376 360 L 212 360 z " mix-blend-mode="normal" solid-color="#000000" opacity="0.8" white-space="normal" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="M 450.15625 35.261719 C 448.3725 35.295151 446.11328 35.886719 443.30078 37.199219 C 424.80078 46.399219 404.30078 49.800391 384.30078 53.400391 C 348.30078 58.100391 312.90078 57.2 277.30078 58 C 243.30078 59.5 209.00078 53.900391 175.30078 48.900391 C 158.30078 47.300391 144.30078 34.700391 127.30078 35.400391 C 120.40078 45.400391 140.60039 58.199609 139.90039 71.099609 C 143.20039 87.899609 168.50078 85.500391 167.80078 103.90039 C 180.40078 113.00039 198.40078 107.30078 212.30078 113.80078 C 219.70078 127.30078 195.00078 129.90039 185.30078 127.40039 C 164.30078 120.00039 165.09961 143.00039 169.59961 156.40039 C 182.59961 159.10039 196.10039 158.30039 209.40039 158.90039 C 217.30039 156.80039 217.29961 162.39961 216.59961 168.59961 C 220.89961 181.29961 209.49961 185.2 203.09961 191 C 211.89961 206.2 209.20039 224.2 209.90039 241 C 210.50039 270.3 208.10039 300.39922 212.15039 330.19922 C 217.20039 336.59922 230.19922 337.3 235.19922 331 C 239.79922 274 237.69961 216 240.59961 159 C 273.59961 157.2 306.59961 157.50078 339.59961 156.80078 C 347.39961 154.40078 347.60078 159.60039 346.80078 165.90039 C 348.20078 177.20039 343.80039 188.60039 343.90039 198.90039 C 348.60039 237.90039 346.90078 276.30039 349.80078 314.90039 C 344.00078 333.80039 371.29961 338.4 379.59961 326.5 C 381.69961 290.5 379.5 254.5 379 218.5 C 379.4 212.1 376.59922 204.60078 382.69922 200.30078 C 395.29922 191.10078 384.60078 182.70078 373.30078 180.30078 C 369.20078 173.30078 371.00039 164.49961 369.90039 156.59961 L 387.30078 156.30078 C 397.90078 154.20078 417.79922 161.39961 419.19922 146.59961 C 425.39922 129.19961 413.19922 119.90078 396.69922 126.30078 C 384.89922 134.30078 360.19922 111.80039 382.69922 110.40039 C 396.89922 108.00039 419.29961 113 421.59961 93 C 433.89961 85.2 447.09961 73.899219 449.09961 58.199219 C 455.51211 51.196094 459.78851 35.081186 450.15625 35.261719 z M 275.24219 111.74805 C 279.58943 111.62093 279.61382 116.2423 280.09961 123.59961 C 282.49961 131.59961 276.60078 131.29922 270.30078 130.69922 C 260.50078 132.49922 237.90078 126.99961 245.30078 114.09961 C 254.10078 110.89961 263.79961 112.49961 273.09961 112.09961 C 273.91099 111.88179 274.62115 111.76621 275.24219 111.74805 z M 329.41602 111.80078 C 339.63114 111.64336 352.52148 113.26914 341.34961 124.40039 C 333.59961 129.90039 323.59922 128.10039 314.69922 128.40039 C 307.99922 130.00039 312.29961 120.49961 311.09961 116.59961 C 308.89961 108.89961 318.69961 113.19961 323.09961 112.09961 C 324.84336 111.96836 327.05868 111.83711 329.41602 111.80078 z M 212 360 C 206.6 360 202.30078 364.40078 202.30078 369.80078 L 202.30078 533.80078 C 202.30078 539.20078 206.7 543.59961 212 543.59961 L 376 543.59961 C 381.4 543.59961 385.69922 539.20078 385.69922 533.80078 L 385.69922 369.80078 C 385.69922 364.40078 381.3 360 376 360 L 212 360 z " id="rect4154" isolation="auto" color-rendering="auto" white-space="normal" solid-opacity="1" mix-blend-mode="normal" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path d="m 221,379 144,0 0,145 -144,0 z" id="rect3587-7" mix-blend-mode="normal" isolation="auto" white-space="normal" opacity="0.8" fill="#ffffff" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
</svg>

After

Width:  |  Height:  |  Size: 6.8 KiB

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path id="path4140" d="M 291.05469 32.746094 C 270.08872 33.475826 254.79688 57.813281 264 76.800781 C 271.6 97.300781 301.00039 102.79961 315.90039 86.599609 C 331.70039 71.599609 325.29922 42.000391 304.69922 34.900391 C 301.09922 33.500391 297.09961 32.7 293.09961 32.75 C 292.41211 32.723438 291.73101 32.722554 291.05469 32.746094 z M 205.62695 64.748047 C 191.61177 64.811337 182.80234 83.446094 192.19922 94.199219 C 206.59922 112.59922 220.19961 131.19922 235.09961 149.19922 C 243.99961 156.79922 256.09961 152.20039 266.59961 152.40039 L 282.09961 151.30078 C 288.29961 177.30078 293.9 203.30078 300.5 229.30078 C 284.2 245.60078 267.49961 261.29922 251.59961 278.19922 C 243.89961 289.19922 246.99961 304.89922 253.59961 315.19922 C 262.29961 326.39922 276.99922 322.79922 289.19922 323.19922 C 315.79922 322.79922 342.19922 322.69922 369.19922 322.19922 C 385.99922 321.29922 395.69922 299.40078 385.19922 286.30078 C 377.99922 275.30078 364.29922 276.99961 353.19922 277.09961 L 329.19922 277.40039 C 343.79922 265.40039 358.99961 253.80039 373.09961 241.40039 C 381.29961 230.40039 380.59961 214.90039 377.59961 202.40039 C 371.59961 176.80039 365.89961 151.40039 359.59961 125.40039 C 352.29961 99.600391 317.59922 88.5 296.69922 105.5 C 287.69922 112.7 286.70039 114.89922 277.40039 115.19922 L 255.90039 116.69922 C 243.00039 100.99922 231 85 219 69 C 215 67 211 64.900781 207 64.800781 C 206.5375 64.763281 206.07906 64.746005 205.62695 64.748047 z M 216 362 C 210.6 362 206.30078 366.40078 206.30078 371.80078 L 206.30078 535.80078 C 206.30078 541.20078 210.7 545.59961 216 545.59961 L 380 545.59961 C 385.4 545.59961 389.69922 541.20078 389.69922 535.80078 L 389.69922 371.80078 C 389.69922 366.40078 385.3 362 380 362 L 216 362 z " mix-blend-mode="normal" solid-color="#000000" opacity="0.8" white-space="normal" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="M 291.05469 32.746094 C 270.08872 33.475826 254.79688 57.813281 264 76.800781 C 271.6 97.300781 301.00039 102.79961 315.90039 86.599609 C 331.70039 71.599609 325.29922 42.000391 304.69922 34.900391 C 301.09922 33.500391 297.09961 32.7 293.09961 32.75 C 292.41211 32.723438 291.73101 32.722554 291.05469 32.746094 z M 205.62695 64.748047 C 191.61177 64.811337 182.80234 83.446094 192.19922 94.199219 C 206.59922 112.59922 220.19961 131.19922 235.09961 149.19922 C 243.99961 156.79922 256.09961 152.20039 266.59961 152.40039 L 282.09961 151.30078 C 288.29961 177.30078 293.9 203.30078 300.5 229.30078 C 284.2 245.60078 267.49961 261.29922 251.59961 278.19922 C 243.89961 289.19922 246.99961 304.89922 253.59961 315.19922 C 262.29961 326.39922 276.99922 322.79922 289.19922 323.19922 C 315.79922 322.79922 342.19922 322.69922 369.19922 322.19922 C 385.99922 321.29922 395.69922 299.40078 385.19922 286.30078 C 377.99922 275.30078 364.29922 276.99961 353.19922 277.09961 L 329.19922 277.40039 C 343.79922 265.40039 358.99961 253.80039 373.09961 241.40039 C 381.29961 230.40039 380.59961 214.90039 377.59961 202.40039 C 371.59961 176.80039 365.89961 151.40039 359.59961 125.40039 C 352.29961 99.600391 317.59922 88.5 296.69922 105.5 C 287.69922 112.7 286.70039 114.89922 277.40039 115.19922 L 255.90039 116.69922 C 243.00039 100.99922 231 85 219 69 C 215 67 211 64.900781 207 64.800781 C 206.5375 64.763281 206.07906 64.746005 205.62695 64.748047 z M 216 362 C 210.6 362 206.30078 366.40078 206.30078 371.80078 L 206.30078 535.80078 C 206.30078 541.20078 210.7 545.59961 216 545.59961 L 380 545.59961 C 385.4 545.59961 389.69922 541.20078 389.69922 535.80078 L 389.69922 371.80078 C 389.69922 366.40078 385.3 362 380 362 L 216 362 z " id="rect4154" isolation="auto" color-rendering="auto" white-space="normal" solid-opacity="1" mix-blend-mode="normal" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path d="m 226,382 144,0 0,144 -144,0 z" id="rect3587" mix-blend-mode="normal" isolation="auto" white-space="normal" opacity="0.8" fill="#ffffff" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
</svg>

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata10"/>
<path id="path4138" d="m 88,331 c -15,24 -32.4,45 -48,68 2.5,6.8 6.7,11.5 12,14.9 -0.4,0.1 -0.7,0.2 -1,0.3 10.5,13.7 105,23.6 139,25 86,1.2 87,2.1 168,-0.2 73,-1.9 124,-4.4 154,-12.8 5.3,-1.3 10.4,-3.2 15,-5.8 3.5,-2.1 6.7,-4 9.2,-6.7 l 0,0 0,0 c 11.7,-24.4 -3.7,-52 -22.4,-68 C 469,294 429,238 378,193 361,184 345,180 328,181 228,181 136,246 88,331 Z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 88,331 c -15,24 -32.4,45 -48,68 2.5,6.8 6.7,11.5 12,14.9 -0.4,0.1 -0.7,0.2 -1,0.3 10.5,13.7 105,23.6 139,25 86,1.2 87,2.1 168,-0.2 73,-1.9 124,-4.4 154,-12.8 5.3,-1.3 10.4,-3.2 15,-5.8 3.5,-2.1 6.7,-4 9.2,-6.7 l 0,0 0,0 c 11.7,-24.4 -3.7,-52 -22.4,-68 C 469,294 429,238 378,193 361,184 345,180 328,181 228,181 136,246 88,331 Z" id="path2838"/>
<path d="m 237,231 c -51,21 -70,39 -113,102 -29,43 -62,79 -73,81 10.5,13.7 105,23.6 139,25 86,1.2 87,2.1 168,-0.2 101,-2.7 160,-6.4 178,-25.3 C 532,411 525,404 518,394 507,379 478,342 452,313 382,234 356,205 321,204 c -21,0 -45,11 -84,27 z" id="path3593" opacity="0.9" fill="#ffffff"/>
<path id="path3638" d="m 397,356 c 20.3,28 36.9,55 36.9,58 0,3.8 -64,6.9 -141,6.9 -78,0 -141,-3 -141,-6.3 C 151,383 241,280 270,280 c 45.6,0 93,28 127,76 z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path mix-blend-mode="normal" white-space="normal" isolation="auto" id="path4137" d="m 74,171 c 19,16.9 42.9,27.8 66,36.8 12.4,13.6 24.7,27 37,40.9 -36,-21.3 -81,-17.4 -120,-6.9 12.6,39 45.9,79 90,80 24.8,0.9 54,-5.4 68,-27 20.8,24 44,46.6 71,64 -26.7,-2.5 -57,-3.1 -81,0.6 -35,8.3 -59.9,36.5 -91,53 -8.7,7.5 -27.9,15.4 -6.1,21.9 37,23.3 73.9,58 121,53 54,-2.5 110,-44.7 112,-102 20.7,0.9 55,11 78,23.9 47.9,26.7 68,80 92,126 8.6,-1.5 18,-2.9 26,-6.4 -15.9,-37.6 -37.7,-74 -66,-104 -27,-27.8 -65,-45 -103,-49 33,-26 35.6,-74 27.7,-112 -11.1,-50.7 -47,-98 -97,-116 -26,63 -20.4,141 19.4,197 6.4,9.5 18.7,22.7 0.7,11 -36,-19.7 -68.8,-46 -95,-78 29.5,-28.4 45,-74 29,-113 -13.2,-34 -39,-63 -68,-85 -24,42.7 -31,99 -6.1,143 7.4,12.4 -8.5,-7.5 -12.7,-11.3 C 158,205 152,195 154,181 151,138 117,108 84,85 72,77 59.8,68 47,63 33.7,99.6 42.2,146 74,171 Z" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 74,171 c 19,16.9 42.9,27.8 66,36.8 12.4,13.6 24.7,27 37,40.9 -36,-21.3 -81,-17.4 -120,-6.9 12.6,39 45.9,79 90,80 24.8,0.9 54,-5.4 68,-27 20.8,24 44,46.6 71,64 -26.7,-2.5 -57,-3.1 -81,0.6 -35,8.3 -59.9,36.5 -91,53 -8.7,7.5 -27.9,15.4 -6.1,21.9 37,23.3 73.9,58 121,53 54,-2.5 110,-44.7 112,-102 20.7,0.9 55,11 78,23.9 47.9,26.7 68,80 92,126 8.6,-1.5 18,-2.9 26,-6.4 -15.9,-37.6 -37.7,-74 -66,-104 -27,-27.8 -65,-45 -103,-49 33,-26 35.6,-74 27.7,-112 -11.1,-50.7 -47,-98 -97,-116 -26,63 -20.4,141 19.4,197 6.4,9.5 18.7,22.7 0.7,11 -36,-19.7 -68.8,-46 -95,-78 29.5,-28.4 45,-74 29,-113 -13.2,-34 -39,-63 -68,-85 -24,42.7 -31,99 -6.1,143 7.4,12.4 -8.5,-7.5 -12.7,-11.3 C 158,205 152,195 154,181 151,138 117,108 84,85 72,77 59.8,68 47,63 33.7,99.6 42.2,146 74,171 Z" id="path4136" isolation="auto" white-space="normal" mix-blend-mode="normal" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" height="580" width="580" version="1.0">
<metadata id="metadata2975"/>
<path id="path8076" d="m 556.36,242.65 c -27.13,-0.43 -54.27,-0.86 -81.4,-1.29 -77.91,77.91 -155.81,155.81 -233.72,233.72 0,27.13 0,54.27 0,81.41 M 337.33,23.633 c 0.44,27.136 0.87,54.267 1.31,81.407 -77.91,77.91 -155.81,155.82 -233.72,233.72 -27.141,0 -54.271,0 -81.408,0" inkscape:connector-curvature="0" opacity="0.8" fill="none" stroke="#ffffff" stroke-linejoin="round" stroke-width="105.38"/>
<path id="path3068" d="m 337.33,23.633 c 0.44,27.136 0.87,54.267 1.31,81.407 -77.91,77.91 -155.81,155.82 -233.72,233.72 -27.141,0 -54.271,0 -81.408,0" inkscape:connector-curvature="0" opacity="0.8" fill="none" stroke="#820000" stroke-width="63.23"/>
<path id="path3068-9" d="m 556.36,242.65 c -27.13,-0.43 -54.27,-0.86 -81.4,-1.29 -77.91,77.91 -155.81,155.81 -233.72,233.72 0,27.13 0,54.27 0,81.41" inkscape:connector-curvature="0" opacity="0.8" fill="none" stroke="#820000" stroke-width="63.23"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" viewBox="0 0 580 580" height="580" width="580" version="1.0" enable-background="new 0 0 32.6 32.6">
<metadata id="metadata11"/>
<path id="path8069" d="m 127.68,205.14 c 14.07,1.16 28.36,0 42.19,1.5 39.42,19.14 78.73,38.16 118.04,57.3 41.5,-20.41 83,-40.7 124.5,-61.1 13.14,1.15 26.17,1.5 39.19,2.3 -3,10.03 -6.11,19.95 -9.22,29.97 -38.39,18.1 -76.77,36.09 -115.28,54.18 36.55,16.95 73.09,33.78 109.52,50.72 3.11,10.72 6.22,21.56 9.22,32.28 -12.45,1.15 -25.13,2.88 -37.58,3.11 -40.12,-20.63 -80.23,-41.27 -120.35,-61.9 -41.15,20.75 -82.31,41.96 -123.34,62.94 -12.68,1.27 -25.36,1.15 -38.04,0 1.15,-10.38 2.31,-20.75 3.46,-31.12 36.19,-17.64 72.27,-35.39 108.36,-53.03 -34.93,-16.48 -69.86,-33.08 -104.9,-49.57 -1.85,-12.68 -3.81,-25.35 -5.77,-38.04 z" inkscape:connector-curvature="0" opacity="0.8" fill="none" stroke="#ffffff" stroke-linejoin="round" stroke-linecap="round" stroke-width="37.928"/>
<path id="path3" d="m 127.68,205.14 c 14.07,1.16 28.36,0 42.19,1.5 39.42,19.14 78.73,38.16 118.04,57.3 41.5,-20.41 83,-40.7 124.5,-61.1 13.14,1.15 26.17,1.5 39.19,2.3 -3,10.03 -6.11,19.95 -9.22,29.97 -38.39,18.1 -76.77,36.09 -115.28,54.18 36.55,16.95 73.09,33.78 109.52,50.72 3.11,10.72 6.22,21.56 9.22,32.28 -12.45,1.15 -25.13,2.88 -37.58,3.11 -40.12,-20.63 -80.23,-41.27 -120.35,-61.9 -41.15,20.75 -82.31,41.96 -123.34,62.94 -12.68,1.27 -25.36,1.15 -38.04,0 1.15,-10.38 2.31,-20.75 3.46,-31.12 36.19,-17.64 72.27,-35.39 108.36,-53.03 -34.93,-16.48 -69.86,-33.08 -104.9,-49.57 -1.85,-12.68 -3.81,-25.35 -5.77,-38.04 z" inkscape:connector-curvature="0" fill="#ff0000" stroke="#ff0000" stroke-linejoin="round" stroke-linecap="round" stroke-width="11.527"/>
<path id="path5" d="m 157.65,215.52 c -3.45,5.76 -6.91,11.53 -10.37,17.29 38.85,19.25 77.7,38.39 116.42,57.64 -38.03,19.94 -76.07,39.99 -114.12,59.94 3.46,5.42 6.92,10.72 10.38,16.14 43.11,-22.25 86.11,-44.61 129.11,-66.86 41.15,21.9 82.3,43.8 123.34,65.71 4.26,-6.92 8.53,-13.84 12.68,-20.75 -39.54,-19.26 -79.08,-38.39 -118.73,-57.64 39.65,-18.1 79.19,-36.08 118.73,-54.18 -4.15,-6.11 -8.42,-12.34 -12.68,-18.45 -41.04,20.41 -82.19,40.7 -123.34,61.1 -43.81,-19.94 -87.61,-40 -131.42,-59.94 z" inkscape:connector-curvature="0" fill="#ffffff"/>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" viewBox="0 0 580 580" height="580" width="580" version="1.0" enable-background="new 0 0 32.6 32.6">
<metadata id="metadata11"/>
<path id="path8069" d="m 44.547,161.38 c 21.308,1.75 42.965,0 63.923,2.27 59.73,29 119.29,57.81 178.85,86.81 62.88,-30.92 125.75,-61.66 188.63,-92.57 19.91,1.75 39.65,2.27 59.38,3.49 -4.54,15.2 -9.25,30.22 -13.97,45.41 -58.16,27.42 -116.32,54.67 -174.66,82.09 55.37,25.68 110.74,51.18 165.93,76.85 4.71,16.24 9.43,32.66 13.97,48.91 -18.86,1.74 -38.07,4.36 -56.94,4.71 C 408.88,388.09 348.1,356.82 287.32,325.56 224.97,357 162.61,389.14 100.44,420.92 c -19.215,1.92 -38.428,1.75 -57.64,0 1.747,-15.72 3.493,-31.44 5.24,-47.15 54.84,-26.73 109.51,-53.62 164.18,-80.35 C 159.3,268.45 106.38,243.3 53.279,218.32 50.485,199.11 47.516,179.9 44.547,160.68 Z" opacity="0.8" fill="none" stroke="#ffffff" stroke-linejoin="round" stroke-linecap="round" stroke-width="57.47"/>
<path id="path3" d="m 44.547,161.38 c 21.308,1.75 42.965,0 63.923,2.27 59.73,29 119.29,57.81 178.85,86.81 62.88,-30.92 125.75,-61.66 188.63,-92.57 19.91,1.75 39.65,2.27 59.38,3.49 -4.54,15.2 -9.25,30.22 -13.97,45.41 -58.16,27.42 -116.32,54.67 -174.66,82.09 55.37,25.68 110.74,51.18 165.93,76.85 4.71,16.24 9.43,32.66 13.97,48.91 -18.86,1.74 -38.07,4.36 -56.94,4.71 C 408.88,388.09 348.1,356.82 287.32,325.56 224.97,357 162.61,389.14 100.44,420.92 c -19.215,1.92 -38.428,1.75 -57.64,0 1.747,-15.72 3.493,-31.44 5.24,-47.15 54.84,-26.73 109.51,-53.62 164.18,-80.35 C 159.3,268.45 106.38,243.3 53.279,218.32 50.485,199.11 47.516,179.9 44.547,160.68 Z" inkscape:connector-curvature="0" fill="#ff0000" stroke="#ff0000" stroke-linejoin="round" stroke-linecap="round" stroke-width="17.466"/>
<path id="path5" d="m 89.957,177.1 c -5.239,8.73 -10.479,17.47 -15.719,26.2 58.862,29.17 117.722,58.16 176.402,87.33 -57.63,30.21 -115.27,60.6 -172.909,90.82 5.24,8.21 10.48,16.24 15.72,24.45 65.319,-33.71 130.469,-67.59 195.619,-101.3 62.35,33.19 124.7,66.37 186.88,99.56 6.46,-10.48 12.92,-20.96 19.21,-31.44 -59.91,-29.17 -119.81,-58.16 -179.89,-87.33 60.08,-27.42 119.98,-54.67 179.89,-82.09 -6.29,-9.26 -12.75,-18.69 -19.21,-27.95 -62.18,30.92 -124.53,61.66 -186.88,92.57 C 222.7,237.71 156.33,207.32 89.957,177.1 Z" inkscape:connector-curvature="0" fill="#ffffff"/>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path d="M 153.80078 34.5 C 149.50078 34.4 146.10078 37.799609 146.05078 41.849609 L 146 140.59961 C 125.4 149.59961 93.999219 165.10078 95.199219 189.30078 L 95.199219 512.30078 C 98.199219 543.10078 150.19922 545.10078 172.19922 545.30078 C 197.69922 543.70078 252.19922 543.40078 252.19922 512.30078 L 252.19922 188.30078 C 251.29922 165.90078 214.29922 147.80078 198.19922 141.30078 L 198.19922 42.300781 C 198.19922 38.100781 194.79961 34.699609 190.59961 34.599609 L 153.80078 34.5 z M 419.98242 288.07812 C 393.15161 287.90894 368.4375 291.28789 351 295.90039 C 351.22026 296.10329 351.45478 296.30123 351.6875 296.5 C 351.49008 296.43125 351.29746 296.3702 351.09961 296.30078 C 347.99961 336.30078 371.80039 401.30039 404.90039 413.15039 L 405 501 C 375 502.9 353.09961 512.30078 353.09961 523.30078 C 353.09961 535.80078 381.09961 546 416.09961 546 C 450.89961 546 479.09961 536.00078 479.09961 523.30078 C 479.09961 512.50078 457.69961 503.30078 428.09961 501.30078 L 428.09961 414.30078 C 456.99961 402.80078 486.09961 333.30078 484.09961 296.30078 C 483.381 296.53511 482.65415 296.75523 481.93359 296.98633 C 482.62403 296.65837 483.32962 296.34035 484 296 C 463 290.4875 440.85083 288.20972 419.98242 288.07812 z " id="path4139" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 351,295.9 c 20.3,18.7 94,19.9 133,0.1 -48,-12.6 -102,-8.3 -133,-0.1 z" id="path3840-8" opacity="0.8" fill="#ac39ac"/>
<path white-space="normal" isolation="auto" mix-blend-mode="normal" d="m 146,140.6 c -20.6,9 -52,24.5 -50.8,48.7 l 0,323 c 3,30.8 55,32.8 77,33 25.5,-1.6 80,-1.9 80,-33 l 0,-324 c -0.9,-22.4 -37.9,-40.5 -54,-47 l 0,-99 c 0,-4.2 -3.4,-7.6 -7.6,-7.7 l -36.8,-0.1 c -4.3,-0.1 -7.7,3.3 -7.75,7.35 z" id="rect3771" fill="#ac39ac" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path white-space="normal" isolation="auto" mix-blend-mode="normal" d="m 405,501 c -30,1.9 -51.9,11.3 -51.9,22.3 0,12.5 28,22.7 63,22.7 34.8,0 63,-10 63,-22.7 0,-10.8 -21.4,-20 -51,-22 l 0,-87 c 28.9,-11.5 58,-81 56,-118 -36.8,12 -76,20 -133,0 -3.1,40 20.7,105 53.8,116.85 z" id="path3845" fill="#ac39ac" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path id="path4139" d="M 107,155.9 C 47.7,206 37.8,300 78,365 c 40,73 125,113 206,113 74,-1 148,-29 196,-86 38,-44 58,-105 46,-162 -8,-65 -74,-114 -138,-109 -34,3 -66,16 -93,35 -25,-23 -60,-36 -94,-35 -34,0.4 -68,13.5 -94,34.9 z m 128,54 c -30.8,38 -55,81 -73.9,126 -11.3,29 28,58 51.7,36.7 18.2,-19.8 24.4,-48 39.9,-70 12.6,-17.8 26.5,-49 43,-55 28.4,32 51,69 66,109 15.5,26.6 61.9,14 61,-16.9 -3.1,-27 -18.4,-51 -31.4,-75 C 379,243 364,222 347,203 c 23.9,-13.4 54,-21.7 80,-7.2 20,9.7 33.7,30.4 34,52.6 7.5,59.8 -34.8,116 -86,142 C 306,424 214,414 158,359 124,327 110,272 134,230 c 13,-25 40,-42 68,-42 12.8,0.1 52,6.2 33,21.9 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" fill-rule="evenodd" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="#ac39ac" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="M 107,155.9 C 47.7,206 37.8,300 78,365 c 40,73 125,113 206,113 74,-1 148,-29 196,-86 38,-44 58,-105 46,-162 -8,-65 -74,-114 -138,-109 -34,3 -66,16 -93,35 -25,-23 -60,-36 -94,-35 -34,0.4 -68,13.5 -94,34.9 z m 128,54 c -30.8,38 -55,81 -73.9,126 -11.3,29 28,58 51.7,36.7 18.2,-19.8 24.4,-48 39.9,-70 12.6,-17.8 26.5,-49 43,-55 28.4,32 51,69 66,109 15.5,26.6 61.9,14 61,-16.9 -3.1,-27 -18.4,-51 -31.4,-75 C 379,243 364,222 347,203 c 23.9,-13.4 54,-21.7 80,-7.2 20,9.7 33.7,30.4 34,52.6 7.5,59.8 -34.8,116 -86,142 C 306,424 214,414 158,359 124,327 110,272 134,230 c 13,-25 40,-42 68,-42 12.8,0.1 52,6.2 33,21.9 z" id="path7165" fill="#ac39ac" fill-rule="evenodd" stroke-linecap="round" stroke-width="73"/>
<path d="m400 140c11.6 2.3 16 42-.1 25C400 158 389 143 400 140m-160 13c19.9 12.8-37.8 21-22.3 1.4C225 152 233 154 240 153m-103 10c9-.5 38 9 19 15.7C150 178 120 173 137 163m196 6c17.4 10.3-30.7 36.6-19.4 11.9C321 178 325 171 333 169m152 13c19 11.8-34.4 21.7-24 2.9C468 182 477 184 485 182M103 225C122 235 69.9 259 85 236 92 233 96 227 103 225m254 18c19.3 10.7-36 27-21 6.3C343 248 350 244 357 243m-102 3c22.5 14.4-42.9 14.2-17.8.6C243 247 249 246 255 246m233 2c8 2.7 35 17.7 16.4 21.6C498 267 472 254 488 248m-116 57c8.7.1 38 8 19 14.8C384 319 354 315 372 305m-176 5c8.4 1.9 35 18.3 16.2 20.9C207 328 180 316 196 310m-92 1c18.7 14.4-39 19.6-22 1.9C89 312 97 312 104 311m383 14c18.8 16.5-42 30.9-14.2 8.3C477 330 481 326 487 325m-361 37c11.4 4.3 15.2 43-1.3 24.3C125 380 113 363 126 362m305 12c12.2 3.4 8.8 45.7-4.4 25.5C428 392 421 377 431 374m-250 42c7.4 3.6 34.8 3.2 21.7 15.6C196 432 161 426 181 416m193 10c19 11.9-34 21.6-24 2.7C357 426 366 428 374 426m-111 5c7.8 2.9 33.9 18.3 15.7 21.7C273 450 246 437 263 431" id="path4138" fill="#ffffff" fill-rule="evenodd" stroke-linecap="round" stroke-width="73"/>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata10"/>
<path id="path4147" d="M 376 140 C 367 140 358 141 351 141 L 349 163 L 385 163 C 401 166 376 174 374 182 C 372 191 376 200 378 208 L 214 209 L 205 185 C 215 182 240 176 244 173 C 248 169 244 164 241 164 L 156 164 C 157 182 171 186 179 188 L 189 211 C 178 231 168 248 158 267 C 75 243 35.699219 305 34.699219 351 C 34.699219 401 75 441 125 441 C 171 441 210 405 215 360 L 236 360 C 239 364 243 368 248 370 L 239 391 L 222 391 C 213 392 216 403 222 404 L 258 403 C 268 402 265 391 258 391 L 248 391 L 256 372 C 279 374 288 357 285 345 L 397 269 C 398 272 399 276 400 279 C 379 295 366 321 366 349 C 366 399 406 439 456 439 C 506 439 546 399 546 349 C 543 292 498 245 422 266 C 412 242 400 205 399 191 C 401 181 415 180 418 168 C 416 144 396 140 376 140 z M 223 228 L 384 228 C 386 234 388 241 390 248 C 352 275 315 302 276 327 L 283 309 C 291 309 290 309 299 308 C 308 307 304 296 299 296 L 263 296 C 253 297 256 309 263 309 L 273 309 L 265 327 C 265 326 264 326 263 326 L 223 228 z M 200 235 L 240 334 C 239 335 237 337 236 339 L 214 339 C 211 313 197 291 177 277 L 200 235 z M 458 284 C 495 284 519 318 520 349 C 520 384 491 413 456 413 C 397 410 375 354 408 306 C 412 321 419 337 430 348 C 463 377 483 353 446 330 C 438 318 433 305 429 291 C 439 286 449 284 458 284 z M 123 287 C 130 287 138 288 146 290 L 117 344 C 113 351 118 359 126 359 L 189 359 C 185 391 158 415 125 415 C 89 415 61 386 61 351 C 60.9 316 84 287 123 287 z M 164 300 C 176 310 185 323 188 339 L 143 339 L 164 300 z " mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="M 376 140 C 367 140 358 141 351 141 L 349 163 L 385 163 C 401 166 376 174 374 182 C 372 191 376 200 378 208 L 214 209 L 205 185 C 215 182 240 176 244 173 C 248 169 244 164 241 164 L 156 164 C 157 182 171 186 179 188 L 189 211 C 178 231 168 248 158 267 C 75 243 35.699219 305 34.699219 351 C 34.699219 401 75 441 125 441 C 171 441 210 405 215 360 L 236 360 C 239 364 243 368 248 370 L 239 391 L 222 391 C 213 392 216 403 222 404 L 258 403 C 268 402 265 391 258 391 L 248 391 L 256 372 C 279 374 288 357 285 345 L 397 269 C 398 272 399 276 400 279 C 379 295 366 321 366 349 C 366 399 406 439 456 439 C 506 439 546 399 546 349 C 543 292 498 245 422 266 C 412 242 400 205 399 191 C 401 181 415 180 418 168 C 416 144 396 140 376 140 z M 223 228 L 384 228 C 386 234 388 241 390 248 C 352 275 315 302 276 327 L 283 309 C 291 309 290 309 299 308 C 308 307 304 296 299 296 L 263 296 C 253 297 256 309 263 309 L 273 309 L 265 327 C 265 326 264 326 263 326 L 223 228 z M 200 235 L 240 334 C 239 335 237 337 236 339 L 214 339 C 211 313 197 291 177 277 L 200 235 z M 458 284 C 495 284 519 318 520 349 C 520 384 491 413 456 413 C 397 410 375 354 408 306 C 412 321 419 337 430 348 C 463 377 483 353 446 330 C 438 318 433 305 429 291 C 439 286 449 284 458 284 z M 123 287 C 130 287 138 288 146 290 L 117 344 C 113 351 118 359 126 359 L 189 359 C 185 391 158 415 125 415 C 89 415 61 386 61 351 C 60.9 316 84 287 123 287 z M 164 300 C 176 310 185 323 188 339 L 143 339 L 164 300 z " id="path4144" fill="#ac39ac"/>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path mix-blend-mode="normal" white-space="normal" isolation="auto" id="path4137" d="m 56,287 c 75,86 152,171 228,257 13.7,4.7 7.2,-16 8.5,-24.3 L 292,444 c -9,-14.6 -22.7,-26.4 -33.5,-39.9 0,0 -190,-218 -193,-219 -11.3,-4.9 -8.9,20.3 -9.25,24.85 C 55.9,235 55,261 56,287 Z M 70,157 c -4.9,5 9,15.9 15,23 l 214,243 c 9.5,3.4 18,-7.5 26.9,-10.8 L 524,298 c 6.6,-8.9 -6.2,-16.7 -12.4,-23.4 L 302,32.7 C 300.8,31.5 300,30.6 298,31 219,75.8 143,114 70,157 Z" solid-color="#000000" color-interpolation-filters="linearRGB" opacity="0.8" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path mix-blend-mode="normal" white-space="normal" isolation="auto" id="path4139" d="m 309,522 c -5.8,4.6 -4.7,17 3.8,18 76.77129,-43.39779 150.25131,-85.81648 212,-122 6.1,-4.8 4.8,-18.7 -4.6,-18.4 C 456.71159,435.65718 370.7288,485.36996 309,522 Z m 0.4,-40.3 c -5.8,4.6 -4.7,17 3.8,18 74.60979,-42.67729 150.25131,-85.81648 212,-122 6.1,-4.8 4.8,-18.7 -5.05,-17.85 -72.73783,41.31178 -148.55451,85.78517 -210.75,121.85 z m 0,-40 c -5.8,4.6 -4.7,17 3.8,18 74.60979,-41.2363 150.25131,-85.81648 212,-122 6.1,-4.8 4.8,-18.7 -4.8,-18 -6.4,2 -149,86 -211,122 z" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 56,287 c 75,86 152,171 228,257 13.7,4.7 7.2,-16 8.5,-24.3 L 292,444 c -9,-14.6 -22.7,-26.4 -33.5,-39.9 0,0 -190,-218 -193,-219 -11.3,-4.9 -8.9,20.3 -9.25,24.85 C 55.9,235 55,261 56,287 Z M 70,157 c -4.9,5 9,15.9 15,23 l 214,243 c 9.5,3.4 18,-7.5 26.9,-10.8 L 524,298 c 6.6,-8.9 -6.2,-16.7 -12.4,-23.4 L 302,32.7 C 300.8,31.5 300,30.6 298,31 219,75.8 143,114 70,157 Z" id="path3474" isolation="auto" white-space="normal" mix-blend-mode="normal" fill="#ac39ac" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" fill-rule="evenodd" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path d="m 309,522 c -5.8,4.6 -4.7,17 3.8,18 76.77129,-43.39779 150.25131,-85.81648 212,-122 6.1,-4.8 4.8,-18.7 -4.6,-18.4 C 456.71159,435.65718 370.7288,485.36996 309,522 Z m 0.4,-40.3 c -5.8,4.6 -4.7,17 3.8,18 74.60979,-42.67729 150.25131,-85.81648 212,-122 6.1,-4.8 4.8,-18.7 -5.05,-17.85 -72.73783,41.31178 -148.55451,85.78517 -210.75,121.85 z m 0,-40 c -5.8,4.6 -4.7,17 3.8,18 74.60979,-41.2363 150.25131,-85.81648 212,-122 6.1,-4.8 4.8,-18.7 -4.8,-18 -6.4,2 -149,86 -211,122 z" id="path3507" isolation="auto" white-space="normal" mix-blend-mode="normal" opacity="0.8" fill="#ac39ac" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" fill-rule="evenodd" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata10"/>
<path id="path4140" d="m 457.8,130.3 c -6.94963,6.11717 -11.28197,13.65281 -17.9,19.4 -0.6,0.6 -40.9,11 -40.9,11 -16.7,0 -44.7,9.1 -70.7,17.3 -29,9.2 -56.7,20 -85,25.5 -29.62626,5.20056 -61.68471,3.48898 -88,12.7 -21.484,6.98694 -36.21633,17.31191 -53,29.2 -9.505502,5.87934 -19.61059,12.31367 -27.3,18.8 -22.874126,16.93939 -31.01284,40.99693 -31.3,68.5 l 0,0.1 0,0.2 c 0.1,25 8.2,48.7 21,69.8 13,21 31,39.8 51,56 40.9,31.4 92,51.8 141,52 9.5,0 18.9,-0.8 28,-2.6 22.3803,-5.58108 43.35334,-29.14647 52.9,-46.2 16.26609,-26.59753 24.97463,-50.02583 29.6,-79.4 2.1,-14.4 4.1,-27.9 8.2,-38 10.93682,-25.24235 34.00537,-41.62692 48,-61.9 7,-10 15.2,-19 22.4,-30 6.3,-9.8 11.4,-21.9 12.5,-36.5 L 478,205.05 c 6.10027,-5.47056 15.90728,-4.81606 22.5,-5.35 15.21192,-2.7506 26.29614,-6.32491 34.2,-18.8 4.2212,-7.56556 5.06428,-15.85006 1.3,-23.3 -7.08036,-12.4997 -22.22771,-17.94202 -34,-21.7 -5.23663,-12.65014 -13.15142,-14.73244 -22.15,-16.25 -9.06799,0.14304 -16.48337,5.28027 -22.05,10.65 z m 21.7,2.6 c 4.4,-0.3 8.3,3.2 11,13.3 13.3,3 48.8,13.7 25.9,32 -14,11.4 -34.6,0.9 -49,15.8 l -26.3,12.6 c -3,0.4 -9,3 -15.1,4.2 -0.9,-6.2 -2.3,-12.2 -3.9,-18.2 -4.5,1.8 -10,3.4 -14.6,4.2 1.7,-8.4 3.6,-14.8 7.9,-21 l 28.8,-12.3 c 9.4,-4.1 24,-29.8 35,-30.6 z M 229.7,301.3 c 36.9149,27.65951 67.17676,73.72982 77.5,114.9 3.89522,19.15218 4.53861,40.49497 -2.6,57.5 -10.79991,20.8403 -29.25536,22.73742 -49.2,22.8 -44.5,-0.1 -94,-19.3 -132,-49 C 85,418 56,377 56,333 c 0,-14.3 3.1,-29 9.8,-43 17.521468,-23.01358 35.56555,-24.08307 57.1,-24.6 35.46574,3.53999 79.05373,17.68401 106.8,35.9 z M 168,338.6 c 7.13792,6.80786 13.80764,16.2447 14.1,25.3 -1.98563,11.37136 -8.88713,15.84682 -19,15.9 -15.82538,0.2563 -28.58537,-7.53777 -41.2,-16.5 -3.3,-2.9 -6.5,-8 -6.6,-14 0.33384,-6.86263 4.84875,-11.73317 10.3,-14.5 5.3,-2.6 11.5,-3.8 19,-3.8 7.5,0 16.6,1.9 23.4,7.6 z m -34.2,6.7 c -7.09011,2.05129 -4.6824,6.85146 -1.6,9.9 9.56447,5.67652 20.23845,11.55267 31,11.7 6.73073,-0.48095 5.2172,-7.05881 2.6,-11 -4.65045,-7.46091 -12.78077,-11.88547 -20.9,-12 -5,0 -8.4,0.6 -11.1,1.4 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m67 399l43.9 50 56 33.4 61 17.9 51.9 3.1 20.4-12.4 13.6-22.9 9.9-74-52.6-98-86-35.9-72-7.4-33.4 12.4-23.5 22.3-8.7 35.9 5 43.9 14.2 32.8" id="path6439-1" fill="#ffffff" fill-rule="evenodd"/>
<path d="m397 174l41-17.9 35-30 19 9.3 29.7 19.8 5 17.9-16.7 14.8-33.4 5.6-46 30.9-51.9-6.8 17.9-43" id="path6441-7" fill="#ffffff" fill-rule="evenodd"/>
<path d="m 457.8,130.3 c -6.94963,6.11717 -11.28197,13.65281 -17.9,19.4 -0.6,0.6 -40.9,11 -40.9,11 -16.7,0 -44.7,9.1 -70.7,17.3 -29,9.2 -56.7,20 -85,25.5 -29.62626,5.20056 -61.68471,3.48898 -88,12.7 -21.484,6.98694 -36.21633,17.31191 -53,29.2 -9.505502,5.87934 -19.61059,12.31367 -27.3,18.8 -22.874126,16.93939 -31.01284,40.99693 -31.3,68.5 l 0,0.1 0,0.2 c 0.1,25 8.2,48.7 21,69.8 13,21 31,39.8 51,56 40.9,31.4 92,51.8 141,52 9.5,0 18.9,-0.8 28,-2.6 22.3803,-5.58108 43.35334,-29.14647 52.9,-46.2 16.26609,-26.59753 24.97463,-50.02583 29.6,-79.4 2.1,-14.4 4.1,-27.9 8.2,-38 10.93682,-25.24235 34.00537,-41.62692 48,-61.9 7,-10 15.2,-19 22.4,-30 6.3,-9.8 11.4,-21.9 12.5,-36.5 L 478,205.05 c 6.10027,-5.47056 15.90728,-4.81606 22.5,-5.35 15.21192,-2.7506 26.29614,-6.32491 34.2,-18.8 4.2212,-7.56556 5.06428,-15.85006 1.3,-23.3 -7.08036,-12.4997 -22.22771,-17.94202 -34,-21.7 -5.23663,-12.65014 -13.15142,-14.73244 -22.15,-16.25 -9.06799,0.14304 -16.48337,5.28027 -22.05,10.65 z m 21.7,2.6 c 4.4,-0.3 8.3,3.2 11,13.3 13.3,3 48.8,13.7 25.9,32 -14,11.4 -34.6,0.9 -49,15.8 l -26.3,12.6 c -3,0.4 -9,3 -15.1,4.2 -0.9,-6.2 -2.3,-12.2 -3.9,-18.2 -4.5,1.8 -10,3.4 -14.6,4.2 1.7,-8.4 3.6,-14.8 7.9,-21 l 28.8,-12.3 c 9.4,-4.1 24,-29.8 35,-30.6 z M 229.7,301.3 c 36.9149,27.65951 67.17676,73.72982 77.5,114.9 3.89522,19.15218 4.53861,40.49497 -2.6,57.5 -10.79991,20.8403 -29.25536,22.73742 -49.2,22.8 -44.5,-0.1 -94,-19.3 -132,-49 C 85,418 56,377 56,333 c 0,-14.3 3.1,-29 9.8,-43 17.521468,-23.01358 35.56555,-24.08307 57.1,-24.6 35.46574,3.53999 79.05373,17.68401 106.8,35.9 z M 168,338.6 c 7.13792,6.80786 13.80764,16.2447 14.1,25.3 -1.98563,11.37136 -8.88713,15.84682 -19,15.9 -15.82538,0.2563 -28.58537,-7.53777 -41.2,-16.5 -3.3,-2.9 -6.5,-8 -6.6,-14 0.33384,-6.86263 4.84875,-11.73317 10.3,-14.5 5.3,-2.6 11.5,-3.8 19,-3.8 7.5,0 16.6,1.9 23.4,7.6 z m -34.2,6.7 c -7.09011,2.05129 -4.6824,6.85146 -1.6,9.9 9.56447,5.67652 20.23845,11.55267 31,11.7 6.73073,-0.48095 5.2172,-7.05881 2.6,-11 -4.65045,-7.46091 -12.78077,-11.88547 -20.9,-12 -5,0 -8.4,0.6 -11.1,1.4 z" id="path3" fill="#ac39ac"/>
<path d="m 110.9,449 c 40.20445,29.48953 70.54686,37.66867 117,51.3 43.75755,4.0099 64.6846,3.52299 85.9,-32.2 -2.89971,-138.18259 -69.31764,-206.73222 -200.7,-215.3 -70.683095,24.86414 -67.278751,55.86057 -60.6,114.5 11.336816,33.82499 30.500184,50.38 58.4,81.7 z" id="path6439" opacity="0.1" fill="#ac39ac" fill-rule="evenodd"/>
<path d="m 473,126.1 c 25.72881,12.71875 64.93028,33.82998 53.7,47 -31.73705,22.10932 -70.86577,34.20499 -96.1,51.3 -53.6318,-4.85215 -53.88329,-2.05545 -33.8,-50.1 34.95936,-11.60252 49.11338,-24.9829 76.2,-48.2 z" id="path6441" opacity="0.1" fill="#ac39ac" fill-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata10"/>
<path white-space="normal" isolation="auto" mix-blend-mode="normal" id="path4137" d="m 459.1,103.5 c -5.4,4.9 -8.9,12.4 -8.75,16.95 l 5.45,253.55 -43,26.8 15.9,76 30.5,0.1 c 0,-3.1 0.3,-39.8 0.4,-52 l 18.9,-10.4 18.7,10.6 -0.4,52 28.8,0.2 14.2,-76 -40.9,-28 9.45,-252 c 0.05,-5 -3.55,-12.9 -9.15,-17.9 -5.6,-5.1 -12.9,-7.4 -20.1,-7.35 -7.3,0.05 -14.5,2.55 -20,7.45 z m 29.3,20.1 c 0,4.8 -3.9,8.6 -8.7,8.6 -4.8,0 -8.6,-3.9 -8.6,-8.7 0,-4.8 3.9,-8.6 8.7,-8.6 4.8,0 8.6,3.9 8.6,8.7 z" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path4139" d="m 103,184 -27,71 c -11,2 -31,15 -31,39 l 0,91 27,0 0,29 c 0,36 51,36 51,0 l 0,-29 182,0 0,29 c 0,36 51,36 51,0 l 0,-29 27,0 0,-91 c 0,-24 -19,-37 -30,-39 l -28,-71 c -5,-14 -17,-26 -38,-26 -48.66667,0 -97.33333,0 -146,0 -21,0 -32,12 -38,26 z m 184,1 c 9,0 13,5 16,13 l 21,57 -220,0 21,-57 c 3,-8 7,-13 16,-13 48.66667,0 97.33333,0 146,0 z M 122,306 c 0,14 -11,24 -24,24 -13,0 -23,-10 -23,-24 0,-13 10,-24 23,-24 13,0 24,11 24,24 z m 231,0 c 0,14 -10,24 -23,24 -13,0 -24,-10 -24,-24 0,-13 11,-24 24,-24 13,0 23,11 23,24 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 459.1,103.5 c -5.4,4.9 -8.9,12.4 -8.75,16.95 l 5.45,253.55 -43,26.8 15.9,76 30.5,0.1 c 0,-3.1 0.3,-39.8 0.4,-52 l 18.9,-10.4 18.7,10.6 -0.4,52 28.8,0.2 14.2,-76 -40.9,-28 9.45,-252 c 0.05,-5 -3.55,-12.9 -9.15,-17.9 -5.6,-5.1 -12.9,-7.4 -20.1,-7.35 -7.3,0.05 -14.5,2.55 -20,7.45 z m 29.3,20.1 c 0,4.8 -3.9,8.6 -8.7,8.6 -4.8,0 -8.6,-3.9 -8.6,-8.7 0,-4.8 3.9,-8.6 8.7,-8.6 4.8,0 8.6,3.9 8.6,8.7 z" id="path2303" mix-blend-mode="normal" isolation="auto" white-space="normal" fill="#ac39ac" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path d="m 103,184 -27,71 c -11,2 -31,15 -31,39 l 0,91 27,0 0,29 c 0,36 51,36 51,0 l 0,-29 182,0 0,29 c 0,36 51,36 51,0 l 0,-29 27,0 0,-91 c 0,-24 -19,-37 -30,-39 l -28,-71 c -5,-14 -17,-26 -38,-26 -48.66667,0 -97.33333,0 -146,0 -21,0 -32,12 -38,26 z m 184,1 c 9,0 13,5 16,13 l 21,57 -220,0 21,-57 c 3,-8 7,-13 16,-13 48.66667,0 97.33333,0 146,0 z M 122,306 c 0,14 -11,24 -24,24 -13,0 -23,-10 -23,-24 0,-13 10,-24 23,-24 13,0 24,11 24,24 z m 231,0 c 0,14 -10,24 -23,24 -13,0 -24,-10 -24,-24 0,-13 11,-24 24,-24 13,0 23,11 23,24 z" id="path2301" fill="#ac39ac"/>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path id="path4167" d="M 341 68.900391 C 332 68.800391 329 82 324 95 C 309 135 294 177 278 217 C 211 217 143 216 76 217 C 61 221 66 237 69 248 C 85 314 100 380 115 446 C 120 462 138 456 150 457 C 253 456 355 456 458 455 C 474 454 473 435 477 424 C 492 360 508 296 522 231 C 522 215 504 216 493 217 L 316 217 L 364 88 C 365.97105 75.461417 361.87766 74.539031 341 68.900391 z M 98 245 L 151 245 L 151 300 C 139 300 128 301 111 301 C 98 245 108 289 98 245 z M 170 245 L 238 245 L 238 300 L 170 300 L 170 245 z M 257 245 L 329 245 L 329 300 L 257 300 L 257 245 z M 348 245 L 418 245 L 418 300 L 348 300 L 348 245 z M 437 245 L 492 245 C 487 263 483 282 479 300 L 437 300 L 437 245 z M 115 318 C 127.5638 318.20964 140.30551 318.14167 151 319 L 151 379 C 144 378 137 378 130 378 C 125 359 128 371 115 318 z M 169 319 L 237 319 L 237 379 L 169 379 L 169 319 z M 256 319 L 328 319 L 328 379 L 256 379 L 256 319 z M 347 319 L 417 319 L 417 379 L 347 379 L 347 319 z M 436 319 L 473 319 C 468 339 464 359 459 379 L 436 379 L 436 319 z M 133 398 L 150 398 L 150 429 C 140 428 139 430 138 425 C 136 418 134 404 133 398 z M 169 398 L 237 398 L 237 428 L 169 428 L 169 398 z M 256 398 L 328 398 L 328 428 L 256 428 L 256 398 z M 347 398 L 417 398 L 417 428 L 347 428 L 347 398 z M 436 398 L 455 398 C 452 406 449 419 447 427 C 431 427 436 436 436 398 z " mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="M 341 68.900391 C 332 68.800391 329 82 324 95 C 309 135 294 177 278 217 C 211 217 143 216 76 217 C 61 221 66 237 69 248 C 85 314 100 380 115 446 C 120 462 138 456 150 457 C 253 456 355 456 458 455 C 474 454 473 435 477 424 C 492 360 508 296 522 231 C 522 215 504 216 493 217 L 316 217 L 364 88 C 365.97105 75.461417 361.87766 74.539031 341 68.900391 z M 98 245 L 151 245 L 151 300 C 139 300 128 301 111 301 C 98 245 108 289 98 245 z M 170 245 L 238 245 L 238 300 L 170 300 L 170 245 z M 257 245 L 329 245 L 329 300 L 257 300 L 257 245 z M 348 245 L 418 245 L 418 300 L 348 300 L 348 245 z M 437 245 L 492 245 C 487 263 483 282 479 300 L 437 300 L 437 245 z M 115 318 C 127.5638 318.20964 140.30551 318.14167 151 319 L 151 379 C 144 378 137 378 130 378 C 125 359 128 371 115 318 z M 169 319 L 237 319 L 237 379 L 169 379 L 169 319 z M 256 319 L 328 319 L 328 379 L 256 379 L 256 319 z M 347 319 L 417 319 L 417 379 L 347 379 L 347 319 z M 436 319 L 473 319 C 468 339 464 359 459 379 L 436 379 L 436 319 z M 133 398 L 150 398 L 150 429 C 140 428 139 430 138 425 C 136 418 134 404 133 398 z M 169 398 L 237 398 L 237 428 L 169 428 L 169 398 z M 256 398 L 328 398 L 328 428 L 256 428 L 256 398 z M 347 398 L 417 398 L 417 428 L 347 428 L 347 398 z M 436 398 L 455 398 C 452 406 449 419 447 427 C 431 427 436 436 436 398 z " id="path4164" mix-blend-mode="normal" solid-color="#000000" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="#ac39ac" filter-blend-mode="normal" shape-rendering="auto"/>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path id="path4144" d="m 180,48.75 c -55,0.1 -97,41.09961 -116,81.09961 39,-32 104,-55 123,-15 1.3,7.7 9.79961,15.19961 18.59961,16.59961 l -1.19922,138 c -7.7,-0.1 -16.29961,8.50078 -16.59961,16.30078 L 182,509.84961 c -0.6,20.4 16,20.9 25,21 l 41,0.40039 c 8.9,0 26.8,-5.60039 26.5,-22.90039 l -3.80078,-222 c -0.1,-7.7 -8.49844,-16.29922 -12.39844,-16.44922 L 255.69922,130.75 c 13.9,-0.6 21.50078,-6.90117 26.30078,-15.20117 9.4,-16 28.8,-10.49844 45,-8.89844 l -0.0996,6.79883 c 0,10.2 9.00039,18.4 20.40039,18.5 11.4,0.1 20.59922,-8 20.69922,-18 l 0.40039,-45 c -0.4,-10.2 -9.40039,-18.5 -20.40039,-18.5 C 338,50.84922 329,56.84961 328,65.84961 c -33,-2.2 -27,-13 -71,-15 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path id="path4146" d="M 441 57.548828 C 432.04778 57.448798 423.20006 60.799559 416.5 66.849609 C 409.79994 72.899659 405.66316 82.04537 405.90039 93.25 L 412.40039 400.25 L 359.40039 433.25 L 379 527.25 L 416.5 527.44922 L 417 463.44922 L 440.30078 450.65039 L 463.30078 463.65039 L 462.90039 527.65039 L 498.40039 527.94922 L 516 434.94922 L 466 400.04883 L 477.80078 89.449219 C 478.05147 82.850949 473.09976 72.735901 466 66.650391 C 459.09786 60.734271 449.95222 57.648848 441 57.548828 z M 441.69922 80.548828 C 447.59943 80.598828 452.19922 85.35 452.19922 91.25 C 452.19922 97.25 447.45021 101.89961 441.5 101.84961 C 435.54979 101.79961 430.95 97.050601 431 91.150391 C 431.05 85.250181 435.79901 80.498818 441.69922 80.548828 z " mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 180,48.75 c -55,0.1 -97,41.09961 -116,81.09961 39,-32 104,-55 123,-15 1.3,7.7 9.79961,15.19961 18.59961,16.59961 l -1.19922,138 c -7.7,-0.1 -16.29961,8.50078 -16.59961,16.30078 L 182,509.84961 c -0.6,20.4 16,20.9 25,21 l 41,0.40039 c 8.9,0 26.8,-5.60039 26.5,-22.90039 l -3.80078,-222 c -0.1,-7.7 -8.49844,-16.29922 -12.39844,-16.44922 L 255.69922,130.75 c 13.9,-0.6 21.50078,-6.90117 26.30078,-15.20117 9.4,-16 28.8,-10.49844 45,-8.89844 l -0.0996,6.79883 c 0,10.2 9.00039,18.4 20.40039,18.5 11.4,0.1 20.59922,-8 20.69922,-18 l 0.40039,-45 c -0.4,-10.2 -9.40039,-18.5 -20.40039,-18.5 C 338,50.84922 329,56.84961 328,65.84961 c -33,-2.2 -27,-13 -71,-15 z" id="path4138" fill="#ac39ac"/>
<path d="M 441 57.548828 C 432.04778 57.448798 423.20006 60.799559 416.5 66.849609 C 409.79994 72.899659 405.66316 82.04537 405.90039 93.25 L 412.40039 400.25 L 359.40039 433.25 L 379 527.25 L 416.5 527.44922 L 417 463.44922 L 440.30078 450.65039 L 463.30078 463.65039 L 462.90039 527.65039 L 498.40039 527.94922 L 516 434.94922 L 466 400.04883 L 477.80078 89.449219 C 478.05147 82.850949 473.09976 72.735901 466 66.650391 C 459.09786 60.734271 449.95222 57.648848 441 57.548828 z M 441.69922 80.548828 C 447.59943 80.598828 452.19922 85.35 452.19922 91.25 C 452.19922 97.25 447.45021 101.89961 441.5 101.84961 C 435.54979 101.79961 430.95 97.050601 431 91.150391 C 431.05 85.250181 435.79901 80.498818 441.69922 80.548828 z " id="path4136" fill="#ac39ac"/>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path id="path4136" d="m 128,55 c 0,0 23,112 120,88 0,0 -2,-87 -104,-88.1 -5,0 -10,0.1 -16,0.1 z m 142,16 c -6.02,3.904252 -4.21986,11.512733 -2,16 6.84702,27.71608 8.30642,55.87911 10,83 2,32 2,61 2,61 l 5,1 27,-147.5 c 0,0 -14,-7.5 -26,-11.5 -5.37432,-2.555812 -10.58043,-3.006197 -16,-2 z m 53,114 C 434,223 472,95 472,95 459,93 448,92 437,92 334,93 323,185 323,185 Z M 106,315 c 1,44 8,72 26,108 0,0 30,57 48.5,77 18.5,20 34.5,27 52.5,27 22,0 47,-18.5 53,-18.5 6,0 31,18.5 53,18.5 17,0 34,-7 52.5,-27 18.5,-20 48.5,-77 48.5,-77 17,-36 25,-64 26,-108 1,-44 -47,-92 -106,-92 -29,0 -55,12 -74,31 -19,-19 -46,-31 -75,-31 -59,0 -106,48 -105,92 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 128,55 c 0,0 23,112 120,88 0,0 -2,-87 -104,-88.1 -5,0 -10,0.1 -16,0.1 z m 142,16 c -6.02,3.904252 -4.21986,11.512733 -2,16 6.84702,27.71608 8.30642,55.87911 10,83 2,32 2,61 2,61 l 5,1 27,-147.5 c 0,0 -14,-7.5 -26,-11.5 -5.37432,-2.555812 -10.58043,-3.006197 -16,-2 z m 53,114 C 434,223 472,95 472,95 459,93 448,92 437,92 334,93 323,185 323,185 Z M 106,315 c 1,44 8,72 26,108 0,0 30,57 48.5,77 18.5,20 34.5,27 52.5,27 22,0 47,-18.5 53,-18.5 6,0 31,18.5 53,18.5 17,0 34,-7 52.5,-27 18.5,-20 48.5,-77 48.5,-77 17,-36 25,-64 26,-108 1,-44 -47,-92 -106,-92 -29,0 -55,12 -74,31 -19,-19 -46,-31 -75,-31 -59,0 -106,48 -105,92 z" id="path6571" fill="#ac39ac"/>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path id="path4154" d="m 72,520 c 0,6 5,11 10,11 l 412,0 c 6,0 11,-5 11,-11 l 0,-455 c 0,-5 -5,-10 -11,-10 L 82,55 C 77,54.9 72,60 72,65 Z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" white-space="normal" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 72,520 c 0,6 5,11 10,11 l 412,0 c 6,0 11,-5 11,-11 l 0,-455 c 0,-5 -5,-10 -11,-10 L 82,55 C 77,54.9 72,60 72,65 Z" id="path4142" fill="#ac39ac" isolation="auto" color-rendering="auto" white-space="normal" solid-opacity="1" mix-blend-mode="normal" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path d="m 93,75.9 0,434 391,0 0,-434 z" id="path4147" opacity="0.9" fill="#ffffff"/>
<path d="M 285.75 187.84961 C 246.5 187.69961 212.5 207.69922 192.5 238.69922 C 186.2 236.39922 180.1 243.10039 180 247.90039 L 180.5 264.69922 C 176.5 275.69922 175.5 286.69922 175.5 297.69922 C 175.5 309.69922 176.5 320.69922 180.5 330.69922 L 180.5 352.69922 C 180.8 359.79922 188.50078 364.20039 194.80078 360.90039 C 214.80078 389.70039 248.80078 408.69922 285.80078 408.69922 C 341.80078 408.69922 388.80078 366.69922 395.80078 311.69922 C 400.40078 304.79922 400.4 295.9 396 289 C 392 233 344 187.99961 285.75 187.84961 z M 286 208.84961 C 329 208.99961 365 239 374 280 L 357 280 C 323 280.1 325.30078 320.6 357.30078 321 L 373 320.69922 C 362 359.69922 328 387.69922 286 387.69922 C 245 387.69922 211 360.69922 200 323.69922 L 200 272.69922 C 211 235.69922 245 208.69961 286 208.84961 z " id="path4137" opacity="0.9" fill="#ac39ac"/>
<path d="m 374,280 -17,0 c -34,0.1 -31.7,40.6 0.3,41 l 15.7,-0.3 c -11,39 -45,67 -87,67 -41,0 -75,-27 -86,-64 l 0,-51 c 11,-37 45,-64 86,-63.85 43,0.15 79,30.15 88,71.15 z" id="path4158" opacity="0.2" fill="#ac39ac"/>
<path d="m 346,117.9 c 0,11 -9,20 -20,20 -11,0 -20,-9 -20,-20 0,-11 9,-20 20,-20 11,0 20,9 20,20 z" id="path4145" opacity="0.9" fill="#ac39ac"/>
<path d="m 403,117.9 c 0,11 -9,20 -19,20 -11,0 -20,-9 -20,-20 0,-11 9,-20 20,-20 10,0 19,9 19,20 z" id="path4143" opacity="0.9" fill="#ac39ac"/>
<path d="m 461,117.9 c 0,11 -9,20 -20,20 -11,0 -20,-9 -20,-20 0,-11 9,-20 20,-20 11,0 20,9 20,20 z" id="path4140" opacity="0.9" fill="#ac39ac"/>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path solid-color="#000000" color="#000000" color-interpolation="sRGB" image-rendering="auto" shape-rendering="auto" color-interpolation-filters="linearRGB" mix-blend-mode="normal" solid-opacity="1" white-space="normal" color-rendering="auto" isolation="auto" fill="none" id="path4144" d="M97 51L47.6 154c-1.3 2.8-.2 6.1 2.6 7.4 30 14.3 62.7 16 97 1 29.4 13.3 61 14.8 94 .2 29.4 13 61 14.5 94-.2 34 12.9 63 13.5 94 .2 30 13.4 63 14.5 96-1.2 2.8-1.3 4-4.6 2.6-7.3L480 51c-.9-1.9-2.8-3.1-5-3.1L102 48C100 48 98 49 97 51" opacity="0.8" filter-gaussianBlur-deviation="0" stroke-width="64" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff"/>
<path solid-color="#000000" color="#000000" color-interpolation="sRGB" image-rendering="auto" shape-rendering="auto" color-interpolation-filters="linearRGB" solid-opacity="1" color-rendering="auto" fill="none" white-space="normal" isolation="auto" mix-blend-mode="normal" id="path4146" d="M89 405L114 405l0 124c3 18.5 24.8 13.5 25-.1L139 405l295 0 0 124c1.3 21.5 26.4 14.6 24.8-.1L459 405l29 0c21.6-3.1 16-28.6.3-29L89 376c-21.9 2.8-15.9 28.6-.2 28.9" opacity="0.8" filter-gaussianBlur-deviation="0" stroke-width="64" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff"/>
<path fill="none" id="path4148" d="m128 200c2.9 12.4 10.9 25.9 24.6 27.9 5.7.8 15.9.9 11.2-7.2-3.1-11.7-14.4-19.6-26-20.4C134 200 131 200 128 200m44 10c3.3 14.4 3.2 29 4 44 2.7-14.7 5.3-29.3 8-44-2.4-1.5-16.6-8.2-12 0zm16 30c11 4.4 24.5 2.3 32.8-6.4C227 228 231 220 234 212c-11 0-23-.9-32.5 5.9C194 223 189 231 188 240m-67 44c.7 10.3 4 20.4 8.4 29.7 5 8.5 10.7 16.8 16.6 24.6 2.9 4.7 9.7 6.9 15.3 6.6 6.4.9 12.7-5.9 16.3-7 6.7 9.2 22.5 9.4 29.4.7 3.9-5.4 8.7-11 12-17C226 310 231 298 232 285 233 269 220 254 204 252 194 251 183 253 177 261 163 247 138 250 127 265 123 271 121 277 121 284" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path fill="none" id="path4150" d="m445 218c-6.1 3.5-9.2 11.1-16.7 12.5-6.2 1-12.6.8-18.6 2.8-18 4.7-35.5 13.5-54.6 13.3-12.3.8-24 6-33.6 13.8-7.6 4.7-15.6 10.9-16.6 20.4-3.3 17.5 6.4 34.6 19.6 45.5 16 14 38 22.9 60 19.4 13-4.7 19.4-18.6 24.3-30.5 3.4-11 1.8-24.5 11.2-32.8 7.4-8 14.8-16.4 19.7-26 .1-6.9 6-10.7 12-12 7.2-.2 16.6-3.5 15.7-12.4-2.6-7-11.7-8.7-17-13.9-1.6-.6-3.5-.5-5 .2" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="M97 51L47.6 154c-1.3 2.8-.2 6.1 2.6 7.4 30 14.3 62.7 16 97 1 29.4 13.3 61 14.8 94 .2 29.4 13 61 14.5 94-.2 34 12.9 63 13.5 94 .2 30 13.4 63 14.5 96-1.2 2.8-1.3 4-4.6 2.6-7.3L480 51c-.9-1.9-2.8-3.1-5-3.1L102 48C100 48 98 49 97 51" id="path4145" fill="#ac39ac" isolation="auto" color-rendering="auto" white-space="normal" solid-opacity="1" mix-blend-mode="normal" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path d="m181 58.9l63.9 0-9.9 93c-29 12.6-55.9 11.5-82 .4z" id="path4143" fill="#ffffff" isolation="auto" color-rendering="auto" white-space="normal" solid-opacity="1" mix-blend-mode="normal" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path d="m332 58.9l64 0 25.9 94c-29 12.2-55.9 10.8-81.9-.8z" id="path3250" fill="#ffffff" isolation="auto" color-rendering="auto" white-space="normal" solid-opacity="1" mix-blend-mode="normal" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path d="M89 405L114 405l0 124c3 18.5 24.8 13.5 25-.1L139 405l295 0 0 124c1.3 21.5 26.4 14.6 24.8-.1L459 405l29 0c21.6-3.1 16-28.6.3-29L89 376c-21.9 2.8-15.9 28.6-.2 28.9" id="path3834" mix-blend-mode="normal" isolation="auto" white-space="normal" fill="#ac39ac" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
<path d="m128 200c2.9 12.4 10.9 25.9 24.6 27.9 5.7.8 15.9.9 11.2-7.2-3.1-11.7-14.4-19.6-26-20.4C134 200 131 200 128 200m44 10c3.3 14.4 3.2 29 4 44 2.7-14.7 5.3-29.3 8-44-2.4-1.5-16.6-8.2-12 0zm16 30c11 4.4 24.5 2.3 32.8-6.4C227 228 231 220 234 212c-11 0-23-.9-32.5 5.9C194 223 189 231 188 240m-67 44c.7 10.3 4 20.4 8.4 29.7 5 8.5 10.7 16.8 16.6 24.6 2.9 4.7 9.7 6.9 15.3 6.6 6.4.9 12.7-5.9 16.3-7 6.7 9.2 22.5 9.4 29.4.7 3.9-5.4 8.7-11 12-17C226 310 231 298 232 285 233 269 220 254 204 252 194 251 183 253 177 261 163 247 138 250 127 265 123 271 121 277 121 284" id="path6571" fill="#ac39ac"/>
<path d="m445 218c-6.1 3.5-9.2 11.1-16.7 12.5-6.2 1-12.6.8-18.6 2.8-18 4.7-35.5 13.5-54.6 13.3-12.3.8-24 6-33.6 13.8-7.6 4.7-15.6 10.9-16.6 20.4-3.3 17.5 6.4 34.6 19.6 45.5 16 14 38 22.9 60 19.4 13-4.7 19.4-18.6 24.3-30.5 3.4-11 1.8-24.5 11.2-32.8 7.4-8 14.8-16.4 19.7-26 .1-6.9 6-10.7 12-12 7.2-.2 16.6-3.5 15.7-12.4-2.6-7-11.7-8.7-17-13.9-1.6-.6-3.5-.5-5 .2" id="path4162" fill="#ac39ac"/>
<path d="m451 226c8.8-1.7 15.4 12.4 3.6 12.3-7.4-.1-13 4.9-19.6 7.5-5.2 3.8-5.5-2-7.8-4.5-7 2.9-.2-9.2 4.5-7.9 5.7-1.6 8.8-6.7 12.8-10.4 2.8-2.6 6.5-.5 6.6 3" id="path4160" opacity="0.8" fill="#ffffff"/>
<path d="m368 279c15 13 34.6 43.8 19.5 59.7-28.4 12.7-68-17.5-76-37-3.7-9.8-4.1-22.6 3.3-30.8 13.7-11.7 42 1.3 53 8.4" id="path4158" opacity="0.8" fill="#ffffff"/>
<path d="m328 294c1.4 6.9 11.2 10 17.6 9.1 9.4-4.3-.9-17.5-8.8-15.8-4.3-.7-8.7 3.4-8.8 6.7m16 .9c4.8 8.7-15.9 1.7-10.3-2.8 3.7-1.1 8.4.3 10.3 2.8" id="path4156" fill="#ac39ac"/>
</svg>

After

Width:  |  Height:  |  Size: 6.2 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path id="path4171" d="M 532 66 L 492 85 C 482 91 467 95 467 110 C 464 119 462 129 460 139 C 322 139 184.00039 138 45.900391 139 C 32.600391 141 33.399219 157 37.699219 167 C 53.699219 229 69 291 86 353 C 102.17043 364.49053 112.03787 363.54734 122 364 L 404 403 C 406 414 406 423 392 419 C 304 420 215 419 127 420 C 112 428 97 440 93 458 C 85 490 120 524 150 509 C 173 499 183 470 172 448 L 342 448 C 324 477 352 522 387 514 C 415 508 430 473 416 449 C 429 450 434 436 432 425 C 432 406 431 387 437 368 C 456 284 475 201 494 117 C 510 108 528 100 542 89 C 549 80 543 66 532 66 z M 66.800781 167 L 111 167 L 111 222 L 81 222 C 76 204 71.000781 185 66.800781 167 z M 130 167 L 198 167 L 198 222 L 130 222 L 130 167 z M 217 167 L 289 167 L 289 222 L 217 222 L 217 167 z M 308 167 L 378 167 L 378 222 L 308 222 L 308 167 z M 397 167 L 453 167 C 449 185 444 204 440 222 C 426 221 411 222 397 222 L 397 167 z M 110.13281 239.98047 C 111.47664 258.13303 111 286.96276 111 301 C 99 305 100 292 97 283 C 93 269 89 255 86 241 C 90 242 104.13281 239.98047 110.13281 239.98047 z M 130 241 L 198 241 L 198 301 L 130 301 L 130 241 z M 217 241 L 289 241 L 289 301 L 217 301 L 217 241 z M 308 241 L 378 241 L 378 301 L 308 301 L 308 241 z M 397 241 L 436 241 C 431 261 426 281 422 302 C 414 301 402 304 397 300 L 397 241 z M 417.62305 320 C 415.04008 338.51378 407.3205 362.71378 404 376 C 393.01894 373.92425 396.45266 372.69883 397 355 L 397 321 C 400 321 413.62305 320 417.62305 320 z M 108.61914 320.41016 C 109.67837 320.42798 110.73633 320.57031 111.23633 320.57031 C 111.23633 320.57031 112 339 109 333 L 106 321 C 106.5 320.5 107.55991 320.39234 108.61914 320.41016 z M 130 321 L 198 321 C 198.26087 329.54037 198.73887 340.0182 198.52148 347.17969 C 176.52148 344.17969 151.90039 341 128.90039 337 C 129.7389 331.09938 129 326 130 321 z M 217 321 L 289 321 L 289 360 C 265 356 241 353 217 350 L 217 321 z M 308 321 L 378 321 L 378 372 C 354 369 331 366 308 363 L 308 321 z M 135.93164 447.05469 C 147.32527 447.42516 157.71016 455.98865 155 469 C 147.33904 504.50947 100 490 115 459 C 119.86781 450.38346 128.136 446.80121 135.93164 447.05469 z M 380.38086 448.99023 C 408.83809 449.57903 403.54688 498.89062 375 492 C 351 487 354 449 379 449 C 379.46875 448.98438 379.92916 448.98089 380.38086 448.99023 z " mix-blend-mode="normal" solid-color="#000000" white-space="normal" color-interpolation-filters="linearRGB" opacity="0.8" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="M 532 66 L 492 85 C 482 91 467 95 467 110 C 464 119 462 129 460 139 C 322 139 184.00039 138 45.900391 139 C 32.600391 141 33.399219 157 37.699219 167 C 53.699219 229 69 291 86 353 C 102.17043 364.49053 112.03787 363.54734 122 364 L 404 403 C 406 414 406 423 392 419 C 304 420 215 419 127 420 C 112 428 97 440 93 458 C 85 490 120 524 150 509 C 173 499 183 470 172 448 L 342 448 C 324 477 352 522 387 514 C 415 508 430 473 416 449 C 429 450 434 436 432 425 C 432 406 431 387 437 368 C 456 284 475 201 494 117 C 510 108 528 100 542 89 C 549 80 543 66 532 66 z M 66.800781 167 L 111 167 L 111 222 L 81 222 C 76 204 71.000781 185 66.800781 167 z M 130 167 L 198 167 L 198 222 L 130 222 L 130 167 z M 217 167 L 289 167 L 289 222 L 217 222 L 217 167 z M 308 167 L 378 167 L 378 222 L 308 222 L 308 167 z M 397 167 L 453 167 C 449 185 444 204 440 222 C 426 221 411 222 397 222 L 397 167 z M 110.13281 239.98047 C 111.47664 258.13303 111 286.96276 111 301 C 99 305 100 292 97 283 C 93 269 89 255 86 241 C 90 242 104.13281 239.98047 110.13281 239.98047 z M 130 241 L 198 241 L 198 301 L 130 301 L 130 241 z M 217 241 L 289 241 L 289 301 L 217 301 L 217 241 z M 308 241 L 378 241 L 378 301 L 308 301 L 308 241 z M 397 241 L 436 241 C 431 261 426 281 422 302 C 414 301 402 304 397 300 L 397 241 z M 417.62305 320 C 415.04008 338.51378 407.3205 362.71378 404 376 C 393.01894 373.92425 396.45266 372.69883 397 355 L 397 321 C 400 321 413.62305 320 417.62305 320 z M 108.61914 320.41016 C 109.67837 320.42798 110.73633 320.57031 111.23633 320.57031 C 111.23633 320.57031 112 339 109 333 L 106 321 C 106.5 320.5 107.55991 320.39234 108.61914 320.41016 z M 130 321 L 198 321 C 198.26087 329.54037 198.73887 340.0182 198.52148 347.17969 C 176.52148 344.17969 151.90039 341 128.90039 337 C 129.7389 331.09938 129 326 130 321 z M 217 321 L 289 321 L 289 360 C 265 356 241 353 217 350 L 217 321 z M 308 321 L 378 321 L 378 372 C 354 369 331 366 308 363 L 308 321 z M 135.93164 447.05469 C 147.32527 447.42516 157.71016 455.98865 155 469 C 147.33904 504.50947 100 490 115 459 C 119.86781 450.38346 128.136 446.80121 135.93164 447.05469 z M 380.38086 448.99023 C 408.83809 449.57903 403.54688 498.89062 375 492 C 351 487 354 449 379 449 C 379.46875 448.98438 379.92916 448.98089 380.38086 448.99023 z " id="path4168" fill="#ac39ac" isolation="auto" color-rendering="auto" white-space="normal" solid-opacity="1" mix-blend-mode="normal" color-interpolation-filters="linearRGB" shape-rendering="auto" fill-rule="evenodd" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
</svg>

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path id="path4140" d="m 269.37626,86.386248 c -4.64019,6.500192 -3.61935,12.071785 3.24814,16.714782 6.49627,3.99297 12.0645,2.87865 16.70469,-3.250098 l 11.04366,-16.064761 167.97497,110.688989 -137.3497,25.07217 c -5.01141,1.11431 -9.09478,3.71439 -12.0645,7.80023 -3.06253,4.17869 -3.89776,8.54311 -2.4129,13.27896 l 29.69723,116.07486 -97.44404,144.86142 c -1.76327,3.2501 -2.69131,6.68591 -2.69131,10.21459 0,5.75731 2.04168,10.67889 6.21785,14.85758 4.17618,4.1787 9.09478,6.22161 14.84862,6.22161 7.51711,0 13.64217,-3.62153 18.37516,-10.77174 l 101.1562,-153.21882 5.38262,21.0792 -15.12702,114.21766 c -0.74244,5.75731 0.55682,10.86461 3.80495,15.41474 3.24814,4.55014 7.70272,7.33593 13.45656,8.35739 5.75384,1.11432 11.04366,-0.0929 15.96226,-3.52867 4.8258,-3.43582 7.60992,-7.98596 8.35235,-13.74327 L 434.1959,393.65961 c 0.37122,-3.99297 0,-8.07881 -1.02084,-12.44322 l -34.33743,-137.43263 90.01974,-16.15762 c 4.64019,-0.74288 8.44515,-3.15724 11.32207,-7.24307 2.87692,-4.1787 3.99056,-8.54311 3.24813,-13.27897 -1.11364,-4.64299 -3.80495,-8.63597 -8.07393,-11.88606 L 288.30825,58.899722 Z M 59.082739,523.38488 l 30.346859,0 0,-325.00961 149.692612,-60.54464 -149.4142,-56.644536 0,-11.607485 -30.486065,0.09286 C 58.897404,220.90647 59.082739,372.14796 59.082739,523.38488 Z M 299.72312,148.78809 c -6.86748,6.68591 -10.20842,14.85758 -10.20842,24.60787 0,9.75029 3.43374,17.92196 10.20842,24.51501 6.86749,6.68591 15.12703,10.02887 24.77863,10.02887 9.7444,0 18.09675,-3.34296 25.05704,-10.02887 7.05309,-6.68591 10.48683,-14.85758 10.48683,-24.51501 0,-9.75029 -3.52654,-17.92196 -10.48683,-24.60787 -7.05309,-6.68591 -15.40544,-10.02887 -25.05704,-10.02887 -9.7444,0 -18.00395,3.34296 -24.77863,10.02887 z" mix-blend-mode="normal" isolation="auto" white-space="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" stroke-width="64" color-interpolation="sRGB" solid-opacity="1" fill="none" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path white-space="normal" isolation="auto" mix-blend-mode="normal" d="m 269.37626,86.386248 c -4.64019,6.500192 -3.61935,12.071785 3.24814,16.714782 6.49627,3.99297 12.0645,2.87865 16.70469,-3.250098 l 11.04366,-16.064761 167.97497,110.688989 -137.3497,25.07217 c -5.01141,1.11431 -9.09478,3.71439 -12.0645,7.80023 -3.06253,4.17869 -3.89776,8.54311 -2.4129,13.27896 l 29.69723,116.07486 -97.44404,144.86142 c -1.76327,3.2501 -2.69131,6.68591 -2.69131,10.21459 0,5.75731 2.04168,10.67889 6.21785,14.85758 4.17618,4.1787 9.09478,6.22161 14.84862,6.22161 7.51711,0 13.64217,-3.62153 18.37516,-10.77174 l 101.1562,-153.21882 5.38262,21.0792 -15.12702,114.21766 c -0.74244,5.75731 0.55682,10.86461 3.80495,15.41474 3.24814,4.55014 7.70272,7.33593 13.45656,8.35739 5.75384,1.11432 11.04366,-0.0929 15.96226,-3.52867 4.8258,-3.43582 7.60992,-7.98596 8.35235,-13.74327 L 434.1959,393.65961 c 0.37122,-3.99297 0,-8.07881 -1.02084,-12.44322 l -34.33743,-137.43263 90.01974,-16.15762 c 4.64019,-0.74288 8.44515,-3.15724 11.32207,-7.24307 2.87692,-4.1787 3.99056,-8.54311 3.24813,-13.27897 -1.11364,-4.64299 -3.80495,-8.63597 -8.07393,-11.88606 L 288.30825,58.899722 Z M 59.082739,523.38488 l 30.346859,0 0,-325.00961 149.692612,-60.54464 -149.4142,-56.644536 0,-11.607485 -30.486065,0.09286 C 58.897404,220.90647 59.082739,372.14796 59.082739,523.38488 Z M 299.72312,148.78809 c -6.86748,6.68591 -10.20842,14.85758 -10.20842,24.60787 0,9.75029 3.43374,17.92196 10.20842,24.51501 6.86749,6.68591 15.12703,10.02887 24.77863,10.02887 9.7444,0 18.09675,-3.34296 25.05704,-10.02887 7.05309,-6.68591 10.48683,-14.85758 10.48683,-24.51501 0,-9.75029 -3.52654,-17.92196 -10.48683,-24.60787 -7.05309,-6.68591 -15.40544,-10.02887 -25.05704,-10.02887 -9.7444,0 -18.00395,3.34296 -24.77863,10.02887 z" id="rect2996" fill="#39ac39" color-rendering="auto" solid-opacity="1" color-interpolation-filters="linearRGB" shape-rendering="auto" image-rendering="auto" color-interpolation="sRGB" color="#000000" solid-color="#000000"/>
</svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580">
<metadata id="metadata2975"/>
<path id="path4136" d="m 245.8,114.2 c 8.5,-8.5 12.8,-19 12.8,-31.4 0,-12 -4.3,-22.3 -12.8,-30.8 C 237.3,43.5 227,39.2 215,39.2 c -12,0 -22.4,4.3 -31,12.8 -8.7,8.5 -13,18.8 -13,30.8 0,12.4 4.4,22.9 13,31.4 8.7,8.5 19,12.8 31,12.8 12,0 22.3,-4.3 30.8,-12.8 z M 96.5,156.3 c 0,10.8 6.4,16.2 19.3,16.2 l 109,0 c 13.7,0 20,-6 19.25,-18.05 0.05,-11.5142 -6.35,-16.15 -18.85,-16.15 0,0 -103.82937,-1.04852 -109,0 -5.17063,1.04852 -4.81051,1.05473 -8.90422,2.73158 C 100.4,143.6 96.5,148.8 96.5,156.3 Z m 154.1,-15.7 c 3.21183,3.11657 3.90351,6.74306 4.9,12.5 -0.60272,6.3922 -1.07123,12.88153 -4.4,17.4 -5.8,8.7 -14.5,13 -26,13 l -59.7,0 0,161 -34,171 c -1.2,6.6 0,12.8 3.7,18.4 3.7,5.6 8.9,9 15.6,10.3 6.6,1.2 12.8,0 18.3,-3.7 5.6,-3.7 9.2,-8.9 10.9,-15.6 l 34.8,-177 16.2,0 34.8,177 c 1.2,6.6 4.7,11.8 10.3,15.6 5.6,3.7 11.9,5 19,3.7 6.2,-1.2 11.3,-4.7 15.2,-10.3 3.9,-5.6 5.1,-11.7 3.4,-18.4 l -34,-172 0,-144 22.4,-29 23,-1.5 18.5,-24 156,-8.7 -0.7,-15.6 -238,5.1 c 0,0 -17.2,6.3 -23.9,9.9 0,0 10.21932,1.52256 13.7,4.9 z" mix-blend-mode="normal" solid-color="#000000" opacity="0.8" color-interpolation-filters="linearRGB" filter-gaussianBlur-deviation="0" color="#000000" image-rendering="auto" color-rendering="auto" fill-rule="evenodd" stroke-width="64" isolation="auto" color-interpolation="sRGB" solid-opacity="1" fill="none" stroke-linejoin="round" filter-blend-mode="normal" stroke="#ffffff" shape-rendering="auto"/>
<path d="m 245.8,114.2 c 8.5,-8.5 12.8,-19 12.8,-31.4 0,-12 -4.3,-22.3 -12.8,-30.8 C 237.3,43.5 227,39.2 215,39.2 c -12,0 -22.4,4.3 -31,12.8 -8.7,8.5 -13,18.8 -13,30.8 0,12.4 4.4,22.9 13,31.4 8.7,8.5 19,12.8 31,12.8 12,0 22.3,-4.3 30.8,-12.8 z M 96.5,156.3 c 0,10.8 6.4,16.2 19.3,16.2 l 109,0 c 13.7,0 20,-6 19.25,-18.05 0.05,-11.5142 -6.35,-16.15 -18.85,-16.15 0,0 -103.82937,-1.04852 -109,0 -5.17063,1.04852 -4.81051,1.05473 -8.90422,2.73158 C 100.4,143.6 96.5,148.8 96.5,156.3 Z m 154.1,-15.7 c 3.21183,3.11657 3.90351,6.74306 4.9,12.5 -0.60272,6.3922 -1.07123,12.88153 -4.4,17.4 -5.8,8.7 -14.5,13 -26,13 l -59.7,0 0,161 -34,171 c -1.2,6.6 0,12.8 3.7,18.4 3.7,5.6 8.9,9 15.6,10.3 6.6,1.2 12.8,0 18.3,-3.7 5.6,-3.7 9.2,-8.9 10.9,-15.6 l 34.8,-177 16.2,0 34.8,177 c 1.2,6.6 4.7,11.8 10.3,15.6 5.6,3.7 11.9,5 19,3.7 6.2,-1.2 11.3,-4.7 15.2,-10.3 3.9,-5.6 5.1,-11.7 3.4,-18.4 l -34,-172 0,-144 22.4,-29 23,-1.5 18.5,-24 156,-8.7 -0.7,-15.6 -238,5.1 c 0,0 -17.2,6.3 -23.9,9.9 0,0 10.21932,1.52256 13.7,4.9 z" id="flowRoot2391" fill="#39ac39"/>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

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