Builtin Prosody: display random avatars for anonymous users.

This commit is contained in:
John Livingston 2022-01-06 05:30:55 +01:00
parent cb60a7799d
commit bf35172856
No known key found for this signature in database
GPG Key ID: B17B5640CE66CDBC
17 changed files with 3174 additions and 2 deletions

View File

@ -6,6 +6,7 @@
* Builtin Prosody, Share chat url: ability to show/hide the scrollbar in readonly mode.
* Builtin Prosody: display Peertube users avatars.
* Builtin Prosody: display random avatars for anonymous users.
### Minor changes and fixes

View File

@ -83,7 +83,7 @@
"clean:light": "rm -rf dist/*",
"prepare": "npm run clean && npm run build",
"build:converse": "bash conversejs/build-conversejs.sh",
"build:images": "mkdir -p dist/client/images && npx svgo -f public/images/ -o dist/client/images/",
"build:images": "mkdir -p dist/client/images && npx svgo -f public/images/ -o dist/client/images/ && npx svgo -f public/images/avatars/ -o dist/server/avatars/",
"build:webpack": "webpack --mode=production",
"build:server": "npx tsc --build server/tsconfig.json",
"build:serverconverse": "mkdir -p dist/server/conversejs && cp conversejs/index.html dist/server/conversejs/",

View File

@ -0,0 +1,5 @@
# mod_random_vcard_peertubelivechat
This module is a custom module that allows Prosody to generate random vCards avatars for anonymous users.
This module is part of peertube-plugin-livechat, and is under the same LICENSE.

View File

@ -0,0 +1,55 @@
local st = require "util.stanza";
local path = require "util.paths";
local b64 = require "util.encodings".base64.encode;
local jid = require "util.jid";
module:add_feature("vcard-temp");
local avatars_dir = assert(module:get_option_string("peertubelivechat_random_vcard_avatars_path", nil), "'peertubelivechat_random_vcard_avatars_path' is a required option");
local avatars = {};
local function load_avatar(filename)
local file = assert(io.open(path.join(avatars_dir, filename), "r"));
local result = {
type = 'image/svg+xml',
content = b64(file:read("*a"))
};
file:close();
return result;
end
local AVATARS_COUNT = 10;
for i = 1, AVATARS_COUNT do
avatars[i] = load_avatar(i .. '.svg');
end
module:hook("iq-get/bare/vcard-temp:vCard", function (event)
local origin, stanza = event.origin, event.stanza;
-- module:log("debug", "From '%s', To '%s', username '%s'.", stanza.attr.from, stanza.attr.to, origin.username);
local who = jid.split(stanza.attr.to) or origin.username;
if not who then
module:log("debug", "No who, will not generate random vCard");
origin.send(st.error_reply(stanza, "cancel", "item-not-found"));
return true;
end
module:log("debug", "random vCard request for %s", who);
local n = 1;
for c in who:gmatch"." do
n = math.fmod(n + c:byte(), AVATARS_COUNT) + 1;
end
module:log("debug", "%s will have the avatar number %s.", who, n);
local vcard_temp = st.stanza("vCard", { xmlns = "vcard-temp" });
-- vcard_temp:text_tag("FN", who);
-- vcard_temp:text_tag("NICKNAME", who);
vcard_temp:tag("PHOTO");
vcard_temp:text_tag("TYPE", avatars[n].type);
vcard_temp:text_tag("BINVAL", avatars[n].content);
vcard_temp:up();
origin.send(st.reply(stanza):add_child(vcard_temp));
return true;
end);

297
public/images/avatars/1.svg Normal file
View File

@ -0,0 +1,297 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="250"
height="250"
viewBox="0 0 66.145832 66.145837"
version="1.1"
id="svg1435"
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
sodipodi:docname="1.svg">
<defs
id="defs1429">
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient1738"
id="radialGradient1740-1"
cx="56.455734"
cy="167.68628"
fx="56.455734"
fy="167.68628"
r="20.579618"
gradientTransform="matrix(1.2029851,0,0,0.16716418,-88.026448,23.78428)"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient1738">
<stop
style="stop-color:#838383;stop-opacity:1"
offset="0"
id="stop1734" />
<stop
style="stop-color:#bfbfbf;stop-opacity:0"
offset="1"
id="stop1736" />
</linearGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="211.9784"
inkscape:cy="102.0309"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
units="px"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1851"
inkscape:window-height="1016"
inkscape:window-x="0"
inkscape:window-y="1077"
inkscape:window-maximized="1" />
<metadata
id="metadata1432">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(46.223311,6.4966985)">
<g
id="g2152"
transform="translate(7.6382967,2.1967498)">
<ellipse
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.789;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#radialGradient1740-1);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path1732-7"
cx="-20.111046"
cy="51.81546"
rx="24.756975"
ry="3.4401751" />
<path
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -5.15942,46.77824 c -0.72231,-0.32474 -1.7996,1.18872 -2.89256,1.34949 -1.09296,0.16077 -2.96647,0.12782 -4.05098,-1.47554 -1.08452,-1.60339 -3.92585,0.31246 -4.10341,0.82213 -0.17756,0.50963 2.5011,1.74979 4.13432,2.32778 1.63321,0.57799 3.37326,0.31274 4.53487,-0.34327 1.09088,-0.61606 2.37776,-2.68059 2.37776,-2.68059 z"
id="path1043-7-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -15.02707,41.37124 c -0.83556,-0.0712 -1.50857,-1.48186 -1.6949,-1.93874 -0.18633,-0.45688 1.49024,-1.94432 1.79341,-2.11597 0.30317,-0.17166 2.76893,0.16775 3.08097,0.37205 0.31204,0.20428 3.13319,2.58594 2.74963,4.93168 -0.38356,2.34572 -1.70649,4.43633 -3.62089,5.16936 -0.90823,0.34773 -2.93874,0.52951 -3.12479,-0.89046 -0.0709,-0.54133 1.98268,-0.71613 2.24527,-2.1166 0.29497,-1.57314 -0.0295,-2.31027 -1.4287,-3.41132 z"
id="path996-7-1-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<path
style="fill:#fffdfb;fill-opacity:0.461187;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -11.30156,40.26285 c 0.12162,0.21101 0.31245,0.40591 0.54576,0.5688 0.12266,0.0846 0.29048,0.14101 0.42981,0.11048 0.0707,-0.0112 0.1324,-0.0398 0.16246,-0.089 0.10077,-0.13007 0.087,-0.30896 0.007,-0.47166 -0.0922,-0.19731 -0.25785,-0.3828 -0.45717,-0.53886 -0.14461,-0.10884 -0.35565,-0.13694 -0.50839,-0.0914 -0.16756,0.0448 -0.29379,0.17148 -0.2527,0.32628 0.0115,0.0639 0.0407,0.13752 0.0729,0.18552 z"
id="path867-4-7-4-4-3-7-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -36.27165,47.02397 c 0.72231,-0.32474 1.7996,1.18872 2.89256,1.34949 1.09296,0.16077 2.96647,0.12782 4.05098,-1.47554 1.08452,-1.60339 3.92585,0.31246 4.10341,0.82213 0.17756,0.50963 -2.5011,1.74979 -4.13432,2.32778 -1.63321,0.57799 -3.37326,0.31274 -4.53487,-0.34327 -1.09088,-0.61606 -2.37776,-2.68059 -2.37776,-2.68059 z"
id="path1043-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -26.404,41.61697 c 0.83556,-0.0712 1.50857,-1.48186 1.6949,-1.93874 0.18633,-0.45688 -1.49024,-1.94432 -1.79341,-2.11597 -0.30317,-0.17166 -2.76893,0.16775 -3.08097,0.37205 -0.31204,0.20428 -3.13319,2.58594 -2.74963,4.93168 0.38356,2.34572 1.70649,4.43633 3.62089,5.16936 0.90823,0.34773 2.93874,0.52951 3.12479,-0.89046 0.0709,-0.54133 -1.98268,-0.71613 -2.24527,-2.1166 -0.29497,-1.57314 0.0295,-2.31027 1.4287,-3.41132 z"
id="path996-7-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<path
style="fill:#fffdfb;fill-opacity:0.461187;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -30.12951,40.50858 c -0.12162,0.21101 -0.31245,0.40591 -0.54576,0.5688 -0.12266,0.0846 -0.29048,0.14101 -0.42981,0.11048 -0.0707,-0.0112 -0.1324,-0.0398 -0.16246,-0.089 -0.10077,-0.13007 -0.087,-0.30896 -0.007,-0.47166 0.0922,-0.19731 0.25785,-0.3828 0.45717,-0.53886 0.14461,-0.10884 0.35565,-0.13694 0.50839,-0.0914 0.16756,0.0448 0.29379,0.17148 0.2527,0.32628 -0.0115,0.0639 -0.0407,0.13752 -0.0729,0.18552 z"
id="path867-4-7-4-4-3-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -6.95484,19.73885 c 2.31997,11.2678 -3.09502,18.71357 -11.26023,20.32123 -7.24251,1.42598 -16.240009,-5.91537 -17.019879,-14.65833 -0.61406,-6.88401 3.527669,-12.01229 11.742179,-13.2971 8.00195,-1.25157 15.51172,2.64999 16.53793,7.6342 z"
id="path865-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssss" />
<path
style="fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -24.77701,-5.20104 c 0.71935,-1.13179 2.57749,-1.89594 3.35225,-0.6688 0.4587,0.72658 22.94523,27.90958 23.6179,28.62291 0.92296,0.97869 1.01704,2.48081 -0.22304,3.04732 -1.24617,0.295 -44.38161,1.28467 -45.49535,1.41095 -1.11373,0.12633 -3.73363,-1.63435 -2.25876,-3.08235 1.47488,-1.44797 20.13516,-27.42959 21.007,-29.33003 z"
id="path863-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csscscc" />
<path
style="fill:#ffddc2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -28.59933,3.65083 c -0.38644,0.54929 -0.6682,0.96842 -0.91944,1.25064 -0.38792,0.43577 -1.37163,0.11675 -0.87936,-0.57043 0.25036,-0.372 0.5786,-0.83808 0.97951,-1.31457 0.40092,-0.47647 1.20573,0.0851 0.81929,0.63436 z"
id="path867-4-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csccc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -22.36999,42.64336 c 0.94851,-0.0715 1.72633,-1.8074 1.94236,-2.37025 0.21602,-0.56283 -1.67055,-2.44109 -2.01268,-2.66005 -0.34214,-0.21895 -3.7837,-0.0755 -4.13974,0.17152 -0.35603,0.24708 -3.40237,3.44801 -2.99127,6.36469 0.41111,2.91668 2.21095,5.2318 4.375,6.17927 1.02668,0.44949 2.90946,0.99361 3.13501,-0.76362 0.086,-0.66988 -1.6806,-0.97778 -1.96416,-2.71979 -0.31851,-1.95681 0.0571,-2.86442 1.65548,-4.20177 z"
id="path996-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -32.7575,48.80606 c 0.73664,-0.35338 1.83528,1.29354 2.94992,1.46847 1.11464,0.17497 3.0253,0.13909 4.13131,-1.60563 1.10601,-1.74477 3.63037,0.62998 3.81144,1.18457 0.18109,0.55457 -2.17736,1.61411 -3.84296,2.24307 -1.6656,0.62894 -3.44016,0.34031 -4.6248,-0.37355 -1.1125,-0.67038 -2.42491,-2.91693 -2.42491,-2.91693 z"
id="path1043-6-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -21.41373,39.68036 c -0.46439,0.1471 -0.44938,0.21183 -1.1831,0.76313 -1.76701,1.32769 -2.43842,2.90693 -2.49804,3.47182 -0.0597,0.56488 -0.62598,1.81398 0.30891,3.45924 0.52431,1.06608 1.62618,1.46287 2.19605,1.73341 0.34528,0.21575 0.65105,0.68848 0.73864,0.87172 0.0303,-0.14362 0.26678,-0.88651 -0.18399,-1.128 l 0.0426,-0.0847 c 0.005,-0.007 0.009,-0.0126 0.0133,-0.0193 0.0132,-0.0221 0.0239,-0.0458 0.0321,-0.0708 l 0.006,-0.0116 c -5.1e-4,-5.8e-4 -0.001,-0.001 -0.001,-0.002 0.082,-0.27102 -0.12844,-0.65099 -0.49733,-0.89793 -0.2039,-0.13615 -0.43116,-0.21409 -0.62998,-0.21606 l -2e-5,5.7e-4 c -0.19148,-0.002 -0.34125,0.0666 -0.41751,0.19118 -0.0144,0.0243 -0.026,0.0504 -0.0345,0.0782 l -0.002,0.004 c -0.1751,-0.19567 -0.32158,-0.41733 -0.41159,-0.679 0.0389,10e-4 0.0777,-0.003 0.11589,-0.014 l 0.36976,-0.1461 c 0.008,-0.002 0.0167,-0.003 0.025,-0.005 0.0274,-0.009 0.0541,-0.0205 0.0797,-0.0355 l 0.0117,-0.005 c 10e-5,-8.7e-4 -5e-5,-5.7e-4 7e-5,-0.002 0.26644,-0.16261 0.37591,-0.63802 0.25864,-1.12319 -0.11689,-0.48197 -0.42359,-0.8327 -0.72659,-0.83091 -0.0355,-1e-4 -0.0702,0.005 -0.10378,0.0151 -0.0302,0.01 -0.0593,0.0227 -0.0871,0.0398 l -0.0649,0.0198 c 0.0464,-0.23554 0.1215,-0.45635 0.22456,-0.66975 l 0.146,0.10794 c 0.006,0.007 0.012,0.0131 0.0185,0.0191 0.0234,0.0204 0.0496,0.0379 0.078,0.0521 l 0.0102,0.007 c 8.1e-4,-2.5e-4 0.001,-8.6e-4 0.002,-0.001 0.29982,0.14349 0.80898,-0.0681 1.20287,-0.49982 0.44393,-0.4871 0.58483,-1.0793 0.31468,-1.32271 -0.0254,-0.0222 -0.054,-0.0408 -0.0854,-0.0558 l -0.0472,-0.0421 c 0.94657,-0.16798 1.71267,-1.80174 1.93017,-2.34468 0.10293,-0.25698 0.13209,-0.11779 -0.3205,-0.64101 0,0 -0.57365,-0.0676 -0.83081,0.0138 z"
id="path1092-6-8-2-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssccccccccccccccccccccccccccccccccccccccccs" />
<path
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -26.52707,40.44837 c -0.0662,0.25544 -0.20484,0.51277 -0.39361,0.74794 -0.0994,0.12263 -0.25079,0.22769 -0.39616,0.2335 -0.0727,0.008 -0.14088,-0.005 -0.18314,-0.0495 -0.13271,-0.10957 -0.16478,-0.30179 -0.12759,-0.49492 0.0407,-0.233 0.15684,-0.47354 0.31378,-0.69226 0.11499,-0.15406 0.31619,-0.24116 0.47862,-0.23484 0.17689,0.002 0.33386,0.10066 0.33282,0.2749 0.005,0.0704 -0.005,0.15596 -0.0246,0.21531 z"
id="path867-4-7-4-4-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -18.50865,42.48007 c -0.94851,-0.0715 -1.72633,-1.8074 -1.94236,-2.37025 -0.21602,-0.56283 1.67055,-2.44109 2.01268,-2.66005 0.34214,-0.21895 3.7837,-0.0755 4.13974,0.17152 0.35603,0.24708 3.40237,3.44801 2.99127,6.36469 -0.41111,2.91668 -2.21095,5.2318 -4.375,6.17927 -1.02668,0.44949 -2.90946,0.99361 -3.13501,-0.76362 -0.086,-0.66988 1.6806,-0.97778 1.96416,-2.71979 0.31851,-1.95681 -0.0571,-2.86442 -1.65548,-4.20177 z"
id="path996-6-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -8.13851,48.59067 c -0.73664,-0.35338 -1.83528,1.29354 -2.94992,1.46847 -1.11464,0.17497 -3.0253,0.13909 -4.13131,-1.60563 -1.10601,-1.74477 -3.63037,0.62998 -3.81144,1.18457 -0.18109,0.55457 2.17736,1.61411 3.84296,2.24307 1.6656,0.62894 3.44016,0.34031 4.6248,-0.37355 1.1125,-0.67038 2.42491,-2.91693 2.42491,-2.91693 z"
id="path1043-6-6-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -19.59636,40.07407 c 0.36626,0.20236 0.29751,0.16154 1.0305,0.67034 1.95867,1.3596 2.30312,2.52259 2.52249,3.20729 0.11961,0.66473 0.28652,2.41305 -0.0493,3.25956 -0.52431,1.06608 -1.62618,1.46287 -2.19605,1.73341 -0.34528,0.21575 -0.65105,0.68848 -0.73864,0.87172 -0.0303,-0.14362 -0.26678,-0.88651 0.18399,-1.128 l -0.0426,-0.0847 c -0.005,-0.007 -0.009,-0.0126 -0.0133,-0.0193 -0.0132,-0.0221 -0.0239,-0.0458 -0.0321,-0.0708 l -0.006,-0.0116 c 5e-4,-5.8e-4 0.001,-10e-4 0.001,-0.002 -0.082,-0.27102 0.12844,-0.65099 0.49733,-0.89793 0.2039,-0.13615 0.43116,-0.21409 0.62998,-0.21606 l 2e-5,5.8e-4 c 0.19148,-0.002 0.34125,0.0666 0.41751,0.19118 0.0144,0.0243 0.026,0.0504 0.0345,0.0782 l 0.002,0.004 c 0.1751,-0.19567 0.32158,-0.41733 0.41159,-0.679 -0.0389,10e-4 -0.0777,-0.003 -0.11589,-0.014 l -0.36976,-0.1461 c -0.008,-0.002 -0.0167,-0.003 -0.025,-0.005 -0.0274,-0.009 -0.0541,-0.0205 -0.0797,-0.0355 l -0.0117,-0.005 c -10e-5,-8.7e-4 5e-5,-5.8e-4 -7e-5,-0.002 -0.26644,-0.16261 -0.37591,-0.63802 -0.25864,-1.12319 0.11689,-0.48197 0.42359,-0.8327 0.72659,-0.83091 0.0355,-1e-4 0.0702,0.005 0.10378,0.0151 0.0302,0.01 0.0593,0.0227 0.0871,0.0398 l 0.0649,0.0198 c -0.0464,-0.23554 -0.1215,-0.45635 -0.22456,-0.66975 l -0.146,0.10794 c -0.006,0.007 -0.012,0.0131 -0.0185,0.0191 -0.0234,0.0204 -0.0496,0.0379 -0.078,0.0521 l -0.0102,0.007 c -8.2e-4,-2.5e-4 -0.001,-8.7e-4 -0.002,-10e-4 -0.29982,0.14349 -0.80898,-0.0681 -1.20287,-0.49982 -0.44393,-0.4871 -0.58483,-1.0793 -0.31468,-1.32271 0.0254,-0.0222 0.054,-0.0408 0.0854,-0.0558 l 0.0472,-0.0421 c -0.94657,-0.16798 -1.71267,-1.80174 -1.93017,-2.34468 -0.10293,-0.25698 -0.72674,0.0579 -0.27415,-0.46534 0.133,-0.15376 0.89498,0.1747 1.29401,0.39517 z"
id="path1092-6-8-2-4-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sscccccccccccccccccccccccccccccccccccccccss" />
<path
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -14.35157,40.28508 c 0.0662,0.25544 0.20484,0.51277 0.39361,0.74794 0.0994,0.12263 0.25079,0.22769 0.39616,0.2335 0.0727,0.008 0.14088,-0.005 0.18314,-0.0495 0.13271,-0.10957 0.16478,-0.30179 0.12759,-0.49492 -0.0407,-0.233 -0.15684,-0.47354 -0.31378,-0.69226 -0.11499,-0.15406 -0.31619,-0.24116 -0.47862,-0.23484 -0.17689,0.002 -0.33386,0.10066 -0.33282,0.2749 -0.005,0.0704 0.005,0.15596 0.0246,0.21531 z"
id="path867-4-7-4-4-9-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<g
id="g1888"
transform="matrix(0.99662396,0.14458051,-0.080948,0.99164429,-134.59984,-142.0436)">
<path
sodipodi:nodetypes="ccsccc"
inkscape:connector-curvature="0"
id="path867-2"
d="m 127.44239,153.53297 c 0.0248,-0.83572 0.78535,-0.95789 0.85565,-0.2729 0.0703,0.68499 0.13616,1.19684 0.12315,1.59221 -0.0201,0.61048 -0.82518,0.87943 -0.90491,0.0152 -0.0582,-0.45454 -0.0497,-0.87357 -0.0739,-1.33447 z"
style="fill:#4e3b3a;fill-opacity:1;fill-rule:evenodd;stroke:#2f2828;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccsccc"
inkscape:connector-curvature="0"
id="path867-6-6"
d="m 134.84928,151.74452 c 0.11271,-0.82846 0.88195,-0.86978 0.87965,-0.18119 -0.002,0.68859 0.0189,1.40498 -0.0902,1.78521 -0.12806,0.44614 -0.81369,0.54941 -0.80186,-0.31843 -0.01,-0.45813 -0.0121,-0.82468 0.0124,-1.28557 z"
style="opacity:1;vector-effect:none;fill:#4e3b3a;fill-opacity:1;fill-rule:evenodd;stroke:#2f2828;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<g
transform="matrix(1.0115339,0.19459998,0.05218655,0.99863735,-81.099175,-127.67954)"
id="g1928-4">
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-9"
d="m 50.943081,151.14101 c -0.400341,-0.25283 0.512053,-1.42428 0.811945,-1.68151 0.299889,-0.25723 -0.191703,1.92451 -0.811945,1.68151 z"
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:transform-center-y="-0.29778724"
inkscape:transform-center-x="0.83927927"
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-0-0"
d="m 51.83521,151.4665 c -0.414013,-0.35768 0.551389,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.22382,2.76306 -0.867104,2.42223 z"
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:transform-center-y="0.70487957"
inkscape:transform-center-x="0.84080235"
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-7-9"
d="m 52.816217,151.19387 c -0.414012,-0.35768 0.551389,-2.0495 0.867105,-2.42224 0.315714,-0.37273 -0.223821,2.76306 -0.867105,2.42224 z"
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
transform="matrix(1.0115339,0.19459998,0.05218655,0.99863735,-80.6344,-127.64767)"
id="g1923-1">
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-8-7"
d="m 59.278028,149.60677 c -0.414013,-0.35768 0.551388,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.223821,2.76305 -0.867104,2.42223 z"
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-6-7"
d="m 60.167005,149.36159 c -0.414013,-0.35768 0.551389,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.22382,2.76306 -0.867104,2.42223 z"
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-88-1"
d="m 61.157788,148.82481 c -0.348754,-0.27043 0.457468,-1.54143 0.721628,-1.82117 0.26416,-0.27974 -0.180335,2.07953 -0.721628,1.82117 z"
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<path
style="fill:none;fill-rule:evenodd;stroke:#762c2c;stroke-width:0.665;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -14.13799,34.00875 c -0.72578,1.52235 -3.31918,1.62531 -4.01257,0.17632"
id="path1990"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<g
id="g1182-9-2-0"
transform="rotate(14.728606,469.56375,-206.44298)"
style="opacity:0.7">
<path
inkscape:connector-curvature="0"
id="path1176-2-9-5"
d="m 40.726561,129.67568 c 1.767228,-2.45002 18.796875,-6.0648 19.841146,-5.30168 1.044271,0.76312 0.48472,14.54623 -0.8407,14.98803 -1.325419,0.44181 -19.643074,-6.71419 -19.000446,-9.68635 z"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cscc" />
<path
inkscape:connector-curvature="0"
id="path903-5-2-0-3-9"
d="m 60.726494,124.26543 c 0.404414,5.02307 0.435388,9.41405 -1.014863,15.08667 8.711791,-2.57943 13.404263,-4.12319 13.879861,-4.38156 0.940559,-0.51094 -0.308607,-1.55065 -1.256211,-2.16331 -0.326401,-0.21104 -5.870691,-4.30227 -11.608787,-8.5418 z"
style="fill:#f1680d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
sodipodi:nodetypes="ccccc" />
<path
inkscape:connector-curvature="0"
id="path920-9-6-9-4"
d="m 46.538701,114.1089 c -0.344308,0.0228 -0.660027,0.26659 -0.852044,0.88022 -0.157516,0.91528 -2.552423,7.97512 -4.942209,14.76753 4.418276,-1.57951 11.65357,-4.00063 20.167587,-5.35385 -6.462069,-4.77428 -13.248565,-9.79477 -13.562741,-10.01471 -0.257937,-0.18058 -0.542798,-0.2969 -0.810593,-0.27919 z"
style="fill:#211f20;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path863-7-3-8-0-6"
d="m 40.767412,129.66988 c -2.218301,6.30764 -4.442554,12.41547 -4.868738,13.14656 -0.882803,1.51438 1.440916,3.15275 2.310309,2.80983 0.428003,-0.16884 12.908937,-3.7115 21.389603,-6.22235 -6.696977,-3.92647 -14.608653,-7.63903 -18.831174,-9.73404 z"
style="fill:#737373;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="ccccc" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -0,0 +1,340 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="250"
height="250"
viewBox="0 0 66.145832 66.145837"
version="1.1"
id="svg1435"
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
sodipodi:docname="10.svg">
<defs
id="defs1429">
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient1738"
id="radialGradient1740-1-7"
cx="56.455734"
cy="167.68628"
fx="56.455734"
fy="167.68628"
r="20.579618"
gradientTransform="matrix(1.2029851,0,0,0.16716418,-64.691948,29.26372)"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient1738">
<stop
style="stop-color:#838383;stop-opacity:1"
offset="0"
id="stop1734" />
<stop
style="stop-color:#bfbfbf;stop-opacity:0"
offset="1"
id="stop1736" />
</linearGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="198.59903"
inkscape:cy="135.78261"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
units="px"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1851"
inkscape:window-height="1016"
inkscape:window-x="0"
inkscape:window-y="1077"
inkscape:window-maximized="1" />
<metadata
id="metadata1432">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(46.223311,6.4966985)">
<g
id="g4030"
transform="matrix(-1,0,0,1,-6.8277115,-2.8529046)">
<path
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 12.584863,48.37267 c -0.12646,0.82901 -1.57866,1.40697 -2.04689,1.56259 -0.46824,0.15561 -1.84118,-1.61594 -1.99237,-1.92981 -0.15117,-0.31389 0.35104,-2.75171 0.57559,-3.0495 0.22455,-0.29781 2.78805,-2.95479 5.10319,-2.41649 2.31511,0.5383 4.31337,1.99697 4.91781,3.95579 0.28673,0.92928 0.33344,2.96739 -1.09575,3.05884 -0.54484,0.0348 -0.58305,-2.02582 -1.96302,-2.38071 -1.5501,-0.39867 -2.30714,-0.1238 -3.49856,1.19929 z"
id="path996-7-1-7-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<ellipse
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.789;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#radialGradient1740-1-7);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path1732-7-3"
cx="3.2234662"
cy="57.294899"
rx="24.756975"
ry="3.4401751" />
<path
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 18.773003,39.2087 c -0.37192,0.69919 1.06674,1.87447 1.15466,2.9757 0.0879,1.10121 -0.0692,2.96841 -1.74098,3.94418 -1.67178,0.9758 0.0514,3.93794 0.54817,4.1489 0.4967,0.21102 1.91182,-2.37953 2.59686,-3.97081 0.68505,-1.59128 0.53579,-3.3451 -0.0417,-4.54766 -0.54237,-1.12933 -2.51699,-2.55031 -2.51699,-2.55031 z"
id="path1043-7-2-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="fill:#fffdfb;fill-opacity:0.461187;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 11.864573,44.90517 c 0.21865,-0.10732 0.42574,-0.28483 0.60375,-0.50683 0.0926,-0.1167 0.15973,-0.28064 0.13872,-0.42154 -0.006,-0.0713 -0.031,-0.13477 -0.078,-0.16805 -0.12335,-0.10887 -0.30249,-0.10732 -0.47016,-0.0383 -0.20298,0.0789 -0.39905,0.2319 -0.56799,0.42042 -0.11823,0.13706 -0.16025,0.34577 -0.12491,0.50121 0.0336,0.17017 0.15161,0.30452 0.30869,0.27391 0.0646,-0.007 0.13993,-0.0314 0.18995,-0.0604 z"
id="path867-4-7-4-4-3-7-2-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -0.358091,40.18324 c 0.511193,0.60487 -0.646845,2.05748 -0.500238,3.15242 0.146605,1.09496 0.694506,2.88686 2.534622,3.4876 1.84014,0.60077 0.78136,3.85998 0.34034,4.1711 -0.44097,0.31111 -2.371201,-1.92215 -3.376832,-3.33289 -1.005626,-1.41073 -1.230097,-3.15651 -0.91955,-4.45391 0.291631,-1.2184 1.921658,-3.02432 1.921658,-3.02432 z"
id="path1043-7-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 7.318023,48.65315 c 0.29868,0.7836 1.84017,1.04186 2.3307,1.0951 0.49054,0.0532 1.45844,-1.96829 1.53991,-2.30703 0.0815,-0.33873 -0.9242,-2.61552 -1.20657,-2.85919 -0.28235,-0.24367 -3.34916,-2.29938 -5.49841,-1.28432 -2.14923,1.01505 -3.7944,2.86281 -3.97156,4.90508 -0.084,0.96889 0.30072,2.97088 1.71699,2.75848 0.53991,-0.081 0.1421,-2.10326 1.416,-2.74156 1.43098,-0.71702 2.22898,-0.60821 3.67294,0.43344 z"
id="path996-7-1-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<path
style="fill:#fffdfb;fill-opacity:0.461187;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1.155873,45.12846 c -0.12162,0.21101 -0.31245,0.40591 -0.54576,0.5688 -0.12266,0.0846 -0.29047,0.14101 -0.4298,0.11048 -0.0707,-0.0112 -0.132401,-0.0398 -0.162461,-0.089 -0.10077,-0.13007 -0.087,-0.30896 -0.007,-0.47166 0.0922,-0.19731 0.257851,-0.3828 0.457161,-0.53886 0.14461,-0.10884 0.35565,-0.13694 0.50839,-0.0914 0.16756,0.0448 0.29379,0.17148 0.2527,0.32628 -0.0115,0.0639 -0.0407,0.13752 -0.0729,0.18552 z"
id="path867-4-7-4-4-3-7-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 24.330553,24.35873 c 2.31997,11.26779 -3.09502,18.71357 -11.26023,20.32123 -7.24251,1.42598 -16.240015,-5.91537 -17.019884,-14.65833 -0.614061,-6.88401 3.527668,-12.0123 11.742184,-13.29711 8.00195,-1.25157 15.51172,2.65 16.53793,7.63421 z"
id="path865-2-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssss" />
<path
style="fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 6.508383,-0.58117 c 0.71935,-1.13179 2.57749,-1.89594 3.35225,-0.6688 0.4587,0.72658 22.94523,27.90959 23.6179,28.62291 0.92296,0.9787 1.01704,2.48082 -0.22304,3.04732 -1.24617,0.295 -44.381616,1.28468 -45.495355,1.41096 -1.113731,0.12632 -3.733631,-1.63436 -2.258761,-3.08235 1.47488,-1.44797 20.135166,-27.4296 21.007006,-29.33004 z"
id="path863-4-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csscscc" />
<g
id="g1182-9-2"
transform="rotate(14.728606,467.3448,-85.064068)"
style="opacity:0.7">
<path
inkscape:connector-curvature="0"
id="path1176-2-9"
d="m 40.726561,129.67568 c 1.767228,-2.45002 18.796875,-6.0648 19.841146,-5.30168 1.044271,0.76312 0.48472,14.54623 -0.8407,14.98803 -1.325419,0.44181 -19.643074,-6.71419 -19.000446,-9.68635 z"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cscc" />
<path
inkscape:connector-curvature="0"
id="path903-5-2-0-3"
d="m 60.726494,124.26543 c 0.404414,5.02307 0.435388,9.41405 -1.014863,15.08667 8.711791,-2.57943 13.404263,-4.12319 13.879861,-4.38156 0.940559,-0.51094 -0.308607,-1.55065 -1.256211,-2.16331 -0.326401,-0.21104 -5.870691,-4.30227 -11.608787,-8.5418 z"
style="fill:#f1680d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
sodipodi:nodetypes="ccccc" />
<path
inkscape:connector-curvature="0"
id="path920-9-6-9"
d="m 46.538701,114.1089 c -0.344308,0.0228 -0.660027,0.26659 -0.852044,0.88022 -0.157516,0.91528 -2.552423,7.97512 -4.942209,14.76753 4.418276,-1.57951 11.65357,-4.00063 20.167587,-5.35385 -6.462069,-4.77428 -13.248565,-9.79477 -13.562741,-10.01471 -0.257937,-0.18058 -0.542798,-0.2969 -0.810593,-0.27919 z"
style="fill:#211f20;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path863-7-3-8-0"
d="m 40.767412,129.66988 c -2.218301,6.30764 -4.442554,12.41547 -4.868738,13.14656 -0.882803,1.51438 1.440916,3.15275 2.310309,2.80983 0.428003,-0.16884 12.908937,-3.7115 21.389603,-6.22235 -6.696977,-3.92647 -14.608653,-7.63903 -18.831174,-9.73404 z"
style="fill:#737373;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="ccccc" />
</g>
<path
style="fill:#ffddc2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 2.686053,8.2707 c -0.38644,0.54929 -0.6682,0.96842 -0.91944,1.25064 -0.38792,0.43577 -1.37162,0.11675 -0.87936,-0.57043 0.25036,-0.372 0.5786,-0.83808 0.97951,-1.31457 0.40092,-0.47647 1.20573,0.0851 0.81929,0.63436 z"
id="path867-4-9-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csccc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 6.432423,47.55076 c 0.29502,0.90429 2.1661,1.24696 2.76418,1.32293 0.59805,0.076 1.97375,-2.20317 2.10507,-2.58755 0.13129,-0.3844 -0.82652,-3.6931 -1.15113,-3.98018 -0.32466,-0.28705 -4.15824,-2.48473 -6.89347,-1.39178 -2.73523,1.09297 -4.55588,3.39176 -4.961506,5.71905 -0.192426,1.10412 -0.273166,3.06229 1.487287,2.86346 0.671109,-0.0758 0.550039,-1.86492 2.174629,-2.55464 1.82492,-0.77474 2.79583,-0.62576 4.47494,0.60871 z"
id="path996-6-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -2.023855,38.92691 c 0.518431,0.63146 -0.819956,2.09026 -0.72478,3.21452 0.09514,1.12427 0.584386,2.97158 2.542082,3.63092 1.957746,0.65933 0.251475,3.67603 -0.244136,3.9838 -0.495592,0.30779 -2.085625,-1.73101 -3.092657,-3.19924 -1.007012,-1.46824 -1.148694,-3.26053 -0.73705,-4.58095 0.386568,-1.24001 2.256541,-3.04905 2.256541,-3.04905 z"
id="path1043-6-6-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 2.682013,42.7426 c -0.16114,0.20897 -0.38897,0.3919 -0.65467,0.53456 -0.13944,0.074 -0.31983,0.11153 -0.45591,0.0601 -0.07,-0.0211 -0.12772,-0.0597 -0.14923,-0.11713 -0.0793,-0.15273 -0.0337,-0.34219 0.076,-0.50541 0.12853,-0.19857 0.32945,-0.37457 0.55942,-0.51452 0.1661,-0.0968 0.38531,-0.0984 0.53234,-0.029 0.16203,0.071 0.26795,0.22315 0.19888,0.38313 -0.0229,0.0667 -0.0656,0.14157 -0.10682,0.18855 z"
id="path867-4-7-4-4-9-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 21.805913,39.88817 c -0.57966,0.57577 0.60425,2.1625 0.39581,3.27136 -0.20841,1.10887 -0.88206,2.8972 -2.89643,3.35507 -2.01441,0.45786 -0.62214,3.63172 -0.16021,3.98806 0.46191,0.35634 2.25007,-1.5111 3.4005,-2.8699 1.1504,-1.35881 1.47271,-3.12757 1.19678,-4.48286 -0.25911,-1.27277 -1.93645,-3.26173 -1.93645,-3.26173 z"
id="path1043-6-6-0-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 12.575363,47.61321 c -0.38501,0.86979 -2.28115,1.02138 -2.88385,1.03645 -0.60267,0.0151 -1.7407,-2.39157 -1.83245,-2.78727 -0.0917,-0.39571 1.19596,-3.59051 1.54795,-3.84327 0.35204,-0.25273 4.38831,-2.05124 6.99891,-0.68713 2.6106,1.36411 4.18931,3.83532 4.35737,6.19171 0.0797,1.11793 -0.0381,3.07421 -1.76939,2.69827 -0.66,-0.14329 -0.35852,-1.911 -1.90499,-2.76156 -1.73716,-0.95542 -2.71815,-0.90544 -4.51355,0.1528 z"
id="path996-6-5-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 9.944033,47.83238 c 0.31333,-0.27734 -2.26502,-0.52171 -1.37364,-0.56165 2.14829,-0.0962 5.49858,-1.51022 6.21721,-1.48763 0.6664,0.1099 2.36967,0.53811 3.05484,1.13802 0.82895,0.85105 0.83383,2.02217 0.89791,2.64974 0.0877,0.39759 0.4307,0.84401 0.57403,0.98791 -0.14548,-0.0195 -0.92467,-0.0455 -1.00126,-0.55111 l -0.0941,0.0118 c -0.008,0.002 -0.0149,0.004 -0.0226,0.006 -0.0252,0.005 -0.0512,0.007 -0.0775,0.007 l -0.0129,0.002 c -3.2e-4,-6.8e-4 -5.7e-4,-0.001 -0.002,-0.002 -0.28284,-0.0135 -0.57039,-0.33903 -0.67954,-0.76931 -0.06,-0.23773 -0.0573,-0.47796 0.007,-0.66596 l 5.1e-4,1.6e-4 c 0.0622,-0.1811 0.17703,-0.29925 0.31996,-0.32939 0.0277,-0.005 0.0562,-0.008 0.0852,-0.006 l 0.004,-5.4e-4 c -0.12574,-0.23052 -0.28555,-0.44277 -0.50196,-0.61521 -0.0121,0.037 -0.0289,0.0722 -0.052,0.10451 l -0.26149,0.29948 c -0.005,0.007 -0.008,0.0147 -0.0131,0.0219 -0.0177,0.0228 -0.0374,0.0441 -0.0601,0.0632 l -0.009,0.009 c -7.9e-4,-1.8e-4 -4.8e-4,-2.3e-4 -0.002,-6e-4 -0.24244,0.19659 -0.72706,0.14054 -1.14495,-0.13244 -0.41499,-0.27154 -0.64276,-0.67799 -0.53961,-0.96288 0.0118,-0.0335 0.0282,-0.0645 0.049,-0.0927 0.0195,-0.0251 0.0413,-0.0483 0.0667,-0.0687 l 0.0404,-0.0545 c -0.23747,-0.0352 -0.47068,-0.0383 -0.70628,-0.0127 l 0.0528,0.17372 c 0.005,0.008 0.008,0.0157 0.0118,0.0238 0.0114,0.0289 0.0191,0.0594 0.023,0.091 l 0.003,0.0119 c -5e-4,6.7e-4 -0.001,6.8e-4 -0.002,0.002 0.0348,0.33056 -0.33508,0.73947 -0.87378,0.96604 -0.60764,0.25518 -1.21283,0.18962 -1.35172,-0.14644 -0.0124,-0.0314 -0.0204,-0.0645 -0.024,-0.0992 l -0.0239,-0.0586 c -0.47527,0.83566 -2.00716,0.85196 -2.59159,0.87508 -0.27661,0.0109 -0.4265,0.2024 -0.84718,-0.0824 -0.16837,-0.11397 0.51714,-0.44149 0.85851,-0.74365 z"
id="path1092-6-8-2-4-4-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cscccccccccccccccccccccccccccccccccccccccssc" />
<path
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 13.915053,43.51085 c 0.26286,0.0232 0.55176,-0.0213 0.83656,-0.12041 0.14884,-0.0526 0.29853,-0.16006 0.35269,-0.29509 0.0319,-0.0658 0.0425,-0.13442 0.0147,-0.18914 -0.0588,-0.16174 -0.22919,-0.25633 -0.42362,-0.28596 -0.23318,-0.0397 -0.49872,-0.0108 -0.75737,0.0638 -0.18367,0.0568 -0.33312,0.21718 -0.38156,0.37234 -0.0573,0.16735 -0.017,0.3483 0.14757,0.40567 0.0647,0.0283 0.14863,0.0475 0.21112,0.0489 z"
id="path867-4-7-4-4-9-8-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<g
transform="matrix(1.0115339,0.19459998,0.05218655,0.99863735,-49.813788,-123.05967)"
id="g1928-4-5">
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-9-9"
d="m 50.943081,151.14101 c -0.400341,-0.25283 0.512053,-1.42428 0.811945,-1.68151 0.299889,-0.25723 -0.191703,1.92451 -0.811945,1.68151 z"
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:transform-center-y="-0.29778724"
inkscape:transform-center-x="0.83927927"
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-0-0-8"
d="m 51.83521,151.4665 c -0.414013,-0.35768 0.551389,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.22382,2.76306 -0.867104,2.42223 z"
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:transform-center-y="0.70487957"
inkscape:transform-center-x="0.84080235"
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-7-9-4"
d="m 52.816217,151.19387 c -0.414012,-0.35768 0.551389,-2.0495 0.867105,-2.42224 0.315714,-0.37273 -0.223821,2.76306 -0.867105,2.42224 z"
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
transform="matrix(1.0115339,0.19459998,0.05218655,0.99863735,-49.349013,-123.0278)"
id="g1923-1-8">
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-8-7-1"
d="m 59.278028,149.60677 c -0.414013,-0.35768 0.551388,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.223821,2.76305 -0.867104,2.42223 z"
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-6-7-0"
d="m 60.167005,149.36159 c -0.414013,-0.35768 0.551389,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.22382,2.76306 -0.867104,2.42223 z"
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-88-1-3"
d="m 61.157788,148.82481 c -0.348754,-0.27043 0.457468,-1.54143 0.721628,-1.82117 0.26416,-0.27974 -0.180335,2.07953 -0.721628,1.82117 z"
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<path
style="fill:none;fill-rule:evenodd;stroke:#762c2c;stroke-width:0.665;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 17.147403,38.62862 c -0.72578,1.52236 -3.31918,1.62532 -4.01257,0.17633"
id="path1990-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 10.911073,47.37878 c -0.25332,-0.41608 -1.68587,0.01 -2.39585,-0.57153 -1.70983,-1.40056 -3.40344,-1.67713 -3.9663,-1.60069 -0.56288,0.0763 -1.91081,-0.17662 -3.28653,1.12273 -0.9108,0.76281 -1.03415,1.92743 -1.161401,2.54529 -0.12745,0.38668 -0.513894,0.7961 -0.671045,0.92476 0.146705,-0.005 0.924526,0.0483 1.051876,-0.44698 l 0.0924,0.0212 c 0.008,0.003 0.0144,0.006 0.0219,0.008 0.0246,0.008 0.0502,0.0123 0.0764,0.0143 l 0.0127,0.003 c 4e-4,-6.2e-4 7.4e-4,-10e-4 0.002,-10e-4 0.28275,0.0152 0.60177,-0.27957 0.75389,-0.69661 0.0837,-0.23043 0.10541,-0.4697 0.06,-0.66329 l -5.2e-4,1.1e-4 c -0.0436,-0.18646 -0.14584,-0.31562 -0.28498,-0.36006 -0.027,-0.008 -0.0551,-0.0133 -0.0842,-0.0149 l -0.004,-9.9e-4 c 0.14841,-0.21661 0.32887,-0.4116 0.56163,-0.56126 0.008,0.038 0.0214,0.0748 0.0412,0.10923 l 0.22985,0.32441 c 0.004,0.007 0.007,0.0155 0.0108,0.0231 0.0153,0.0245 0.0328,0.0477 0.0534,0.069 l 0.008,0.0102 c 8e-4,-9e-5 5e-4,-1.8e-4 0.002,-4.1e-4 0.22131,0.22012 0.70911,0.21339 1.15247,-0.0159 0.44034,-0.22816 0.70807,-0.60947 0.63427,-0.90335 -0.008,-0.0345 -0.0216,-0.067 -0.0393,-0.0972 -0.0169,-0.027 -0.0362,-0.0522 -0.0594,-0.0751 l -0.0347,-0.0583 c 0.23981,-0.0109 0.47216,0.009 0.70395,0.0588 l -0.0701,0.16748 c -0.005,0.007 -0.01,0.0148 -0.0142,0.0225 -0.0142,0.0276 -0.025,0.0572 -0.032,0.0882 l -0.004,0.0116 c 4.3e-4,7.3e-4 10e-4,7.8e-4 10e-4,0.002 -0.0681,0.32534 0.25854,0.76957 0.77155,1.04949 0.5787,0.31535 1.18741,0.31137 1.35959,-0.009 0.0155,-0.0299 0.0268,-0.0621 0.0339,-0.0962 l 0.0297,-0.0559 c 0.38828,0.87946 2.47427,0.97095 3.05335,1.05308 0.27409,0.0389 -0.17108,0.36438 0.2295,-0.19966 0,0 0.19336,-0.87674 0.44922,-0.96214 z"
id="path1092-6-8-2-4-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csccccccccccccccccccccccccccccccccccccccccsc" />
<ellipse
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path2118"
cx="14.803588"
cy="47.274139"
rx="1.3079523"
ry="0.79874951"
transform="rotate(7.6759952)" />
<ellipse
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path2118-4"
cx="-2.8669713"
cy="49.612133"
rx="1.3079523"
ry="0.79874945"
transform="rotate(-16.263777)" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.565;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 9.444513,34.46445 c -0.0899,-2.23038 3.08527,-2.59381 3.39804,-0.35169"
id="path2155"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.565;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 18.143963,33.97459 c 0.0356,-2.23216 2.99749,-2.15568 2.9522,-0.008"
id="path2155-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:#a0a0a0;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -16.116527,45.59569 c -2.408883,-0.47562 2.075505,-4.28257 2.490376,-1.71901 1.573731,-1.69717 4.004691,1.44615 3.171314,2.90774 -0.953187,1.9009 -2.116512,2.60534 -2.959495,1.44024 -0.754515,1.25185 -2.144782,1.8195 -3.317197,-0.0757 -1.095048,-1.7701 -0.494612,-2.60817 0.615002,-2.55332 z"
id="path2391"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccscc" />
<path
style="fill:none;fill-rule:evenodd;stroke:#acacac;stroke-width:0.665;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -8.032603,44.61244 c 2.067678,0.0472 2.483086,0.0145 2.483086,0.0145"
id="path2408"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#acacac;stroke-width:0.665;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -8.701671,46.08611 c 2.619815,0.0472 3.146151,0.0145 3.146151,0.0145"
id="path2408-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#acacac;stroke-width:0.665;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -8.146387,47.51472 c 2.067678,0.0472 2.483086,0.0145 2.483086,0.0145"
id="path2408-2"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#9f9f9f;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -15.712356,46.91954 c -0.434102,-0.26046 -0.573013,-0.76402 -0.468831,-1.31967 0.104185,-0.55565 0.9203,-0.95503 1.302311,-0.79875"
id="path2443"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#9f9f9f;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -12.34324,47.18374 c -0.07502,0.50065 -0.487416,0.82127 -1.040756,0.9371 -0.553342,0.11582 -1.234023,-0.48603 -1.235408,-0.89877"
id="path2443-4"
inkscape:connector-curvature="0" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 30 KiB

297
public/images/avatars/2.svg Normal file
View File

@ -0,0 +1,297 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="250"
height="250"
viewBox="0 0 66.145832 66.145837"
version="1.1"
id="svg1435"
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
sodipodi:docname="2.svg">
<defs
id="defs1429">
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient1738"
id="radialGradient1740-1"
cx="56.455734"
cy="167.68628"
fx="56.455734"
fy="167.68628"
r="20.579618"
gradientTransform="matrix(1.2029851,0,0,0.16716418,-88.026448,23.78428)"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient1738">
<stop
style="stop-color:#838383;stop-opacity:1"
offset="0"
id="stop1734" />
<stop
style="stop-color:#bfbfbf;stop-opacity:0"
offset="1"
id="stop1736" />
</linearGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="211.9784"
inkscape:cy="102.0309"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
units="px"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1851"
inkscape:window-height="1016"
inkscape:window-x="0"
inkscape:window-y="1077"
inkscape:window-maximized="1" />
<metadata
id="metadata1432">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(46.223311,6.4966985)">
<g
id="g2152"
transform="matrix(-1,0,0,1,-33.939085,2.1967498)">
<ellipse
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.789;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#radialGradient1740-1);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path1732-7"
cx="-20.111046"
cy="51.81546"
rx="24.756975"
ry="3.4401751" />
<path
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -5.15942,46.77824 c -0.72231,-0.32474 -1.7996,1.18872 -2.89256,1.34949 -1.09296,0.16077 -2.96647,0.12782 -4.05098,-1.47554 -1.08452,-1.60339 -3.92585,0.31246 -4.10341,0.82213 -0.17756,0.50963 2.5011,1.74979 4.13432,2.32778 1.63321,0.57799 3.37326,0.31274 4.53487,-0.34327 1.09088,-0.61606 2.37776,-2.68059 2.37776,-2.68059 z"
id="path1043-7-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -15.02707,41.37124 c -0.83556,-0.0712 -1.50857,-1.48186 -1.6949,-1.93874 -0.18633,-0.45688 1.49024,-1.94432 1.79341,-2.11597 0.30317,-0.17166 2.76893,0.16775 3.08097,0.37205 0.31204,0.20428 3.13319,2.58594 2.74963,4.93168 -0.38356,2.34572 -1.70649,4.43633 -3.62089,5.16936 -0.90823,0.34773 -2.93874,0.52951 -3.12479,-0.89046 -0.0709,-0.54133 1.98268,-0.71613 2.24527,-2.1166 0.29497,-1.57314 -0.0295,-2.31027 -1.4287,-3.41132 z"
id="path996-7-1-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<path
style="fill:#fffdfb;fill-opacity:0.461187;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -11.30156,40.26285 c 0.12162,0.21101 0.31245,0.40591 0.54576,0.5688 0.12266,0.0846 0.29048,0.14101 0.42981,0.11048 0.0707,-0.0112 0.1324,-0.0398 0.16246,-0.089 0.10077,-0.13007 0.087,-0.30896 0.007,-0.47166 -0.0922,-0.19731 -0.25785,-0.3828 -0.45717,-0.53886 -0.14461,-0.10884 -0.35565,-0.13694 -0.50839,-0.0914 -0.16756,0.0448 -0.29379,0.17148 -0.2527,0.32628 0.0115,0.0639 0.0407,0.13752 0.0729,0.18552 z"
id="path867-4-7-4-4-3-7-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -36.27165,47.02397 c 0.72231,-0.32474 1.7996,1.18872 2.89256,1.34949 1.09296,0.16077 2.96647,0.12782 4.05098,-1.47554 1.08452,-1.60339 3.92585,0.31246 4.10341,0.82213 0.17756,0.50963 -2.5011,1.74979 -4.13432,2.32778 -1.63321,0.57799 -3.37326,0.31274 -4.53487,-0.34327 -1.09088,-0.61606 -2.37776,-2.68059 -2.37776,-2.68059 z"
id="path1043-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -26.404,41.61697 c 0.83556,-0.0712 1.50857,-1.48186 1.6949,-1.93874 0.18633,-0.45688 -1.49024,-1.94432 -1.79341,-2.11597 -0.30317,-0.17166 -2.76893,0.16775 -3.08097,0.37205 -0.31204,0.20428 -3.13319,2.58594 -2.74963,4.93168 0.38356,2.34572 1.70649,4.43633 3.62089,5.16936 0.90823,0.34773 2.93874,0.52951 3.12479,-0.89046 0.0709,-0.54133 -1.98268,-0.71613 -2.24527,-2.1166 -0.29497,-1.57314 0.0295,-2.31027 1.4287,-3.41132 z"
id="path996-7-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<path
style="fill:#fffdfb;fill-opacity:0.461187;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -30.12951,40.50858 c -0.12162,0.21101 -0.31245,0.40591 -0.54576,0.5688 -0.12266,0.0846 -0.29048,0.14101 -0.42981,0.11048 -0.0707,-0.0112 -0.1324,-0.0398 -0.16246,-0.089 -0.10077,-0.13007 -0.087,-0.30896 -0.007,-0.47166 0.0922,-0.19731 0.25785,-0.3828 0.45717,-0.53886 0.14461,-0.10884 0.35565,-0.13694 0.50839,-0.0914 0.16756,0.0448 0.29379,0.17148 0.2527,0.32628 -0.0115,0.0639 -0.0407,0.13752 -0.0729,0.18552 z"
id="path867-4-7-4-4-3-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -6.95484,19.73885 c 2.31997,11.2678 -3.09502,18.71357 -11.26023,20.32123 -7.24251,1.42598 -16.240009,-5.91537 -17.019879,-14.65833 -0.61406,-6.88401 3.527669,-12.01229 11.742179,-13.2971 8.00195,-1.25157 15.51172,2.64999 16.53793,7.6342 z"
id="path865-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssss" />
<path
style="fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -24.77701,-5.20104 c 0.71935,-1.13179 2.57749,-1.89594 3.35225,-0.6688 0.4587,0.72658 22.94523,27.90958 23.6179,28.62291 0.92296,0.97869 1.01704,2.48081 -0.22304,3.04732 -1.24617,0.295 -44.38161,1.28467 -45.49535,1.41095 -1.11373,0.12633 -3.73363,-1.63435 -2.25876,-3.08235 1.47488,-1.44797 20.13516,-27.42959 21.007,-29.33003 z"
id="path863-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csscscc" />
<path
style="fill:#ffddc2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -28.59933,3.65083 c -0.38644,0.54929 -0.6682,0.96842 -0.91944,1.25064 -0.38792,0.43577 -1.37163,0.11675 -0.87936,-0.57043 0.25036,-0.372 0.5786,-0.83808 0.97951,-1.31457 0.40092,-0.47647 1.20573,0.0851 0.81929,0.63436 z"
id="path867-4-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csccc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -22.36999,42.64336 c 0.94851,-0.0715 1.72633,-1.8074 1.94236,-2.37025 0.21602,-0.56283 -1.67055,-2.44109 -2.01268,-2.66005 -0.34214,-0.21895 -3.7837,-0.0755 -4.13974,0.17152 -0.35603,0.24708 -3.40237,3.44801 -2.99127,6.36469 0.41111,2.91668 2.21095,5.2318 4.375,6.17927 1.02668,0.44949 2.90946,0.99361 3.13501,-0.76362 0.086,-0.66988 -1.6806,-0.97778 -1.96416,-2.71979 -0.31851,-1.95681 0.0571,-2.86442 1.65548,-4.20177 z"
id="path996-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -32.7575,48.80606 c 0.73664,-0.35338 1.83528,1.29354 2.94992,1.46847 1.11464,0.17497 3.0253,0.13909 4.13131,-1.60563 1.10601,-1.74477 3.63037,0.62998 3.81144,1.18457 0.18109,0.55457 -2.17736,1.61411 -3.84296,2.24307 -1.6656,0.62894 -3.44016,0.34031 -4.6248,-0.37355 -1.1125,-0.67038 -2.42491,-2.91693 -2.42491,-2.91693 z"
id="path1043-6-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -21.41373,39.68036 c -0.46439,0.1471 -0.44938,0.21183 -1.1831,0.76313 -1.76701,1.32769 -2.43842,2.90693 -2.49804,3.47182 -0.0597,0.56488 -0.62598,1.81398 0.30891,3.45924 0.52431,1.06608 1.62618,1.46287 2.19605,1.73341 0.34528,0.21575 0.65105,0.68848 0.73864,0.87172 0.0303,-0.14362 0.26678,-0.88651 -0.18399,-1.128 l 0.0426,-0.0847 c 0.005,-0.007 0.009,-0.0126 0.0133,-0.0193 0.0132,-0.0221 0.0239,-0.0458 0.0321,-0.0708 l 0.006,-0.0116 c -5.1e-4,-5.8e-4 -0.001,-0.001 -0.001,-0.002 0.082,-0.27102 -0.12844,-0.65099 -0.49733,-0.89793 -0.2039,-0.13615 -0.43116,-0.21409 -0.62998,-0.21606 l -2e-5,5.7e-4 c -0.19148,-0.002 -0.34125,0.0666 -0.41751,0.19118 -0.0144,0.0243 -0.026,0.0504 -0.0345,0.0782 l -0.002,0.004 c -0.1751,-0.19567 -0.32158,-0.41733 -0.41159,-0.679 0.0389,10e-4 0.0777,-0.003 0.11589,-0.014 l 0.36976,-0.1461 c 0.008,-0.002 0.0167,-0.003 0.025,-0.005 0.0274,-0.009 0.0541,-0.0205 0.0797,-0.0355 l 0.0117,-0.005 c 10e-5,-8.7e-4 -5e-5,-5.7e-4 7e-5,-0.002 0.26644,-0.16261 0.37591,-0.63802 0.25864,-1.12319 -0.11689,-0.48197 -0.42359,-0.8327 -0.72659,-0.83091 -0.0355,-1e-4 -0.0702,0.005 -0.10378,0.0151 -0.0302,0.01 -0.0593,0.0227 -0.0871,0.0398 l -0.0649,0.0198 c 0.0464,-0.23554 0.1215,-0.45635 0.22456,-0.66975 l 0.146,0.10794 c 0.006,0.007 0.012,0.0131 0.0185,0.0191 0.0234,0.0204 0.0496,0.0379 0.078,0.0521 l 0.0102,0.007 c 8.1e-4,-2.5e-4 0.001,-8.6e-4 0.002,-0.001 0.29982,0.14349 0.80898,-0.0681 1.20287,-0.49982 0.44393,-0.4871 0.58483,-1.0793 0.31468,-1.32271 -0.0254,-0.0222 -0.054,-0.0408 -0.0854,-0.0558 l -0.0472,-0.0421 c 0.94657,-0.16798 1.71267,-1.80174 1.93017,-2.34468 0.10293,-0.25698 0.13209,-0.11779 -0.3205,-0.64101 0,0 -0.57365,-0.0676 -0.83081,0.0138 z"
id="path1092-6-8-2-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssccccccccccccccccccccccccccccccccccccccccs" />
<path
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -26.52707,40.44837 c -0.0662,0.25544 -0.20484,0.51277 -0.39361,0.74794 -0.0994,0.12263 -0.25079,0.22769 -0.39616,0.2335 -0.0727,0.008 -0.14088,-0.005 -0.18314,-0.0495 -0.13271,-0.10957 -0.16478,-0.30179 -0.12759,-0.49492 0.0407,-0.233 0.15684,-0.47354 0.31378,-0.69226 0.11499,-0.15406 0.31619,-0.24116 0.47862,-0.23484 0.17689,0.002 0.33386,0.10066 0.33282,0.2749 0.005,0.0704 -0.005,0.15596 -0.0246,0.21531 z"
id="path867-4-7-4-4-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -18.50865,42.48007 c -0.94851,-0.0715 -1.72633,-1.8074 -1.94236,-2.37025 -0.21602,-0.56283 1.67055,-2.44109 2.01268,-2.66005 0.34214,-0.21895 3.7837,-0.0755 4.13974,0.17152 0.35603,0.24708 3.40237,3.44801 2.99127,6.36469 -0.41111,2.91668 -2.21095,5.2318 -4.375,6.17927 -1.02668,0.44949 -2.90946,0.99361 -3.13501,-0.76362 -0.086,-0.66988 1.6806,-0.97778 1.96416,-2.71979 0.31851,-1.95681 -0.0571,-2.86442 -1.65548,-4.20177 z"
id="path996-6-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -8.13851,48.59067 c -0.73664,-0.35338 -1.83528,1.29354 -2.94992,1.46847 -1.11464,0.17497 -3.0253,0.13909 -4.13131,-1.60563 -1.10601,-1.74477 -3.63037,0.62998 -3.81144,1.18457 -0.18109,0.55457 2.17736,1.61411 3.84296,2.24307 1.6656,0.62894 3.44016,0.34031 4.6248,-0.37355 1.1125,-0.67038 2.42491,-2.91693 2.42491,-2.91693 z"
id="path1043-6-6-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -19.59636,40.07407 c 0.36626,0.20236 0.29751,0.16154 1.0305,0.67034 1.95867,1.3596 2.30312,2.52259 2.52249,3.20729 0.11961,0.66473 0.28652,2.41305 -0.0493,3.25956 -0.52431,1.06608 -1.62618,1.46287 -2.19605,1.73341 -0.34528,0.21575 -0.65105,0.68848 -0.73864,0.87172 -0.0303,-0.14362 -0.26678,-0.88651 0.18399,-1.128 l -0.0426,-0.0847 c -0.005,-0.007 -0.009,-0.0126 -0.0133,-0.0193 -0.0132,-0.0221 -0.0239,-0.0458 -0.0321,-0.0708 l -0.006,-0.0116 c 5e-4,-5.8e-4 0.001,-10e-4 0.001,-0.002 -0.082,-0.27102 0.12844,-0.65099 0.49733,-0.89793 0.2039,-0.13615 0.43116,-0.21409 0.62998,-0.21606 l 2e-5,5.8e-4 c 0.19148,-0.002 0.34125,0.0666 0.41751,0.19118 0.0144,0.0243 0.026,0.0504 0.0345,0.0782 l 0.002,0.004 c 0.1751,-0.19567 0.32158,-0.41733 0.41159,-0.679 -0.0389,10e-4 -0.0777,-0.003 -0.11589,-0.014 l -0.36976,-0.1461 c -0.008,-0.002 -0.0167,-0.003 -0.025,-0.005 -0.0274,-0.009 -0.0541,-0.0205 -0.0797,-0.0355 l -0.0117,-0.005 c -10e-5,-8.7e-4 5e-5,-5.8e-4 -7e-5,-0.002 -0.26644,-0.16261 -0.37591,-0.63802 -0.25864,-1.12319 0.11689,-0.48197 0.42359,-0.8327 0.72659,-0.83091 0.0355,-1e-4 0.0702,0.005 0.10378,0.0151 0.0302,0.01 0.0593,0.0227 0.0871,0.0398 l 0.0649,0.0198 c -0.0464,-0.23554 -0.1215,-0.45635 -0.22456,-0.66975 l -0.146,0.10794 c -0.006,0.007 -0.012,0.0131 -0.0185,0.0191 -0.0234,0.0204 -0.0496,0.0379 -0.078,0.0521 l -0.0102,0.007 c -8.2e-4,-2.5e-4 -0.001,-8.7e-4 -0.002,-10e-4 -0.29982,0.14349 -0.80898,-0.0681 -1.20287,-0.49982 -0.44393,-0.4871 -0.58483,-1.0793 -0.31468,-1.32271 0.0254,-0.0222 0.054,-0.0408 0.0854,-0.0558 l 0.0472,-0.0421 c -0.94657,-0.16798 -1.71267,-1.80174 -1.93017,-2.34468 -0.10293,-0.25698 -0.72674,0.0579 -0.27415,-0.46534 0.133,-0.15376 0.89498,0.1747 1.29401,0.39517 z"
id="path1092-6-8-2-4-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sscccccccccccccccccccccccccccccccccccccccss" />
<path
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -14.35157,40.28508 c 0.0662,0.25544 0.20484,0.51277 0.39361,0.74794 0.0994,0.12263 0.25079,0.22769 0.39616,0.2335 0.0727,0.008 0.14088,-0.005 0.18314,-0.0495 0.13271,-0.10957 0.16478,-0.30179 0.12759,-0.49492 -0.0407,-0.233 -0.15684,-0.47354 -0.31378,-0.69226 -0.11499,-0.15406 -0.31619,-0.24116 -0.47862,-0.23484 -0.17689,0.002 -0.33386,0.10066 -0.33282,0.2749 -0.005,0.0704 0.005,0.15596 0.0246,0.21531 z"
id="path867-4-7-4-4-9-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<g
id="g1888"
transform="matrix(0.99662396,0.14458051,-0.080948,0.99164429,-134.59984,-142.0436)">
<path
sodipodi:nodetypes="ccsccc"
inkscape:connector-curvature="0"
id="path867-2"
d="m 127.44239,153.53297 c 0.0248,-0.83572 0.78535,-0.95789 0.85565,-0.2729 0.0703,0.68499 0.13616,1.19684 0.12315,1.59221 -0.0201,0.61048 -0.82518,0.87943 -0.90491,0.0152 -0.0582,-0.45454 -0.0497,-0.87357 -0.0739,-1.33447 z"
style="fill:#4e3b3a;fill-opacity:1;fill-rule:evenodd;stroke:#2f2828;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccsccc"
inkscape:connector-curvature="0"
id="path867-6-6"
d="m 134.84928,151.74452 c 0.11271,-0.82846 0.88195,-0.86978 0.87965,-0.18119 -0.002,0.68859 0.0189,1.40498 -0.0902,1.78521 -0.12806,0.44614 -0.81369,0.54941 -0.80186,-0.31843 -0.01,-0.45813 -0.0121,-0.82468 0.0124,-1.28557 z"
style="opacity:1;vector-effect:none;fill:#4e3b3a;fill-opacity:1;fill-rule:evenodd;stroke:#2f2828;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<g
transform="matrix(1.0115339,0.19459998,0.05218655,0.99863735,-81.099175,-127.67954)"
id="g1928-4">
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-9"
d="m 50.943081,151.14101 c -0.400341,-0.25283 0.512053,-1.42428 0.811945,-1.68151 0.299889,-0.25723 -0.191703,1.92451 -0.811945,1.68151 z"
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:transform-center-y="-0.29778724"
inkscape:transform-center-x="0.83927927"
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-0-0"
d="m 51.83521,151.4665 c -0.414013,-0.35768 0.551389,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.22382,2.76306 -0.867104,2.42223 z"
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:transform-center-y="0.70487957"
inkscape:transform-center-x="0.84080235"
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-7-9"
d="m 52.816217,151.19387 c -0.414012,-0.35768 0.551389,-2.0495 0.867105,-2.42224 0.315714,-0.37273 -0.223821,2.76306 -0.867105,2.42224 z"
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
transform="matrix(1.0115339,0.19459998,0.05218655,0.99863735,-80.6344,-127.64767)"
id="g1923-1">
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-8-7"
d="m 59.278028,149.60677 c -0.414013,-0.35768 0.551388,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.223821,2.76305 -0.867104,2.42223 z"
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-6-7"
d="m 60.167005,149.36159 c -0.414013,-0.35768 0.551389,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.22382,2.76306 -0.867104,2.42223 z"
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-88-1"
d="m 61.157788,148.82481 c -0.348754,-0.27043 0.457468,-1.54143 0.721628,-1.82117 0.26416,-0.27974 -0.180335,2.07953 -0.721628,1.82117 z"
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<path
style="fill:none;fill-rule:evenodd;stroke:#762c2c;stroke-width:0.665;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -14.13799,34.00875 c -0.72578,1.52235 -3.31918,1.62531 -4.01257,0.17632"
id="path1990"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<g
id="g1182-9-2-0"
transform="rotate(14.728606,469.56375,-206.44298)"
style="opacity:0.7">
<path
inkscape:connector-curvature="0"
id="path1176-2-9-5"
d="m 40.726561,129.67568 c 1.767228,-2.45002 18.796875,-6.0648 19.841146,-5.30168 1.044271,0.76312 0.48472,14.54623 -0.8407,14.98803 -1.325419,0.44181 -19.643074,-6.71419 -19.000446,-9.68635 z"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cscc" />
<path
inkscape:connector-curvature="0"
id="path903-5-2-0-3-9"
d="m 60.726494,124.26543 c 0.404414,5.02307 0.435388,9.41405 -1.014863,15.08667 8.711791,-2.57943 13.404263,-4.12319 13.879861,-4.38156 0.940559,-0.51094 -0.308607,-1.55065 -1.256211,-2.16331 -0.326401,-0.21104 -5.870691,-4.30227 -11.608787,-8.5418 z"
style="fill:#f1680d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
sodipodi:nodetypes="ccccc" />
<path
inkscape:connector-curvature="0"
id="path920-9-6-9-4"
d="m 46.538701,114.1089 c -0.344308,0.0228 -0.660027,0.26659 -0.852044,0.88022 -0.157516,0.91528 -2.552423,7.97512 -4.942209,14.76753 4.418276,-1.57951 11.65357,-4.00063 20.167587,-5.35385 -6.462069,-4.77428 -13.248565,-9.79477 -13.562741,-10.01471 -0.257937,-0.18058 -0.542798,-0.2969 -0.810593,-0.27919 z"
style="fill:#211f20;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path863-7-3-8-0-6"
d="m 40.767412,129.66988 c -2.218301,6.30764 -4.442554,12.41547 -4.868738,13.14656 -0.882803,1.51438 1.440916,3.15275 2.310309,2.80983 0.428003,-0.16884 12.908937,-3.7115 21.389603,-6.22235 -6.696977,-3.92647 -14.608653,-7.63903 -18.831174,-9.73404 z"
style="fill:#737373;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="ccccc" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 26 KiB

319
public/images/avatars/3.svg Normal file
View File

@ -0,0 +1,319 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="250"
height="250"
viewBox="0 0 66.145832 66.145837"
version="1.1"
id="svg1435"
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
sodipodi:docname="3.svg">
<defs
id="defs1429">
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient1738"
id="radialGradient1740-1-7-7"
cx="56.455734"
cy="167.68628"
fx="56.455734"
fy="167.68628"
r="20.579618"
gradientTransform="matrix(1.2029851,0,0,0.16716418,-76.685677,15.668835)"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient1738">
<stop
style="stop-color:#838383;stop-opacity:1"
offset="0"
id="stop1734" />
<stop
style="stop-color:#bfbfbf;stop-opacity:0"
offset="1"
id="stop1736" />
</linearGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.8"
inkscape:cx="171.07991"
inkscape:cy="121.43175"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
units="px"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1851"
inkscape:window-height="1016"
inkscape:window-x="0"
inkscape:window-y="1077"
inkscape:window-maximized="1" />
<metadata
id="metadata1432">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(46.223311,6.4966985)">
<g
id="g3290">
<path
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -1.336237,40.099935 c 0.38687,0.74696 -0.45728,2.06464 -0.74752,2.46457 -0.29035,0.39989 -2.45883,-0.2363 -2.76785,-0.40281 -0.30903,-0.16654 -1.34028,-2.43925 -1.33298,-2.81221 0.007,-0.37299 0.5296,-4.02793 2.7383,-4.94348 2.20867,-0.91553 4.70276,-0.8987 6.35445,0.33856 0.78355,0.58697 2.02669,2.21445 0.91376,3.12369 -0.42432,0.34657 -1.67383,-1.30415 -3.01047,-0.78604 -1.50144,0.58194 -1.95709,1.2474 -2.14769,3.01772 z"
id="path996-7-1-7-5-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<ellipse
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.789;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#radialGradient1740-1-7-7);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path1732-7-3-7"
cx="-8.770277"
cy="43.700001"
rx="24.756975"
ry="3.4401751" />
<path
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 8.623523,30.430195 c -0.7897,0.11417 -0.88059,1.96991 -1.72075,2.69284 -0.84014,0.72291 -2.44811,1.70186 -4.24089,0.93187 -1.79278,-0.76998 -3.16191,2.37317 -3.03531,2.89857 0.12653,0.52538 3.0747,0.13232 4.77531,-0.25765 1.70058,-0.38995 3.03307,-1.54875 3.66205,-2.72636 0.59064,-1.10595 0.5596,-3.53926 0.5596,-3.53926 z"
id="path1043-7-2-6-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="fill:#fffdfb;fill-opacity:0.461187;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -3.974517,37.705455 c 0.11503,-0.2149 0.17932,-0.47999 0.19333,-0.76423 0.007,-0.14887 -0.0355,-0.32119 -0.13596,-0.42332 -0.0471,-0.0544 -0.10498,-0.0913 -0.16304,-0.0909 -0.16509,-0.0163 -0.31046,0.0896 -0.40656,0.24359 -0.11911,0.18265 -0.18873,0.42143 -0.21528,0.67318 -0.0155,0.18035 0.0736,0.37436 0.19433,0.47991 0.12805,0.11854 0.30385,0.15867 0.41401,0.042 0.0486,-0.0434 0.0956,-0.10725 0.11938,-0.16002 z"
id="path867-4-7-4-4-3-7-2-6-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
style="vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill"
d="m -22.475037,40.322905 c 0.64456,-0.44148 1.41622,1.58211 2.3296,1.78958 0.91341,0.20748 2.5084,0.14896 3.58212,-2.01181 1.07373,-2.1608 3.30601,0.38953 3.40851,1.07237 0.10246,0.68283 -2.29127,2.36817 -3.73385,3.1566 -1.44257,0.78839 -2.89586,0.44558 -3.82057,-0.42624 -0.8684,-0.81872 -1.76581,-3.5805 -1.76581,-3.5805 z"
id="path1043-7-3-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc"
inkscape:transform-center-x="3.6660439"
inkscape:transform-center-y="9.8689215" />
<path
style="vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill"
d="m -12.503757,41.934745 c 0.0606,0.72139 1.91589,1.53506 2.51806,1.77174 0.60219,0.23666 2.6567,-0.93056 2.8983,-1.15837 0.24164,-0.22778 -0.10987,-2.37884 -0.36974,-2.6788 -0.25983,-0.29995 -3.32275,-3.10368 -6.46967,-3.18136 -3.14692,-0.0777 -5.99199,0.68573 -7.04928,2.18449 -0.50157,0.71106 -0.82781,2.40312 1.05992,2.80511 0.71966,0.15323 1.03755,-1.55963 2.91773,-1.54175 2.11203,0.0201 3.08259,0.42216 4.49468,1.79894 z"
id="path996-7-1-9-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc"
inkscape:transform-center-x="3.0593228"
inkscape:transform-center-y="-0.93584208" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -11.883327,13.356055 c 9.73145,6.13549 11.34731,15.1992 6.84823,22.20016 -3.99067,6.20983 -15.51853,7.60954 -22.362405,2.11329 -5.388725,-4.32762 -6.216045,-10.86741 -1.450033,-17.6802 4.642678,-6.63651 12.659588,-9.34723 16.964208,-6.63325 z"
id="path865-2-8-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssss" />
<path
style="fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -42.214449,8.923055 c -0.317513,-1.30292 0.41917,-3.17212 1.840787,-2.88035 0.841707,0.17278 36.022275,2.79728 37.002695,2.80661 1.34519,0.0128 2.49338,0.98584 2.04248,2.27248 -0.65085,1.10288 -29.82846,32.8883 -30.509192,33.77879 -0.680698,0.89051 -3.765592,1.55931 -3.787532,-0.50744 -0.02192,-2.06673 -5.823216,-33.52459 -6.589238,-35.47009 z"
id="path863-4-1-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csscscc" />
<path
style="fill:#ffddc2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -38.481181,17.812845 c 0.128237,0.65925 0.235171,1.15284 0.264546,1.52954 0.04537,0.58165 -0.866311,1.06982 -1.020628,0.23871 -0.09471,-0.43828 -0.203291,-0.99791 -0.269013,-1.61714 -0.0657,-0.61923 0.896878,-0.81034 1.025095,-0.15111 z"
id="path867-4-9-8-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csccc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -9.658637,40.354575 c 0.53534,0.78929 2.42737,0.955 3.02845,0.86467 0.60108,-0.0903 1.30761,-2.6586 1.3291,-3.06423 0.0215,-0.40564 -1.81922,-3.32677 -2.21319,-3.51424 -0.39402,-0.18743 -4.71817,-1.25411 -7.07029,0.54456 -2.35213,1.79869 -3.48488,4.50745 -3.23717,6.85701 0.11753,1.11469 0.57871,3.02041 2.23161,2.34816 0.63012,-0.25627 0.0198,-1.94424 1.40564,-3.05157 1.55677,-1.24386 2.55696,-1.7131 4.52585,-0.98436 z"
id="path996-6-8-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc"
inkscape:transform-center-x="3.7823505"
inkscape:transform-center-y="1.376162" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -23.292177,35.296735 c 0.81262,0.24021 0.57764,2.49159 1.33493,3.47303 0.75726,0.98147 2.2788,2.37144 4.307,1.67481 2.02824,-0.69667 2.42639,3.249 2.1992,3.86664 -0.22716,0.61763 -2.78105,-0.21401 -4.50526,-0.90525 -1.72419,-0.69124 -2.92308,-2.26257 -3.37654,-3.76539 -0.42584,-1.41129 0.0407,-4.34383 0.0407,-4.34383 z"
id="path1043-6-6-5-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -13.008277,36.590005 c -0.14097,0.22342 -0.35151,0.42724 -0.60392,0.59461 -0.1326,0.0869 -0.30986,0.14149 -0.45147,0.10322 -0.0723,-0.0143 -0.13403,-0.0473 -0.1613,-0.10243 -0.0947,-0.14452 -0.0676,-0.33752 0.0264,-0.51047 0.10935,-0.20995 0.29347,-0.40435 0.51038,-0.56556 0.15707,-0.1122 0.37684,-0.13464 0.53122,-0.0795 0.16958,0.0553 0.29088,0.1967 0.2374,0.36257 -0.0165,0.0686 -0.0518,0.14721 -0.0885,0.1979 z"
id="path867-4-7-4-4-9-9-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc"
inkscape:transform-center-x="7.1644962"
inkscape:transform-center-y="-2.016335" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 10.192913,42.964885 c -0.20949,-0.79096 -2.19187,-0.56717 -3.05401,-1.30588 -0.86214,-0.73868 -2.08208,-2.22169 -1.46401,-4.19308 0.61809,-1.97143 -2.8542,-2.3671 -3.39844,-2.14741 -0.54435,0.21932 0.18176,2.70563 0.78612,4.38428 0.60438,1.67863 1.98472,2.84817 3.30651,3.29243 1.2413,0.41724 3.82383,-0.0303 3.82383,-0.0303 z"
id="path1043-6-6-0-3-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc"
inkscape:transform-center-x="-2.5748918"
inkscape:transform-center-y="2.5150219" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -1.793017,39.488875 c 0.19988,0.93112 -1.2588,2.16201 -1.74201,2.52637 -0.4832,0.36437 -2.83537,-0.92476 -3.14423,-1.19243 -0.30883,-0.2677 -1.14629,-3.6139 -1.00831,-4.02477 0.13798,-0.41088 2.37052,-4.22926 5.30871,-4.64695 2.9382,-0.41769 5.68836,0.66637 7.21878,2.48136 0.72605,0.86111 1.78647,2.51825 0.15053,3.22452 -0.62365,0.26926 -1.42261,-1.34211 -3.18827,-1.12918 -1.98335,0.23921 -2.75483,0.85293 -3.5952,2.76108 z"
id="path996-6-5-6-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -3.910237,41.301545 c 0.0835,-0.36742 -2.03198,0.79392 -1.37096,0.30071 1.59314,-1.18859 3.36314,-3.97381 3.92702,-4.33104 0.23625,-0.57518 1.94616,-1.15156 2.97508,-0.91497 1.11683,0.19599 1.4187,2.4487 1.45393,3.03413 0.0659,0.37496 0.25553,0.9382 0.38279,1.08359 -0.13403,-0.0307 -0.74391,-0.24326 -0.79541,-0.71707 l -0.0876,0.003 c -0.007,10e-4 -0.014,0.002 -0.0212,0.004 -0.0236,0.002 -0.0477,0.002 -0.0721,-2.9e-4 l -0.0126,4e-5 c -2e-4,-7.5e-4 -4e-4,-9e-4 -0.002,-0.002 -0.26152,-0.037 -0.51538,-0.36274 -0.59995,-0.76977 -0.0464,-0.22486 -0.0347,-0.4466 0.0321,-0.61474 l 4.8e-4,2e-4 c 0.0646,-0.16194 0.17553,-0.26115 0.30912,-0.27658 0.0259,-0.002 0.0523,-0.002 0.0791,0.002 l 0.003,-4.1e-4 c -0.10762,-0.22389 -0.37332,-0.77023 -0.63678,-0.78472 0.0116,0.0335 0.0187,0.0683 0.0192,0.10407 l -0.0313,0.35677 c 5.9e-4,0.008 0.002,0.015 0.003,0.0231 -6.6e-4,0.026 -0.003,0.052 -0.0101,0.0779 l -0.002,0.0113 c -7.1e-4,2.8e-4 -5.4e-4,10e-5 -0.002,6.1e-4 -0.0748,0.27102 -0.47813,0.48185 -0.95293,0.49808 -0.47177,0.0158 -0.87621,-0.16533 -0.95816,-0.42893 -0.01,-0.0308 -0.0149,-0.0622 -0.0148,-0.0938 1.5e-4,-0.0288 0.004,-0.0571 0.0125,-0.0853 l 1.6e-4,-0.0612 c -0.20201,0.0976 -0.38262,0.21665 -0.54883,0.35809 l 0.1387,0.10056 c 0.009,0.003 0.015,0.007 0.0224,0.0114 0.0251,0.0154 0.0483,0.0339 0.0691,0.0551 l 0.009,0.007 c 3e-5,8.6e-4 -3.4e-4,10e-4 -3.9e-4,0.002 0.21356,0.22553 0.16105,0.71935 -0.12404,1.16659 -0.32173,0.50421 -0.82291,0.77076 -1.11942,0.59533 -0.0272,-0.0167 -0.052,-0.0369 -0.0744,-0.0606 l -0.0514,-0.0308 c 0.10791,0.86317 -1.05768,1.67219 -1.4928,1.99329 -0.20598,0.15194 -0.21267,0.37107 -0.69631,0.38003 -0.19355,0.004 0.14709,-0.59444 0.23811,-0.99474 z"
id="path1092-6-8-2-4-4-8-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cscccccccccccccccccccccccccccccccccccccccssc" />
<path
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -3.124557,35.375405 c 0.22835,-0.13474 0.43795,-0.33966 0.61191,-0.58652 0.0904,-0.12967 0.14919,-0.30435 0.11351,-0.44564 -0.0128,-0.0721 -0.0448,-0.13398 -0.0998,-0.16215 -0.14364,-0.097 -0.33869,-0.0742 -0.51497,0.0153 -0.21388,0.104 -0.41362,0.2826 -0.58071,0.49429 -0.11635,0.15343 -0.14362,0.37095 -0.0915,0.52521 0.0522,0.16937 0.19205,0.29273 0.36036,0.24316 0.0695,-0.0148 0.14944,-0.0483 0.2013,-0.0836 z"
id="path867-4-7-4-4-9-8-5-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<g
transform="matrix(0.84831505,-0.59444154,0.76250294,0.65439063,-170.76545,-35.342733)"
id="g1928-4-5-1"
style="stroke-width:0.99583">
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-9-9-8"
d="m 50.943081,151.14101 c -0.400341,-0.25283 0.512053,-1.42428 0.811945,-1.68151 0.299889,-0.25723 -0.191703,1.92451 -0.811945,1.68151 z"
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.26348px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:transform-center-y="-0.29778724"
inkscape:transform-center-x="0.83927927"
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-0-0-8-9"
d="m 51.83521,151.4665 c -0.414013,-0.35768 0.551389,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.22382,2.76306 -0.867104,2.42223 z"
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.26348px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:transform-center-y="0.70487957"
inkscape:transform-center-x="0.84080235"
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-7-9-4-6"
d="m 52.816217,151.19387 c -0.414012,-0.35768 0.551389,-2.0495 0.867105,-2.42224 0.315714,-0.37273 -0.223821,2.76306 -0.867105,2.42224 z"
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.26348px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
transform="matrix(0.84831505,-0.59444154,0.76250294,0.65439063,-170.4175,-35.655743)"
id="g1923-1-8-4"
style="stroke-width:0.99583">
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-8-7-1-3"
d="m 59.278028,149.60677 c -0.414013,-0.35768 0.551388,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.223821,2.76305 -0.867104,2.42223 z"
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.26348px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-6-7-0-3"
d="m 60.167005,149.36159 c -0.414013,-0.35768 0.551389,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.22382,2.76306 -0.867104,2.42223 z"
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.26348px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-88-1-3-3"
d="m 61.157788,148.82481 c -0.348754,-0.27043 0.457468,-1.54143 0.721628,-1.82117 0.26416,-0.27974 -0.180335,2.07953 -0.721628,1.82117 z"
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.26348px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -2.980557,41.467355 c -0.25634,-0.52066 -1.8692,-0.008 -2.62197,-0.74049 -1.81292,-1.76322 -3.67383,-2.12815 -4.30219,-2.04002 -0.62836,0.088 -2.10754,-0.2433 -3.70865,1.35588 -1.05433,0.93754 -1.89322,2.22618 -2.07056,2.99314 -0.0299,0.62285 -0.25766,1.3284 -0.47598,1.44734 0.16292,-0.004 1.33361,-0.0754 1.50385,-0.68991 l 0.10113,0.0276 c 0.01,0.004 0.0155,0.008 0.0238,0.0101 0.0268,0.0102 0.0548,0.016 0.0838,0.0188 l 0.0139,0.004 c 4.7e-4,-6.5e-4 8.6e-4,-10e-4 0.002,-10e-4 0.31249,0.0224 0.68339,-0.34031 0.87651,-0.85714 0.10624,-0.28559 0.14439,-0.58294 0.10546,-0.82429 l -5.9e-4,1.4e-4 c -0.0374,-0.23248 -0.14312,-0.3944 -0.29473,-0.4514 -0.0295,-0.0103 -0.0603,-0.0172 -0.0925,-0.0196 l -0.005,-10e-4 c 0.17726,-0.26757 0.38868,-0.50794 0.65545,-0.69121 0.007,0.0473 0.0193,0.0933 0.0392,0.13638 l 0.2357,0.40635 c 0.003,0.009 0.007,0.0194 0.0106,0.0288 0.0155,0.0307 0.0336,0.0597 0.0551,0.0865 l 0.008,0.0127 c 8.8e-4,-1e-4 5.6e-4,-2.2e-4 0.002,-6.2e-4 0.23236,0.27655 0.77344,0.27418 1.27831,-0.006 0.50147,-0.27835 0.82064,-0.74929 0.75606,-1.11579 -0.007,-0.043 -0.02,-0.0836 -0.0379,-0.12136 -0.0172,-0.0338 -0.037,-0.0654 -0.0613,-0.0941 l -0.035,-0.073 c 0.26646,-0.0106 0.52282,0.017 0.77679,0.0818 l -0.0876,0.20748 c -0.006,0.009 -0.0115,0.0186 -0.0174,0.0275 -0.0175,0.0342 -0.031,0.0708 -0.0407,0.10928 l -0.005,0.0148 c 4.5e-4,9.9e-4 8.7e-4,7.6e-4 6.1e-4,0.002 -0.0946,0.40383 0.24138,0.96042 0.79355,1.31494 0.62291,0.3994 1.29783,0.40197 1.50748,0.006 0.0189,-0.037 0.0334,-0.0769 0.0431,-0.11928 l 0.0363,-0.0691 c 0.37872,1.09872 2.68542,1.23829 3.32246,1.3476 0.3015,0.0518 -0.21102,0.45113 0.2661,-0.24548 0,0 0.26588,-1.08813 0.55441,-1.19121 z"
id="path1092-6-8-2-4-0-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csccccccccccccccccccccccccccccccccccccccccsc"
inkscape:transform-center-x="4.356578"
inkscape:transform-center-y="-0.92815786" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -3.919077,42.542355 a 0.79931514,1.3179963 83.536518 0 1 -1.21333,0.9455 0.79931514,1.3179963 83.536518 0 1 -1.40508,-0.64162 0.79931514,1.3179963 83.536518 0 1 1.21334,-0.9455 0.79931514,1.3179963 83.536518 0 1 1.40507,0.64162 z"
id="path2118-0"
inkscape:connector-curvature="0" />
<ellipse
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.200002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path2118-4-4"
cx="-33.942436"
cy="23.346323"
rx="1.3103164"
ry="0.80401891"
transform="matrix(0.61717735,-0.78682407,0.79104128,0.61176277,0,0)" />
<path
style="vector-effect:none;fill:#91332b;fill-opacity:1;fill-rule:evenodd;stroke:#5d0000;stroke-width:0.365;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -6.601217,31.501055 c -0.70178,0.002 -1.03703,-0.72268 -0.86575,-1.3501 0.1469,-1.13876 2.35356,-1.54555 1.87841,0.39677 -0.49365,1.10411 -1.01266,0.95333 -1.01266,0.95333 z"
id="path991-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc"
inkscape:transform-center-x="1.4546864"
inkscape:transform-center-y="0.24192002" />
<g
id="g1182-9-2-0-9-7"
transform="rotate(-31.602307,-184.54,210.37411)"
style="opacity:0.7">
<path
inkscape:connector-curvature="0"
id="path1176-2-9-5-2-5"
d="m 40.726561,129.67568 c 1.767228,-2.45002 18.796875,-6.0648 19.841146,-5.30168 1.044271,0.76312 0.48472,14.54623 -0.8407,14.98803 -1.325419,0.44181 -19.643074,-6.71419 -19.000446,-9.68635 z"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cscc" />
<path
inkscape:connector-curvature="0"
id="path903-5-2-0-3-9-2-4"
d="m 60.726494,124.26543 c 0.404414,5.02307 0.435388,9.41405 -1.014863,15.08667 8.711791,-2.57943 13.404263,-4.12319 13.879861,-4.38156 0.940559,-0.51094 -0.308607,-1.55065 -1.256211,-2.16331 -0.326401,-0.21104 -5.870691,-4.30227 -11.608787,-8.5418 z"
style="fill:#f1680d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
sodipodi:nodetypes="ccccc" />
<path
inkscape:connector-curvature="0"
id="path920-9-6-9-4-4-8"
d="m 46.538701,114.1089 c -0.344308,0.0228 -0.660027,0.26659 -0.852044,0.88022 -0.157516,0.91528 -2.552423,7.97512 -4.942209,14.76753 4.418276,-1.57951 11.65357,-4.00063 20.167587,-5.35385 -6.462069,-4.77428 -13.248565,-9.79477 -13.562741,-10.01471 -0.257937,-0.18058 -0.542798,-0.2969 -0.810593,-0.27919 z"
style="fill:#211f20;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path863-7-3-8-0-6-7-1"
d="m 40.767412,129.66988 c -2.218301,6.30764 -4.442554,12.41547 -4.868738,13.14656 -0.882803,1.51438 1.440916,3.15275 2.310309,2.80983 0.428003,-0.16884 12.908937,-3.7115 21.389603,-6.22235 -6.696977,-3.92647 -14.608653,-7.63903 -18.831174,-9.73404 z"
style="fill:#737373;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="ccccc" />
</g>
<g
id="g1888"
transform="matrix(-0.62140275,0.79247805,0.74299457,0.66171749,-43.410566,-180.47537)">
<path
sodipodi:nodetypes="ccsccc"
inkscape:connector-curvature="0"
id="path867-2"
d="m 127.44239,153.53297 c 0.0248,-0.83572 0.78535,-0.95789 0.85565,-0.2729 0.0703,0.68499 0.13616,1.19684 0.12315,1.59221 -0.0201,0.61048 -0.82518,0.87943 -0.90491,0.0152 -0.0582,-0.45454 -0.0497,-0.87357 -0.0739,-1.33447 z"
style="fill:#4e3b3a;fill-opacity:1;fill-rule:evenodd;stroke:#2f2828;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccsccc"
inkscape:connector-curvature="0"
id="path867-6-6"
d="m 134.84928,151.74452 c 0.11271,-0.82846 0.88195,-0.86978 0.87965,-0.18119 -0.002,0.68859 0.0189,1.40498 -0.0902,1.78521 -0.12806,0.44614 -0.81369,0.54941 -0.80186,-0.31843 -0.01,-0.45813 -0.0121,-0.82468 0.0124,-1.28557 z"
style="opacity:1;vector-effect:none;fill:#4e3b3a;fill-opacity:1;fill-rule:evenodd;stroke:#2f2828;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 28 KiB

320
public/images/avatars/4.svg Normal file
View File

@ -0,0 +1,320 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="250"
height="250"
viewBox="0 0 66.145832 66.145837"
version="1.1"
id="svg1435"
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
sodipodi:docname="4.svg">
<defs
id="defs1429">
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient1738"
id="radialGradient1740-1-7-7"
cx="56.455734"
cy="167.68628"
fx="56.455734"
fy="167.68628"
r="20.579618"
gradientTransform="matrix(1.2029851,0,0,0.16716418,-76.685677,15.668835)"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient1738">
<stop
style="stop-color:#838383;stop-opacity:1"
offset="0"
id="stop1734" />
<stop
style="stop-color:#bfbfbf;stop-opacity:0"
offset="1"
id="stop1736" />
</linearGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="198.59903"
inkscape:cy="135.78261"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
units="px"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1851"
inkscape:window-height="1016"
inkscape:window-x="0"
inkscape:window-y="1077"
inkscape:window-maximized="1" />
<metadata
id="metadata1432">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(46.223311,6.4966985)">
<g
id="g3290"
transform="matrix(-1,0,0,1,-26.300788,0)">
<path
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -1.336237,40.099935 c 0.38687,0.74696 -0.45728,2.06464 -0.74752,2.46457 -0.29035,0.39989 -2.45883,-0.2363 -2.76785,-0.40281 -0.30903,-0.16654 -1.34028,-2.43925 -1.33298,-2.81221 0.007,-0.37299 0.5296,-4.02793 2.7383,-4.94348 2.20867,-0.91553 4.70276,-0.8987 6.35445,0.33856 0.78355,0.58697 2.02669,2.21445 0.91376,3.12369 -0.42432,0.34657 -1.67383,-1.30415 -3.01047,-0.78604 -1.50144,0.58194 -1.95709,1.2474 -2.14769,3.01772 z"
id="path996-7-1-7-5-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<ellipse
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.789;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#radialGradient1740-1-7-7);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path1732-7-3-7"
cx="-8.770277"
cy="43.700001"
rx="24.756975"
ry="3.4401751" />
<path
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 8.623523,30.430195 c -0.7897,0.11417 -0.88059,1.96991 -1.72075,2.69284 -0.84014,0.72291 -2.44811,1.70186 -4.24089,0.93187 -1.79278,-0.76998 -3.16191,2.37317 -3.03531,2.89857 0.12653,0.52538 3.0747,0.13232 4.77531,-0.25765 1.70058,-0.38995 3.03307,-1.54875 3.66205,-2.72636 0.59064,-1.10595 0.5596,-3.53926 0.5596,-3.53926 z"
id="path1043-7-2-6-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="fill:#fffdfb;fill-opacity:0.461187;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -3.974517,37.705455 c 0.11503,-0.2149 0.17932,-0.47999 0.19333,-0.76423 0.007,-0.14887 -0.0355,-0.32119 -0.13596,-0.42332 -0.0471,-0.0544 -0.10498,-0.0913 -0.16304,-0.0909 -0.16509,-0.0163 -0.31046,0.0896 -0.40656,0.24359 -0.11911,0.18265 -0.18873,0.42143 -0.21528,0.67318 -0.0155,0.18035 0.0736,0.37436 0.19433,0.47991 0.12805,0.11854 0.30385,0.15867 0.41401,0.042 0.0486,-0.0434 0.0956,-0.10725 0.11938,-0.16002 z"
id="path867-4-7-4-4-3-7-2-6-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
style="vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill"
d="m -22.475037,40.322905 c 0.64456,-0.44148 1.41622,1.58211 2.3296,1.78958 0.91341,0.20748 2.5084,0.14896 3.58212,-2.01181 1.07373,-2.1608 3.30601,0.38953 3.40851,1.07237 0.10246,0.68283 -2.29127,2.36817 -3.73385,3.1566 -1.44257,0.78839 -2.89586,0.44558 -3.82057,-0.42624 -0.8684,-0.81872 -1.76581,-3.5805 -1.76581,-3.5805 z"
id="path1043-7-3-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc"
inkscape:transform-center-x="3.6660439"
inkscape:transform-center-y="9.8689215" />
<path
style="vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill"
d="m -12.503757,41.934745 c 0.0606,0.72139 1.91589,1.53506 2.51806,1.77174 0.60219,0.23666 2.6567,-0.93056 2.8983,-1.15837 0.24164,-0.22778 -0.10987,-2.37884 -0.36974,-2.6788 -0.25983,-0.29995 -3.32275,-3.10368 -6.46967,-3.18136 -3.14692,-0.0777 -5.99199,0.68573 -7.04928,2.18449 -0.50157,0.71106 -0.82781,2.40312 1.05992,2.80511 0.71966,0.15323 1.03755,-1.55963 2.91773,-1.54175 2.11203,0.0201 3.08259,0.42216 4.49468,1.79894 z"
id="path996-7-1-9-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc"
inkscape:transform-center-x="3.0593228"
inkscape:transform-center-y="-0.93584208" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -11.883327,13.356055 c 9.73145,6.13549 11.34731,15.1992 6.84823,22.20016 -3.99067,6.20983 -15.51853,7.60954 -22.362405,2.11329 -5.388725,-4.32762 -6.216045,-10.86741 -1.450033,-17.6802 4.642678,-6.63651 12.659588,-9.34723 16.964208,-6.63325 z"
id="path865-2-8-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssss" />
<path
style="fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -42.214449,8.923055 c -0.317513,-1.30292 0.41917,-3.17212 1.840787,-2.88035 0.841707,0.17278 36.022275,2.79728 37.002695,2.80661 1.34519,0.0128 2.49338,0.98584 2.04248,2.27248 -0.65085,1.10288 -29.82846,32.8883 -30.509192,33.77879 -0.680698,0.89051 -3.765592,1.55931 -3.787532,-0.50744 -0.02192,-2.06673 -5.823216,-33.52459 -6.589238,-35.47009 z"
id="path863-4-1-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csscscc" />
<path
style="fill:#ffddc2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -38.481181,17.812845 c 0.128237,0.65925 0.235171,1.15284 0.264546,1.52954 0.04537,0.58165 -0.866311,1.06982 -1.020628,0.23871 -0.09471,-0.43828 -0.203291,-0.99791 -0.269013,-1.61714 -0.0657,-0.61923 0.896878,-0.81034 1.025095,-0.15111 z"
id="path867-4-9-8-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csccc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -9.658637,40.354575 c 0.53534,0.78929 2.42737,0.955 3.02845,0.86467 0.60108,-0.0903 1.30761,-2.6586 1.3291,-3.06423 0.0215,-0.40564 -1.81922,-3.32677 -2.21319,-3.51424 -0.39402,-0.18743 -4.71817,-1.25411 -7.07029,0.54456 -2.35213,1.79869 -3.48488,4.50745 -3.23717,6.85701 0.11753,1.11469 0.57871,3.02041 2.23161,2.34816 0.63012,-0.25627 0.0198,-1.94424 1.40564,-3.05157 1.55677,-1.24386 2.55696,-1.7131 4.52585,-0.98436 z"
id="path996-6-8-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc"
inkscape:transform-center-x="3.7823505"
inkscape:transform-center-y="1.376162" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -23.292177,35.296735 c 0.81262,0.24021 0.57764,2.49159 1.33493,3.47303 0.75726,0.98147 2.2788,2.37144 4.307,1.67481 2.02824,-0.69667 2.42639,3.249 2.1992,3.86664 -0.22716,0.61763 -2.78105,-0.21401 -4.50526,-0.90525 -1.72419,-0.69124 -2.92308,-2.26257 -3.37654,-3.76539 -0.42584,-1.41129 0.0407,-4.34383 0.0407,-4.34383 z"
id="path1043-6-6-5-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -13.008277,36.590005 c -0.14097,0.22342 -0.35151,0.42724 -0.60392,0.59461 -0.1326,0.0869 -0.30986,0.14149 -0.45147,0.10322 -0.0723,-0.0143 -0.13403,-0.0473 -0.1613,-0.10243 -0.0947,-0.14452 -0.0676,-0.33752 0.0264,-0.51047 0.10935,-0.20995 0.29347,-0.40435 0.51038,-0.56556 0.15707,-0.1122 0.37684,-0.13464 0.53122,-0.0795 0.16958,0.0553 0.29088,0.1967 0.2374,0.36257 -0.0165,0.0686 -0.0518,0.14721 -0.0885,0.1979 z"
id="path867-4-7-4-4-9-9-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc"
inkscape:transform-center-x="7.1644962"
inkscape:transform-center-y="-2.016335" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 10.192913,42.964885 c -0.20949,-0.79096 -2.19187,-0.56717 -3.05401,-1.30588 -0.86214,-0.73868 -2.08208,-2.22169 -1.46401,-4.19308 0.61809,-1.97143 -2.8542,-2.3671 -3.39844,-2.14741 -0.54435,0.21932 0.18176,2.70563 0.78612,4.38428 0.60438,1.67863 1.98472,2.84817 3.30651,3.29243 1.2413,0.41724 3.82383,-0.0303 3.82383,-0.0303 z"
id="path1043-6-6-0-3-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc"
inkscape:transform-center-x="-2.5748918"
inkscape:transform-center-y="2.5150219" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -1.793017,39.488875 c 0.19988,0.93112 -1.2588,2.16201 -1.74201,2.52637 -0.4832,0.36437 -2.83537,-0.92476 -3.14423,-1.19243 -0.30883,-0.2677 -1.14629,-3.6139 -1.00831,-4.02477 0.13798,-0.41088 2.37052,-4.22926 5.30871,-4.64695 2.9382,-0.41769 5.68836,0.66637 7.21878,2.48136 0.72605,0.86111 1.78647,2.51825 0.15053,3.22452 -0.62365,0.26926 -1.42261,-1.34211 -3.18827,-1.12918 -1.98335,0.23921 -2.75483,0.85293 -3.5952,2.76108 z"
id="path996-6-5-6-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -3.910237,41.301545 c 0.0835,-0.36742 -2.03198,0.79392 -1.37096,0.30071 1.59314,-1.18859 3.36314,-3.97381 3.92702,-4.33104 0.23625,-0.57518 1.94616,-1.15156 2.97508,-0.91497 1.11683,0.19599 1.4187,2.4487 1.45393,3.03413 0.0659,0.37496 0.25553,0.9382 0.38279,1.08359 -0.13403,-0.0307 -0.74391,-0.24326 -0.79541,-0.71707 l -0.0876,0.003 c -0.007,10e-4 -0.014,0.002 -0.0212,0.004 -0.0236,0.002 -0.0477,0.002 -0.0721,-2.9e-4 l -0.0126,4e-5 c -2e-4,-7.5e-4 -4e-4,-9e-4 -0.002,-0.002 -0.26152,-0.037 -0.51538,-0.36274 -0.59995,-0.76977 -0.0464,-0.22486 -0.0347,-0.4466 0.0321,-0.61474 l 4.8e-4,2e-4 c 0.0646,-0.16194 0.17553,-0.26115 0.30912,-0.27658 0.0259,-0.002 0.0523,-0.002 0.0791,0.002 l 0.003,-4.1e-4 c -0.10762,-0.22389 -0.37332,-0.77023 -0.63678,-0.78472 0.0116,0.0335 0.0187,0.0683 0.0192,0.10407 l -0.0313,0.35677 c 5.9e-4,0.008 0.002,0.015 0.003,0.0231 -6.6e-4,0.026 -0.003,0.052 -0.0101,0.0779 l -0.002,0.0113 c -7.1e-4,2.8e-4 -5.4e-4,10e-5 -0.002,6.1e-4 -0.0748,0.27102 -0.47813,0.48185 -0.95293,0.49808 -0.47177,0.0158 -0.87621,-0.16533 -0.95816,-0.42893 -0.01,-0.0308 -0.0149,-0.0622 -0.0148,-0.0938 1.5e-4,-0.0288 0.004,-0.0571 0.0125,-0.0853 l 1.6e-4,-0.0612 c -0.20201,0.0976 -0.38262,0.21665 -0.54883,0.35809 l 0.1387,0.10056 c 0.009,0.003 0.015,0.007 0.0224,0.0114 0.0251,0.0154 0.0483,0.0339 0.0691,0.0551 l 0.009,0.007 c 3e-5,8.6e-4 -3.4e-4,10e-4 -3.9e-4,0.002 0.21356,0.22553 0.16105,0.71935 -0.12404,1.16659 -0.32173,0.50421 -0.82291,0.77076 -1.11942,0.59533 -0.0272,-0.0167 -0.052,-0.0369 -0.0744,-0.0606 l -0.0514,-0.0308 c 0.10791,0.86317 -1.05768,1.67219 -1.4928,1.99329 -0.20598,0.15194 -0.21267,0.37107 -0.69631,0.38003 -0.19355,0.004 0.14709,-0.59444 0.23811,-0.99474 z"
id="path1092-6-8-2-4-4-8-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cscccccccccccccccccccccccccccccccccccccccssc" />
<path
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -3.124557,35.375405 c 0.22835,-0.13474 0.43795,-0.33966 0.61191,-0.58652 0.0904,-0.12967 0.14919,-0.30435 0.11351,-0.44564 -0.0128,-0.0721 -0.0448,-0.13398 -0.0998,-0.16215 -0.14364,-0.097 -0.33869,-0.0742 -0.51497,0.0153 -0.21388,0.104 -0.41362,0.2826 -0.58071,0.49429 -0.11635,0.15343 -0.14362,0.37095 -0.0915,0.52521 0.0522,0.16937 0.19205,0.29273 0.36036,0.24316 0.0695,-0.0148 0.14944,-0.0483 0.2013,-0.0836 z"
id="path867-4-7-4-4-9-8-5-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<g
transform="matrix(0.84831505,-0.59444154,0.76250294,0.65439063,-170.76545,-35.342733)"
id="g1928-4-5-1"
style="stroke-width:0.99583">
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-9-9-8"
d="m 50.943081,151.14101 c -0.400341,-0.25283 0.512053,-1.42428 0.811945,-1.68151 0.299889,-0.25723 -0.191703,1.92451 -0.811945,1.68151 z"
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.26348px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:transform-center-y="-0.29778724"
inkscape:transform-center-x="0.83927927"
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-0-0-8-9"
d="m 51.83521,151.4665 c -0.414013,-0.35768 0.551389,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.22382,2.76306 -0.867104,2.42223 z"
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.26348px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:transform-center-y="0.70487957"
inkscape:transform-center-x="0.84080235"
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-7-9-4-6"
d="m 52.816217,151.19387 c -0.414012,-0.35768 0.551389,-2.0495 0.867105,-2.42224 0.315714,-0.37273 -0.223821,2.76306 -0.867105,2.42224 z"
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.26348px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
transform="matrix(0.84831505,-0.59444154,0.76250294,0.65439063,-170.4175,-35.655743)"
id="g1923-1-8-4"
style="stroke-width:0.99583">
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-8-7-1-3"
d="m 59.278028,149.60677 c -0.414013,-0.35768 0.551388,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.223821,2.76305 -0.867104,2.42223 z"
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.26348px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-6-7-0-3"
d="m 60.167005,149.36159 c -0.414013,-0.35768 0.551389,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.22382,2.76306 -0.867104,2.42223 z"
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.26348px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-88-1-3-3"
d="m 61.157788,148.82481 c -0.348754,-0.27043 0.457468,-1.54143 0.721628,-1.82117 0.26416,-0.27974 -0.180335,2.07953 -0.721628,1.82117 z"
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.26348px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -2.980557,41.467355 c -0.25634,-0.52066 -1.8692,-0.008 -2.62197,-0.74049 -1.81292,-1.76322 -3.67383,-2.12815 -4.30219,-2.04002 -0.62836,0.088 -2.10754,-0.2433 -3.70865,1.35588 -1.05433,0.93754 -1.89322,2.22618 -2.07056,2.99314 -0.0299,0.62285 -0.25766,1.3284 -0.47598,1.44734 0.16292,-0.004 1.33361,-0.0754 1.50385,-0.68991 l 0.10113,0.0276 c 0.01,0.004 0.0155,0.008 0.0238,0.0101 0.0268,0.0102 0.0548,0.016 0.0838,0.0188 l 0.0139,0.004 c 4.7e-4,-6.5e-4 8.6e-4,-10e-4 0.002,-10e-4 0.31249,0.0224 0.68339,-0.34031 0.87651,-0.85714 0.10624,-0.28559 0.14439,-0.58294 0.10546,-0.82429 l -5.9e-4,1.4e-4 c -0.0374,-0.23248 -0.14312,-0.3944 -0.29473,-0.4514 -0.0295,-0.0103 -0.0603,-0.0172 -0.0925,-0.0196 l -0.005,-10e-4 c 0.17726,-0.26757 0.38868,-0.50794 0.65545,-0.69121 0.007,0.0473 0.0193,0.0933 0.0392,0.13638 l 0.2357,0.40635 c 0.003,0.009 0.007,0.0194 0.0106,0.0288 0.0155,0.0307 0.0336,0.0597 0.0551,0.0865 l 0.008,0.0127 c 8.8e-4,-1e-4 5.6e-4,-2.2e-4 0.002,-6.2e-4 0.23236,0.27655 0.77344,0.27418 1.27831,-0.006 0.50147,-0.27835 0.82064,-0.74929 0.75606,-1.11579 -0.007,-0.043 -0.02,-0.0836 -0.0379,-0.12136 -0.0172,-0.0338 -0.037,-0.0654 -0.0613,-0.0941 l -0.035,-0.073 c 0.26646,-0.0106 0.52282,0.017 0.77679,0.0818 l -0.0876,0.20748 c -0.006,0.009 -0.0115,0.0186 -0.0174,0.0275 -0.0175,0.0342 -0.031,0.0708 -0.0407,0.10928 l -0.005,0.0148 c 4.5e-4,9.9e-4 8.7e-4,7.6e-4 6.1e-4,0.002 -0.0946,0.40383 0.24138,0.96042 0.79355,1.31494 0.62291,0.3994 1.29783,0.40197 1.50748,0.006 0.0189,-0.037 0.0334,-0.0769 0.0431,-0.11928 l 0.0363,-0.0691 c 0.37872,1.09872 2.68542,1.23829 3.32246,1.3476 0.3015,0.0518 -0.21102,0.45113 0.2661,-0.24548 0,0 0.26588,-1.08813 0.55441,-1.19121 z"
id="path1092-6-8-2-4-0-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csccccccccccccccccccccccccccccccccccccccccsc"
inkscape:transform-center-x="4.356578"
inkscape:transform-center-y="-0.92815786" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -3.919077,42.542355 a 0.79931514,1.3179963 83.536518 0 1 -1.21333,0.9455 0.79931514,1.3179963 83.536518 0 1 -1.40508,-0.64162 0.79931514,1.3179963 83.536518 0 1 1.21334,-0.9455 0.79931514,1.3179963 83.536518 0 1 1.40507,0.64162 z"
id="path2118-0"
inkscape:connector-curvature="0" />
<ellipse
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.200002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path2118-4-4"
cx="-33.942436"
cy="23.346323"
rx="1.3103164"
ry="0.80401891"
transform="matrix(0.61717735,-0.78682407,0.79104128,0.61176277,0,0)" />
<path
style="vector-effect:none;fill:#91332b;fill-opacity:1;fill-rule:evenodd;stroke:#5d0000;stroke-width:0.365;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -6.601217,31.501055 c -0.70178,0.002 -1.03703,-0.72268 -0.86575,-1.3501 0.1469,-1.13876 2.35356,-1.54555 1.87841,0.39677 -0.49365,1.10411 -1.01266,0.95333 -1.01266,0.95333 z"
id="path991-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc"
inkscape:transform-center-x="1.4546864"
inkscape:transform-center-y="0.24192002" />
<g
id="g1182-9-2-0-9-7"
transform="rotate(-31.602307,-184.54,210.37411)"
style="opacity:0.7">
<path
inkscape:connector-curvature="0"
id="path1176-2-9-5-2-5"
d="m 40.726561,129.67568 c 1.767228,-2.45002 18.796875,-6.0648 19.841146,-5.30168 1.044271,0.76312 0.48472,14.54623 -0.8407,14.98803 -1.325419,0.44181 -19.643074,-6.71419 -19.000446,-9.68635 z"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cscc" />
<path
inkscape:connector-curvature="0"
id="path903-5-2-0-3-9-2-4"
d="m 60.726494,124.26543 c 0.404414,5.02307 0.435388,9.41405 -1.014863,15.08667 8.711791,-2.57943 13.404263,-4.12319 13.879861,-4.38156 0.940559,-0.51094 -0.308607,-1.55065 -1.256211,-2.16331 -0.326401,-0.21104 -5.870691,-4.30227 -11.608787,-8.5418 z"
style="fill:#f1680d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
sodipodi:nodetypes="ccccc" />
<path
inkscape:connector-curvature="0"
id="path920-9-6-9-4-4-8"
d="m 46.538701,114.1089 c -0.344308,0.0228 -0.660027,0.26659 -0.852044,0.88022 -0.157516,0.91528 -2.552423,7.97512 -4.942209,14.76753 4.418276,-1.57951 11.65357,-4.00063 20.167587,-5.35385 -6.462069,-4.77428 -13.248565,-9.79477 -13.562741,-10.01471 -0.257937,-0.18058 -0.542798,-0.2969 -0.810593,-0.27919 z"
style="fill:#211f20;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path863-7-3-8-0-6-7-1"
d="m 40.767412,129.66988 c -2.218301,6.30764 -4.442554,12.41547 -4.868738,13.14656 -0.882803,1.51438 1.440916,3.15275 2.310309,2.80983 0.428003,-0.16884 12.908937,-3.7115 21.389603,-6.22235 -6.696977,-3.92647 -14.608653,-7.63903 -18.831174,-9.73404 z"
style="fill:#737373;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="ccccc" />
</g>
<g
id="g1888"
transform="matrix(-0.62140275,0.79247805,0.74299457,0.66171749,-43.410566,-180.47537)">
<path
sodipodi:nodetypes="ccsccc"
inkscape:connector-curvature="0"
id="path867-2"
d="m 127.44239,153.53297 c 0.0248,-0.83572 0.78535,-0.95789 0.85565,-0.2729 0.0703,0.68499 0.13616,1.19684 0.12315,1.59221 -0.0201,0.61048 -0.82518,0.87943 -0.90491,0.0152 -0.0582,-0.45454 -0.0497,-0.87357 -0.0739,-1.33447 z"
style="fill:#4e3b3a;fill-opacity:1;fill-rule:evenodd;stroke:#2f2828;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccsccc"
inkscape:connector-curvature="0"
id="path867-6-6"
d="m 134.84928,151.74452 c 0.11271,-0.82846 0.88195,-0.86978 0.87965,-0.18119 -0.002,0.68859 0.0189,1.40498 -0.0902,1.78521 -0.12806,0.44614 -0.81369,0.54941 -0.80186,-0.31843 -0.01,-0.45813 -0.0121,-0.82468 0.0124,-1.28557 z"
style="opacity:1;vector-effect:none;fill:#4e3b3a;fill-opacity:1;fill-rule:evenodd;stroke:#2f2828;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 28 KiB

282
public/images/avatars/5.svg Normal file
View File

@ -0,0 +1,282 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="250"
height="250"
viewBox="0 0 66.145832 66.145837"
version="1.1"
id="svg1435"
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
sodipodi:docname="5.svg">
<defs
id="defs1429">
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient1738"
id="radialGradient1740-1-7-6"
cx="56.455734"
cy="167.68628"
fx="56.455734"
fy="167.68628"
r="20.579618"
gradientTransform="matrix(1.2029851,0,0,0.16716418,-59.975,5.17169)"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient1738">
<stop
style="stop-color:#838383;stop-opacity:1"
offset="0"
id="stop1734" />
<stop
style="stop-color:#bfbfbf;stop-opacity:0"
offset="1"
id="stop1736" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient2936"
id="radialGradient1740-1-7-3-8"
cx="56.455723"
cy="167.68628"
fx="56.455723"
fy="167.68628"
r="20.579618"
gradientTransform="matrix(0.50324603,-0.00448318,0.00318307,0.29116024,-18.548547,-30.429887)"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2936">
<stop
style="stop-color:#00fffb;stop-opacity:1"
offset="0"
id="stop2932" />
<stop
style="stop-color:#00ffe2;stop-opacity:0"
offset="1"
id="stop2934" />
</linearGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="198.59903"
inkscape:cy="135.78261"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
units="px"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1851"
inkscape:window-height="1016"
inkscape:window-x="0"
inkscape:window-y="1077"
inkscape:window-maximized="1" />
<metadata
id="metadata1432">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(46.223311,6.4966985)">
<g
id="g3503"
transform="translate(-21.450063,18.239461)">
<ellipse
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.789;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#radialGradient1740-1-7-6);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path1732-7-3-8"
cx="7.9404058"
cy="33.202824"
rx="24.756975"
ry="3.4401751" />
<path
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 23.95216,25.2345 c -0.66521,0.0317 -0.90806,1.86675 -1.67005,2.49827 -0.76198,0.6315 -2.18385,1.43793 -3.60114,0.48685 -1.41731,-0.95108 -2.83639,2.03121 -2.77881,2.56654 0.0575,0.53532 2.53797,0.4501 3.98348,0.23869 1.44552,-0.21139 2.65515,-1.22512 3.28304,-2.33046 0.58964,-1.03807 0.78349,-3.45987 0.78349,-3.45987 z"
id="path1043-7-2-6-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="fill:#fffdfb;fill-opacity:0.461187;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 10.00912,26.60762 c 0.21864,-0.10732 0.42573,-0.28483 0.60375,-0.50683 0.0926,-0.1167 0.15972,-0.28064 0.13871,-0.42154 -0.006,-0.0713 -0.031,-0.13477 -0.078,-0.16805 -0.12335,-0.10887 -0.30249,-0.10732 -0.47016,-0.0383 -0.20298,0.0789 -0.39905,0.2319 -0.56799,0.42042 -0.11823,0.13706 -0.16025,0.34577 -0.12491,0.50121 0.0336,0.17017 0.15161,0.30452 0.30869,0.27391 0.0646,-0.007 0.13993,-0.0314 0.18995,-0.0604 z"
id="path867-4-7-4-4-3-7-2-6-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -9.5267,29.45049 c 0.57376,-0.48093 1.84501,0.74693 2.84882,0.65416 1.00382,-0.0927 2.66035,-0.55215 3.28975,-2.36061 0.62942,-1.80848 3.55053,-0.59122 3.81419,-0.13548 0.26364,0.45569 -1.85666,2.27413 -3.18649,3.2094 -1.32982,0.93527 -2.92988,1.0739 -4.09766,0.70013 -1.09666,-0.35101 -2.66861,-2.0676 -2.66861,-2.0676 z"
id="path1043-7-3-66"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="fill:#fffdfb;fill-opacity:0.461187;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -0.69958,26.83091 c -0.12162,0.21101 -0.31245,0.40591 -0.54576,0.5688 -0.12266,0.0846 -0.29048,0.14101 -0.42981,0.11048 -0.0707,-0.0112 -0.1324,-0.0398 -0.16246,-0.089 -0.10077,-0.13007 -0.087,-0.30896 -0.007,-0.47166 0.0922,-0.19731 0.25785,-0.3828 0.45717,-0.53886 0.14461,-0.10884 0.35565,-0.13694 0.50839,-0.0914 0.16756,0.0448 0.29379,0.17148 0.2527,0.32628 -0.0115,0.0639 -0.0407,0.13752 -0.0729,0.18552 z"
id="path867-4-7-4-4-3-7-4-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="M 22.47509,6.06118 C 24.79506,17.32897 19.38007,24.77475 11.21486,26.38241 3.97236,27.80839 -5.02515,20.46704 -5.80501,11.72408 -6.41908,4.84007 -2.27735,-0.28822 5.93716,-1.57303 c 8.00195,-1.25157 15.51172,2.65 16.53793,7.63421 z"
id="path865-2-8-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssss" />
<path
style="fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -1.32566,-18.52923 c 0.44598,-1.16728 2.11592,-2.05512 3.18298,-0.90247 0.63176,0.68248 29.57877,25.82862 30.42077,26.48249 1.15526,0.89713 1.60938,2.37015 0.50844,3.01835 -1.1721,0.38118 -43.95615,4.49048 -45.03666,4.69581 -1.08048,0.20538 -4.11576,-1.33884 -2.9921,-2.87253 1.12368,-1.53367 13.50287,-28.48604 13.91657,-30.42165 z"
id="path863-4-1-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csscscc" />
<g
id="g1182-9-2-6"
transform="matrix(1.0255649,0.18019794,-0.02159692,0.97127763,-43.10045,-136.83864)"
style="opacity:0.7">
<path
inkscape:connector-curvature="0"
id="path1176-2-9-2"
d="m 40.726561,129.67568 c 1.767228,-2.45002 18.796875,-6.0648 19.841146,-5.30168 1.044271,0.76312 0.48472,14.54623 -0.8407,14.98803 -1.325419,0.44181 -19.643074,-6.71419 -19.000446,-9.68635 z"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cscc" />
<path
inkscape:connector-curvature="0"
id="path903-5-2-0-3-6"
d="m 60.726494,124.26543 c 0.404414,5.02307 0.435388,9.41405 -1.014863,15.08667 8.711791,-2.57943 13.404263,-4.12319 13.879861,-4.38156 0.940559,-0.51094 -0.308607,-1.55065 -1.256211,-2.16331 -0.326401,-0.21104 -5.870691,-4.30227 -11.608787,-8.5418 z"
style="fill:#f1680d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
sodipodi:nodetypes="ccccc" />
<path
inkscape:connector-curvature="0"
id="path920-9-6-9-7"
d="m 46.538701,114.1089 c -0.344308,0.0228 -0.660027,0.26659 -0.852044,0.88022 -0.157516,0.91528 -2.552423,7.97512 -4.942209,14.76753 4.418276,-1.57951 11.65357,-4.00063 20.167587,-5.35385 -6.462069,-4.77428 -13.248565,-9.79477 -13.562741,-10.01471 -0.257937,-0.18058 -0.542798,-0.2969 -0.810593,-0.27919 z"
style="fill:#211f20;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path863-7-3-8-0-5"
d="m 40.767412,129.66988 c -2.218301,6.30764 -4.442554,12.41547 -4.868738,13.14656 -0.882803,1.51438 1.440916,3.15275 2.310309,2.80983 0.428003,-0.16884 12.908937,-3.7115 21.389603,-6.22235 -6.696977,-3.92647 -14.608653,-7.63903 -18.831174,-9.73404 z"
style="fill:#737373;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="ccccc" />
</g>
<path
style="fill:#ffddc2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -3.01473,-9.53085 c -0.25367,0.56923 -0.43416,1.00262 -0.61704,1.29891 -0.28237,0.4575 -1.34,0.21469 -1.01385,-0.49808 0.16047,-0.38467 0.37605,-0.8677 0.66161,-1.36625 0.28558,-0.49854 1.22295,-0.004 0.96928,0.56542 z"
id="path867-4-9-8-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csccc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 4.57697,29.25321 c 0.29501,0.90429 2.16609,1.24696 2.76417,1.32293 0.59805,0.076 1.97375,-2.20317 2.10507,-2.58755 C 9.5775,27.60419 8.6197,24.29549 8.29508,24.00841 7.97042,23.72136 4.13684,21.52368 1.40162,22.61663 c -2.73523,1.09297 -4.55588,3.39176 -4.96151,5.71905 -0.19242,1.10412 -0.27316,3.06229 1.48729,2.86346 0.67111,-0.0758 0.55004,-1.86492 2.17463,-2.55464 1.82492,-0.77474 2.79582,-0.62576 4.47494,0.60871 z"
id="path996-6-8-98"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -11.06346,30.04324 c 0.67675,-0.45775 2.00538,1.00994 3.13362,1.01925 1.12825,0.009 3.44924,-0.51346 4.28698,-2.40171 0.83774,-1.8883 2.35161,0.22769 2.61218,0.74967 0.26058,0.52197 -1.02106,1.98532 -2.57621,2.8521 -1.55516,0.86677 -3.35287,0.84192 -4.62951,0.30981 -1.1989,-0.49971 -2.82706,-2.52912 -2.82706,-2.52912 z"
id="path1043-6-6-5-72"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 0.82656,24.44505 c -0.16114,0.20897 -0.38897,0.3919 -0.65467,0.53456 -0.13944,0.074 -0.31983,0.11153 -0.45591,0.0601 -0.07,-0.0211 -0.12772,-0.0597 -0.14923,-0.11713 -0.0793,-0.15273 -0.0337,-0.34219 0.076,-0.50541 0.12853,-0.19857 0.32945,-0.37457 0.55942,-0.51452 0.1661,-0.0968 0.38531,-0.0984 0.53234,-0.029 0.16203,0.071 0.26795,0.22315 0.19888,0.38313 -0.0229,0.0667 -0.0656,0.14157 -0.10682,0.18855 z"
id="path867-4-7-4-4-9-9-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 26.51143,27.92114 c -0.79998,-0.16601 -1.47066,1.69666 -2.51061,2.13432 -1.03993,0.43769 -2.90323,0.862 -4.39609,-0.56582 -1.49288,-1.42785 -3.37261,1.48392 -3.4151,2.06578 -0.0425,0.58183 2.50144,1.04358 4.26937,1.25386 1.76794,0.21026 3.42115,-0.49635 4.39952,-1.47397 0.91881,-0.91808 1.65291,-3.41417 1.65291,-3.41417 z"
id="path1043-6-6-0-3-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 10.7199,29.31566 c -0.38501,0.86979 -2.28115,1.02138 -2.88384,1.03645 -0.60268,0.0151 -1.74071,-2.39157 -1.83246,-2.78727 -0.0917,-0.39571 1.19596,-3.59051 1.54795,-3.84327 0.35205,-0.25273 4.38831,-2.05124 6.99891,-0.68713 2.6106,1.36411 4.18932,3.83532 4.35737,6.19171 0.0797,1.11793 -0.0381,3.07421 -1.76938,2.69827 -0.66001,-0.14329 -0.35853,-1.911 -1.905,-2.76156 -1.73716,-0.95542 -2.71815,-0.90544 -4.51355,0.1528 z"
id="path996-6-5-6-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="M 8.08857,29.53483 C 8.4019,29.25749 5.82355,29.01312 6.71493,28.97318 c 2.14829,-0.0962 5.49858,-1.51022 6.21721,-1.48763 0.66641,0.1099 2.36967,0.53811 3.05484,1.13802 0.82895,0.85105 0.83383,2.02217 0.89792,2.64974 0.0877,0.39759 0.43069,0.84401 0.57402,0.98791 -0.14548,-0.0195 -0.92467,-0.0455 -1.00126,-0.55111 l -0.0941,0.0118 c -0.008,0.002 -0.0149,0.004 -0.0226,0.006 -0.0252,0.005 -0.0512,0.007 -0.0775,0.007 l -0.0129,0.002 c -2.6e-4,-7.9e-4 -5.2e-4,-0.001 -0.002,-0.002 -0.28284,-0.0135 -0.57038,-0.33903 -0.67954,-0.76931 -0.06,-0.23773 -0.0573,-0.47796 0.007,-0.66596 l 5.3e-4,1.6e-4 c 0.0622,-0.1811 0.17703,-0.29925 0.31996,-0.32939 0.0277,-0.005 0.0562,-0.008 0.0852,-0.006 l 0.004,-5.3e-4 c -0.12574,-0.23052 -0.28555,-0.44277 -0.50196,-0.61521 -0.0121,0.037 -0.0289,0.0722 -0.052,0.10451 l -0.26149,0.29948 c -0.005,0.007 -0.008,0.0147 -0.0131,0.0219 -0.0177,0.0228 -0.0374,0.0441 -0.0601,0.0632 l -0.009,0.009 c -7.9e-4,-1.8e-4 -5.3e-4,-2.3e-4 -0.002,-5.3e-4 -0.24244,0.19659 -0.72706,0.14054 -1.14495,-0.13244 -0.41499,-0.27154 -0.64276,-0.67799 -0.53961,-0.96288 0.0118,-0.0335 0.0282,-0.0645 0.049,-0.0927 0.0195,-0.0251 0.0413,-0.0483 0.0667,-0.0687 l 0.0404,-0.0545 c -0.23747,-0.0352 -0.47068,-0.0383 -0.70628,-0.0127 l 0.0528,0.17372 c 0.005,0.008 0.008,0.0157 0.0118,0.0238 0.0114,0.0289 0.0191,0.0594 0.023,0.091 l 0.003,0.0119 c -5.3e-4,8e-4 -10e-4,8e-4 -0.002,0.002 0.0348,0.33056 -0.33508,0.73947 -0.87378,0.96604 -0.60764,0.25518 -1.21283,0.18962 -1.35172,-0.14644 -0.0124,-0.0314 -0.0204,-0.0645 -0.024,-0.0992 l -0.0239,-0.0586 c -0.47527,0.83566 -2.00716,0.85196 -2.59159,0.87508 -0.27661,0.0109 -0.4265,0.2024 -0.84718,-0.0824 -0.16837,-0.11397 0.51714,-0.44149 0.85851,-0.74365 z"
id="path1092-6-8-2-4-4-8-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cscccccccccccccccccccccccccccccccccccccccssc" />
<path
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 12.05959,25.2133 c 0.26286,0.0232 0.55176,-0.0213 0.83656,-0.12041 0.14884,-0.0526 0.29854,-0.16006 0.3527,-0.29509 0.0319,-0.0658 0.0425,-0.13442 0.0147,-0.18914 -0.0588,-0.16174 -0.22919,-0.25633 -0.42362,-0.28596 -0.23318,-0.0397 -0.49872,-0.0108 -0.75737,0.0638 -0.18367,0.0568 -0.33312,0.21718 -0.38156,0.37234 -0.0573,0.16735 -0.017,0.3483 0.14757,0.40567 0.0647,0.0283 0.14863,0.0475 0.21112,0.0489 z"
id="path867-4-7-4-4-9-8-5-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<ellipse
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.584;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#radialGradient1740-1-7-3-8);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264608px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path1732-7-3-9-2"
cx="10.396335"
cy="18.140615"
rx="11.448589"
ry="5.9922585"
transform="matrix(0.99646249,-0.08403867,0.10331835,0.99464834,0,0)" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="M 9.05561,29.08123 C 8.80229,28.66515 7.36974,29.09123 6.65977,28.5097 4.94994,27.10914 3.25632,26.83257 2.69346,26.90901 c -0.56287,0.0763 -1.9108,-0.17662 -3.28652,1.12273 -0.9108,0.76281 -1.03415,1.92743 -1.1614,2.54529 -0.12745,0.38668 -0.5139,0.7961 -0.67105,0.92476 0.14671,-0.005 0.92452,0.0483 1.05188,-0.44698 l 0.0924,0.0212 c 0.008,0.003 0.0144,0.006 0.0219,0.008 0.0246,0.008 0.0502,0.0123 0.0764,0.0143 l 0.0127,0.003 c 4e-4,-5.3e-4 7.4e-4,-0.001 0.002,-0.001 0.28275,0.0152 0.60177,-0.27957 0.75389,-0.69661 0.0837,-0.23043 0.10541,-0.4697 0.06,-0.66329 l -5.3e-4,1.1e-4 c -0.0436,-0.18646 -0.14584,-0.31562 -0.28498,-0.36006 -0.027,-0.008 -0.0551,-0.0133 -0.0842,-0.0149 l -0.004,-10e-4 c 0.14841,-0.21661 0.32887,-0.4116 0.56163,-0.56126 0.008,0.038 0.0214,0.0748 0.0412,0.10923 l 0.22985,0.32441 c 0.004,0.007 0.007,0.0155 0.0108,0.0231 0.0153,0.0245 0.0328,0.0477 0.0534,0.069 l 0.008,0.0102 c 7.9e-4,-9e-5 5e-4,-1.8e-4 0.002,-5.3e-4 0.22131,0.22012 0.70911,0.21339 1.15247,-0.0159 0.44035,-0.22816 0.70808,-0.60947 0.63428,-0.90335 -0.008,-0.0345 -0.0216,-0.067 -0.0393,-0.0972 -0.0169,-0.027 -0.0362,-0.0522 -0.0594,-0.0751 l -0.0347,-0.0583 c 0.23981,-0.0109 0.47215,0.009 0.70394,0.0588 l -0.0701,0.16748 c -0.005,0.007 -0.01,0.0148 -0.0142,0.0225 -0.0142,0.0276 -0.025,0.0572 -0.032,0.0882 l -0.004,0.0116 c 4.2e-4,7.9e-4 10e-4,7.9e-4 10e-4,0.002 -0.0681,0.32534 0.25854,0.76957 0.77155,1.04949 0.57869,0.31535 1.18741,0.31137 1.35958,-0.009 0.0155,-0.0299 0.0268,-0.0621 0.0339,-0.0962 l 0.0297,-0.0559 c 0.38828,0.87946 2.47427,0.97095 3.05335,1.05308 0.27409,0.0389 -0.17108,0.36438 0.2295,-0.19966 0,0 0.19336,-0.87674 0.44922,-0.96214 z"
id="path1092-6-8-2-4-0-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csccccccccccccccccccccccccccccccccccccccccsc" />
<ellipse
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path2118-1"
cx="10.524682"
cy="28.891661"
rx="1.3079523"
ry="0.79874945"
transform="rotate(7.6759953)" />
<ellipse
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path2118-4-49"
cx="0.47622034"
cy="31.527174"
rx="1.3079523"
ry="0.79874945"
transform="rotate(-16.263776)" />
<path
style="fill:#4e3b3a;fill-opacity:1;fill-rule:evenodd;stroke:#2f2828;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 8.68593,14.56459 c 0.0248,-0.83143 0.78535,-0.82216 0.85565,-0.12503 0.0703,0.69714 0.13616,1.22038 0.12315,1.6135 -0.0201,0.607 -0.82519,0.73682 -0.90491,-0.14119 -0.0582,-0.46459 -0.0497,-0.88216 -0.0739,-1.34724 z"
id="path867-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccc" />
<path
style="vector-effect:none;fill:#4e3b3a;fill-opacity:1;fill-rule:evenodd;stroke:#2f2828;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 16.09281,14.05618 c 0.11272,-0.80898 0.88195,-0.71737 0.87966,-0.0292 -0.002,0.68824 0.0189,1.40824 -0.0902,1.76962 -0.12806,0.42401 -0.81369,0.40879 -0.80186,-0.45701 -0.01,-0.45985 -0.0121,-0.82677 0.0124,-1.28342 z"
id="path867-6-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccc" />
<path
style="vector-effect:none;fill:#91332b;fill-opacity:1;fill-rule:evenodd;stroke:#5d0000;stroke-width:0.365;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 12.99867,23.57243 c -0.89676,0.005 -1.32514,-1.54391 -1.10628,-2.88432 0.18771,-2.43282 3.00743,-3.30187 2.40027,0.84765 -0.63079,2.3588 -1.29399,2.03667 -1.29399,2.03667 z"
id="path991-3-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc"
inkscape:transform-center-x="1.8588309"
inkscape:transform-center-y="0.51682867" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

282
public/images/avatars/6.svg Normal file
View File

@ -0,0 +1,282 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="250"
height="250"
viewBox="0 0 66.145832 66.145837"
version="1.1"
id="svg1435"
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
sodipodi:docname="6.svg">
<defs
id="defs1429">
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient1738"
id="radialGradient1740-1-7-6"
cx="56.455734"
cy="167.68628"
fx="56.455734"
fy="167.68628"
r="20.579618"
gradientTransform="matrix(1.2029851,0,0,0.16716418,-59.975,5.17169)"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient1738">
<stop
style="stop-color:#838383;stop-opacity:1"
offset="0"
id="stop1734" />
<stop
style="stop-color:#bfbfbf;stop-opacity:0"
offset="1"
id="stop1736" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient2936"
id="radialGradient1740-1-7-3-8"
cx="56.455723"
cy="167.68628"
fx="56.455723"
fy="167.68628"
r="20.579618"
gradientTransform="matrix(0.50324603,-0.00448318,0.00318307,0.29116024,-18.548547,-30.429887)"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2936">
<stop
style="stop-color:#00fffb;stop-opacity:1"
offset="0"
id="stop2932" />
<stop
style="stop-color:#00ffe2;stop-opacity:0"
offset="1"
id="stop2934" />
</linearGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="198.59903"
inkscape:cy="135.78261"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
units="px"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1851"
inkscape:window-height="1016"
inkscape:window-x="0"
inkscape:window-y="1077"
inkscape:window-maximized="1" />
<metadata
id="metadata1432">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(46.223311,6.4966985)">
<g
id="g3503"
transform="matrix(-1,0,0,1,-4.8507263,18.239461)">
<ellipse
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.789;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#radialGradient1740-1-7-6);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path1732-7-3-8"
cx="7.9404058"
cy="33.202824"
rx="24.756975"
ry="3.4401751" />
<path
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 23.95216,25.2345 c -0.66521,0.0317 -0.90806,1.86675 -1.67005,2.49827 -0.76198,0.6315 -2.18385,1.43793 -3.60114,0.48685 -1.41731,-0.95108 -2.83639,2.03121 -2.77881,2.56654 0.0575,0.53532 2.53797,0.4501 3.98348,0.23869 1.44552,-0.21139 2.65515,-1.22512 3.28304,-2.33046 0.58964,-1.03807 0.78349,-3.45987 0.78349,-3.45987 z"
id="path1043-7-2-6-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="fill:#fffdfb;fill-opacity:0.461187;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 10.00912,26.60762 c 0.21864,-0.10732 0.42573,-0.28483 0.60375,-0.50683 0.0926,-0.1167 0.15972,-0.28064 0.13871,-0.42154 -0.006,-0.0713 -0.031,-0.13477 -0.078,-0.16805 -0.12335,-0.10887 -0.30249,-0.10732 -0.47016,-0.0383 -0.20298,0.0789 -0.39905,0.2319 -0.56799,0.42042 -0.11823,0.13706 -0.16025,0.34577 -0.12491,0.50121 0.0336,0.17017 0.15161,0.30452 0.30869,0.27391 0.0646,-0.007 0.13993,-0.0314 0.18995,-0.0604 z"
id="path867-4-7-4-4-3-7-2-6-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -9.5267,29.45049 c 0.57376,-0.48093 1.84501,0.74693 2.84882,0.65416 1.00382,-0.0927 2.66035,-0.55215 3.28975,-2.36061 0.62942,-1.80848 3.55053,-0.59122 3.81419,-0.13548 0.26364,0.45569 -1.85666,2.27413 -3.18649,3.2094 -1.32982,0.93527 -2.92988,1.0739 -4.09766,0.70013 -1.09666,-0.35101 -2.66861,-2.0676 -2.66861,-2.0676 z"
id="path1043-7-3-66"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="fill:#fffdfb;fill-opacity:0.461187;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -0.69958,26.83091 c -0.12162,0.21101 -0.31245,0.40591 -0.54576,0.5688 -0.12266,0.0846 -0.29048,0.14101 -0.42981,0.11048 -0.0707,-0.0112 -0.1324,-0.0398 -0.16246,-0.089 -0.10077,-0.13007 -0.087,-0.30896 -0.007,-0.47166 0.0922,-0.19731 0.25785,-0.3828 0.45717,-0.53886 0.14461,-0.10884 0.35565,-0.13694 0.50839,-0.0914 0.16756,0.0448 0.29379,0.17148 0.2527,0.32628 -0.0115,0.0639 -0.0407,0.13752 -0.0729,0.18552 z"
id="path867-4-7-4-4-3-7-4-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="M 22.47509,6.06118 C 24.79506,17.32897 19.38007,24.77475 11.21486,26.38241 3.97236,27.80839 -5.02515,20.46704 -5.80501,11.72408 -6.41908,4.84007 -2.27735,-0.28822 5.93716,-1.57303 c 8.00195,-1.25157 15.51172,2.65 16.53793,7.63421 z"
id="path865-2-8-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssss" />
<path
style="fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -1.32566,-18.52923 c 0.44598,-1.16728 2.11592,-2.05512 3.18298,-0.90247 0.63176,0.68248 29.57877,25.82862 30.42077,26.48249 1.15526,0.89713 1.60938,2.37015 0.50844,3.01835 -1.1721,0.38118 -43.95615,4.49048 -45.03666,4.69581 -1.08048,0.20538 -4.11576,-1.33884 -2.9921,-2.87253 1.12368,-1.53367 13.50287,-28.48604 13.91657,-30.42165 z"
id="path863-4-1-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csscscc" />
<g
id="g1182-9-2-6"
transform="matrix(1.0255649,0.18019794,-0.02159692,0.97127763,-43.10045,-136.83864)"
style="opacity:0.7">
<path
inkscape:connector-curvature="0"
id="path1176-2-9-2"
d="m 40.726561,129.67568 c 1.767228,-2.45002 18.796875,-6.0648 19.841146,-5.30168 1.044271,0.76312 0.48472,14.54623 -0.8407,14.98803 -1.325419,0.44181 -19.643074,-6.71419 -19.000446,-9.68635 z"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cscc" />
<path
inkscape:connector-curvature="0"
id="path903-5-2-0-3-6"
d="m 60.726494,124.26543 c 0.404414,5.02307 0.435388,9.41405 -1.014863,15.08667 8.711791,-2.57943 13.404263,-4.12319 13.879861,-4.38156 0.940559,-0.51094 -0.308607,-1.55065 -1.256211,-2.16331 -0.326401,-0.21104 -5.870691,-4.30227 -11.608787,-8.5418 z"
style="fill:#f1680d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
sodipodi:nodetypes="ccccc" />
<path
inkscape:connector-curvature="0"
id="path920-9-6-9-7"
d="m 46.538701,114.1089 c -0.344308,0.0228 -0.660027,0.26659 -0.852044,0.88022 -0.157516,0.91528 -2.552423,7.97512 -4.942209,14.76753 4.418276,-1.57951 11.65357,-4.00063 20.167587,-5.35385 -6.462069,-4.77428 -13.248565,-9.79477 -13.562741,-10.01471 -0.257937,-0.18058 -0.542798,-0.2969 -0.810593,-0.27919 z"
style="fill:#211f20;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path863-7-3-8-0-5"
d="m 40.767412,129.66988 c -2.218301,6.30764 -4.442554,12.41547 -4.868738,13.14656 -0.882803,1.51438 1.440916,3.15275 2.310309,2.80983 0.428003,-0.16884 12.908937,-3.7115 21.389603,-6.22235 -6.696977,-3.92647 -14.608653,-7.63903 -18.831174,-9.73404 z"
style="fill:#737373;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="ccccc" />
</g>
<path
style="fill:#ffddc2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -3.01473,-9.53085 c -0.25367,0.56923 -0.43416,1.00262 -0.61704,1.29891 -0.28237,0.4575 -1.34,0.21469 -1.01385,-0.49808 0.16047,-0.38467 0.37605,-0.8677 0.66161,-1.36625 0.28558,-0.49854 1.22295,-0.004 0.96928,0.56542 z"
id="path867-4-9-8-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csccc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 4.57697,29.25321 c 0.29501,0.90429 2.16609,1.24696 2.76417,1.32293 0.59805,0.076 1.97375,-2.20317 2.10507,-2.58755 C 9.5775,27.60419 8.6197,24.29549 8.29508,24.00841 7.97042,23.72136 4.13684,21.52368 1.40162,22.61663 c -2.73523,1.09297 -4.55588,3.39176 -4.96151,5.71905 -0.19242,1.10412 -0.27316,3.06229 1.48729,2.86346 0.67111,-0.0758 0.55004,-1.86492 2.17463,-2.55464 1.82492,-0.77474 2.79582,-0.62576 4.47494,0.60871 z"
id="path996-6-8-98"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -11.06346,30.04324 c 0.67675,-0.45775 2.00538,1.00994 3.13362,1.01925 1.12825,0.009 3.44924,-0.51346 4.28698,-2.40171 0.83774,-1.8883 2.35161,0.22769 2.61218,0.74967 0.26058,0.52197 -1.02106,1.98532 -2.57621,2.8521 -1.55516,0.86677 -3.35287,0.84192 -4.62951,0.30981 -1.1989,-0.49971 -2.82706,-2.52912 -2.82706,-2.52912 z"
id="path1043-6-6-5-72"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 0.82656,24.44505 c -0.16114,0.20897 -0.38897,0.3919 -0.65467,0.53456 -0.13944,0.074 -0.31983,0.11153 -0.45591,0.0601 -0.07,-0.0211 -0.12772,-0.0597 -0.14923,-0.11713 -0.0793,-0.15273 -0.0337,-0.34219 0.076,-0.50541 0.12853,-0.19857 0.32945,-0.37457 0.55942,-0.51452 0.1661,-0.0968 0.38531,-0.0984 0.53234,-0.029 0.16203,0.071 0.26795,0.22315 0.19888,0.38313 -0.0229,0.0667 -0.0656,0.14157 -0.10682,0.18855 z"
id="path867-4-7-4-4-9-9-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 26.51143,27.92114 c -0.79998,-0.16601 -1.47066,1.69666 -2.51061,2.13432 -1.03993,0.43769 -2.90323,0.862 -4.39609,-0.56582 -1.49288,-1.42785 -3.37261,1.48392 -3.4151,2.06578 -0.0425,0.58183 2.50144,1.04358 4.26937,1.25386 1.76794,0.21026 3.42115,-0.49635 4.39952,-1.47397 0.91881,-0.91808 1.65291,-3.41417 1.65291,-3.41417 z"
id="path1043-6-6-0-3-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 10.7199,29.31566 c -0.38501,0.86979 -2.28115,1.02138 -2.88384,1.03645 -0.60268,0.0151 -1.74071,-2.39157 -1.83246,-2.78727 -0.0917,-0.39571 1.19596,-3.59051 1.54795,-3.84327 0.35205,-0.25273 4.38831,-2.05124 6.99891,-0.68713 2.6106,1.36411 4.18932,3.83532 4.35737,6.19171 0.0797,1.11793 -0.0381,3.07421 -1.76938,2.69827 -0.66001,-0.14329 -0.35853,-1.911 -1.905,-2.76156 -1.73716,-0.95542 -2.71815,-0.90544 -4.51355,0.1528 z"
id="path996-6-5-6-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="M 8.08857,29.53483 C 8.4019,29.25749 5.82355,29.01312 6.71493,28.97318 c 2.14829,-0.0962 5.49858,-1.51022 6.21721,-1.48763 0.66641,0.1099 2.36967,0.53811 3.05484,1.13802 0.82895,0.85105 0.83383,2.02217 0.89792,2.64974 0.0877,0.39759 0.43069,0.84401 0.57402,0.98791 -0.14548,-0.0195 -0.92467,-0.0455 -1.00126,-0.55111 l -0.0941,0.0118 c -0.008,0.002 -0.0149,0.004 -0.0226,0.006 -0.0252,0.005 -0.0512,0.007 -0.0775,0.007 l -0.0129,0.002 c -2.6e-4,-7.9e-4 -5.2e-4,-0.001 -0.002,-0.002 -0.28284,-0.0135 -0.57038,-0.33903 -0.67954,-0.76931 -0.06,-0.23773 -0.0573,-0.47796 0.007,-0.66596 l 5.3e-4,1.6e-4 c 0.0622,-0.1811 0.17703,-0.29925 0.31996,-0.32939 0.0277,-0.005 0.0562,-0.008 0.0852,-0.006 l 0.004,-5.3e-4 c -0.12574,-0.23052 -0.28555,-0.44277 -0.50196,-0.61521 -0.0121,0.037 -0.0289,0.0722 -0.052,0.10451 l -0.26149,0.29948 c -0.005,0.007 -0.008,0.0147 -0.0131,0.0219 -0.0177,0.0228 -0.0374,0.0441 -0.0601,0.0632 l -0.009,0.009 c -7.9e-4,-1.8e-4 -5.3e-4,-2.3e-4 -0.002,-5.3e-4 -0.24244,0.19659 -0.72706,0.14054 -1.14495,-0.13244 -0.41499,-0.27154 -0.64276,-0.67799 -0.53961,-0.96288 0.0118,-0.0335 0.0282,-0.0645 0.049,-0.0927 0.0195,-0.0251 0.0413,-0.0483 0.0667,-0.0687 l 0.0404,-0.0545 c -0.23747,-0.0352 -0.47068,-0.0383 -0.70628,-0.0127 l 0.0528,0.17372 c 0.005,0.008 0.008,0.0157 0.0118,0.0238 0.0114,0.0289 0.0191,0.0594 0.023,0.091 l 0.003,0.0119 c -5.3e-4,8e-4 -10e-4,8e-4 -0.002,0.002 0.0348,0.33056 -0.33508,0.73947 -0.87378,0.96604 -0.60764,0.25518 -1.21283,0.18962 -1.35172,-0.14644 -0.0124,-0.0314 -0.0204,-0.0645 -0.024,-0.0992 l -0.0239,-0.0586 c -0.47527,0.83566 -2.00716,0.85196 -2.59159,0.87508 -0.27661,0.0109 -0.4265,0.2024 -0.84718,-0.0824 -0.16837,-0.11397 0.51714,-0.44149 0.85851,-0.74365 z"
id="path1092-6-8-2-4-4-8-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cscccccccccccccccccccccccccccccccccccccccssc" />
<path
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 12.05959,25.2133 c 0.26286,0.0232 0.55176,-0.0213 0.83656,-0.12041 0.14884,-0.0526 0.29854,-0.16006 0.3527,-0.29509 0.0319,-0.0658 0.0425,-0.13442 0.0147,-0.18914 -0.0588,-0.16174 -0.22919,-0.25633 -0.42362,-0.28596 -0.23318,-0.0397 -0.49872,-0.0108 -0.75737,0.0638 -0.18367,0.0568 -0.33312,0.21718 -0.38156,0.37234 -0.0573,0.16735 -0.017,0.3483 0.14757,0.40567 0.0647,0.0283 0.14863,0.0475 0.21112,0.0489 z"
id="path867-4-7-4-4-9-8-5-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<ellipse
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.584;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#radialGradient1740-1-7-3-8);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264608px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path1732-7-3-9-2"
cx="10.396335"
cy="18.140615"
rx="11.448589"
ry="5.9922585"
transform="matrix(0.99646249,-0.08403867,0.10331835,0.99464834,0,0)" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="M 9.05561,29.08123 C 8.80229,28.66515 7.36974,29.09123 6.65977,28.5097 4.94994,27.10914 3.25632,26.83257 2.69346,26.90901 c -0.56287,0.0763 -1.9108,-0.17662 -3.28652,1.12273 -0.9108,0.76281 -1.03415,1.92743 -1.1614,2.54529 -0.12745,0.38668 -0.5139,0.7961 -0.67105,0.92476 0.14671,-0.005 0.92452,0.0483 1.05188,-0.44698 l 0.0924,0.0212 c 0.008,0.003 0.0144,0.006 0.0219,0.008 0.0246,0.008 0.0502,0.0123 0.0764,0.0143 l 0.0127,0.003 c 4e-4,-5.3e-4 7.4e-4,-0.001 0.002,-0.001 0.28275,0.0152 0.60177,-0.27957 0.75389,-0.69661 0.0837,-0.23043 0.10541,-0.4697 0.06,-0.66329 l -5.3e-4,1.1e-4 c -0.0436,-0.18646 -0.14584,-0.31562 -0.28498,-0.36006 -0.027,-0.008 -0.0551,-0.0133 -0.0842,-0.0149 l -0.004,-10e-4 c 0.14841,-0.21661 0.32887,-0.4116 0.56163,-0.56126 0.008,0.038 0.0214,0.0748 0.0412,0.10923 l 0.22985,0.32441 c 0.004,0.007 0.007,0.0155 0.0108,0.0231 0.0153,0.0245 0.0328,0.0477 0.0534,0.069 l 0.008,0.0102 c 7.9e-4,-9e-5 5e-4,-1.8e-4 0.002,-5.3e-4 0.22131,0.22012 0.70911,0.21339 1.15247,-0.0159 0.44035,-0.22816 0.70808,-0.60947 0.63428,-0.90335 -0.008,-0.0345 -0.0216,-0.067 -0.0393,-0.0972 -0.0169,-0.027 -0.0362,-0.0522 -0.0594,-0.0751 l -0.0347,-0.0583 c 0.23981,-0.0109 0.47215,0.009 0.70394,0.0588 l -0.0701,0.16748 c -0.005,0.007 -0.01,0.0148 -0.0142,0.0225 -0.0142,0.0276 -0.025,0.0572 -0.032,0.0882 l -0.004,0.0116 c 4.2e-4,7.9e-4 10e-4,7.9e-4 10e-4,0.002 -0.0681,0.32534 0.25854,0.76957 0.77155,1.04949 0.57869,0.31535 1.18741,0.31137 1.35958,-0.009 0.0155,-0.0299 0.0268,-0.0621 0.0339,-0.0962 l 0.0297,-0.0559 c 0.38828,0.87946 2.47427,0.97095 3.05335,1.05308 0.27409,0.0389 -0.17108,0.36438 0.2295,-0.19966 0,0 0.19336,-0.87674 0.44922,-0.96214 z"
id="path1092-6-8-2-4-0-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csccccccccccccccccccccccccccccccccccccccccsc" />
<ellipse
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path2118-1"
cx="10.524682"
cy="28.891661"
rx="1.3079523"
ry="0.79874945"
transform="rotate(7.6759953)" />
<ellipse
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path2118-4-49"
cx="0.47622034"
cy="31.527174"
rx="1.3079523"
ry="0.79874945"
transform="rotate(-16.263776)" />
<path
style="fill:#4e3b3a;fill-opacity:1;fill-rule:evenodd;stroke:#2f2828;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 8.68593,14.56459 c 0.0248,-0.83143 0.78535,-0.82216 0.85565,-0.12503 0.0703,0.69714 0.13616,1.22038 0.12315,1.6135 -0.0201,0.607 -0.82519,0.73682 -0.90491,-0.14119 -0.0582,-0.46459 -0.0497,-0.88216 -0.0739,-1.34724 z"
id="path867-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccc" />
<path
style="vector-effect:none;fill:#4e3b3a;fill-opacity:1;fill-rule:evenodd;stroke:#2f2828;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 16.09281,14.05618 c 0.11272,-0.80898 0.88195,-0.71737 0.87966,-0.0292 -0.002,0.68824 0.0189,1.40824 -0.0902,1.76962 -0.12806,0.42401 -0.81369,0.40879 -0.80186,-0.45701 -0.01,-0.45985 -0.0121,-0.82677 0.0124,-1.28342 z"
id="path867-6-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccc" />
<path
style="vector-effect:none;fill:#91332b;fill-opacity:1;fill-rule:evenodd;stroke:#5d0000;stroke-width:0.365;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 12.99867,23.57243 c -0.89676,0.005 -1.32514,-1.54391 -1.10628,-2.88432 0.18771,-2.43282 3.00743,-3.30187 2.40027,0.84765 -0.63079,2.3588 -1.29399,2.03667 -1.29399,2.03667 z"
id="path991-3-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc"
inkscape:transform-center-x="1.8588309"
inkscape:transform-center-y="0.51682867" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

312
public/images/avatars/7.svg Normal file
View File

@ -0,0 +1,312 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="250"
height="250"
viewBox="0 0 66.145832 66.145837"
version="1.1"
id="svg1435"
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
sodipodi:docname="7.svg">
<defs
id="defs1429">
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient1738"
id="radialGradient1740"
cx="56.455734"
cy="167.68628"
fx="56.455734"
fy="167.68628"
r="20.579618"
gradientTransform="matrix(1.2029851,0,0,0.16716418,-59.060055,27.67363)"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient1738">
<stop
style="stop-color:#838383;stop-opacity:1"
offset="0"
id="stop1734" />
<stop
style="stop-color:#bfbfbf;stop-opacity:0"
offset="1"
id="stop1736" />
</linearGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="198.59903"
inkscape:cy="135.78261"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
units="px"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1851"
inkscape:window-height="1016"
inkscape:window-x="0"
inkscape:window-y="1077"
inkscape:window-maximized="1" />
<metadata
id="metadata1432">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(46.223311,6.4966985)">
<g
id="g3736"
transform="translate(-19.473077,-2.8528968)">
<ellipse
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.789;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#radialGradient1740);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path1732"
cx="8.8553524"
cy="55.704765"
rx="24.756975"
ry="3.4401751" />
<path
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -10.025561,52.54805 c 0.722313,-0.32474 1.7996,1.18872 2.892565,1.34949 1.09296,0.16077 2.966473,0.12782 4.050984,-1.47554 1.084512,-1.60339 3.925843,0.31246 4.103402,0.82213 0.17756,0.50963 -2.501094,1.74979 -4.134312,2.32778 -1.633215,0.57799 -3.373269,0.31274 -4.534879,-0.34327 -1.090874,-0.61606 -2.37776,-2.68059 -2.37776,-2.68059 z"
id="path1043"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -3.334629,42.52193 c -0.361193,1.18491 5.07551,5.48056 9.160616,4.90157 4.085107,-0.57898 6.1308,-2.41928 6.756309,-3.19699 0.625509,-0.7777 1.29892,-3.72515 1.373259,-4.60902 0.07434,-0.88386 -6.384611,-0.55767 -8.757366,-0.0571 -2.372755,0.50054 -6.587909,1.38392 -8.532818,2.96157 z"
id="path1090"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccsc" />
<path
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -0.157902,47.14105 c 0.83556,-0.0712 1.508563,-1.48186 1.694891,-1.93874 0.186334,-0.45688 -1.490236,-1.94432 -1.793408,-2.11597 -0.303169,-0.17166 -2.768929,0.16775 -3.080965,0.37205 -0.312038,0.20428 -3.133189,2.58594 -2.749631,4.93168 0.383556,2.34572 1.706491,4.43633 3.620891,5.16936 0.90823,0.34773 2.938741,0.52951 3.124785,-0.89046 0.07093,-0.54133 -1.982678,-0.71613 -2.24527,-2.1166 -0.294971,-1.57314 0.0295,-2.31027 1.428707,-3.41132 z"
id="path996-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 16.753014,25.02622 c 2.319968,11.2678 -3.095026,18.71357 -11.260236,20.32123 -7.242505,1.42598 -16.611613,-5.82247 -17.391487,-14.56543 -0.614053,-6.88401 3.899283,-12.1052 12.11379,-13.39001 8.001952,-1.25157 15.511719,2.65 16.537933,7.63421 z"
id="path865"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssss" />
<path
style="fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -6.56439,1.49134 c 0.456925,-1.26081 2.105242,-2.40957 3.12758,-1.37954 0.605289,0.60987 28.449466,22.27232 29.260766,22.82288 1.113161,0.75537 1.53061,2.20138 0.442813,3.02322 -1.152596,0.55811 -43.047939,10.87443 -44.10782,11.23913 -1.05988,0.36471 -3.999136,-0.78618 -2.873193,-2.51945 1.125942,-1.73326 13.710699,-31.142 14.149854,-33.18624 z"
id="path863"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csscscc" />
<path
style="fill:#4e3b3a;fill-opacity:1;fill-rule:evenodd;stroke:#2f2828;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 2.497857,34.01122 c 0.0248,-0.83572 0.785348,-0.95789 0.855653,-0.2729 0.07031,0.68499 0.13616,1.19684 0.12315,1.59221 -0.0201,0.61048 -0.825189,0.87943 -0.904912,0.0152 -0.0582,-0.45454 -0.04969,-0.87357 -0.07389,-1.33447 z"
id="path867"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccc" />
<path
style="vector-effect:none;fill:#4e3b3a;fill-opacity:1;fill-rule:evenodd;stroke:#2f2828;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 9.904742,32.22277 c 0.112718,-0.82846 0.881949,-0.86978 0.879655,-0.18119 -0.0023,0.68859 0.01894,1.40498 -0.09024,1.78521 -0.12806,0.44614 -0.813687,0.54941 -0.801862,-0.31843 -0.01,-0.45813 -0.01209,-0.82468 0.01242,-1.28557 z"
id="path867-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccc" />
<path
style="vector-effect:none;fill:#91332b;fill-opacity:1;fill-rule:evenodd;stroke:#5d0000;stroke-width:0.365;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 7.324099,41.66985 C 6.819648,41.48711 6.999555,40.74636 7.170831,40.11893 7.588889,38.84459 8.67734,38.27655 8.184583,40.22767 7.685702,41.7439 7.324099,41.66985 7.324099,41.66985 Z"
id="path991"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc"
inkscape:transform-center-x="1.4546864"
inkscape:transform-center-y="0.24192002" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 4.452187,48.00586 c 0.930077,-0.0657 1.692774,-1.66096 1.9046,-2.1782 0.211825,-0.51723 -1.638061,-2.2433 -1.973549,-2.44452 -0.335488,-0.20121 -3.710131,-0.0694 -4.059246,0.15762 -0.349115,0.22706 -3.336224,3.16864 -2.933107,5.84899 0.403115,2.68036 2.167953,4.80789 4.289936,5.67859 1.006707,0.41307 2.852889,0.91311 3.074054,-0.70174 0.08431,-0.61561 -1.647927,-0.89856 -1.925969,-2.49942 -0.312326,-1.79826 0.05596,-2.63233 1.623281,-3.86132 z"
id="path996"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 13.932799,45.47233 c -0.01947,0.78472 -1.590833,1.60441 -2.102046,1.84054 -0.511203,0.23613 -2.345378,-1.11244 -2.565198,-1.36979 -0.219821,-0.25734 -0.01317,-2.59102 0.1984,-2.90871 0.211584,-0.31769 2.738866,-3.26405 5.463255,-3.23356 2.724367,0.0306 5.225429,0.96751 6.210261,2.64121 0.467202,0.79403 0.827107,2.65185 -0.790922,3.02121 -0.616859,0.14083 -0.970515,-1.73935 -2.599532,-1.78872 -1.829894,-0.0552 -2.652904,0.34763 -3.814218,1.79782 z"
id="path996-7-0-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 28.381385,44.96545 c -0.764898,0.14778 -1.288187,-1.49795 -2.243991,-1.88353 -0.955814,-0.38558 -3.545622,0.005 -5.038941,1.2692 -1.493333,1.26414 -1.49288,-1.86347 -1.498711,-2.37778 -0.0058,-0.51427 1.675581,-1.13309 3.356757,-1.32124 1.681184,-0.18814 3.200018,0.4344 4.065904,1.29736 0.813167,0.8104 1.358957,3.01601 1.358957,3.01601 z"
id="path1043-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -5.784426,53.87666 c 0.722314,-0.32474 1.7996,1.18873 2.892565,1.34949 1.092961,0.16079 2.966473,0.12782 4.050984,-1.47553 1.084512,-1.6034 3.559774,0.57893 3.737333,1.08859 0.177561,0.50963 -2.135025,1.48332 -3.768243,2.06132 -1.633214,0.57798 -3.373269,0.31274 -4.534879,-0.34328 -1.090874,-0.61606 -2.37776,-2.68059 -2.37776,-2.68059 z"
id="path1043-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 15.821902,52.87711 c -0.55043,-0.30014 -1.345893,1.09117 -2.17046,1.2373 -0.824563,0.14614 -2.241931,0.11259 -3.082593,-1.36518 -0.840665,-1.4778 -2.965156,0.28093 -3.092947,0.74978 -0.127793,0.46881 1.913899,1.615 3.15648,2.14983 1.242578,0.53483 2.555211,0.29364 3.425381,-0.30826 0.817178,-0.56523 1.764139,-2.46347 1.764139,-2.46347 z"
id="path1043-6-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 8.921312,46.7851 c -0.0943,-0.004 -0.179196,0.0186 -0.248857,0.0702 l -0.315511,0.23141 a 1.1317132,0.62550769 47.670465 0 0 -0.0873,0.0463 1.1317132,0.62550769 47.670465 0 0 0.230159,1.23215 1.1317132,0.62550769 47.670465 0 0 1.147885,0.5334 c 7.56e-4,4.5e-4 0.0013,10e-4 0.002,0.002 l 0.01106,-0.006 a 1.1317132,0.62550769 47.670465 0 0 0.07841,-0.043 1.1317132,0.62550769 47.670465 0 0 0.01912,-0.0159 l 0.348961,-0.21018 c 0.06972,-0.0516 0.115503,-0.12509 0.138626,-0.21326 0.06945,-0.26449 -0.06436,-0.6636 -0.368769,-1.01942 C 9.572685,47.037 9.204189,46.79675 8.9213,46.7859 Z m 0.92078,2.50328 a 0.60069764,0.94038834 17.456034 0 0 -0.759587,0.71724 0.60069764,0.94038834 17.456034 0 0 0.187474,1.04622 c 4.4e-5,7.1e-4 -1.09e-4,0.001 -6.5e-5,0.002 l 0.01121,0.005 a 0.60069764,0.94038834 17.456034 0 0 0.07586,0.037 0.60069764,0.94038834 17.456034 0 0 0.02153,0.006 L 9.734365,51.26 c 0.07838,0.0273 0.161124,0.028 0.243821,0.007 0.248164,-0.0649 0.495103,-0.33256 0.616427,-0.70267 0.161762,-0.49347 0.0989,-0.97956 -0.214569,-1.08844 l -0.353321,-0.12396 a 0.60069764,0.94038834 17.456034 0 0 -0.08396,-0.0425 0.60069764,0.94038834 17.456034 0 0 -0.100675,-0.0208 z m -0.866111,2.30991 a 0.5253434,0.87258976 62.224262 0 0 -0.62859,0.15888 0.5253434,0.87258976 62.224262 0 0 -0.539159,0.79303 c -4.89e-4,5.6e-4 -0.0011,9.3e-4 -0.0016,0.002 l 0.0044,0.009 a 0.5253434,0.87258976 62.224262 0 0 0.0278,0.0686 0.5253434,0.87258976 62.224262 0 0 0.01132,0.0179 l 0.139636,0.30742 c 0.03573,0.0632 0.09152,0.11157 0.161343,0.14525 0.209454,0.10101 0.546751,0.0692 0.864636,-0.10278 0.423844,-0.22924 0.690779,-0.58414 0.547789,-0.83669 L 9.40307,51.87504 A 0.5253434,0.87258976 62.224262 0 0 9.3734,51.80014 0.5253434,0.87258976 62.224262 0 0 8.976027,51.59827 Z"
id="path1092-6-8"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 5.498097,45.29984 -1.283518,0.59717 c -1.84659,1.34386 -2.649943,2.72191 -2.70841,3.24103 -0.05846,0.51911 -0.339687,1.70371 0.577036,3.21566 0.514103,0.9797 1.59456,1.34434 2.153346,1.59296 0.338568,0.19827 0.638388,0.6327 0.724283,0.80109 0.02972,-0.13198 0.261583,-0.81468 -0.180421,-1.0366 l 0.04177,-0.0778 c 0.0045,-0.006 0.0089,-0.0116 0.01298,-0.0177 0.0129,-0.0203 0.02344,-0.0421 0.03155,-0.0651 l 0.0055,-0.0107 c -5.12e-4,-5.5e-4 -0.0011,-0.001 -0.0015,-0.002 C 4.951133,53.28879 4.744773,52.9396 4.383048,52.71267 4.183118,52.58755 3.960282,52.51593 3.765317,52.51412 l -1.7e-5,5.3e-4 c -0.187746,-0.002 -0.334612,0.0612 -0.409388,0.17568 -0.01412,0.0223 -0.02546,0.0463 -0.03382,0.0719 l -0.0022,0.004 C 3.1482,52.58642 3.004565,52.38271 2.916305,52.14225 c 0.03816,9.5e-4 0.07622,-0.003 0.113637,-0.0129 l 0.362574,-0.13426 c 0.0083,-0.002 0.01639,-0.003 0.02447,-0.005 0.02692,-0.008 0.05301,-0.0188 0.07808,-0.0326 l 0.01153,-0.005 c 9.1e-5,-7.8e-4 -5e-5,-5.2e-4 6.3e-5,-0.002 0.261262,-0.14942 0.368607,-0.58631 0.253617,-1.03218 -0.114626,-0.44292 -0.415364,-0.76523 -0.712461,-0.76358 -0.03475,-1e-4 -0.06881,0.005 -0.101777,0.0139 -0.02957,0.009 -0.05812,0.0209 -0.08544,0.0366 l -0.06365,0.0182 C 2.842428,50.00697 2.91609,49.80405 3.01714,49.60794 l 0.14316,0.0992 c 0.0058,0.006 0.01182,0.012 0.01805,0.0176 0.02299,0.0187 0.04857,0.0348 0.07654,0.0479 l 0.0096,0.006 c 8.02e-4,-2.4e-4 0.0013,-7.5e-4 0.0021,-9.3e-4 0.293987,0.13187 0.793248,-0.0626 1.179477,-0.45933 0.435309,-0.44762 0.573464,-0.99184 0.308569,-1.21553 -0.02492,-0.0204 -0.0529,-0.0375 -0.08367,-0.0513 l -0.04633,-0.0387 C 5.5528,47.85847 6.304005,46.3571 6.517272,45.85815 6.618205,45.62199 6.724684,45.66639 6.280892,45.18557 Z"
id="path1092-6-8-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 13.569272,45.01585 c 0.01496,0.0931 0.05324,0.17212 0.117366,0.23037 l 0.288569,0.26425 c 0.01787,0.0289 0.03877,0.0545 0.06251,0.0765 0.256693,0.23285 0.777506,0.0241 1.163488,-0.46633 0.342079,-0.4354 0.468629,-0.95603 0.298966,-1.22995 3.93e-4,-8.7e-4 7.59e-4,-9.7e-4 0.0017,-0.002 l -0.0087,-0.009 c -0.01675,-0.0255 -0.03597,-0.0485 -0.05751,-0.0685 -0.0062,-0.005 -0.01271,-0.0106 -0.01932,-0.0156 L 15.142057,43.4944 c -0.06423,-0.0583 -0.145237,-0.0889 -0.236225,-0.0943 -0.272957,-0.0167 -0.638259,0.1927 -0.927778,0.56073 -0.289509,0.36803 -0.453176,0.77635 -0.40857,1.05591 z m 2.275275,-1.39188 c 0.03785,0.29477 0.397432,0.55013 0.851765,0.6049 0.457188,0.0549 0.875993,-0.10941 0.989471,-0.38817 7.68e-4,-2e-4 9.97e-4,-10e-5 0.002,-3.3e-4 l 0.0031,-0.012 c 0.01015,-0.0267 0.01736,-0.054 0.02151,-0.0816 6.61e-4,-0.007 0.0011,-0.0148 0.0014,-0.0223 l 0.08563,-0.37988 c 0.01152,-0.0822 -0.004,-0.1635 -0.04098,-0.24045 -0.11215,-0.2307 -0.42284,-0.42063 -0.809514,-0.46734 -0.515562,-0.0623 -0.980014,0.0943 -1.025591,0.42298 l -0.05257,0.37073 c -0.01214,0.0295 -0.02058,0.0598 -0.02528,0.0906 -0.0048,0.0339 -0.0051,0.0683 -7.7e-4,0.1028 z m 2.427195,0.63016 c 0.02246,0.14446 0.103035,0.30273 0.22341,0.43882 0.21859,0.24659 0.517364,0.3657 0.705813,0.28138 4.89e-4,3.3e-4 9.37e-4,6.9e-4 0.0018,8.1e-4 l 0.0064,-0.004 c 0.01782,-0.008 0.0343,-0.0185 0.04935,-0.0303 0.0042,-0.004 0.0083,-0.007 0.01228,-0.0109 l 0.218697,-0.14706 c 0.04383,-0.0354 0.07293,-0.0834 0.0883,-0.13955 0.0461,-0.16849 -0.032,-0.41168 -0.216654,-0.62034 -0.246245,-0.27823 -0.566147,-0.423 -0.741362,-0.28142 l -0.198533,0.15926 c -0.01958,0.008 -0.03763,0.0197 -0.05396,0.0327 -0.08279,0.0666 -0.117045,0.18182 -0.09546,0.32114 z"
id="path1092-6-8-5"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccc" />
<path
style="vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 11.310294,44.58415 c -0.239593,0.24976 -1.202043,1.43758 -0.371221,2.53692 0.358999,0.17692 0.68363,0.28389 0.855373,0.20456 0.511212,-0.23613 2.082383,-1.05571 2.101855,-1.84043 1.161315,-1.45018 1.984545,-1.85304 3.814441,-1.7978 1.607517,0.0492 1.973619,1.87622 2.575756,1.78919 -0.171458,-0.51237 -0.206918,-0.40948 -0.536226,-1.15943 -1.858435,-1.87473 -2.113789,-1.63744 -4.329315,-1.76077 -1.630535,0.17504 -2.933476,0.81646 -4.110663,2.02776 z"
id="path996-7-0-9-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 7.452787,47.46111 c -0.783843,-0.0962 -1.36111,-1.77135 -1.551878,-2.2586 -0.19077,-0.48725 1.779369,-1.74971 2.056627,-1.92338 0.277253,-0.17366 2.59509,0.24693 2.894251,0.47057 0.299159,0.22365 3.023249,2.81023 2.749558,5.27815 -0.273696,2.46792 -1.434967,4.64272 -3.198434,5.36873 -0.836624,0.34441 -2.72863,0.48522 -2.954,-1.01921 -0.08593,-0.57355 1.827923,-0.70646 2.02274,-2.17902 C 9.690493,49.54421 8.800954,48.6593 7.452787,47.46111 Z"
id="path996-7-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<path
style="fill:#ffddc2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -7.895317,10.44663 c -0.258467,0.61988 -0.442892,1.09003 -0.627128,1.41992 -0.284471,0.50937 -1.3139,0.4107 -0.981938,-0.3667 0.16396,-0.41735 0.383603,-0.9434 0.671956,-1.49533 0.288352,-0.55192 1.19558,-0.17778 0.93711,0.44211 z"
id="path867-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csccc" />
<path
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 11.223015,46.08265 C 10.92698,45.94171 10.63832,45.70954 10.382854,45.41947 10.249756,45.26693 10.144548,45.05335 10.157056,44.8697 c 8.53e-4,-0.0928 0.02623,-0.17528 0.08367,-0.21845 0.148531,-0.14163 0.382248,-0.13829 0.607821,-0.0479 0.272645,0.10382 0.544281,0.30399 0.784393,0.55039 0.168672,0.17898 0.245614,0.4512 0.216363,0.65349 -0.026,0.2214 -0.164647,0.39595 -0.372587,0.35515 -0.08467,-0.01 -0.185413,-0.0417 -0.253697,-0.0797 z"
id="path867-4-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 15.393441,41.02903 c -0.231103,0.0769 -0.503221,0.0957 -0.785816,0.0624 -0.147929,-0.0182 -0.310774,-0.0876 -0.394621,-0.20303 -0.04536,-0.0554 -0.07223,-0.11789 -0.0622,-0.17452 0.01113,-0.16416 0.140283,-0.28869 0.30799,-0.35729 0.200018,-0.0862 0.447049,-0.11474 0.699707,-0.0989 0.180384,0.0147 0.356769,0.13398 0.440675,0.26948 0.09512,0.14505 0.105651,0.32334 -0.02795,0.41175 -0.05098,0.0401 -0.121762,0.0758 -0.177773,0.0902 z"
id="path867-4-7-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 0.375943,45.98872 c -0.06491,0.23474 -0.200865,0.47122 -0.385958,0.68734 -0.09754,0.11269 -0.245913,0.20924 -0.388454,0.21458 -0.07125,0.007 -0.138146,-0.005 -0.179577,-0.0455 -0.130131,-0.10069 -0.16158,-0.27734 -0.125113,-0.45482 0.03987,-0.21412 0.153787,-0.43517 0.307685,-0.63617 0.112743,-0.14158 0.310033,-0.22162 0.469301,-0.21581 0.173458,0.002 0.327371,0.0925 0.326352,0.25262 0.0048,0.0647 -0.0049,0.14333 -0.02415,0.19787 z"
id="path867-4-7-4-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
style="fill:#fffdfb;fill-opacity:0.461187;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -3.883413,46.03266 c -0.121619,0.21101 -0.312455,0.40591 -0.545767,0.5688 -0.122653,0.0846 -0.290472,0.14101 -0.429809,0.11048 -0.07067,-0.0112 -0.132394,-0.0398 -0.162457,-0.089 -0.100773,-0.13007 -0.08699,-0.30896 -0.0072,-0.47166 0.09221,-0.19731 0.25785,-0.3828 0.457173,-0.53886 0.144605,-0.10884 0.355649,-0.13694 0.508389,-0.0914 0.167555,0.0448 0.293792,0.17148 0.252702,0.32628 -0.01154,0.0639 -0.04066,0.13752 -0.07292,0.18552 z"
id="path867-4-7-4-4-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<g
id="g1928"
transform="translate(-49.650356,-111.96552)">
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667"
d="m 50.943081,151.14101 c -0.400341,-0.25283 0.512053,-1.42428 0.811945,-1.68151 0.299889,-0.25723 -0.191703,1.92451 -0.811945,1.68151 z"
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:transform-center-y="-0.29778724"
inkscape:transform-center-x="0.83927927"
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-0"
d="m 51.83521,151.4665 c -0.414013,-0.35768 0.551389,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.22382,2.76306 -0.867104,2.42223 z"
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:transform-center-y="0.70487957"
inkscape:transform-center-x="0.84080235"
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-7"
d="m 52.816217,151.19387 c -0.414012,-0.35768 0.551389,-2.0495 0.867105,-2.42224 0.315714,-0.37273 -0.223821,2.76306 -0.867105,2.42224 z"
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
id="g1923"
transform="translate(-49.650356,-111.96552)">
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-8"
d="m 59.278028,149.60677 c -0.414013,-0.35768 0.551388,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.223821,2.76305 -0.867104,2.42223 z"
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-6"
d="m 60.167005,149.36159 c -0.414013,-0.35768 0.551389,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.22382,2.76306 -0.867104,2.42223 z"
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-88"
d="m 61.157788,148.82481 c -0.348754,-0.27043 0.457468,-1.54143 0.721628,-1.82117 0.26416,-0.27974 -0.180335,2.07953 -0.721628,1.82117 z"
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<g
id="g1182-9-2-0-9"
transform="rotate(1.7981645,3593.9286,-1519.9732)"
style="opacity:0.7">
<path
inkscape:connector-curvature="0"
id="path1176-2-9-5-2"
d="m 40.726561,129.67568 c 1.767228,-2.45002 18.796875,-6.0648 19.841146,-5.30168 1.044271,0.76312 0.48472,14.54623 -0.8407,14.98803 -1.325419,0.44181 -19.643074,-6.71419 -19.000446,-9.68635 z"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cscc" />
<path
inkscape:connector-curvature="0"
id="path903-5-2-0-3-9-2"
d="m 60.726494,124.26543 c 0.404414,5.02307 0.435388,9.41405 -1.014863,15.08667 8.711791,-2.57943 13.404263,-4.12319 13.879861,-4.38156 0.940559,-0.51094 -0.308607,-1.55065 -1.256211,-2.16331 -0.326401,-0.21104 -5.870691,-4.30227 -11.608787,-8.5418 z"
style="fill:#f1680d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
sodipodi:nodetypes="ccccc" />
<path
inkscape:connector-curvature="0"
id="path920-9-6-9-4-4"
d="m 46.538701,114.1089 c -0.344308,0.0228 -0.660027,0.26659 -0.852044,0.88022 -0.157516,0.91528 -2.552423,7.97512 -4.942209,14.76753 4.418276,-1.57951 11.65357,-4.00063 20.167587,-5.35385 -6.462069,-4.77428 -13.248565,-9.79477 -13.562741,-10.01471 -0.257937,-0.18058 -0.542798,-0.2969 -0.810593,-0.27919 z"
style="fill:#211f20;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path863-7-3-8-0-6-7"
d="m 40.767412,129.66988 c -2.218301,6.30764 -4.442554,12.41547 -4.868738,13.14656 -0.882803,1.51438 1.440916,3.15275 2.310309,2.80983 0.428003,-0.16884 12.908937,-3.7115 21.389603,-6.22235 -6.696977,-3.92647 -14.608653,-7.63903 -18.831174,-9.73404 z"
style="fill:#737373;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="ccccc" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 30 KiB

312
public/images/avatars/8.svg Normal file
View File

@ -0,0 +1,312 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="250"
height="250"
viewBox="0 0 66.145832 66.145837"
version="1.1"
id="svg1435"
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
sodipodi:docname="8.svg">
<defs
id="defs1429">
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient1738"
id="radialGradient1740"
cx="56.455734"
cy="167.68628"
fx="56.455734"
fy="167.68628"
r="20.579618"
gradientTransform="matrix(1.2029851,0,0,0.16716418,-59.060055,27.67363)"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient1738">
<stop
style="stop-color:#838383;stop-opacity:1"
offset="0"
id="stop1734" />
<stop
style="stop-color:#bfbfbf;stop-opacity:0"
offset="1"
id="stop1736" />
</linearGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="198.59903"
inkscape:cy="135.78261"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
units="px"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1851"
inkscape:window-height="1016"
inkscape:window-x="0"
inkscape:window-y="1077"
inkscape:window-maximized="1" />
<metadata
id="metadata1432">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(46.223311,6.4966985)">
<g
id="g3736"
transform="matrix(-1,0,0,1,-6.827712,-2.8528968)">
<ellipse
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.789;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#radialGradient1740);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path1732"
cx="8.8553524"
cy="55.704765"
rx="24.756975"
ry="3.4401751" />
<path
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -10.025561,52.54805 c 0.722313,-0.32474 1.7996,1.18872 2.892565,1.34949 1.09296,0.16077 2.966473,0.12782 4.050984,-1.47554 1.084512,-1.60339 3.925843,0.31246 4.103402,0.82213 0.17756,0.50963 -2.501094,1.74979 -4.134312,2.32778 -1.633215,0.57799 -3.373269,0.31274 -4.534879,-0.34327 -1.090874,-0.61606 -2.37776,-2.68059 -2.37776,-2.68059 z"
id="path1043"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -3.334629,42.52193 c -0.361193,1.18491 5.07551,5.48056 9.160616,4.90157 4.085107,-0.57898 6.1308,-2.41928 6.756309,-3.19699 0.625509,-0.7777 1.29892,-3.72515 1.373259,-4.60902 0.07434,-0.88386 -6.384611,-0.55767 -8.757366,-0.0571 -2.372755,0.50054 -6.587909,1.38392 -8.532818,2.96157 z"
id="path1090"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccsc" />
<path
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -0.157902,47.14105 c 0.83556,-0.0712 1.508563,-1.48186 1.694891,-1.93874 0.186334,-0.45688 -1.490236,-1.94432 -1.793408,-2.11597 -0.303169,-0.17166 -2.768929,0.16775 -3.080965,0.37205 -0.312038,0.20428 -3.133189,2.58594 -2.749631,4.93168 0.383556,2.34572 1.706491,4.43633 3.620891,5.16936 0.90823,0.34773 2.938741,0.52951 3.124785,-0.89046 0.07093,-0.54133 -1.982678,-0.71613 -2.24527,-2.1166 -0.294971,-1.57314 0.0295,-2.31027 1.428707,-3.41132 z"
id="path996-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 16.753014,25.02622 c 2.319968,11.2678 -3.095026,18.71357 -11.260236,20.32123 -7.242505,1.42598 -16.611613,-5.82247 -17.391487,-14.56543 -0.614053,-6.88401 3.899283,-12.1052 12.11379,-13.39001 8.001952,-1.25157 15.511719,2.65 16.537933,7.63421 z"
id="path865"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssss" />
<path
style="fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -6.56439,1.49134 c 0.456925,-1.26081 2.105242,-2.40957 3.12758,-1.37954 0.605289,0.60987 28.449466,22.27232 29.260766,22.82288 1.113161,0.75537 1.53061,2.20138 0.442813,3.02322 -1.152596,0.55811 -43.047939,10.87443 -44.10782,11.23913 -1.05988,0.36471 -3.999136,-0.78618 -2.873193,-2.51945 1.125942,-1.73326 13.710699,-31.142 14.149854,-33.18624 z"
id="path863"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csscscc" />
<path
style="fill:#4e3b3a;fill-opacity:1;fill-rule:evenodd;stroke:#2f2828;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 2.497857,34.01122 c 0.0248,-0.83572 0.785348,-0.95789 0.855653,-0.2729 0.07031,0.68499 0.13616,1.19684 0.12315,1.59221 -0.0201,0.61048 -0.825189,0.87943 -0.904912,0.0152 -0.0582,-0.45454 -0.04969,-0.87357 -0.07389,-1.33447 z"
id="path867"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccc" />
<path
style="vector-effect:none;fill:#4e3b3a;fill-opacity:1;fill-rule:evenodd;stroke:#2f2828;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 9.904742,32.22277 c 0.112718,-0.82846 0.881949,-0.86978 0.879655,-0.18119 -0.0023,0.68859 0.01894,1.40498 -0.09024,1.78521 -0.12806,0.44614 -0.813687,0.54941 -0.801862,-0.31843 -0.01,-0.45813 -0.01209,-0.82468 0.01242,-1.28557 z"
id="path867-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccc" />
<path
style="vector-effect:none;fill:#91332b;fill-opacity:1;fill-rule:evenodd;stroke:#5d0000;stroke-width:0.365;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 7.324099,41.66985 C 6.819648,41.48711 6.999555,40.74636 7.170831,40.11893 7.588889,38.84459 8.67734,38.27655 8.184583,40.22767 7.685702,41.7439 7.324099,41.66985 7.324099,41.66985 Z"
id="path991"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc"
inkscape:transform-center-x="1.4546864"
inkscape:transform-center-y="0.24192002" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 4.452187,48.00586 c 0.930077,-0.0657 1.692774,-1.66096 1.9046,-2.1782 0.211825,-0.51723 -1.638061,-2.2433 -1.973549,-2.44452 -0.335488,-0.20121 -3.710131,-0.0694 -4.059246,0.15762 -0.349115,0.22706 -3.336224,3.16864 -2.933107,5.84899 0.403115,2.68036 2.167953,4.80789 4.289936,5.67859 1.006707,0.41307 2.852889,0.91311 3.074054,-0.70174 0.08431,-0.61561 -1.647927,-0.89856 -1.925969,-2.49942 -0.312326,-1.79826 0.05596,-2.63233 1.623281,-3.86132 z"
id="path996"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 13.932799,45.47233 c -0.01947,0.78472 -1.590833,1.60441 -2.102046,1.84054 -0.511203,0.23613 -2.345378,-1.11244 -2.565198,-1.36979 -0.219821,-0.25734 -0.01317,-2.59102 0.1984,-2.90871 0.211584,-0.31769 2.738866,-3.26405 5.463255,-3.23356 2.724367,0.0306 5.225429,0.96751 6.210261,2.64121 0.467202,0.79403 0.827107,2.65185 -0.790922,3.02121 -0.616859,0.14083 -0.970515,-1.73935 -2.599532,-1.78872 -1.829894,-0.0552 -2.652904,0.34763 -3.814218,1.79782 z"
id="path996-7-0-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 28.381385,44.96545 c -0.764898,0.14778 -1.288187,-1.49795 -2.243991,-1.88353 -0.955814,-0.38558 -3.545622,0.005 -5.038941,1.2692 -1.493333,1.26414 -1.49288,-1.86347 -1.498711,-2.37778 -0.0058,-0.51427 1.675581,-1.13309 3.356757,-1.32124 1.681184,-0.18814 3.200018,0.4344 4.065904,1.29736 0.813167,0.8104 1.358957,3.01601 1.358957,3.01601 z"
id="path1043-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -5.784426,53.87666 c 0.722314,-0.32474 1.7996,1.18873 2.892565,1.34949 1.092961,0.16079 2.966473,0.12782 4.050984,-1.47553 1.084512,-1.6034 3.559774,0.57893 3.737333,1.08859 0.177561,0.50963 -2.135025,1.48332 -3.768243,2.06132 -1.633214,0.57798 -3.373269,0.31274 -4.534879,-0.34328 -1.090874,-0.61606 -2.37776,-2.68059 -2.37776,-2.68059 z"
id="path1043-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 15.821902,52.87711 c -0.55043,-0.30014 -1.345893,1.09117 -2.17046,1.2373 -0.824563,0.14614 -2.241931,0.11259 -3.082593,-1.36518 -0.840665,-1.4778 -2.965156,0.28093 -3.092947,0.74978 -0.127793,0.46881 1.913899,1.615 3.15648,2.14983 1.242578,0.53483 2.555211,0.29364 3.425381,-0.30826 0.817178,-0.56523 1.764139,-2.46347 1.764139,-2.46347 z"
id="path1043-6-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 8.921312,46.7851 c -0.0943,-0.004 -0.179196,0.0186 -0.248857,0.0702 l -0.315511,0.23141 a 1.1317132,0.62550769 47.670465 0 0 -0.0873,0.0463 1.1317132,0.62550769 47.670465 0 0 0.230159,1.23215 1.1317132,0.62550769 47.670465 0 0 1.147885,0.5334 c 7.56e-4,4.5e-4 0.0013,10e-4 0.002,0.002 l 0.01106,-0.006 a 1.1317132,0.62550769 47.670465 0 0 0.07841,-0.043 1.1317132,0.62550769 47.670465 0 0 0.01912,-0.0159 l 0.348961,-0.21018 c 0.06972,-0.0516 0.115503,-0.12509 0.138626,-0.21326 0.06945,-0.26449 -0.06436,-0.6636 -0.368769,-1.01942 C 9.572685,47.037 9.204189,46.79675 8.9213,46.7859 Z m 0.92078,2.50328 a 0.60069764,0.94038834 17.456034 0 0 -0.759587,0.71724 0.60069764,0.94038834 17.456034 0 0 0.187474,1.04622 c 4.4e-5,7.1e-4 -1.09e-4,0.001 -6.5e-5,0.002 l 0.01121,0.005 a 0.60069764,0.94038834 17.456034 0 0 0.07586,0.037 0.60069764,0.94038834 17.456034 0 0 0.02153,0.006 L 9.734365,51.26 c 0.07838,0.0273 0.161124,0.028 0.243821,0.007 0.248164,-0.0649 0.495103,-0.33256 0.616427,-0.70267 0.161762,-0.49347 0.0989,-0.97956 -0.214569,-1.08844 l -0.353321,-0.12396 a 0.60069764,0.94038834 17.456034 0 0 -0.08396,-0.0425 0.60069764,0.94038834 17.456034 0 0 -0.100675,-0.0208 z m -0.866111,2.30991 a 0.5253434,0.87258976 62.224262 0 0 -0.62859,0.15888 0.5253434,0.87258976 62.224262 0 0 -0.539159,0.79303 c -4.89e-4,5.6e-4 -0.0011,9.3e-4 -0.0016,0.002 l 0.0044,0.009 a 0.5253434,0.87258976 62.224262 0 0 0.0278,0.0686 0.5253434,0.87258976 62.224262 0 0 0.01132,0.0179 l 0.139636,0.30742 c 0.03573,0.0632 0.09152,0.11157 0.161343,0.14525 0.209454,0.10101 0.546751,0.0692 0.864636,-0.10278 0.423844,-0.22924 0.690779,-0.58414 0.547789,-0.83669 L 9.40307,51.87504 A 0.5253434,0.87258976 62.224262 0 0 9.3734,51.80014 0.5253434,0.87258976 62.224262 0 0 8.976027,51.59827 Z"
id="path1092-6-8"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 5.498097,45.29984 -1.283518,0.59717 c -1.84659,1.34386 -2.649943,2.72191 -2.70841,3.24103 -0.05846,0.51911 -0.339687,1.70371 0.577036,3.21566 0.514103,0.9797 1.59456,1.34434 2.153346,1.59296 0.338568,0.19827 0.638388,0.6327 0.724283,0.80109 0.02972,-0.13198 0.261583,-0.81468 -0.180421,-1.0366 l 0.04177,-0.0778 c 0.0045,-0.006 0.0089,-0.0116 0.01298,-0.0177 0.0129,-0.0203 0.02344,-0.0421 0.03155,-0.0651 l 0.0055,-0.0107 c -5.12e-4,-5.5e-4 -0.0011,-0.001 -0.0015,-0.002 C 4.951133,53.28879 4.744773,52.9396 4.383048,52.71267 4.183118,52.58755 3.960282,52.51593 3.765317,52.51412 l -1.7e-5,5.3e-4 c -0.187746,-0.002 -0.334612,0.0612 -0.409388,0.17568 -0.01412,0.0223 -0.02546,0.0463 -0.03382,0.0719 l -0.0022,0.004 C 3.1482,52.58642 3.004565,52.38271 2.916305,52.14225 c 0.03816,9.5e-4 0.07622,-0.003 0.113637,-0.0129 l 0.362574,-0.13426 c 0.0083,-0.002 0.01639,-0.003 0.02447,-0.005 0.02692,-0.008 0.05301,-0.0188 0.07808,-0.0326 l 0.01153,-0.005 c 9.1e-5,-7.8e-4 -5e-5,-5.2e-4 6.3e-5,-0.002 0.261262,-0.14942 0.368607,-0.58631 0.253617,-1.03218 -0.114626,-0.44292 -0.415364,-0.76523 -0.712461,-0.76358 -0.03475,-1e-4 -0.06881,0.005 -0.101777,0.0139 -0.02957,0.009 -0.05812,0.0209 -0.08544,0.0366 l -0.06365,0.0182 C 2.842428,50.00697 2.91609,49.80405 3.01714,49.60794 l 0.14316,0.0992 c 0.0058,0.006 0.01182,0.012 0.01805,0.0176 0.02299,0.0187 0.04857,0.0348 0.07654,0.0479 l 0.0096,0.006 c 8.02e-4,-2.4e-4 0.0013,-7.5e-4 0.0021,-9.3e-4 0.293987,0.13187 0.793248,-0.0626 1.179477,-0.45933 0.435309,-0.44762 0.573464,-0.99184 0.308569,-1.21553 -0.02492,-0.0204 -0.0529,-0.0375 -0.08367,-0.0513 l -0.04633,-0.0387 C 5.5528,47.85847 6.304005,46.3571 6.517272,45.85815 6.618205,45.62199 6.724684,45.66639 6.280892,45.18557 Z"
id="path1092-6-8-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 13.569272,45.01585 c 0.01496,0.0931 0.05324,0.17212 0.117366,0.23037 l 0.288569,0.26425 c 0.01787,0.0289 0.03877,0.0545 0.06251,0.0765 0.256693,0.23285 0.777506,0.0241 1.163488,-0.46633 0.342079,-0.4354 0.468629,-0.95603 0.298966,-1.22995 3.93e-4,-8.7e-4 7.59e-4,-9.7e-4 0.0017,-0.002 l -0.0087,-0.009 c -0.01675,-0.0255 -0.03597,-0.0485 -0.05751,-0.0685 -0.0062,-0.005 -0.01271,-0.0106 -0.01932,-0.0156 L 15.142057,43.4944 c -0.06423,-0.0583 -0.145237,-0.0889 -0.236225,-0.0943 -0.272957,-0.0167 -0.638259,0.1927 -0.927778,0.56073 -0.289509,0.36803 -0.453176,0.77635 -0.40857,1.05591 z m 2.275275,-1.39188 c 0.03785,0.29477 0.397432,0.55013 0.851765,0.6049 0.457188,0.0549 0.875993,-0.10941 0.989471,-0.38817 7.68e-4,-2e-4 9.97e-4,-10e-5 0.002,-3.3e-4 l 0.0031,-0.012 c 0.01015,-0.0267 0.01736,-0.054 0.02151,-0.0816 6.61e-4,-0.007 0.0011,-0.0148 0.0014,-0.0223 l 0.08563,-0.37988 c 0.01152,-0.0822 -0.004,-0.1635 -0.04098,-0.24045 -0.11215,-0.2307 -0.42284,-0.42063 -0.809514,-0.46734 -0.515562,-0.0623 -0.980014,0.0943 -1.025591,0.42298 l -0.05257,0.37073 c -0.01214,0.0295 -0.02058,0.0598 -0.02528,0.0906 -0.0048,0.0339 -0.0051,0.0683 -7.7e-4,0.1028 z m 2.427195,0.63016 c 0.02246,0.14446 0.103035,0.30273 0.22341,0.43882 0.21859,0.24659 0.517364,0.3657 0.705813,0.28138 4.89e-4,3.3e-4 9.37e-4,6.9e-4 0.0018,8.1e-4 l 0.0064,-0.004 c 0.01782,-0.008 0.0343,-0.0185 0.04935,-0.0303 0.0042,-0.004 0.0083,-0.007 0.01228,-0.0109 l 0.218697,-0.14706 c 0.04383,-0.0354 0.07293,-0.0834 0.0883,-0.13955 0.0461,-0.16849 -0.032,-0.41168 -0.216654,-0.62034 -0.246245,-0.27823 -0.566147,-0.423 -0.741362,-0.28142 l -0.198533,0.15926 c -0.01958,0.008 -0.03763,0.0197 -0.05396,0.0327 -0.08279,0.0666 -0.117045,0.18182 -0.09546,0.32114 z"
id="path1092-6-8-5"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccc" />
<path
style="vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 11.310294,44.58415 c -0.239593,0.24976 -1.202043,1.43758 -0.371221,2.53692 0.358999,0.17692 0.68363,0.28389 0.855373,0.20456 0.511212,-0.23613 2.082383,-1.05571 2.101855,-1.84043 1.161315,-1.45018 1.984545,-1.85304 3.814441,-1.7978 1.607517,0.0492 1.973619,1.87622 2.575756,1.78919 -0.171458,-0.51237 -0.206918,-0.40948 -0.536226,-1.15943 -1.858435,-1.87473 -2.113789,-1.63744 -4.329315,-1.76077 -1.630535,0.17504 -2.933476,0.81646 -4.110663,2.02776 z"
id="path996-7-0-9-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 7.452787,47.46111 c -0.783843,-0.0962 -1.36111,-1.77135 -1.551878,-2.2586 -0.19077,-0.48725 1.779369,-1.74971 2.056627,-1.92338 0.277253,-0.17366 2.59509,0.24693 2.894251,0.47057 0.299159,0.22365 3.023249,2.81023 2.749558,5.27815 -0.273696,2.46792 -1.434967,4.64272 -3.198434,5.36873 -0.836624,0.34441 -2.72863,0.48522 -2.954,-1.01921 -0.08593,-0.57355 1.827923,-0.70646 2.02274,-2.17902 C 9.690493,49.54421 8.800954,48.6593 7.452787,47.46111 Z"
id="path996-7-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<path
style="fill:#ffddc2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -7.895317,10.44663 c -0.258467,0.61988 -0.442892,1.09003 -0.627128,1.41992 -0.284471,0.50937 -1.3139,0.4107 -0.981938,-0.3667 0.16396,-0.41735 0.383603,-0.9434 0.671956,-1.49533 0.288352,-0.55192 1.19558,-0.17778 0.93711,0.44211 z"
id="path867-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csccc" />
<path
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 11.223015,46.08265 C 10.92698,45.94171 10.63832,45.70954 10.382854,45.41947 10.249756,45.26693 10.144548,45.05335 10.157056,44.8697 c 8.53e-4,-0.0928 0.02623,-0.17528 0.08367,-0.21845 0.148531,-0.14163 0.382248,-0.13829 0.607821,-0.0479 0.272645,0.10382 0.544281,0.30399 0.784393,0.55039 0.168672,0.17898 0.245614,0.4512 0.216363,0.65349 -0.026,0.2214 -0.164647,0.39595 -0.372587,0.35515 -0.08467,-0.01 -0.185413,-0.0417 -0.253697,-0.0797 z"
id="path867-4-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 15.393441,41.02903 c -0.231103,0.0769 -0.503221,0.0957 -0.785816,0.0624 -0.147929,-0.0182 -0.310774,-0.0876 -0.394621,-0.20303 -0.04536,-0.0554 -0.07223,-0.11789 -0.0622,-0.17452 0.01113,-0.16416 0.140283,-0.28869 0.30799,-0.35729 0.200018,-0.0862 0.447049,-0.11474 0.699707,-0.0989 0.180384,0.0147 0.356769,0.13398 0.440675,0.26948 0.09512,0.14505 0.105651,0.32334 -0.02795,0.41175 -0.05098,0.0401 -0.121762,0.0758 -0.177773,0.0902 z"
id="path867-4-7-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 0.375943,45.98872 c -0.06491,0.23474 -0.200865,0.47122 -0.385958,0.68734 -0.09754,0.11269 -0.245913,0.20924 -0.388454,0.21458 -0.07125,0.007 -0.138146,-0.005 -0.179577,-0.0455 -0.130131,-0.10069 -0.16158,-0.27734 -0.125113,-0.45482 0.03987,-0.21412 0.153787,-0.43517 0.307685,-0.63617 0.112743,-0.14158 0.310033,-0.22162 0.469301,-0.21581 0.173458,0.002 0.327371,0.0925 0.326352,0.25262 0.0048,0.0647 -0.0049,0.14333 -0.02415,0.19787 z"
id="path867-4-7-4-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
style="fill:#fffdfb;fill-opacity:0.461187;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -3.883413,46.03266 c -0.121619,0.21101 -0.312455,0.40591 -0.545767,0.5688 -0.122653,0.0846 -0.290472,0.14101 -0.429809,0.11048 -0.07067,-0.0112 -0.132394,-0.0398 -0.162457,-0.089 -0.100773,-0.13007 -0.08699,-0.30896 -0.0072,-0.47166 0.09221,-0.19731 0.25785,-0.3828 0.457173,-0.53886 0.144605,-0.10884 0.355649,-0.13694 0.508389,-0.0914 0.167555,0.0448 0.293792,0.17148 0.252702,0.32628 -0.01154,0.0639 -0.04066,0.13752 -0.07292,0.18552 z"
id="path867-4-7-4-4-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<g
id="g1928"
transform="translate(-49.650356,-111.96552)">
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667"
d="m 50.943081,151.14101 c -0.400341,-0.25283 0.512053,-1.42428 0.811945,-1.68151 0.299889,-0.25723 -0.191703,1.92451 -0.811945,1.68151 z"
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:transform-center-y="-0.29778724"
inkscape:transform-center-x="0.83927927"
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-0"
d="m 51.83521,151.4665 c -0.414013,-0.35768 0.551389,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.22382,2.76306 -0.867104,2.42223 z"
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:transform-center-y="0.70487957"
inkscape:transform-center-x="0.84080235"
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-7"
d="m 52.816217,151.19387 c -0.414012,-0.35768 0.551389,-2.0495 0.867105,-2.42224 0.315714,-0.37273 -0.223821,2.76306 -0.867105,2.42224 z"
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
id="g1923"
transform="translate(-49.650356,-111.96552)">
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-8"
d="m 59.278028,149.60677 c -0.414013,-0.35768 0.551388,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.223821,2.76305 -0.867104,2.42223 z"
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-6"
d="m 60.167005,149.36159 c -0.414013,-0.35768 0.551389,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.22382,2.76306 -0.867104,2.42223 z"
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-88"
d="m 61.157788,148.82481 c -0.348754,-0.27043 0.457468,-1.54143 0.721628,-1.82117 0.26416,-0.27974 -0.180335,2.07953 -0.721628,1.82117 z"
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<g
id="g1182-9-2-0-9"
transform="rotate(1.7981645,3593.9286,-1519.9732)"
style="opacity:0.7">
<path
inkscape:connector-curvature="0"
id="path1176-2-9-5-2"
d="m 40.726561,129.67568 c 1.767228,-2.45002 18.796875,-6.0648 19.841146,-5.30168 1.044271,0.76312 0.48472,14.54623 -0.8407,14.98803 -1.325419,0.44181 -19.643074,-6.71419 -19.000446,-9.68635 z"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cscc" />
<path
inkscape:connector-curvature="0"
id="path903-5-2-0-3-9-2"
d="m 60.726494,124.26543 c 0.404414,5.02307 0.435388,9.41405 -1.014863,15.08667 8.711791,-2.57943 13.404263,-4.12319 13.879861,-4.38156 0.940559,-0.51094 -0.308607,-1.55065 -1.256211,-2.16331 -0.326401,-0.21104 -5.870691,-4.30227 -11.608787,-8.5418 z"
style="fill:#f1680d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
sodipodi:nodetypes="ccccc" />
<path
inkscape:connector-curvature="0"
id="path920-9-6-9-4-4"
d="m 46.538701,114.1089 c -0.344308,0.0228 -0.660027,0.26659 -0.852044,0.88022 -0.157516,0.91528 -2.552423,7.97512 -4.942209,14.76753 4.418276,-1.57951 11.65357,-4.00063 20.167587,-5.35385 -6.462069,-4.77428 -13.248565,-9.79477 -13.562741,-10.01471 -0.257937,-0.18058 -0.542798,-0.2969 -0.810593,-0.27919 z"
style="fill:#211f20;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path863-7-3-8-0-6-7"
d="m 40.767412,129.66988 c -2.218301,6.30764 -4.442554,12.41547 -4.868738,13.14656 -0.882803,1.51438 1.440916,3.15275 2.310309,2.80983 0.428003,-0.16884 12.908937,-3.7115 21.389603,-6.22235 -6.696977,-3.92647 -14.608653,-7.63903 -18.831174,-9.73404 z"
style="fill:#737373;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="ccccc" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 30 KiB

340
public/images/avatars/9.svg Normal file
View File

@ -0,0 +1,340 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="250"
height="250"
viewBox="0 0 66.145832 66.145837"
version="1.1"
id="svg1435"
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
sodipodi:docname="9.svg">
<defs
id="defs1429">
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient1738"
id="radialGradient1740-1-7"
cx="56.455734"
cy="167.68628"
fx="56.455734"
fy="167.68628"
r="20.579618"
gradientTransform="matrix(1.2029851,0,0,0.16716418,-64.691948,29.26372)"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient1738">
<stop
style="stop-color:#838383;stop-opacity:1"
offset="0"
id="stop1734" />
<stop
style="stop-color:#bfbfbf;stop-opacity:0"
offset="1"
id="stop1736" />
</linearGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="198.59903"
inkscape:cy="135.78261"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
units="px"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1851"
inkscape:window-height="1016"
inkscape:window-x="0"
inkscape:window-y="1077"
inkscape:window-maximized="1" />
<metadata
id="metadata1432">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(46.223311,6.4966985)">
<g
id="g4030"
transform="translate(-19.473078,-2.8529046)">
<path
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 12.584863,48.37267 c -0.12646,0.82901 -1.57866,1.40697 -2.04689,1.56259 -0.46824,0.15561 -1.84118,-1.61594 -1.99237,-1.92981 -0.15117,-0.31389 0.35104,-2.75171 0.57559,-3.0495 0.22455,-0.29781 2.78805,-2.95479 5.10319,-2.41649 2.31511,0.5383 4.31337,1.99697 4.91781,3.95579 0.28673,0.92928 0.33344,2.96739 -1.09575,3.05884 -0.54484,0.0348 -0.58305,-2.02582 -1.96302,-2.38071 -1.5501,-0.39867 -2.30714,-0.1238 -3.49856,1.19929 z"
id="path996-7-1-7-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<ellipse
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.789;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#radialGradient1740-1-7);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path1732-7-3"
cx="3.2234662"
cy="57.294899"
rx="24.756975"
ry="3.4401751" />
<path
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 18.773003,39.2087 c -0.37192,0.69919 1.06674,1.87447 1.15466,2.9757 0.0879,1.10121 -0.0692,2.96841 -1.74098,3.94418 -1.67178,0.9758 0.0514,3.93794 0.54817,4.1489 0.4967,0.21102 1.91182,-2.37953 2.59686,-3.97081 0.68505,-1.59128 0.53579,-3.3451 -0.0417,-4.54766 -0.54237,-1.12933 -2.51699,-2.55031 -2.51699,-2.55031 z"
id="path1043-7-2-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="fill:#fffdfb;fill-opacity:0.461187;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 11.864573,44.90517 c 0.21865,-0.10732 0.42574,-0.28483 0.60375,-0.50683 0.0926,-0.1167 0.15973,-0.28064 0.13872,-0.42154 -0.006,-0.0713 -0.031,-0.13477 -0.078,-0.16805 -0.12335,-0.10887 -0.30249,-0.10732 -0.47016,-0.0383 -0.20298,0.0789 -0.39905,0.2319 -0.56799,0.42042 -0.11823,0.13706 -0.16025,0.34577 -0.12491,0.50121 0.0336,0.17017 0.15161,0.30452 0.30869,0.27391 0.0646,-0.007 0.13993,-0.0314 0.18995,-0.0604 z"
id="path867-4-7-4-4-3-7-2-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -0.358091,40.18324 c 0.511193,0.60487 -0.646845,2.05748 -0.500238,3.15242 0.146605,1.09496 0.694506,2.88686 2.534622,3.4876 1.84014,0.60077 0.78136,3.85998 0.34034,4.1711 -0.44097,0.31111 -2.371201,-1.92215 -3.376832,-3.33289 -1.005626,-1.41073 -1.230097,-3.15651 -0.91955,-4.45391 0.291631,-1.2184 1.921658,-3.02432 1.921658,-3.02432 z"
id="path1043-7-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="vector-effect:none;fill:#ffb370;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 7.318023,48.65315 c 0.29868,0.7836 1.84017,1.04186 2.3307,1.0951 0.49054,0.0532 1.45844,-1.96829 1.53991,-2.30703 0.0815,-0.33873 -0.9242,-2.61552 -1.20657,-2.85919 -0.28235,-0.24367 -3.34916,-2.29938 -5.49841,-1.28432 -2.14923,1.01505 -3.7944,2.86281 -3.97156,4.90508 -0.084,0.96889 0.30072,2.97088 1.71699,2.75848 0.53991,-0.081 0.1421,-2.10326 1.416,-2.74156 1.43098,-0.71702 2.22898,-0.60821 3.67294,0.43344 z"
id="path996-7-1-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<path
style="fill:#fffdfb;fill-opacity:0.461187;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1.155873,45.12846 c -0.12162,0.21101 -0.31245,0.40591 -0.54576,0.5688 -0.12266,0.0846 -0.29047,0.14101 -0.4298,0.11048 -0.0707,-0.0112 -0.132401,-0.0398 -0.162461,-0.089 -0.10077,-0.13007 -0.087,-0.30896 -0.007,-0.47166 0.0922,-0.19731 0.257851,-0.3828 0.457161,-0.53886 0.14461,-0.10884 0.35565,-0.13694 0.50839,-0.0914 0.16756,0.0448 0.29379,0.17148 0.2527,0.32628 -0.0115,0.0639 -0.0407,0.13752 -0.0729,0.18552 z"
id="path867-4-7-4-4-3-7-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 24.330553,24.35873 c 2.31997,11.26779 -3.09502,18.71357 -11.26023,20.32123 -7.24251,1.42598 -16.240015,-5.91537 -17.019884,-14.65833 -0.614061,-6.88401 3.527668,-12.0123 11.742184,-13.29711 8.00195,-1.25157 15.51172,2.65 16.53793,7.63421 z"
id="path865-2-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssss" />
<path
style="fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 6.508383,-0.58117 c 0.71935,-1.13179 2.57749,-1.89594 3.35225,-0.6688 0.4587,0.72658 22.94523,27.90959 23.6179,28.62291 0.92296,0.9787 1.01704,2.48082 -0.22304,3.04732 -1.24617,0.295 -44.381616,1.28468 -45.495355,1.41096 -1.113731,0.12632 -3.733631,-1.63436 -2.258761,-3.08235 1.47488,-1.44797 20.135166,-27.4296 21.007006,-29.33004 z"
id="path863-4-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csscscc" />
<g
id="g1182-9-2"
transform="rotate(14.728606,467.3448,-85.064068)"
style="opacity:0.7">
<path
inkscape:connector-curvature="0"
id="path1176-2-9"
d="m 40.726561,129.67568 c 1.767228,-2.45002 18.796875,-6.0648 19.841146,-5.30168 1.044271,0.76312 0.48472,14.54623 -0.8407,14.98803 -1.325419,0.44181 -19.643074,-6.71419 -19.000446,-9.68635 z"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cscc" />
<path
inkscape:connector-curvature="0"
id="path903-5-2-0-3"
d="m 60.726494,124.26543 c 0.404414,5.02307 0.435388,9.41405 -1.014863,15.08667 8.711791,-2.57943 13.404263,-4.12319 13.879861,-4.38156 0.940559,-0.51094 -0.308607,-1.55065 -1.256211,-2.16331 -0.326401,-0.21104 -5.870691,-4.30227 -11.608787,-8.5418 z"
style="fill:#f1680d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
sodipodi:nodetypes="ccccc" />
<path
inkscape:connector-curvature="0"
id="path920-9-6-9"
d="m 46.538701,114.1089 c -0.344308,0.0228 -0.660027,0.26659 -0.852044,0.88022 -0.157516,0.91528 -2.552423,7.97512 -4.942209,14.76753 4.418276,-1.57951 11.65357,-4.00063 20.167587,-5.35385 -6.462069,-4.77428 -13.248565,-9.79477 -13.562741,-10.01471 -0.257937,-0.18058 -0.542798,-0.2969 -0.810593,-0.27919 z"
style="fill:#211f20;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path863-7-3-8-0"
d="m 40.767412,129.66988 c -2.218301,6.30764 -4.442554,12.41547 -4.868738,13.14656 -0.882803,1.51438 1.440916,3.15275 2.310309,2.80983 0.428003,-0.16884 12.908937,-3.7115 21.389603,-6.22235 -6.696977,-3.92647 -14.608653,-7.63903 -18.831174,-9.73404 z"
style="fill:#737373;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="ccccc" />
</g>
<path
style="fill:#ffddc2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 2.686053,8.2707 c -0.38644,0.54929 -0.6682,0.96842 -0.91944,1.25064 -0.38792,0.43577 -1.37162,0.11675 -0.87936,-0.57043 0.25036,-0.372 0.5786,-0.83808 0.97951,-1.31457 0.40092,-0.47647 1.20573,0.0851 0.81929,0.63436 z"
id="path867-4-9-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csccc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 6.432423,47.55076 c 0.29502,0.90429 2.1661,1.24696 2.76418,1.32293 0.59805,0.076 1.97375,-2.20317 2.10507,-2.58755 0.13129,-0.3844 -0.82652,-3.6931 -1.15113,-3.98018 -0.32466,-0.28705 -4.15824,-2.48473 -6.89347,-1.39178 -2.73523,1.09297 -4.55588,3.39176 -4.961506,5.71905 -0.192426,1.10412 -0.273166,3.06229 1.487287,2.86346 0.671109,-0.0758 0.550039,-1.86492 2.174629,-2.55464 1.82492,-0.77474 2.79583,-0.62576 4.47494,0.60871 z"
id="path996-6-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -2.023855,38.92691 c 0.518431,0.63146 -0.819956,2.09026 -0.72478,3.21452 0.09514,1.12427 0.584386,2.97158 2.542082,3.63092 1.957746,0.65933 0.251475,3.67603 -0.244136,3.9838 -0.495592,0.30779 -2.085625,-1.73101 -3.092657,-3.19924 -1.007012,-1.46824 -1.148694,-3.26053 -0.73705,-4.58095 0.386568,-1.24001 2.256541,-3.04905 2.256541,-3.04905 z"
id="path1043-6-6-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 2.682013,42.7426 c -0.16114,0.20897 -0.38897,0.3919 -0.65467,0.53456 -0.13944,0.074 -0.31983,0.11153 -0.45591,0.0601 -0.07,-0.0211 -0.12772,-0.0597 -0.14923,-0.11713 -0.0793,-0.15273 -0.0337,-0.34219 0.076,-0.50541 0.12853,-0.19857 0.32945,-0.37457 0.55942,-0.51452 0.1661,-0.0968 0.38531,-0.0984 0.53234,-0.029 0.16203,0.071 0.26795,0.22315 0.19888,0.38313 -0.0229,0.0667 -0.0656,0.14157 -0.10682,0.18855 z"
id="path867-4-7-4-4-9-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 21.805913,39.88817 c -0.57966,0.57577 0.60425,2.1625 0.39581,3.27136 -0.20841,1.10887 -0.88206,2.8972 -2.89643,3.35507 -2.01441,0.45786 -0.62214,3.63172 -0.16021,3.98806 0.46191,0.35634 2.25007,-1.5111 3.4005,-2.8699 1.1504,-1.35881 1.47271,-3.12757 1.19678,-4.48286 -0.25911,-1.27277 -1.93645,-3.26173 -1.93645,-3.26173 z"
id="path1043-6-6-0-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccsc" />
<path
style="vector-effect:none;fill:#fd9c50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 12.575363,47.61321 c -0.38501,0.86979 -2.28115,1.02138 -2.88385,1.03645 -0.60267,0.0151 -1.7407,-2.39157 -1.83245,-2.78727 -0.0917,-0.39571 1.19596,-3.59051 1.54795,-3.84327 0.35204,-0.25273 4.38831,-2.05124 6.99891,-0.68713 2.6106,1.36411 4.18931,3.83532 4.35737,6.19171 0.0797,1.11793 -0.0381,3.07421 -1.76939,2.69827 -0.66,-0.14329 -0.35852,-1.911 -1.90499,-2.76156 -1.73716,-0.95542 -2.71815,-0.90544 -4.51355,0.1528 z"
id="path996-6-5-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssssc" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 9.944033,47.83238 c 0.31333,-0.27734 -2.26502,-0.52171 -1.37364,-0.56165 2.14829,-0.0962 5.49858,-1.51022 6.21721,-1.48763 0.6664,0.1099 2.36967,0.53811 3.05484,1.13802 0.82895,0.85105 0.83383,2.02217 0.89791,2.64974 0.0877,0.39759 0.4307,0.84401 0.57403,0.98791 -0.14548,-0.0195 -0.92467,-0.0455 -1.00126,-0.55111 l -0.0941,0.0118 c -0.008,0.002 -0.0149,0.004 -0.0226,0.006 -0.0252,0.005 -0.0512,0.007 -0.0775,0.007 l -0.0129,0.002 c -3.2e-4,-6.8e-4 -5.7e-4,-0.001 -0.002,-0.002 -0.28284,-0.0135 -0.57039,-0.33903 -0.67954,-0.76931 -0.06,-0.23773 -0.0573,-0.47796 0.007,-0.66596 l 5.1e-4,1.6e-4 c 0.0622,-0.1811 0.17703,-0.29925 0.31996,-0.32939 0.0277,-0.005 0.0562,-0.008 0.0852,-0.006 l 0.004,-5.4e-4 c -0.12574,-0.23052 -0.28555,-0.44277 -0.50196,-0.61521 -0.0121,0.037 -0.0289,0.0722 -0.052,0.10451 l -0.26149,0.29948 c -0.005,0.007 -0.008,0.0147 -0.0131,0.0219 -0.0177,0.0228 -0.0374,0.0441 -0.0601,0.0632 l -0.009,0.009 c -7.9e-4,-1.8e-4 -4.8e-4,-2.3e-4 -0.002,-6e-4 -0.24244,0.19659 -0.72706,0.14054 -1.14495,-0.13244 -0.41499,-0.27154 -0.64276,-0.67799 -0.53961,-0.96288 0.0118,-0.0335 0.0282,-0.0645 0.049,-0.0927 0.0195,-0.0251 0.0413,-0.0483 0.0667,-0.0687 l 0.0404,-0.0545 c -0.23747,-0.0352 -0.47068,-0.0383 -0.70628,-0.0127 l 0.0528,0.17372 c 0.005,0.008 0.008,0.0157 0.0118,0.0238 0.0114,0.0289 0.0191,0.0594 0.023,0.091 l 0.003,0.0119 c -5e-4,6.7e-4 -0.001,6.8e-4 -0.002,0.002 0.0348,0.33056 -0.33508,0.73947 -0.87378,0.96604 -0.60764,0.25518 -1.21283,0.18962 -1.35172,-0.14644 -0.0124,-0.0314 -0.0204,-0.0645 -0.024,-0.0992 l -0.0239,-0.0586 c -0.47527,0.83566 -2.00716,0.85196 -2.59159,0.87508 -0.27661,0.0109 -0.4265,0.2024 -0.84718,-0.0824 -0.16837,-0.11397 0.51714,-0.44149 0.85851,-0.74365 z"
id="path1092-6-8-2-4-4-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cscccccccccccccccccccccccccccccccccccccccssc" />
<path
style="fill:#ffddc2;fill-opacity:0.60274;fill-rule:evenodd;stroke:none;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 13.915053,43.51085 c 0.26286,0.0232 0.55176,-0.0213 0.83656,-0.12041 0.14884,-0.0526 0.29853,-0.16006 0.35269,-0.29509 0.0319,-0.0658 0.0425,-0.13442 0.0147,-0.18914 -0.0588,-0.16174 -0.22919,-0.25633 -0.42362,-0.28596 -0.23318,-0.0397 -0.49872,-0.0108 -0.75737,0.0638 -0.18367,0.0568 -0.33312,0.21718 -0.38156,0.37234 -0.0573,0.16735 -0.017,0.3483 0.14757,0.40567 0.0647,0.0283 0.14863,0.0475 0.21112,0.0489 z"
id="path867-4-7-4-4-9-8-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<g
transform="matrix(1.0115339,0.19459998,0.05218655,0.99863735,-49.813788,-123.05967)"
id="g1928-4-5">
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-9-9"
d="m 50.943081,151.14101 c -0.400341,-0.25283 0.512053,-1.42428 0.811945,-1.68151 0.299889,-0.25723 -0.191703,1.92451 -0.811945,1.68151 z"
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:transform-center-y="-0.29778724"
inkscape:transform-center-x="0.83927927"
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-0-0-8"
d="m 51.83521,151.4665 c -0.414013,-0.35768 0.551389,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.22382,2.76306 -0.867104,2.42223 z"
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:transform-center-y="0.70487957"
inkscape:transform-center-x="0.84080235"
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-7-9-4"
d="m 52.816217,151.19387 c -0.414012,-0.35768 0.551389,-2.0495 0.867105,-2.42224 0.315714,-0.37273 -0.223821,2.76306 -0.867105,2.42224 z"
style="fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
transform="matrix(1.0115339,0.19459998,0.05218655,0.99863735,-49.349013,-123.0278)"
id="g1923-1-8">
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-8-7-1"
d="m 59.278028,149.60677 c -0.414013,-0.35768 0.551388,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.223821,2.76305 -0.867104,2.42223 z"
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-6-7-0"
d="m 60.167005,149.36159 c -0.414013,-0.35768 0.551389,-2.0495 0.867104,-2.42223 0.315715,-0.37274 -0.22382,2.76306 -0.867104,2.42223 z"
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1667-88-1-3"
d="m 61.157788,148.82481 c -0.348754,-0.27043 0.457468,-1.54143 0.721628,-1.82117 0.26416,-0.27974 -0.180335,2.07953 -0.721628,1.82117 z"
style="opacity:1;vector-effect:none;fill:#d35034;fill-opacity:0.442922;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<path
style="fill:none;fill-rule:evenodd;stroke:#762c2c;stroke-width:0.665;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 17.147403,38.62862 c -0.72578,1.52236 -3.31918,1.62532 -4.01257,0.17633"
id="path1990-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 10.911073,47.37878 c -0.25332,-0.41608 -1.68587,0.01 -2.39585,-0.57153 -1.70983,-1.40056 -3.40344,-1.67713 -3.9663,-1.60069 -0.56288,0.0763 -1.91081,-0.17662 -3.28653,1.12273 -0.9108,0.76281 -1.03415,1.92743 -1.161401,2.54529 -0.12745,0.38668 -0.513894,0.7961 -0.671045,0.92476 0.146705,-0.005 0.924526,0.0483 1.051876,-0.44698 l 0.0924,0.0212 c 0.008,0.003 0.0144,0.006 0.0219,0.008 0.0246,0.008 0.0502,0.0123 0.0764,0.0143 l 0.0127,0.003 c 4e-4,-6.2e-4 7.4e-4,-10e-4 0.002,-10e-4 0.28275,0.0152 0.60177,-0.27957 0.75389,-0.69661 0.0837,-0.23043 0.10541,-0.4697 0.06,-0.66329 l -5.2e-4,1.1e-4 c -0.0436,-0.18646 -0.14584,-0.31562 -0.28498,-0.36006 -0.027,-0.008 -0.0551,-0.0133 -0.0842,-0.0149 l -0.004,-9.9e-4 c 0.14841,-0.21661 0.32887,-0.4116 0.56163,-0.56126 0.008,0.038 0.0214,0.0748 0.0412,0.10923 l 0.22985,0.32441 c 0.004,0.007 0.007,0.0155 0.0108,0.0231 0.0153,0.0245 0.0328,0.0477 0.0534,0.069 l 0.008,0.0102 c 8e-4,-9e-5 5e-4,-1.8e-4 0.002,-4.1e-4 0.22131,0.22012 0.70911,0.21339 1.15247,-0.0159 0.44034,-0.22816 0.70807,-0.60947 0.63427,-0.90335 -0.008,-0.0345 -0.0216,-0.067 -0.0393,-0.0972 -0.0169,-0.027 -0.0362,-0.0522 -0.0594,-0.0751 l -0.0347,-0.0583 c 0.23981,-0.0109 0.47216,0.009 0.70395,0.0588 l -0.0701,0.16748 c -0.005,0.007 -0.01,0.0148 -0.0142,0.0225 -0.0142,0.0276 -0.025,0.0572 -0.032,0.0882 l -0.004,0.0116 c 4.3e-4,7.3e-4 10e-4,7.8e-4 10e-4,0.002 -0.0681,0.32534 0.25854,0.76957 0.77155,1.04949 0.5787,0.31535 1.18741,0.31137 1.35959,-0.009 0.0155,-0.0299 0.0268,-0.0621 0.0339,-0.0962 l 0.0297,-0.0559 c 0.38828,0.87946 2.47427,0.97095 3.05335,1.05308 0.27409,0.0389 -0.17108,0.36438 0.2295,-0.19966 0,0 0.19336,-0.87674 0.44922,-0.96214 z"
id="path1092-6-8-2-4-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csccccccccccccccccccccccccccccccccccccccccsc" />
<ellipse
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path2118"
cx="14.803588"
cy="47.274139"
rx="1.3079523"
ry="0.79874951"
transform="rotate(7.6759952)" />
<ellipse
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cb6e3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path2118-4"
cx="-2.8669713"
cy="49.612133"
rx="1.3079523"
ry="0.79874945"
transform="rotate(-16.263777)" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.565;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 9.444513,34.46445 c -0.0899,-2.23038 3.08527,-2.59381 3.39804,-0.35169"
id="path2155"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.565;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 18.143963,33.97459 c 0.0356,-2.23216 2.99749,-2.15568 2.9522,-0.008"
id="path2155-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:#a0a0a0;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -16.116527,45.59569 c -2.408883,-0.47562 2.075505,-4.28257 2.490376,-1.71901 1.573731,-1.69717 4.004691,1.44615 3.171314,2.90774 -0.953187,1.9009 -2.116512,2.60534 -2.959495,1.44024 -0.754515,1.25185 -2.144782,1.8195 -3.317197,-0.0757 -1.095048,-1.7701 -0.494612,-2.60817 0.615002,-2.55332 z"
id="path2391"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccscc" />
<path
style="fill:none;fill-rule:evenodd;stroke:#acacac;stroke-width:0.665;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -8.032603,44.61244 c 2.067678,0.0472 2.483086,0.0145 2.483086,0.0145"
id="path2408"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#acacac;stroke-width:0.665;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -8.701671,46.08611 c 2.619815,0.0472 3.146151,0.0145 3.146151,0.0145"
id="path2408-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#acacac;stroke-width:0.665;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -8.146387,47.51472 c 2.067678,0.0472 2.483086,0.0145 2.483086,0.0145"
id="path2408-2"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#9f9f9f;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -15.712356,46.91954 c -0.434102,-0.26046 -0.573013,-0.76402 -0.468831,-1.31967 0.104185,-0.55565 0.9203,-0.95503 1.302311,-0.79875"
id="path2443"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#9f9f9f;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -12.34324,47.18374 c -0.07502,0.50065 -0.487416,0.82127 -1.040756,0.9371 -0.553342,0.11582 -1.234023,-0.48603 -1.235408,-0.89877"
id="path2443-4"
inkscape:connector-curvature="0" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 30 KiB

View File

@ -60,7 +60,8 @@ async function getProsodyFilePaths (options: RegisterServerOptions): Promise<Pro
log: path.resolve(dir, 'prosody.log'),
config: path.resolve(dir, 'prosody.cfg.lua'),
data: path.resolve(dir, 'data'),
modules: path.resolve(__dirname, '../../prosody-modules')
modules: path.resolve(__dirname, '../../prosody-modules'),
avatars: path.resolve(__dirname, '../../avatars')
}
}
@ -153,6 +154,7 @@ async function getProsodyConfig (options: RegisterServerOptions): Promise<Prosod
config.useListRoomsApi(apikey)
config.usePeertubeVCards(basePeertubeUrl)
config.useAnonymousRandomVCards(paths.avatars)
config.useTestModule(apikey, testApiUrl)

View File

@ -308,6 +308,13 @@ class ProsodyConfigContent {
}
}
useAnonymousRandomVCards (avatarPath: string): void {
if (this.anon) {
this.anon.add('modules_enabled', 'random_vcard_peertubelivechat')
this.anon.set('peertubelivechat_random_vcard_avatars_path', avatarPath)
}
}
setLog (level: ProsodyLogLevel, syslog?: ProsodyLogLevel[]): void {
let log = ''
log += 'log = {\n'

View File

@ -6,6 +6,7 @@ interface ProsodyFilePaths {
config: string
data: string
modules: string
avatars: string
}
export {