Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improving Two.js's SVG <path /> Interpretation #507

Open
adroitwhiz opened this issue Feb 11, 2021 · 7 comments
Open

Improving Two.js's SVG <path /> Interpretation #507

adroitwhiz opened this issue Feb 11, 2021 · 7 comments
Labels
Milestone

Comments

@adroitwhiz
Copy link
Contributor

What's the purpose of extrapolateScientificNotation in the SVG interpreter?

It looks like it expands scientific-notation numbers to their fullwide equivalents, but parseFloat already seems to handle parsing scientific notation just fine.

I'm considering cleaning up the SVG path parsing code--are there any test cases for particularly tricky paths?

@jonobr1
Copy link
Owner

jonobr1 commented Feb 11, 2021

Ooo, thanks @adroitwhiz ! It certainly could use a second pair of eyes.

The extrapolateScientificNotation method unwraps scientific notation into a String to put the full amount of digits in. I couldn't figure out the regex to both do the look ahead for e-14 and simultaneously not trigger a split on other simple Floats like 508.301. The problem with some browsers is that for memory purposes the float version keeps the e, but the Two.js parsing can't handle that...

Ideally this would be caught correctly when splitting the commands in RegEx, but there are a few cases to keep an eye out which is why we have these added functions to work around them:

  1. You can have sequential digits like: 45.058.48 which means 45.058, 0.48.
  2. You can exponents like 3e7 and 1.4e-12
  3. You can have optional commas and spaces to mark a different command: 45.058 0.48 or 45.058,0.48
  4. + and - can act as a separator as well: 45.058+0.48 or 45.058-0.48

Perhaps checking against Three.js would be the best option: https://github.com/mrdoob/three.js/blob/05ce38f252de5e837a579e5d4bf4ea7867d74a03/examples/jsm/loaders/SVGLoader.js

I originally PR'd Two.js's code to that, but since then there has been updates. So, they could be ahead of this codebase in terms of parsing or correct RegEx.

Hope this helps!

@adroitwhiz
Copy link
Contributor Author

/[+-]?(?:\d*\.\d+|\d+)(?:[eE][+-]\d+)?/g should do it:

[+-]?	optional sign
(?:	non-capturing group
	\d*\.\d+|	zero or more digits, followed by decimal point, followed by one or more digits, or...
	\d+ 	one or more digits
)
(?:	non-capturing group
	[eE][+-]\d+	e or E, followed by + or -, followed by one or more digits
)?	optional exponent

Running this regex via match or exec over a series of numbers (e.g. +1.2e-17.5.75-.3 8+.0.7) should split them up properly.

@jonobr1
Copy link
Owner

jonobr1 commented Feb 11, 2021

I'll give this a try tomorrow!

@jonobr1
Copy link
Owner

jonobr1 commented Feb 14, 2021

This works on the SVGs I've tested from previous issues. I'll post the SVGs in this thread as a reference. I've pushed your updates on this commit: 47b96d0

This commit also removes extrapolateScientificNotation as it's not necessary anymore. Thanks!

@jonobr1 jonobr1 changed the title Purpose of extrapolateScientificNotation? Improving Two.js's SVG <path /> Interpretation Feb 14, 2021
@jonobr1
Copy link
Owner

jonobr1 commented Feb 14, 2021

These SVGs will help determine the validity of the interpretation. If possible, the performance would be greatly increased if we didn't have to run two for statements (one to determine if the path's d attribute has polybeziers and one for reconstructing the d attribute as vertices for a new Two.Path object). Merging those steps into one loop would be amazing.

Also, I'd love to get your POV on where / how we should check in the SVGs to test against. In the future, it would be important to make sure all these SVGs are passing the tests.

chess.svg

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="45" height="45">
  <g style="opacity:1; fill:none; fill-opacity:1; fill-rule:evenodd; stroke:#000000; stroke-width:1.5; stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4; stroke-dasharray:none; stroke-opacity:1;">
    <path
      d="M 22,10 C 32.5,11 38.5,18 38,39 L 15,39 C 15,30 25,32.5 23,18"
      style="fill:#ffffff; stroke:#000000;" />
    <path
      d="M 24,18 C 24.38,20.91 18.45,25.37 16,27 C 13,29 13.18,31.34 11,31 C 9.958,30.06 12.41,27.96 11,28 C 10,28 11.19,29.23 10,30 C 9,30 5.997,31 6,26 C 6,24 12,14 12,14 C 12,14 13.89,12.1 14,10.5 C 13.27,9.506 13.5,8.5 13.5,7.5 C 14.5,6.5 16.5,10 16.5,10 L 18.5,10 C 18.5,10 19.28,8.008 21,7 C 22,7 22,10 22,10"
      style="fill:#ffffff; stroke:#000000;" />
    <path
      d="M 9.5 25.5 A 0.5 0.5 0 1 1 8.5,25.5 A 0.5 0.5 0 1 1 9.5 25.5 z"
      style="fill:#000000; stroke:#000000;" />
    <path
      d="M 15 15.5 A 0.5 1.5 0 1 1  14,15.5 A 0.5 1.5 0 1 1  15 15.5 z"
      transform="matrix(0.866,0.5,-0.5,0.866,9.693,-5.173)"
      style="fill:#000000; stroke:#000000;" />
  </g>
</svg>

dome.svg

<?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"
   width="11in"
   height="8.5in"
   viewBox="0 0 279.4 215.9"
   version="1.1"
   id="svg8">
   <g
      transform="matrix(0.65087,0,0,0.64472037,5.2991553,5.2023704)"
      id="streamgenerator_a">
     <g
        transform="translate(139.86519,50.973496)"
        id="sga-uppershell">
         <path
            id="sga-upperdome"
            d="m -124.34692,-8.5080247 c 2.05982,-6.6660983 4.11965,-13.3322293 9.4153,-18.5340613 5.29566,-5.201831 13.82637,-8.938647 22.352194,-8.938579 8.525823,6.7e-5 17.045519,3.73682 22.33554,8.938637 5.290022,5.201818 7.349973,11.868008 9.409872,18.534028"
            style="display:inline;fill:none;stroke:#000000;stroke-width:0.705556;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
     </g>
   </g>
</svg>

question-mark-dotted.svg

<svg height='300px' width='300px'  fill="#000000" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve"><path d="M50,25.804c-13.342,0-24.196,10.854-24.196,24.195c0,13.343,10.854,24.197,24.196,24.197s24.196-10.854,24.196-24.197  C74.196,36.657,63.342,25.804,50,25.804z M50,71.196c-11.688,0-21.196-9.509-21.196-21.197c0-11.688,9.509-21.195,21.196-21.195  s21.196,9.508,21.196,21.195C71.196,61.688,61.688,71.196,50,71.196z M49.755,37.207c-6.512,0.847-8.23,5.552-8.23,7.921  c0,0.829,0.672,1.5,1.5,1.5c0.829,0,1.5-0.672,1.5-1.5c0-0.173,0.063-4.224,5.617-4.946c3.497-0.45,5.287,1.147,5.788,2.8  c0.426,1.404,0.006,3.242-1.892,4.184c-5.169,2.56-5.59,5.744-5.59,9.34c0,0.828,0.672,1.5,1.5,1.5s1.5-0.672,1.5-1.5  c0-3.008,0.182-4.8,3.922-6.652c2.958-1.466,4.368-4.649,3.43-7.742C57.981,39.413,55.118,36.511,49.755,37.207z M49.951,60.583  c-0.828,0-1.5,0.672-1.5,1.5v1.264c0,0.828,0.672,1.5,1.5,1.5s1.5-0.672,1.5-1.5v-1.264C51.451,61.255,50.779,60.583,49.951,60.583z   M13.836,32.246c0.227,0.122,0.471,0.18,0.711,0.18c0.533,0,1.05-0.285,1.321-0.788c1.012-1.877,2.187-3.681,3.491-5.361  c0.508-0.654,0.39-1.597-0.265-2.104c-0.654-0.51-1.598-0.39-2.104,0.265c-1.406,1.812-2.673,3.755-3.763,5.777  C12.834,30.943,13.106,31.853,13.836,32.246z M22.663,21.957c0.365,0,0.73-0.132,1.02-0.399c1.564-1.449,3.259-2.776,5.033-3.944  c0.692-0.455,0.884-1.386,0.429-2.077c-0.455-0.692-1.386-0.883-2.077-0.429c-1.913,1.258-3.737,2.688-5.424,4.249  c-0.607,0.563-0.644,1.512-0.081,2.12C21.858,21.796,22.26,21.957,22.663,21.957z M33.722,14.678c0.203,0,0.409-0.041,0.606-0.128  c1.947-0.862,3.979-1.567,6.042-2.095c0.803-0.205,1.286-1.022,1.081-1.825c-0.206-0.803-1.021-1.291-1.825-1.081  c-2.223,0.568-4.414,1.328-6.513,2.257c-0.757,0.336-1.1,1.222-0.765,1.979C32.597,14.345,33.146,14.678,33.722,14.678z   M10.037,44.944c0.081,0.014,0.163,0.02,0.243,0.02c0.722,0,1.358-0.522,1.479-1.259c0.343-2.104,0.865-4.191,1.551-6.202  c0.268-0.784-0.151-1.637-0.936-1.904c-0.788-0.267-1.637,0.152-1.904,0.936c-0.739,2.17-1.302,4.42-1.672,6.688  C8.664,44.04,9.219,44.811,10.037,44.944z M46.548,11.396c0.043,0,0.086-0.002,0.129-0.006c2.102-0.179,4.275-0.186,6.4-0.021  c0.809,0.077,1.548-0.553,1.611-1.379c0.064-0.826-0.553-1.548-1.379-1.611c-2.285-0.18-4.625-0.171-6.887,0.022  c-0.825,0.069-1.438,0.796-1.367,1.621C45.122,10.805,45.777,11.396,46.548,11.396z M86.609,37.267  c0.699,2.012,1.234,4.095,1.592,6.194c0.124,0.731,0.759,1.248,1.477,1.248c0.084,0,0.168-0.007,0.254-0.021  c0.816-0.139,1.365-0.913,1.227-1.73c-0.385-2.262-0.962-4.508-1.715-6.675c-0.273-0.783-1.126-1.198-1.909-0.925  C86.751,35.63,86.338,36.484,86.609,37.267z M11.786,56.459c-0.352-2.092-0.531-4.237-0.536-6.375  c-0.002-0.828-0.673-1.497-1.5-1.497H9.747c-0.829,0.002-1.499,0.675-1.497,1.503c0.005,2.303,0.199,4.612,0.577,6.865  c0.123,0.733,0.759,1.252,1.478,1.252c0.083,0,0.166-0.007,0.25-0.021C11.372,58.049,11.923,57.275,11.786,56.459z M84.017,31.426  c0.273,0.498,0.787,0.78,1.317,0.78c0.243,0,0.49-0.059,0.719-0.184c0.727-0.398,0.994-1.31,0.597-2.036  c-1.1-2.009-2.376-3.944-3.796-5.752c-0.512-0.651-1.453-0.765-2.106-0.253c-0.651,0.512-0.765,1.455-0.253,2.106  C81.812,27.766,82.997,29.562,84.017,31.426z M59.388,12.396c2.064,0.514,4.103,1.205,6.058,2.056  c0.195,0.084,0.398,0.124,0.598,0.124c0.579,0,1.131-0.337,1.377-0.901c0.33-0.76-0.019-1.644-0.777-1.975  c-2.107-0.916-4.305-1.661-6.53-2.216c-0.805-0.199-1.618,0.289-1.818,1.094C58.095,11.381,58.584,12.195,59.388,12.396z   M71.081,17.481c1.785,1.159,3.487,2.477,5.061,3.915c0.288,0.264,0.65,0.394,1.013,0.394c0.406,0,0.812-0.164,1.106-0.487  c0.56-0.611,0.518-1.561-0.094-2.119c-1.695-1.55-3.529-2.969-5.451-4.218c-0.695-0.45-1.624-0.254-2.075,0.44  C70.189,16.102,70.387,17.03,71.081,17.481z M82.696,73.527c-0.652-0.508-1.596-0.393-2.105,0.262  c-1.308,1.679-2.766,3.264-4.333,4.709c-0.608,0.562-0.646,1.511-0.085,2.12c0.296,0.32,0.698,0.482,1.103,0.482  c0.364,0,0.729-0.132,1.018-0.397c1.687-1.557,3.256-3.263,4.665-5.07C83.467,74.979,83.35,74.037,82.696,73.527z M88.569,61.645  c-0.786-0.271-1.637,0.148-1.905,0.933c-0.69,2.014-1.556,3.984-2.57,5.857c-0.396,0.729-0.125,1.639,0.604,2.033  c0.228,0.123,0.472,0.182,0.714,0.182c0.532,0,1.048-0.284,1.319-0.785c1.095-2.019,2.027-4.144,2.771-6.314  C89.771,62.767,89.354,61.913,88.569,61.645z M90.25,48.328c-0.828,0-1.5,0.672-1.5,1.5V50c0,2.138-0.176,4.283-0.521,6.376  c-0.136,0.817,0.417,1.59,1.234,1.725c0.083,0.014,0.166,0.021,0.247,0.021c0.721,0,1.356-0.521,1.478-1.255  c0.373-2.255,0.563-4.564,0.563-6.866v-0.172C91.75,49,91.078,48.328,90.25,48.328z M13.362,62.655  c-0.271-0.783-1.123-1.199-1.907-0.929c-0.783,0.271-1.199,1.124-0.929,1.907c0.748,2.166,1.684,4.286,2.782,6.304  c0.272,0.499,0.787,0.782,1.318,0.782c0.243,0,0.488-0.059,0.717-0.183c0.728-0.396,0.996-1.308,0.6-2.035  C14.924,66.631,14.056,64.664,13.362,62.655z M71.214,82.433c-1.784,1.17-3.674,2.196-5.619,3.052  c-0.758,0.334-1.103,1.219-0.769,1.978c0.247,0.562,0.797,0.896,1.374,0.896c0.201,0,0.406-0.041,0.604-0.127  c2.096-0.922,4.133-2.028,6.055-3.288c0.693-0.455,0.887-1.385,0.433-2.077C72.837,82.172,71.908,81.979,71.214,82.433z   M19.456,73.849c-0.511-0.652-1.452-0.769-2.105-0.258c-0.652,0.51-0.769,1.452-0.258,2.105c1.411,1.807,2.984,3.509,4.675,5.061  c0.288,0.265,0.651,0.396,1.015,0.396c0.405,0,0.81-0.163,1.104-0.485c0.561-0.61,0.521-1.56-0.09-2.119  C22.228,77.106,20.767,75.525,19.456,73.849z M34.478,85.517c-1.949-0.854-3.843-1.877-5.629-3.042  c-0.692-0.452-1.623-0.258-2.075,0.437c-0.453,0.693-0.258,1.623,0.437,2.075c1.923,1.256,3.964,2.358,6.064,3.278  c0.195,0.086,0.399,0.126,0.601,0.126c0.578,0,1.129-0.335,1.375-0.898C35.582,86.733,35.236,85.849,34.478,85.517z M46.842,88.623  c-2.128-0.172-4.251-0.521-6.311-1.038c-0.8-0.197-1.619,0.287-1.82,1.09c-0.201,0.804,0.286,1.618,1.09,1.82  c2.219,0.557,4.507,0.934,6.801,1.118c0.041,0.003,0.081,0.005,0.122,0.005c0.773,0,1.43-0.595,1.493-1.38  C48.283,89.413,47.668,88.689,46.842,88.623z M59.549,87.564c-2.058,0.521-4.18,0.876-6.308,1.052  c-0.825,0.068-1.439,0.793-1.371,1.619c0.065,0.783,0.721,1.376,1.493,1.376c0.042,0,0.084-0.002,0.126-0.005  c2.292-0.19,4.579-0.571,6.798-1.134c0.803-0.204,1.288-1.02,1.085-1.823C61.169,87.847,60.354,87.361,59.549,87.564z"></path></svg>

question-mark-filled.svg

<svg height='300px' width='300px'  fill="#000000" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" version="1.1" x="0px" y="0px"><title>icon/24/帮助实心</title><desc>Created with Sketch.</desc><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M12,24 C5.372583,24 0,18.627417 0,12 C0,5.372583 5.372583,0 12,0 C18.627417,0 24,5.372583 24,12 C24,18.627417 18.627417,24 12,24 Z M12.0206689,11.9998954 L11,11.9998954 L11,15 L13,15 L13,13.8739825 C14.7252272,13.4299397 16,11.8638394 16,10 C16,7.790861 14.209139,6 12,6 C9.790861,6 8,7.790861 8,10 L10,10 C10,8.8954305 10.8954305,8 12,8 C13.1045695,8 14,8.8954305 14,10 C14,11.0976717 13.1157182,11.9888082 12.0206689,11.9998954 L12.0206689,11.9998954 Z M11,18 L13,18 L13,16 L11,16 L11,18 Z" fill="#000000"></path></g></svg>

ji2.svg

<?xml version="1.0" encoding="utf-8"?>
<svg width="300" height="300" xmlns="http://www.w3.org/2000/svg">
    <path d="M109 104c-3.8.4.4 7 1.7 8.4 3.3 3.4 6.5 4.7 9.7 4 18.8-3.6 33.2-4.2 57-1.9 14.3 1.4 4.8-9-4.5-15.7-1.8-1.3-5.6 0-9 .5-27.1 3.2-18.3 3-54.9 4.6z" stroke="#000" fill-opacity=".3"/>
    <path d="M153.9 63.9c-22.3-13-19.7-4-3.8 6.3 9 5.8 15.7 16.2 52.1 40.2 5.2 3.4 9.3 6.7 15.7 6 21.3-1.8 36.7-.2 43.3-2.3 7.7-2.3 4.2-5.5-1-7C197.8 88 189.4 84.5 153.8 64z" stroke="#000" fill-opacity=".3" stroke-width="2"/>
    <path d="M146.7 61.4c2.7-3.7 17-13.2 12-21.6-3.7-6.5-9.4-13.5-15.6-13.7-5-.1-9.5 17.2-11.8 21.6-7.6 14.4-21.6 30.8-61.5 62.1-33.6 26.5-20.5 21-3.2 13.1 32.5-14.8 51.7-30 80-61.5z" stroke="#000" fill-opacity=".3" stroke-width="3"/>
</svg>

issue-499.svg

<?xml version="1.0" standalone="no"?>
<svg viewBox="7 13 33 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" stroke-linecap="round" stroke-linejoin="round" fill-rule="evenodd" xml:space="preserve" >
<defs >
<clipPath id="clipId0" >
<path d="M7,25 40,25 40,13 7,13 z" />
</clipPath>
</defs>
<g clip-path="url(#clipId0)" fill="none" stroke="rgb(0,0,0)" stroke-width="0.01" />
<g clip-path="url(#clipId0)" fill="rgb(255,255,255)" stroke="rgb(255,255,255)" stroke-width="0.01" fill-opacity="0.498039" stroke-opacity="0.498039" >
<polygon points="7.40697,13.1176 21.9891,13.1176 21.9891,24.8824 7.40697,24.8824 " />
<polygon points="22.9027,13.1176 39.593,13.1176 39.593,24.8824 32.1439,24.8824 32.1439,24.8716 22.9027,24.8716 " />
</g>
<g clip-path="url(#clipId0)" fill="none" stroke="rgb(255,0,0)" stroke-width="0.01" >
<polyline points="7.40697,13.1176 21.9891,13.1176 21.9891,24.8824 7.40697,24.8824 7.40697,13.1176 " />
<polyline points="22.9027,13.1176 39.593,13.1176 39.593,24.8824 32.1439,24.8824 32.1439,24.8716 22.9027,24.8716 22.9027,13.1176 " />
</g>
<g clip-path="url(#clipId0)" fill="rgb(38,0,0)" stroke="rgb(38,0,0)" stroke-width="0" >
<text transform="matrix(0.0961824 0 -0 0.0961824 14.1265 18.9567)" font-family="arial,'sans-serif'" font-size="1.39636" >001 - Garage links</text>
<text transform="matrix(0.0961824 0 -0 0.0961824 14.1215 19.117)" font-family="arial,'sans-serif'" font-size="1.39636" >Rolltor</text>
</g>
<g clip-path="url(#clipId0)" fill="rgb(255,255,255)" stroke="rgb(255,255,255)" stroke-width="0.01" fill-opacity="0" stroke-opacity="0" >
<polygon points="14.132,19.1185 15.2344,19.1185 15.2344,18.8589 14.132,18.8589 " />
</g>
<g clip-path="url(#clipId0)" fill="rgb(38,0,0)" stroke="rgb(38,0,0)" stroke-width="0" >
<text transform="matrix(0.0961824 0 -0 0.0961824 30.6344 19.0235)" font-family="arial,'sans-serif'" font-size="1.39636" >002 - Garage rechts</text>
</g>
<g clip-path="url(#clipId0)" fill="rgb(255,255,255)" stroke="rgb(255,255,255)" stroke-width="0.01" fill-opacity="0" stroke-opacity="0" >
<polygon points="30.64,19.0517 31.8408,19.0517 31.8408,18.9257 30.64,18.9257 " />
</g>
</svg>

mail.svg

<svg id='mail' width="1063px" height="732px" viewBox="0 0 1063 732" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">

        <linearGradient x1="50%" y1="3.30203414%" x2="55.252189%" y2="79.5572645%" id="linearGradient-1">
            <stop stop-color="#FF0079" stop-opacity="0.417231206" offset="0%"></stop>
            <stop stop-color="#FE0044" stop-opacity="0.548131556" offset="100%"></stop>
        </linearGradient>
        <linearGradient x1="61.0389793%" y1="-64.3985414%" x2="50%" y2="87.391778%" id="linearGradient-2">
            <stop stop-color="#FF00BF" stop-opacity="0.428840691" offset="0%"></stop>
            <stop stop-color="#FE0044" stop-opacity="0" offset="100%"></stop>
        </linearGradient>
        <linearGradient x1="50%" y1="-10.7572209%" x2="50%" y2="100%" id="linearGradient-3">
            <stop stop-color="#F25267" stop-opacity="0.373197115" offset="0%"></stop>
            <stop stop-color="#FE0055" stop-opacity="0.51248361" offset="100%"></stop>
        </linearGradient>

        <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
            <g id="Artboard" transform="translate(-9.000000, -223.000000)">
                <g id="Message" transform="translate(-39.000000, 223.000000)">

                    <path d="M783.803351,74.6505407 L852.192195,130.030735 C853.479813,131.073427 853.678364,132.962517 852.635672,134.250134 L813.488287,182.593129 C812.445595,183.880746 810.556506,184.079297 809.268888,183.036605 L740.880043,127.656411 C739.592426,126.613719 739.393875,124.724629 740.436567,123.437012 L779.583952,75.0940174 C780.626644,73.8063998 782.515733,73.6078485 783.803351,74.6505407 Z" id="message-base" fill="url(#linearGradient-1)" fill-rule="nonzero"></path>
                    <path d="M741.447293,127.462652 C741.229351,127.286166 741.095531,127.026276 741.078466,126.746357 C741.044859,126.195096 741.464501,125.720966 742.015762,125.687359 L799.781504,122.16573 C801.323503,122.071724 802.684779,123.164108 802.926963,124.689868 L812.091401,182.425824 C812.135848,182.705845 812.05934,182.991571 811.880911,183.211912 C811.533347,183.641118 810.903651,183.707302 810.474445,183.359738 L741.447293,127.462652 Z" id="message-base" fill="url(#linearGradient-2)" fill-rule="nonzero"></path>
                    <path d="M783.373069,74.302105 L852.635126,130.389413 C853.064332,130.736978 853.130516,131.366674 852.782952,131.79588 C852.615039,132.003235 852.371225,132.134888 852.105745,132.161553 L791.943731,138.204327 C790.311369,138.368284 788.85005,137.19059 788.663395,135.560668 L781.750242,75.1930249 C781.687406,74.6443263 782.081276,74.1485799 782.629974,74.0857443 C782.896672,74.0552027 783.164451,74.1331696 783.373069,74.302105 Z" id="message-base" fill="url(#linearGradient-3)" fill-rule="nonzero"></path>

                </g>
            </g>
        </g>
      </svg>

text-as-path.svg

<svg id="text" width="285" height="200" version='1.1' viewBox='0 0 285 200' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' style="border: 1px solid #ccc;">
        <defs>
        </defs>
        <g id='page1' transform='matrix(1.5 0 0 1.5 0 0)'>
          <path transform="translate(56.4133, 65.7534)" d='M7.80672 -8.1056H0.633624L0.418431 -5.4396H0.681445C0.848817 -7.32852 0.956413 -7.7589 2.84533 -7.7589C3.06052 -7.7589 3.39527 -7.7589 3.49091 -7.73499C3.73001 -7.69913 3.74197 -7.55567 3.74197 -7.2807V-0.920548C3.74197 -0.514072 3.74197 -0.3467 2.57036 -0.3467H2.13998V0C2.52254 -0.0239103 3.75392 -0.0239103 4.22017 -0.0239103S5.92976 -0.0239103 6.31233 0V-0.3467H5.88194C4.71034 -0.3467 4.71034 -0.514072 4.71034 -0.920548V-7.2807C4.71034 -7.57958 4.73425 -7.68717 4.92553 -7.73499C5.02117 -7.7589 5.36787 -7.7589 5.59502 -7.7589C7.48394 -7.7589 7.59153 -7.32852 7.7589 -5.4396H8.02192L7.80672 -8.1056Z'/>
          <path transform="translate(64.836, 65.7534)" d='M5.32005 -2.90511C5.32005 -4.01694 5.32005 -4.35168 5.04508 -4.73425C4.69838 -5.2005 4.13649 -5.27223 3.73001 -5.27223C2.70187 -5.27223 2.22366 -4.49514 2.05629 -4.12453H2.04433V-8.29689L0.382565 -8.16538V-7.81868C1.19552 -7.81868 1.29116 -7.73499 1.29116 -7.14919V-0.884682C1.29116 -0.3467 1.15965 -0.3467 0.382565 -0.3467V0C0.6934 -0.0239103 1.33898 -0.0239103 1.67372 -0.0239103C2.02042 -0.0239103 2.666 -0.0239103 2.97684 0V-0.3467C2.21171 -0.3467 2.06824 -0.3467 2.06824 -0.884682V-3.10834C2.06824 -4.36364 2.89315 -5.03313 3.63437 -5.03313S4.54296 -4.42341 4.54296 -3.69415V-0.884682C4.54296 -0.3467 4.41146 -0.3467 3.63437 -0.3467V0C3.94521 -0.0239103 4.59078 -0.0239103 4.92553 -0.0239103C5.27223 -0.0239103 5.91781 -0.0239103 6.22864 0V-0.3467C5.63088 -0.3467 5.332 -0.3467 5.32005 -0.705355V-2.90511Z'/>
          <path transform="translate(71.315, 65.7534)" d='M2.0802 -7.36438C2.0802 -7.67522 1.82914 -7.95019 1.4944 -7.95019C1.18356 -7.95019 0.920548 -7.69913 0.920548 -7.37634C0.920548 -7.01768 1.20747 -6.79054 1.4944 -6.79054C1.86501 -6.79054 2.0802 -7.10137 2.0802 -7.36438ZM0.430386 -5.14072V-4.79402C1.19552 -4.79402 1.30311 -4.72229 1.30311 -4.13649V-0.884682C1.30311 -0.3467 1.17161 -0.3467 0.394521 -0.3467V0C0.729265 -0.0239103 1.30311 -0.0239103 1.64981 -0.0239103C1.78132 -0.0239103 2.47472 -0.0239103 2.8812 0V-0.3467C2.10411 -0.3467 2.05629 -0.406476 2.05629 -0.872727V-5.27223L0.430386 -5.14072Z'/>
          <path transform="translate(74.5514, 65.7534)" d='M3.9213 -5.05704C3.9213 -5.27223 3.9213 -5.332 3.80174 -5.332C3.7061 -5.332 3.47895 -5.06899 3.39527 -4.96139C3.02466 -5.26027 2.65405 -5.332 2.27148 -5.332C0.824907 -5.332 0.394521 -4.54296 0.394521 -3.88543C0.394521 -3.75392 0.394521 -3.33549 0.848817 -2.91706C1.23138 -2.58232 1.63786 -2.49863 2.1878 -2.39103C2.84533 -2.25953 3.00075 -2.22366 3.29963 -1.98456C3.51482 -1.80523 3.67024 -1.54222 3.67024 -1.20747C3.67024 -0.6934 3.37136 -0.119552 2.3193 -0.119552C1.53026 -0.119552 0.956413 -0.573848 0.6934 -1.76936C0.645579 -1.98456 0.645579 -1.99651 0.633624 -2.00847C0.609714 -2.05629 0.561893 -2.05629 0.526027 -2.05629C0.394521 -2.05629 0.394521 -1.99651 0.394521 -1.78132V-0.155417C0.394521 0.0597758 0.394521 0.119552 0.514072 0.119552C0.573848 0.119552 0.585803 0.107597 0.789041 -0.143462C0.848817 -0.227148 0.848817 -0.251059 1.02814 -0.442341C1.48244 0.119552 2.12802 0.119552 2.33126 0.119552C3.58655 0.119552 4.20822 -0.573848 4.20822 -1.51831C4.20822 -2.16389 3.8137 -2.54645 3.7061 -2.65405C3.27572 -3.02466 2.95293 -3.09639 2.16389 -3.23985C1.80523 -3.31158 0.932503 -3.47895 0.932503 -4.19626C0.932503 -4.56687 1.18356 -5.11681 2.25953 -5.11681C3.56264 -5.11681 3.63437 -4.00498 3.65828 -3.63437C3.67024 -3.53873 3.75392 -3.53873 3.78979 -3.53873C3.9213 -3.53873 3.9213 -3.59851 3.9213 -3.8137V-5.05704Z' id='g0-115'/>
          <path transform="translate(83.0566, 65.7534)" d='M2.0802 -7.36438C2.0802 -7.67522 1.82914 -7.95019 1.4944 -7.95019C1.18356 -7.95019 0.920548 -7.69913 0.920548 -7.37634C0.920548 -7.01768 1.20747 -6.79054 1.4944 -6.79054C1.86501 -6.79054 2.0802 -7.10137 2.0802 -7.36438ZM0.430386 -5.14072V-4.79402C1.19552 -4.79402 1.30311 -4.72229 1.30311 -4.13649V-0.884682C1.30311 -0.3467 1.17161 -0.3467 0.394521 -0.3467V0C0.729265 -0.0239103 1.30311 -0.0239103 1.64981 -0.0239103C1.78132 -0.0239103 2.47472 -0.0239103 2.8812 0V-0.3467C2.10411 -0.3467 2.05629 -0.406476 2.05629 -0.872727V-5.27223L0.430386 -5.14072Z' id='g0-105'/>
          <path transform="translate(86.2962, 65.7534)" d='M3.9213 -5.05704C3.9213 -5.27223 3.9213 -5.332 3.80174 -5.332C3.7061 -5.332 3.47895 -5.06899 3.39527 -4.96139C3.02466 -5.26027 2.65405 -5.332 2.27148 -5.332C0.824907 -5.332 0.394521 -4.54296 0.394521 -3.88543C0.394521 -3.75392 0.394521 -3.33549 0.848817 -2.91706C1.23138 -2.58232 1.63786 -2.49863 2.1878 -2.39103C2.84533 -2.25953 3.00075 -2.22366 3.29963 -1.98456C3.51482 -1.80523 3.67024 -1.54222 3.67024 -1.20747C3.67024 -0.6934 3.37136 -0.119552 2.3193 -0.119552C1.53026 -0.119552 0.956413 -0.573848 0.6934 -1.76936C0.645579 -1.98456 0.645579 -1.99651 0.633624 -2.00847C0.609714 -2.05629 0.561893 -2.05629 0.526027 -2.05629C0.394521 -2.05629 0.394521 -1.99651 0.394521 -1.78132V-0.155417C0.394521 0.0597758 0.394521 0.119552 0.514072 0.119552C0.573848 0.119552 0.585803 0.107597 0.789041 -0.143462C0.848817 -0.227148 0.848817 -0.251059 1.02814 -0.442341C1.48244 0.119552 2.12802 0.119552 2.33126 0.119552C3.58655 0.119552 4.20822 -0.573848 4.20822 -1.51831C4.20822 -2.16389 3.8137 -2.54645 3.7061 -2.65405C3.27572 -3.02466 2.95293 -3.09639 2.16389 -3.23985C1.80523 -3.31158 0.932503 -3.47895 0.932503 -4.19626C0.932503 -4.56687 1.18356 -5.11681 2.25953 -5.11681C3.56264 -5.11681 3.63437 -4.00498 3.65828 -3.63437C3.67024 -3.53873 3.75392 -3.53873 3.78979 -3.53873C3.9213 -3.53873 3.9213 -3.59851 3.9213 -3.8137V-5.05704Z' id='g0-115'/>
          <path transform="translate(94.7983, 65.7534)" d='M3.9213 -5.05704C3.9213 -5.27223 3.9213 -5.332 3.80174 -5.332C3.7061 -5.332 3.47895 -5.06899 3.39527 -4.96139C3.02466 -5.26027 2.65405 -5.332 2.27148 -5.332C0.824907 -5.332 0.394521 -4.54296 0.394521 -3.88543C0.394521 -3.75392 0.394521 -3.33549 0.848817 -2.91706C1.23138 -2.58232 1.63786 -2.49863 2.1878 -2.39103C2.84533 -2.25953 3.00075 -2.22366 3.29963 -1.98456C3.51482 -1.80523 3.67024 -1.54222 3.67024 -1.20747C3.67024 -0.6934 3.37136 -0.119552 2.3193 -0.119552C1.53026 -0.119552 0.956413 -0.573848 0.6934 -1.76936C0.645579 -1.98456 0.645579 -1.99651 0.633624 -2.00847C0.609714 -2.05629 0.561893 -2.05629 0.526027 -2.05629C0.394521 -2.05629 0.394521 -1.99651 0.394521 -1.78132V-0.155417C0.394521 0.0597758 0.394521 0.119552 0.514072 0.119552C0.573848 0.119552 0.585803 0.107597 0.789041 -0.143462C0.848817 -0.227148 0.848817 -0.251059 1.02814 -0.442341C1.48244 0.119552 2.12802 0.119552 2.33126 0.119552C3.58655 0.119552 4.20822 -0.573848 4.20822 -1.51831C4.20822 -2.16389 3.8137 -2.54645 3.7061 -2.65405C3.27572 -3.02466 2.95293 -3.09639 2.16389 -3.23985C1.80523 -3.31158 0.932503 -3.47895 0.932503 -4.19626C0.932503 -4.56687 1.18356 -5.11681 2.25953 -5.11681C3.56264 -5.11681 3.63437 -4.00498 3.65828 -3.63437C3.67024 -3.53873 3.75392 -3.53873 3.78979 -3.53873C3.9213 -3.53873 3.9213 -3.59851 3.9213 -3.8137V-5.05704Z' id='g0-115'/>
          <path transform="translate(99.3984, 65.7534)" d='M5.48742 -2.55841C5.48742 -4.10062 4.31582 -5.332 2.92902 -5.332C1.4944 -5.332 0.358655 -4.06476 0.358655 -2.55841C0.358655 -1.02814 1.55417 0.119552 2.91706 0.119552C4.32777 0.119552 5.48742 -1.05205 5.48742 -2.55841ZM2.92902 -0.143462C2.48667 -0.143462 1.94869 -0.334745 1.60199 -0.920548C1.2792 -1.45853 1.26725 -2.16389 1.26725 -2.666C1.26725 -3.1203 1.26725 -3.84956 1.63786 -4.38755C1.9726 -4.90162 2.49863 -5.0929 2.91706 -5.0929C3.38331 -5.0929 3.88543 -4.87771 4.20822 -4.41146C4.57883 -3.86152 4.57883 -3.10834 4.57883 -2.666C4.57883 -2.24757 4.57883 -1.50635 4.268 -0.944458C3.93325 -0.37061 3.38331 -0.143462 2.92902 -0.143462Z' id='g0-111'/>
          <path transform="translate(105.229, 65.7534)" d='M8.57186 -2.90511C8.57186 -4.01694 8.57186 -4.35168 8.29689 -4.73425C7.95019 -5.2005 7.38829 -5.27223 6.98182 -5.27223C5.98954 -5.27223 5.48742 -4.55492 5.29614 -4.08867C5.12877 -5.00922 4.48319 -5.27223 3.73001 -5.27223C2.57036 -5.27223 2.11606 -4.27995 2.02042 -4.04085H2.00847V-5.27223L0.382565 -5.14072V-4.79402C1.19552 -4.79402 1.29116 -4.71034 1.29116 -4.12453V-0.884682C1.29116 -0.3467 1.15965 -0.3467 0.382565 -0.3467V0C0.6934 -0.0239103 1.33898 -0.0239103 1.67372 -0.0239103C2.02042 -0.0239103 2.666 -0.0239103 2.97684 0V-0.3467C2.21171 -0.3467 2.06824 -0.3467 2.06824 -0.884682V-3.10834C2.06824 -4.36364 2.89315 -5.03313 3.63437 -5.03313S4.54296 -4.42341 4.54296 -3.69415V-0.884682C4.54296 -0.3467 4.41146 -0.3467 3.63437 -0.3467V0C3.94521 -0.0239103 4.59078 -0.0239103 4.92553 -0.0239103C5.27223 -0.0239103 5.91781 -0.0239103 6.22864 0V-0.3467C5.46351 -0.3467 5.32005 -0.3467 5.32005 -0.884682V-3.10834C5.32005 -4.36364 6.14496 -5.03313 6.88618 -5.03313S7.79477 -4.42341 7.79477 -3.69415V-0.884682C7.79477 -0.3467 7.66326 -0.3467 6.88618 -0.3467V0C7.19701 -0.0239103 7.84259 -0.0239103 8.17733 -0.0239103C8.52403 -0.0239103 9.16961 -0.0239103 9.48045 0V-0.3467C8.88269 -0.3467 8.58381 -0.3467 8.57186 -0.705355V-2.90511Z' id='g0-109'/>
          <path transform="translate(114.948, 65.7534)" d='M4.57883 -2.7736C4.84184 -2.7736 4.86575 -2.7736 4.86575 -3.00075C4.86575 -4.20822 4.22017 -5.332 2.7736 -5.332C1.41071 -5.332 0.358655 -4.10062 0.358655 -2.61818C0.358655 -1.0401 1.57808 0.119552 2.90511 0.119552C4.32777 0.119552 4.86575 -1.17161 4.86575 -1.42267C4.86575 -1.4944 4.80598 -1.54222 4.73425 -1.54222C4.63861 -1.54222 4.61469 -1.48244 4.59078 -1.42267C4.27995 -0.418431 3.47895 -0.143462 2.97684 -0.143462S1.26725 -0.478207 1.26725 -2.54645V-2.7736H4.57883ZM1.2792 -3.00075C1.37484 -4.87771 2.4269 -5.0929 2.76164 -5.0929C4.04085 -5.0929 4.11258 -3.40722 4.12453 -3.00075H1.2792Z' id='g0-101'/>
          <path transform="translate(124.033, 65.7534)" d='M2.00847 -4.80598H3.69415V-5.15268H2.00847V-7.35243H1.74545C1.7335 -6.22864 1.30311 -5.08095 0.215193 -5.04508V-4.80598H1.23138V-1.48244C1.23138 -0.155417 2.11606 0.119552 2.74969 0.119552C3.50286 0.119552 3.89738 -0.621669 3.89738 -1.48244V-2.16389H3.63437V-1.50635C3.63437 -0.645579 3.28767 -0.143462 2.82142 -0.143462C2.00847 -0.143462 2.00847 -1.25529 2.00847 -1.45853V-4.80598Z' id='g0-116'/>
          <path transform="translate(128.569, 65.7534)" d='M4.57883 -2.7736C4.84184 -2.7736 4.86575 -2.7736 4.86575 -3.00075C4.86575 -4.20822 4.22017 -5.332 2.7736 -5.332C1.41071 -5.332 0.358655 -4.10062 0.358655 -2.61818C0.358655 -1.0401 1.57808 0.119552 2.90511 0.119552C4.32777 0.119552 4.86575 -1.17161 4.86575 -1.42267C4.86575 -1.4944 4.80598 -1.54222 4.73425 -1.54222C4.63861 -1.54222 4.61469 -1.48244 4.59078 -1.42267C4.27995 -0.418431 3.47895 -0.143462 2.97684 -0.143462S1.26725 -0.478207 1.26725 -2.54645V-2.7736H4.57883ZM1.2792 -3.00075C1.37484 -4.87771 2.4269 -5.0929 2.76164 -5.0929C4.04085 -5.0929 4.11258 -3.40722 4.12453 -3.00075H1.2792Z' id='g0-101'/>
          <path transform="translate(133.752, 65.7534)" d='M3.34745 -2.82142C3.69415 -3.27572 4.19626 -3.9213 4.42341 -4.17235C4.91357 -4.72229 5.47547 -4.80598 5.85803 -4.80598V-5.15268C5.34396 -5.12877 5.32005 -5.12877 4.8538 -5.12877C4.3995 -5.12877 4.37559 -5.12877 3.77783 -5.15268V-4.80598C3.93325 -4.78207 4.12453 -4.71034 4.12453 -4.43537C4.12453 -4.23213 4.01694 -4.10062 3.94521 -4.00498L3.18007 -3.03661L2.24757 -4.268C2.21171 -4.31582 2.13998 -4.42341 2.13998 -4.5071C2.13998 -4.57883 2.19975 -4.79402 2.55841 -4.80598V-5.15268C2.25953 -5.12877 1.64981 -5.12877 1.32702 -5.12877C0.932503 -5.12877 0.908593 -5.12877 0.179328 -5.15268V-4.80598C0.789041 -4.80598 1.01619 -4.78207 1.26725 -4.45928L2.666 -2.63014C2.68991 -2.60623 2.73773 -2.5345 2.73773 -2.49863S1.80523 -1.29116 1.68568 -1.13574C1.15965 -0.490162 0.633624 -0.358655 0.119552 -0.3467V0C0.573848 -0.0239103 0.597758 -0.0239103 1.11183 -0.0239103C1.56613 -0.0239103 1.59004 -0.0239103 2.1878 0V-0.3467C1.90087 -0.382565 1.85305 -0.561893 1.85305 -0.729265C1.85305 -0.920548 1.93674 -1.01619 2.05629 -1.17161C2.23562 -1.42267 2.63014 -1.91283 2.91706 -2.28344L3.89738 -1.00423C4.10062 -0.74122 4.10062 -0.71731 4.10062 -0.645579C4.10062 -0.549938 4.00498 -0.358655 3.68219 -0.3467V0C3.99303 -0.0239103 4.57883 -0.0239103 4.91357 -0.0239103C5.30809 -0.0239103 5.332 -0.0239103 6.04932 0V-0.3467C5.41569 -0.3467 5.2005 -0.37061 4.91357 -0.753176L3.34745 -2.82142Z' id='g0-120'/>
          <path transform="translate(139.907, 65.7534)" d='M2.00847 -4.80598H3.69415V-5.15268H2.00847V-7.35243H1.74545C1.7335 -6.22864 1.30311 -5.08095 0.215193 -5.04508V-4.80598H1.23138V-1.48244C1.23138 -0.155417 2.11606 0.119552 2.74969 0.119552C3.50286 0.119552 3.89738 -0.621669 3.89738 -1.48244V-2.16389H3.63437V-1.50635C3.63437 -0.645579 3.28767 -0.143462 2.82142 -0.143462C2.00847 -0.143462 2.00847 -1.25529 2.00847 -1.45853V-4.80598Z' id='g0-116'/>
        </g>
    </svg>

letter-a.svg

    <svg
        xmlns:xlink="http://www.w3.org/1999/xlink"
        width="285"
        height="200"
        viewBox="0 0 285 200"
        style="border: 1px solid #ccc;"
        id="text">
      <g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(0.33 0 0 -0.33 0 150)">
        <path stroke-width="1" d="M33 157Q33 258 109 349T280 441Q331 441 370 392Q386 422 416 422Q429 422 439 414T449 394Q449 381 412 234T374 68Q374 43 381 35T402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487Q506 153 506 144Q506 138 501 117T481 63T449 13Q436 0 417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157ZM351 328Q351 334 346 350T323 385T277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q217 26 254 59T298 110Q300 114 325 217T351 328Z"></path>
      </g>
    </svg>

horse.svg

    <svg style="border: 1px solid #ff9999;">
      <g style="opacity:1; fill:none; fill-opacity:1; fill-rule:evenodd; stroke:#000000; stroke-width:1.5; stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4; stroke-dasharray:none; stroke-opacity:1;">
        <path d="M 22,10 C 32.5,11 38.5,18 38,39 L 15,39 C 15,30 25,32.5 23,18" style="fill:#000000; stroke:#000000;" />
        <path d="M 24,18 C 24.38,20.91 18.45,25.37 16,27 C 13,29 13.18,31.34 11,31 C 9.958,30.06 12.41,27.96 11,28 C 10,28 11.19,29.23 10,30 C 9,30 5.997,31 6,26 C 6,24 12,14 12,14 C 12,14 13.89,12.1 14,10.5 C 13.27,9.506 13.5,8.5 13.5,7.5 C 14.5,6.5 16.5,10 16.5,10 L 18.5,10 C 18.5,10 19.28,8.008 21,7 C 22,7 22,10 22,10" style="fill:#000000; stroke:#000000;" />
        <path d="M 9.5 25.5 A 0.5 0.5 0 1 1 8.5,25.5 A 0.5 0.5 0 1 1 9.5 25.5 z" style="fill:#ffffff; stroke:#ffffff;" />
        <path d="M 15 15.5 A 0.5 1.5 0 1 1 14,15.5 A 0.5 1.5 0 1 1 15 15.5 z" transform="matrix(0.866,0.5,-0.5,0.866,9.693,-5.173)" style="fill:#ff0000; stroke:#ff0000;" />
        <path d="M 24.55,10.4 L 24.1,11.85 L 24.6,12 C 27.75,13 30.25,14.49 32.5,18.75 C 34.75,23.01 35.75,29.06 35.25,39 L 35.2,39.5 L 37.45,39.5 L 37.5,39 C 38,28.94 36.62,22.15 34.25,17.66 C 31.88,13.17 28.46,11.02 25.06,10.5 L 24.55,10.4 z" style="fill:#ffffff; stroke:none;" />
      </g>
    </svg>

math-expressions.svg

<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='53.496596pt' height='27.438854pt' viewBox='144.509481 -15.455973 53.496596 27.438854'>
    <defs>
    <path id='g3-49' d='M2.929016 -6.37609C2.929016 -6.615193 2.929016 -6.635118 2.699875 -6.635118C2.082192 -5.997509 1.205479 -5.997509 0.886675 -5.997509V-5.688667C1.085928 -5.688667 1.673724 -5.688667 2.191781 -5.947696V-0.787049C2.191781 -0.428394 2.161893 -0.308842 1.265255 -0.308842H0.946451V0C1.295143 -0.029888 2.161893 -0.029888 2.560399 -0.029888S3.825654 -0.029888 4.174346 0V-0.308842H3.855542C2.958904 -0.308842 2.929016 -0.418431 2.929016 -0.787049V-6.37609Z'/>
    <path id='g3-54' d='M1.315068 -3.267746V-3.506849C1.315068 -6.027397 2.550436 -6.386052 3.058531 -6.386052C3.297634 -6.386052 3.716065 -6.326276 3.935243 -5.987547C3.785803 -5.987547 3.387298 -5.987547 3.387298 -5.539228C3.387298 -5.230386 3.626401 -5.080946 3.845579 -5.080946C4.004981 -5.080946 4.303861 -5.17061 4.303861 -5.559153C4.303861 -6.156912 3.865504 -6.635118 3.038605 -6.635118C1.763387 -6.635118 0.418431 -5.349938 0.418431 -3.148194C0.418431 -0.488169 1.574097 0.219178 2.500623 0.219178C3.606476 0.219178 4.552927 -0.71731 4.552927 -2.032379C4.552927 -3.297634 3.666252 -4.254047 2.560399 -4.254047C1.882939 -4.254047 1.514321 -3.745953 1.315068 -3.267746ZM2.500623 -0.059776C1.872976 -0.059776 1.574097 -0.657534 1.514321 -0.806974C1.334994 -1.275218 1.334994 -2.072229 1.334994 -2.251557C1.334994 -3.028643 1.653798 -4.024907 2.550436 -4.024907C2.709838 -4.024907 3.16812 -4.024907 3.476961 -3.407223C3.656289 -3.038605 3.656289 -2.530511 3.656289 -2.042341C3.656289 -1.564134 3.656289 -1.066002 3.486924 -0.707347C3.188045 -0.109589 2.729763 -0.059776 2.500623 -0.059776Z'/>
    <path id='g3-61' d='M6.844334 -3.257783C6.993773 -3.257783 7.183064 -3.257783 7.183064 -3.457036S6.993773 -3.656289 6.854296 -3.656289H0.886675C0.747198 -3.656289 0.557908 -3.656289 0.557908 -3.457036S0.747198 -3.257783 0.896638 -3.257783H6.844334ZM6.854296 -1.325031C6.993773 -1.325031 7.183064 -1.325031 7.183064 -1.524284S6.993773 -1.723537 6.844334 -1.723537H0.896638C0.747198 -1.723537 0.557908 -1.723537 0.557908 -1.524284S0.747198 -1.325031 0.886675 -1.325031H6.854296Z'/>
    <path id='g1-25' d='M2.6401 -3.716065H3.765878C3.437111 -2.241594 3.347447 -1.8132 3.347447 -1.145704C3.347447 -0.996264 3.347447 -0.727273 3.427148 -0.388543C3.526775 0.049813 3.636364 0.109589 3.785803 0.109589C3.985056 0.109589 4.194271 -0.069738 4.194271 -0.268991C4.194271 -0.328767 4.194271 -0.348692 4.134496 -0.488169C3.845579 -1.205479 3.845579 -1.853051 3.845579 -2.132005C3.845579 -2.660025 3.915318 -3.198007 4.024907 -3.716065H5.160648C5.290162 -3.716065 5.648817 -3.716065 5.648817 -4.054795C5.648817 -4.293898 5.439601 -4.293898 5.250311 -4.293898H1.912827C1.693649 -4.293898 1.315068 -4.293898 0.876712 -3.825654C0.52802 -3.437111 0.268991 -2.978829 0.268991 -2.929016C0.268991 -2.919054 0.268991 -2.82939 0.388543 -2.82939C0.468244 -2.82939 0.488169 -2.86924 0.547945 -2.948941C1.036115 -3.716065 1.613948 -3.716065 1.8132 -3.716065H2.381071C2.062267 -2.510585 1.524284 -1.305106 1.105853 -0.398506C1.026152 -0.249066 1.026152 -0.229141 1.026152 -0.159402C1.026152 0.029888 1.185554 0.109589 1.315068 0.109589C1.613948 0.109589 1.693649 -0.169365 1.8132 -0.537983C1.952677 -0.996264 1.952677 -1.016189 2.082192 -1.514321L2.6401 -3.716065Z'/>
    <path id='g1-107' d='M2.859278 -6.804483C2.859278 -6.814446 2.859278 -6.914072 2.729763 -6.914072C2.500623 -6.914072 1.77335 -6.834371 1.514321 -6.814446C1.43462 -6.804483 1.325031 -6.794521 1.325031 -6.615193C1.325031 -6.495641 1.414695 -6.495641 1.564134 -6.495641C2.042341 -6.495641 2.062267 -6.425903 2.062267 -6.326276L2.032379 -6.127024L0.587796 -0.388543C0.547945 -0.249066 0.547945 -0.229141 0.547945 -0.169365C0.547945 0.059776 0.747198 0.109589 0.836862 0.109589C0.966376 0.109589 1.115816 0.019925 1.175592 -0.099626C1.225405 -0.18929 1.673724 -2.032379 1.733499 -2.281445C2.072229 -2.251557 2.889166 -2.092154 2.889166 -1.43462C2.889166 -1.364882 2.889166 -1.325031 2.859278 -1.225405C2.839352 -1.105853 2.819427 -0.986301 2.819427 -0.876712C2.819427 -0.288917 3.217933 0.109589 3.73599 0.109589C4.034869 0.109589 4.303861 -0.049813 4.523039 -0.418431C4.772105 -0.856787 4.881694 -1.404732 4.881694 -1.424658C4.881694 -1.524284 4.79203 -1.524284 4.762142 -1.524284C4.662516 -1.524284 4.652553 -1.484433 4.622665 -1.344956C4.423412 -0.617684 4.194271 -0.109589 3.755915 -0.109589C3.566625 -0.109589 3.437111 -0.219178 3.437111 -0.577833C3.437111 -0.747198 3.476961 -0.976339 3.516812 -1.135741C3.556663 -1.305106 3.556663 -1.344956 3.556663 -1.444583C3.556663 -2.092154 2.929016 -2.381071 2.082192 -2.49066C2.391034 -2.669988 2.709838 -2.988792 2.938979 -3.227895C3.417186 -3.755915 3.875467 -4.184309 4.363636 -4.184309C4.423412 -4.184309 4.433375 -4.184309 4.4533 -4.174346C4.572852 -4.154421 4.582814 -4.154421 4.662516 -4.094645C4.682441 -4.084682 4.682441 -4.07472 4.702366 -4.054795C4.224159 -4.024907 4.134496 -3.636364 4.134496 -3.516812C4.134496 -3.35741 4.244085 -3.16812 4.513076 -3.16812C4.772105 -3.16812 5.061021 -3.387298 5.061021 -3.775841C5.061021 -4.07472 4.83188 -4.403487 4.383562 -4.403487C4.104608 -4.403487 3.646326 -4.323786 2.929016 -3.526775C2.590286 -3.148194 2.201743 -2.749689 1.823163 -2.600249L2.859278 -6.804483Z'/>
    <path id='g5-88' d='M12.612702 13.947696L13.818182 10.759651H13.569116C13.180573 11.795766 12.124533 12.473225 10.978829 12.772105C10.769614 12.821918 9.793275 13.080946 7.880448 13.080946H1.872976L6.94396 7.13325C7.013699 7.053549 7.033624 7.023661 7.033624 6.973848C7.033624 6.953923 7.033624 6.924035 6.963885 6.824408L2.321295 0.478207H7.780822C9.115816 0.478207 10.022416 0.617684 10.11208 0.637609C10.650062 0.71731 11.516812 0.886675 12.303861 1.384807C12.552927 1.544209 13.230386 1.992528 13.569116 2.799502H13.818182L12.612702 0H0.836862C0.607721 0 0.597758 0.009963 0.56787 0.069738C0.557908 0.099626 0.557908 0.288917 0.557908 0.398506L5.828144 7.611457L0.667497 13.65878C0.56787 13.778331 0.56787 13.828144 0.56787 13.838107C0.56787 13.947696 0.657534 13.947696 0.836862 13.947696H12.612702Z'/>
    <path id='g0-49' d='M4.030884 -1.910834C3.66127 -2.343213 3.549689 -2.461768 3.284682 -2.650062C2.859278 -2.956912 2.412951 -3.075467 2.02939 -3.075467C1.164633 -3.075467 0.536986 -2.336239 0.536986 -1.499377C0.536986 -0.683437 1.136737 0.069738 2.008468 0.069738C2.977833 0.069738 3.654296 -0.72528 3.905355 -1.094894C4.274969 -0.662516 4.38655 -0.54396 4.651557 -0.355666C5.076961 -0.048817 5.523288 0.069738 5.906849 0.069738C6.771606 0.069738 7.399253 -0.669489 7.399253 -1.506351C7.399253 -2.322291 6.799502 -3.075467 5.927771 -3.075467C4.958406 -3.075467 4.281943 -2.280448 4.030884 -1.910834ZM4.254047 -1.652802C4.533001 -2.106102 5.139726 -2.810461 5.990535 -2.810461C6.708842 -2.810461 7.203985 -2.175841 7.203985 -1.506351S6.660025 -0.313823 6.018431 -0.313823C5.369863 -0.313823 4.923537 -0.843836 4.254047 -1.652802ZM3.682192 -1.352927C3.403238 -0.899626 2.796513 -0.195268 1.945704 -0.195268C1.227397 -0.195268 0.732254 -0.829888 0.732254 -1.499377S1.276214 -2.691905 1.917808 -2.691905C2.566376 -2.691905 3.012702 -2.161893 3.682192 -1.352927Z'/>
    <path id='g2-107' d='M2.182814 -4.630635C2.189788 -4.644583 2.21071 -4.735243 2.21071 -4.742217C2.21071 -4.777086 2.182814 -4.839851 2.099128 -4.839851C1.959651 -4.839851 1.380822 -4.78406 1.206476 -4.770112C1.150685 -4.763138 1.053051 -4.756164 1.053051 -4.609714C1.053051 -4.51208 1.150685 -4.51208 1.234371 -4.51208C1.569116 -4.51208 1.569116 -4.463263 1.569116 -4.407472C1.569116 -4.358655 1.555168 -4.316812 1.54122 -4.254047L0.557908 -0.306849C0.523039 -0.18132 0.523039 -0.167372 0.523039 -0.153425C0.523039 -0.048817 0.606725 0.069738 0.760149 0.069738C0.948443 0.069738 1.039103 -0.069738 1.080946 -0.223163C1.094894 -0.251059 1.39477 -1.478456 1.422665 -1.57609C1.917808 -1.527273 2.315318 -1.366874 2.315318 -1.004234C2.315318 -0.969365 2.315318 -0.934496 2.30137 -0.864757C2.273474 -0.760149 2.273474 -0.72528 2.273474 -0.648568C2.273474 -0.153425 2.677958 0.069738 3.012702 0.069738C3.689166 0.069738 3.898381 -0.990286 3.898381 -0.99726C3.898381 -1.08792 3.807721 -1.08792 3.7868 -1.08792C3.689166 -1.08792 3.682192 -1.053051 3.647323 -0.920548C3.563636 -0.620672 3.375342 -0.125529 3.033624 -0.125529C2.84533 -0.125529 2.789539 -0.299875 2.789539 -0.488169C2.789539 -0.606725 2.789539 -0.620672 2.831382 -0.801993C2.838356 -0.822914 2.866252 -0.941469 2.866252 -1.018182C2.866252 -1.638854 2.02939 -1.736488 1.736488 -1.75741C1.93873 -1.882939 2.196762 -2.113076 2.315318 -2.217684C2.670984 -2.552428 3.019676 -2.880199 3.410212 -2.880199C3.493898 -2.880199 3.584558 -2.859278 3.640349 -2.789539C3.340473 -2.740722 3.277709 -2.503611 3.277709 -2.399004C3.277709 -2.245579 3.396264 -2.140971 3.556663 -2.140971C3.744956 -2.140971 3.954172 -2.294396 3.954172 -2.587298C3.954172 -2.817435 3.7868 -3.075467 3.417186 -3.075467C3.019676 -3.075467 2.657036 -2.789539 2.30137 -2.461768C2.008468 -2.182814 1.778331 -1.966625 1.492403 -1.84807L2.182814 -4.630635Z'/>
    <path id='g4-49' d='M2.336239 -4.435367C2.336239 -4.623661 2.322291 -4.630635 2.127024 -4.630635C1.680697 -4.191283 1.046077 -4.184309 0.760149 -4.184309V-3.93325C0.927522 -3.93325 1.387796 -3.93325 1.771357 -4.128518V-0.571856C1.771357 -0.341719 1.771357 -0.251059 1.073973 -0.251059H0.808966V0C0.934496 -0.006974 1.792279 -0.027895 2.050311 -0.027895C2.266501 -0.027895 3.145205 -0.006974 3.29863 0V-0.251059H3.033624C2.336239 -0.251059 2.336239 -0.341719 2.336239 -0.571856V-4.435367Z'/>
    <path id='g4-50' d='M3.521793 -1.26924H3.284682C3.263761 -1.115816 3.194022 -0.704359 3.103362 -0.63462C3.047572 -0.592777 2.510585 -0.592777 2.412951 -0.592777H1.129763C1.862017 -1.241345 2.106102 -1.436613 2.524533 -1.764384C3.040598 -2.175841 3.521793 -2.608219 3.521793 -3.270735C3.521793 -4.11457 2.782565 -4.630635 1.889913 -4.630635C1.025156 -4.630635 0.439352 -4.02391 0.439352 -3.382316C0.439352 -3.02665 0.739228 -2.991781 0.808966 -2.991781C0.976339 -2.991781 1.17858 -3.110336 1.17858 -3.361395C1.17858 -3.486924 1.129763 -3.731009 0.767123 -3.731009C0.983313 -4.226152 1.457534 -4.379577 1.785305 -4.379577C2.48269 -4.379577 2.84533 -3.835616 2.84533 -3.270735C2.84533 -2.66401 2.412951 -2.182814 2.189788 -1.931756L0.509091 -0.27198C0.439352 -0.209215 0.439352 -0.195268 0.439352 0H3.312578L3.521793 -1.26924Z'/>
    <path id='g4-61' d='M5.355915 -2.343213C5.460523 -2.343213 5.620922 -2.343213 5.620922 -2.517559C5.620922 -2.684932 5.453549 -2.684932 5.362889 -2.684932H0.746202C0.655542 -2.684932 0.488169 -2.684932 0.488169 -2.517559C0.488169 -2.343213 0.648568 -2.343213 0.753176 -2.343213H5.355915ZM5.362889 -0.808966C5.453549 -0.808966 5.620922 -0.808966 5.620922 -0.976339C5.620922 -1.150685 5.460523 -1.150685 5.355915 -1.150685H0.753176C0.648568 -1.150685 0.488169 -1.150685 0.488169 -0.976339C0.488169 -0.808966 0.655542 -0.808966 0.746202 -0.808966H5.362889Z'/>
    </defs>
    <g id='page1'>
    <use x='147.783687' y='-12.453346' xlink:href='#g0-49'/>
    <use x='144.559662' y='-9.464569' xlink:href='#g5-88'/>
    <use x='144.509481' y='11.982881' xlink:href='#g2-107'/>
    <use x='148.913135' y='11.982881' xlink:href='#g4-61'/>
    <use x='155.029119' y='11.982881' xlink:href='#g4-49'/>
    <use x='164.350391' y='-6.739801' xlink:href='#g3-49'/>
    <rect x='161.856265' y='-2.68991' height='0.398484' width='9.969587'/>
    <use x='161.856265' y='6.83387' xlink:href='#g1-107'/>
    <use x='167.356485' y='3.955777' xlink:href='#g4-50'/>
    <use x='175.788699' y='0' xlink:href='#g3-61'/>
    <use x='187.500293' y='-6.739801' xlink:href='#g1-25'/>
    <use x='193.536709' y='-10.355165' xlink:href='#g4-50'/>
    <rect x='187.500293' y='-2.68991' height='0.398484' width='10.505785'/>
    <use x='190.262517' y='6.83387' xlink:href='#g3-54'/>
    </g>
    </svg>

circle-rect.svg

  <svg id="circle-rect" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="27.5" height="27.5" x="0px" y="0px" style="border: 1px solid #ccc" viewBox="0 0 30 27.5" enable-background="new 0 0 30 27.5" xml:space="preserve">
    <rect x="-13.8" y="-13.8" fill="#FFFFFF" stroke="#1D1D1B" stroke-miterlimit="10" width="27.5" height="27.5"/>
    <circle fill="#FFFFFF" stroke="#1D1D1B" stroke-width="0.75" stroke-miterlimit="10" cx="5.6" cy="-5.7" r="3.9"/>
    <circle fill="#FFFFFF" stroke="#1D1D1B" stroke-width="0.75" stroke-miterlimit="10" cx="-5.5" cy="5.6" r="3.9"/>
    <circle fill="#FFFFFF" stroke="#1D1D1B" stroke-width="0.75" stroke-miterlimit="10" cx="-5.5" cy="-5.7" r="3.9"/>
    <circle fill="#FFFFFF" stroke="#1D1D1B" stroke-width="0.75" stroke-miterlimit="10" cx="5.6" cy="5.6" r="3.9"/>
  </svg>

text.svg

  <svg id="text-svg" viewBox="0 0 240 80" xmlns="http://www.w3.org/2000/svg">
    <text x="20" y="35" style="font-style:italic;font-family:sans-serif;font-size:13px;fill:blue">My</text>
    <text x="40" y="35" style="font-style:bold;font-family:sans-serif;font-size:30px;fill:green">cat</text>
    <text x="55" y="55" style="font-style:italic;font-family:sans-serif;font-size:13px;fill:blue">is</text>
    <text x="65" y="55" style="font-style:italic;font-family:serif;font-size:40px;fill:red">Grumpy!</text>
  </svg>

meal.svg

<svg width="1064px" height="561px" id="illustration" viewBox="0 0 1064 561" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
        <title>timeline-scene</title>
        <g fill="none" id="Artboard" stroke-width="2" stroke-linecap="round">
            <g fill="none" id="timeline-scene">
                <g class="line-main line-main-end" transform="translate(0.000000, 287.348764)" stroke="#3333CC" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
                    <path d="M248.433758,126.646331 C248.433758,126.646331 202.266758,82.6433306 174.023758,54.1083306 C147.361758,27.1693306 178.728758,-11.9306694 205.361758,3.48933062 C232.908758,19.4383306 219.494758,74.4053306 167.628758,104.847331 C136.741758,122.977331 83.0797585,119.458331 37.9657585,119.505331 C-10.1182415,119.556331 1.14675846,119.505331 1.14675846,119.505331"  id="Stroke-191"></path>
                </g>
                <g class="mat" transform="translate(228.086058, 159.096695)" stroke="#979796" stroke-linecap="round" stroke-width="2">
                    <polyline  id="Stroke-1" points="11.669 281.496 0 400.904 588.05 396.842 576.583 298.223 563.048 155.776 546.892 0 242.842 1.721"></polyline>
                    <polyline  id="Stroke-53" points="91.7559 4.0449 34.2529 5.0709 15.6329 226.0099"></polyline>
                </g>
                <g class="miam" transform="translate(102.876058, 0.507795)" stroke="#979796" stroke-linecap="round" stroke-width="2">
                    <path d="M172.711,-1.42108547e-14 L30.725,-1.42108547e-14 C13.826,-1.42108547e-14 7.10542736e-14,13.826 7.10542736e-14,30.725 L7.10542736e-14,67.822 C7.10542736e-14,84.721 13.826,98.547 30.725,98.547 L147.51,98.547 L174.121,128.708 L174.814,98.44 C190.737,97.346 203.436,84.012 203.436,67.822 L203.436,30.725 C203.436,13.826 189.61,-1.42108547e-14 172.711,-1.42108547e-14 Z"  id="Stroke-9"></path>
                    <polyline  id="Stroke-161" points="23.5499 68.9092 43.3839 16.9932 46.8829 53.1592 63.2169 28.0762 59.1329 82.9092"></polyline>
                    <path d="M76.1925,50.834 C76.1925,50.834 72.3495,62.362 72.3495,67.119 C72.3495,71.877 73.9345,73.462 78.6925,70.291"  id="Stroke-163"></path>
                    <path d="M105.1261,45.5625 C105.1261,45.5625 95.9771,43.0295 91.9741,53.1645 C87.9701,63.2985 89.1141,73.4345 96.5481,69.6335 C103.9821,65.8335 106.8421,49.9975 106.8421,49.9975 C106.8421,49.9975 103.0231,68.9055 108.1711,70.1715"  id="Stroke-165"></path>
                    <path d="M121.5557,39.6347 C121.5557,39.6347 123.8777,42.4757 123.1697,49.2157 C122.4617,55.9557 117.5057,67.5987 117.5057,67.5987 C117.5057,67.5987 123.1697,46.7647 130.9577,46.7647 C138.7467,46.7647 130.2837,63.0137 130.2837,63.0137 C130.2837,63.0137 136.9667,45.5387 145.4627,46.1517 C153.9597,46.7647 139.0887,71.3987 144.1147,75.7147"  id="Stroke-167"></path>
                    <line x1="180.8233" y1="25.0713" x2="168.3113" y2="65.9713"  id="Stroke-169"></line>
                    <path d="M168.0841,75.1035 C167.9631,76.7985 166.7161,78.2905 165.2981,78.4345 C163.8811,78.5805 162.8311,77.3235 162.9521,75.6285 C163.0741,73.9335 164.3211,72.4425 165.7381,72.2975 C167.1551,72.1525 168.2061,73.4095 168.0841,75.1035 Z"  id="Stroke-171"></path>
                    <path d="M80.6007,39.3525 C80.4797,41.0465 79.2317,42.5385 77.8147,42.6835 C76.3977,42.8285 75.3477,41.5715 75.4687,39.8765 C75.5907,38.1825 76.8377,36.6915 78.2547,36.5455 C79.6717,36.4015 80.7227,37.6575 80.6007,39.3525 Z"  id="Stroke-173"></path>
                </g>
                <g class="phone" transform="translate(831.176918, 142.492341)">
                    <path d="M85.6474405,311.266354 L4.76844051,294.500354 C1.54544051,293.831354 -0.543559494,290.649354 0.124440506,287.425354 L34.0494405,123.770354 C34.7174405,120.547354 37.9014405,118.456354 41.1254405,119.124354 L122.002441,135.891354 C125.225441,136.559354 127.316441,139.743354 126.648441,142.965354 L92.7214405,306.621354 C92.0534405,309.844354 88.8704405,311.934354 85.6474405,311.266354 Z"  id="Stroke-11" stroke="#3333CC" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
                    <path d="M98.9775405,135.467554 C98.0415405,139.976554 93.5885405,142.900554 89.0805405,141.965554 L69.8425405,137.977554 C65.3335405,137.042554 62.4105405,132.589554 63.3445405,128.080554"  id="Stroke-13" stroke="#3333CC" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
                    <line x1="31.0293405" y1="288.940254" x2="63.9513405" y2="295.909254"  id="Stroke-15" stroke="#3333CC" stroke-width="2" stroke-linecap="round"></line>
                    <line x1="70.9707405" y1="131.942154" x2="85.2497405" y2="134.795154"  id="Stroke-17" stroke="#3333CC" stroke-width="2" stroke-linecap="round"></line>
                    <path d="M90.3544405,135.283954 C90.4364405,135.848954 90.0454405,136.373954 89.4814405,136.455954 C88.9164405,136.538954 88.3914405,136.146954 88.3084405,135.582954 C88.2264405,135.017954 88.6174405,134.492954 89.1824405,134.410954 C89.7474405,134.328954 90.2724405,134.719954 90.3544405,135.283954"  id="Fill-19" fill="#4F47EC"></path>
                    <path d="M90.3544405,135.283954 C90.4364405,135.848954 90.0454405,136.373954 89.4814405,136.455954 C88.9164405,136.538954 88.3914405,136.146954 88.3084405,135.582954 C88.2264405,135.017954 88.6174405,134.492954 89.1824405,134.410954 C89.7474405,134.328954 90.2724405,134.719954 90.3544405,135.283954 Z"  id="Stroke-21" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M92.8007405,185.782054 L47.8087405,175.902054 C39.5427405,174.087054 31.2957405,179.364054 29.4807405,187.630054 L25.4947405,205.775054 C23.6807405,214.040054 28.9577405,222.288054 37.2237405,224.103054 L87.8677405,235.225054 L95.2147405,246.521054 L104.528741,204.111054 C106.343741,195.845054 101.066741,187.597054 92.8007405,185.782054"  id="Fill-23" fill="#3333CC"></path>
                    <path d="M92.8007405,185.782054 L47.8087405,175.902054 C39.5427405,174.087054 31.2957405,179.364054 29.4807405,187.630054 L25.4947405,205.775054 C23.6807405,214.040054 28.9577405,222.288054 37.2237405,224.103054 L87.8677405,235.225054 L95.2147405,246.521054 L104.528741,204.111054 C106.343741,195.845054 101.066741,187.597054 92.8007405,185.782054 Z"  id="Stroke-25" stroke="#3333CC" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M56.4218405,209.588654 L55.4888405,213.837654 L41.5398405,210.774654 L42.4018405,206.845654 C45.2448405,205.761654 47.1688405,205.034654 49.4978405,203.361654 C50.2658405,202.802654 52.8928405,200.913654 53.3318405,198.909654 C53.5088405,198.108654 53.3008405,196.886654 51.8848405,196.575654 C49.9068405,196.141654 49.2598405,198.071654 48.9258405,199.202654 L44.1168405,198.146654 C44.4508405,196.875654 44.8628405,195.257654 46.2898405,193.861654 C48.5488405,191.612654 51.6028405,191.862654 53.0458405,192.180654 C57.4558405,193.149654 59.1348405,196.599654 58.5188405,199.404654 C57.5968405,203.600654 53.4448405,206.049654 49.7138405,208.114654 L56.4218405,209.588654 Z"  id="Fill-29" fill="#FFFFFF"></path>
                    <path d="M64.1562405,208.402154 C63.8982405,209.578154 63.8852405,211.423154 65.8372405,211.852154 C68.1612405,212.363154 68.6772405,210.011154 68.8062405,209.423154 L70.0742405,203.651154 C70.2092405,203.037154 70.7192405,200.713154 68.3952405,200.202154 C66.3912405,199.761154 65.6582405,201.561154 65.4242405,202.630154 L64.1562405,208.402154 Z M60.3452405,201.655154 C61.6012405,195.936154 66.6172405,195.161154 69.4502405,195.783154 C71.9882405,196.340154 76.3812405,199.042154 75.0952405,204.894154 L73.8862405,210.399154 C72.6772405,215.903154 68.0432405,216.986154 64.9432405,216.305154 C62.0302405,215.666154 57.9102405,212.744154 59.1362405,207.160154 L60.3452405,201.655154 Z"  id="Fill-31" fill="#FFFFFF"></path>
                    <path d="M90.9179405,218.928454 C91.9059405,219.146454 92.9429405,218.505454 93.1719405,217.463454 C93.4059405,216.394454 92.7279405,215.405454 91.7389405,215.187454 C90.6699405,214.952454 89.6799405,215.632454 89.4569405,216.647454 C89.2339405,217.662454 89.8749405,218.699454 90.9179405,218.928454 L90.9179405,218.928454 Z M92.3909405,212.221454 C95.0359405,212.802454 96.7249405,215.443454 96.1379405,218.115454 C95.5449405,220.813454 92.8579405,222.463454 90.2669405,221.894454 C87.6469405,221.320454 85.8929405,218.721454 86.4909405,215.995454 C87.0779405,213.324454 89.7179405,211.634454 92.3909405,212.221454 L92.3909405,212.221454 Z M81.9329405,205.498454 C82.8959405,205.710454 83.9529405,205.102454 84.1879405,204.033454 C84.4159405,202.990454 83.7659405,202.008454 82.7489405,201.784454 C81.7339405,201.562454 80.7289405,202.181454 80.4939405,203.250454 C80.2769405,204.239454 80.9179405,205.276454 81.9329405,205.498454 L81.9329405,205.498454 Z M91.4899405,201.015454 L94.5899405,201.696454 L82.0429405,219.668454 L78.9699405,218.993454 L91.4899405,201.015454 Z M83.3999405,198.818454 C86.0729405,199.405454 87.7349405,202.039454 87.1479405,204.711454 C86.5619405,207.384454 83.9279405,209.046454 81.2809405,208.465454 C78.6629405,207.891454 76.9419405,205.271454 77.5289405,202.599454 C78.1159405,199.927454 80.7559405,198.238454 83.3999405,198.818454 L83.3999405,198.818454 Z"  id="Fill-33" fill="#FFFFFF"></path>
                    <polygon  id="Fill-27" fill="#FFFFFF" points="41.3935405 204.944154 33.8845405 203.295154 34.8405405 198.938154 42.3495405 200.588154"></polygon>
                    <g class="phone-waves" transform="translate(18.708941, 0.158754)" stroke="#3333CC" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
                        <path d="M15.377,50.0657 C28.273,39.0877 44.282,32.5867 61.624,32.5867 C78.331,32.5867 93.8,38.6217 106.441,48.8787"  id="Stroke-3"></path>
                        <path d="M122.25,21.719 C105.085,8.035 84.19,1.77635684e-15 61.646,1.77635684e-15 C38.643,1.77635684e-15 17.357,8.364 0,22.558"  id="Stroke-5"></path>
                        <path d="M31.1133,78.219 C39.4563,70.522 50.0793,65.904 61.6533,65.904 C72.3783,65.904 82.2853,69.87 90.3193,76.575"  id="Stroke-7"></path>
                    </g>
                </g>
                <g class="line-main line-main-start" transform="translate(717.475758, 406.354395)" stroke="#3333CC" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
                    <line x1="-4.97379915e-14" y1="0.5" x2="118.764" y2="0.5"  id="Stroke-175"></line>
                    <line x1="227.2285" y1="0.5" x2="345.9925" y2="0.5"  id="Stroke-177"></line>
                </g>
                <g class="label" transform="translate(553.897935, 19.847595)" stroke-linecap="round" stroke-width="2">
                    <path d="M0.465523778,199.5684 C-4.04547622,153.3404 25.2705238,118.3874 43.3105238,105.9854"  id="Stroke-35" stroke="#3333CC" stroke-linejoin="round"></path>
                    <polygon  id="Stroke-37" stroke="#3333CC" stroke-linejoin="round" points="42.2233238 107.207 39.9273238 65.395 105.323324 7.10542736e-15 153.875324 49.169 80.0853238 110.976"></polygon>
                    <path d="M61.9928238,64.6231 C61.9928238,64.6231 60.9458238,59.9931 64.8218238,56.8651 C68.6968238,53.7381 72.5968238,55.9471 74.3928238,59.1661 C75.5648238,61.2671 76.6408238,66.6741 75.8028238,73.3601 C75.2298238,77.9241 73.1018238,85.0441 76.1308238,90.9791 L89.3408238,81.3941"  id="Stroke-179" stroke="#1D1D1B"></path>
                    <path d="M95.8385238,54.9512 C99.4615238,62.3852 100.630524,70.1402 96.3875238,73.0782 C92.7785238,75.5772 87.9105238,69.9422 84.2875238,62.5082 C80.6645238,55.0742 80.3135238,47.3552 83.5025238,45.2682 C86.6925238,43.1822 92.2155238,47.5172 95.8385238,54.9512 Z"  id="Stroke-181" stroke="#1D1D1B"></path>
                    <polyline  id="Stroke-183" stroke="#1D1D1B" points="100.530924 29.8789 108.104924 21.5459 108.705924 55.8119"></polyline>
                    <path d="M119.759424,39.8858 C120.769424,42.0808 120.238424,44.7938 118.571424,45.9468 C116.905424,47.0978 114.735424,46.2518 113.725424,44.0578 C112.714424,41.8628 113.246424,39.1498 114.912424,37.9968 C116.579424,36.8458 118.749424,37.6918 119.759424,39.8858 Z"  id="Stroke-185" stroke="#1D1D1B"></path>
                    <path d="M101.719424,32.2754 C102.729424,34.4694 102.198424,37.1834 100.531424,38.3354 C98.8654238,39.4874 96.6954238,38.6414 95.6854238,36.4464 C94.6744238,34.2524 95.2064238,31.5384 96.8724238,30.3864 C98.5394238,29.2344 100.709424,30.0804 101.719424,32.2754 Z"  id="Stroke-187" stroke="#1D1D1B"></path>
                    <line x1="66.3151238" y1="84.1104" x2="54.4461238" y2="93.0444"  id="Stroke-189" stroke="#1D1D1B"></line>
                </g>
                <g class="coffee" transform="translate(329.404070, 0.000000)">
                    <path d="M90.6272882,95.9393946 C77.7102882,89.8923946 44.4172882,88.0333946 26.5742882,93.2693946 C8.73128822,98.5063946 -0.39771178,105.270395 0.0132882204,115.410395 C0.42428822,125.549395 15.9672882,202.781395 15.9672882,202.781395 C15.9672882,202.781395 26.4002882,218.908395 57.1632882,216.909395 C75.1652882,215.739395 87.2612882,207.791395 87.2612882,207.791395 C87.2612882,207.791395 104.800288,139.374395 106.597288,128.016395 C108.393288,116.660395 111.331288,105.632395 90.6272882,95.9393946"  id="Fill-39" fill="#FFFFFF"></path>
                    <path d="M90.6272882,95.9393946 C77.7102882,89.8923946 44.4172882,88.0333946 26.5742882,93.2693946 C8.73128822,98.5063946 -0.39771178,105.270395 0.0132882204,115.410395 C0.42428822,125.549395 15.9672882,202.781395 15.9672882,202.781395 C15.9672882,202.781395 26.4002882,218.908395 57.1632882,216.909395 C75.1652882,215.739395 87.2612882,207.791395 87.2612882,207.791395 C87.2612882,207.791395 104.800288,139.374395 106.597288,128.016395 C108.393288,116.660395 111.331288,105.632395 90.6272882,95.9393946 Z"  id="Stroke-41" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M75.0374882,101.084895 C61.8834882,97.5798946 44.6284882,97.1628946 31.4154882,101.348895 C23.2454882,103.936895 13.2354882,106.895895 10.9034882,114.968895 C9.58448822,119.535895 10.7234882,125.102895 25.0924882,130.943895 C41.9194882,137.784895 66.1104882,135.006895 76.3464882,133.380895 C89.0534882,131.360895 94.9094882,127.361895 96.9194882,121.262895 C99.9854882,111.953895 97.0924882,106.961895 75.0374882,101.084895"  id="Fill-45" fill="#1D1D1B"></path>
                    <path d="M75.0374882,101.084895 C61.8834882,97.5798946 44.6284882,97.1628946 31.4154882,101.348895 C23.2454882,103.936895 13.2354882,106.895895 10.9034882,114.968895 C9.58448822,119.535895 10.7234882,125.102895 25.0924882,130.943895 C41.9194882,137.784895 66.1104882,135.006895 76.3464882,133.380895 C89.0534882,131.360895 94.9094882,127.361895 96.9194882,121.262895 C99.9854882,111.953895 97.0924882,106.961895 75.0374882,101.084895 Z"  id="Stroke-47" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M47.1106882,122.665995 C47.1106882,122.665995 19.6316882,89.8079946 34.5516882,63.3679946 C43.6756882,47.2009946 54.5316882,36.6039946 53.9836882,23.0859946 C52.8876882,-3.95200541 33.1216882,0.233994586 33.1216882,0.233994586"  id="Stroke-49" stroke="#979796" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M73.2317882,37.9657946 C73.2317882,37.9657946 84.2027882,48.8057946 67.7807882,70.5347946 C48.4667882,96.0927946 70.6427882,113.299795 70.6427882,113.299795"  id="Stroke-51" stroke="#979796" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M106.570688,125.832995 C106.570688,125.832995 115.862688,126.159995 118.480688,135.080995 C121.098688,144.002995 119.663688,154.968995 117.729688,162.945995 C115.796688,170.923995 108.768688,178.277995 95.2966882,179.952995"  id="Stroke-43" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                </g>
                <g class="spoon" transform="translate(288.877625, 410.545446)" stroke="#979796" stroke-linecap="round" stroke-width="2">
                    <path d="M33.494633,136.516948 C33.494633,136.516948 26.412633,137.698948 25.958633,130.195948 C25.504633,122.692948 15.519633,51.0039483 15.384633,48.7529483 C15.247633,46.5019483 2.31563297,43.1219483 0.49463297,26.6869483 C-1.16336703,11.7259483 1.29263297,2.53994835 8.68263297,0.210948349 C16.071633,-2.11905165 25.039633,15.4129483 25.629633,25.1659483 C26.219633,34.9199483 22.568633,43.0469483 19.795633,46.9809483 C19.795633,46.9809483 24.895633,75.2879483 26.588633,84.5979483 C28.281633,93.9089483 35.057633,119.190948 36.610633,125.786948 C39.144633,136.551948 33.494633,136.516948 33.494633,136.516948 Z"  id="Stroke-55"></path>
                    <path d="M11.475033,7.47894835 C11.475033,7.47894835 16.130033,9.73894835 18.209033,16.1079483 C20.289033,22.4769483 21.302033,34.5579483 17.653033,39.5799483"  id="Stroke-57"></path>
                </g>
                <g class="plate" transform="translate(324.899056, 204.709895)">
                    <path d="M344.221203,165.3623 C344.221203,80.1483 275.142203,11.0693 189.928203,11.0693 C104.714203,11.0693 35.6342027,80.1483 35.6342027,165.3623 C35.6342027,250.5763 104.714203,319.6563 189.928203,319.6563 C275.142203,319.6563 344.221203,250.5763 344.221203,165.3623 Z"  id="Stroke-59" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M92.5230027,261.6523 C117.246003,286.3763 151.401003,301.6673 189.127003,301.6673 C264.580003,301.6673 325.746003,240.5013 325.746003,165.0483 C325.746003,136.3193 316.878003,109.6613 301.731003,87.6623"  id="Stroke-61" stroke="#979796" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M122.321803,45.8487 C101.287803,57.6627 83.6968027,74.8837 71.4348027,95.6267"  id="Stroke-63" stroke="#979796" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M275.279803,59.0127 C255.852803,43.2087 232.000803,32.6377 205.868803,29.4447"  id="Stroke-65" stroke="#979796" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M261.898003,243.9785 C250.958003,247.5185 241.463003,245.7945 234.088003,260.3355 C226.712003,274.8765 202.408003,298.7215 170.519003,283.5985 C159.559003,278.4015 133.321003,266.8865 132.499003,243.8245 C131.676003,220.7625 142.002003,199.9115 157.824003,192.9595 C173.646003,186.0075 189.502003,184.5315 194.699003,174.4105 C199.896003,164.2905 208.922003,143.0885 232.470003,137.0865 C256.018003,131.0845 284.306003,140.6815 301.625003,166.4025 C310.693003,179.8715 316.763003,226.2285 261.898003,243.9785 Z"  id="Stroke-71" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M253.848203,212.9844 C265.612203,206.0644 269.621203,191.0564 262.802203,179.4634 C255.983203,167.8694 240.917203,164.0804 229.154203,171.0004 C217.389203,177.9194 213.380203,192.9274 220.199203,204.5204 C227.018203,216.1144 242.083203,219.9034 253.848203,212.9844 Z"  id="Stroke-73" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M258.419503,197.7383 C258.419503,197.7383 261.249503,189.0093 254.329503,181.3063 C247.409503,173.6043 237.659503,174.6303 237.659503,174.6303"  id="Stroke-75" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M201.498603,260.7178 C213.263603,253.7978 217.271603,238.7898 210.452603,227.1968 C203.633603,215.6028 188.568603,211.8138 176.804603,218.7338 C165.039603,225.6528 161.030603,240.6598 167.850603,252.2538 C174.668603,263.8478 189.733603,267.6368 201.498603,260.7178 Z"  id="Stroke-77" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M205.478103,245.8193 C205.478103,245.8193 208.308103,237.0903 201.388103,229.3873 C194.468103,221.6853 184.718103,222.7113 184.718103,222.7113"  id="Stroke-79" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M328.192903,63.9658 C328.192903,63.9658 310.867903,50.7618 279.449903,63.9408 C264.555903,70.1888 238.820903,82.8308 227.190903,81.4718 C215.559903,80.1128 196.172903,72.9758 196.172903,72.9758 L197.713903,99.7488 C197.713903,99.7488 205.461903,102.5708 215.796903,104.4178 C224.791903,106.0258 232.256903,105.3038 245.790903,99.9368 C260.476903,94.1128 264.719903,87.6948 276.570903,84.1278 C288.420903,80.5618 297.253903,79.1178 305.228903,79.9698 C313.204903,80.8218 330.938903,86.9668 330.938903,86.9668 L328.192903,63.9658 Z"  id="Fill-81" fill="#FFFFFF"></path>
                    <path d="M328.192903,63.9658 C328.192903,63.9658 310.867903,50.7618 279.449903,63.9408 C264.555903,70.1888 238.820903,82.8308 227.190903,81.4718 C215.559903,80.1128 196.172903,72.9758 196.172903,72.9758 L197.713903,99.7488 C197.713903,99.7488 205.461903,102.5708 215.796903,104.4178 C224.791903,106.0258 232.256903,105.3038 245.790903,99.9368 C260.476903,94.1128 264.719903,87.6948 276.570903,84.1278 C288.420903,80.5618 297.253903,79.1178 305.228903,79.9698 C313.204903,80.8218 330.938903,86.9668 330.938903,86.9668 L328.192903,63.9658 Z"  id="Stroke-83" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M329.187003,74.6143 C329.187003,74.6143 317.410003,64.8332851 303.879003,64.8332851 C294.057003,64.8332851 295.023003,64.7923 283.333003,69.0163 C271.642003,73.2403 258.049003,84.1893 247.534003,87.4333 C237.018003,90.6763 227.904003,91.7643 218.752003,91.8923 C209.601003,92.0213 197.646003,85.5963 197.646003,85.5963"  id="Stroke-85" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M297.099103,103.0566 C297.099103,103.0566 288.130103,97.8096 269.322103,97.6756 C248.211103,97.5256 244.766103,100.8416 228.790103,108.6756 C213.335103,116.2546 190.726103,121.4926 178.144103,120.9396 C165.562103,120.3866 149.679103,116.7006 149.679103,116.7006 L154.184103,141.6636 C154.184103,141.6636 170.487103,144.4836 188.016103,142.5586 C205.546103,140.6336 219.969103,134.0706 230.739103,129.5236 C241.507103,124.9766 254.864103,119.5096 265.925103,119.8846 C276.988103,120.2596 302.865103,125.4186 302.865103,125.4186 L297.099103,103.0566 Z"  id="Fill-87" fill="#FFFFFF"></path>
                    <path d="M297.099103,103.0566 C297.099103,103.0566 288.130103,97.8096 269.322103,97.6756 C248.211103,97.5256 244.766103,100.8416 228.790103,108.6756 C213.335103,116.2546 190.726103,121.4926 178.144103,120.9396 C165.562103,120.3866 149.679103,116.7006 149.679103,116.7006 L154.184103,141.6636 C154.184103,141.6636 170.487103,144.4836 188.016103,142.5586 C205.546103,140.6336 219.969103,134.0706 230.739103,129.5236 C241.507103,124.9766 254.864103,119.5096 265.925103,119.8846 C276.988103,120.2596 302.865103,125.4186 302.865103,125.4186 L297.099103,103.0566 Z"  id="Stroke-89" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M297.857903,111.9639 C297.857903,111.9639 289.421903,106.1679 275.174903,106.5669 C260.926903,106.9649 246.211903,112.1969 238.782903,115.3769 C231.352903,118.5579 222.006903,124.0339 211.422903,126.5409 C200.838903,129.0469 193.724903,131.5769 184.905903,131.3619 C178.226903,131.1989 164.377903,131.0019 158.447903,130.7169"  id="Stroke-91" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M160.318903,88.3721 C159.496903,95.6031 152.966903,100.7991 145.736903,99.9761 C138.505903,99.1541 133.309903,92.6251 134.131903,85.3941 C134.954903,78.1631 141.482903,72.9681 148.714903,73.7901 C155.945903,74.6121 161.140903,81.1421 160.318903,88.3721"  id="Fill-93" fill="#FFFFFF"></path>
                    <path d="M160.318903,88.3721 C159.496903,95.6031 152.966903,100.7991 145.736903,99.9761 C138.505903,99.1541 133.309903,92.6251 134.131903,85.3941 C134.954903,78.1631 141.482903,72.9681 148.714903,73.7901 C155.945903,74.6121 161.140903,81.1421 160.318903,88.3721 Z"  id="Stroke-95" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M145.530803,92.8115 C144.708803,100.0425 138.179803,105.2385 130.949803,104.4155 C123.718803,103.5935 118.522803,97.0655 119.344803,89.8335 C120.167803,82.6025 126.695803,77.4075 133.926803,78.2295 C141.157803,79.0515 146.352803,85.5815 145.530803,92.8115"  id="Fill-97" fill="#FFFFFF"></path>
                    <path d="M145.530803,92.8115 C144.708803,100.0425 138.179803,105.2385 130.949803,104.4155 C123.718803,103.5935 118.522803,97.0655 119.344803,89.8335 C120.167803,82.6025 126.695803,77.4075 133.926803,78.2295 C141.157803,79.0515 146.352803,85.5815 145.530803,92.8115 Z"  id="Stroke-99" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M158.276903,40.5322 C157.454903,47.7622 150.925903,52.9582 143.695903,52.1362 C136.464903,51.3132 131.268903,44.7852 132.090903,37.5542 C132.913903,30.3232 139.441903,25.1282 146.672903,25.9502 C153.903903,26.7722 159.098903,33.3012 158.276903,40.5322"  id="Fill-101" fill="#FFFFFF"></path>
                    <path d="M158.276903,40.5322 C157.454903,47.7622 150.925903,52.9582 143.695903,52.1362 C136.464903,51.3132 131.268903,44.7852 132.090903,37.5542 C132.913903,30.3232 139.441903,25.1282 146.672903,25.9502 C153.903903,26.7722 159.098903,33.3012 158.276903,40.5322 Z"  id="Stroke-103" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M179.882303,83.7959 C179.060303,91.0259 172.530303,96.2219 165.300303,95.3999 C158.069303,94.5769 152.873303,88.0489 153.695303,80.8179 C154.518303,73.5869 161.046303,68.3919 168.278303,69.2139 C175.509303,70.0359 180.704303,76.5649 179.882303,83.7959"  id="Fill-105" fill="#FFFFFF"></path>
                    <path d="M179.882303,83.7959 C179.060303,91.0259 172.530303,96.2219 165.300303,95.3999 C158.069303,94.5769 152.873303,88.0489 153.695303,80.8179 C154.518303,73.5869 161.046303,68.3919 168.278303,69.2139 C175.509303,70.0359 180.704303,76.5649 179.882303,83.7959 Z"  id="Stroke-107" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M188.749503,59.6397 C187.927503,66.8707 181.398503,72.0667 174.168503,71.2437 C166.937503,70.4217 161.741503,63.8937 162.563503,56.6617 C163.386503,49.4317 169.914503,44.2367 177.145503,45.0587 C184.376503,45.8807 189.571503,52.4097 188.749503,59.6397"  id="Fill-109" fill="#FFFFFF"></path>
                    <path d="M188.749503,59.6397 C187.927503,66.8707 181.398503,72.0667 174.168503,71.2437 C166.937503,70.4217 161.741503,63.8937 162.563503,56.6617 C163.386503,49.4317 169.914503,44.2367 177.145503,45.0587 C184.376503,45.8807 189.571503,52.4097 188.749503,59.6397 Z"  id="Stroke-111" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M164.371603,64.6895 C163.549603,71.9195 157.020603,77.1155 149.789603,76.2935 C142.559603,75.4705 137.363603,68.9425 138.185603,61.7105 C139.008603,54.4805 145.536603,49.2855 152.767603,50.1075 C159.998603,50.9295 165.193603,57.4585 164.371603,64.6895"  id="Fill-113" fill="#FFFFFF"></path>
                    <path d="M164.371603,64.6895 C163.549603,71.9195 157.020603,77.1155 149.789603,76.2935 C142.559603,75.4705 137.363603,68.9425 138.185603,61.7105 C139.008603,54.4805 145.536603,49.2855 152.767603,50.1075 C159.998603,50.9295 165.193603,57.4585 164.371603,64.6895 Z"  id="Stroke-115" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M173.490703,44.3028 C172.668703,51.5328 166.139703,56.7288 158.909703,55.9068 C151.678703,55.0838 146.482703,48.5558 147.304703,41.3248 C148.127703,34.0938 154.655703,28.8988 161.886703,29.7208 C169.117703,30.5428 174.312703,37.0718 173.490703,44.3028"  id="Fill-117" fill="#FFFFFF"></path>
                    <path d="M173.490703,44.3028 C172.668703,51.5328 166.139703,56.7288 158.909703,55.9068 C151.678703,55.0838 146.482703,48.5558 147.304703,41.3248 C148.127703,34.0938 154.655703,28.8988 161.886703,29.7208 C169.117703,30.5428 174.312703,37.0718 173.490703,44.3028 Z"  id="Stroke-119" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M194.146003,36.1094 C193.324003,43.3404 186.795003,48.5364 179.564003,47.7134 C172.334003,46.8914 167.138003,40.3634 167.960003,33.1314 C168.783003,25.9004 175.311003,20.7054 182.542003,21.5274 C189.773003,22.3494 194.968003,28.8794 194.146003,36.1094"  id="Fill-121" fill="#FFFFFF"></path>
                    <path d="M194.146003,36.1094 C193.324003,43.3404 186.795003,48.5364 179.564003,47.7134 C172.334003,46.8914 167.138003,40.3634 167.960003,33.1314 C168.783003,25.9004 175.311003,20.7054 182.542003,21.5274 C189.773003,22.3494 194.968003,28.8794 194.146003,36.1094 Z"  id="Stroke-123" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <line x1="155.508303" y1="28.9951" x2="154.823303" y2="5.1131"  id="Stroke-125" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></line>
                    <path d="M139.762203,0 C144.386203,1.206 164.376203,4.84 173.210203,22.847"  id="Stroke-127" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M70.5415027,102.2529 C28.4135027,105.5529 -3.06249728,142.3779 0.237502722,184.5049 C3.53750272,226.6329 40.3625027,258.1079 82.4895027,254.8089 C124.616503,251.5099 156.093503,214.6839 152.793503,172.5569 C149.493503,130.4299 112.668503,98.9529 70.5415027,102.2529"  id="Fill-129" fill="#FFFFFF"></path>
                    <path d="M70.5415027,102.2529 C28.4135027,105.5529 -3.06249728,142.3779 0.237502722,184.5049 C3.53750272,226.6329 40.3625027,258.1079 82.4895027,254.8089 C124.616503,251.5099 156.093503,214.6839 152.793503,172.5569 C149.493503,130.4299 112.668503,98.9529 70.5415027,102.2529 Z"  id="Stroke-131" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M31.6997027,132.9766 C20.6257027,143.6426 13.5307027,158.2796 12.5437027,174.3636 L66.8007027,178.8576 L31.6997027,132.9766 Z"  id="Stroke-133" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M75.8892027,116.6143 C73.6342027,116.5483 71.3552027,116.5933 69.0552027,116.7733 C57.2952027,117.6943 46.5512027,121.8003 37.5872027,128.1703 L69.2422027,173.6833 L75.8892027,116.6143 Z"  id="Stroke-135" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M25.9419027,220.1172 C31.8379027,227.6712 46.7979027,237.0102 61.0089027,241.2352 L68.5329027,191.8892 L25.9419027,220.1172 Z"  id="Stroke-137" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M135.726103,195.7129 C137.760103,188.6599 138.595103,181.1319 137.988103,173.3819 C137.580103,168.1629 136.535103,163.1489 134.954103,158.3959 L77.9111027,184.3929 L135.726103,195.7129 Z"  id="Stroke-139" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M68.5200027,241.7148 C69.4960027,241.6828 79.2250027,241.0608 80.2080027,240.9838 C92.9300027,239.9868 104.462003,235.2598 113.837003,227.9728 L73.9770027,193.2418 L68.5200027,241.7148 Z"  id="Stroke-141" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M74.1177027,176.8604 L109.534703,125.5594 C101.562703,120.3764 92.3807027,116.9634 82.5727027,115.8314 L74.1177027,176.8604 Z"  id="Stroke-143" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M130.738803,151.4102 C127.425803,143.7342 122.643803,136.8892 116.765803,131.1942 C102.380803,148.1482 79.2628027,178.9482 79.2628027,178.9482 L130.738803,151.4102 Z"  id="Stroke-145" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M119.611803,221.9902 C124.726803,216.4052 128.833803,209.9132 131.673803,202.8062 L77.6458027,190.1072 L119.611803,221.9902 Z"  id="Stroke-147" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M12.5913027,182.9375 C12.5983027,183.0255 12.5993027,183.1135 12.6063027,183.2025 C13.3233027,192.3735 15.9913027,200.9195 20.1453027,208.4935 L66.3203027,186.3685 L12.5913027,182.9375 Z"  id="Stroke-149" stroke="#1D1D1B" stroke-width="2" stroke-linecap="round"></path>
                </g>
                <g class="fork" transform="translate(704.833216, 274.549495)" stroke="#3333CC" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
                    <path d="M13.3935427,131.553 C13.3935427,131.553 13.5415427,128.397 8.73454268,123.623 C3.92554268,118.85 -0.237457324,117.036 0.0105426759,112.259 C0.258542676,107.482 -0.313457324,41.722 2.38854268,30.686 C5.09154268,19.65 10.3035427,1.292 21.2815427,-1.42108547e-14 L21.3385427,131.996"  id="Stroke-67"></path>
                    <path d="M13.5233427,142.4524 C13.5233427,142.4524 7.76334268,187.9954 7.61634268,200.3054 C7.45734268,213.6024 11.8303427,236.9814 16.7763427,239.1014 C21.7213427,241.2224 29.5443427,240.9514 28.5533427,222.4174 C27.8163427,208.6174 21.2863427,131.1774 21.2863427,131.1774"  id="Stroke-69"></path>
                </g>
                <g class="fork" transform="translate(161.305243, 324.837795)" stroke="#3333CC" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
                    <path d="M144.139216,-4.26325641e-14 C144.139216,-4.26325641e-14 108.414216,36.846 105.544216,42.554 C101.485216,50.626 102.853216,58.28 100.977216,62.533 C99.1012157,66.787 86.7522157,78.634 86.7522157,78.634 L72.4702157,90.66 C72.4702157,90.66 21.8652157,136.697 7.47621575,154.52 C-5.92378425,171.119 1.68521575,176.413 7.24921575,179.113 C16.2462157,183.479 32.1382157,161.185 42.0192157,149.522 C51.1652157,138.726 86.7522157,88.781 86.7522157,88.781"  id="Stroke-153"></path>
                    <path d="M150.015216,7.6612 L119.808216,41.3612 C119.808216,41.3612 114.916216,43.1892 115.184216,39.4222"  id="Stroke-155"></path>
                    <path d="M154.783816,12.5655 L124.576816,46.2655 C124.576816,46.2655 119.685816,48.0935 119.952816,44.3265"  id="Stroke-157"></path>
                    <path d="M159.986916,17.5391 L129.779916,51.2391 C129.779916,51.2391 124.888916,53.0671 125.156916,49.2991"  id="Stroke-159"></path>
                    <path d="M93.1412157,82.0166 C93.1412157,82.0166 102.781216,71.9966 105.513216,69.4156 C108.245216,66.8346 119.671216,70.0126 128.787216,63.5736 C137.905216,57.1336 167.932216,22.2586 167.932216,22.2586"  id="Stroke-151"></path>
                </g>
            </g>
        </g>
    </svg>

custom-paths.svg

  <svg id="custom-shape" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="300" height="300" viewBox="-100 -100 200 200" xml:space="preserve">
    <path fill="#FFFFFF" stroke="#000000" stroke-width="0.7" d="M-33.4-33.4h66.7v17.6C29,9.3,9.3,29-15.7,33.4h-17.6V-33.4z"/>
    <ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 0 0)" fill="none" stroke="#000000" stroke-width="0.4" cx="0" cy="0" rx="35.3" ry="17.6"/>
    <rect x="-25.1" y="23.5" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -24.034 -9.8024)" fill="#1D1D1B" stroke="#000000" stroke-width="0.2" width="2.5" height="1.3"/>
    <circle id="svg_4" fill="#1D1D1B" stroke="#000000" stroke-width="0.2" cx="-18.9" cy="18.9" r="1.5"/>
  </svg>

wikipedia-tiger.svg

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <svg id="svg2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 900" version="1.1">
     <g id="g4" fill="none" transform="matrix(1.7656463,0,0,1.7656463,324.90716,255.00942)">
      <g id="g6" stroke-width="0.17200001" stroke="#000" fill="#FFF">
       <path id="path8" d="m-122.3,84.285s0.1,1.894-0.73,1.875c-0.82-0.019-17.27-48.094-37.8-45.851,0,0,17.78-7.353,38.53,43.976z"/>
      </g>
      <g id="g10" stroke-width="0.17200001" stroke="#000" fill="#FFF">
       <path id="path12" d="m-118.77,81.262s-0.55,1.816-1.32,1.517c-0.77-0.298,0.11-51.104-19.95-55.978,0,0,19.22-0.864,21.27,54.461z"/>
      </g>
      <g id="g14" stroke-width="0.17200001" stroke="#000" fill="#FFF">
       <path id="path16" d="m-91.284,123.59s1.636,0.96,1.166,1.64c-0.471,0.67-49.642-12.13-59.102,6.23,0,0,3.68-18.89,57.936-7.87z"/>
      </g>
      <g id="g18" stroke-width="0.17200001" stroke="#000" fill="#FFF">
       <path id="path20" d="m-94.093,133.8s1.856,0.4,1.622,1.19c-0.233,0.79-50.939,4.13-54.129,24.53,0,0-2.46-19.08,52.507-25.72z"/>
      </g>
      <g id="g22" stroke-width="0.17200001" stroke="#000" fill="#FFF">
       <path id="path24" d="m-98.304,128.28s1.778,0.66,1.432,1.41-50.998-3.34-57.128,16.37c0,0,0.35-19.24,55.696-17.78z"/>
      </g>
      <g id="g26" stroke-width="0.17200001" stroke="#000" fill="#FFF">
       <path id="path28" d="m-109.01,110.07s1.31,1.38,0.67,1.9-44.38-25.336-58.53-10.29c0,0,8.74-17.147,57.86,8.39z"/>
      </g>
      <g id="g30" stroke-width="0.17200001" stroke="#000" fill="#FFF">
       <path id="path32" d="m-116.55,114.26s1.45,1.22,0.88,1.81c-0.58,0.59-46.97-20.148-59.32-3.6,0,0,6.74-18.023,58.44,1.79z"/>
      </g>
      <g id="g34" stroke-width="0.17200001" stroke="#000" fill="#FFF">
       <path id="path36" d="m-119.15,118.34s1.6,1,1.11,1.67c-0.49,0.66-49.27-13.56-59.25,4.51,0,0,4.22-18.77,58.14-6.18z"/>
      </g>
      <g id="g38" stroke-width="0.17200001" stroke="#000" fill="#FFF">
       <path id="path40" d="m-108.42,118.95s1.12,1.53,0.42,1.97c-0.7,0.43-40.77-30.818-56.73-17.71,0,0,10.87-15.884,56.31,15.74z"/>
      </g>
      <g id="g42" stroke-width="0.17200001" stroke="#000" fill="#FFF">
       <path id="path44" d="m-128.2,90s0.6,1.8-0.2,2-29.4-41.8-48.6-34.2c0,0,15.2-11.8,48.8,32.2z"/>
      </g>
      <g id="g46" stroke-width="0.17200001" stroke="#000" fill="#FFF">
       <path id="path48" d="m-127.5,96.979s0.97,1.629,0.23,1.996c-0.74,0.368-37.72-34.476-54.83-22.914,0,0,12.3-14.8,54.6,20.918z"/>
      </g>
      <g id="g50" stroke-width="0.17200001" stroke="#000" fill="#FFF">
       <path id="path52" d="m-127.62,101.35s1.12,1.53,0.42,1.97c-0.7,0.43-40.77-30.818-56.73-17.713,0,0,10.87-15.881,56.31,15.743z"/>
      </g>
      <g id="g54" stroke="#000" fill="#FFF">
       <path id="path56" d="m-129.83,103.06c0.5,6.05,1.49,12.62,3.23,15.74,0,0-3.6,12.4,5.2,25.6,0,0-0.4,7.2,1.2,10.4,0,0,4,8.4,8.8,9.2,3.88,0.65,12.607,3.72,22.468,5.12,0,0,17.132,14.08,13.932,26.88,0,0-0.4,16.4-4,18,0,0,11.6-11.2,2,5.6l-4.4,18.8s25.6-21.6,10-3.2l-10,26s19.6-18.4,12.4-10l-3.2,8.8s43.2-27.2,12.4,2.4c0,0,8-3.6,12.4-0.8,0,0,6.8-1.2,6,0.4,0,0-20.8,10.4-24.4,28.8,0,0,8.4-10,5.2,0.8l0.4,11.6s4-21.6,3.6,16c0,0,19.2-18,7.6,2.8v16.8s15.2-16.4,8.8-3.6c0,0,10-8.8,6,6.4,0,0-0.8,10.4,3.6-0.8,0,0,16-30.6,10-4.4,0,0-0.8,19.2,4,4.4,0,0,0.4,10.4,9.6,17.6,0,0-1.2-50.8,11.6-14.8l4,16.4s2.8-9.2,2.4-14.4l8,8s15.2-22.8,12-9.6c0,0-7.6,16-6,20.8,0,0,16.8-34.8,18-36.4,0,0-2,42.4,8.8,6.4,0,0,5.6,12,2.8,16.4,0,0,8-8,7.2-11.2,0,0,4.6-8.2,7.4,5.4,0,0,1.8,9.4,3.4,6.2,0,0,4,24,5.2,1.2,0,0,1.6-13.6-5.6-25.2,0,0,0.8-3.2-2-7.2,0,0,13.6,21.6,6.4-7.2,0,0,11.201,8,12.401,8,0,0-13.601-23.2-4.801-18.4,0,0-5.2-10.4,12.801,1.6,0,0-16.001-16,1.6-6.4,0,0,7.999,6.4,0.4-3.6,0,0-14.401-16,7.599,2,0,0,11.6,16.4,12.4,19.2,0,0-10-29.2-14.4-32,0,0,8.4-36.4,49.6-20.8,0,0,6.8,17.2,11.2-1.2,0,0,12.8-6.4,24,21.2,0,0,4-13.6,3.2-16.4,0,0,6.8,1.2,6,0,0,0,13.2,4.4,14.4,3.6,0,0,6.8,6.8,7.2,3.2,0,0,9.2,2.8,7.2-0.8,0,0,8.8,15.6,9.2,19.2l2.4-14,2,2.8s1.6-7.6,0.8-8.8,20,6.8,24.8,27.6l2,8.4s6-14.8,4.4-18.8c0,0,5.2,0.8,5.6,5.2,0,0,4-23.2-0.8-29.2,0,0,4.4-0.8,5.6,2.8v-7.2s7.2,0.8,7.2-1.6c0,0,4.4-4,6.4,0.8,0,0-12.4-35.2,6-16,0,0,7.2,10.8,3.6-8s-7.6-20.4-2.8-20.8c0,0,0.8-3.6-1.2-5.2s1.2,0,1.2,0,4.8,4-0.4-18c0,0,6.4,1.6-5.6-27.6,0,0,2.8-2.4-1.2-10.8,0,0,8,4.4,10.8,2.8,0,0-0.4-1.6-3.6-5.6,0,0-21.6-54.8-1.2-32.8,0,0,11.85,13.55,5.45-9.25,0,0-9.11-24.009-8.33-28.305l-429.55,23.015z"/>
      </g>
      <g id="g58" stroke="#000" fill="#cc7226">
       <path id="path60" d="m299.72,80.245c0.62,0.181,2.83,1.305,4.08,2.955,0,0,6.8,10.8,1.6-7.6,0,0-9.2-28.8-0.4-17.6,0,0,6,7.2,2.8-6.4-3.86-16.427-6.4-22.8-6.4-22.8s11.6,4.8-15.2-34.8l8.8,3.6s-19.6-39.6-41.2-44.8l-8-6s38.4-38,25.6-74.8c0,0-6.8-5.2-16.4,4,0,0-6.4,4.8-12.4,3.2,0,0-30.8,1.2-32.8,1.2s-36.8-37.2-102.4-19.6c0,0-5.2,2-9.599,0.8,0,0-18.401-16-67.201,6.8,0,0-10,2-11.6,2s-4.4,0-12.4,6.4-8.4,7.2-10.4,8.8c0,0-16.4,11.2-21.2,12,0,0-11.6,6.4-16,16.4l-3.6,1.2s-1.6,7.2-2,8.4c0,0-4.8,3.6-5.6,9.2,0,0-8.8,6-8.4,10.4,0,0-1.6,5.2-2.4,10,0,0-7.2,4.8-6.4,7.6,0,0-7.6,14-6.4,20.8,0,0-6.4-0.4-9.2,2,0,0-0.8,4.8-2.4,5.2,0,0-2.8,1.2-0.4,5.2,0,0-1.6,2.8-2,4.4,0,0,0.8,2.8-3.6,8.4,0,0-6.4,18.8-4.4,24,0,0,0.4,4.8-2.4,6.4,0,0-3.6-0.4,4.8,11.6,0,0,0.8,1.2-2.4,3.6,0,0-17.2,3.6-19.6,20,0,0-13.6,14.8-13.6,20,0,2.305,0.27,5.452,0.97,10.06,0,0-0.57,8.34,27.03,9.14s402.72-31.355,402.72-31.355z"/>
      </g>
      <g id="g62" fill="#cc7226">
       <path id="path64" d="m-115.6,102.6c-25-39.4-10.6,17-10.6,17,8.8,34.4,138.4-3.2,138.4-3.2s168.8-30.4,180-34.4,106.4,2.4,106.4,2.4l-5.6-16.8c-64.8-46.4-84-23.2-97.6-27.2s-11.2,5.6-14.4,6.4-42.4-24-48.8-23.2-31.74-22.951-16.8,8.8c16,34-58.4,39.2-75.2,28s7.2,18.4,7.2,18.4c18.4,20-16,3.2-16,3.2-34.4-12.8-58.4,12.8-61.6,13.6s-8,4-8.8-2.4-8.31-23.101-40,3.2c-20,16.6-33.8-5.4-33.8-5.4l-2.8,11.6z"/>
      </g>
      <g id="g66" fill="#e87f3a">
       <path id="path68" d="m133.51,25.346c-6.4,0.8-31.77-22.939-16.8,8.8,16.6,35.2-58.4,39.2-75.2,28-16.801-11.2,7.2,18.4,7.2,18.4,18.4,20.004-16.001,3.2-16.001,3.2-34.4-12.8-58.4,12.8-61.6,13.6s-8,4.004-8.8-2.4c-0.8-6.4-8.179-22.934-40,3.2-21.236,17.344-34.729-4.109-34.729-4.109l-3.2,10.113c-25-39.804-9.93,18.51-9.93,18.51,8.81,34.4,139.06-4.51,139.06-4.51s168.8-30.404,180-34.404,105.53,2.327,105.53,2.327l-5.53-17.309c-64.8-46.4-83.2-22.618-96.8-26.618s-11.2,5.6-14.4,6.4-42.4-24-48.8-23.2z"/>
      </g>
      <g id="g70" fill="#ea8c4d">
       <path id="path72" d="m134.82,27.091c-6.4,0.8-31.14-23.229-16.8,8.8,16.2,36.201-58.401,39.201-75.201,28.001s7.2,18.4,7.2,18.4c18.4,19.998-16,3.2-16,3.2-34.4-12.8-58.401,12.8-61.601,13.6s-8,3.998-8.8-2.4c-0.8-6.4-8.048-22.767-40,3.2-22.473,18.088-35.658-2.818-35.658-2.818l-3.6,8.616c-23.8-38.998-9.25,20.02-9.25,20.02,8.8,34.4,139.71-5.82,139.71-5.82s168.8-30.398,180-34.398,104.65,2.254,104.65,2.254l-5.45-17.818c-64.8-46.4-82.4-22.037-96-26.037s-11.2,5.6-14.4,6.401c-3.2,0.8-42.4-24.001-48.8-23.201z"/>
      </g>
      <g id="g74" fill="#ec9961">
       <path id="path76" d="m136.13,28.837c-6.4,0.8-31.13-23.232-16.8,8.8,16.8,37.556-58.936,38.845-75.202,28-16.8-11.2,7.2,18.4,7.2,18.4,18.4,20.003-16,3.2-16,3.2-34.4-12.8-58.4,12.803-61.6,13.603s-8,4-8.8-2.403c-0.8-6.4-7.917-22.598-40.001,3.203-23.709,18.83-36.587-1.53-36.587-1.53l-4,7.13c-21.8-36.803-8.58,21.52-8.58,21.52,8.8,34.4,140.37-7.12,140.37-7.12s168.8-30.403,180-34.403,103.78,2.182,103.78,2.182l-5.38-18.327c-64.8-46.401-81.6-21.455-95.2-25.455s-11.2,5.6-14.4,6.4-42.4-24-48.8-23.2z"/>
      </g>
      <g id="g78" fill="#eea575">
       <path id="path80" d="m137.44,30.583c-6.4,0.8-30.63-23.454-16.8,8.8,16.8,39.2-58.403,39.2-75.203,28s7.2,18.4,7.2,18.4c18.4,19.997-16,3.2-16,3.2-34.4-12.8-58.4,12.797-61.6,13.597s-8,4-8.8-2.4c-0.8-6.397-7.785-22.428-40,3.2-24.946,19.58-37.507-0.23-37.507-0.23l-4.4,5.63c-19.8-34.798-7.91,23.04-7.91,23.04,8.8,34.4,141.02-8.44,141.02-8.44s168.8-30.397,180-34.397,102.91,2.109,102.91,2.109l-5.31-18.837c-64.8-46.4-80.8-20.872-94.4-24.872s-11.2,5.6-14.4,6.4-42.4-24-48.8-23.2z"/>
      </g>
      <g id="g82" fill="#f1b288">
       <path id="path84" d="m138.75,32.328c-6.4,0.8-32.37-22.651-16.8,8.8,19.2,38.8-58.404,39.2-75.204,28s7.2,18.4,7.2,18.4c18.4,20.002-16,3.2-16,3.2-34.4-12.8-58.4,12.802-61.6,13.602s-8,4-8.8-2.4c-0.8-6.402-7.654-22.265-40,3.2-26.182,20.33-38.436,1.05-38.436,1.05l-4.8,4.15c-18-33.202-7.24,24.54-7.24,24.54,8.8,34.4,141.68-9.74,141.68-9.74s168.8-30.402,180-34.402,102.03,2.036,102.03,2.036l-5.23-19.345c-64.8-46.4-80-20.291-93.6-24.291s-11.2,5.6-14.4,6.4-42.4-24-48.8-23.2z"/>
      </g>
      <g id="g86" fill="#f3bf9c">
       <path id="path88" d="m140.06,34.073c-6.4,0.8-32.75-22.46-16.8,8.8,20.4,40.001-58.405,39.201-75.205,28.001s7.2,18.4,7.2,18.4c18.4,19.996-16,3.2-16,3.2-34.4-12.8-58.4,12.796-61.6,13.596s-8,4-8.8-2.4c-0.8-6.396-7.523-22.092-40,3.2-27.419,21.08-39.365,2.35-39.365,2.35l-5.2,2.65c-16-30.196-6.56,26.06-6.56,26.06,8.8,34.4,142.32-11.06,142.32-11.06s168.8-30.396,180-34.396,101.16,1.963,101.16,1.963l-5.16-19.854c-64.8-46.4-79.2-19.709-92.8-23.709-13.6-4.001-11.2,5.6-14.4,6.4s-42.4-24.001-48.8-23.201z"/>
      </g>
      <g id="g90" fill="#f5ccb0">
       <path id="path92" d="m141.36,35.819c-6.4,0.8-33.84-21.875-16.8,8.8,22,39.6-58.396,39.2-75.196,28s7.2,18.4,7.2,18.4c18.4,20.001-16,3.2-16,3.2-34.4-12.8-58.4,12.801-61.6,13.601s-8,4-8.8-2.4c-0.8-6.401-7.391-21.928-40,3.2-28.655,21.82-40.294,3.64-40.294,3.64l-5.6,1.16c-14.4-28.401-5.89,27.56-5.89,27.56,8.8,34.4,142.98-12.36,142.98-12.36s168.8-30.401,180-34.401,100.3,1.891,100.3,1.891l-5.1-20.364c-64.8-46.4-78.4-19.127-92-23.127s-11.2,5.6-14.4,6.4-42.4-24-48.8-23.2z"/>
      </g>
      <g id="g94" fill="#f8d8c4">
       <path id="path96" d="m142.67,37.565c-6.4,0.8-33.84-21.876-16.8,8.8,22,39.6-58.396,39.2-75.196,28s7.2,18.4,7.2,18.4c18.4,19.995-16,3.2-16,3.2-34.401-12.8-58.401,12.795-61.601,13.595s-8,4-8.8-2.4-7.259-21.755-40,3.2c-29.891,22.57-41.213,4.93-41.213,4.93l-6-0.33c-13.61-26.396-5.22,29.08-5.22,29.08,8.8,34.4,143.63-13.68,143.63-13.68s168.8-30.395,180-34.395,99.42,1.818,99.42,1.818l-5.01-20.873c-64.81-46.4-77.61-18.545-91.21-22.545s-11.2,5.6-14.4,6.4-42.4-24-48.8-23.2z"/>
      </g>
      <g id="g98" fill="#fae5d7">
       <path id="path100" d="m143.98,39.31c-6.4,0.8-33.45-22.087-16.8,8.8,22,40.8-58.397,39.2-75.197,28s7.2,18.4,7.2,18.4c18.4,20-16,3.2-16,3.2-34.4-12.8-58.4,12.8-61.6,13.6-3.201,0.8-8.001,4-8.801-2.4s-7.128-21.592-40,3.2c-31.127,23.31-42.142,6.22-42.142,6.22l-6.4-1.82c-13-24-4.55,30.58-4.55,30.58,8.8,34.4,144.29-14.98,144.29-14.98s168.8-30.4,180-34.4,98.55,1.746,98.55,1.746l-4.95-21.382c-64.8-46.401-76.8-17.964-90.4-21.964s-11.2,5.6-14.4,6.4-42.4-24-48.8-23.2z"/>
      </g>
      <g id="g102" fill="#fcf2eb">
       <path id="path104" d="m145.29,41.055c-6.4,0.8-32.37-22.644-16.8,8.8,21.2,42.801-58.398,39.201-75.198,28.001s7.2,18.4,7.2,18.4c18.4,20.004-16,3.2-16,3.2-34.4-12.8-58.4,12.804-61.6,13.604s-8,4-8.8-2.4-6.997-21.428-40,3.2c-32.365,24.05-43.072,7.5-43.072,7.5l-6.8-3.3c-12.8-23.204-3.87,32.09-3.87,32.09,8.8,34.4,144.94-16.29,144.94-16.29s168.8-30.4,180-34.404c11.2-4,97.67,1.674,97.67,1.674l-4.87-21.893c-64.8-46.4-76-17.381-89.6-21.381-13.6-4.001-11.2,5.6-14.4,6.4s-42.4-24.001-48.8-23.201z"/>
      </g>
      <g id="g106" fill="#FFF">
       <path id="path108" d="m-115.8,119.6c-12.8-22-3.2,33.6-3.2,33.6,8.8,34.4,145.6-17.6,145.6-17.6s168.8-30.4,180-34.4,96.8,1.6,96.8,1.6l-4.8-22.4c-64.8-46.4-75.2-16.8-88.8-20.8s-11.2,5.6-14.4,6.4-42.4-24-48.8-23.2-31.62-23.007-16.8,8.8c22.23,47.707-60.759,37.627-75.2,28-16.8-11.2,7.2,18.4,7.2,18.4,18.4,20-16,3.2-16,3.2-34.4-12.8-58.4,12.8-61.6,13.6s-8,4-8.8-2.4-6.865-21.256-40,3.2c-33.6,24.8-44,8.8-44,8.8l-7.2-4.8z"/>
      </g>
      <g id="g110" fill="#000">
       <path id="path112" d="m-74.2,149.6s-7.2,11.6,13.6,24.8c0,0,1.4,1.4-16.6-2.8,0,0-6.2-2-7.8-12.4,0,0-4.8-4.4-9.6-10s20.4,0.4,20.4,0.4z"/>
      </g>
      <g id="g114" fill="#CCC">
       <path id="path116" d="m65.8,102s17.698,26.82,17.1,31.6c-1.3,10.4-1.5,20,1.7,24,3.201,4,12.001,37.2,12.001,37.2s-0.4,1.2,11.999-36.8c0,0,11.6-16-8.4-34.4,0,0-35.2-28.8-34.4-21.6z"/>
      </g>
      <g id="g118" fill="#000">
       <path id="path120" d="m-54.2,176.4s11.2,7.2-3.2,38.4l6.4-2.4s-0.8,11.2-4,13.6l7.2-3.2s4.8,8,0.8,12.8c0,0,16.8,8,16,14.4,0,0,6.4-8,2.4-14.4s-11.2-2.4-10.4-20.8l-8.8,3.2s5.6-8.8,5.6-15.2l-8,2.4s15.469-26.58,4.8-28c-6-0.8-8.8-0.8-8.8-0.8z"/>
      </g>
      <g id="g122" fill="#CCC">
       <path id="path124" d="m-21.8,193.2s2.8-4.4,0-3.6-34,15.6-40,25.2c0,0,34.4-24.4,40-21.6z"/>
      </g>
      <g id="g126" fill="#CCC">
       <path id="path128" d="m-11.4,201.2s2.8-4.4,0-3.6-34,15.6-40,25.2c0,0,34.4-24.4,40-21.6z"/>
      </g>
      <g id="g130" fill="#CCC">
       <path id="path132" d="m1.8,186s2.8-4.4,0-3.6-34,15.6-40,25.2c0,0,34.4-24.4,40-21.6z"/>
      </g>
      <g id="g134" fill="#CCC">
       <path id="path136" d="m-21.4,229.6s0-6-2.8-5.2-38.8,18.4-44.8,28c0,0,42-25.6,47.6-22.8z"/>
      </g>
      <g id="g138" fill="#CCC">
       <path id="path140" d="m-20.2,218.8s1.2-4.8-1.6-4c-2,0-28.4,11.6-34.4,21.2,0,0,29.6-21.6,36-17.2z"/>
      </g>
      <g id="g142" fill="#CCC">
       <path id="path144" d="m-34.6,266.4-10,7.6s10.4-7.6,14-6.4c0,0-6.8,11.2-7.6,16.4,0,0,10.4-12.8,16-12.4,0,0,7.6,0.4,7.6,11.2,0,0,5.6-10.4,8.8-10,0,0,1.2,6.4,0,13.2,0,0,4-7.6,8-6,0,0,6.4-2,5.6,9.6,0,0,0,10.4-0.8,13.2,0,0,5.6-26.4,8-26.8,0,0,8-1.2,12.8,7.6,0,0-4-7.6,0.8-5.6,0,0,10.8,1.6,14,8.4,0,0-6.8-12-1.2-8.8l8,6.4s8.4,21.2,10.4,22.8c0,0-7.6-21.6-6-21.6,0,0-2-12,3.2,2.8,0,0-3.2-14,2.4-13.2s10,10.8,18.4,8.4c0,0,9.601,5.6,11.601-63.6l-124,46.8z"/>
      </g>
      <g id="g146" fill="#000">
       <path id="path148" d="m-29.8,173.6s14.8-6,54.8,0c0,0,7.2,0.4,14-8.4s33.6-16,40-14l9.601,6.4,0.8,1.2s12.399,10.4,12.799,18-14.399,55.6-24,71.6c-9.6,16-19.2,28.4-38.4,26,0,0-20.8-4-46.4,0,0,0-29.2-1.6-32-9.6s11.2-23.2,11.2-23.2,4.4-8.4,3.2-22.8-0.8-42.4-5.6-45.2z"/>
      </g>
      <g id="g150" fill="#e5668c">
       <path id="path152" d="M-7.8,175.6c8.4,18.4-21.2,83.6-21.2,83.6-2,1.6,12.66,7.65,22.8,5.2,10.946-2.64,51.2,1.6,51.2,1.6,23.6-15.6,36.4-60,36.4-60s10.401-24-7.2-27.2c-17.6-3.2-82-3.2-82-3.2z"/>
      </g>
      <g id="g154" fill="#b23259">
       <path id="path156" d="m-9.831,206.5c3.326-12.79,4.91-24.59,2.031-30.9,0,0,62.4,6.4,73.6-14.4,4.241-7.87,19.001,22.8,18.6,32.4,0,0-63,14.4-77.8,3.2l-16.431,9.7z"/>
      </g>
      <g id="g158" fill="#a5264c">
       <path id="path160" d="m-5.4,222.8s2,7.2-0.4,11.2c0,0-1.6,0.8-2.8,1.2,0,0,1.2,3.6,7.2,5.2,0,0,2,4.4,4.4,4.8s7.2,6,11.2,4.8,15.2-5.2,15.2-5.2,5.6-3.2,14.4,0.4c0,0,2.375-0.8,2.8-4.8,0.5-4.7,3.6-8.4,5.6-10.4s11.6-14.8,10.4-15.2-68,8-68,8z"/>
      </g>
      <g id="g162" stroke="#000" fill="#ff727f">
       <path id="path164" d="m-9.8,174.4s-2.8,22.4,0.4,30.8,2.4,10.4,1.6,14.4,3.6,14,9.2,20l12,1.6s15.2-3.6,24.4-0.8c0,0,8.994,1.34,12.4-13.6,0,0,4.8-6.4,12-9.2s14.4-44.4,10.4-52.4-18.4-12.4-34.4,3.2-18-1.2-48,6z"/>
      </g>
      <g id="g166" stroke-width="0.5" stroke="#000" fill="#FFC">
       <path id="path168" d="m-8.2,249.2s-0.8-2-5.2-2.4c0,0-22.4-3.6-30.8-16,0,0-6.8-5.6-2.4,6,0,0,10.4,20.4,17.2,23.2,0,0,16.4,4,21.2-10.8z"/>
      </g>
      <g id="g170" fill="#cc3f4c">
       <path id="path172" d="m71.742,185.23c0.659-7.91,2.612-16.52,0.858-20.03-6.446-12.89-23.419-7.5-34.4,3.2-16,15.6-18-1.2-48,6,0,0-1.745,13.96-0.905,23.98,0,0,37.305-11.58,38.105-5.98,0,0,1.6-3.2,10.8-3.2s31.942-1.17,33.542-3.97z"/>
      </g>
      <g id="g174" stroke-width="2" stroke="#a51926">
       <path id="path176" d="m28.6,175.2s4.8,4.8,1.2,14.4c0,0-14.4,16-12.4,30"/>
      </g>
      <g id="g178" stroke-width="0.5" stroke="#000" fill="#FFC">
       <path id="path180" d="m-19.4,260s-4.4-12.8,4.4-6l3.6,3.6c-1.2,1.6-6.8,5.6-8,2.4z"/>
      </g>
      <g id="g182" stroke-width="0.5" stroke="#000" fill="#FFC">
       <path id="path184" d="m-14.36,261.2s-3.52-10.24,3.52-4.8l2.88,2.88c-4.56,1.28,0,3.84-6.4,1.92z"/>
      </g>
      <g id="g186" stroke-width="0.5" stroke="#000" fill="#FFC">
       <path id="path188" d="m-9.56,261.2s-3.52-10.24,3.52-4.8l2.88,2.88c-3.36,1.28,0,3.84-6.4,1.92z"/>
      </g>
      <g id="g190" stroke-width="0.5" stroke="#000" fill="#FFC">
       <path id="path192" d="m-2.96,261.4s-3.52-10.24,3.52-4.8c0,0,4.383,2.33,2.881,2.88-2.961,1.08,0,3.84-6.401,1.92z"/>
      </g>
      <g id="g194" stroke-width="0.5" stroke="#000" fill="#FFC">
       <path id="path196" d="m3.52,261.32s-3.52-10.24,3.521-4.8l2.88,2.88c-0.96,1.28,0,3.84-6.401,1.92z"/>
      </g>
      <g id="g198" stroke-width="0.5" stroke="#000" fill="#FFC">
       <path id="path200" d="m10.2,262s-4.8-12.4,4.4-6l3.6,3.6c-1.2,1.6,0,4.8-8,2.4z"/>
      </g>
      <g id="g202" stroke-width="2" stroke="#a5264c">
       <path id="path204" d="m-18.2,244.8s13.2-2.8,19.2,0.4c0,0,6,1.2,7.2,0.8s4.4-0.8,4.4-0.8"/>
      </g>
      <g id="g206" stroke-width="2" stroke="#a5264c">
       <path id="path208" d="m15.8,253.6s12-13.6,24-9.2c7.016,2.57,6-0.8,6.8-3.6s1-7,6-10"/>
      </g>
      <g id="g210" stroke-width="0.5" stroke="#000" fill="#FFC">
       <path id="path212" d="m33,237.6s-4-10.8-6.8,2-6,16.4-7.6,19.2c0,0,0,5.2,8.4,4.8,0,0,10.8-0.4,11.2-3.2s-1.2-14.4-5.2-22.8z"/>
      </g>
      <g id="g214" stroke-width="2" stroke="#a5264c">
       <path id="path216" d="m47,244.8s3.6-2.4,6-1.2"/>
      </g>
      <g id="g218" stroke-width="2" stroke="#a5264c">
       <path id="path220" d="m53.5,228.4s2.9-4.9,7.7-5.7"/>
      </g>
      <g id="g222" fill="#b2b2b2">
       <path id="path224" d="m-25.8,265.2s18,3.2,22.4,1.6l0.4,2-20.8-1.2s-11.6-5.6-2-2.4z"/>
      </g>
      <g id="g226" stroke-width="0.5" stroke="#000" fill="#FFC">
       <path id="path228" d="m-11.8,172,19.6,0.8s7.2,30.8,3.6,38.4c0,0-1.2,2.8-4-2.8,0,0-18.4-32.8-21.6-34.8s1.2-1.6,2.4-1.6z"/>
      </g>
      <g id="g230" stroke-width="0.5" stroke="#000" fill="#FFC">
       <path id="path232" d="m-88.9,169.3s8.9,1.7,21.5,4.3c0,0,4.8,22.4,8,27.2s-0.4,4.8-4,2-18.4-16.8-20.4-21.2-5.1-12.3-5.1-12.3z"/>
      </g>
      <g id="g234" stroke-width="0.5" stroke="#000" fill="#FFC">
       <path id="path236" d="m-67.039,173.82s5.8,1.55,6.809,3.76c1.008,2.22-1.202,5.51-1.202,5.51s-1,3.31-2.202,1.15c-1.202-2.17-4.074-9.83-3.405-10.42z"/>
      </g>
      <g id="g238" fill="#000">
       <path id="path240" d="m-67,173.6s3.6,5.2,7.2,5.2,3.982-0.41,6.8,0.2c4.6,1,4.2-1,10.8,0.2,2.64,0.48,5.2-0.4,8,0.8s6,0.4,7.2-1.6,6-6.2,6-6.2-12.8,1.8-15.6,2.6c0,0-22.4,1.2-30.4-1.2z"/>
      </g>
      <g id="g242" stroke-width="0.5" stroke="#000" fill="#FFC">
       <path id="path244" d="m-22.4,173.8s-6.45,3.5-6.85,5.9,5.25,6.1,5.25,6.1,2.75,4.6,3.35,2.2-0.95-13.8-1.75-14.2z"/>
      </g>
      <g id="g246" stroke-width="0.5" stroke="#000" fill="#FFC">
       <path id="path248" d="m-59.885,179.26s7.007,11.19,7.224-0.02c0,0,0.557-1.26-1.203-1.28-6.075-0.07-4.554-4.18-6.021,1.3z"/>
      </g>
      <g id="g250" stroke-width="0.5" stroke="#000" fill="#FFC">
       <path id="path252" d="m-52.707,179.51s7.921,11.19,7.285-0.09c0,0,0.007-0.33-1.746-0.48-4.747-0.42-4.402-4.94-5.539,0.57z"/>
      </g>
      <g id="g254" stroke-width="0.5" stroke="#000" fill="#FFC">
       <path id="path256" d="m-45.494,179.52s7.96,10.63,7.291,0.96c0,0,0.119-1.23-1.535-1.53-3.892-0.71-4.103-3.95-5.756,0.57z"/>
      </g>
      <g id="g258" stroke-width="0.5" stroke="#000" fill="#FFC">
       <path id="path260" d="m-38.618,179.6s7.9,11.56,8.248,1.78c0,0,1.644-1.38-0.102-1.6-5.818-0.74-5.02-5.19-8.146-0.18z"/>
      </g>
      <g id="g262" fill="#e5e5b2">
       <path id="path264" d="m-74.792,183.13-7.658-1.53c-2.6-5-4.7-11.15-4.7-11.15s6.35,1,18.85,3.8c0,0,0.876,3.32,2.348,9.11l-8.84-0.23z"/>
      </g>
      <g id="g266" fill="#e5e5b2">
       <path id="path268" d="m-9.724,178.47c-1.666-2.51-2.983-4.26-3.633-4.67-3.013-1.88,1.13-1.51,2.259-1.51l18.454,0.76s0.524,2.24,1.208,5.63c0,0-10.088-2.01-18.288-0.21z"/>
      </g>
      <g id="g270" fill="#cc7226">
       <path id="path272" d="m43.88,40.321c27.721,3.96,53.241-31.68,55.001-41.361,1.759-9.68-8.36-21.56-8.36-21.56,1.32-3.08-3.52-17.16-8.8-26.4s-21.181-8.266-38.721-9.24c-15.84-0.88-34.32,22.44-35.64,24.2s4.84,40.041,6.16,45.761-1.32,32.12-1.32,32.12c34.24-9.1,3.96-7.48,31.68-3.52z"/>
      </g>
      <g id="g274" fill="#ea8e51">
       <path id="path276" d="m8.088-33.392c-1.296,1.728,4.752,39.313,6.048,44.929s-1.296,31.536-1.296,31.536c32.672-8.88,3.888-7.344,31.104-3.456,27.217,3.888,52.273-31.104,54.001-40.609,1.728-9.504-8.208-21.168-8.208-21.168,1.296-3.024-3.456-16.848-8.64-25.92s-20.795-8.115-38.017-9.072c-15.552-0.864-33.696,22.032-34.992,23.76z"/>
      </g>
      <g id="g278" fill="#efaa7c">
       <path id="path280" d="m8.816-32.744c-1.272,1.696,4.664,38.585,5.936,44.097s-1.272,30.952-1.272,30.952c31.404-9.16,3.816-7.208,30.528-3.392,26.713,3.816,51.305-30.528,53.001-39.857,1.696-9.328-8.056-20.776-8.056-20.776,1.272-2.968-3.392-16.536-8.48-25.44s-20.41-7.965-37.313-8.904c-15.264-0.848-33.072,21.624-34.344,23.32z"/>
      </g>
      <g id="g282" fill="#f4c6a8">
       <path id="path284" d="m9.544-32.096c-1.248,1.664,4.576,37.857,5.824,43.265s-1.248,30.368-1.248,30.368c29.436-9.04,3.744-7.072,29.952-3.328,26.209,3.744,50.337-29.952,52.001-39.104,1.664-9.153-7.904-20.385-7.904-20.385,1.248-2.912-3.328-16.224-8.32-24.96s-20.025-7.815-36.609-8.736c-14.976-0.832-32.448,21.216-33.696,22.88z"/>
      </g>
      <g id="g286" fill="#f9e2d3">
       <path id="path288" d="m10.272-31.448c-1.224,1.632,4.488,37.129,5.712,42.433s-1.224,29.784-1.224,29.784c27.868-8.92,3.672-6.936,29.376-3.264,25.705,3.672,49.369-29.376,51.001-38.353,1.632-8.976-7.752-19.992-7.752-19.992,1.224-2.856-3.264-15.912-8.16-24.48s-19.64-7.665-35.905-8.568c-14.688-0.816-31.824,20.808-33.048,22.44z"/>
      </g>
      <g id="g290" fill="#FFF">
       <path id="path292" d="M44.2,36.8c25.2,3.6,48.401-28.8,50.001-37.6s-7.6-19.6-7.6-19.6c1.2-2.8-3.201-15.6-8.001-24s-19.254-7.514-35.2-8.4c-14.4-0.8-31.2,20.4-32.4,22s4.4,36.4,5.6,41.6-1.2,29.2-1.2,29.2c25.5-8.6,3.6-6.8,28.8-3.2z"/>
      </g>
      <g id="g294" fill="#CCC">
       <path id="path296" d="m90.601,2.8s-27.801,7.6-39.401,6c0,0-15.8-6.6-24.6,15.2,0,0-3.6,7.2-5.6,9.2s69.601-30.4,69.601-30.4z"/>
      </g>
      <g id="g298" fill="#000">
       <path id="path300" d="m94.401,0.6s-29.001,12.2-39.001,11.8c0,0-16.4-4.6-24.8,10,0,0-8.4,9.2-11.6,10.8,0,0-0.4,1.6,6-2.4l10.4,5.2s14.8,9.6,24.4-6.4c0,0,4-11.2,4-13.2s21.2-7.6,22.801-8c1.6-0.4,8.2-4.6,7.8-7.8z"/>
      </g>
      <g id="g302" fill="#99cc32">
       <path id="path304" d="m47,36.514c-6.872,0-15.245-3.865-15.245-10.114,0-6.248,8.373-12.513,15.245-12.513,6.874,0,12.446,5.065,12.446,11.313,0,6.249-5.572,11.314-12.446,11.314z"/>
      </g>
      <g id="g306" fill="#659900">
       <path id="path308" d="m43.377,19.83c-4.846,0.722-9.935,2.225-9.863,2.009,1.54-4.619,7.901-7.952,13.486-7.952,4.296,0,8.084,1.978,10.32,4.988,0,0-5.316-0.33-13.943,0.955z"/>
      </g>
      <g id="g310" fill="#FFF">
       <path id="path312" d="m55.4,19.6s-4.4-3.2-4.4-1c0,0,3.6,4.4,4.4,1z"/>
      </g>
      <g id="g314" fill="#000">
       <path id="path316" d="m45.4,27.726c-2.499,0-4.525-2.026-4.525-4.526,0-2.499,2.026-4.525,4.525-4.525,2.5,0,4.526,2.026,4.526,4.525,0,2.5-2.026,4.526-4.526,4.526z"/>
      </g>
      <g id="g318" fill="#cc7226">
       <path id="path320" d="m-58.6,14.4s-3.2-21.2-0.8-25.6c0,0,10.8-10,10.4-13.6,0,0-0.4-18-1.6-18.8s-8.8-6.8-14.8-0.4c0,0-10.4,18-9.6,24.4v2s-7.6-0.4-9.2,1.6c0,0-1.2,5.2-2.4,5.6,0,0-2.8,2.4-0.8,5.2,0,0-2,2.4-1.6,6.4l7.6,4s2,14.4,12.8,19.6c4.836,2.329,8-4.4,10-10.4z"/>
      </g>
      <g id="g322" fill="#FFF">
       <path id="path324" d="m-59.6,12.56s-2.88-19.08-0.72-23.04c0,0,9.72-9,9.36-12.24,0,0-0.36-16.2-1.44-16.92s-7.92-6.12-13.32-0.36c0,0-9.36,16.2-8.64,21.96v1.8s-6.84-0.36-8.28,1.44c0,0-1.08,4.68-2.16,5.04,0,0-2.52,2.16-0.72,4.68,0,0-1.8,2.16-1.44,5.76l6.84,3.6s1.8,12.96,11.52,17.64c4.352,2.095,7.2-3.96,9-9.36z"/>
      </g>
      <g id="g326" fill="#eb955c">
       <path id="path328" d="m-51.05-42.61c-1.09-0.86-8.58-6.63-14.43-0.39,0,0-10.14,17.55-9.36,23.79v1.95s-7.41-0.39-8.97,1.56c0,0-1.17,5.07-2.34,5.46,0,0-2.73,2.34-0.78,5.07,0,0-1.95,2.34-1.56,6.24l7.41,3.9s1.95,14.04,12.48,19.11c4.714,2.27,7.8-4.29,9.75-10.14,0,0-3.12-20.67-0.78-24.96,0,0,10.53-9.75,10.14-13.26,0,0-0.39-17.55-1.56-18.33z"/>
      </g>
      <g id="g330" fill="#f2b892">
       <path id="path332" d="m-51.5-41.62c-0.98-0.92-8.36-6.46-14.06-0.38,0,0-9.88,17.1-9.12,23.18v1.9s-7.22-0.38-8.74,1.52c0,0-1.14,4.94-2.28,5.32,0,0-2.66,2.28-0.76,4.94,0,0-1.9,2.28-1.52,6.08l7.22,3.8s1.9,13.68,12.16,18.62c4.594,2.212,7.6-4.18,9.5-9.88,0,0-3.04-20.14-0.76-24.32,0,0,10.26-9.5,9.88-12.92,0,0-0.38-17.1-1.52-17.86z"/>
      </g>
      <g id="g334" fill="#f8dcc8">
       <path id="path336" d="m-51.95-40.63c-0.87-0.98-8.14-6.29-13.69-0.37,0,0-9.62,16.65-8.88,22.57v1.85s-7.03-0.37-8.51,1.48c0,0-1.11,4.81-2.22,5.18,0,0-2.59,2.22-0.74,4.81,0,0-1.85,2.22-1.48,5.92l7.03,3.7s1.85,13.32,11.84,18.13c4.473,2.154,7.4-4.07,9.25-9.62,0,0-2.96-19.61-0.74-23.68,0,0,9.99-9.25,9.62-12.58,0,0-0.37-16.65-1.48-17.39z"/>
      </g>
      <g id="g338" fill="#FFF">
       <path id="path340" d="m-59.6,12.46s-2.88-18.98-0.72-22.94c0,0,9.72-9,9.36-12.24,0,0-0.36-16.2-1.44-16.92-0.76-1.04-7.92-6.12-13.32-0.36,0,0-9.36,16.2-8.64,21.96v1.8s-6.84-0.36-8.28,1.44c0,0-1.08,4.68-2.16,5.04,0,0-2.52,2.16-0.72,4.68,0,0-1.8,2.16-1.44,5.76l6.84,3.6s1.8,12.96,11.52,17.64c4.352,2.095,7.2-4.06,9-9.46z"/>
      </g>
      <g id="g342" fill="#CCC">
       <path id="path344" d="m-62.7,6.2s-21.6-10.2-22.5-11c0,0,9.1,8.2,9.9,8.2s12.6,2.8,12.6,2.8z"/>
      </g>
      <g id="g346" fill="#000">
       <path id="path348" d="m-79.8,0s18.4,3.6,18.4,8c0,2.912-0.243,16.331-5.6,14.8-8.4-2.4-4.8-16.8-12.8-22.8z"/>
      </g>
      <g id="g350" fill="#99cc32">
       <path id="path352" d="m-71.4,3.8s8.978,1.474,10,4.2c0.6,1.6,1.263,9.908-4.2,11-4.552,0.911-6.782-9.31-5.8-15.2z"/>
      </g>
      <g id="g354" fill="#000">
       <path id="path356" d="m14.595,46.349c-0.497-1.742,0.814-1.611,2.605-2.149,2-0.6,14.2-4.4,15-7s14,1.8,14,1.8c1.8,0.8,6.2,3.4,6.2,3.4,4.8,1.2,11.4,1.6,11.4,1.6,2.4,1,5.8,3.8,5.8,3.8,14.6,10.2,27.001,3,27.001,3,19.999-6.6,13.999-23.8,13.999-23.8-3-9,0.2-12.4,0.2-12.4,0.2-3.8,7.4,2.6,7.4,2.6,2.6,4.2,3.4,9.2,3.4,9.2,8,11.2,4.6-6.6,4.6-6.6,0.2-1-2.6-4.6-2.6-5.8s-1.8-4.6-1.8-4.6c-3-3.4-0.6-10.4-0.6-10.4,1.8-13.8-0.4-12-0.4-12-1.2-1.8-10.4,8.2-10.4,8.2-2.2,3.4-8.2,5-8.2,5-2.799,1.8-6.199,0.4-6.199,0.4-2.6-0.4-8.2,6.6-8.2,6.6,2.8-0.2,5.2,4.2,7.6,4.4s4.2-2.4,5.799-3c1.6-0.6,4.4,5.2,4.4,5.2,0.4,2.6-5.2,7.4-5.2,7.4-0.4,4.6-1.999,3-1.999,3-3-0.6-4.2,3.2-5.2,7.8s-5.2,5-5.2,5c-1.6,7.4-2.801,4.4-2.801,4.4-0.2-5.6-6.2,0.2-6.2,0.2-1.2,2-5.8-0.2-5.8-0.2-6.8-2-4.4-4-4.4-4,1.8-2.2,13,0,13,0,2.2-1.6-5.8-5.6-5.8-5.6-0.6-1.8,0.4-6.2,0.4-6.2,1.2-3.2,8-8.8,8-8.8,9.401-1.2,6.601-2.8,6.601-2.8-6.2-5.2-12.001,2.4-12.001,2.4-2.2,6.2-19.6,21.2-19.6,21.2-4.8,3.4-2.2-3.4-6.2,0s-24.6-5.6-24.6-5.6c-11.562-1.193-14.294,14.549-17.823,11.429,0,0,5.418,8.52,3.818,2.92z"/>
      </g>
      <g id="g358" fill="#000">
       <path id="path360" d="m209.4-120s-25.6,8-28.4,26.8c0,0-2.4,22.8,18,40.4,0,0,0.4,6.4,2.4,9.6,0,0-1.6,4.8,17.2-2.8l27.2-8.4s6.4-2.4,11.6-11.2,20.4-27.6,16.8-52.8c0,0,1.2-11.2-4.8-11.6,0,0-8.4-1.6-15.6,6,0,0-6.8,3.2-9.2,2.8l-35.2,1.2z"/>
      </g>
      <g id="g362" fill="#000">
       <path id="path364" d="m264.02-120.99s2.1-8.93-2.74-4.09c0,0-7.04,5.72-14.52,5.72,0,0-14.52,2.2-18.92,15.4,0,0-3.96,26.84,3.96,32.56,0,0,4.84,7.48,11.88,0.88s22.54-36.83,20.34-50.47z"/>
      </g>
      <g id="g366" fill="#323232">
       <path id="path368" d="m263.65-120.63s2.09-8.75-2.66-3.99c0,0-6.92,5.61-14.26,5.61,0,0-14.26,2.16-18.58,15.12,0,0-3.89,26.354,3.89,31.97,0,0,4.75,7.344,11.66,0.864,6.92-6.48,22.11-36.184,19.95-49.574z"/>
      </g>
      <g id="g370" fill="#666">
       <path id="path372" d="m263.27-120.27s2.08-8.56-2.58-3.9c0,0-6.78,5.51-13.99,5.51,0,0-14,2.12-18.24,14.84,0,0-3.81,25.868,3.82,31.38,0,0,4.66,7.208,11.45,0.848,6.78-6.36,21.66-35.538,19.54-48.678z"/>
      </g>
      <g id="g374" fill="#999">
       <path id="path376" d="m262.9-119.92s2.07-8.37-2.51-3.79c0,0-6.65,5.41-13.73,5.41,0,0-13.72,2.08-17.88,14.56,0,0-3.75,25.372,3.74,30.78,0,0,4.58,7.072,11.23,0.832,6.66-6.24,21.23-34.892,19.15-47.792z"/>
      </g>
      <g id="g378" fill="#CCC">
       <path id="path380" d="m262.53-119.56s2.06-8.18-2.43-3.7c0,0-6.53,5.31-13.47,5.31,0,0-13.46,2.04-17.54,14.28,0,0-3.67,24.886,3.67,30.19,0,0,4.49,6.936,11.02,0.816,6.52-6.12,20.79-34.246,18.75-46.896z"/>
      </g>
      <g id="g382" fill="#FFF">
       <path id="path384" d="m262.15-119.2s2.05-8-2.35-3.6c0,0-6.4,5.2-13.2,5.2,0,0-13.2,2-17.2,14,0,0-3.6,24.4,3.6,29.6,0,0,4.4,6.8,10.8,0.8s20.35-33.6,18.35-46z"/>
      </g>
      <g id="g386" fill="#992600">
       <path id="path388" d="m50.6,84s-20.4-19.2-28.4-20c0,0-34.4-4-49.2,14,0,0,17.6-20.4,45.2-14.8,0,0-21.6-4.4-34-1.2l-26.4,14-2.8,4.8s4-14.8,22.4-20.8c0,0,22.8-4.8,33.6,0,0,0-21.6-6.8-31.6-4.8,0,0-30.4-2.4-43.2,24,0,0,4-14.4,18.8-21.6,0,0,13.6-8.8,34-6,0,0,14.4,3.2,19.6,5.6s4-0.4-4.4-5.2c0,0-5.6-10-19.6-9.6,0,0-42.8,3.6-53.2,15.6,0,0,13.6-11.2,24-14,0,0,22.4-8,30.8-7.2,0,0,24.8,1,32.4-3,0,0-11.2,5-8,8.2s10,10.8,10,12,24.2,23.3,27.8,27.7l2.2,2.3z"/>
      </g>
      <g id="g390" fill="#CCC">
       <path id="path392" d="m189,278s-15.5-36.5-28-46c0,0,26,16,29.5,34,0,0,0,10-1.5,12z"/>
      </g>
      <g id="g394" fill="#CCC">
       <path id="path396" d="m236,285.5s-26.5-55-45-79c0,0,43.5,37.5,48.5,64l0.5,5.5-3-2.5s-0.5,9-1,12z"/>
      </g>
      <g id="g398" fill="#CCC">
       <path id="path400" d="m292.5,237s-62.5-59.5-64-62c0,0,60.5,66,63.5,73.5,0,0-2-9,0.5-11.5z"/>
      </g>
      <g id="g402" fill="#CCC">
       <path id="path404" d="m104,280.5s19.5-52,38.5-29.5c0,0,15,10,14.5,13,0,0-4-6.5-22-6,0,0-19-3-31,22.5z"/>
      </g>
      <g id="g406" fill="#CCC">
       <path id="path408" d="m294.5,153s-45-28.5-52.5-30c-11.81-2.36,49.5,29,54.5,39.5,0,0,2-2.5-2-9.5z"/>
      </g>
      <g id="g410" fill="#000">
       <path id="path412" d="m143.8,259.6s20.4-2,27.2-8.8l4.4,3.6,17.6-38.4,3.6,5.2s14.4-14.8,13.6-22.8,12.8,6,12.8,6-0.8-11.6,6.4-4.8c0,0-2.4-15.6,6-7.6,0,0-10.54-30.16,12-4.4,5.6,6.4,1.2-0.4,1.2-0.4s-26-48-4.4-33.6c0,0,2-22.8,0.8-27.2s-3.2-26.8-8-32,0.4-6.8,6-1.6c0,0-11.2-24,2-12,0,0-3.6-15.2-8-18,0,0-5.6-17.2,9.6-6.4,0,0-4.4-12.4-7.6-15.6,0,0-11.6-27.6-4.4-22.8l4.4,3.6s-6.8-14-0.4-9.6,6.4,4,6.4,4-21.2-33.2-0.8-15.6c0,0-8.16-13.918-11.6-20.8,0,0-18.8-20.4-4.4-14l4.8,1.6s-8.8-10-16.8-11.6,2.4-8,8.8-6,22,9.6,22,9.6,12.8,18.8,16.8,19.2c0,0-20-7.6-14,0.4,0,0,14.4,14,7.2,13.6,0,0-6,7.2-1.2,16,0,0-18.46-18.391-3.6,7.2l6.8,16.4s-24.4-24.8-13.2-2.8c0,0,17.2,23.6,19.2,24s6.4,9.2,6.4,9.2l-4.4-2,5.2,8.8s-11.2-12-5.2,1.2l5.6,14.4s-20.4-22-6.8,7.6c0,0-16.4-5.2-7.6,12,0,0-1.6,16-1.2,21.2s1.6,33.6-2.8,41.6,6,27.2,8,31.2,5.6,14.8-3.2,5.6-4.4-3.6-2.4,5.2,8,24.4,7.2,30c0,0-1.2,1.2-4.4-2.4,0,0-14.8-22.8-13.2-8.4,0,0-1.2,8-4.4,16.8,0,0-3.2,10.8-3.2,2,0,0-3.2-16.8-6-9.2s-6.4,13.6-9.2,16-8-20.4-9.2-10c0,0-12-12.4-16.8,4l-11.6,16.4s-0.4-12.4-1.6-6.4c0,0-30,6-40.4,1.6z"/>
      </g>
      <g id="g414" fill="#000">
       <path id="path416" d="m109.4-97.2s-11.599-8-15.599-7.6,27.599-8.8,68.799,18.8c0,0,4.8,2.8,8.4,2.4,0,0,3.2,2.4,0.4,6,0,0-8.8,9.6,2.4,20.8,0,0,18.4,6.8,12.8-2,0,0,10.8,4,13.2,8s1.2,0,1.2,0l-12.4-12.4s-5.2-2-8-10.4-5.2-18.4-0.8-21.6c0,0-4,4.4-3.2,0.4s4.4-7.6,6-8,18-16.2,24.8-16.6c0,0-9.2,1.4-12.2,0.4s-29.6-12.4-35.6-13.6c0,0-16.8-6.6-4.8-4.6,0,0,35.8,3.8,54,17,0,0-7.2-8.4-25.6-15.4,0,0-22.2-12.6-57.4-7.6,0,0-17.8,3.2-25.6,5,0,0-2.599-0.6-3.199-1s-12.401-9.4-40.001-2.4c0,0-17,4.6-25.6,9.4,0,0-15.2,1.2-18.8,4.4,0,0-18.6,14.6-20.6,15.4s-13.4,8.4-14.2,8.8c0,0,24.6-6.6,27-9s19.8-5,22.2-3.6,10.8,0.8,1.2,1.4c0,0,75.6,14.8,76.4,16.8s4.8,0.8,4.8,0.8z"/>
      </g>
      <g id="g418" fill="#cc7226">
       <path id="path420" d="m180.8-106.4s-10.2-7.4-12.2-7.4-14.4-10.2-18.6-9.8-16.4-9.6-43.8-1.4c0,0-0.6-2,3-2.8,0,0,6.4-2.2,6.8-2.8,0,0,20.2-4.2,27.4-0.6,0,0,9.2,2.6,15.4,8.8,0,0,11.2,3.2,14.4,2.2,0,0,8.8,2.2,9.2,4,0,0,5.8,3,4,5.6,0,0,0.4,1.6-5.6,4.2z"/>
      </g>
      <g id="g422" fill="#cc7226">
       <path id="path424" d="m168.33-108.51c0.81,0.63,1.83,0.73,2.43,1.54,0.24,0.31-0.05,0.64-0.37,0.74-1.04,0.31-2.1-0.26-3.24,0.33-0.4,0.21-1.04,0.03-1.6-0.12-1.63-0.44-3.46-0.47-5.15,0.22-1.98-1.13-4.34-0.54-6.42-1.55-0.06-0.02-0.28,0.32-0.36,0.3-3.04-1.15-6.79-0.87-9.22-3.15-2.43-0.41-4.78-0.87-7.21-1.55-1.82-0.51-3.23-1.5-4.85-2.33-1.38-0.71-2.83-1.23-4.37-1.61-1.86-0.45-3.69-0.34-5.58-0.86-0.1-0.02-0.29,0.32-0.37,0.3-0.32-0.11-0.62-0.69-0.79-0.64-1.68,0.52-3.17-0.45-4.83-0.11-1.18-1.22-2.9-0.98-4.45-1.42-2.97-0.85-6.12,0.42-9.15-0.58,4.11-1.84,8.8-0.61,12.86-2.68,2.33-1.18,4.99-0.08,7.56-0.84,0.49-0.15,1.18-0.35,1.58,0.32,0.14-0.14,0.32-0.37,0.38-0.35,2.44,1.16,4.76,2.43,7.24,3.5,0.34,0.15,0.88-0.09,1.13,0.12,1.52,1.21,3.46,1.11,4.85,2.33,1.7-0.5,3.49-0.12,5.22-0.75,0.08-0.02,0.31,0.32,0.34,0.3,1.14-0.75,2.29-0.48,3.18-0.18,0.34,0.12,1,0.37,1.31,0.44,1.12,0.27,1.98,0.75,3.16,0.94,0.11,0.02,0.3-0.32,0.37-0.3,1.12,0.44,2.16,0.39,2.82,1.55,0.14-0.14,0.3-0.37,0.38-0.35,1.03,0.34,1.68,1.1,2.78,1.34,0.48,0.1,1.1,0.73,1.67,0.91,2.39,0.73,4.24,2.26,6.43,3.15,0.76,0.31,1.64,0.55,2.27,1.04z"/>
      </g>
      <g id="g426" fill="#cc7226">
       <path id="path428" d="m91.696-122.74c-2.518-1.72-4.886-2.83-7.328-4.62-0.181-0.13-0.541,0.04-0.743-0.08-1.007-0.61-1.895-1.19-2.877-1.89-0.539-0.38-1.36-0.37-1.868-0.63-2.544-1.29-5.173-1.85-7.68-3.04,0.682-0.64,1.804-0.39,2.4-1.2,0.195,0.28,0.433,0.56,0.786,0.37,1.678-0.9,3.528-1.05,5.204-0.96,1.704,0.09,3.424,0.39,5.199,0.67,0.307,0.04,0.506,0.56,0.829,0.66,2.228,0.66,4.617,0.14,6.736,0.98,1.591,0.63,3.161,1.45,4.4,2.72,0.252,0.26-0.073,0.57-0.353,0.76,0.388-0.11,0.661,0.1,0.772,0.41,0.084,0.24,0.084,0.54,0,0.78-0.112,0.31-0.391,0.41-0.765,0.46-1.407,0.19,0.365-1.19-0.335-0.74-1.273,0.82-0.527,2.22-1.272,3.49-0.28-0.19-0.51-0.41-0.4-0.8,0.234,0.52-0.368,0.81-0.536,1.13-0.385,0.72-1.284,2.14-2.169,1.53z"/>
      </g>
      <g id="g430" fill="#cc7226">
       <path id="path432" d="m59.198-115.39c-3.154-0.79-6.204-0.68-9.22-1.96-0.067-0.02-0.29,0.32-0.354,0.3-1.366-0.6-2.284-1.56-3.36-2.61-0.913-0.89-2.571-0.5-3.845-0.99-0.324-0.12-0.527-0.63-0.828-0.67-1.219-0.16-2.146-1.11-3.191-1.68,2.336-0.8,4.747-0.76,7.209-1.15,0.113-0.02,0.258,0.31,0.391,0.31,0.136,0,0.266-0.23,0.4-0.36,0.195,0.28,0.497,0.61,0.754,0.35,0.548-0.54,1.104-0.35,1.644-0.31,0.144,0.01,0.269,0.32,0.402,0.32,0.136,0,0.267-0.32,0.4-0.32,0.136,0,0.267,0.32,0.4,0.32,0.136,0,0.266-0.23,0.4-0.36,0.692,0.78,1.577,0.23,2.399,0.41,1.038,0.22,1.305,1.37,2.379,1.67,4.715,1.3,8.852,3.45,13.215,5.54,0.307,0.14,0.517,0.39,0.407,0.78,0.267,0,0.58-0.09,0.77,0.04,1.058,0.74,2.099,1.28,2.796,2.38,0.216,0.34-0.113,0.75-0.346,0.7-4.429-1-8.435-1.61-12.822-2.71z"/>
      </g>
      <g id="g434" fill="#cc7226">
       <path id="path436" d="m45.338-71.179c-1.592-1.219-2.176-3.25-3.304-5.042-0.214-0.34,0.06-0.654,0.377-0.743,0.56-0.159,1.103,0.319,1.512,0.521,1.745,0.862,3.28,2.104,5.277,2.243,1.99,2.234,6.25,2.619,6.257,6,0.001,0.859-1.427-0.059-1.857,0.8-2.451-1.003-4.84-0.9-7.22-2.367-0.617-0.381-0.287-0.834-1.042-1.412z"/>
      </g>
      <g id="g438" fill="#cc7226">
       <path id="path440" d="m17.8-123.76c0.135,0,7.166,0.24,7.149,0.35-0.045,0.31-7.775,1.36-8.139,1.19-0.164-0.08-7.676,2.35-7.81,2.22,0.268-0.14,8.534-3.76,8.8-3.76z"/>
      </g>
      <g id="g442" fill="#000">
       <path id="path444" d="m33.2-114s-14.8,1.8-19.2,3-23,8.8-26,10.8c0,0-13.4,5.4-30.4,25.4,0,0,7.6-3.4,9.8-6.2,0,0,13.6-12.6,13.4-10,0,0,12.2-8.6,11.6-6.4,0,0,24.4-11.2,22.4-8,0,0,21.6-4.6,20.6-2.6,0,0,18.8,4.4,16,4.6,0,0-5.8,1.2,0.6,4.8,0,0-3.4,4.4-8.8,0.4s-2.4-1.8-7.4-0.8c0,0-2.6,0.8-7.2-3.2,0,0-5.6-4.6-14.4-1,0,0-30.6,12.6-32.6,13.2,0,0-3.6,2.8-6,6.4,0,0-5.8,4.4-8.8,5.8,0,0-12.8,11.6-14,13,0,0-3.4,5.2-4.2,5.6,0,0,6.4-3.8,8.4-5.8,0,0,14-10,19.4-10.8,0,0,4.4-3,5.2-4.4,0,0,14.4-9.2,18.6-9.2,0,0,9.2,5.2,11.6-1.8,0,0,5.8-1.8,11.4-0.6,0,0,3.2-2.6,2.4-4.8,0,0,1.6-1.8,2.6,2,0,0,3.4,3.6,8.2,1.6,0,0,4-0.2,2,2.2,0,0-4.4,3.8-16.2,4,0,0-12.4,0.6-28.8,8.2,0,0-29.8,10.4-39,20.8,0,0-6.4,8.8-11.8,10,0,0-5.8,0.8-11.8,8.2,0,0,9.8-5.8,18.8-5.8,0,0,4-2.4,0.2,1.2,0,0-3.6,7.6-2,13,0,0-0.6,5.2-1.4,6.8,0,0-7.8,12.8-7.8,15.2s1.2,12.2,1.6,12.8-1-1.6,2.8,0.8,6.6,4,7.4,6.8-2-5.4-2.2-7.2-4.4-9-3.6-11.4c0,0,1,1,1.8,2.4,0,0-0.6-0.6,0-4.2,0,0,0.8-5.2,2.2-8.4s3.4-7,3.8-7.8,0.4-6.6,1.8-4l3.4,2.6s-2.8-2.6-0.6-4.8c0,0-1-5.6,0.8-8.2,0,0,7-8.4,8.6-9.4s0.2-0.6,0.2-0.6,6-4.2,0.2-2.6c0,0-4,1.6-7,1.6,0,0-7.6,2-3.6-2.2s14-9.6,17.8-9.4l0.8,1.6,11.2-2.4-1.2,0.8s-0.2-0.2,4-0.6,10,1,11.4-0.8,4.8-2.8,4.4-1.4-0.6,3.4-0.6,3.4,5-5.8,4.4-3.6-8.8,7.4-10.2,13.6l10.4-8.2,3.6-3s3.6,2.2,3.8,0.6,4.8-7.4,6-7.2,3.2-2.6,3,0,7.4,8,7.4,8,3.2-1.8,4.6-0.4,5.6-19.8,5.6-19.8l25-10.6,43.6-3.4-16.999-6.8-61.001-11.4z"/>
      </g>
      <g id="g446" stroke-width="2" stroke="#4c0000">
       <path id="path448" d="m51.4,85s-15-16.8-23.4-19.4c0,0-13.4-6.8-38,1"/>
      </g>
      <g id="g450" stroke-width="2" stroke="#4c0000">
       <path id="path452" d="m24.8,64.2s-25.2-8-40.6-3.8c0,0-18.4,2-26.8,15.8"/>
      </g>
      <g id="g454" stroke-width="2" stroke="#4c0000">
       <path id="path456" d="m21.2,63s-17-7.2-31.8-9.4c0,0-16.6-2.6-33.2,4.6,0,0-12.2,6-17.6,16.2"/>
      </g>
      <g id="g458" stroke-width="2" stroke="#4c0000">
       <path id="path460" d="m22.2,63.4s-15.4-11-16.4-12.4c0,0-7-11-20-11.4,0,0-21.4,0.8-38.6,8.8"/>
      </g>
      <g id="g462" fill="#000">
       <path id="path464" d="M20.895,54.407c1.542,1.463,28.505,30.393,28.505,30.393,35.2,36.6,7.2,2.4,7.2,2.4-7.6-4.8-16.8-23.6-16.8-23.6-1.2-2.8,14,7.2,14,7.2,4,0.8,17.6,20,17.6,20-6.8-2.4-2,4.8-2,4.8,2.8,2,23.201,17.6,23.201,17.6,3.6,4,7.599,5.6,7.599,5.6,14-5.2,7.6,8,7.6,8,2.4,6.8,8-4.8,8-4.8,11.2-16.8-5.2-14.4-5.2-14.4-30,2.8-36.8-13.2-36.8-13.2-2.4-2.4,6.4,0,6.4,0,8.401,2-7.2-12.4-7.2-12.4,2.4,0,11.6,6.8,11.6,6.8,10.401,9.2,12.401,7.2,12.401,7.2,17.999-8.8,28.399-1.2,28.399-1.2,2,1.6-3.6,8.4-2,13.6s6.4,17.6,6.4,17.6c-2.4,1.6-2,12.4-2,12.4,16.8,23.2,7.2,21.2,7.2,21.2-15.6-0.4-0.8,7.2-0.8,7.2,3.2,2,12,9.2,12,9.2-2.8-1.2-4.4,4-4.4,4,4.8,4,2,8.8,2,8.8-6,1.2-7.2,5.2-7.2,5.2,6.8,8-3.2,8.4-3.2,8.4,3.6,4.4-1.2,16.4-1.2,16.4-4.8,0-11.2,5.6-11.2,5.6,2.4,4.8-8,10.4-8,10.4-8.4,1.6-5.6,8.4-5.6,8.4-7.999,6-10.399,22-10.399,22-0.8,10.4-3.2,13.6,2,11.6,5.199-2,4.399-14.4,4.399-14.4-4.799-15.6,38-31.6,38-31.6,4-1.6,4.8-6.8,4.8-6.8,2,0.4,10.8,8,10.8,8,7.6,11.2,8,2,8,2,1.2-3.6-0.4-9.6-0.4-9.6,6-21.6-8-28-8-28-10-33.6,4-25.2,4-25.2,2.8,5.6,13.6,10.8,13.6,10.8l3.6-2.4c-1.6-4.8,6.8-10.8,6.8-10.8,2.8,6.4,8.8-1.6,8.8-1.6,3.6-24.4,16-10,16-10,4,1.2,5.2-5.6,5.2-5.6,3.6-10.4,0-24,0-24,3.6-0.4,13.2,5.6,13.2,5.6,2.8-3.6-6.4-20.4-2.4-18s8.4,4,8.4,4c0.8-2-9.2-14.4-9.2-14.4-4.4-2.8-9.6-23.2-9.6-23.2,7.2,3.6-2.8-11.6-2.8-11.6,0-3.2,6-14.4,6-14.4-0.8-6.8,0-6.4,0-6.4,2.8,1.2,10.8,2.8,4-3.6s0.8-11.2,0.8-11.2c4.4-2.8-9.2-2.4-9.2-2.4-5.2-4.4-4.8-8.4-4.8-8.4,8,2-6.4-12.4-8.8-16s7.2-8.8,7.2-8.8c13.2-3.6,1.6-6.8,1.6-6.8-19.6,0.4-8.8-10.4-8.8-10.4,6,0.4,4.4-2,4.4-2-5.2-1.2-14.8-7.6-14.8-7.6-4-3.6-0.4-2.8-0.4-2.8,16.8,1.2-12-10-12-10,8,0-10-10.4-10-10.4-2-1.6-5.2-9.2-5.2-9.2-6-5.2-10.8-12-10.8-12-0.4-4.4-5.2-9.2-5.2-9.2-11.6-13.6-17.2-13.2-17.2-13.2-14.8-3.6-20-2.8-20-2.8l-52.8,4.4c-26.4,12.8-18.6,33.8-18.6,33.8,6.4,8.4,15.6,4.6,15.6,4.6,4.6-6.2,16.2-4,16.2-4,20.401,3.2,17.801-0.4,17.801-0.4-2.4-4.6-18.601-10.8-18.801-11.4s-9-4-9-4c-3-1.2-7.4-10.4-7.4-10.4-3.2-3.4,12.6,2.4,12.6,2.4-1.2,1,6.2,5,6.2,5,17.401-1,28.001,9.8,28.001,9.8,10.799,16.6,10.999,8.4,10.999,8.4,2.8-9.4-9-30.6-9-30.6,0.4-2,8.6,4.6,8.6,4.6,1.4-2,2.2,3.8,2.2,3.8,0.2,2.4,4,10.4,4,10.4,2.8,13,6.4,5.6,6.4,5.6l4.6,9.4c1.4,2.6-4.6,10.2-4.6,10.2-0.2,2.8,0.6,2.6-5,10.2s-2.2,12-2.2,12c-1.4,6.6,7.4,6.2,7.4,6.2,2.6,2.2,6,2.2,6,2.2,1.8,2,4.2,1.4,4.2,1.4,1.6-3.8,7.8-1.8,7.8-1.8,1.4-2.4,9.6-2.8,9.6-2.8,1-2.6,1.4-4.2,4.8-4.8s-21.2-43.6-21.2-43.6c6.4-0.8-1.8-13.2-1.8-13.2-2.2-6.6,9.2,8,11.4,9.4s3.2,3.6,1.6,3.4-3.4,2-2,2.2,14.4,15.2,17.8,25.4,9.4,14.2,15.6,20.2,5.4,30.2,5.4,30.2c-0.4,8.8,5.6,19.4,5.6,19.4,2,3.8-2.2,22-2.2,22-2,2.2-0.6,3-0.6,3,1,1.2,7.8,14.4,7.8,14.4-1.8-0.2,1.8,3.4,1.8,3.4,5.2,6-1.2,3-1.2,3-6-1.6,1,8.2,1,8.2,1.2,1.8-7.8-2.8-7.8-2.8-9.2-0.6,2.4,6.6,2.4,6.6,8.6,7.2-2.8,2.8-2.8,2.8-4.6-1.8-1.4,5-1.4,5,3.2,1.6,20.4,8.6,20.4,8.6,0.4,3.8-2.6,8.8-2.6,8.8,0.4,4-1.8,7.4-1.8,7.4-1.2,8.2-1.8,9-1.8,9-4.2,0.2-11.6,14-11.6,14-1.8,2.6-12,14.6-12,14.6-2,7-20-0.2-20-0.2-6.6,3.4-4.6,0-4.6,0-0.4-2.2,4.4-8.2,4.4-8.2,7-2.6,4.4-13.4,4.4-13.4,4-1.4-7.2-4.2-7-5.4s6-2.6,6-2.6c8-2,3.6-4.4,3.6-4.4-0.6-4,2.4-9.6,2.4-9.6,11.6-0.8,0-17,0-17-10.8-7.6-11.8-13.4-11.8-13.4,12.6-8.2,4.4-20.6,4.6-24.2s1.4-25.2,1.4-25.2c-2-6.2-5-19.8-5-19.8,2.2-5.2,9.6-17.8,9.6-17.8,2.8-4.2,11.6-9,9.4-12s-10-1.2-10-1.2c-7.8-1.4-7.2,3.8-7.2,3.8-1.6,1-2.4,6-2.4,6-0.72,7.933-9.6,14.2-9.6,14.2-11.2,6.2-2,10.2-2,10.2,6,6.6-3.8,6.8-3.8,6.8-11-1.8-2.8,8.4-2.8,8.4,10.8,12.8,7.8,15.6,7.8,15.6-10.2,1,2.4,10.2,2.4,10.2s-0.8-2-0.6-0.2,3.2,6,4,8-3.2,2.2-3.2,2.2c0.6,9.6-14.8,5.4-14.8,5.4l-1.6,0.2c-1.6,0.2-12.8-0.6-18.6-2.8s-12.599-2.2-12.599-2.2-4,1.8-11.601,1.6c-7.6-0.2-15.6,2.6-15.6,2.6-4.4-0.4,4.2-4.8,4.4-4.6s5.8-5.4-2.2-4.8c-21.797,1.635-32.6-8.6-32.6-8.6-2-1.4-4.6-4.2-4.6-4.2-10-2,1.4,12.4,1.4,12.4,1.2,1.4-0.2,2.4-0.2,2.4-0.8-1.6-8.6-7-8.6-7-2.811-0.973-4.174-2.307-6.505-4.793z"/>
      </g>
      <g id="g466" fill="#4c0000">
       <path id="path468" d="m-3,42.8s11.6,5.6,14.2,8.4,16.6,14.2,16.6,14.2-5.4-2-8-3.8-13.4-10-13.4-10-3.8-6-9.4-8.8z"/>
      </g>
      <g id="g470" fill="#99cc32">
       <path id="path472" d="M-61.009,11.603c0.337-0.148-0.187-2.86-0.391-3.403-1.022-2.726-10-4.2-10-4.2-0.227,1.365-0.282,2.961-0.176,4.599,0,0,4.868,5.519,10.567,3.004z"/>
      </g>
      <g id="g474" fill="#659900">
       <path id="path476" d="M-61.009,11.403c-0.449,0.158-0.015-2.734-0.191-3.203-1.022-2.726-10.2-4.3-10.2-4.3-0.227,1.365-0.282,2.961-0.176,4.599,0,0,4.268,5.119,10.567,2.904z"/>
      </g>
      <g id="g478" fill="#000">
       <path id="path480" d="m-65.4,11.546c-0.625,0-1.131-1.14-1.131-2.546,0-1.405,0.506-2.545,1.131-2.545s1.132,1.14,1.132,2.545c0,1.406-0.507,2.546-1.132,2.546z"/>
      </g>
      <g id="g482" fill="#000">
       <path id="path484" d="M-65.4,9z"/>
      </g>
      <g id="g486" fill="#000">
       <path id="path488" d="m-111,109.6s-5.6,10,19.2,4c0,0,14-1.2,16.4-3.6,1.2,0.8,9.566,3.73,12.4,4.4,6.8,1.6,15.2-8.4,15.2-8.4s4.6-10.5,7.4-10.5-0.4,1.6-0.4,1.6-6.6,10.1-6.2,11.7c0,0-5.2,20-21.2,20.8,0,0-16.15,0.95-14.8,6.8,0,0,8.8-2.4,11.2,0,0,0,10.8-0.4,2.8,6l-6.8,11.6s0.14,3.92-10,0.4c-9.8-3.4-20.1-16.3-20.1-16.3s-15.95-14.55-5.1-28.5z"/>
      </g>
      <g id="g490" fill="#e59999">
       <path id="path492" d="m-112.2,113.6s-2,9.6,34.8-0.8l6.8,0.8c2.4,0.8,14.4,3.6,16.4,2.4,0,0-7.2,13.6-18.8,12,0,0-13.2,1.6-12.8,6.4,0,0,4,7.2,8.8,9.6,0,0,2.8,2.4,2.4,5.6s-3.2,4.8-5.2,5.6-5.2-2.4-6.8-2.4-10-6.4-14.4-11.2-12.8-16.8-12.4-19.6,1.2-8.4,1.2-8.4z"/>
      </g>
      <g id="g494" fill="#b26565">
       <path id="path496" d="m-109,131.05c2.6,3.95,5.8,8.15,8,10.55,4.4,4.8,12.8,11.2,14.4,11.2s4.8,3.2,6.8,2.4,4.8-2.4,5.2-5.6-2.4-5.6-2.4-5.6c-3.066-1.53-5.806-5.02-7.385-7.35,0,0,0.185,2.55-5.015,1.75s-10.4-3.6-12-6.8-4-5.6-2.4-2,4,7.2,5.6,7.6,1.2,1.6-1.2,1.2-5.2-0.8-9.6-6z"/>
      </g>
      <g id="g498" fill="#992600">
       <path id="path500" d="m-111.6,110s1.8-13.6,3-17.6c0,0-0.8-6.8,1.6-11s4.4-10.4,7.4-15.8,3.2-9.4,7.2-11,10-10.2,12.8-11.2,2.6-0.2,2.6-0.2,6.8-14.8,20.4-10.8c0,0-16.2-2.8-0.4-12.2,0,0-4.8,1.1-1.5-5.9,2.201-4.668,1.7,2.1-9.3,13.9,0,0-5,8.6-10.2,11.6s-17.2,10-18.4,13.8-4.4,9.6-6.4,11.2-4.8,5.8-5.2,9.2c0,0-1.2,4-2.6,5.2s-1.6,4.4-1.6,6.4-2,4.8-1.8,7.2c0,0,0.8,19,0.4,21l2-3.8z"/>
      </g>
      <g id="g502" fill="#FFF">
       <path id="path504" d="m-120.2,114.6s-2-1.4-6.4,4.6c0,0,7.3,33,7.3,34.4,0,0,1.1-2.1-0.2-9.3s-2.2-19.9-2.2-19.9l1.5-9.8z"/>
      </g>
      <g id="g506" fill="#992600">
       <path id="path508" d="m-98.6,54s-17.6,3.2-17.2,32.4l-0.8,24.8s-1.2-25.6-2.4-27.2,2.8-12.8-0.4-6.8c0,0-14,14-6,35.2,0,0,1.5,3.3-1.5-1.3,0,0-4.6-12.6-3.5-19,0,0,0.2-2.2,2.1-5,0,0,8.6-11.7,11.3-14,0,0,1.8-14.4,17.2-19.6,0,0,5.7-2.3,1.2,0.5z"/>
      </g>
      <g id="g510" fill="#000">
       <path id="path512" d="m40.8-12.2c0.66-0.354,0.651-1.324,1.231-1.497,1.149-0.344,1.313-1.411,1.831-2.195,0.873-1.319,1.066-2.852,1.648-4.343,0.272-0.7,0.299-1.655-0.014-2.315-1.174-2.481-1.876-4.93-3.318-7.356-0.268-0.45-0.53-1.244-0.731-1.842-0.463-1.384-1.72-2.375-2.58-3.695-0.288-0.441,0.237-1.366-0.479-1.45-0.897-0.105-2.346-0.685-2.579,0.341-0.588,2.587,0.423,5.11,1.391,7.552-0.782,0.692-0.448,1.613-0.296,2.38,0.71,3.606-0.488,6.958-1.249,10.432-0.023,0.104,0.319,0.302,0.291,0.364-1.222,2.686-2.674,5.131-4.493,7.512-0.758,0.992-1.63,1.908-2.127,2.971-0.368,0.787-0.776,1.753-0.526,2.741-3.435,2.78-5.685,6.625-8.296,10.471-0.462,0.68-0.171,1.889,0.38,2.158,0.813,0.398,1.769-0.626,2.239-1.472,0.389-0.698,0.742-1.348,1.233-1.991,0.133-0.175-0.046-0.594,0.089-0.715,2.633-2.347,4.302-5.283,6.755-7.651,1.95-0.329,3.487-1.327,5.235-2.34,0.308-0.179,0.832,0.07,1.122-0.125,1.753-1.177,1.751-3.213,1.857-5.123,0.05-0.884,0.246-2.201,1.386-2.812z"/>
      </g>
      <g id="g514" fill="#000">
       <path id="path516" d="m31.959-16.666c0.124-0.077-0.031-0.5,0.078-0.716,0.162-0.324,0.565-0.512,0.727-0.836,0.109-0.216-0.054-0.596,0.082-0.738,2.333-2.447,2.59-5.471,1.554-8.444,1.024-0.62,1.085-1.882,0.66-2.729-0.853-1.7-1.046-3.626-2.021-5.169-0.802-1.269-2.38-2.513-3.751-1.21-0.421,0.4-0.742,1.187-0.464,1.899,0.064,0.163,0.349,0.309,0.322,0.391-0.107,0.324-0.653,0.548-0.659,0.82-0.03,1.496-0.984,3.007-0.354,4.336,0.772,1.629,1.591,3.486,2.267,5.262-1.234,2.116-0.201,4.565-1.954,6.442-0.136,0.146-0.127,0.532-0.005,0.734,0.292,0.486,0.698,0.892,1.184,1.184,0.202,0.121,0.55,0.123,0.75-0.001,0.578-0.362,0.976-0.849,1.584-1.225z"/>
      </g>
      <g id="g518" fill="#000">
       <path id="path520" d="m94.771-26.977c1.389,1.792,1.679,4.587-0.37,5.977,0.55,3.309,3.901,1.33,5.999,0.8-0.11-0.388,0.12-0.732,0.4-0.737,1.06-0.015,1.74-1.047,2.8-0.863,0.44-1.557,2.07-2.259,2.72-3.639,1.72-3.695,1.13-7.968-1.45-11.214-0.2-0.254,0.01-0.771-0.11-1.133-0.76-2.211-2.82-2.526-4.76-3.214-1.176-3.875-1.837-7.906-3.599-11.6-1.614-0.25-2.312-1.989-3.649-2.709-1.333-0.719-1.901,0.86-1.86,1.906,0.007,0.205,0.459,0.429,0.289,0.794-0.076,0.164-0.336,0.275-0.336,0.409,0.001,0.135,0.222,0.266,0.356,0.4-0.918,0.82-2.341,1.297-2.636,2.442-0.954,3.71,1.619,6.835,3.287,10.036,0.591,1.135-0.145,2.406-0.905,3.614-0.438,0.695-0.33,1.822-0.054,2.678,0.752,2.331,2.343,4.07,3.878,6.053z"/>
      </g>
      <g id="g522" fill="#000">
       <path id="path524" d="m57.611-8.591c-1.487,1.851-4.899,4.42-1.982,6.348,0.194,0.129,0.564,0.133,0.737-0.001,2.021-1.565,4.024-2.468,6.46-3.05,0.124-0.029,0.398,0.438,0.767,0.277,1.613-0.703,3.623-0.645,4.807-1.983,3.767,0.224,7.332-0.892,10.723-2.2,1.161-0.448,2.431-1.007,3.632-1.509,1.376-0.576,2.58-1.504,3.692-2.645,0.133-0.136,0.487-0.046,0.754-0.046-0.04-0.863,0.922-0.99,1.169-1.612,0.092-0.232-0.058-0.628,0.075-0.73,2.138-1.63,3.058-3.648,1.889-6.025-0.285-0.578-0.534-1.196-1.1-1.672-1.085-0.911-2.187-0.057-3.234-0.361-0.159,0.628-0.888,0.456-1.274,0.654-0.859,0.439-2.192-0.146-3.051,0.292-1.362,0.695-2.603,0.864-4.025,1.241-0.312,0.082-1.09-0.014-1.25,0.613-0.134-0.134-0.282-0.368-0.388-0.346-1.908,0.396-3.168,0.61-4.469,2.302-0.103,0.133-0.545-0.046-0.704,0.089-0.957,0.808-1.362,2.042-2.463,2.714-0.201,0.123-0.553-0.045-0.747,0.084-0.646,0.431-1.013,1.072-1.655,1.519-0.329,0.229-0.729-0.096-0.697-0.352,0.245-1.947,0.898-3.734,0.323-5.61,2.077-2.52,4.594-4.469,6.4-7.2,0.015-2.166,0.707-4.312,0.594-6.389-0.01-0.193-0.298-0.926-0.424-1.273-0.312-0.854,0.594-1.92-0.25-2.644-1.404-1.203-2.696-0.327-3.52,1.106-1.838,0.39-3.904,1.083-5.482-0.151-1.007-0.787-1.585-1.693-2.384-2.749-0.985-1.302-0.65-2.738-0.58-4.302,0.006-0.128-0.309-0.264-0.309-0.398,0.001-0.135,0.221-0.266,0.355-0.4-0.706-0.626-0.981-1.684-2-2,0.305-1.092-0.371-1.976-1.242-2.278-1.995-0.691-3.672,1.221-5.564,1.294-0.514,0.019-0.981-1.019-1.63-1.344-0.432-0.216-1.136-0.249-1.498,0.017-0.688,0.504-1.277,0.618-2.035,0.823-1.617,0.436-2.895,1.53-4.375,2.385-1.485,0.857-2.44,2.294-3.52,3.614-0.941,1.152-1.077,3.566,0.343,4.066,1.843,0.65,3.147-2.053,5.113-1.727,0.312,0.051,0.518,0.362,0.408,0.75,0.389,0.109,0.607-0.12,0.8-0.4,0.858,1.019,2.022,1.356,2.96,2.229,0.97,0.904,2.716,0.486,3.731,1.483,1.529,1.502,0.97,4.183,2.909,5.488-0.586,1.313-1.193,2.59-1.528,4.017-0.282,1.206,0.712,2.403,1.923,2.312,1.258-0.094,1.52-0.853,2.005-1.929,0.267,0.267,0.736,0.564,0.695,0.78-0.457,2.387-1.484,4.38-1.942,6.811-0.059,0.317-0.364,0.519-0.753,0.409-0.468,4.149-4.52,6.543-7.065,9.708-0.403,0.502-0.407,1.751,0.002,2.154,1.403,1.387,3.363-0.159,5.063-0.662,0.213-1.206,1.072-2.148,2.404-2.092,0.256,0.01,0.491-0.532,0.815-0.662,0.348-0.138,0.85,0.086,1.136-0.112,1.729-1.195,3.137-2.301,4.875-3.49,0.192-0.131,0.536,0.028,0.752-0.08,0.325-0.162,0.512-0.549,0.835-0.734,0.348-0.2,0.59,0.09,0.783,0.37-0.646,0.349-0.65,1.306-1.232,1.508-0.775,0.268-1.336,0.781-2.01,1.228-0.292,0.193-0.951-0.055-1.055,0.124-0.598,1.028-1.782,1.466-2.492,2.349z"/>
      </g>
      <g id="g526" fill="#000">
       <path id="path528" d="m2.2-58s-9.238-2.872-20.4,22.8c0,0-2.4,5.2-4.8,7.2s-13.6,5.6-15.6,9.6l-10.4,16s14.8-16,18-18.4c0,0,8-8.4,4.8-1.6,0,0-14,10.8-12.8,20,0,0-5.6,14.4-6.4,16.4,0,0,16-32,18.4-33.2s3.6-1.2,2.4,2.4-1.6,20-4.4,22c0,0,8-20.4,7.2-23.6,0,0,3.2-3.6,5.6,1.6l-1.2,16,4.4,12s-2.4-11.2-0.8-26.8c0,0-2-10.4,2-4.8s13.6,11.6,13.6,16.4c0,0-5.2-17.6-14.4-22.4l-4,6-1.2-2s-3.6-0.8,0.8-7.6,4-7.6,4-7.6,6.4,7.2,8,7.2c0,0,13.2-7.6,14.4,16.8,0,0,6.8-14.4-2.4-21.2,0,0-14.8-2-13.6-7.2l7.2-12.4c3.6-5.2,2-2.4,2-2.4z"/>
      </g>
      <g id="g530" fill="#000">
       <path id="path532" d="m-17.8-41.6-16,5.2-7.2,9.6s17.2-10,21.2-11.2,2-3.6,2-3.6z"/>
      </g>
      <g id="g534" fill="#000">
       <path id="path536" d="m-57.8-35.2s-2,1.2-2.4,4-2.8,3.2-2,6,2.8,5.2,2.8,1.2,1.6-6,2.4-7.2,2.4-5.6-0.8-4z"/>
      </g>
      <g id="g538" fill="#000">
       <path id="path540" d="m-66.6,26s-8.4-4-11.6-7.6-2.748,1.566-7.6,1.2c-5.847-0.441-4.8-16.4-4.8-16.4l-4,7.6s-1.2,14.4,6.8,12c3.907-1.172,5.2,0.4,3.6,1.2s5.6,1.2,2.8,2.8,11.6-3.6,9.2,6.8l5.6-7.6z"/>
      </g>
      <g id="g542" fill="#000">
       <path id="path544" d="m-79.2,40.4s-15.4,4.4-19-5.2c0,0-4.8,2.4-2.6,5.4s3.4,3.4,3.4,3.4,5.4,1.2,4.8,2-3,4.2-3,4.2,10.2-6,16.4-9.8z"/>
      </g>
      <g id="g546" fill="#FFF">
       <path id="path548" d="m149.2,118.6c-0.43,2.14-2.1,2.94-4,3.6-1.92-0.96-4.51-4.06-6.4-2-0.47-0.48-1.25-0.54-1.6-1.2-0.46-0.9-0.19-1.94-0.53-2.74-0.55-1.28-1.25-2.64-1.07-4.06,1.81-0.71,2.4-2.62,1.93-4.38-0.07-0.26-0.5-0.45-0.3-0.8,0.19-0.33,0.5-0.55,0.77-0.82-0.13,0.14-0.28,0.37-0.39,0.35-0.61-0.11-0.49-0.75-0.36-1.13,0.59-1.75,2.6-2.01,3.95-0.82,0.26-0.56,0.77-0.37,1.2-0.4-0.05-0.58,0.36-1.11,0.56-1.53,0.52-1.09,2.14,0.01,2.94-0.6,1.08-0.83,2.14-1.52,3.22-0.92,1.81,1.01,3.52,2.22,4.72,3.97,0.57,0.83,0.81,2.11,0.75,3.07-0.04,0.65-1.42,0.29-1.76,1.22-0.65,1.75,1.19,2.27,1.94,3.61,0.2,0.35-0.06,0.65-0.38,0.75-0.41,0.13-1.19-0.06-1.06,0.39,0.98,3.19-1.78,3.87-4.13,4.44z"/>
      </g>
      <g id="g550" fill="#FFF">
       <path id="path552" d="m139.6,138.2c-0.01-1.74-1.61-3.49-0.4-5.2,0.14,0.14,0.27,0.36,0.4,0.36,0.14,0,0.27-0.22,0.4-0.36,1.5,2.22,5.15,3.14,5.01,5.99-0.03,0.45-1.11,1.37-0.21,2.01-1.81,1.35-1.87,3.72-2.8,5.6-1.24-0.28-2.45-0.65-3.6-1.2,0.35-1.48,0.24-3.17,1.06-4.49,0.43-0.7,0.14-1.78,0.14-2.71z"/>
      </g>
      <g id="g554" fill="#CCC">
       <path id="path556" d="m-26.6,129.2s-16.858,10.14-2.8-5.2c8.8-9.6,18.8-15.2,18.8-15.2s10.4-4.4,14-5.6,18.8-6.4,22-6.8,12.8-4.4,19.6-0.4,14.8,8.4,14.8,8.4-16.4-8.4-20-6-10.8,2-16.8,5.2c0,0-14.8,4.4-18,6.4s-13.6,13.6-15.2,12.8,0.4-1.2,1.6-4-0.8-4.4-8.8,2-9.2,8.4-9.2,8.4z"/>
      </g>
      <g id="g558" fill="#000">
       <path id="path560" d="m-19.195,123.23s1.41-13.04,9.888-11.37c0,0,8.226-4.17,10.948-6.14,0,0,8.139-1.7,9.449-2.32,18.479-8.698,33.198-4.179,33.745-5.299,0.546-1.119,20.171,5.999,23.78,10.079,0.391,0.45-10.231-5.59-19.929-7.48-8.273-1.617-29.875,0.24-40.781,5.78-2.973,1.51-11.918,7.29-14.449,7.18s-12.651,9.57-12.651,9.57z"/>
      </g>
      <g id="g562" fill="#CCC">
       <path id="path564" d="m-23,148.8s-15.2-2.4,1.6-4c0,0,18-2,22-7.2,0,0,13.6-9.2,16.4-9.6s32.8-7.6,33.2-10,6-2.4,7.6-1.6,0.8,2-2,2.8-34,17.2-40.4,18.4-18,8.8-22.8,10-15.6,1.2-15.6,1.2z"/>
      </g>
      <g id="g566" fill="#000">
       <path id="path568" d="m-3.48,141.4s-8.582-0.83,0.019-1.64c0,0,8.816-3.43,10.864-6.09,0,0,6.964-4.71,8.397-4.92,1.434-0.2,15.394-3.89,15.599-5.12s34.271-13.81,38.691-10.62c2.911,2.1-6.99,0.43-16.624,4.84-1.355,0.62-35.208,15.2-38.485,15.82-3.277,0.61-9.216,4.5-11.674,5.12-2.457,0.61-6.787,2.61-6.787,2.61z"/>
      </g>
      <g id="g570" fill="#000">
       <path id="path572" d="m-11.4,143.6s5.2-0.4,4,1.2-3.6,0.8-3.6,0.8l-0.4-2z"/>
      </g>
      <g id="g574" fill="#000">
       <path id="path576" d="m-18.6,145.2s5.2-0.4,4,1.2-3.6,0.8-3.6,0.8l-0.4-2z"/>
      </g>
      <g id="g578" fill="#000">
       <path id="path580" d="m-29,146.8s5.2-0.4,4,1.2-3.6,0.8-3.6,0.8l-0.4-2z"/>
      </g>
      <g id="g582" fill="#000">
       <path id="path584" d="m-36.6,147.6s5.2-0.4,4,1.2-3.6,0.8-3.6,0.8l-0.4-2z"/>
      </g>
      <g id="g586" fill="#000">
       <path id="path588" d="m1.8,108,3.2,1.6c-1.2,1.6-4.4,1.2-4.4,1.2l1.2-2.8z"/>
      </g>
      <g id="g590" fill="#000">
       <path id="path592" d="m-8.2,113.6s6.506-2.14,4,1.2c-1.2,1.6-3.6,0.8-3.6,0.8l-0.4-2z"/>
      </g>
      <g id="g594" fill="#000">
       <path id="path596" d="m-19.4,118.4s5.2-0.4,4,1.2-3.6,0.8-3.6,0.8l-0.4-2z"/>
      </g>
      <g id="g598" fill="#000">
       <path id="path600" d="m-27,124.4s5.2-0.4,4,1.2-3.6,0.8-3.6,0.8l-0.4-2z"/>
      </g>
      <g id="g602" fill="#000">
       <path id="path604" d="m-33.8,129.2s5.2-0.4,4,1.2-3.6,0.8-3.6,0.8l-0.4-2z"/>
      </g>
      <g id="g606" fill="#000">
       <path id="path608" d="m5.282,135.6s6.921-0.53,5.324,1.6c-1.597,2.12-4.792,1.06-4.792,1.06l-0.532-2.66z"/>
      </g>
      <g id="g610" fill="#000">
       <path id="path612" d="m15.682,130.8s6.921-0.53,5.324,1.6c-1.597,2.12-4.792,1.06-4.792,1.06l-0.532-2.66z"/>
      </g>
      <g id="g614" fill="#000">
       <path id="path616" d="m26.482,126.4s6.921-0.53,5.324,1.6c-1.597,2.12-4.792,1.06-4.792,1.06l-0.532-2.66z"/>
      </g>
      <g id="g618" fill="#000">
       <path id="path620" d="m36.882,121.6s6.921-0.53,5.324,1.6c-1.597,2.12-4.792,1.06-4.792,1.06l-0.532-2.66z"/>
      </g>
      <g id="g622" fill="#000">
       <path id="path624" d="m9.282,103.6s6.921-0.53,5.324,1.6c-1.597,2.12-5.592,1.86-5.592,1.86l0.268-3.46z"/>
      </g>
      <g id="g626" fill="#000">
       <path id="path628" d="m19.282,100.4s6.921-0.534,5.324,1.6c-1.597,2.12-5.992,1.86-5.992,1.86l0.668-3.46z"/>
      </g>
      <g id="g630" fill="#000">
       <path id="path632" d="m-3.4,140.4s5.2-0.4,4,1.2-3.6,0.8-3.6,0.8l-0.4-2z"/>
      </g>
      <g id="g634" fill="#992600">
       <path id="path636" d="m-76.6,41.2s-4.4,8.8-4.8,12c0,0,0.8-8.8,2-10.8s2.8-1.2,2.8-1.2z"/>
      </g>
      <g id="g638" fill="#992600">
       <path id="path640" d="m-95,55.2s-3.2,14.4-2.8,17.2c0,0-1.2-11.6-0.8-12.8s3.6-4.4,3.6-4.4z"/>
      </g>
      <g id="g642" fill="#CCC">
       <path id="path644" d="m-74.2-19.4-0.2,3.2-2.2,0.2s14.2,12.6,14.8,20.2c0,0,0.8-8.2-12.4-23.6z"/>
      </g>
      <g id="g646" fill="#000">
       <path id="path648" d="m-70.216-18.135c-0.431-0.416-0.212-1.161-0.62-1.421-0.809-0.516,1.298-0.573,1.07-1.289-0.383-1.206-0.196-1.227-0.318-2.503-0.057-0.598,0.531-2.138,0.916-2.578,1.446-1.652,0.122-4.584,1.762-6.135,0.304-0.289,0.68-0.841,0.965-1.259,0.659-0.963,1.843-1.451,2.793-2.279,0.318-0.276,0.117-1.103,0.686-1.011,0.714,0.115,1.955-0.015,1.91,0.826-0.113,2.12-1.442,3.84-2.722,5.508,0.451,0.704-0.007,1.339-0.291,1.896-1.335,2.62-1.146,5.461-1.32,8.301-0.005,0.085-0.312,0.163-0.304,0.216,0.353,2.335,0.937,4.534,1.816,6.763,0.366,0.93,0.837,1.825,0.987,2.752,0.111,0.686,0.214,1.519-0.194,2.224,2.035,2.89,0.726,5.541,1.895,9.072,0.207,0.625,1.899,2.539,1.436,2.378-2.513-0.871-2.625-1.269-2.802-2.022-0.146-0.623-0.476-2-0.713-2.602-0.064-0.164-0.235-2.048-0.313-2.17-1.513-2.382-0.155-2.206-1.525-4.564-1.428-0.68-2.394-1.784-3.517-2.946-0.198-0.204,0.945-0.928,0.764-1.141-1.092-1.289-2.245-2.056-1.909-3.549,0.155-0.69,0.292-1.747-0.452-2.467z"/>
      </g>
      <g id="g650" fill="#000">
       <path id="path652" d="m-73.8-16.4s0.4,6.8,2.8,8.4,1.2,0.8-2-0.4-2-2-2-2-2.8,0.4-0.4,2.4,6,4.4,4.4,4.4-9.2-4-9.2-6.8-1-6.9-1-6.9,1.1-0.8,5.9-0.7c0,0,1.4,0.7,1.5,1.6z"/>
      </g>
      <g id="g654" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path656" d="m-74.6,2.2s-8.52-2.791-27,0.6c0,0,9.031-2.078,27.8,0.2,10.3,1.25-0.8-0.8-0.8-0.8z"/>
      </g>
      <g id="g658" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path660" d="m-72.502,2.129s-8.246-3.518-26.951-1.737c0,0,9.178-1.289,27.679,2.603,10.154,2.136-0.728-0.866-0.728-0.866z"/>
      </g>
      <g id="g662" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path664" d="m-70.714,2.222s-7.962-4.121-26.747-3.736c0,0,9.248-0.604,27.409,4.654,9.966,2.885-0.662-0.918-0.662-0.918z"/>
      </g>
      <g id="g666" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path668" d="m-69.444,2.445s-6.824-4.307-23.698-5.405c0,0,8.339,0.17,24.22,6.279,8.716,3.353-0.522-0.874-0.522-0.874z"/>
      </g>
      <g id="g670" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path672" d="m45.84,12.961s-0.93,0.644-0.716-0.537c0.215-1.181,28.423-14.351,32.037-14.101,0,0-30.248,13.206-31.321,14.638z"/>
      </g>
      <g id="g674" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path676" d="m42.446,13.6s-0.876,0.715-0.755-0.479,27.208-16.539,30.83-16.573c0,0-29.117,15.541-30.075,17.052z"/>
      </g>
      <g id="g678" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path680" d="m39.16,14.975s-0.828,0.772-0.786-0.428c0.042-1.199,19.859-16.696,29.671-18.57,0,0-18.03,8.127-28.885,18.998z"/>
      </g>
      <g id="g682" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path684" d="m36.284,16.838s-0.745,0.694-0.707-0.385c0.038-1.08,17.872-15.027,26.703-16.713,0,0-16.226,7.314-25.996,17.098z"/>
      </g>
      <g id="g686" fill="#CCC">
       <path id="path688" d="m4.6,164.8s-15.2-2.4,1.6-4c0,0,18-2,22-7.2,0,0,13.6-9.2,16.4-9.6s19.2-4,19.6-6.4,6.4-4.8,8-4,1.6,10-1.2,10.8-21.6,8-28,9.2-18,8.8-22.8,10-15.6,1.2-15.6,1.2z"/>
      </g>
      <g id="g690" fill="#000">
       <path id="path692" d="m77.6,127.4s-3,1.6-4.2,4.2c0,0-6.4,10.6-20.6,13.8,0,0-23,9-30.8,11,0,0-13.4,5-20.8,4.2,0,0-7,0.2-0.8,1.8,0,0,20.2-2,23.6-3.8,0,0,15.6-5.2,18.6-7.8s21.2-7.6,23.4-9.6,12-10.4,11.6-13.8z"/>
      </g>
      <g id="g694" fill="#000">
       <path id="path696" d="m18.882,158.91s5.229-0.23,4.076,1.32-3.601,0.68-3.601,0.68l-0.475-2z"/>
      </g>
      <g id="g698" fill="#000">
       <path id="path700" d="m11.68,160.26s5.228-0.22,4.076,1.33c-1.153,1.55-3.601,0.67-3.601,0.67l-0.475-2z"/>
      </g>
      <g id="g702" fill="#000">
       <path id="path704" d="m1.251,161.51s5.229-0.23,4.076,1.32-3.601,0.68-3.601,0.68l-0.475-2z"/>
      </g>
      <g id="g706" fill="#000">
       <path id="path708" d="m-6.383,162.06s5.229-0.23,4.076,1.32-3.601,0.67-3.601,0.67l-0.475-1.99z"/>
      </g>
      <g id="g710" fill="#000">
       <path id="path712" d="m35.415,151.51s6.96-0.3,5.425,1.76c-1.534,2.07-4.793,0.9-4.793,0.9l-0.632-2.66z"/>
      </g>
      <g id="g714" fill="#000">
       <path id="path716" d="m45.73,147.09s5.959-3.3,5.425,1.76c-0.27,2.55-4.793,0.9-4.793,0.9l-0.632-2.66z"/>
      </g>
      <g id="g718" fill="#000">
       <path id="path720" d="m54.862,144.27s7.159-3.7,5.425,1.77c-0.778,2.44-4.794,0.9-4.794,0.9l-0.631-2.67z"/>
      </g>
      <g id="g722" fill="#000">
       <path id="path724" d="m64.376,139.45s4.359-4.9,5.425,1.76c0.406,2.54-4.793,0.9-4.793,0.9l-0.632-2.66z"/>
      </g>
      <g id="g726" fill="#000">
       <path id="path728" d="m26.834,156s5.228-0.23,4.076,1.32c-1.153,1.55-3.602,0.68-3.602,0.68l-0.474-2z"/>
      </g>
      <g id="g730" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path732" d="m62.434,34.603s-0.726,0.665-0.727-0.406c0-1.07,17.484-14.334,26.327-15.718,0,0-16.099,6.729-25.6,16.124z"/>
      </g>
      <g id="g734" fill="#000">
       <path id="path736" d="m65.4,98.4s22.001,22.4,31.201,26c0,0,9.199,11.2,5.199,37.2,0,0-3.199,7.6-6.399-13.2,0,0,3.2-25.2-8-9.2,0,0-8.401-9.9-2.001-9.6,0,0,3.201,2,3.601,0.4s-7.601-15.2-24.801-29.6,1.2-2,1.2-2z"/>
      </g>
      <g id="g738" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path740" d="m7,137.2s-0.2-1.8,1.6-1,96,7,127.6,31c0,0-45.199-23.2-129.2-30z"/>
      </g>
      <g id="g742" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path744" d="m17.4,132.8s-0.2-1.8,1.6-1,138.4-0.2,162,32.2c0,0-22-25.2-163.6-31.2z"/>
      </g>
      <g id="g746" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path748" d="m29,128.8s-0.2-1.8,1.6-1,175.2-12.2,198.8,20.2c0,0-9.6-25.6-200.4-19.2z"/>
      </g>
      <g id="g750" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path752" d="m39,124s-0.2-1.8,1.6-1,124-37.8,147.6-5.4c0,0-13.4-24.6-149.2,6.4z"/>
      </g>
      <g id="g754" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path756" d="m-19,146.8s-0.2-1.8,1.6-1,19.6,3,21.6,41.8c0,0-7.2-42-23.2-40.8z"/>
      </g>
      <g id="g758" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path760" d="m-27.8,148.4s-0.2-1.8,1.6-1,16-3.8,13.2,35c0,0,1.2-35.2-14.8-34z"/>
      </g>
      <g id="g762" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path764" d="m-35.8,148.8s-0.2-1.8,1.6-1,17.2,1.4,4.8,23.8c0,0,9.6-24-6.4-22.8z"/>
      </g>
      <g id="g766" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path768" d="m11.526,104.46s-0.444,2,1.105,0.79c16.068-12.628,48.51-71.53,104.2-77.164,0,0-38.312-12.11-105.3,76.374z"/>
      </g>
      <g id="g770" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path772" d="m22.726,102.66s-1.363-1.19,0.505-1.81c1.868-0.63,114.31-73.13,153.6-65.164,0,0-27.11-7.51-154.1,66.974z"/>
      </g>
      <g id="g774" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path776" d="m1.885,108.77s-0.509,1.6,1.202,0.62c8.975-5.12,12.59-62.331,56.167-63.586,0,0-32.411-14.714-57.369,62.966z"/>
      </g>
      <g id="g778" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path780" d="m-18.038,119.79s-1.077,1.29,0.876,1.03c10.246-1.33,31.651-42.598,76.09-37.519,0,0-31.966-14.346-76.966,36.489z"/>
      </g>
      <g id="g782" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path784" d="m-6.8,113.67s-0.811,1.47,1.058,0.84c9.799-3.27,22.883-47.885,67.471-51.432,0,0-34.126-7.943-68.529,50.592z"/>
      </g>
      <g id="g786" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path788" d="m-25.078,124.91s-0.873,1.04,0.709,0.84c8.299-1.08,25.637-34.51,61.633-30.396,0,0-25.893-11.62-62.342,29.556z"/>
      </g>
      <g id="g790" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path792" d="m-32.677,130.82s-1.005,1.05,0.586,0.93c4.168-0.31,34.806-33.39,53.274-17.89,0,0-12.015-18.721-53.86,16.96z"/>
      </g>
      <g id="g794" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path796" d="m36.855,98.898s-1.201-1.355,0.731-1.74c1.932-0.384,122.63-58.097,160.59-45.231,0,0-25.94-10.874-161.32,46.971z"/>
      </g>
      <g id="g798" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path800" d="m3.4,163.2s-0.2-1.8,1.6-1,17.2,1.4,4.8,23.8c0,0,9.6-24-6.4-22.8z"/>
      </g>
      <g id="g802" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path804" d="m13.8,161.6s-0.2-1.8,1.6-1,19.6,3,21.6,41.8c0,0-7.2-42-23.2-40.8z"/>
      </g>
      <g id="g806" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path808" d="m20.6,160s-0.2-1.8,1.6-1,26.4,4.2,50,36.6c0,0-35.6-36.8-51.6-35.6z"/>
      </g>
      <g id="g810" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path812" d="m28.225,157.97s-0.437-1.76,1.453-1.2c1.89,0.55,22.324-1.35,60.421,32.83,0,0-46.175-34.94-61.874-31.63z"/>
      </g>
      <g id="g814" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path816" d="m38.625,153.57s-0.437-1.76,1.453-1.2c1.89,0.55,36.724,5.05,88.422,40.03,0,0-74.176-42.14-89.875-38.83z"/>
      </g>
      <g id="g818" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path820" d="m-1.8,142s-0.2-1.8,1.6-1,55.2,3.4,85.6,30.2c0,0-34.901-24.77-87.2-29.2z"/>
      </g>
      <g id="g822" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path824" d="m-11.8,146s-0.2-1.8,1.6-1,26.4,4.2,50,36.6c0,0-35.6-36.8-51.6-35.6z"/>
      </g>
      <g id="g826" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path828" d="m49.503,148.96s-0.565-1.72,1.361-1.3c1.926,0.41,36.996,2.34,91.116,33.44,0,0-77.663-34.4-92.477-32.14z"/>
      </g>
      <g id="g830" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path832" d="m57.903,146.56s-0.565-1.72,1.361-1.3c1.926,0.41,36.996,2.34,91.116,33.44,0,0-77.063-34.8-92.477-32.14z"/>
      </g>
      <g id="g834" stroke-width="0.1" stroke="#000" fill="#FFF">
       <path id="path836" d="m67.503,141.56s-0.565-1.72,1.361-1.3c1.926,0.41,44.996,4.74,134.72,39.04,0,0-120.66-40.4-136.08-37.74z"/>
      </g>
      <g id="g838" fill="#000">
       <path id="path840" d="m-43.8,148.4s5.2-0.4,4,1.2-3.6,0.8-3.6,0.8l-0.4-2z"/>
      </g>
      <g id="g842" fill="#000">
       <path id="path844" d="m-13,162.4s5.2-0.4,4,1.2-3.6,0.8-3.6,0.8l-0.4-2z"/>
      </g>
      <g id="g846" fill="#000">
       <path id="path848" d="m-21.8,162s5.2-0.4,4,1.2-3.6,0.8-3.6,0.8l-0.4-2z"/>
      </g>
      <g id="g850" fill="#000">
       <path id="path852" d="m-117.17,150.18s5.05,1.32,3.39,2.44-3.67-0.42-3.67-0.42l0.28-2.02z"/>
      </g>
      <g id="g854" fill="#000">
       <path id="path856" d="m-115.17,140.58s5.05,1.32,3.39,2.44-3.67-0.42-3.67-0.42l0.28-2.02z"/>
      </g>
      <g id="g858" fill="#000">
       <path id="path860" d="m-122.37,136.18s5.05,1.32,3.39,2.44-3.67-0.42-3.67-0.42l0.28-2.02z"/>
      </g>
      <g id="g862" fill="#CCC">
       <path id="path864" d="m-42.6,211.2-5.6,2c-2,0-13.2,3.6-18.8,13.6,0,0,12.4-9.6,24.4-15.6z"/>
      </g>
      <g id="g866" fill="#CCC">
       <path id="path868" d="m45.116,303.85c0.141,0.25,0.196,0.67,0.488,0.69,0.658,0.04,1.891,0.34,1.766-0.29-0.848-4.31-1.722-9.25-5.855-11.05-0.639-0.28-2.081,0.13-2.155,1.02-0.127,1.52-0.244,2.87,0.065,4.33,0.3,1.43,2.458,1.43,3.375,0.05,0.936,1.67,1.368,3.52,2.316,5.25z"/>
      </g>
      <g id="g870" fill="#CCC">
       <path id="path872" d="m34.038,308.58c0.748,1.41,0.621,3.27,2.036,3.84,0.74,0.29,2.59-0.68,2.172-1.76-0.802-2.06-1.19-4.3-2.579-6.11-0.2-0.26,0.04-0.79-0.12-1.12-0.594-1.22-1.739-1.96-3.147-1.63-1.115,2.2,0.033,4.33,1.555,6.04,0.136,0.15-0.03,0.53,0.083,0.74z"/>
      </g>
      <g id="g874" fill="#CCC">
       <path id="path876" d="m-5.564,303.39c-0.108-0.38-0.146-0.84,0.019-1.16,0.531-1.03,1.324-2.15,0.987-3.18-0.348-1.05-1.464-0.87-2.114-0.3-1.135,0.99-1.184,2.82-1.875,4.18-0.196,0.38-0.145,0.96-0.586,1.35-0.474,0.42-0.914,1.94-0.818,2.51,0.053,0.32-0.13,10.22,0.092,9.96,0.619-0.73,3.669-10.47,3.738-11.36,0.057-0.73,0.789-1.19,0.557-2z"/>
      </g>
      <g id="g878" fill="#CCC">
       <path id="path880" d="m-31.202,296.6c2.634-2.5,5.424-5.46,4.982-9.17-0.116-0.98-1.891-0.45-2.078,0.39-0.802,3.63-2.841,6.29-5.409,8.68-2.196,2.05-4.058,8.39-4.293,8.9,3.697-5.26,5.954-8,6.798-8.8z"/>
      </g>
      <g id="g882" fill="#CCC">
       <path id="path884" d="m-44.776,290.64c0.523-0.38,0.221-0.87,0.438-1.2,0.953-1.46,2.254-2.7,2.272-4.44,0.003-0.28-0.375-0.59-0.71-0.36-0.277,0.18-0.619,0.31-0.727,0.44-2.03,2.45-3.43,5.12-4.873,7.93-0.183,0.36-1.327,4.85-1.014,4.96,0.239,0.09,1.959-4.09,2.169-4.21,1.263-0.68,1.275-2.3,2.445-3.12z"/>
      </g>
      <g id="g886" fill="#CCC">
       <path id="path888" d="m-28.043,310.18c0.444-0.87,2.02-2.07,1.907-2.96-0.118-0.93,0.35-2.37-0.562-1.68-1.257,0.94-4.706,2.29-4.976,8.1-0.026,0.57,2.948-2.12,3.631-3.46z"/>
      </g>
      <g id="g890" fill="#CCC">
       <path id="path892" d="m-13.6,293c0.4-0.67,1.108-0.19,1.567-0.46,0.648-0.37,1.259-0.93,1.551-1.58,0.97-2.14,2.739-3.96,2.882-6.36-1.491-1.4-2.17,0.64-2.8,1.6-1.323-1.65-2.322,0.23-3.622,0.75-0.07,0.03-0.283-0.32-0.358-0.29-1.177,0.44-1.857,1.52-2.855,2.3-0.171,0.13-0.576-0.05-0.723,0.09-0.652,0.6-1.625,0.93-1.905,1.61-1.11,2.7-4.25,4.8-6.137,12.34,0.381,0.91,4.512-6.64,4.999-7.34,0.836-1.2,0.954,1.66,2.23,1,0.051-0.03,0.237,0.21,0.371,0.34,0.194-0.28,0.412-0.51,0.8-0.4,0-0.4-0.134-0.96,0.067-1.11,1.237-0.98,1.153-2.05,1.933-3.29,0.458,0.79,1.519,0.07,2,0.8z"/>
      </g>
      <g id="g894" fill="#CCC">
       <path id="path896" d="m46.2,347.4s7.4-20.4,3-31.6c0,0,11.4,21.6,6.8,32.8,0,0-0.4-10.4-4.4-15.4,0,0-4,12.8-5.4,14.2z"/>
      </g>
      <g id="g898" fill="#CCC">
       <path id="path900" d="m31.4,344.8s5.4-8.8-2.6-27.2c0,0-0.8,20.4-7.6,31.4,0,0,14.2-20.2,10.2-4.2z"/>
      </g>
      <g id="g902" fill="#CCC">
       <path id="path904" d="m21.4,342.8s-0.2-20,0.2-23c0,0-3.8,16.6-14,26.2,0,0,14.4-12,13.8-3.2z"/>
      </g>
      <g id="g906" fill="#CCC">
       <path id="path908" d="m11.8,310.8s6,13.6-4,32c0,0,6.4-12.2,1.6-19.2,0,0,2.6-3.4,2.4-12.8z"/>
      </g>
      <g id="g910" fill="#CCC">
       <path id="path912" d="m-7.4,342.4s-1-15.6,0.8-17.8c0,0,0.2-6.4-0.2-7.4,0,0,4-6.2,4.2,1.2,0,0,1.4,7.8,4.2,12.4,0,0,3.6,5.4,3.4,11.8,0,0-10-30.2-12.4-0.2z"/>
      </g>
      <g id="g914" fill="#CCC">
       <path id="path916" d="m-11,314.8s-6.6,10.8-8.4,29.8c0,0-1.4-6.2,2.4-20.6,0,0,4.2-15.4,6-9.2z"/>
      </g>
      <g id="g918" fill="#CCC">
       <path id="path920" d="m-32.8,334.6s5-5.4,6.4-10.4c0,0,3.6-15.8-2.8-7.2,0,0,0.2,8-8,15.4,0,0,4.8-2.4,4.4,2.2z"/>
      </g>
      <g id="g922" fill="#CCC">
       <path id="path924" d="m-38.6,329.6s3.4-17.4,4.2-18.2c0,0,1.8-3.4-1-0.2,0,0-8.8,19.2-12.8,25.8,0,0,8-9.2,9.6-7.4z"/>
      </g>
      <g id="g926" fill="#CCC">
       <path id="path928" d="m-44.4,313s11.6-22.4-10.2,3.4c0,0,11-9.8,10.2-3.4z"/>
      </g>
      <g id="g930" fill="#CCC">
       <path id="path932" d="m-59.8,298.4s4.8-18.8,7.4-18.6l1.6,1.6s-6,9.6-5.4,19.4c0,0-0.6-9.6-3.6-2.4z"/>
      </g>
      <g id="g934" fill="#CCC">
       <path id="path936" d="m270.5,287s-12-10-14.5-13.5c0,0,13.5,18.5,13.5,25.5,0,0,2.5-7.5,1-12z"/>
      </g>
      <g id="g938" fill="#CCC">
       <path id="path940" d="m276,265s-21-15-24.5-22.5c0,0,26.5,29.5,26.5,34,0,0,0.5-9-2-11.5z"/>
      </g>
      <g id="g942" fill="#CCC">
       <path id="path944" d="m293,111s-12-8-13.5-6c0,0,10.5,6.5,13,15,0,0-1.5-9,0.5-9z"/>
      </g>
      <g id="g946" fill="#CCC">
       <path id="path948" d="m301.5,191.5-17.5-12s19,17,19.5,21l-2-9z"/>
      </g>
      <g id="g950" stroke="#000">
       <path id="path952" d="m-89.25,169,22,4.75"/>
      </g>
      <g id="g954" stroke="#000">
       <path id="path956" d="m-39,331s-0.5-3.5-9.5,7"/>
      </g>
      <g id="g958" stroke="#000">
       <path id="path960" d="m-33.5,336s2-6.5-4.5-2"/>
      </g>
      <g id="g962" stroke="#000">
       <path id="path964" d="m20.5,344.5s1.5-11-10,2"/>
      </g>
     </g>
    </svg>

@adroitwhiz
Copy link
Contributor Author

A lot of these SVGs look too complex to be tested with the "deep equals" pattern that seems to have been used so far. Is SVG interpretation working well enough that resemble.js could be used instead?

@jonobr1
Copy link
Owner

jonobr1 commented Feb 14, 2021

Great points. I think resemble would work well for these and makes sense instead of doing the deep equals.

@jonobr1 jonobr1 added this to the v0.8.x milestone Jan 20, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants