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

SVG image is blurred when some sections have opacity<>1 #863

Closed
alonafe opened this issue Apr 9, 2021 · 1 comment · Fixed by #864 or #865
Closed

SVG image is blurred when some sections have opacity<>1 #863

alonafe opened this issue Apr 9, 2021 · 1 comment · Fixed by #864 or #865

Comments

@alonafe
Copy link

alonafe commented Apr 9, 2021

Description

We want to render SVG files. Some of those SVGs contain sections where the css property opacity is set to a value that is not 1 (e.g. 0.xx). Those sections do not get drawn as expected (see the below images for expected and actual outcomes).
If you change all opacities in the below SVG to 1, everything gets rendered correctly.
Code in use to rendor the svg into bitmap:

var svgAsString = ""; // See SVG below
var svgDoc = SvgDocument.FromSvg<SvgDocument>(svgAsString);
svgDoc.Width = 450;
svgDoc.Height = 650;
var bitmap = new Bitmap(svgDoc.Draw());

Expected result:
expected_svg
Actual result:
current_outcome_svg

Used Versions

WebApplication with .NET 4.8
SVG version 3.1.1
We can not use the SVG version 3.2.3 because the application doesn't start (I will open an other issue for that)

The SVG

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="75mm" height="110mm" viewBox="0 0 75 110" version="1.1" id="svg8" inkscape:version="1.0.2 (e86c8708, 2021-01-15)" sodipodi:docname="TireLabel.svg">
  <title id="title1174">EU Tirelabel</title>
  <defs id="defs2">
    <rect x="-78.603213" y="100.67809" width="77.87451" height="20.189688" id="rect49766"/>
    <rect x="84.447464" y="81.849075" width="35.98761" height="24.684643" id="rect6518"/>
    <linearGradient id="linearGradient5623" osb:paint="solid">
      <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop5621"/>
    </linearGradient>
    <linearGradient id="linearGradient5466" osb:paint="solid">
      <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop5464"/>
    </linearGradient>
    <marker style="overflow:visible" id="Arrow1Lstart" refX="0" refY="0" orient="auto" inkscape:stockid="Arrow1Lstart" inkscape:isstock="true">
      <path transform="matrix(0.8,0,0,0.8,10,0)" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" d="M 0,0 5,-5 -12.5,0 5,5 Z" id="path4833"/>
    </marker>
    <linearGradient id="linearGradient3273" osb:paint="solid">
      <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop3271"/>
    </linearGradient>
    <linearGradient id="linearGradient1267" osb:paint="solid">
      <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop1265"/>
    </linearGradient>
    <g id="s">
      <g id="c">
        <path id="t" d="M 0,0 V 1 H 0.5 Z" transform="rotate(18,3.1568758,-0.5)"/>
        <use xlink:href="#t" transform="scale(-1,1)" id="use1060" x="0" y="0" width="100%" height="100%"/>
      </g>
      <g id="a">
        <use xlink:href="#c" transform="rotate(72)" id="use1063" x="0" y="0" width="100%" height="100%"/>
        <use xlink:href="#c" transform="rotate(144)" id="use1065" x="0" y="0" width="100%" height="100%"/>
      </g>
      <use xlink:href="#a" transform="scale(-1,1)" id="use1068" x="0" y="0" width="100%" height="100%"/>
    </g>
    <clipPath id="clipPath2159" clipPathUnits="userSpaceOnUse">
      <path id="path2157" d="m 148.21,11.424 h 8.891 l -0.687,14.564 z"/>
    </clipPath>
    <clipPath id="clipPath2171" clipPathUnits="userSpaceOnUse">
      <path id="path2169" d="m 148.21,11.424 h 10.501 l -0.773,16.398 -0.261,0.408 z"/>
    </clipPath>
    <clipPath id="clipPath2183" clipPathUnits="userSpaceOnUse">
      <path id="path2181" d="m 148.21,11.424 h 12.11 l -0.645,13.675 -1.998,3.131 z"/>
    </clipPath>
    <clipPath id="clipPath2195" clipPathUnits="userSpaceOnUse">
      <path id="path2193" d="m 148.21,11.424 h 13.721 l -0.778,16.486 -0.031,0.107 -1.248,-3.229 -2.197,3.442 z"/>
    </clipPath>
    <clipPath id="clipPath2207" clipPathUnits="userSpaceOnUse">
      <path id="path2205" d="m 148.21,11.424 h 15.33 l -0.47,9.968 -1.948,6.625 -1.248,-3.229 -2.197,3.442 z"/>
    </clipPath>
    <clipPath id="clipPath2219" clipPathUnits="userSpaceOnUse">
      <path id="path2217" d="m 148.21,11.424 h 16.94 l -0.544,11.539 -0.934,-3.619 -2.55,8.673 -1.248,-3.229 -2.197,3.442 z"/>
    </clipPath>
    <clipPath id="clipPath2231" clipPathUnits="userSpaceOnUse">
      <path id="path2229" d="m 148.21,11.424 h 18.549 l -0.674,14.293 -0.542,0.883 -1.871,-7.256 -2.55,8.673 -1.248,-3.229 -2.197,3.442 z"/>
    </clipPath>
    <clipPath id="clipPath2243" clipPathUnits="userSpaceOnUse">
      <path id="path2241" d="m 148.21,11.424 h 20.159 l -0.689,14.6 -0.606,-1.918 -1.531,2.494 -1.871,-7.256 -2.55,8.673 -1.248,-3.229 -2.197,3.442 z"/>
    </clipPath>
    <clipPath id="clipPath2255" clipPathUnits="userSpaceOnUse">
      <path id="path2253" d="m 167.074,24.106 -1.531,2.494 -1.871,-7.256 -2.55,8.673 -1.248,-3.229 -2.197,3.442 -9.467,-16.806 h 21.769 l -0.898,19.033 z"/>
    </clipPath>
    <clipPath id="clipPath2267" clipPathUnits="userSpaceOnUse">
      <path id="path2265" d="m 167.074,24.106 -1.531,2.494 -1.871,-7.256 -2.55,8.673 -1.248,-3.229 -2.197,3.442 -9.467,-16.806 h 23.378 l -0.789,16.724 -1.57,2.775 z"/>
    </clipPath>
    <clipPath id="clipPath2279" clipPathUnits="userSpaceOnUse">
      <path id="path2277" d="m 167.074,24.106 -1.531,2.494 -1.871,-7.256 -2.55,8.673 -1.248,-3.229 -2.197,3.442 -9.467,-16.806 h 24.988 l -0.642,13.621 -3.327,5.878 z"/>
    </clipPath>
    <clipPath id="clipPath2291" clipPathUnits="userSpaceOnUse">
      <path id="path2289" d="m 167.074,24.106 -1.531,2.494 -1.871,-7.256 -2.55,8.673 -1.248,-3.229 -2.197,3.442 -9.467,-16.806 h 26.598 l -0.496,10.519 -5.083,8.98 z"/>
    </clipPath>
    <clipPath id="clipPath2303" clipPathUnits="userSpaceOnUse">
      <path id="path2301" d="m 167.074,24.106 -1.531,2.494 -1.871,-7.256 -2.55,8.673 -1.248,-3.229 -2.197,3.442 -9.467,-16.806 h 28.208 l -0.35,7.416 -6.839,12.083 z"/>
    </clipPath>
    <clipPath id="clipPath2315" clipPathUnits="userSpaceOnUse">
      <path id="path2313" d="m 167.074,24.106 -1.531,2.494 -1.871,-7.256 -2.55,8.673 -1.248,-3.229 -2.197,3.442 -9.467,-16.806 h 29.817 l -0.203,4.314 -8.595,15.185 z"/>
    </clipPath>
    <clipPath id="clipPath2327" clipPathUnits="userSpaceOnUse">
      <path id="path2325" d="m 167.074,24.106 -1.531,2.494 -1.871,-7.256 -2.55,8.673 -1.248,-3.229 -2.197,3.442 -9.467,-16.806 h 31.427 l -0.057,1.211 -10.351,18.288 z"/>
    </clipPath>
    <clipPath id="clipPath2339" clipPathUnits="userSpaceOnUse">
      <path id="path2337" d="m 167.074,24.106 -1.531,2.494 -1.871,-7.256 -2.55,8.673 -1.248,-3.229 -2.197,3.442 -9.305,-16.52 0.013,-0.286 h 31.881 l -11.037,19.499 z"/>
    </clipPath>
    <clipPath id="clipPath2351" clipPathUnits="userSpaceOnUse">
      <path id="path2349" d="m 167.074,24.106 -1.531,2.494 -1.871,-7.256 -2.55,8.673 -1.248,-3.229 -2.197,3.442 -7.82,-13.883 0.138,-2.923 h 30.271 l -11.037,19.499 z"/>
    </clipPath>
    <clipPath id="clipPath2363" clipPathUnits="userSpaceOnUse">
      <path id="path2361" d="m 167.074,24.106 -1.531,2.494 -1.871,-7.256 -2.55,8.673 -1.248,-3.229 -2.197,3.442 -6.335,-11.246 0.262,-5.56 h 28.662 l -11.037,19.499 z"/>
    </clipPath>
  </defs>
  <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="1.7233168" inkscape:cx="174.95819" inkscape:cy="215.35438" inkscape:document-units="mm" inkscape:current-layer="layer1" inkscape:document-rotation="0" showgrid="false" showguides="true" inkscape:guide-bbox="true" inkscape:window-width="1920" inkscape:window-height="1080" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="0" inkscape:snap-text-baseline="false" inkscape:snap-center="true" inkscape:snap-smooth-nodes="false" inkscape:snap-global="true" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="false" inkscape:bbox-nodes="true"/>
  <metadata id="metadata5">
    <rdf:RDF>
      <cc:Work rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
        <dc:title>EU Tirelabel</dc:title>
        <dc:description>REGULATION (EU) 2020/740</dc:description>
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g inkscape:label="Contour" inkscape:groupmode="layer" id="layer1" style="display:inline;opacity:1">
    <rect fill="#ffffff" height="99.820068%" width="95.86412%" id="rect27114" x="1.3229166" y="0" style="stroke-width:0.352096" inkscape:label="background"/>
    <rect style="display:inline;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.27;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect10" width="75" height="110" x="0.1348785" y="0.1348785" inkscape:label="Label"/>
    <g id="g49067" transform="translate(-2.6458334,4.1333335)" sodipodi:insensitive="true" inkscape:label="FuelScale2">
      <path id="polygon4911" style="fill:#ed1c24;stroke-width:0.352095" d="M 21.684649,73.582174 H 5.6925028 v 6.432772 H 21.684649 l 2.908303,-3.214626 z" class="cls-19"/>
      <path id="polygon4913" style="fill:none;stroke:#231f20;stroke-width:0.0528142px;stroke-miterlimit:10" d="M 21.684649,73.582174 H 5.6925028 v 6.432772 H 21.684649 l 2.908303,-3.214626 z" class="cls-8"/>
      <path id="polygon4915" style="fill:#fdb913;stroke-width:0.352095" d="M 19.702355,65.607226 H 5.6925028 v 6.436293 H 19.702355 l 2.894219,-3.218146 z" class="cls-20"/>
      <path id="polygon4917" style="fill:none;stroke:#231f20;stroke-width:0.0528142px;stroke-miterlimit:10" d="M 19.702355,65.607226 H 5.6925028 v 6.436293 H 19.702355 l 2.894219,-3.218146 z" class="cls-8"/>
      <path id="polygon4919" style="fill:#fff200;stroke-width:0.352095" d="M 17.579223,57.614674 H 5.6925028 v 6.432772 H 17.579223 l 3.020974,-3.214625 z" class="cls-21"/>
      <path id="polygon4921" style="fill:none;stroke:#231f20;stroke-width:0.0528142px;stroke-miterlimit:10" d="M 17.579223,57.614674 H 5.6925028 v 6.432772 H 17.579223 l 3.020974,-3.214625 z" class="cls-8"/>
      <path id="polygon4923" style="fill:#9aca3c;stroke-width:0.352095" d="M 15.603971,49.646769 H 5.6925028 v 6.436293 h 9.9114682 l 2.999848,-3.218147 z" class="cls-22"/>
      <path id="polygon4925" style="fill:none;stroke:#231f20;stroke-width:0.0528142px;stroke-miterlimit:10" d="M 15.603971,49.646769 H 5.6925028 v 6.436293 h 9.9114682 l 2.999848,-3.218147 z" class="cls-8"/>
      <path id="polygon4927" style="fill:#00a651;stroke-width:0.352095" d="M 13.537175,41.643654 H 5.6925028 v 6.436293 h 7.8446722 l 3.070267,-3.218146 z" class="cls-23"/>
      <path id="polygon4929" style="fill:none;stroke:#231f20;stroke-width:0.0528142px;stroke-miterlimit:10" d="M 13.537175,41.643654 H 5.6925028 v 6.436293 h 7.8446722 l 3.070267,-3.218146 z" class="cls-8"/>
      <g aria-label="A" transform="matrix(0.33954793,0,0,0.3651053,4.059783,-3.3013987)" id="text4931" style="font-weight:700;font-size:14.9959px;font-family:Calibri-Bold, Calibri;fill:#ffffff;stroke-width:0.964365" class="cls-13">
        <path d="m 18.289514,135.95265 q 0.08787,0.2636 0.109834,0.41737 0.02197,0.15376 -0.05858,0.23431 -0.08054,0.0732 -0.285566,0.0879 -0.205023,0.022 -0.563811,0.022 -0.373433,0 -0.585777,-0.0146 -0.205023,-0.007 -0.314856,-0.0366 -0.109833,-0.0366 -0.153766,-0.0952 -0.04393,-0.0586 -0.07322,-0.15377 l -0.637032,-1.90378 h -3.558598 l -0.600422,1.85252 q -0.02929,0.10251 -0.08054,0.17574 -0.04393,0.0659 -0.153767,0.10983 -0.102511,0.0366 -0.30021,0.0513 -0.190378,0.0146 -0.505233,0.0146 -0.336822,0 -0.5272,-0.022 -0.1903776,-0.022 -0.2635998,-0.10251 -0.073222,-0.0879 -0.051255,-0.24163 0.021967,-0.15377 0.1098332,-0.41004 l 2.9215646,-8.40591 q 0.04393,-0.12448 0.102511,-0.1977 0.05858,-0.0805 0.183056,-0.11715 0.1318,-0.0439 0.358789,-0.0513 0.226988,-0.0146 0.600421,-0.0146 0.432011,0 0.688289,0.0146 0.256277,0.007 0.395399,0.0513 0.146445,0.0366 0.205022,0.11715 0.0659,0.0805 0.109834,0.21967 z m -4.349396,-6.94878 h -0.0073 l -1.339965,4.02722 h 2.687253 z" style="font-weight:700;font-size:14.9959px;font-family:Calibri-Bold, Calibri;fill:#ffffff;stroke-width:0.964365" id="path405"/>
      </g>
      <g aria-label="A" transform="matrix(0.33954793,0,0,0.3651053,4.059783,-3.3013987)" id="text4933" style="font-weight:700;font-size:14.9959px;font-family:Calibri-Bold, Calibri;fill:none;stroke:#231f20;stroke-width:0.10608px;stroke-miterlimit:10" class="cls-14">
        <path d="m 18.289514,135.95265 q 0.08787,0.2636 0.109834,0.41737 0.02197,0.15376 -0.05858,0.23431 -0.08054,0.0732 -0.285566,0.0879 -0.205023,0.022 -0.563811,0.022 -0.373433,0 -0.585777,-0.0146 -0.205023,-0.007 -0.314856,-0.0366 -0.109833,-0.0366 -0.153766,-0.0952 -0.04393,-0.0586 -0.07322,-0.15377 l -0.637032,-1.90378 h -3.558598 l -0.600422,1.85252 q -0.02929,0.10251 -0.08054,0.17574 -0.04393,0.0659 -0.153767,0.10983 -0.102511,0.0366 -0.30021,0.0513 -0.190378,0.0146 -0.505233,0.0146 -0.336822,0 -0.5272,-0.022 -0.1903776,-0.022 -0.2635998,-0.10251 -0.073222,-0.0879 -0.051255,-0.24163 0.021967,-0.15377 0.1098332,-0.41004 l 2.9215646,-8.40591 q 0.04393,-0.12448 0.102511,-0.1977 0.05858,-0.0805 0.183056,-0.11715 0.1318,-0.0439 0.358789,-0.0513 0.226988,-0.0146 0.600421,-0.0146 0.432011,0 0.688289,0.0146 0.256277,0.007 0.395399,0.0513 0.146445,0.0366 0.205022,0.11715 0.0659,0.0805 0.109834,0.21967 z m -4.349396,-6.94878 h -0.0073 l -1.339965,4.02722 h 2.687253 z" style="font-weight:700;font-size:14.9959px;font-family:Calibri-Bold, Calibri;fill:none;stroke:#231f20;stroke-width:0.10608px;stroke-miterlimit:10" id="path408"/>
      </g>
      <g aria-label="B" transform="matrix(0.33771746,0,0,0.36708422,4.059783,-3.3013987)" id="text4935" style="font-weight:700;font-size:15.0589px;font-family:Calibri-Bold, Calibri;fill:#ffffff;stroke-width:0.959166" class="cls-15">
        <path d="m 17.536064,155.56337 q 0,0.50735 -0.139706,0.91912 -0.139707,0.41176 -0.389708,0.72794 -0.242649,0.31618 -0.588239,0.54412 -0.338237,0.22795 -0.750003,0.375 -0.411767,0.14706 -0.882358,0.22059 -0.463237,0.0662 -1.03677,0.0662 h -2.529424 q -0.242649,0 -0.411767,-0.13971 -0.161766,-0.14706 -0.161766,-0.47059 v -8.29416 q 0,-0.32353 0.161766,-0.46323 0.169118,-0.14706 0.411767,-0.14706 h 2.389718 q 0.875004,0 1.477948,0.14706 0.610297,0.14706 1.022064,0.44853 0.41912,0.29412 0.639709,0.75 0.22059,0.45589 0.22059,1.07354 0,0.34559 -0.08824,0.65441 -0.08824,0.30147 -0.257354,0.55148 -0.169119,0.25 -0.41912,0.44117 -0.242648,0.19118 -0.558826,0.30883 0.404413,0.0735 0.74265,0.25735 0.34559,0.18383 0.595592,0.47795 0.257354,0.28676 0.404414,0.67647 0.147059,0.38971 0.147059,0.87501 z m -2.500013,-4.00738 q 0,-0.28676 -0.08824,-0.51471 -0.08824,-0.22794 -0.264708,-0.375 -0.176471,-0.15441 -0.448531,-0.23529 -0.264707,-0.0809 -0.713239,-0.0809 h -0.977946 v 2.4706 h 1.080888 q 0.419119,0 0.669121,-0.0956 0.250001,-0.10295 0.411766,-0.27206 0.169119,-0.17648 0.250002,-0.40442 0.08088,-0.23529 0.08088,-0.49265 z m 0.49265,4.07355 q 0,-0.33088 -0.110295,-0.58824 -0.110294,-0.2647 -0.323531,-0.44118 -0.213236,-0.17647 -0.54412,-0.27206 -0.330884,-0.0956 -0.860299,-0.0956 h -1.147064 v 2.70589 h 1.397066 q 0.404413,0 0.676474,-0.0809 0.279413,-0.0882 0.477943,-0.25 0.205884,-0.16912 0.316178,-0.41177 0.117648,-0.25 0.117648,-0.56618 z" style="font-weight:700;font-size:15.0589px;font-family:Calibri-Bold, Calibri;fill:#ffffff;stroke-width:0.959166" id="path413"/>
      </g>
      <g aria-label="B" transform="matrix(0.33771746,0,0,0.36708422,4.059783,-3.3013987)" id="text4937" style="font-weight:700;font-size:15.0589px;font-family:Calibri-Bold, Calibri;fill:none;stroke:#231f20;stroke-width:0.105508px;stroke-miterlimit:10" class="cls-16">
        <path d="m 17.536064,155.56337 q 0,0.50735 -0.139706,0.91912 -0.139707,0.41176 -0.389708,0.72794 -0.242649,0.31618 -0.588239,0.54412 -0.338237,0.22795 -0.750003,0.375 -0.411767,0.14706 -0.882358,0.22059 -0.463237,0.0662 -1.03677,0.0662 h -2.529424 q -0.242649,0 -0.411767,-0.13971 -0.161766,-0.14706 -0.161766,-0.47059 v -8.29416 q 0,-0.32353 0.161766,-0.46323 0.169118,-0.14706 0.411767,-0.14706 h 2.389718 q 0.875004,0 1.477948,0.14706 0.610297,0.14706 1.022064,0.44853 0.41912,0.29412 0.639709,0.75 0.22059,0.45589 0.22059,1.07354 0,0.34559 -0.08824,0.65441 -0.08824,0.30147 -0.257354,0.55148 -0.169119,0.25 -0.41912,0.44117 -0.242648,0.19118 -0.558826,0.30883 0.404413,0.0735 0.74265,0.25735 0.34559,0.18383 0.595592,0.47795 0.257354,0.28676 0.404414,0.67647 0.147059,0.38971 0.147059,0.87501 z m -2.500013,-4.00738 q 0,-0.28676 -0.08824,-0.51471 -0.08824,-0.22794 -0.264708,-0.375 -0.176471,-0.15441 -0.448531,-0.23529 -0.264707,-0.0809 -0.713239,-0.0809 h -0.977946 v 2.4706 h 1.080888 q 0.419119,0 0.669121,-0.0956 0.250001,-0.10295 0.411766,-0.27206 0.169119,-0.17648 0.250002,-0.40442 0.08088,-0.23529 0.08088,-0.49265 z m 0.49265,4.07355 q 0,-0.33088 -0.110295,-0.58824 -0.110294,-0.2647 -0.323531,-0.44118 -0.213236,-0.17647 -0.54412,-0.27206 -0.330884,-0.0956 -0.860299,-0.0956 h -1.147064 v 2.70589 h 1.397066 q 0.404413,0 0.676474,-0.0809 0.279413,-0.0882 0.477943,-0.25 0.205884,-0.16912 0.316178,-0.41177 0.117648,-0.25 0.117648,-0.56618 z" style="font-weight:700;font-size:15.0589px;font-family:Calibri-Bold, Calibri;fill:none;stroke:#231f20;stroke-width:0.105508px;stroke-miterlimit:10" id="path416"/>
      </g>
      <g aria-label="C" transform="matrix(0.34317954,0,0,0.36124166,4.059783,-3.3013987)" id="text4939" style="font-weight:700;font-size:14.8346px;font-family:Calibri-Bold, Calibri;fill:#ffffff;stroke-width:0.974679" class="cls-17">
        <path d="m 17.166024,181.42081 q 0,0.18109 -0.01449,0.31147 -0.0072,0.12314 -0.02897,0.21731 -0.02173,0.0869 -0.05795,0.15211 -0.03622,0.0652 -0.115896,0.15211 -0.07968,0.0797 -0.311468,0.21006 -0.224548,0.13038 -0.557747,0.25352 -0.325955,0.1159 -0.753319,0.19557 -0.420121,0.0797 -0.912676,0.0797 -0.96338,0 -1.738429,-0.29698 -0.77505,-0.29698 -1.31831,-0.8837 -0.543259,-0.59396 -0.832997,-1.47767 -0.289739,-0.8837 -0.289739,-2.05714 0,-1.19517 0.318713,-2.12233 0.318712,-0.92716 0.890945,-1.55734 0.572233,-0.63018 1.369013,-0.95614 0.804024,-0.32596 1.767404,-0.32596 0.391146,0 0.753319,0.0652 0.362173,0.0652 0.666398,0.17384 0.311469,0.10141 0.557747,0.23903 0.246277,0.13763 0.340442,0.23904 0.101408,0.0942 0.137626,0.15935 0.03622,0.0652 0.05795,0.1666 0.02173,0.10141 0.02897,0.23904 0.01449,0.13762 0.01449,0.34044 0,0.2173 -0.01449,0.36941 -0.01449,0.15212 -0.0507,0.24628 -0.03622,0.0942 -0.08692,0.13763 -0.05071,0.0435 -0.115896,0.0435 -0.108652,0 -0.275251,-0.12314 -0.1666,-0.13038 -0.434608,-0.28249 -0.260764,-0.15936 -0.63018,-0.2825 -0.362173,-0.13038 -0.869215,-0.13038 -0.557746,0 -0.999597,0.23179 -0.434608,0.22455 -0.746076,0.65191 -0.304226,0.42012 -0.463582,1.02133 -0.159356,0.6012 -0.159356,1.35452 0,0.82576 0.1666,1.43421 0.173843,0.60121 0.485311,0.99235 0.318713,0.39115 0.760563,0.58672 0.449095,0.18833 1.006841,0.18833 0.507042,0 0.876458,-0.11589 0.369417,-0.12314 0.630181,-0.26801 0.268008,-0.14487 0.434608,-0.26077 0.173843,-0.11589 0.268007,-0.11589 0.07243,0 0.115896,0.029 0.04346,0.029 0.07243,0.1159 0.02897,0.0869 0.04346,0.24628 0.01449,0.15211 0.01449,0.41287 z" style="font-weight:700;font-size:14.8346px;font-family:Calibri-Bold, Calibri;fill:#ffffff;stroke-width:0.974679" id="path421"/>
      </g>
      <g aria-label="C" transform="matrix(0.34317954,0,0,0.36124166,4.059783,-3.3013987)" id="text4941" style="font-weight:700;font-size:14.8346px;font-family:Calibri-Bold, Calibri;fill:none;stroke:#231f20;stroke-width:0.107215px;stroke-miterlimit:10" class="cls-18">
        <path d="m 17.166024,181.42081 q 0,0.18109 -0.01449,0.31147 -0.0072,0.12314 -0.02897,0.21731 -0.02173,0.0869 -0.05795,0.15211 -0.03622,0.0652 -0.115896,0.15211 -0.07968,0.0797 -0.311468,0.21006 -0.224548,0.13038 -0.557747,0.25352 -0.325955,0.1159 -0.753319,0.19557 -0.420121,0.0797 -0.912676,0.0797 -0.96338,0 -1.738429,-0.29698 -0.77505,-0.29698 -1.31831,-0.8837 -0.543259,-0.59396 -0.832997,-1.47767 -0.289739,-0.8837 -0.289739,-2.05714 0,-1.19517 0.318713,-2.12233 0.318712,-0.92716 0.890945,-1.55734 0.572233,-0.63018 1.369013,-0.95614 0.804024,-0.32596 1.767404,-0.32596 0.391146,0 0.753319,0.0652 0.362173,0.0652 0.666398,0.17384 0.311469,0.10141 0.557747,0.23903 0.246277,0.13763 0.340442,0.23904 0.101408,0.0942 0.137626,0.15935 0.03622,0.0652 0.05795,0.1666 0.02173,0.10141 0.02897,0.23904 0.01449,0.13762 0.01449,0.34044 0,0.2173 -0.01449,0.36941 -0.01449,0.15212 -0.0507,0.24628 -0.03622,0.0942 -0.08692,0.13763 -0.05071,0.0435 -0.115896,0.0435 -0.108652,0 -0.275251,-0.12314 -0.1666,-0.13038 -0.434608,-0.28249 -0.260764,-0.15936 -0.63018,-0.2825 -0.362173,-0.13038 -0.869215,-0.13038 -0.557746,0 -0.999597,0.23179 -0.434608,0.22455 -0.746076,0.65191 -0.304226,0.42012 -0.463582,1.02133 -0.159356,0.6012 -0.159356,1.35452 0,0.82576 0.1666,1.43421 0.173843,0.60121 0.485311,0.99235 0.318713,0.39115 0.760563,0.58672 0.449095,0.18833 1.006841,0.18833 0.507042,0 0.876458,-0.11589 0.369417,-0.12314 0.630181,-0.26801 0.268008,-0.14487 0.434608,-0.26077 0.173843,-0.11589 0.268007,-0.11589 0.07243,0 0.115896,0.029 0.04346,0.029 0.07243,0.1159 0.02897,0.0869 0.04346,0.24628 0.01449,0.15211 0.01449,0.41287 z" style="font-weight:700;font-size:14.8346px;font-family:Calibri-Bold, Calibri;fill:none;stroke:#231f20;stroke-width:0.107215px;stroke-miterlimit:10" id="path424"/>
      </g>
      <g aria-label="D" transform="matrix(0.33771746,0,0,0.36708422,4.059783,-3.3013987)" id="text4943" style="font-weight:700;font-size:15.0589px;font-family:Calibri-Bold, Calibri;fill:#ffffff;stroke-width:0.959166" class="cls-15">
        <path d="m 17.862677,196.31724 q 0,1.30883 -0.34559,2.24266 -0.338237,0.92648 -0.977946,1.51471 -0.639709,0.58824 -1.558831,0.86765 -0.91177,0.27206 -2.176482,0.27206 h -2.27207 q -0.242649,0 -0.411767,-0.1397 -0.1617657,-0.14706 -0.1617657,-0.47059 v -8.29416 q 0,-0.32353 0.1617657,-0.46324 0.169118,-0.14706 0.411767,-0.14706 h 2.441189 q 1.272065,0 2.154422,0.30147 0.889711,0.29412 1.492655,0.88236 0.610297,0.58089 0.926475,1.44118 0.316178,0.8603 0.316178,1.99266 z m -2.00001,0.0662 q 0,-0.67648 -0.161765,-1.25736 -0.154413,-0.58089 -0.507356,-1.00736 -0.34559,-0.42647 -0.897063,-0.66177 -0.544121,-0.24265 -1.433831,-0.24265 h -0.977946 v 6.47063 h 1.007358 q 0.794121,0 1.338242,-0.20589 0.54412,-0.20588 0.904416,-0.61765 0.367649,-0.41912 0.544121,-1.03677 0.183824,-0.61765 0.183824,-1.44118 z" style="font-weight:700;font-size:15.0589px;font-family:Calibri-Bold, Calibri;fill:#ffffff;stroke-width:0.959166" id="path429"/>
      </g>
      <g aria-label="D" transform="matrix(0.33771746,0,0,0.36708422,4.059783,-3.3013987)" id="text4945" style="font-weight:700;font-size:15.0589px;font-family:Calibri-Bold, Calibri;fill:none;stroke:#231f20;stroke-width:0.105508px;stroke-miterlimit:10" class="cls-16">
        <path d="m 17.862677,196.31724 q 0,1.30883 -0.34559,2.24266 -0.338237,0.92648 -0.977946,1.51471 -0.639709,0.58824 -1.558831,0.86765 -0.91177,0.27206 -2.176482,0.27206 h -2.27207 q -0.242649,0 -0.411767,-0.1397 -0.1617657,-0.14706 -0.1617657,-0.47059 v -8.29416 q 0,-0.32353 0.1617657,-0.46324 0.169118,-0.14706 0.411767,-0.14706 h 2.441189 q 1.272065,0 2.154422,0.30147 0.889711,0.29412 1.492655,0.88236 0.610297,0.58089 0.926475,1.44118 0.316178,0.8603 0.316178,1.99266 z m -2.00001,0.0662 q 0,-0.67648 -0.161765,-1.25736 -0.154413,-0.58089 -0.507356,-1.00736 -0.34559,-0.42647 -0.897063,-0.66177 -0.544121,-0.24265 -1.433831,-0.24265 h -0.977946 v 6.47063 h 1.007358 q 0.794121,0 1.338242,-0.20589 0.54412,-0.20588 0.904416,-0.61765 0.367649,-0.41912 0.544121,-1.03677 0.183824,-0.61765 0.183824,-1.44118 z" style="font-weight:700;font-size:15.0589px;font-family:Calibri-Bold, Calibri;fill:none;stroke:#231f20;stroke-width:0.105508px;stroke-miterlimit:10" id="path432"/>
      </g>
      <g aria-label="E" transform="matrix(0.33771746,0,0,0.36708422,4.059783,-3.3013987)" id="text4947" style="font-weight:700;font-size:15.0589px;font-family:Calibri-Bold, Calibri;fill:#ffffff;stroke-width:0.959166" class="cls-15">
        <path d="m 16.369463,222.80554 q 0,0.21324 -0.02206,0.3603 -0.01471,0.1397 -0.05147,0.22794 -0.03676,0.0882 -0.09559,0.13235 -0.05147,0.0368 -0.117648,0.0368 h -4.779436 q -0.242648,0 -0.411767,-0.13971 -0.161765,-0.14706 -0.161765,-0.47059 v -8.29416 q 0,-0.32353 0.161765,-0.46324 0.169119,-0.14706 0.411767,-0.14706 h 4.750024 q 0.06618,0 0.117648,0.0368 0.05147,0.0368 0.08824,0.13235 0.03676,0.0882 0.05147,0.2353 0.02206,0.1397 0.02206,0.36029 0,0.20589 -0.02206,0.35295 -0.01471,0.1397 -0.05147,0.22794 -0.03676,0.0882 -0.08824,0.13235 -0.05147,0.0368 -0.117648,0.0368 h -3.397076 v 2.32354 h 2.875015 q 0.06618,0 0.117647,0.0441 0.05882,0.0368 0.09559,0.125 0.03676,0.0809 0.05147,0.22794 0.02206,0.1397 0.02206,0.34559 0,0.21323 -0.02206,0.35294 -0.01471,0.13971 -0.05147,0.22794 -0.03677,0.0809 -0.09559,0.11765 -0.05147,0.0368 -0.117647,0.0368 h -2.875015 v 2.68383 h 3.426488 q 0.06618,0 0.117648,0.0441 0.05882,0.0368 0.09559,0.125 0.03676,0.0882 0.05147,0.2353 0.02206,0.1397 0.02206,0.35294 z" style="font-weight:700;font-size:15.0589px;font-family:Calibri-Bold, Calibri;fill:#ffffff;stroke-width:0.959166" id="path437"/>
      </g>
      <g aria-label="E" transform="matrix(0.33771746,0,0,0.36708422,4.059783,-3.3013987)" id="text4949" style="font-weight:700;font-size:15.0589px;font-family:Calibri-Bold, Calibri;fill:none;stroke:#231f20;stroke-width:0.105508px;stroke-miterlimit:10" class="cls-16">
        <path d="m 16.369463,222.80554 q 0,0.21324 -0.02206,0.3603 -0.01471,0.1397 -0.05147,0.22794 -0.03676,0.0882 -0.09559,0.13235 -0.05147,0.0368 -0.117648,0.0368 h -4.779436 q -0.242648,0 -0.411767,-0.13971 -0.161765,-0.14706 -0.161765,-0.47059 v -8.29416 q 0,-0.32353 0.161765,-0.46324 0.169119,-0.14706 0.411767,-0.14706 h 4.750024 q 0.06618,0 0.117648,0.0368 0.05147,0.0368 0.08824,0.13235 0.03676,0.0882 0.05147,0.2353 0.02206,0.1397 0.02206,0.36029 0,0.20589 -0.02206,0.35295 -0.01471,0.1397 -0.05147,0.22794 -0.03676,0.0882 -0.08824,0.13235 -0.05147,0.0368 -0.117648,0.0368 h -3.397076 v 2.32354 h 2.875015 q 0.06618,0 0.117647,0.0441 0.05882,0.0368 0.09559,0.125 0.03676,0.0809 0.05147,0.22794 0.02206,0.1397 0.02206,0.34559 0,0.21323 -0.02206,0.35294 -0.01471,0.13971 -0.05147,0.22794 -0.03677,0.0809 -0.09559,0.11765 -0.05147,0.0368 -0.117647,0.0368 h -2.875015 v 2.68383 h 3.426488 q 0.06618,0 0.117648,0.0441 0.05882,0.0368 0.09559,0.125 0.03676,0.0882 0.05147,0.2353 0.02206,0.1397 0.02206,0.35294 z" style="font-weight:700;font-size:15.0589px;font-family:Calibri-Bold, Calibri;fill:none;stroke:#231f20;stroke-width:0.105508px;stroke-miterlimit:10" id="path440"/>
      </g>
      <path id="path4973" d="M 24.378174,78.793176" class="cls-19" style="fill:#ed1c24;stroke-width:0.352095"/>
      <path id="path4975" d="M 24.378174,78.793176" class="cls-25" style="fill:none;stroke:#231f20;stroke-width:0.352095"/>
    </g>
    <g id="g49327" style="opacity:0.93" inkscape:label="WetGripScale2" transform="translate(-25.743894,10.795127)">
      <path id="polygon4871" style="fill:#abe1fa;stroke-width:0.352095" d="M 81.293394,66.920799 H 65.297728 v 6.432772 h 15.995666 l 2.908303,-3.214626 z" class="cls-7"/>
      <path id="polygon4873" style="fill:none;stroke:#231f20;stroke-width:0.0528142px;stroke-miterlimit:10" d="M 81.293394,66.920799 H 65.297728 v 6.432772 h 15.995666 l 2.908303,-3.214626 z" class="cls-8"/>
      <path id="polygon4875" style="fill:#75bee9;stroke-width:0.352095" d="M 79.311101,58.945852 H 65.297728 v 6.436293 h 14.013373 l 2.894219,-3.218147 z" class="cls-9"/>
      <path id="polygon4877" style="fill:none;stroke:#231f20;stroke-width:0.0528142px;stroke-miterlimit:10" d="M 79.311101,58.945852 H 65.297728 v 6.436293 h 14.013373 l 2.894219,-3.218147 z" class="cls-8"/>
      <path id="polygon4879" style="fill:#4ba6dd;stroke-width:0.352095" d="M 77.187969,50.956821 H 65.297728 v 6.432772 h 11.890241 l 3.020973,-3.218147 z" class="cls-10"/>
      <path id="polygon4881" style="fill:none;stroke:#231f20;stroke-width:0.0528142px;stroke-miterlimit:10" d="M 77.187969,50.956821 H 65.297728 v 6.432772 h 11.890241 l 3.020973,-3.218147 z" class="cls-8"/>
      <path id="polygon4883" style="fill:#0080c6;stroke-width:0.352095" d="m 75.212717,42.96779 h -9.914989 v 6.432772 h 9.914989 l 2.999848,-3.218147 z" class="cls-11"/>
      <path id="polygon4885" style="fill:none;stroke:#231f20;stroke-width:0.0528142px;stroke-miterlimit:10" d="m 75.212717,42.96779 h -9.914989 v 6.432772 h 9.914989 l 2.999848,-3.218147 z" class="cls-8"/>
      <path id="polygon4887" style="fill:#0066b3;stroke-width:0.352095" d="m 73.145921,34.98228 h -7.848193 v 6.436292 h 7.848193 l 3.070266,-3.218146 z" class="cls-12"/>
      <path id="polygon4889" style="fill:none;stroke:#231f20;stroke-width:0.0528142px;stroke-miterlimit:10" d="m 73.145921,34.98228 h -7.848193 v 6.436292 h 7.848193 l 3.070266,-3.218146 z" class="cls-8"/>
      <g aria-label="A" transform="matrix(0.33954793,0,0,0.3651053,27.170382,-9.9627734)" id="text4891" style="font-weight:700;font-size:14.9959px;font-family:Calibri-Bold, Calibri;fill:#ffffff;stroke-width:0.964365" class="cls-13">
        <path d="m 126.04953,135.95265 q 0.0879,0.2636 0.10983,0.41737 0.022,0.15376 -0.0586,0.23431 -0.0805,0.0732 -0.28556,0.0879 -0.20502,0.022 -0.56381,0.022 -0.37344,0 -0.58578,-0.0146 -0.20502,-0.007 -0.31486,-0.0366 -0.10983,-0.0366 -0.15376,-0.0952 -0.0439,-0.0586 -0.0732,-0.15377 l -0.63704,-1.90378 h -3.55859 l -0.60043,1.85252 q -0.0293,0.10251 -0.0805,0.17574 -0.0439,0.0659 -0.15377,0.10983 -0.10251,0.0366 -0.30021,0.0513 -0.19038,0.0146 -0.50523,0.0146 -0.33682,0 -0.5272,-0.022 -0.19038,-0.022 -0.2636,-0.10251 -0.0732,-0.0879 -0.0513,-0.24163 0.022,-0.15377 0.10984,-0.41004 l 2.92156,-8.40591 q 0.0439,-0.12448 0.10251,-0.1977 0.0586,-0.0805 0.18306,-0.11715 0.1318,-0.0439 0.35879,-0.0513 0.22699,-0.0146 0.60042,-0.0146 0.43201,0 0.68829,0.0146 0.25627,0.007 0.3954,0.0513 0.14644,0.0366 0.20502,0.11715 0.0659,0.0805 0.10983,0.21967 z m -4.3494,-6.94878 h -0.007 l -1.33997,4.02722 h 2.68726 z" style="font-weight:700;font-size:14.9959px;font-family:Calibri-Bold, Calibri;fill:#ffffff;stroke-width:0.964365" id="path445"/>
      </g>
      <g aria-label="A" transform="matrix(0.33954793,0,0,0.3651053,27.170382,-9.9627734)" id="text4893" style="font-weight:700;font-size:14.9959px;font-family:Calibri-Bold, Calibri;fill:none;stroke:#231f20;stroke-width:0.10608px;stroke-miterlimit:10" class="cls-14">
        <path d="m 126.04953,135.95265 q 0.0879,0.2636 0.10983,0.41737 0.022,0.15376 -0.0586,0.23431 -0.0805,0.0732 -0.28556,0.0879 -0.20502,0.022 -0.56381,0.022 -0.37344,0 -0.58578,-0.0146 -0.20502,-0.007 -0.31486,-0.0366 -0.10983,-0.0366 -0.15376,-0.0952 -0.0439,-0.0586 -0.0732,-0.15377 l -0.63704,-1.90378 h -3.55859 l -0.60043,1.85252 q -0.0293,0.10251 -0.0805,0.17574 -0.0439,0.0659 -0.15377,0.10983 -0.10251,0.0366 -0.30021,0.0513 -0.19038,0.0146 -0.50523,0.0146 -0.33682,0 -0.5272,-0.022 -0.19038,-0.022 -0.2636,-0.10251 -0.0732,-0.0879 -0.0513,-0.24163 0.022,-0.15377 0.10984,-0.41004 l 2.92156,-8.40591 q 0.0439,-0.12448 0.10251,-0.1977 0.0586,-0.0805 0.18306,-0.11715 0.1318,-0.0439 0.35879,-0.0513 0.22699,-0.0146 0.60042,-0.0146 0.43201,0 0.68829,0.0146 0.25627,0.007 0.3954,0.0513 0.14644,0.0366 0.20502,0.11715 0.0659,0.0805 0.10983,0.21967 z m -4.3494,-6.94878 h -0.007 l -1.33997,4.02722 h 2.68726 z" style="font-weight:700;font-size:14.9959px;font-family:Calibri-Bold, Calibri;fill:none;stroke:#231f20;stroke-width:0.10608px;stroke-miterlimit:10" id="path448"/>
      </g>
      <g aria-label="B" transform="matrix(0.33771746,0,0,0.36708422,27.170382,-9.9627734)" id="text4895" style="font-weight:700;font-size:15.0589px;font-family:Calibri-Bold, Calibri;fill:#ffffff;stroke-width:0.959166" class="cls-15">
        <path d="m 126.29718,154.88237 q 0,0.50735 -0.13971,0.91912 -0.13971,0.41176 -0.38971,0.72794 -0.24265,0.31618 -0.58824,0.54412 -0.33823,0.22795 -0.75,0.375 -0.41177,0.14706 -0.88236,0.22059 -0.46323,0.0662 -1.03677,0.0662 h -2.52942 q -0.24265,0 -0.41177,-0.13971 -0.16176,-0.14706 -0.16176,-0.47059 v -8.29416 q 0,-0.32353 0.16176,-0.46323 0.16912,-0.14706 0.41177,-0.14706 h 2.38972 q 0.875,0 1.47795,0.14706 0.61029,0.14706 1.02206,0.44853 0.41912,0.29412 0.63971,0.75 0.22059,0.45589 0.22059,1.07354 0,0.34559 -0.0882,0.65441 -0.0882,0.30147 -0.25735,0.55148 -0.16912,0.25 -0.41912,0.44117 -0.24265,0.19118 -0.55883,0.30883 0.40442,0.0735 0.74265,0.25735 0.34559,0.18383 0.59559,0.47795 0.25736,0.28676 0.40442,0.67647 0.14706,0.38971 0.14706,0.87501 z m -2.50002,-4.00738 q 0,-0.28676 -0.0882,-0.51471 -0.0882,-0.22794 -0.26471,-0.375 -0.17647,-0.15441 -0.44853,-0.23529 -0.26471,-0.0809 -0.71324,-0.0809 h -0.97795 v 2.4706 h 1.08089 q 0.41912,0 0.66912,-0.0956 0.25001,-0.10295 0.41177,-0.27206 0.16912,-0.17648 0.25,-0.40442 0.0809,-0.23529 0.0809,-0.49265 z m 0.49265,4.07355 q 0,-0.33088 -0.11029,-0.58824 -0.1103,-0.2647 -0.32353,-0.44117 -0.21324,-0.17648 -0.54412,-0.27206 -0.33089,-0.0956 -0.8603,-0.0956 h -1.14707 v 2.70589 h 1.39707 q 0.40441,0 0.67647,-0.0809 0.27942,-0.0882 0.47795,-0.25 0.20588,-0.16912 0.31618,-0.41177 0.11764,-0.25 0.11764,-0.56618 z" style="font-weight:700;font-size:15.0589px;font-family:Calibri-Bold, Calibri;fill:#ffffff;stroke-width:0.959166" id="path453"/>
      </g>
      <g aria-label="B" transform="matrix(0.33771746,0,0,0.36708422,27.170382,-9.9627734)" id="text4897" style="font-weight:700;font-size:15.0589px;font-family:Calibri-Bold, Calibri;fill:none;stroke:#231f20;stroke-width:0.105508px;stroke-miterlimit:10" class="cls-16">
        <path d="m 126.29718,154.88237 q 0,0.50735 -0.13971,0.91912 -0.13971,0.41176 -0.38971,0.72794 -0.24265,0.31618 -0.58824,0.54412 -0.33823,0.22795 -0.75,0.375 -0.41177,0.14706 -0.88236,0.22059 -0.46323,0.0662 -1.03677,0.0662 h -2.52942 q -0.24265,0 -0.41177,-0.13971 -0.16176,-0.14706 -0.16176,-0.47059 v -8.29416 q 0,-0.32353 0.16176,-0.46323 0.16912,-0.14706 0.41177,-0.14706 h 2.38972 q 0.875,0 1.47795,0.14706 0.61029,0.14706 1.02206,0.44853 0.41912,0.29412 0.63971,0.75 0.22059,0.45589 0.22059,1.07354 0,0.34559 -0.0882,0.65441 -0.0882,0.30147 -0.25735,0.55148 -0.16912,0.25 -0.41912,0.44117 -0.24265,0.19118 -0.55883,0.30883 0.40442,0.0735 0.74265,0.25735 0.34559,0.18383 0.59559,0.47795 0.25736,0.28676 0.40442,0.67647 0.14706,0.38971 0.14706,0.87501 z m -2.50002,-4.00738 q 0,-0.28676 -0.0882,-0.51471 -0.0882,-0.22794 -0.26471,-0.375 -0.17647,-0.15441 -0.44853,-0.23529 -0.26471,-0.0809 -0.71324,-0.0809 h -0.97795 v 2.4706 h 1.08089 q 0.41912,0 0.66912,-0.0956 0.25001,-0.10295 0.41177,-0.27206 0.16912,-0.17648 0.25,-0.40442 0.0809,-0.23529 0.0809,-0.49265 z m 0.49265,4.07355 q 0,-0.33088 -0.11029,-0.58824 -0.1103,-0.2647 -0.32353,-0.44117 -0.21324,-0.17648 -0.54412,-0.27206 -0.33089,-0.0956 -0.8603,-0.0956 h -1.14707 v 2.70589 h 1.39707 q 0.40441,0 0.67647,-0.0809 0.27942,-0.0882 0.47795,-0.25 0.20588,-0.16912 0.31618,-0.41177 0.11764,-0.25 0.11764,-0.56618 z" style="font-weight:700;font-size:15.0589px;font-family:Calibri-Bold, Calibri;fill:none;stroke:#231f20;stroke-width:0.105508px;stroke-miterlimit:10" id="path456"/>
      </g>
      <g aria-label="C" transform="matrix(0.34317954,0,0,0.36124166,27.170382,-9.9627734)" id="text4899" style="font-weight:700;font-size:14.8346px;font-family:Calibri-Bold, Calibri;fill:#ffffff;stroke-width:0.974679" class="cls-17">
        <path d="m 123.52919,181.42081 q 0,0.18109 -0.0145,0.31147 -0.007,0.12314 -0.029,0.21731 -0.0217,0.0869 -0.058,0.15211 -0.0362,0.0652 -0.11589,0.15211 -0.0797,0.0797 -0.31147,0.21006 -0.22455,0.13038 -0.55775,0.25352 -0.32595,0.1159 -0.75332,0.19557 -0.42012,0.0797 -0.91267,0.0797 -0.96338,0 -1.73843,-0.29698 -0.77505,-0.29698 -1.31831,-0.8837 -0.54326,-0.59396 -0.833,-1.47767 -0.28974,-0.8837 -0.28974,-2.05714 0,-1.19517 0.31872,-2.12233 0.31871,-0.92716 0.89094,-1.55734 0.57223,-0.63018 1.36901,-0.95614 0.80403,-0.32596 1.76741,-0.32596 0.39115,0 0.75332,0.0652 0.36217,0.0652 0.6664,0.17384 0.31146,0.10141 0.55774,0.23903 0.24628,0.13763 0.34044,0.23904 0.10141,0.0942 0.13763,0.15935 0.0362,0.0652 0.058,0.1666 0.0217,0.10141 0.029,0.23904 0.0145,0.13762 0.0145,0.34044 0,0.2173 -0.0145,0.36941 -0.0145,0.15212 -0.0507,0.24628 -0.0362,0.0942 -0.0869,0.13763 -0.0507,0.0435 -0.1159,0.0435 -0.10865,0 -0.27525,-0.12314 -0.1666,-0.13038 -0.43461,-0.28249 -0.26076,-0.15936 -0.63018,-0.2825 -0.36217,-0.13038 -0.86921,-0.13038 -0.55775,0 -0.9996,0.23179 -0.43461,0.22455 -0.74608,0.65191 -0.30422,0.42012 -0.46358,1.02133 -0.15935,0.6012 -0.15935,1.35452 0,0.82576 0.1666,1.43421 0.17384,0.60121 0.48531,0.99235 0.31871,0.39115 0.76056,0.58672 0.44909,0.18833 1.00684,0.18833 0.50704,0 0.87646,-0.11589 0.36942,-0.12314 0.63018,-0.26801 0.26801,-0.14487 0.43461,-0.26077 0.17384,-0.11589 0.26801,-0.11589 0.0724,0 0.11589,0.029 0.0435,0.029 0.0724,0.1159 0.029,0.0869 0.0435,0.24628 0.0145,0.15211 0.0145,0.41287 z" style="font-weight:700;font-size:14.8346px;font-family:Calibri-Bold, Calibri;fill:#ffffff;stroke-width:0.974679" id="path461"/>
      </g>
      <g aria-label="C" transform="matrix(0.34317954,0,0,0.36124166,27.170382,-9.9627734)" id="text4901" style="font-weight:700;font-size:14.8346px;font-family:Calibri-Bold, Calibri;fill:none;stroke:#231f20;stroke-width:0.107215px;stroke-miterlimit:10" class="cls-18">
        <path d="m 123.52919,181.42081 q 0,0.18109 -0.0145,0.31147 -0.007,0.12314 -0.029,0.21731 -0.0217,0.0869 -0.058,0.15211 -0.0362,0.0652 -0.11589,0.15211 -0.0797,0.0797 -0.31147,0.21006 -0.22455,0.13038 -0.55775,0.25352 -0.32595,0.1159 -0.75332,0.19557 -0.42012,0.0797 -0.91267,0.0797 -0.96338,0 -1.73843,-0.29698 -0.77505,-0.29698 -1.31831,-0.8837 -0.54326,-0.59396 -0.833,-1.47767 -0.28974,-0.8837 -0.28974,-2.05714 0,-1.19517 0.31872,-2.12233 0.31871,-0.92716 0.89094,-1.55734 0.57223,-0.63018 1.36901,-0.95614 0.80403,-0.32596 1.76741,-0.32596 0.39115,0 0.75332,0.0652 0.36217,0.0652 0.6664,0.17384 0.31146,0.10141 0.55774,0.23903 0.24628,0.13763 0.34044,0.23904 0.10141,0.0942 0.13763,0.15935 0.0362,0.0652 0.058,0.1666 0.0217,0.10141 0.029,0.23904 0.0145,0.13762 0.0145,0.34044 0,0.2173 -0.0145,0.36941 -0.0145,0.15212 -0.0507,0.24628 -0.0362,0.0942 -0.0869,0.13763 -0.0507,0.0435 -0.1159,0.0435 -0.10865,0 -0.27525,-0.12314 -0.1666,-0.13038 -0.43461,-0.28249 -0.26076,-0.15936 -0.63018,-0.2825 -0.36217,-0.13038 -0.86921,-0.13038 -0.55775,0 -0.9996,0.23179 -0.43461,0.22455 -0.74608,0.65191 -0.30422,0.42012 -0.46358,1.02133 -0.15935,0.6012 -0.15935,1.35452 0,0.82576 0.1666,1.43421 0.17384,0.60121 0.48531,0.99235 0.31871,0.39115 0.76056,0.58672 0.44909,0.18833 1.00684,0.18833 0.50704,0 0.87646,-0.11589 0.36942,-0.12314 0.63018,-0.26801 0.26801,-0.14487 0.43461,-0.26077 0.17384,-0.11589 0.26801,-0.11589 0.0724,0 0.11589,0.029 0.0435,0.029 0.0724,0.1159 0.029,0.0869 0.0435,0.24628 0.0145,0.15211 0.0145,0.41287 z" style="font-weight:700;font-size:14.8346px;font-family:Calibri-Bold, Calibri;fill:none;stroke:#231f20;stroke-width:0.107215px;stroke-miterlimit:10" id="path464"/>
      </g>
      <g aria-label="D" transform="matrix(0.33771746,0,0,0.36708422,27.170382,-9.9627734)" id="text4903" style="font-weight:700;font-size:15.0589px;font-family:Calibri-Bold, Calibri;fill:#ffffff;stroke-width:0.959166" class="cls-15">
        <path d="m 126.49868,196.67213 q 0,1.30883 -0.34559,2.24266 -0.33824,0.92647 -0.97795,1.51471 -0.63971,0.58824 -1.55883,0.86765 -0.91177,0.27206 -2.17648,0.27206 h -2.27207 q -0.24265,0 -0.41177,-0.1397 -0.16176,-0.14706 -0.16176,-0.47059 v -8.29416 q 0,-0.32353 0.16176,-0.46324 0.16912,-0.14706 0.41177,-0.14706 h 2.44119 q 1.27206,0 2.15442,0.30147 0.88971,0.29412 1.49266,0.88236 0.61029,0.58088 0.92647,1.44118 0.31618,0.8603 0.31618,1.99266 z m -2.00001,0.0662 q 0,-0.67648 -0.16177,-1.25736 -0.15441,-0.58089 -0.50735,-1.00736 -0.34559,-0.42647 -0.89707,-0.66177 -0.54412,-0.24265 -1.43383,-0.24265 h -0.97794 v 6.47062 h 1.00736 q 0.79412,0 1.33824,-0.20588 0.54412,-0.20588 0.90441,-0.61765 0.36765,-0.41912 0.54412,-1.03677 0.18383,-0.61765 0.18383,-1.44118 z" style="font-weight:700;font-size:15.0589px;font-family:Calibri-Bold, Calibri;fill:#ffffff;stroke-width:0.959166" id="path469"/>
      </g>
      <g aria-label="D" transform="matrix(0.33771746,0,0,0.36708422,27.170382,-9.9627734)" id="text4905" style="font-weight:700;font-size:15.0589px;font-family:Calibri-Bold, Calibri;fill:none;stroke:#231f20;stroke-width:0.105508px;stroke-miterlimit:10" class="cls-16">
        <path d="m 126.49868,196.67213 q 0,1.30883 -0.34559,2.24266 -0.33824,0.92647 -0.97795,1.51471 -0.63971,0.58824 -1.55883,0.86765 -0.91177,0.27206 -2.17648,0.27206 h -2.27207 q -0.24265,0 -0.41177,-0.1397 -0.16176,-0.14706 -0.16176,-0.47059 v -8.29416 q 0,-0.32353 0.16176,-0.46324 0.16912,-0.14706 0.41177,-0.14706 h 2.44119 q 1.27206,0 2.15442,0.30147 0.88971,0.29412 1.49266,0.88236 0.61029,0.58088 0.92647,1.44118 0.31618,0.8603 0.31618,1.99266 z m -2.00001,0.0662 q 0,-0.67648 -0.16177,-1.25736 -0.15441,-0.58089 -0.50735,-1.00736 -0.34559,-0.42647 -0.89707,-0.66177 -0.54412,-0.24265 -1.43383,-0.24265 h -0.97794 v 6.47062 h 1.00736 q 0.79412,0 1.33824,-0.20588 0.54412,-0.20588 0.90441,-0.61765 0.36765,-0.41912 0.54412,-1.03677 0.18383,-0.61765 0.18383,-1.44118 z" style="font-weight:700;font-size:15.0589px;font-family:Calibri-Bold, Calibri;fill:none;stroke:#231f20;stroke-width:0.105508px;stroke-miterlimit:10" id="path472"/>
      </g>
      <g aria-label="E" transform="matrix(0.33771746,0,0,0.36708422,27.170382,-9.9627734)" id="text4907" style="font-weight:700;font-size:15.0589px;font-family:Calibri-Bold, Calibri;fill:#ffffff;stroke-width:0.959166" class="cls-15">
        <path d="m 125.07845,222.48903 q 0,0.21323 -0.0221,0.36029 -0.0147,0.13971 -0.0515,0.22795 -0.0368,0.0882 -0.0956,0.13235 -0.0515,0.0368 -0.11764,0.0368 h -4.77944 q -0.24265,0 -0.41177,-0.1397 -0.16176,-0.14706 -0.16176,-0.47059 v -8.29416 q 0,-0.32353 0.16176,-0.46324 0.16912,-0.14706 0.41177,-0.14706 h 4.75002 q 0.0662,0 0.11765,0.0368 0.0515,0.0368 0.0882,0.13236 0.0368,0.0882 0.0515,0.23529 0.0221,0.13971 0.0221,0.3603 0,0.20588 -0.0221,0.35294 -0.0147,0.13971 -0.0515,0.22794 -0.0368,0.0882 -0.0882,0.13236 -0.0515,0.0368 -0.11765,0.0368 h -3.39707 V 217.57 h 2.87501 q 0.0662,0 0.11765,0.0441 0.0588,0.0368 0.0956,0.125 0.0368,0.0809 0.0515,0.22795 0.0221,0.1397 0.0221,0.34559 0,0.21323 -0.0221,0.35294 -0.0147,0.1397 -0.0515,0.22794 -0.0368,0.0809 -0.0956,0.11765 -0.0515,0.0368 -0.11765,0.0368 h -2.87501 v 2.68384 h 3.42649 q 0.0662,0 0.11764,0.0441 0.0588,0.0368 0.0956,0.125 0.0368,0.0882 0.0515,0.23529 0.0221,0.13971 0.0221,0.35295 z" style="font-weight:700;font-size:15.0589px;font-family:Calibri-Bold, Calibri;fill:#ffffff;stroke-width:0.959166" id="path477"/>
      </g>
      <g aria-label="E" transform="matrix(0.33771746,0,0,0.36708422,27.170382,-9.9627734)" id="text4909" style="font-weight:700;font-size:15.0589px;font-family:Calibri-Bold, Calibri;fill:none;stroke:#231f20;stroke-width:0.105508px;stroke-miterlimit:10" class="cls-16">
        <path d="m 125.07845,222.48903 q 0,0.21323 -0.0221,0.36029 -0.0147,0.13971 -0.0515,0.22795 -0.0368,0.0882 -0.0956,0.13235 -0.0515,0.0368 -0.11764,0.0368 h -4.77944 q -0.24265,0 -0.41177,-0.1397 -0.16176,-0.14706 -0.16176,-0.47059 v -8.29416 q 0,-0.32353 0.16176,-0.46324 0.16912,-0.14706 0.41177,-0.14706 h 4.75002 q 0.0662,0 0.11765,0.0368 0.0515,0.0368 0.0882,0.13236 0.0368,0.0882 0.0515,0.23529 0.0221,0.13971 0.0221,0.3603 0,0.20588 -0.0221,0.35294 -0.0147,0.13971 -0.0515,0.22794 -0.0368,0.0882 -0.0882,0.13236 -0.0515,0.0368 -0.11765,0.0368 h -3.39707 V 217.57 h 2.87501 q 0.0662,0 0.11765,0.0441 0.0588,0.0368 0.0956,0.125 0.0368,0.0809 0.0515,0.22795 0.0221,0.1397 0.0221,0.34559 0,0.21323 -0.0221,0.35294 -0.0147,0.1397 -0.0515,0.22794 -0.0368,0.0809 -0.0956,0.11765 -0.0515,0.0368 -0.11765,0.0368 h -2.87501 v 2.68384 h 3.42649 q 0.0662,0 0.11764,0.0441 0.0588,0.0368 0.0956,0.125 0.0368,0.0882 0.0515,0.23529 0.0221,0.13971 0.0221,0.35295 z" style="font-weight:700;font-size:15.0589px;font-family:Calibri-Bold, Calibri;fill:none;stroke:#231f20;stroke-width:0.105508px;stroke-miterlimit:10" id="path480"/>
      </g>
    </g>
    <g id="g6189" inkscape:label="WetGripMarker" transform="translate(4.3391069)">
      <g id="wetGripMarkerD" inkscape:label="wetGripMarkerE" transform="translate(0,7.90003)" style="display:none">
        <path id="rect1168-4-0-4-40" style="opacity:0.99;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.297925;stroke-opacity:1" d="m 67.159199,68.24397 -6.402801,3e-6 -2.426032,4.537153 2.426032,4.962844 6.402801,-4e-6 z" sodipodi:nodetypes="cccccc"/>
        <g aria-label="E" id="WetGripClass" style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:6.70278px;line-height:1.25;font-family:Calibri;-inkscape-font-specification:'Calibri, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;opacity:0.99;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.065;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" inkscape:label="WetGripClass">
          <path d="m 64.294998,74.45228 q 0,0.09491 -0.0098,0.160369 -0.0065,0.06218 -0.02291,0.101459 -0.01636,0.03927 -0.04255,0.05891 -0.02291,0.01636 -0.05237,0.01636 H 62.04001 q -0.108004,0 -0.183279,-0.06218 -0.072,-0.06546 -0.072,-0.209462 v -3.691765 q 0,-0.144005 0.072,-0.206189 0.07527,-0.06546 0.183279,-0.06546 h 2.114256 q 0.02945,0 0.05236,0.01636 0.02291,0.01636 0.03927,0.05891 0.01636,0.03927 0.02291,0.104731 0.0098,0.06218 0.0098,0.160369 0,0.09164 -0.0098,0.157097 -0.0065,0.06218 -0.02291,0.101458 -0.01636,0.03927 -0.03927,0.05891 -0.02291,0.01636 -0.05236,0.01636 h -1.512053 v 1.034218 h 1.279681 q 0.02945,0 0.05237,0.01964 0.02618,0.01636 0.04255,0.05564 0.01636,0.036 0.02291,0.101458 0.0098,0.06218 0.0098,0.153823 0,0.09491 -0.0098,0.157097 -0.0065,0.06218 -0.02291,0.101458 -0.01636,0.036 -0.04255,0.05236 -0.02291,0.01636 -0.05237,0.01636 h -1.279681 v 1.194588 h 1.525144 q 0.02945,0 0.05237,0.01964 0.02618,0.01636 0.04255,0.05564 0.01636,0.03927 0.02291,0.104731 0.0098,0.06218 0.0098,0.157096 z" id="path49158"/>
        </g>
      </g>
      <g id="g6648" inkscape:label="wetGripMarkerD" style="display:none">
        <path id="path6642" style="opacity:0.99;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.297925;stroke-opacity:1" d="m 67.159199,68.24397 -6.402801,3e-6 -2.426032,4.537153 2.426032,4.962844 6.402801,-4e-6 z" sodipodi:nodetypes="cccccc"/>
        <g aria-label="D" id="text6646" style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:6.70278px;line-height:1.25;font-family:Calibri;-inkscape-font-specification:'Calibri, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;opacity:0.99;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.065;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" inkscape:label="WetGripClass">
          <path d="m 65.303033,72.60967 q 0,0.582566 -0.153824,0.998217 -0.15055,0.412378 -0.435288,0.674205 -0.284737,0.261828 -0.693842,0.386196 -0.405832,0.121095 -0.968761,0.121095 H 62.04001 q -0.108004,0 -0.183279,-0.06218 -0.072,-0.06546 -0.072,-0.209462 v -3.691765 q 0,-0.144005 0.072,-0.206189 0.07527,-0.06546 0.183279,-0.06546 h 1.086583 q 0.566202,0 0.958943,0.134186 0.396014,0.130914 0.664387,0.392741 0.271646,0.258555 0.412378,0.641477 0.140732,0.382923 0.140732,0.886939 z m -0.890213,0.02946 q 0,-0.301101 -0.072,-0.559656 -0.06873,-0.258554 -0.225826,-0.448379 -0.153823,-0.189825 -0.399286,-0.294556 -0.242191,-0.108004 -0.638204,-0.108004 h -0.435288 v 2.880101 h 0.448379 q 0.353467,0 0.595657,-0.09164 0.24219,-0.09164 0.40256,-0.274918 0.163642,-0.186552 0.24219,-0.461471 0.08182,-0.274919 0.08182,-0.641477 z" style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:6.70278px;font-family:Calibri;-inkscape-font-specification:'Calibri, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.065;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path49155"/>
        </g>
      </g>
      <g id="wetGripMarkerC" inkscape:label="wetGripMarkerC" transform="translate(0,-8.09997)" style="display:none">
        <path id="path6652" style="opacity:0.99;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.297925;stroke-opacity:1" d="m 67.159199,68.24397 -6.402801,3e-6 -2.426032,4.537153 2.426032,4.962844 6.402801,-4e-6 z" sodipodi:nodetypes="cccccc"/>
        <g aria-label="C" id="text6656" style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:6.70278px;line-height:1.25;font-family:Calibri;-inkscape-font-specification:'Calibri, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;opacity:0.99;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.065;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" inkscape:label="WetGripClass">
          <path d="m 64.713921,74.147906 q 0,0.08182 -0.0065,0.140732 -0.0033,0.05564 -0.01309,0.09819 -0.0098,0.03927 -0.02618,0.06873 -0.01637,0.02946 -0.05237,0.06873 -0.036,0.036 -0.140732,0.09491 -0.101458,0.05891 -0.252009,0.11455 -0.147278,0.05236 -0.340375,0.08837 -0.189825,0.036 -0.412378,0.036 -0.435288,0 -0.785482,-0.134187 -0.350194,-0.134186 -0.595658,-0.399287 -0.245463,-0.268373 -0.376376,-0.667659 -0.130914,-0.399287 -0.130914,-0.929487 0,-0.540019 0.144005,-0.958943 0.144005,-0.418924 0.40256,-0.703661 0.258554,-0.284737 0.618567,-0.432015 0.363285,-0.147278 0.798573,-0.147278 0.176733,0 0.340375,0.02946 0.163643,0.02945 0.301102,0.07855 0.140732,0.04582 0.252009,0.108004 0.111276,0.06218 0.153823,0.108003 0.04582,0.04255 0.06218,0.072 0.01636,0.02946 0.02618,0.07528 0.0098,0.04582 0.01309,0.108004 0.0065,0.06218 0.0065,0.153824 0,0.09819 -0.0065,0.166915 -0.0065,0.06873 -0.02291,0.111276 -0.01636,0.04255 -0.03927,0.06218 -0.02291,0.01964 -0.05236,0.01964 -0.04909,0 -0.124368,-0.05564 -0.07527,-0.05891 -0.196371,-0.127641 -0.117822,-0.072 -0.284737,-0.127641 -0.163642,-0.05891 -0.392741,-0.05891 -0.252009,0 -0.451652,0.104731 -0.19637,0.101458 -0.337103,0.294556 -0.137459,0.189825 -0.209462,0.46147 -0.072,0.271646 -0.072,0.612022 0,0.373104 0.07527,0.648023 0.07855,0.271645 0.219281,0.448379 0.144005,0.176733 0.343648,0.2651 0.202916,0.08509 0.454925,0.08509 0.229099,0 0.396014,-0.05237 0.166915,-0.05564 0.284737,-0.121095 0.121095,-0.06546 0.196371,-0.117822 0.07855,-0.05236 0.121095,-0.05236 0.03273,0 0.05237,0.01309 0.01964,0.01309 0.03273,0.05236 0.01309,0.03927 0.01964,0.111277 0.0065,0.06873 0.0065,0.186552 z" id="path49152"/>
        </g>
      </g>
      <g id="wetGripMarkerB" inkscape:label="wetGripMarkerB" transform="translate(0,-16.09997)" style="">
        <path id="path6662" style="opacity:0.99;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.297925;stroke-opacity:1" d="m 67.159199,68.24397 -6.402801,3e-6 -2.426032,4.537153 2.426032,4.962844 6.402801,-4e-6 z" sodipodi:nodetypes="cccccc"/>
        <g aria-label="B" id="text6666" style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:6.70278px;line-height:1.25;font-family:Calibri;-inkscape-font-specification:'Calibri, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;display:inline;opacity:0.99;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.065;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" inkscape:label="WetGripClass">
          <path d="m 64.851381,73.51952 q 0,0.225826 -0.06218,0.409106 -0.06218,0.183279 -0.173461,0.324011 -0.108004,0.140732 -0.261827,0.24219 -0.150551,0.101458 -0.33383,0.166915 -0.183279,0.06546 -0.392741,0.09819 -0.206189,0.02946 -0.461471,0.02946 H 62.04001 q -0.108004,0 -0.183279,-0.06218 -0.072,-0.06546 -0.072,-0.209462 v -3.691765 q 0,-0.144005 0.072,-0.206189 0.07527,-0.06546 0.183279,-0.06546 h 1.063673 q 0.389468,0 0.657842,0.06546 0.271645,0.06546 0.454924,0.199643 0.186552,0.130914 0.284738,0.33383 0.09819,0.202916 0.09819,0.477835 0,0.153823 -0.03927,0.291283 -0.03927,0.134186 -0.11455,0.245463 -0.07528,0.111276 -0.186552,0.19637 -0.108003,0.08509 -0.248736,0.13746 0.180007,0.03273 0.330557,0.114549 0.153824,0.08182 0.265101,0.212735 0.114549,0.127641 0.180006,0.301101 0.06546,0.173461 0.06546,0.389468 z m -1.112766,-1.783698 q 0,-0.127641 -0.03927,-0.229099 -0.03927,-0.101458 -0.117823,-0.166915 -0.07855,-0.06873 -0.199643,-0.104731 -0.117822,-0.036 -0.317466,-0.036 h -0.435288 v 1.099674 h 0.481108 q 0.186552,0 0.297829,-0.04255 0.111276,-0.04582 0.183279,-0.121095 0.07527,-0.07855 0.111276,-0.180006 0.036,-0.104731 0.036,-0.21928 z m 0.21928,1.813154 q 0,-0.147278 -0.04909,-0.261827 -0.04909,-0.117823 -0.144005,-0.196371 -0.09491,-0.07855 -0.24219,-0.121095 -0.147278,-0.04255 -0.382922,-0.04255 h -0.510564 v 1.204406 h 0.62184 q 0.180006,0 0.301102,-0.036 0.124368,-0.03927 0.212734,-0.111276 0.09164,-0.07527 0.140733,-0.183279 0.05237,-0.111277 0.05237,-0.252009 z" id="path49149"/>
        </g>
      </g>
      <g id="wetGripMarkerA" inkscape:label="wetGripMarkerA" transform="translate(0,-24.19997)" style="display:none">
        <path id="path6672" style="opacity:0.99;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.297925;stroke-opacity:1" d="m 67.159199,68.24397 -6.402801,3e-6 -2.426032,4.537153 2.426032,4.962844 6.402801,-4e-6 z" sodipodi:nodetypes="cccccc"/>
        <g aria-label="A" id="text6676" style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:6.70278px;line-height:1.25;font-family:Calibri;-inkscape-font-specification:'Calibri, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;opacity:0.99;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.065;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" inkscape:label="WetGripClass">
          <path d="m 65.25394,74.468644 q 0.03927,0.117823 0.04909,0.186552 0.0098,0.06873 -0.02618,0.104731 -0.036,0.03273 -0.127641,0.03927 -0.09164,0.0098 -0.252008,0.0098 -0.166915,0 -0.261828,-0.0065 -0.09164,-0.0033 -0.140732,-0.01636 -0.04909,-0.01636 -0.06873,-0.04255 -0.01964,-0.02618 -0.03273,-0.06873 l -0.284737,-0.850938 h -1.590601 l -0.268373,0.828029 q -0.01309,0.04582 -0.036,0.07855 -0.01964,0.02945 -0.06873,0.04909 -0.04582,0.01637 -0.134187,0.02291 -0.08509,0.0065 -0.225826,0.0065 -0.150551,0 -0.235644,-0.0098 -0.08509,-0.0098 -0.117823,-0.04582 -0.03273,-0.03927 -0.02291,-0.108004 0.0098,-0.06873 0.04909,-0.183279 l 1.305864,-3.757222 q 0.01964,-0.05564 0.04582,-0.08837 0.02618,-0.036 0.08182,-0.05237 0.05891,-0.01964 0.160369,-0.02291 0.101458,-0.0065 0.268373,-0.0065 0.193098,0 0.307647,0.0065 0.114549,0.0033 0.176733,0.02291 0.06546,0.01637 0.09164,0.05237 0.02946,0.036 0.04909,0.09819 z m -1.944068,-3.105926 h -0.0033 l -0.598931,1.800063 h 1.201133 z" id="path49146"/>
        </g>
      </g>
    </g>
    <g id="g6168" inkscape:label="FuelMarker" inkscape:groupmode="layer">
      <g id="fuelMarkerE" inkscape:label="fuelMarkerE" transform="translate(1.0584314,15.800233)" style="display:none">
        <path id="path6626" style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.297925;stroke-opacity:1" d="m 33.321006,60.186767 -6.402801,3e-6 -2.580076,4.537153 2.580076,4.962844 6.402801,-4e-6 z" sodipodi:nodetypes="cccccc"/>
        <g aria-label="E" id="text6630" style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:6.70278px;line-height:1.25;font-family:Calibri;-inkscape-font-specification:'Calibri, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;display:inline;mix-blend-mode:normal;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.065;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" inkscape:label="FuelClass">
          <path d="m 30.689519,66.395075 q 0,0.09491 -0.0098,0.160369 -0.0065,0.06218 -0.02291,0.101458 -0.01636,0.03927 -0.04255,0.05891 -0.02291,0.01636 -0.05236,0.01636 h -2.127348 q -0.108003,0 -0.183279,-0.06218 -0.072,-0.06546 -0.072,-0.209462 v -3.691766 q 0,-0.144005 0.072,-0.206189 0.07528,-0.06546 0.183279,-0.06546 h 2.114256 q 0.02946,0 0.05237,0.01636 0.02291,0.01636 0.03927,0.05891 0.01636,0.03927 0.02291,0.104731 0.0098,0.06218 0.0098,0.160369 0,0.09164 -0.0098,0.157097 -0.0065,0.06218 -0.02291,0.101458 -0.01636,0.03927 -0.03927,0.05891 -0.02291,0.01636 -0.05237,0.01636 h -1.512053 v 1.034218 h 1.279681 q 0.02946,0 0.05237,0.01964 0.02618,0.01636 0.04255,0.05564 0.01636,0.036 0.02291,0.101458 0.0098,0.06218 0.0098,0.153824 0,0.09491 -0.0098,0.157096 -0.0065,0.06218 -0.02291,0.101458 -0.01636,0.036 -0.04255,0.05237 -0.02291,0.01636 -0.05237,0.01636 h -1.279681 v 1.194587 h 1.525145 q 0.02945,0 0.05236,0.01964 0.02618,0.01637 0.04255,0.05564 0.01636,0.03927 0.02291,0.104731 0.0098,0.06218 0.0098,0.157096 z" id="path49143"/>
        </g>
      </g>
      <g id="fuelMarkerD" inkscape:label="fuelMarkerD" transform="translate(1.0584314,8.100233)" style="">
        <path id="path6616" style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.297925;stroke-opacity:1" d="m 33.321006,60.186767 -6.402801,3e-6 -2.580076,4.537153 2.580076,4.962844 6.402801,-4e-6 z" sodipodi:nodetypes="cccccc"/>
        <g aria-label="D" id="text6620" style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:6.70278px;line-height:1.25;font-family:Calibri;-inkscape-font-specification:'Calibri, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;mix-blend-mode:normal;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.065;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" inkscape:label="FuelClass">
          <path d="m 31.697555,64.552465 q 0,0.582566 -0.153824,0.998217 -0.150551,0.412378 -0.435288,0.674205 -0.284737,0.261828 -0.693842,0.386196 -0.405833,0.121095 -0.968761,0.121095 h -1.011309 q -0.108003,0 -0.183279,-0.06218 -0.072,-0.06546 -0.072,-0.209462 V 62.76877 q 0,-0.144005 0.072,-0.206189 0.07528,-0.06546 0.183279,-0.06546 h 1.086584 q 0.566202,0 0.958943,0.134186 0.396013,0.130914 0.664386,0.392741 0.271646,0.258555 0.412378,0.641477 0.140733,0.382923 0.140733,0.88694 z m -0.890213,0.02946 q 0,-0.301102 -0.072,-0.559656 -0.06873,-0.258555 -0.225826,-0.448379 -0.153823,-0.189825 -0.399287,-0.294556 -0.24219,-0.108004 -0.638204,-0.108004 h -0.435288 v 2.880101 h 0.44838 q 0.353467,0 0.595657,-0.09164 0.24219,-0.09164 0.402559,-0.274919 0.163642,-0.186552 0.242191,-0.46147 0.08182,-0.274919 0.08182,-0.641477 z" id="path49140"/>
        </g>
      </g>
      <g id="fuelMarkerC" inkscape:label="fuelMarkerC" style="display:none" transform="translate(1.0584314)">
        <path id="rect1168-4-0-4-40-8" style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.297925;stroke-opacity:1" d="m 33.321006,60.186767 -6.402801,3e-6 -2.580076,4.537153 2.580076,4.962844 6.402801,-4e-6 z" sodipodi:nodetypes="cccccc"/>
        <g aria-label="C" id="FuelClass" style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:6.70278px;line-height:1.25;font-family:Calibri;-inkscape-font-specification:'Calibri, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;mix-blend-mode:normal;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.065;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" inkscape:label="FuelClass">
          <path d="m 31.108443,66.090701 q 0,0.08182 -0.0065,0.140732 -0.0033,0.05564 -0.01309,0.09819 -0.0098,0.03927 -0.02618,0.06873 -0.01636,0.02945 -0.05236,0.06873 -0.036,0.036 -0.140732,0.09491 -0.101458,0.05891 -0.252009,0.114549 -0.147278,0.05237 -0.340376,0.08837 -0.189824,0.036 -0.412378,0.036 -0.435288,0 -0.785482,-0.134186 -0.350194,-0.134187 -0.595657,-0.399287 -0.245463,-0.268373 -0.376377,-0.667659 -0.130913,-0.399287 -0.130913,-0.929488 0,-0.540018 0.144005,-0.958942 0.144005,-0.418924 0.402559,-0.703661 0.258555,-0.284737 0.618567,-0.432015 0.363286,-0.147278 0.798574,-0.147278 0.176733,0 0.340375,0.02946 0.163642,0.02946 0.301102,0.07855 0.140732,0.04582 0.252008,0.108003 0.111277,0.06218 0.153824,0.108004 0.04582,0.04255 0.06218,0.072 0.01636,0.02945 0.02618,0.07527 0.0098,0.04582 0.01309,0.108004 0.0065,0.06218 0.0065,0.153823 0,0.09819 -0.0065,0.166915 -0.0065,0.06873 -0.02291,0.111277 -0.01636,0.04255 -0.03927,0.06218 -0.02291,0.01964 -0.05236,0.01964 -0.04909,0 -0.124368,-0.05564 -0.07528,-0.05891 -0.196371,-0.127641 -0.117822,-0.072 -0.284737,-0.127641 -0.163642,-0.05891 -0.392741,-0.05891 -0.252009,0 -0.451652,0.104731 -0.196371,0.101458 -0.337103,0.294556 -0.137459,0.189824 -0.209462,0.46147 -0.072,0.271646 -0.072,0.612022 0,0.373104 0.07528,0.648022 0.07855,0.271646 0.21928,0.44838 0.144005,0.176733 0.343649,0.2651 0.202916,0.08509 0.454925,0.08509 0.229099,0 0.396014,-0.05237 0.166915,-0.05564 0.284737,-0.121095 0.121095,-0.06546 0.19637,-0.117822 0.07855,-0.05237 0.121096,-0.05237 0.03273,0 0.05236,0.01309 0.01964,0.01309 0.03273,0.05237 0.01309,0.03927 0.01964,0.111277 0.0065,0.06873 0.0065,0.186552 z" style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:6.70278px;font-family:Calibri;-inkscape-font-specification:'Calibri, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.065;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path49137"/>
        </g>
      </g>
      <g id="fuelMarkerB" inkscape:label="fuelMarkerB" transform="translate(1.0584314,-8.299767)" style="display:none">
        <path id="path6594" style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.297925;stroke-opacity:1" d="m 33.321006,60.186767 -6.402801,3e-6 -2.580076,4.537153 2.580076,4.962844 6.402801,-4e-6 z" sodipodi:nodetypes="cccccc"/>
        <g aria-label="B" id="text6598" style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:6.70278px;line-height:1.25;font-family:Calibri;-inkscape-font-specification:'Calibri, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;display:inline;mix-blend-mode:normal;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.065;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" inkscape:label="FuelClass">
          <path d="m 31.245902,65.462315 q 0,0.225826 -0.06218,0.409105 -0.06218,0.18328 -0.173461,0.324012 -0.108004,0.140732 -0.261827,0.24219 -0.150551,0.101458 -0.33383,0.166915 -0.183279,0.06546 -0.392741,0.09819 -0.206189,0.02946 -0.461471,0.02946 h -1.125858 q -0.108003,0 -0.183279,-0.06218 -0.072,-0.06546 -0.072,-0.209462 v -3.691766 q 0,-0.144005 0.072,-0.206189 0.07528,-0.06546 0.183279,-0.06546 h 1.063674 q 0.389468,0 0.657841,0.06546 0.271646,0.06546 0.454925,0.199644 0.186552,0.130913 0.284737,0.33383 0.09819,0.202916 0.09819,0.477835 0,0.153823 -0.03927,0.291282 -0.03927,0.134187 -0.11455,0.245464 -0.07528,0.111276 -0.186552,0.19637 -0.108004,0.08509 -0.248736,0.137459 0.180006,0.03273 0.330557,0.11455 0.153824,0.08182 0.2651,0.212735 0.11455,0.12764 0.180007,0.301101 0.06546,0.173461 0.06546,0.389468 z m -1.112766,-1.783699 q 0,-0.12764 -0.03927,-0.229098 -0.03927,-0.101459 -0.117822,-0.166915 -0.07855,-0.06873 -0.199643,-0.104731 -0.117823,-0.036 -0.317466,-0.036 h -0.435288 v 1.099675 h 0.481108 q 0.186552,0 0.297828,-0.04255 0.111277,-0.04582 0.183279,-0.121095 0.07528,-0.07855 0.111277,-0.180006 0.036,-0.104731 0.036,-0.219281 z m 0.219281,1.813155 q 0,-0.147278 -0.04909,-0.261828 -0.04909,-0.117822 -0.144005,-0.19637 -0.09491,-0.07855 -0.24219,-0.121095 -0.147278,-0.04255 -0.382923,-0.04255 h -0.510563 v 1.204406 h 0.62184 q 0.180006,0 0.301101,-0.036 0.124368,-0.03927 0.212735,-0.111276 0.09164,-0.07528 0.140732,-0.183279 0.05237,-0.111277 0.05237,-0.252009 z" id="path49134"/>
        </g>
      </g>
      <g id="fuelMarkerA" inkscape:label="fuelMarkerA" transform="translate(1.0584314,-16.199767)" style="display:none">
        <path id="path6606" style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.297925;stroke-opacity:1" d="m 33.321006,60.186767 -6.402801,3e-6 -2.580076,4.537153 2.580076,4.962844 6.402801,-4e-6 z" sodipodi:nodetypes="cccccc"/>
        <g aria-label="A" id="text6610" style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:6.70278px;line-height:1.25;font-family:Calibri;-inkscape-font-specification:'Calibri, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;opacity:0.99;mix-blend-mode:normal;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.065;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" inkscape:label="FuelClass">
          <path d="m 31.648462,66.411439 q 0.03927,0.117823 0.04909,0.186552 0.0098,0.06873 -0.02618,0.104731 -0.036,0.03273 -0.127641,0.03927 -0.09164,0.0098 -0.252009,0.0098 -0.166915,0 -0.261827,-0.0065 -0.09164,-0.0033 -0.140732,-0.01636 -0.04909,-0.01636 -0.06873,-0.04255 -0.01964,-0.02618 -0.03273,-0.06873 l -0.284738,-0.850939 h -1.590601 l -0.268373,0.828029 q -0.01309,0.04582 -0.036,0.07855 -0.01964,0.02945 -0.06873,0.04909 -0.04582,0.01636 -0.134186,0.02291 -0.08509,0.0065 -0.225826,0.0065 -0.150551,0 -0.235645,-0.0098 -0.08509,-0.0098 -0.117822,-0.04582 -0.03273,-0.03927 -0.02291,-0.108003 0.0098,-0.06873 0.04909,-0.183279 l 1.305864,-3.757223 q 0.01964,-0.05564 0.04582,-0.08837 0.02618,-0.036 0.08182,-0.05237 0.05891,-0.01964 0.16037,-0.02291 0.101458,-0.0065 0.268373,-0.0065 0.193097,0 0.307647,0.0065 0.114549,0.0033 0.176733,0.02291 0.06546,0.01636 0.09164,0.05237 0.02945,0.036 0.04909,0.09819 z m -1.944068,-3.105927 h -0.0033 l -0.59893,1.800063 h 1.201133 z" id="path49131"/>
        </g>
      </g>
    </g>
    <image width="10.583333" height="10.583333" preserveAspectRatio="none" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAK4AAACuCAYAAACvDDbuAAAAAklEQVR4AewaftIAAAU0SURBVO3BwY1gVw4EwSyi/Xc5VwZQhwf8xgy1FRFADlDZJOGFyoskbFReJOGFyiYJX1DZJOGCoeqgoeqgoeqgoeqgoeqgH/6Fyp+QhN+UhBcqL5LwQmWThI3KiyR8QeVPSMJmqDpoqDpoqDpoqDpoqDroh0dJ+ILKF1T+hCT8JpVNEl6o/KYkfEHlxVB10FB10FB10FB10FB10A/HJeFPUPlNSXihsknCRuWyoeqgoeqgoeqgoeqgoeqgH45T2SThCyqbJGxUvqDyIgkblf+ioeqgoeqgoeqgoeqgoeqgHx6pXKDyhSRsVDZJ2KhskvCbkrBR+YLKnzBUHTRUHTRUHTRUHTRUHfTDv0jCBUnYqGySsFH5m6hskrBR2SThC0n4mwxVBw1VBw1VBw1VBw1VB8V/cFgSNiovkvCbVF4kYaOyScJG5b9oqDpoqDpoqDpoqDpoqDoogCxUNkl4obJJwhdUNkl4obJJwhdUNkn4gsoXkrBReZGEjcomCS+GqoOGqoOGqoOGqoOGqoPiP1gkYaOyScJGZZOEjcomCS9UXiRho/KFJLxQ2SThApUvJGEzVB00VB00VB00VB00VB30w79Q+ROSsFF5kYQXKpskbFQ2SXihsknCC5VNEr6g8oUkvFDZDFUHDVUHDVUHDVUHDVUHBZAHKpskvFD5QhIuUNkkYaOyScJG5QtJeKHym5KwGaoOGqoOGqoOGqoOGqoOCiC/SOVFEjYqmyRsVDZJeKHym5LwQuVFEl6ofCEJL1ReDFUHDVUHDVUHDVUHDVUHBZCFyt8kCRuVTRL+BJVNEjYqmyR8QeVFEjYqX0jCF4aqg4aqg4aqg4aqg4aqg35U/iZJ2Kh8QeVFEjYqmyRsVDZJ2KhskvAiCS9UXiRho/KbhqqDhqqDhqqDhqqDhqqD4j/4P5KEjcomCS9U/iZJ+ILKJgkblRdJ2KhshqqDhqqDhqqDhqqDhqqDfpLwQmWThI3KiyT8TVR+UxI2Kl9Q2SRho/KFJGxUvjBUHTRUHTRUHTRUHTRUHRT/wQeS8ELlRRI2KpskbFReJOGFyoskvFB5kYSNyoskbFQ2SfiCymaoOmioOmioOmioOmioOugnCRuVTRI2Ki+S8IUk/CaVLyRho7JJwt9EZZOEjcomCRuVF0PVQUPVQUPVQUPVQUPVQT8qvykJG5UvJGGjsknCC5W/SRI2KhuVTRI2KpskbFT+hKHqoKHqoKHqoKHqoKHqoB/+RRJeJOELSdiobFR+UxJeqPwJSfhCEl4k4U8Yqg4aqg4aqg4aqg4aqg6K/+CwJGxUNkn4m6j8piRsVL6QhD9hqDpoqDpoqDpoqDpoqDroJwkXqPwmlU0SXqh8IQkblU0SvpCEjcoXVDZJ2KhshqqDhqqDhqqDhqqDhqqDfvgXKn9CEv6EJLxQ+UISNiqbJGxUNkl4ofInqLwYqg4aqg4aqg4aqg4aqg764VESvqDyBZUXKpskbFReJOELSdiofCEJv0llk4SNyiYJm6HqoKHqoKHqoKHqoKHqoB+OS8JGZZOEjcqLJLxQeZGETRI2KhuVTRI2Ki+SsEnCRmWThI3KZqg6aKg6aKg6aKg6aKg66If/qCT8F6m8SMJG5UUSNiovkrBR2SRhM1QdNFQdNFQdNFQdNFQd9MMjlb+JyiYJG5VNEl6ofCEJG5VNEjYqL5KwUXmRhBcqmyRsVDZD1UFD1UFD1UFD1UFD1UE//IskXJCEjcrfJAkblRcqvykJG5W/yVB10FB10FB10FB10FB10P8ACashdawL0dwAAAAASUVORK5CYII=" id="qrcode" x="60.589584" y="2.9897916" style="stroke-width:28.875" inkscape:svg-dpi="1" inkscape:label="qrcode" onclick="window.location.href=&quot;https://eprel.ec.europa.eu/qr/530227&quot;" onmouseover="this.style.cursor=&quot;pointer&quot;"/>
    <g id="g66319" inkscape:label="EU FLAG and ENERG" transform="translate(60.701653,5.6784145)" style="display:inline">
      <polygon transform="matrix(0.3520948,0,0,0.3520948,-57.705653,-2.7044145)" style="fill:#034ea2" class="cls-38" points="45.36,0 0,0 0,31.18 45.36,31.18 " id="polygon5051"/>
      <polygon transform="matrix(0.3520948,0,0,0.3520948,-57.705653,-2.7044145)" style="fill:#fff200" class="cls-21" points="22.7,6.07 21.44,7.07 21.94,5.45 20.66,4.43 22.23,4.43 22.7,2.86 23.17,4.43 24.75,4.43 23.48,5.45 23.97,7.07 " id="polygon5053"/>
      <polygon transform="matrix(0.3520948,0,0,0.3520948,-57.705653,-2.7044145)" style="fill:#fff200" class="cls-21" points="22.76,26.8 21.49,27.76 21.99,26.21 20.71,25.23 22.29,25.23 22.76,23.71 23.23,25.23 24.81,25.23 23.53,26.21 24.03,27.76 " id="polygon5055"/>
      <polygon transform="matrix(0.3520948,0,0,0.3520948,-57.705653,-2.7044145)" style="fill:#fff200" class="cls-21" points="27.77,25.43 26.5,26.39 27,24.83 25.71,23.85 27.29,23.85 27.77,22.33 28.23,23.85 29.81,23.85 28.54,24.83 29.03,26.39 " id="polygon5057"/>
      <polygon transform="matrix(0.3520948,0,0,0.3520948,-57.705653,-2.7044145)" style="fill:#fff200" class="cls-21" points="27.77,7.4 26.5,8.36 27,6.8 25.71,5.82 27.29,5.82 27.77,4.3 28.23,5.82 29.81,5.82 28.54,6.8 29.03,8.36 " id="polygon5059"/>
      <polygon transform="matrix(0.3520948,0,0,0.3520948,-57.705653,-2.7044145)" style="fill:#fff200" class="cls-21" points="31.48,11.22 30.22,12.17 30.71,10.62 29.43,9.64 31,9.64 31.48,8.12 31.95,9.64 33.52,9.64 32.25,10.62 32.75,12.17 " id="polygon5061"/>
      <polygon transform="matrix(0.3520948,0,0,0.3520948,-57.705653,-2.7044145)" style="fill:#fff200" class="cls-21" points="31.48,21.66 30.22,22.62 30.71,21.07 29.43,20.08 31,20.08 31.48,18.57 31.95,20.08 33.52,20.08 32.25,21.07 32.75,22.62 " id="polygon5063"/>
      <polygon transform="matrix(0.3520948,0,0,0.3520948,-57.705653,-2.7044145)" style="fill:#fff200" class="cls-21" points="32.87,16.36 31.61,17.32 32.11,15.76 30.82,14.78 32.4,14.78 32.87,13.27 33.34,14.78 34.92,14.78 33.65,15.76 34.14,17.32 " id="polygon5065"/>
      <polygon transform="matrix(0.3520948,0,0,0.3520948,-57.705653,-2.7044145)" style="fill:#fff200" class="cls-21" points="17.6,7.41 16.33,8.37 16.83,6.81 15.55,5.83 17.13,5.83 17.6,4.32 18.07,5.83 19.65,5.83 18.37,6.81 18.87,8.37 " id="polygon5067"/>
      <polygon transform="matrix(0.3520948,0,0,0.3520948,-57.705653,-2.7044145)" style="fill:#fff200" class="cls-21" points="13.99,11.23 12.72,12.19 13.22,10.63 11.94,9.65 13.51,9.65 13.99,8.14 14.46,9.65 16.04,9.65 14.76,10.63 15.26,12.19 " id="polygon5069"/>
      <polygon transform="matrix(0.3520948,0,0,0.3520948,-57.705653,-2.7044145)" style="fill:#fff200" class="cls-21" points="12.65,16.37 11.38,17.33 11.88,15.78 10.6,14.79 12.17,14.79 12.65,13.28 13.11,14.79 14.69,14.79 13.42,15.78 13.91,17.33 " id="polygon5071"/>
      <polygon transform="matrix(0.3520948,0,0,0.3520948,-57.705653,-2.7044145)" style="fill:#fff200" class="cls-21" points="13.99,21.68 12.72,22.63 13.22,21.08 11.94,20.1 13.51,20.1 13.99,18.58 14.46,20.1 16.04,20.1 14.76,21.08 15.26,22.63 " id="polygon5073"/>
      <polygon transform="matrix(0.3520948,0,0,0.3520948,-57.705653,-2.7044145)" style="fill:#fff200" class="cls-21" points="17.65,25.44 16.39,26.4 16.89,24.84 15.6,23.86 17.18,23.86 17.65,22.35 18.12,23.86 19.7,23.86 18.43,24.84 18.92,26.4 " id="polygon5075"/>
      <polygon transform="matrix(0.3520948,0,0,0.3520948,-57.705653,-2.7044145)" style="fill:#034ea2" class="cls-38" points="65.44,13.34 65.44,17.61 55.63,17.61 55.63,22.41 65.86,22.41 65.86,26.68 51.15,26.68 51.15,4.79 65.86,4.79 65.86,9.16 55.63,9.16 55.63,13.34 " id="polygon5077"/>
      <polygon transform="matrix(0.3520948,0,0,0.3520948,-57.705653,-2.7044145)" style="fill:#034ea2" class="cls-38" points="72.76,26.68 68.28,26.68 68.28,4.79 73.63,4.79 82.63,19.54 82.63,4.79 87.12,4.79 87.12,26.68 81.76,26.68 72.76,12.13 " id="polygon5079"/>
      <polygon transform="matrix(0.3520948,0,0,0.3520948,-57.705653,-2.7044145)" style="fill:#034ea2" class="cls-38" points="103.96,13.34 103.96,17.61 94.15,17.61 94.15,22.41 104.38,22.41 104.38,26.68 89.67,26.68 89.67,4.79 104.38,4.79 104.38,9.16 94.15,9.16 94.15,13.34 " id="polygon5081"/>
      <path style="fill:#034ea2;stroke-width:0.352095" class="cls-38" d="m -20.137138,6.6929958 v -7.7073552 h 3.633619 a 4.130072,4.130072 0 0 1 1.091494,0.12675412 1.760474,1.760474 0 0 1 0.749962,0.40842996 1.693576,1.693576 0 0 1 0.440118,0.74644098 3.9223361,3.9223361 0 0 1 0.140838,1.13022434 5.281422,5.281422 0 0 1 -0.04577,0.7041896 3.9892341,3.9892341 0 0 1 -0.123233,0.5985611 1.1619128,1.1619128 0 0 1 -0.352095,0.5175794 1.5034448,1.5034448 0 0 1 0.352095,0.5739145 2.3801608,2.3801608 0 0 1 0.109149,0.7358781 v 2.168904 H -15.76412 V 4.6930973 A 0.72531529,0.72531529 0 0 0 -15.968335,4.0945361 1.0562844,1.0562844 0 0 0 -16.61619,3.9325725 h -1.89779 v 2.7569023 z m 1.587948,-4.2497843 h 1.785121 a 2.778028,2.778028 0 0 0 0.556309,-0.045772 0.94361406,0.94361406 0 0 0 0.316886,-0.1161913 q 0.172526,-0.137317 0.172526,-0.7041896 A 2.2287601,2.2287601 0 0 0 -15.820455,0.73907269 Q -15.922563,0.51021107 -16.492956,0.51021107 H -18.54919 V 2.4396906 Z" id="path5083"/>
      <path style="fill:#034ea2;stroke-width:0.352095" class="cls-38" d="m -10.584806,2.4432115 h 3.6899539 c 0.03873,0.2922387 0.056335,0.5070165 0.063377,0.6478545 0.00704,0.1408379 0,0.267592 0,0.3732204 v 0.6302497 a 4.6582142,4.6582142 0 0 1 -0.2499873,1.5844266 1.3590859,1.3590859 0 0 1 -0.5281422,0.6830639 2.3203047,2.3203047 0 0 1 -1.0069911,0.3274482 q -0.3520948,0.035209 -0.7041896,0.045772 c -0.2429455,0 -0.4858909,0 -0.7288357,0 q -1.81681,0 -2.499874,-0.5844773 -0.739399,-0.609124 -0.739399,-2.4012866 V 3.2811971 c 0,-0.1619636 0,-0.3239272 0,-0.4929327 V 1.8798598 q 0,-1.49288191 0.602082,-2.2041134 a 1.9224376,1.9224376 0 0 1 0.869675,-0.55278884 4.130072,4.130072 0 0 1 1.30275,-0.18308926 h 0.418993 q 0.2042151,0 0.4225139,0 h 0.7957342 q 1.1126196,0.035209 1.55978,0.60208207 a 2.5526873,2.5526873 0 0 1 0.4506813,1.61259423 v 0.676022 H -8.458153 A 3.4012358,3.4012358 0 0 0 -8.5849071,0.62288141 C -8.6236375,0.54542055 -8.7820802,0.49964823 -9.0602351,0.48556444 -9.33839,0.47148064 -9.5250002,0.4609178 -9.7644247,0.45739685 h -0.7041893 q -0.873195,0 -1.031638,0.1830893 -0.158443,0.18308929 -0.183089,1.27458315 0,0.1161913 0,0.2182988 c 0,0.070419 0,0.1443589 0,0.2288616 v 0.4365976 0.9753026 c 0,0.200694 0,0.3873042 0.02112,0.5633516 a 2.8484469,2.8484469 0 0 0 0.08098,0.4823699 v -0.024647 a 0.59504021,0.59504021 0 0 0 0.183089,0.2253407 0.76756666,0.76756666 0 0 0 0.352095,0.130275 3.4223615,3.4223615 0 0 0 0.464765,0.035209 c 0.09154,0 0.18309,0 0.278155,0 h 0.6760223 a 5.7144986,5.7144986 0 0 0 0.6865848,-0.00352 0.56335168,0.56335168 0 0 0 0.3520948,-0.1197123 c 0.1056285,-0.091545 0.1584427,-0.3978671 0.1584427,-0.9189674 V 3.9607401 H -10.577764 V 2.4467325 Z" id="path5085"/>
      <polygon transform="matrix(0.3520948,0,0,0.3520948,-57.705653,-2.7044145)" style="fill:#034ea2" class="cls-38" points="151.28,27.05 153.63,14.76 148.43,14.98 150.63,4.7 155.6,4.7 153.63,10.99 159.04,10.1 " id="polygon5087"/>
    </g>
    <path style="display:inline;fill:none;stroke:#231f20;stroke-width:0.176047px" class="cls-2" d="M 2.9104167,20.725523 H 71.77664 M 2.9104167,27.65827 H 71.77664 M 2.9104167,86.035588 H 71.71678" id="path4849"/>
  </g>
  <g inkscape:groupmode="layer" id="layer6" inkscape:label="Wetgrip" style="display:inline;mix-blend-mode:normal">
    <g id="g6220" inkscape:label="Cloud">
      <path style="fill:none;stroke:#000000;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.793749, 0.264583;stroke-dashoffset:0;stroke-opacity:1;marker-mid:url(#Arrow1Lstart)" d="m 59.448197,37.289224 1.886656,-2.564869" id="path4831"/>
      <path style="fill:none;stroke:#000000;stroke-width:0.312984;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.625969, 0.625969;stroke-dashoffset:0;stroke-opacity:1" d="m 58.888709,36.276428 1.336725,-1.81065" id="path5205"/>
      <path style="fill:none;stroke:#000000;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.05833, 0.264583;stroke-dashoffset:2.64583;stroke-opacity:1" d="m 57.499884,36.339729 1.294763,-1.664697" id="path5207"/>
      <path style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 56.932652,32.06084 c 0.312334,0.0084 0.661764,0.05824 0.944856,-0.03827 0.550024,-0.187513 0.121766,-0.954265 1.372995,-0.513866 0.355949,0.125285 0.315582,-0.871466 1.415724,-0.700009 0.595298,0.09278 1.021174,0.296055 1.270737,1.105766 0.07387,0.239677 0.676499,-0.107381 0.939276,0.245034 0.690934,0.772475 1.138134,1.273911 -0.382263,2.515544 l -5.302372,-0.03699 c -1.501671,-0.97383 -1.175532,-1.799456 -0.258953,-2.577209 z" id="path5211" sodipodi:nodetypes="csssscccc"/>
    </g>
    <g id="g6208" inkscape:label="WaterDrops">
      <path style="fill:none;stroke:#000000;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 54.615688,44.045642 c 0.768338,-0.662819 1.158816,-1.31816 1.962191,-1.50442 0.46615,-0.113035 0.805303,0.235947 0.558169,0.943102 -0.238354,0.548415 -1.538155,0.543413 -2.52036,0.561318 z" id="path5219" sodipodi:nodetypes="cccc"/>
      <path style="mix-blend-mode:normal;fill:none;stroke:#000000;stroke-width:0.264273;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 56.245905,41.596775 c 0.474221,-0.562969 0.715226,-1.119587 1.211073,-1.277786 0.28771,-0.096 0.497037,0.200401 0.344505,0.801028 -0.147113,0.4658 -0.949357,0.461551 -1.555578,0.476758 z" id="path5219-7" sodipodi:nodetypes="cccc"/>
      <path style="mix-blend-mode:normal;fill:none;stroke:#000000;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 47.675105,44.038129 c -0.768338,-0.662819 -1.158816,-1.31816 -1.962191,-1.50442 -0.46615,-0.113035 -0.805303,0.235947 -0.558169,0.943102 0.238354,0.548415 1.538155,0.543413 2.52036,0.561318 z" id="path5219-8" sodipodi:nodetypes="cccc"/>
      <path style="mix-blend-mode:normal;fill:none;stroke:#000000;stroke-width:0.264273;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 46.044888,41.589262 c -0.474221,-0.562969 -0.715226,-1.119587 -1.211073,-1.277786 -0.28771,-0.096 -0.497037,0.200401 -0.344505,0.801028 0.147113,0.4658 0.949357,0.461551 1.555578,0.476758 z" id="path5219-7-4" sodipodi:nodetypes="cccc"/>
    </g>
    <g id="g89874" inkscape:label="Tire" transform="translate(45.395619)" style="display:inline">
      <path id="path5015" d="m 4.3832653,44.147359 c -1.566822,0 -2.837884,-2.464664 -2.837884,-5.503242 0,-3.038578 1.271062,-5.517325 2.837884,-5.517325 h 3.320254 c 1.566822,0 2.8378837,2.464663 2.8378837,5.503241 0,3.038578 -1.2640197,5.517326 -2.8378837,5.517326 z" class="cls-31" style="fill:#231f20;stroke-width:0.352095"/>
      <path id="path5017" d="m 8.0274463,44.203694 c -1.584427,0 -2.816758,-2.464664 -2.816758,-5.549014 0,-3.084351 1.172475,-5.556056 2.753381,-5.556056" class="cls-32" style="fill:none;stroke:#ffffff;stroke-width:0.119712px;stroke-miterlimit:10"/>
      <path id="path5019" d="m 8.1260333,34.704176 c -0.873196,0 -1.577385,1.704139 -1.577385,3.806145 0,2.102006 0.704189,3.806145 1.577385,3.806145 0.873195,0 1.577384,-1.690055 1.577384,-3.802624 0,-2.112569 -0.704189,-3.806145 -1.577384,-3.806145 z m -0.140838,7.418638 c -0.739399,0 -1.341482,-1.605553 -1.341482,-3.587846 0,-1.982294 0.602083,-3.587847 1.341482,-3.587847 0.739399,0 1.341481,1.605553 1.341481,3.587847 0,1.982293 -0.602082,3.587846 -1.341481,3.587846 z" class="cls-26" style="fill:#ffffff;stroke-width:0.352095"/>
      <path id="path5021" d="m 6.9993293,36.175932 -0.140838,0.242946 -0.154921,0.774609 -0.07042,0.85559 -0.04225,1.130224 0.204215,1.235853 0.204215,0.63025 c 0.48237,0 0.869674,-1.056285 0.869674,-2.327347 0,-1.271062 -0.394346,-2.542125 -0.869674,-2.542125" class="cls-26" style="fill:#ffffff;stroke-width:0.352095"/>
      <path id="path5023" d="m 5.9747333,44.256508 c -1.609073,0 -2.883656,-2.52804 -2.883656,-5.601828 0,-3.073788 1.306272,-5.633516 2.915345,-5.633516 m -0.894321,11.22126 c -1.609073,0 -2.883656,-2.52804 -2.883656,-5.601828 0,-3.073788 1.306271,-5.633516 2.915345,-5.633516" class="cls-33" style="fill:none;stroke:#ffffff;stroke-width:0.119712px;stroke-miterlimit:10"/>
      <path id="path5025" d="m 3.1051613,38.031472 -0.837986,-0.05633 m 0.81686,1.035159 -0.866153,-0.03521 m 0.92953,0.947135 -0.859111,-0.04929 m 0.961219,0.753483 -0.827423,-0.02817 m 1.017554,0.873195 -0.841507,-0.05281 m 1.056285,0.616166 -0.834465,-0.03873 m 1.056284,0.573914 -0.883758,-0.0669 m 1.190081,0.5211 h -0.869674 m 1.123182,0.376742 -0.830944,0.02113 m 1.158392,0.313364 h -0.837985 m -0.70419,-6.809513 -0.862632,-0.02465 m 1.017554,-0.767567 h -0.806297 m 1.056284,-0.70419 h -0.880237 m 1.056284,-0.528142 h -0.827422 m 1.056284,-0.436597 h -0.852069 m 1.904832,9.506559 -0.778129,0.02817 m -0.03873,-9.883302 h -0.855591 m 1.119662,-0.352095 h -0.85207 m 1.098536,-0.271113 h -0.837986 m 1.193602,-0.246476 h -0.866153" class="cls-34" style="fill:none;stroke:#ffffff;stroke-width:0.116191px;stroke-miterlimit:10"/>
      <path id="path5027" d="m 7.3232563,44.288197 c -1.545696,0 -2.770986,-2.528041 -2.770986,-5.601828 0,-3.073788 1.253458,-5.633517 2.816759,-5.633517 m -0.859112,11.221261 c -1.545696,0 -2.770986,-2.528041 -2.770986,-5.601828 0,-3.073788 1.253458,-5.633517 2.816759,-5.633517" class="cls-35" style="fill:none;stroke:#ffffff;stroke-width:0.116191px;stroke-miterlimit:10"/>
      <path id="path5029" d="m 4.5663543,38.063161 -0.802776,-0.05633 m 0.771088,1.031637 -0.834465,-0.03521 m 0.894321,0.936572 -0.827423,-0.04929 m 0.922488,0.778129 -0.778129,-0.04225 m 0.975302,0.876716 -0.806297,-0.05281 m 1.028117,0.616166 -0.799255,-0.03169 m 1.024596,0.573915 -0.848549,-0.07042 m 1.105578,0.517579 h -0.823902 m 1.07741,0.387304 -0.795734,0.02113 m 1.11262,0.309843 h -0.802777 m -0.672501,-6.809513 -0.827422,-0.02113 m 0.975302,-0.771088 h -0.78165 m 0.999949,-0.704189 h -0.845028 m 1.010512,-0.528143 h -0.778129 m 1.031638,-0.436597 h -0.834465 m 1.830893,9.50656 -0.746441,0.02817 m -0.03521,-9.883302 h -0.827423 m 1.07741,-0.352095 h -0.81686 m 1.056285,-0.271126 h -0.802776 m 1.147829,-0.246464 h -0.834464" class="cls-36" style="fill:none;stroke:#ffffff;stroke-width:0.116191px;stroke-miterlimit:10"/>
    </g>
  </g>
  <g inkscape:groupmode="layer" id="layer4" inkscape:label="FuelIcon" style="display:inline;mix-blend-mode:normal">
    <g id="g6202" inkscape:label="FuelPump">
      <rect style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.275;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" id="rect4572" width="4.2055511" height="7.5664358" x="20.767149" y="30.790146"/>
      <rect style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.275;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" id="rect4574" width="3.0824683" height="1.9886893" x="21.358522" y="31.401403"/>
      <path style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" d="m 22.889813,34.444098 0.03977,2.406314" id="path4576"/>
      <path style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 20.3027,38.36454 5.207236,0.0077" id="path4578" sodipodi:nodetypes="cc"/>
      <path style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:bevel;stroke-opacity:1" d="m 25.010038,32.117332 0.596607,-0.01989 -0.0027,0.216029 0.288814,0.02261 -0.01989,4.832515 -0.417625,0.03977 -0.01989,-3.420544 -0.454673,-0.108924 z" id="path4580" sodipodi:nodetypes="ccccccccc"/>
      <path style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:bevel;stroke-opacity:1" d="m 24.98552,32.877326 0.592665,0.03119 0.0208,-0.603062" id="path4582"/>
      <path style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" d="m 24.070528,34.998443 -0.426303,0.852606 h 0.603063 l -0.436701,0.727834" id="path4584"/>
      <path style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 21.939012,35.227191 c -0.08186,0 -0.04455,-0.01315 -0.114374,0.07278 -0.03288,0.04046 -0.09005,0.110678 -0.103976,0.166362 -0.005,0.02019 0.005,0.04221 0,0.06239 -0.008,0.0319 -0.01965,0.06279 -0.03119,0.09358 -0.02609,0.06957 -0.01424,0.01524 -0.05199,0.08318 -0.02565,0.04617 -0.03562,0.09646 -0.05199,0.145566 -0.01019,0.03056 -0.03567,0.05598 -0.05199,0.08318 -0.02475,0.04124 -0.0264,0.152717 -0.0208,0.197553 0.0031,0.02503 0.02802,0.127479 0.04159,0.145569 0.110914,0.147883 0.4416,0.24026 0.592665,0.114374 0.06564,-0.0547 0.06435,-0.460349 0.05199,-0.540679 -0.0083,-0.05416 -0.0304,-0.105595 -0.05199,-0.155964 -0.008,-0.01857 -0.02342,-0.03333 -0.03119,-0.05199 -0.0097,-0.02328 -0.01174,-0.04923 -0.0208,-0.07278 -0.02119,-0.05509 -0.05478,-0.09586 -0.08318,-0.145566 -0.01477,-0.02585 -0.01408,-0.05632 -0.0208,-0.08318 -0.0031,-0.01241 -0.04546,-0.101322 -0.05199,-0.114374 z" id="path4586"/>
      <path style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 21.991001,35.955025 c -0.02098,-0.112411 -0.108421,-0.196284 -0.145567,-0.30153 -0.01138,-0.03224 -0.0104,-0.06168 -0.0104,-0.09358 0,-0.0069 -0.0049,-0.02569 0,-0.0208 0.02022,0.02021 0.03119,0.135215 0.03119,0.166362" id="path4588"/>
      <path style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 22.115772,36.16298 c -0.043,0.02159 -0.198583,-0.343123 -0.280736,-0.343123" id="path4590"/>
      <path style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 21.689469,35.788663 c 0.06239,0.03119 0.124772,0.06239 0.187158,0.09358" id="path4592"/>
    </g>
    <g id="g89901" inkscape:label="Tire" transform="translate(8.9958338)" style="display:inline">
      <path id="path89885" d="m 4.3832653,44.147359 c -1.566822,0 -2.837884,-2.464664 -2.837884,-5.503242 0,-3.038578 1.271062,-5.517325 2.837884,-5.517325 h 3.320254 c 1.566822,0 2.8378837,2.464663 2.8378837,5.503241 0,3.038578 -1.2640197,5.517326 -2.8378837,5.517326 z" class="cls-31" style="fill:#231f20;stroke-width:0.352095"/>
      <path id="path89887" d="m 8.0274463,44.203694 c -1.584427,0 -2.816758,-2.464664 -2.816758,-5.549014 0,-3.084351 1.172475,-5.556056 2.753381,-5.556056" class="cls-32" style="fill:none;stroke:#ffffff;stroke-width:0.119712px;stroke-miterlimit:10"/>
      <path id="path89889" d="m 8.1260333,34.704176 c -0.873196,0 -1.577385,1.704139 -1.577385,3.806145 0,2.102006 0.704189,3.806145 1.577385,3.806145 0.873195,0 1.577384,-1.690055 1.577384,-3.802624 0,-2.112569 -0.704189,-3.806145 -1.577384,-3.806145 z m -0.140838,7.418638 c -0.739399,0 -1.341482,-1.605553 -1.341482,-3.587846 0,-1.982294 0.602083,-3.587847 1.341482,-3.587847 0.739399,0 1.341481,1.605553 1.341481,3.587847 0,1.982293 -0.602082,3.587846 -1.341481,3.587846 z" class="cls-26" style="fill:#ffffff;stroke-width:0.352095"/>
      <path id="path89891" d="m 6.9993293,36.175932 -0.140838,0.242946 -0.154921,0.774609 -0.07042,0.85559 -0.04225,1.130224 0.204215,1.235853 0.204215,0.63025 c 0.48237,0 0.869674,-1.056285 0.869674,-2.327347 0,-1.271062 -0.394346,-2.542125 -0.869674,-2.542125" class="cls-26" style="fill:#ffffff;stroke-width:0.352095"/>
      <path id="path89893" d="m 5.9747333,44.256508 c -1.609073,0 -2.883656,-2.52804 -2.883656,-5.601828 0,-3.073788 1.306272,-5.633516 2.915345,-5.633516 m -0.894321,11.22126 c -1.609073,0 -2.883656,-2.52804 -2.883656,-5.601828 0,-3.073788 1.306271,-5.633516 2.915345,-5.633516" class="cls-33" style="fill:none;stroke:#ffffff;stroke-width:0.119712px;stroke-miterlimit:10"/>
      <path id="path89895" d="m 3.1051613,38.031472 -0.837986,-0.05633 m 0.81686,1.035159 -0.866153,-0.03521 m 0.92953,0.947135 -0.859111,-0.04929 m 0.961219,0.753483 -0.827423,-0.02817 m 1.017554,0.873195 -0.841507,-0.05281 m 1.056285,0.616166 -0.834465,-0.03873 m 1.056284,0.573914 -0.883758,-0.0669 m 1.190081,0.5211 h -0.869674 m 1.123182,0.376742 -0.830944,0.02113 m 1.158392,0.313364 h -0.837985 m -0.70419,-6.809513 -0.862632,-0.02465 m 1.017554,-0.767567 h -0.806297 m 1.056284,-0.70419 h -0.880237 m 1.056284,-0.528142 h -0.827422 m 1.056284,-0.436597 h -0.852069 m 1.904832,9.506559 -0.778129,0.02817 m -0.03873,-9.883302 h -0.855591 m 1.119662,-0.352095 h -0.85207 m 1.098536,-0.271113 h -0.837986 m 1.193602,-0.246476 h -0.866153" class="cls-34" style="fill:none;stroke:#ffffff;stroke-width:0.116191px;stroke-miterlimit:10"/>
      <path id="path89897" d="m 7.3232563,44.288197 c -1.545696,0 -2.770986,-2.528041 -2.770986,-5.601828 0,-3.073788 1.253458,-5.633517 2.816759,-5.633517 m -0.859112,11.221261 c -1.545696,0 -2.770986,-2.528041 -2.770986,-5.601828 0,-3.073788 1.253458,-5.633517 2.816759,-5.633517" class="cls-35" style="fill:none;stroke:#ffffff;stroke-width:0.116191px;stroke-miterlimit:10"/>
      <path id="path89899" d="m 4.5663543,38.063161 -0.802776,-0.05633 m 0.771088,1.031637 -0.834465,-0.03521 m 0.894321,0.936572 -0.827423,-0.04929 m 0.922488,0.778129 -0.778129,-0.04225 m 0.975302,0.876716 -0.806297,-0.05281 m 1.028117,0.616166 -0.799255,-0.03169 m 1.024596,0.573915 -0.848549,-0.07042 m 1.105578,0.517579 h -0.823902 m 1.07741,0.387304 -0.795734,0.02113 m 1.11262,0.309843 h -0.802777 m -0.672501,-6.809513 -0.827422,-0.02113 m 0.975302,-0.771088 h -0.78165 m 0.999949,-0.704189 h -0.845028 m 1.010512,-0.528143 h -0.778129 m 1.031638,-0.436597 h -0.834465 m 1.830893,9.50656 -0.746441,0.02817 m -0.03521,-9.883302 h -0.827423 m 1.07741,-0.352095 h -0.81686 m 1.056285,-0.271126 h -0.802776 m 1.147829,-0.246464 h -0.834464" class="cls-36" style="fill:none;stroke:#ffffff;stroke-width:0.116191px;stroke-miterlimit:10"/>
    </g>
  </g>
  <line id="line4971" y2="83.793182" x2="37.403534" y1="29.648045" x1="37.403534" class="cls-2" style="display:inline;fill:none;stroke:#231f20;stroke-width:0.176047px"/>
  <g id="g4212" inkscape:label="Roll_Noise" transform="matrix(0.55457094,0,0,0.55457094,44.301954,63.24196)" style="display:inline;opacity:1" inkscape:groupmode="layer">
    <g id="rollnoise" inkscape:label="rollnoise" transform="matrix(1.0763213,0,0,1,5.4624885,4.1661904) translate(35,0)" style="display:inline;stroke-width:0.963893">
      <g id="g89901-5" inkscape:label="Tire" transform="matrix(1.6753323,0,0,1.8031958,-76.848619,-2.8501886)" style="display:inline;mix-blend-mode:normal">
        <path id="path89885-8" d="m 4.3832653,44.147359 c -1.566822,0 -2.837884,-2.464664 -2.837884,-5.503242 0,-3.038578 1.271062,-5.517325 2.837884,-5.517325 h 3.320254 c 1.566822,0 2.8378837,2.464663 2.8378837,5.503241 0,3.038578 -1.2640197,5.517326 -2.8378837,5.517326 z" class="cls-31" style="fill:#231f20;stroke-width:0.352095"/>
        <path id="path89887-3" d="m 8.0274463,44.203694 c -1.584427,0 -2.816758,-2.464664 -2.816758,-5.549014 0,-3.084351 1.172475,-5.556056 2.753381,-5.556056" class="cls-32" style="fill:none;stroke:#ffffff;stroke-width:0.119712px;stroke-miterlimit:10"/>
        <path id="path89889-0" d="m 8.1260333,34.704176 c -0.873196,0 -1.577385,1.704139 -1.577385,3.806145 0,2.102006 0.704189,3.806145 1.577385,3.806145 0.873195,0 1.577384,-1.690055 1.577384,-3.802624 0,-2.112569 -0.704189,-3.806145 -1.577384,-3.806145 z m -0.140838,7.418638 c -0.739399,0 -1.341482,-1.605553 -1.341482,-3.587846 0,-1.982294 0.602083,-3.587847 1.341482,-3.587847 0.739399,0 1.341481,1.605553 1.341481,3.587847 0,1.982293 -0.602082,3.587846 -1.341481,3.587846 z" class="cls-26" style="fill:#ffffff;stroke-width:0.352095"/>
        <path id="path89891-6" d="m 6.9993293,36.175932 -0.140838,0.242946 -0.154921,0.774609 -0.07042,0.85559 -0.04225,1.130224 0.204215,1.235853 0.204215,0.63025 c 0.48237,0 0.869674,-1.056285 0.869674,-2.327347 0,-1.271062 -0.394346,-2.542125 -0.869674,-2.542125" class="cls-26" style="fill:#ffffff;stroke-width:0.352095"/>
        <path id="path89893-2" d="m 5.9747333,44.256508 c -1.609073,0 -2.883656,-2.52804 -2.883656,-5.601828 0,-3.073788 1.306272,-5.633516 2.915345,-5.633516 m -0.894321,11.22126 c -1.609073,0 -2.883656,-2.52804 -2.883656,-5.601828 0,-3.073788 1.306271,-5.633516 2.915345,-5.633516" class="cls-33" style="fill:none;stroke:#ffffff;stroke-width:0.119712px;stroke-miterlimit:10"/>
        <path id="path89895-2" d="m 3.1051613,38.031472 -0.837986,-0.05633 m 0.81686,1.035159 -0.866153,-0.03521 m 0.92953,0.947135 -0.859111,-0.04929 m 0.961219,0.753483 -0.827423,-0.02817 m 1.017554,0.873195 -0.841507,-0.05281 m 1.056285,0.616166 -0.834465,-0.03873 m 1.056284,0.573914 -0.883758,-0.0669 m 1.190081,0.5211 h -0.869674 m 1.123182,0.376742 -0.830944,0.02113 m 1.158392,0.313364 h -0.837985 m -0.70419,-6.809513 -0.862632,-0.02465 m 1.017554,-0.767567 h -0.806297 m 1.056284,-0.70419 h -0.880237 m 1.056284,-0.528142 h -0.827422 m 1.056284,-0.436597 h -0.852069 m 1.904832,9.506559 -0.778129,0.02817 m -0.03873,-9.883302 h -0.855591 m 1.119662,-0.352095 h -0.85207 m 1.098536,-0.271113 h -0.837986 m 1.193602,-0.246476 h -0.866153" class="cls-34" style="fill:none;stroke:#ffffff;stroke-width:0.116191px;stroke-miterlimit:10"/>
        <path id="path89897-5" d="m 7.3232563,44.288197 c -1.545696,0 -2.770986,-2.528041 -2.770986,-5.601828 0,-3.073788 1.253458,-5.633517 2.816759,-5.633517 m -0.859112,11.221261 c -1.545696,0 -2.770986,-2.528041 -2.770986,-5.601828 0,-3.073788 1.253458,-5.633517 2.816759,-5.633517" class="cls-35" style="fill:none;stroke:#ffffff;stroke-width:0.116191px;stroke-miterlimit:10"/>
        <path id="path89899-2" d="m 4.5663543,38.063161 -0.802776,-0.05633 m 0.771088,1.031637 -0.834465,-0.03521 m 0.894321,0.936572 -0.827423,-0.04929 m 0.922488,0.778129 -0.778129,-0.04225 m 0.975302,0.876716 -0.806297,-0.05281 m 1.028117,0.616166 -0.799255,-0.03169 m 1.024596,0.573915 -0.848549,-0.07042 m 1.105578,0.517579 h -0.823902 m 1.07741,0.387304 -0.795734,0.02113 m 1.11262,0.309843 h -0.802777 m -0.672501,-6.809513 -0.827422,-0.02113 m 0.975302,-0.771088 h -0.78165 m 0.999949,-0.704189 h -0.845028 m 1.010512,-0.528143 h -0.778129 m 1.031638,-0.436597 h -0.834465 m 1.830893,9.50656 -0.746441,0.02817 m -0.03521,-9.883302 h -0.827423 m 1.07741,-0.352095 h -0.81686 m 1.056285,-0.271126 h -0.802776 m 1.147829,-0.246464 h -0.834464" class="cls-36" style="fill:none;stroke:#ffffff;stroke-width:0.116191px;stroke-miterlimit:10"/>
      </g>
      <path style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.25503px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m -64.899571,55.716198 0.223986,-3.583757 10.415288,-0.056 8.847397,-5.599618 v 23.4624 l -9.015386,-5.599618 -10.07931,0.056 z" id="path4155"/>
      <path style="fill:none;stroke:#000000;stroke-width:0.25503px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m -41.493167,52.020448 c 1.915612,4.761382 1.598465,8.353224 0.391972,11.479218" id="path4157" sodipodi:nodetypes="cc"/>
      <path style="fill:none;stroke:#000000;stroke-width:0.25503px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m -38.077401,50.676542 c 2.288103,5.176655 2.396737,9.88628 0.503965,14.167033" id="path4159" sodipodi:nodetypes="cc"/>
      <path style="fill:none;stroke:#000000;stroke-width:0.25503px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m -34.829623,48.772672 c 2.268641,5.258753 3.559686,10.789061 0.503966,17.526804" id="path4161" sodipodi:nodetypes="cc"/>
      <g aria-label="dB" id="text4216" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.90527px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25503" inkscape:label="db Text">
        <path d="m -49.918098,60.243401 h -0.450288 v -0.280233 q -0.194008,0.16766 -0.404781,0.261071 -0.210773,0.09341 -0.457474,0.09341 -0.47903,0 -0.761658,-0.368853 -0.280233,-0.368853 -0.280233,-1.02273 0,-0.340111 0.09581,-0.605973 0.0982,-0.265862 0.263467,-0.452684 0.16287,-0.182031 0.378434,-0.277837 0.217959,-0.09581 0.450288,-0.09581 0.210774,0 0.373644,0.04551 0.16287,0.04311 0.342507,0.136523 v -1.159253 h 0.450288 z m -0.450288,-0.658667 v -1.535292 q -0.182032,-0.08143 -0.325741,-0.112572 -0.143709,-0.03114 -0.313765,-0.03114 -0.378434,0 -0.589207,0.263466 -0.210773,0.263467 -0.210773,0.747288 0,0.476635 0.16287,0.725731 0.16287,0.2467 0.522143,0.2467 0.191612,0 0.388015,-0.08383 0.196402,-0.08623 0.366458,-0.220354 z" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.90527px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.25503" id="path25996"/>
        <path d="m -46.30621,59.146421 q 0,0.265862 -0.100596,0.46945 -0.100596,0.203588 -0.270652,0.335321 -0.201193,0.15808 -0.443103,0.225144 -0.239515,0.06706 -0.610764,0.06706 h -1.26464 V 56.67702 h 1.056262 q 0.39041,0 0.584417,0.02874 0.194007,0.02874 0.371249,0.119758 0.196402,0.102991 0.285023,0.265861 0.08862,0.160475 0.08862,0.38562 0,0.253886 -0.129338,0.433522 -0.129338,0.177241 -0.344902,0.285023 v 0.01916 q 0.361668,0.07425 0.570046,0.318555 0.208378,0.241911 0.208378,0.613159 z m -0.797585,-1.607146 q 0,-0.129339 -0.04311,-0.217959 -0.04311,-0.08862 -0.138919,-0.143709 -0.112572,-0.06467 -0.273047,-0.07904 -0.160475,-0.01677 -0.397595,-0.01677 h -0.565256 v 1.029915 h 0.613159 q 0.222749,0 0.354483,-0.02156 0.131733,-0.02395 0.244305,-0.09581 0.112572,-0.07185 0.15808,-0.184426 0.0479,-0.114968 0.0479,-0.270652 z m 0.304184,1.626307 q 0,-0.215563 -0.06467,-0.342506 -0.06467,-0.126943 -0.234725,-0.215564 -0.114967,-0.05988 -0.280232,-0.07664 -0.162871,-0.01916 -0.397596,-0.01916 h -0.744892 v 1.326914 h 0.62753 q 0.31137,0 0.510167,-0.03114 0.198798,-0.03353 0.325741,-0.119758 0.134128,-0.09341 0.196402,-0.213168 0.06227,-0.119758 0.06227,-0.308975 z" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.90527px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.25503" id="path25998"/>
      </g>
      <g aria-label="70" id="RollNoiseValue" inkscape:label="RollNoiseValue" transform="translate(-71.542318,-39.556071)"><path d="M13.52 94.41L13.52 95.42L11.22 99.50L9.76 99.50L12.15 95.38L9.53 95.38L9.53 94.41L13.52 94.41ZM18.57 96.95L18.57 96.95Q18.57 97.60 18.45 98.10Q18.34 98.61 18.09 98.94L18.09 98.94Q17.84 99.27 17.44 99.44Q17.05 99.61 16.46 99.61L16.46 99.61Q15.89 99.61 15.49 99.44Q15.09 99.26 14.84 98.93L14.84 98.93Q14.58 98.59 14.47 98.10Q14.36 97.60 14.36 96.96L14.36 96.96Q14.36 96.29 14.48 95.81Q14.59 95.32 14.84 94.98L14.84 94.98Q15.10 94.64 15.50 94.48Q15.90 94.31 16.46 94.31L16.46 94.31Q17.05 94.31 17.45 94.48Q17.84 94.65 18.10 95.00L18.10 95.00Q18.34 95.33 18.46 95.82Q18.57 96.31 18.57 96.95ZM17.25 96.95L17.25 96.95Q17.25 96.03 17.07 95.64Q16.89 95.25 16.46 95.25L16.46 95.25Q16.04 95.25 15.86 95.64Q15.68 96.03 15.68 96.96L15.68 96.96Q15.68 97.87 15.87 98.27Q16.05 98.67 16.46 98.67L16.46 98.67Q16.88 98.67 17.06 98.27Q17.25 97.87 17.25 96.95Z"/></g>
      <g aria-label="ABC" id="RollNoiseClassA" style="" inkscape:label="RollNoiseClassA">
        <path d="m -51.80162,76.675308 h -1.90175 l -0.493401,-1.441881 h -2.644247 l -0.493402,1.441881 h -1.853847 l 2.634667,-7.132761 h 2.117314 z m -2.840649,-2.749634 -0.876626,-2.558021 -0.876625,2.558021 z" style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9.81054px;font-family:Verdana;-inkscape-font-specification:'Verdana, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal" id="path50736"/>
        <path d="m -47.716089,75.304084 q 0,0.332327 -0.125745,0.586812 -0.125746,0.254485 -0.338316,0.419152 -0.251491,0.1976 -0.553879,0.28143 -0.299394,0.08383 -0.763454,0.08383 h -1.580801 v -4.457977 h 1.320328 q 0.488012,0 0.730521,0.03593 0.242509,0.03593 0.464061,0.149697 0.245503,0.12874 0.356279,0.332328 0.110776,0.200594 0.110776,0.482024 0,0.317358 -0.161673,0.541903 -0.161673,0.221552 -0.431128,0.356279 v 0.02395 q 0.452085,0.09281 0.712558,0.398194 0.260473,0.302388 0.260473,0.766448 z m -0.996982,-2.008934 q 0,-0.161673 -0.05389,-0.272449 -0.05389,-0.110776 -0.173649,-0.179636 -0.140715,-0.08084 -0.341309,-0.0988 -0.200594,-0.02096 -0.496994,-0.02096 h -0.70657 v 1.287394 h 0.766449 q 0.278436,0 0.443103,-0.02694 0.164667,-0.02994 0.305382,-0.119758 0.140715,-0.08982 0.1976,-0.230533 0.05988,-0.143709 0.05988,-0.338315 z m 0.38023,2.032885 q 0,-0.269455 -0.08084,-0.428133 -0.08084,-0.158679 -0.293406,-0.269455 -0.143709,-0.07485 -0.350291,-0.09581 -0.203588,-0.02395 -0.496994,-0.02395 h -0.931116 v 1.658643 h 0.784413 q 0.389212,0 0.637709,-0.03892 0.248497,-0.04191 0.407176,-0.149697 0.16766,-0.116764 0.245503,-0.266461 0.07784,-0.149697 0.07784,-0.386218 z" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.13159px;font-family:Verdana;-inkscape-font-specification:'Verdana, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.25503" id="path50738"/>
        <path d="m -43.43176,76.351963 q -0.164667,0.07185 -0.299394,0.134727 -0.131733,0.06287 -0.347297,0.131733 -0.18263,0.05688 -0.398194,0.09581 -0.21257,0.04192 -0.470049,0.04192 -0.485018,0 -0.883212,-0.134728 -0.3952,-0.137721 -0.688606,-0.428133 -0.287419,-0.284425 -0.449091,-0.72154 -0.161673,-0.440109 -0.161673,-1.020933 0,-0.550886 0.155685,-0.985007 0.155685,-0.434121 0.449091,-0.733515 0.284424,-0.290412 0.685612,-0.443103 0.404182,-0.152691 0.895188,-0.152691 0.359273,0 0.715552,0.08682 0.359273,0.08682 0.796388,0.305382 v 0.703576 h -0.04491 q -0.368255,-0.308376 -0.730521,-0.449091 -0.362267,-0.140715 -0.775431,-0.140715 -0.338315,0 -0.610764,0.110775 -0.269454,0.107782 -0.482024,0.338316 -0.206582,0.224545 -0.323346,0.568848 -0.11377,0.341309 -0.11377,0.790401 0,0.470048 0.125746,0.808363 0.128739,0.338316 0.329333,0.550885 0.209576,0.221552 0.488013,0.329334 0.28143,0.104788 0.5928,0.104788 0.428133,0 0.802376,-0.146703 0.374242,-0.146703 0.700582,-0.44011 h 0.04192 z" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.13159px;font-family:Verdana;-inkscape-font-specification:'Verdana, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.25503" id="path50740"/>
      </g>
      <g aria-label="ABC" id="RollNoiseClassC" style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:7.63353px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;display:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25503" inkscape:label="RollNoiseClassC">
        <path d="m -56.225239,77.440216 h -0.631721 l -0.437116,-1.242485 h -1.928097 l -0.437115,1.242485 h -0.601783 l 1.622716,-4.457977 h 0.7904 z m -1.251467,-1.751455 -0.781418,-2.18857 -0.784413,2.18857 z" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.13159px;font-family:Verdana;-inkscape-font-specification:'Verdana, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.25503" id="path50743"/>
        <path d="m -52.186413,76.068991 q 0,0.332328 -0.125746,0.586813 -0.125745,0.254485 -0.338315,0.419151 -0.251491,0.1976 -0.553879,0.281431 -0.299394,0.08383 -0.763455,0.08383 h -1.5808 v -4.457977 h 1.320327 q 0.488012,0 0.730522,0.03593 0.242509,0.03593 0.46406,0.149697 0.245504,0.12874 0.356279,0.332328 0.110776,0.200594 0.110776,0.482024 0,0.317358 -0.161673,0.541903 -0.161672,0.221552 -0.431127,0.356279 v 0.02395 q 0.452085,0.09281 0.712558,0.398194 0.260473,0.302388 0.260473,0.766448 z m -0.996983,-2.008934 q 0,-0.161672 -0.05389,-0.272448 -0.05389,-0.110776 -0.173648,-0.179637 -0.140715,-0.08084 -0.341309,-0.0988 -0.200594,-0.02096 -0.496994,-0.02096 h -0.70657 v 1.287394 h 0.766448 q 0.278437,0 0.443104,-0.02694 0.164666,-0.02994 0.305382,-0.119758 0.140715,-0.08982 0.1976,-0.230533 0.05988,-0.143709 0.05988,-0.338316 z m 0.380231,2.032886 q 0,-0.269455 -0.08084,-0.428134 -0.08084,-0.158678 -0.293406,-0.269454 -0.143709,-0.07485 -0.350291,-0.09581 -0.203588,-0.02395 -0.496994,-0.02395 h -0.931115 v 1.658643 h 0.784412 q 0.389212,0 0.637709,-0.03892 0.248497,-0.04192 0.407176,-0.149697 0.167661,-0.116764 0.245503,-0.266461 0.07784,-0.149697 0.07784,-0.386218 z" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.13159px;font-family:Verdana;-inkscape-font-specification:'Verdana, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.25503" id="path50745"/>
        <path d="m -47.809874,77.579135 q -0.79519,0 -1.470623,-0.234725 -0.670642,-0.234725 -1.154462,-0.699384 -0.483821,-0.46466 -0.752078,-1.159253 -0.263467,-0.694594 -0.263467,-1.604752 0,-0.847884 0.253886,-1.537687 0.253886,-0.689804 0.737707,-1.183205 0.464659,-0.47424 1.149673,-0.732916 0.689803,-0.258677 1.504155,-0.258677 0.450288,0 0.809561,0.05269 0.364063,0.0479 0.670642,0.129338 0.320951,0.09102 0.579627,0.205983 0.263467,0.110177 0.459869,0.205983 v 1.729299 h -0.210773 q -0.134129,-0.114967 -0.340112,-0.273047 -0.201192,-0.15808 -0.459869,-0.31137 -0.263466,-0.153289 -0.570046,-0.258676 -0.306579,-0.105387 -0.656271,-0.105387 -0.388015,0 -0.737707,0.124548 -0.349692,0.119758 -0.646691,0.402386 -0.282628,0.273047 -0.459869,0.723335 -0.172451,0.450289 -0.172451,1.092189 0,0.670643 0.186822,1.120931 0.191612,0.450289 0.47903,0.708965 0.292209,0.263467 0.651481,0.378434 0.359273,0.110177 0.708965,0.110177 0.335321,0 0.661062,-0.100596 0.330531,-0.100597 0.608368,-0.273048 0.234725,-0.138918 0.435918,-0.296998 0.201193,-0.15808 0.330531,-0.273048 h 0.191612 v 1.705348 q -0.268257,0.119758 -0.512562,0.225144 -0.244306,0.105387 -0.512563,0.182032 -0.349692,0.100596 -0.656271,0.15329 -0.30658,0.05269 -0.843094,0.05269 z" style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9.81054px;font-family:Verdana;-inkscape-font-specification:'Verdana, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal" id="path50747"/>
      </g>
      <g aria-label="ABC" id="RollNoiseClassB" style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:7.63353px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;display:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25503" inkscape:label="RollNoiseClassB">
        <path d="m -56.877918,77.301292 h -0.631722 l -0.437115,-1.242485 h -1.928098 l -0.437115,1.242485 h -0.601782 l 1.622716,-4.457977 h 0.7904 z m -1.251467,-1.751455 -0.781419,-2.18857 -0.784412,2.18857 z" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.13159px;font-family:Verdana;-inkscape-font-specification:'Verdana, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.25503" id="path50750"/>
        <path d="m -49.787073,75.116914 q 0,0.517353 -0.210773,0.924529 -0.205983,0.407176 -0.570046,0.675432 -0.421547,0.31616 -0.929319,0.450289 -0.502982,0.134128 -1.279011,0.134128 h -3.113696 v -7.13276 h 2.768795 q 0.862254,0 1.259849,0.05748 0.402386,0.05748 0.79519,0.253886 0.407176,0.205983 0.603579,0.555675 0.201192,0.344902 0.201192,0.7904 0,0.517353 -0.273047,0.914948 -0.273047,0.392805 -0.771239,0.613159 v 0.03832 q 0.699385,0.138919 1.10656,0.574837 0.411966,0.435917 0.411966,1.149672 z m -2.356829,-2.931665 q 0,-0.177241 -0.09102,-0.354482 -0.08623,-0.177242 -0.31137,-0.263467 -0.201193,-0.07664 -0.502982,-0.08143 -0.296999,-0.0096 -0.838303,-0.0096 h -0.172451 v 1.508946 h 0.287418 q 0.435918,0 0.742497,-0.01437 0.30658,-0.01437 0.483821,-0.09581 0.249096,-0.110177 0.32574,-0.282628 0.07665,-0.177241 0.07665,-0.407176 z m 0.450289,2.902924 q 0,-0.340112 -0.134129,-0.522143 -0.129338,-0.186822 -0.445498,-0.277838 -0.215563,-0.06227 -0.593997,-0.06706 -0.378434,-0.0048 -0.7904,-0.0048 h -0.402386 v 1.777203 h 0.134129 q 0.776029,0 1.11135,-0.0048 0.335321,-0.0048 0.617949,-0.124547 0.287418,-0.119758 0.392805,-0.31616 0.110177,-0.201193 0.110177,-0.459869 z" style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9.81054px;font-family:Verdana;-inkscape-font-specification:'Verdana, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal" id="path50752"/>
        <path d="m -45.285384,76.977947 q -0.164667,0.07185 -0.299394,0.134727 -0.131734,0.06287 -0.347297,0.131734 -0.182631,0.05688 -0.398194,0.09581 -0.21257,0.04192 -0.470049,0.04192 -0.485018,0 -0.883212,-0.134728 -0.395201,-0.137721 -0.688607,-0.428133 -0.287418,-0.284424 -0.449091,-0.72154 -0.161673,-0.440109 -0.161673,-1.020933 0,-0.550885 0.155685,-0.985007 0.155685,-0.434121 0.449091,-0.733515 0.284425,-0.290412 0.685613,-0.443103 0.404182,-0.152691 0.895188,-0.152691 0.359273,0 0.715552,0.08682 0.359272,0.08682 0.796388,0.305382 v 0.703576 h -0.04491 q -0.368255,-0.308376 -0.730522,-0.449091 -0.362267,-0.140715 -0.77543,-0.140715 -0.338316,0 -0.610764,0.110776 -0.269455,0.107781 -0.482025,0.338315 -0.206581,0.224545 -0.323345,0.568848 -0.11377,0.34131 -0.11377,0.790401 0,0.470048 0.125746,0.808364 0.128739,0.338315 0.329333,0.550885 0.209576,0.221551 0.488012,0.329333 0.281431,0.104788 0.592801,0.104788 0.428133,0 0.802376,-0.146703 0.374242,-0.146703 0.700582,-0.440109 h 0.04191 z" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.13159px;font-family:Verdana;-inkscape-font-specification:'Verdana, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.25503" id="path50754"/>
      </g>
    </g>
  </g>
  <g inkscape:groupmode="layer" id="layer7" inkscape:label="Snowflake" style="display:inline">
    <g id="snowForSnowAndIce" transform="matrix(0.3520948,0,0,0.3520948,1.7914081,1.1657621)" style="display:none">
      <path id="path5201" d="m 99.677159,282.13043 9.580001,16.45 m -7.45,-17 -0.6,3.13 -2.880001,-0.8 m 8.590001,14.76 0.6,-3.13 2.88,0.8 m -14.560001,-5.94 17.370001,0.07 m -16.900001,-2.24 2.2,2.26 -2,2.31 m 15.620001,-0.21 -2.2,-2.26 2,-2.31 m -11.24,11 7.59,-17 m -9.220001,15.08 2.790001,-0.87 0.93,3.11 m 7,-15 -2.8,0.87 -0.93,-3.11" class="cls-53" style="fill:none;stroke:#231f20;stroke-width:1.15px;stroke-linecap:round;stroke-linejoin:round"/>
      <polygon id="polygon5203" points="88.3,278.88 97.83,255.42 102.97,267.57 104.7,263.38 119.38,294.3 78.02,294.3 85.56,275.01 " class="cls-27" style="fill:none;stroke:#231f20;stroke-width:0.8px;stroke-linecap:round;stroke-linejoin:round" transform="translate(4.5571595,8.5204308)"/>
    </g>
  </g>
  <g id="layer8" inkscape:label="Mountain">
    <g transform="matrix(0.36590952,0,0,-0.36590952,-2.1566855,110.9219)" id="iceGroupForSnowAndIce" style="display:none">
      <g id="g791">
        <g clip-path="url(#clipPath2159)" id="g789">
          <g transform="translate(122.1887,60.9355)" id="g787">
            <path id="path785" style="fill:none;stroke:#231f20;stroke-width:0.178;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 36.111,-63.952"/>
          </g>
        </g>
      </g>
      <g id="g799">
        <g clip-path="url(#clipPath2171)" id="g797">
          <g transform="translate(123.8342,61.0131)" id="g795">
            <path id="path793" style="fill:none;stroke:#231f20;stroke-width:0.178;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 36.111,-63.952"/>
          </g>
        </g>
      </g>
      <g id="g807">
        <g clip-path="url(#clipPath2183)" id="g805">
          <g transform="translate(125.4798,61.0907)" id="g803">
            <path id="path801" style="fill:none;stroke:#231f20;stroke-width:0.178;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 36.111,-63.952"/>
          </g>
        </g>
      </g>
      <g id="g815">
        <g clip-path="url(#clipPath2195)" id="g813">
          <g transform="translate(127.1253,61.1683)" id="g811">
            <path id="path809" style="fill:none;stroke:#231f20;stroke-width:0.178;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 36.111,-63.952"/>
          </g>
        </g>
      </g>
      <g id="g823">
        <g clip-path="url(#clipPath2207)" id="g821">
          <g transform="translate(128.7708,61.2459)" id="g819">
            <path id="path817" style="fill:none;stroke:#231f20;stroke-width:0.178;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 36.111,-63.952"/>
          </g>
        </g>
      </g>
      <g id="g831">
        <g clip-path="url(#clipPath2219)" id="g829">
          <g transform="translate(130.4164,61.3235)" id="g827">
            <path id="path825" style="fill:none;stroke:#231f20;stroke-width:0.178;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 36.111,-63.952"/>
          </g>
        </g>
      </g>
      <g id="g839">
        <g clip-path="url(#clipPath2231)" id="g837">
          <g transform="translate(132.0619,61.4011)" id="g835">
            <path id="path833" style="fill:none;stroke:#231f20;stroke-width:0.178;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 36.111,-63.952"/>
          </g>
        </g>
      </g>
      <g id="g847">
        <g clip-path="url(#clipPath2243)" id="g845">
          <g transform="translate(133.7074,61.4787)" id="g843">
            <path id="path841" style="fill:none;stroke:#231f20;stroke-width:0.178;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 36.111,-63.952"/>
          </g>
        </g>
      </g>
      <g id="g855">
        <g clip-path="url(#clipPath2255)" id="g853">
          <g transform="translate(135.3529,61.5563)" id="g851">
            <path id="path849" style="fill:none;stroke:#231f20;stroke-width:0.178;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 36.111,-63.952"/>
          </g>
        </g>
      </g>
      <g id="g863">
        <g clip-path="url(#clipPath2267)" id="g861">
          <g transform="translate(136.9984,61.6339)" id="g859">
            <path id="path857" style="fill:none;stroke:#231f20;stroke-width:0.178;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 36.111,-63.952"/>
          </g>
        </g>
      </g>
      <g id="g871">
        <g clip-path="url(#clipPath2279)" id="g869">
          <g transform="translate(138.644,61.7115)" id="g867">
            <path id="path865" style="fill:none;stroke:#231f20;stroke-width:0.178;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 36.111,-63.952"/>
          </g>
        </g>
      </g>
      <g id="g879">
        <g clip-path="url(#clipPath2291)" id="g877">
          <g transform="translate(140.2895,61.7891)" id="g875">
            <path id="path873" style="fill:none;stroke:#231f20;stroke-width:0.178;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 36.111,-63.952"/>
          </g>
        </g>
      </g>
      <g id="g887">
        <g clip-path="url(#clipPath2303)" id="g885">
          <g transform="translate(141.935,61.8667)" id="g883">
            <path id="path881" style="fill:none;stroke:#231f20;stroke-width:0.178;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 36.111,-63.952"/>
          </g>
        </g>
      </g>
      <g id="g895">
        <g clip-path="url(#clipPath2315)" id="g893">
          <g transform="translate(143.5806,61.9443)" id="g891">
            <path id="path889" style="fill:none;stroke:#231f20;stroke-width:0.178;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 36.111,-63.952"/>
          </g>
        </g>
      </g>
      <g id="g903">
        <g clip-path="url(#clipPath2327)" id="g901">
          <g transform="translate(145.2261,62.0219)" id="g899">
            <path id="path897" style="fill:none;stroke:#231f20;stroke-width:0.178;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 36.111,-63.952"/>
          </g>
        </g>
      </g>
      <g id="g911">
        <g clip-path="url(#clipPath2339)" id="g909">
          <g transform="translate(146.8716,62.0995)" id="g907">
            <path id="path905" style="fill:none;stroke:#231f20;stroke-width:0.178;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 36.111,-63.952"/>
          </g>
        </g>
      </g>
      <g id="g919">
        <g clip-path="url(#clipPath2351)" id="g917">
          <g transform="translate(148.5171,62.1771)" id="g915">
            <path id="path913" style="fill:none;stroke:#231f20;stroke-width:0.178;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 36.111,-63.952"/>
          </g>
        </g>
      </g>
      <g id="g927">
        <g clip-path="url(#clipPath2363)" id="g925">
          <g transform="translate(150.1627,62.2547)" id="g923">
            <path id="path921" style="fill:none;stroke:#231f20;stroke-width:0.178;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 36.111,-63.952"/>
          </g>
        </g>
      </g>
      <g transform="translate(148.2105,11.4239)" id="g931">
        <path id="path929" style="fill:none;stroke:#231f20;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" d="m 0,0 9.467,16.806 2.197,-3.442 1.247,3.229 2.551,-8.674 1.871,7.257 1.53,-2.494 2.155,6.817 L 32.055,0 Z"/>
      </g>
      <g transform="translate(184.9018,8.9039)" id="g935">
        <path id="path933" style="fill:none;stroke:#231f20;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" d="m 0,0 h -41.366 l 20.683,36.05 z"/>
      </g>
    </g>
  </g>
  <g inkscape:groupmode="layer" id="layer5" inkscape:label="Text" style="display:inline;mix-blend-mode:normal">
    <g aria-label="C3" id="tyreClass" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944px;line-height:1.25;font-family:Verdana;-inkscape-font-specification:'Verdana, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583" inkscape:label="tyre class"><path d="M68.64 26.02L68.64 26.42Q68.54 26.46 68.47 26.49Q68.39 26.53 68.27 26.57L68.27 26.57Q68.16 26.60 68.04 26.62Q67.92 26.65 67.77 26.65L67.77 26.65Q67.50 26.65 67.27 26.57Q67.04 26.49 66.88 26.32L66.88 26.32Q66.71 26.16 66.62 25.91Q66.53 25.66 66.53 25.33L66.53 25.33Q66.53 25.02 66.62 24.77Q66.71 24.52 66.87 24.35L66.87 24.35Q67.04 24.18 67.27 24.10Q67.49 24.01 67.78 24.01L67.78 24.01Q67.98 24.01 68.18 24.06Q68.39 24.11 68.64 24.23L68.64 24.23L68.64 24.63L68.61 24.63Q68.40 24.46 68.20 24.38Q67.99 24.30 67.75 24.30L67.75 24.30Q67.56 24.30 67.41 24.36Q67.25 24.42 67.13 24.55L67.13 24.55Q67.01 24.68 66.95 24.88Q66.88 25.07 66.88 25.33L66.88 25.33Q66.88 25.60 66.95 25.79Q67.02 25.98 67.14 26.11L67.14 26.11Q67.26 26.23 67.42 26.29Q67.58 26.35 67.76 26.35L67.76 26.35Q68.00 26.35 68.21 26.27Q68.43 26.19 68.61 26.02L68.61 26.02L68.64 26.02ZM70.55 25.37L70.55 25.37Q70.63 25.45 70.68 25.56Q70.74 25.67 70.74 25.85L70.74 25.85Q70.74 26.02 70.67 26.17Q70.61 26.31 70.50 26.42L70.50 26.42Q70.37 26.54 70.19 26.60Q70.02 26.65 69.81 26.65L69.81 26.65Q69.60 26.65 69.40 26.60Q69.19 26.55 69.06 26.49L69.06 26.49L69.06 26.14L69.09 26.14Q69.23 26.23 69.43 26.29Q69.62 26.36 69.81 26.36L69.81 26.36Q69.91 26.36 70.04 26.32Q70.16 26.29 70.23 26.22L70.23 26.22Q70.31 26.14 70.35 26.05Q70.39 25.96 70.39 25.82L70.39 25.82Q70.39 25.68 70.34 25.59Q70.30 25.50 70.22 25.45L70.22 25.45Q70.15 25.40 70.04 25.38Q69.93 25.36 69.80 25.36L69.80 25.36L69.65 25.36L69.65 25.08L69.77 25.08Q70.03 25.08 70.18 24.97Q70.34 24.86 70.34 24.65L70.34 24.65Q70.34 24.56 70.30 24.49Q70.26 24.42 70.19 24.38L70.19 24.38Q70.11 24.33 70.03 24.32Q69.95 24.30 69.84 24.30L69.84 24.30Q69.68 24.30 69.50 24.36Q69.31 24.41 69.15 24.52L69.15 24.52L69.13 24.52L69.13 24.16Q69.26 24.10 69.46 24.05Q69.66 24.00 69.85 24.00L69.85 24.00Q70.04 24.00 70.18 24.04Q70.32 24.07 70.43 24.15L70.43 24.15Q70.56 24.23 70.62 24.34Q70.68 24.46 70.68 24.62L70.68 24.62Q70.68 24.83 70.53 24.99Q70.38 25.14 70.18 25.18L70.18 25.18L70.18 25.21Q70.26 25.22 70.37 25.27Q70.48 25.31 70.55 25.37Z"/></g>
    <g aria-label="11R22.5 148/145K" id="tyreSize" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944px;line-height:1.25;font-family:Verdana;-inkscape-font-specification:'Verdana, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583" inkscape:label="tyre size designation"><path d="M4.85 26.34L4.85 26.60L3.48 26.60L3.48 26.34L4.00 26.34L4.00 24.63L3.48 24.63L3.48 24.40Q3.58 24.40 3.71 24.38Q3.83 24.37 3.89 24.33L3.89 24.33Q3.97 24.29 4.02 24.22Q4.06 24.16 4.07 24.05L4.07 24.05L4.33 24.05L4.33 26.34L4.85 26.34ZM7.08 26.34L7.08 26.60L5.70 26.60L5.70 26.34L6.23 26.34L6.23 24.63L5.70 24.63L5.70 24.40Q5.81 24.40 5.93 24.38Q6.05 24.37 6.12 24.33L6.12 24.33Q6.20 24.29 6.24 24.22Q6.29 24.16 6.29 24.05L6.29 24.05L6.56 24.05L6.56 26.34L7.08 26.34ZM8.94 25.49L9.90 26.60L9.46 26.60L8.61 25.59L8.13 25.59L8.13 26.60L7.79 26.60L7.79 24.06L8.50 24.06Q8.74 24.06 8.89 24.09Q9.04 24.12 9.17 24.19L9.17 24.19Q9.30 24.28 9.38 24.41Q9.46 24.54 9.46 24.75L9.46 24.75Q9.46 25.02 9.32 25.21Q9.18 25.39 8.94 25.49L8.94 25.49ZM9.11 24.77L9.11 24.77Q9.11 24.66 9.07 24.58Q9.03 24.49 8.94 24.43L8.94 24.43Q8.87 24.39 8.77 24.37Q8.67 24.35 8.53 24.35L8.53 24.35L8.13 24.35L8.13 25.31L8.47 25.31Q8.63 25.31 8.75 25.28Q8.87 25.25 8.96 25.17L8.96 25.17Q9.03 25.10 9.07 25.01Q9.11 24.91 9.11 24.77ZM11.88 26.31L11.88 26.60L10.16 26.60L10.16 26.24Q10.34 26.09 10.52 25.94Q10.70 25.78 10.85 25.63L10.85 25.63Q11.18 25.31 11.30 25.12Q11.43 24.94 11.43 24.72L11.43 24.72Q11.43 24.52 11.29 24.41Q11.16 24.30 10.93 24.30L10.93 24.30Q10.77 24.30 10.59 24.35Q10.41 24.41 10.24 24.52L10.24 24.52L10.22 24.52L10.22 24.16Q10.34 24.10 10.55 24.05Q10.75 24.00 10.94 24.00L10.94 24.00Q11.33 24.00 11.55 24.19Q11.77 24.38 11.77 24.70L11.77 24.70Q11.77 24.85 11.74 24.97Q11.70 25.10 11.63 25.21L11.63 25.21Q11.56 25.32 11.47 25.42Q11.38 25.52 11.25 25.65L11.25 25.65Q11.07 25.83 10.88 26.00Q10.68 26.16 10.51 26.31L10.51 26.31L11.88 26.31ZM14.11 26.31L14.11 26.60L12.38 26.60L12.38 26.24Q12.56 26.09 12.74 25.94Q12.92 25.78 13.08 25.63L13.08 25.63Q13.41 25.31 13.53 25.12Q13.65 24.94 13.65 24.72L13.65 24.72Q13.65 24.52 13.52 24.41Q13.39 24.30 13.15 24.30L13.15 24.30Q13.00 24.30 12.82 24.35Q12.64 24.41 12.46 24.52L12.46 24.52L12.45 24.52L12.45 24.16Q12.57 24.10 12.77 24.05Q12.97 24.00 13.16 24.00L13.16 24.00Q13.55 24.00 13.78 24.19Q14.00 24.38 14.00 24.70L14.00 24.70Q14.00 24.85 13.96 24.97Q13.93 25.10 13.85 25.21L13.85 25.21Q13.79 25.32 13.70 25.42Q13.61 25.52 13.48 25.65L13.48 25.65Q13.30 25.83 13.10 26.00Q12.91 26.16 12.74 26.31L12.74 26.31L14.11 26.31ZM15.17 26.11L15.17 26.60L14.77 26.60L14.77 26.11L15.17 26.11ZM17.58 25.79L17.58 25.79Q17.58 25.97 17.52 26.13Q17.45 26.29 17.34 26.41L17.34 26.41Q17.22 26.52 17.05 26.59Q16.88 26.65 16.65 26.65L16.65 26.65Q16.45 26.65 16.25 26.61Q16.06 26.57 15.93 26.50L15.93 26.50L15.93 26.14L15.95 26.14Q16.09 26.23 16.28 26.29Q16.47 26.36 16.65 26.36L16.65 26.36Q16.77 26.36 16.88 26.32Q17.00 26.29 17.09 26.20L17.09 26.20Q17.16 26.13 17.20 26.03Q17.24 25.92 17.24 25.79L17.24 25.79Q17.24 25.66 17.19 25.57Q17.15 25.48 17.07 25.42L17.07 25.42Q16.98 25.36 16.85 25.33Q16.72 25.30 16.57 25.30L16.57 25.30Q16.42 25.30 16.28 25.33Q16.14 25.35 16.04 25.37L16.04 25.37L16.04 24.06L17.57 24.06L17.57 24.35L16.37 24.35L16.37 25.03Q16.44 25.02 16.52 25.02Q16.59 25.02 16.65 25.02L16.65 25.02Q16.86 25.02 17.01 25.05Q17.17 25.09 17.30 25.18L17.30 25.18Q17.43 25.27 17.51 25.42Q17.58 25.57 17.58 25.79ZM20.92 26.34L20.92 26.60L19.54 26.60L19.54 26.34L20.07 26.34L20.07 24.63L19.54 24.63L19.54 24.40Q19.65 24.40 19.77 24.38Q19.89 24.37 19.95 24.33L19.95 24.33Q20.03 24.29 20.08 24.22Q20.12 24.16 20.13 24.05L20.13 24.05L20.40 24.05L20.40 26.34L20.92 26.34ZM23.34 25.61L23.34 25.88L22.97 25.88L22.97 26.60L22.64 26.60L22.64 25.88L21.42 25.88L21.42 25.49L22.65 24.06L22.97 24.06L22.97 25.61L23.34 25.61ZM21.65 25.61L22.64 25.61L22.64 24.46L21.65 25.61ZM25.53 25.89L25.53 25.89Q25.53 26.22 25.27 26.44Q25.02 26.66 24.63 26.66L24.63 26.66Q24.21 26.66 23.97 26.44Q23.72 26.23 23.72 25.90L23.72 25.90Q23.72 25.69 23.84 25.51Q23.97 25.34 24.19 25.24L24.19 25.24L24.19 25.23Q23.99 25.12 23.89 24.99Q23.79 24.86 23.79 24.67L23.79 24.67Q23.79 24.38 24.03 24.19Q24.26 24.00 24.63 24.00L24.63 24.00Q25.01 24.00 25.23 24.18Q25.46 24.36 25.46 24.64L25.46 24.64Q25.46 24.82 25.35 24.98Q25.25 25.15 25.04 25.24L25.04 25.24L25.04 25.26Q25.28 25.36 25.40 25.51Q25.53 25.66 25.53 25.89ZM25.12 24.65L25.12 24.65Q25.12 24.47 24.98 24.36Q24.84 24.25 24.62 24.25L24.62 24.25Q24.41 24.25 24.27 24.35Q24.13 24.45 24.13 24.63L24.13 24.63Q24.13 24.75 24.20 24.84Q24.27 24.93 24.41 25.00L24.41 25.00Q24.48 25.03 24.59 25.08Q24.71 25.13 24.83 25.16L24.83 25.16Q24.99 25.05 25.06 24.93Q25.12 24.81 25.12 24.65ZM25.18 25.92L25.18 25.92Q25.18 25.77 25.11 25.67Q25.04 25.58 24.84 25.48L24.84 25.48Q24.76 25.44 24.66 25.41Q24.57 25.38 24.41 25.32L24.41 25.32Q24.25 25.40 24.16 25.55Q24.07 25.69 24.07 25.87L24.07 25.87Q24.07 26.10 24.23 26.25Q24.38 26.40 24.63 26.40L24.63 26.40Q24.88 26.40 25.03 26.28Q25.18 26.15 25.18 25.92ZM26.91 23.94L27.21 23.94L25.98 27.12L25.69 27.12L26.91 23.94ZM29.18 26.34L29.18 26.60L27.80 26.60L27.80 26.34L28.33 26.34L28.33 24.63L27.80 24.63L27.80 24.40Q27.91 24.40 28.03 24.38Q28.16 24.37 28.22 24.33L28.22 24.33Q28.30 24.29 28.34 24.22Q28.39 24.16 28.40 24.05L28.40 24.05L28.66 24.05L28.66 26.34L29.18 26.34ZM31.61 25.61L31.61 25.88L31.23 25.88L31.23 26.60L30.90 26.60L30.90 25.88L29.68 25.88L29.68 25.49L30.92 24.06L31.23 24.06L31.23 25.61L31.61 25.61ZM29.92 25.61L30.90 25.61L30.90 24.46L29.92 25.61ZM33.75 25.79L33.75 25.79Q33.75 25.97 33.69 26.13Q33.63 26.29 33.51 26.41L33.51 26.41Q33.39 26.52 33.22 26.59Q33.05 26.65 32.83 26.65L32.83 26.65Q32.62 26.65 32.42 26.61Q32.23 26.57 32.10 26.50L32.10 26.50L32.10 26.14L32.12 26.14Q32.26 26.23 32.45 26.29Q32.64 26.36 32.82 26.36L32.82 26.36Q32.94 26.36 33.05 26.32Q33.17 26.29 33.26 26.20L33.26 26.20Q33.33 26.13 33.37 26.03Q33.41 25.92 33.41 25.79L33.41 25.79Q33.41 25.66 33.36 25.57Q33.32 25.48 33.24 25.42L33.24 25.42Q33.15 25.36 33.02 25.33Q32.89 25.30 32.74 25.30L32.74 25.30Q32.59 25.30 32.45 25.33Q32.31 25.35 32.21 25.37L32.21 25.37L32.21 24.06L33.74 24.06L33.74 24.35L32.54 24.35L32.54 25.03Q32.61 25.02 32.69 25.02Q32.76 25.02 32.82 25.02L32.82 25.02Q33.03 25.02 33.18 25.05Q33.34 25.09 33.47 25.18L33.47 25.18Q33.60 25.27 33.68 25.42Q33.75 25.57 33.75 25.79ZM35.20 25.25L36.39 26.60L35.95 26.60L34.94 25.47L34.69 25.74L34.69 26.60L34.35 26.60L34.35 24.06L34.69 24.06L34.69 25.38L35.93 24.06L36.34 24.06L35.20 25.25Z"/></g>
    <g aria-label="GOODYEAR" id="tradeMark" style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:2.82222px;line-height:1.25;font-family:Verdana;-inkscape-font-specification:'Verdana, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583;image-rendering:crisp-edges" inkscape:label="Trade Mark"><path d="M5.58 18.60L5.58 19.85Q5.40 19.92 5.12 19.99Q4.84 20.05 4.56 20.05L4.56 20.05Q3.91 20.05 3.54 19.70Q3.18 19.35 3.18 18.73L3.18 18.73Q3.18 18.13 3.55 17.77Q3.92 17.41 4.58 17.41L4.58 17.41Q4.83 17.41 5.06 17.45Q5.29 17.50 5.57 17.63L5.57 17.63L5.57 18.23L5.49 18.23Q5.44 18.19 5.35 18.13Q5.26 18.06 5.17 18.01L5.17 18.01Q5.07 17.96 4.94 17.92Q4.81 17.88 4.66 17.88L4.66 17.88Q4.49 17.88 4.34 17.93Q4.20 17.98 4.09 18.09L4.09 18.09Q3.98 18.19 3.92 18.35Q3.86 18.51 3.86 18.71L3.86 18.71Q3.86 19.14 4.08 19.36Q4.31 19.58 4.74 19.58L4.74 19.58Q4.78 19.58 4.83 19.58Q4.87 19.58 4.91 19.58L4.91 19.58L4.91 19.08L4.40 19.08L4.40 18.60L5.58 18.60ZM8.64 18.73L8.64 18.73Q8.64 19.34 8.29 19.69Q7.94 20.05 7.33 20.05L7.33 20.05Q6.71 20.05 6.36 19.69Q6.01 19.34 6.01 18.73L6.01 18.73Q6.01 18.11 6.36 17.76Q6.71 17.40 7.33 17.40L7.33 17.40Q7.94 17.40 8.29 17.76Q8.64 18.11 8.64 18.73ZM7.77 19.37L7.77 19.37Q7.86 19.26 7.91 19.10Q7.96 18.94 7.96 18.73L7.96 18.73Q7.96 18.50 7.90 18.34Q7.85 18.18 7.76 18.08L7.76 18.08Q7.68 17.97 7.56 17.93Q7.45 17.88 7.33 17.88L7.33 17.88Q7.20 17.88 7.09 17.93Q6.98 17.97 6.89 18.07L6.89 18.07Q6.80 18.17 6.75 18.34Q6.70 18.51 6.70 18.73L6.70 18.73Q6.70 18.96 6.75 19.12Q6.80 19.28 6.89 19.38L6.89 19.38Q6.97 19.48 7.09 19.52Q7.20 19.57 7.33 19.57L7.33 19.57Q7.45 19.57 7.57 19.52Q7.68 19.48 7.77 19.37ZM11.61 18.73L11.61 18.73Q11.61 19.34 11.26 19.69Q10.92 20.05 10.30 20.05L10.30 20.05Q9.69 20.05 9.34 19.69Q8.99 19.34 8.99 18.73L8.99 18.73Q8.99 18.11 9.34 17.76Q9.69 17.40 10.30 17.40L10.30 17.40Q10.91 17.40 11.26 17.76Q11.61 18.11 11.61 18.73ZM10.74 19.37L10.74 19.37Q10.84 19.26 10.89 19.10Q10.93 18.94 10.93 18.73L10.93 18.73Q10.93 18.50 10.88 18.34Q10.83 18.18 10.74 18.08L10.74 18.08Q10.65 17.97 10.54 17.93Q10.43 17.88 10.30 17.88L10.30 17.88Q10.18 17.88 10.07 17.93Q9.96 17.97 9.86 18.07L9.86 18.07Q9.78 18.17 9.73 18.34Q9.67 18.51 9.67 18.73L9.67 18.73Q9.67 18.96 9.72 19.12Q9.78 19.28 9.86 19.38L9.86 19.38Q9.95 19.48 10.06 19.52Q10.18 19.57 10.30 19.57L10.30 19.57Q10.43 19.57 10.54 19.52Q10.66 19.48 10.74 19.37ZM14.52 18.73L14.52 18.73Q14.52 19.09 14.36 19.37Q14.19 19.65 13.95 19.80L13.95 19.80Q13.76 19.91 13.54 19.96Q13.32 20 13.01 20L13.01 20L12.11 20L12.11 17.46L13.04 17.46Q13.35 17.46 13.57 17.51Q13.80 17.56 13.95 17.66L13.95 17.66Q14.22 17.82 14.37 18.09Q14.52 18.36 14.52 18.73ZM13.84 18.73L13.84 18.73Q13.84 18.47 13.75 18.30Q13.66 18.12 13.46 18.02L13.46 18.02Q13.36 17.97 13.25 17.95Q13.15 17.93 12.94 17.93L12.94 17.93L12.77 17.93L12.77 19.52L12.94 19.52Q13.17 19.52 13.28 19.50Q13.39 19.48 13.49 19.42L13.49 19.42Q13.67 19.32 13.76 19.15Q13.84 18.98 13.84 18.73ZM16.54 17.46L17.26 17.46L16.32 19.02L16.32 20L15.66 20L15.66 19.05L14.71 17.46L15.46 17.46L16.01 18.44L16.54 17.46ZM19.44 19.51L19.44 20L17.60 20L17.60 17.46L19.44 17.46L19.44 17.95L18.25 17.95L18.25 18.39L19.35 18.39L19.35 18.88L18.25 18.88L18.25 19.51L19.44 19.51ZM21.40 17.46L22.34 20L21.66 20L21.49 19.49L20.54 19.49L20.37 20L19.71 20L20.65 17.46L21.40 17.46ZM20.70 19.02L21.33 19.02L21.01 18.11L20.70 19.02ZM24.13 18.23L24.13 18.23Q24.13 18.14 24.09 18.07Q24.05 18.00 23.96 17.96L23.96 17.96Q23.89 17.94 23.80 17.93Q23.71 17.92 23.60 17.92L23.60 17.92L23.36 17.92L23.36 18.61L23.56 18.61Q23.72 18.61 23.82 18.59Q23.93 18.58 24.00 18.52L24.00 18.52Q24.07 18.47 24.10 18.41Q24.13 18.34 24.13 18.23ZM24.31 18.91L25.16 20L24.36 20L23.66 19.07L23.36 19.07L23.36 20L22.71 20L22.71 17.46L23.81 17.46Q24.03 17.46 24.19 17.48Q24.36 17.51 24.50 17.59L24.50 17.59Q24.64 17.68 24.73 17.81Q24.81 17.95 24.81 18.15L24.81 18.15Q24.81 18.44 24.68 18.61Q24.55 18.79 24.31 18.91L24.31 18.91Z"/></g>
    <g aria-label="561742" id="tyreTypeIdentifier" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.46944px;line-height:1.25;font-family:Verdana;-inkscape-font-specification:'Verdana, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583" inkscape:label="tyre type identifier"><path d="M59.63 19.19L59.63 19.19Q59.63 19.37 59.56 19.53Q59.50 19.69 59.38 19.81L59.38 19.81Q59.26 19.92 59.09 19.99Q58.92 20.05 58.70 20.05L58.70 20.05Q58.49 20.05 58.30 20.01Q58.10 19.97 57.97 19.90L57.97 19.90L57.97 19.54L57.99 19.54Q58.13 19.63 58.32 19.69Q58.51 19.76 58.69 19.76L58.69 19.76Q58.81 19.76 58.93 19.72Q59.04 19.69 59.13 19.60L59.13 19.60Q59.20 19.53 59.24 19.43Q59.28 19.32 59.28 19.19L59.28 19.19Q59.28 19.06 59.23 18.97Q59.19 18.88 59.11 18.82L59.11 18.82Q59.02 18.76 58.89 18.73Q58.77 18.70 58.61 18.70L58.61 18.70Q58.46 18.70 58.32 18.73Q58.18 18.75 58.08 18.77L58.08 18.77L58.08 17.46L59.61 17.46L59.61 17.75L58.41 17.75L58.41 18.43Q58.48 18.42 58.56 18.42Q58.64 18.42 58.69 18.42L58.69 18.42Q58.90 18.42 59.05 18.45Q59.21 18.49 59.34 18.58L59.34 18.58Q59.48 18.67 59.55 18.82Q59.63 18.97 59.63 19.19ZM61.91 19.17L61.91 19.17Q61.91 19.56 61.65 19.81Q61.40 20.05 61.03 20.05L61.03 20.05Q60.84 20.05 60.69 19.99Q60.53 19.94 60.41 19.82L60.41 19.82Q60.27 19.68 60.19 19.45Q60.11 19.21 60.11 18.88L60.11 18.88Q60.11 18.54 60.18 18.28Q60.25 18.02 60.41 17.82L60.41 17.82Q60.56 17.62 60.80 17.52Q61.04 17.41 61.35 17.41L61.35 17.41Q61.46 17.41 61.52 17.42Q61.59 17.42 61.66 17.45L61.66 17.45L61.66 17.77L61.65 17.77Q61.60 17.75 61.50 17.72Q61.40 17.70 61.30 17.70L61.30 17.70Q60.94 17.70 60.72 17.93Q60.50 18.16 60.46 18.55L60.46 18.55Q60.61 18.47 60.75 18.42Q60.88 18.37 61.07 18.37L61.07 18.37Q61.23 18.37 61.35 18.40Q61.48 18.43 61.61 18.53L61.61 18.53Q61.76 18.63 61.83 18.79Q61.91 18.95 61.91 19.17ZM61.56 19.19L61.56 19.19Q61.56 19.03 61.52 18.93Q61.47 18.82 61.36 18.74L61.36 18.74Q61.28 18.69 61.19 18.67Q61.09 18.66 60.99 18.66L60.99 18.66Q60.84 18.66 60.72 18.69Q60.59 18.72 60.46 18.80L60.46 18.80Q60.46 18.83 60.46 18.87Q60.45 18.90 60.45 18.96L60.45 18.96Q60.45 19.23 60.51 19.38Q60.56 19.54 60.66 19.63L60.66 19.63Q60.74 19.70 60.83 19.74Q60.92 19.77 61.03 19.77L61.03 19.77Q61.28 19.77 61.42 19.62Q61.56 19.47 61.56 19.19ZM63.95 19.74L63.95 20L62.57 20L62.57 19.74L63.10 19.74L63.10 18.03L62.57 18.03L62.57 17.80Q62.68 17.80 62.81 17.78Q62.93 17.77 62.99 17.73L62.99 17.73Q63.07 17.69 63.12 17.62Q63.16 17.56 63.17 17.45L63.17 17.45L63.43 17.45L63.43 19.74L63.95 19.74ZM66.33 17.46L66.33 17.84L65.18 20L64.81 20L66.04 17.75L64.59 17.75L64.59 17.46L66.33 17.46ZM68.61 19.01L68.61 19.28L68.23 19.28L68.23 20L67.90 20L67.90 19.28L66.68 19.28L66.68 18.89L67.91 17.46L68.23 17.46L68.23 19.01L68.61 19.01ZM66.91 19.01L67.90 19.01L67.90 17.86L66.91 19.01ZM70.77 19.71L70.77 20L69.05 20L69.05 19.64Q69.23 19.49 69.41 19.34Q69.59 19.18 69.75 19.03L69.75 19.03Q70.07 18.71 70.20 18.52Q70.32 18.34 70.32 18.12L70.32 18.12Q70.32 17.92 70.19 17.81Q70.05 17.70 69.82 17.70L69.82 17.70Q69.67 17.70 69.48 17.75Q69.30 17.81 69.13 17.92L69.13 17.92L69.11 17.92L69.11 17.56Q69.23 17.50 69.44 17.45Q69.64 17.40 69.83 17.40L69.83 17.40Q70.22 17.40 70.44 17.59Q70.67 17.78 70.67 18.10L70.67 18.10Q70.67 18.25 70.63 18.37Q70.59 18.50 70.52 18.61L70.52 18.61Q70.45 18.72 70.36 18.82Q70.27 18.92 70.15 19.05L70.15 19.05Q69.96 19.23 69.77 19.40Q69.57 19.56 69.40 19.71L69.40 19.71L70.77 19.71Z"/></g>
    <g aria-label="2020/740" transform="rotate(90,70.15744,83.964095)" id="regulation" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11667px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;shape-inside:url(#rect6518);fill:#000000;fill-opacity:1;stroke:none" inkscape:label="number of the regulation">
      <path d="m 85.655462,83.780711 h -1.041798 v -0.216007 q 0.108521,-0.09302 0.217041,-0.186036 0.109555,-0.09302 0.203606,-0.185002 0.198438,-0.192236 0.271818,-0.304891 0.07338,-0.113688 0.07338,-0.244947 0,-0.119889 -0.07958,-0.187069 -0.07855,-0.06821 -0.220142,-0.06821 -0.09405,0 -0.203605,0.03307 -0.109555,0.03307 -0.213941,0.101286 h -0.01033 v -0.217041 q 0.07338,-0.03617 0.195337,-0.06615 0.12299,-0.02997 0.237712,-0.02997 0.236678,0 0.371037,0.114721 0.134359,0.113689 0.134359,0.309026 0,0.08785 -0.02274,0.164331 -0.0217,0.07545 -0.06511,0.143661 -0.04031,0.06408 -0.09508,0.126091 -0.05374,0.06201 -0.131258,0.137459 -0.110588,0.108521 -0.22841,0.21084 -0.117823,0.101286 -0.220142,0.188103 h 0.827857 z" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11667px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal" id="path26001"/>
      <path d="m 87.001119,83.010731 q 0,0.414446 -0.130225,0.60875 -0.129191,0.19327 -0.402043,0.19327 -0.276986,0 -0.405144,-0.196371 -0.127124,-0.196371 -0.127124,-0.603581 0,-0.410312 0.129191,-0.605649 0.129191,-0.196371 0.403077,-0.196371 0.276986,0 0.40411,0.199471 0.128158,0.198438 0.128158,0.600481 z M 86.7293,83.479954 q 0.03617,-0.08372 0.04858,-0.196371 0.01344,-0.113688 0.01344,-0.272852 0,-0.157096 -0.01344,-0.272852 -0.0124,-0.115755 -0.04961,-0.19637 -0.03617,-0.07958 -0.09922,-0.11989 -0.06201,-0.04031 -0.160197,-0.04031 -0.09715,0 -0.161231,0.04031 -0.06305,0.04031 -0.100252,0.121957 -0.03514,0.07648 -0.04858,0.199471 -0.0124,0.12299 -0.0124,0.269752 0,0.16123 0.01137,0.269751 0.01137,0.108521 0.04858,0.194304 0.03411,0.08061 0.09612,0.12299 0.06305,0.04237 0.166399,0.04237 0.09715,0 0.16123,-0.04031 0.06408,-0.04031 0.09922,-0.121957 z" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11667px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal" id="path26003"/>
      <path d="m 88.350909,83.780711 h -1.041798 v -0.216007 q 0.10852,-0.09302 0.217041,-0.186036 0.109554,-0.09302 0.203606,-0.185002 0.198437,-0.192236 0.271818,-0.304891 0.07338,-0.113688 0.07338,-0.244947 0,-0.119889 -0.07958,-0.187069 -0.07855,-0.06821 -0.220142,-0.06821 -0.09405,0 -0.203606,0.03307 -0.109554,0.03307 -0.21394,0.101286 h -0.01034 v -0.217041 q 0.07338,-0.03617 0.195338,-0.06615 0.12299,-0.02997 0.237712,-0.02997 0.236678,0 0.371037,0.114721 0.134359,0.113689 0.134359,0.309026 0,0.08785 -0.02274,0.164331 -0.0217,0.07545 -0.06511,0.143661 -0.04031,0.06408 -0.09508,0.126091 -0.05374,0.06201 -0.131258,0.137459 -0.110588,0.108521 -0.228411,0.21084 -0.117822,0.101286 -0.220142,0.188103 h 0.827858 z" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11667px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal" id="path26005"/>
      <path d="m 89.696565,83.010731 q 0,0.414446 -0.130224,0.60875 -0.129192,0.19327 -0.402044,0.19327 -0.276986,0 -0.405144,-0.196371 -0.127124,-0.196371 -0.127124,-0.603581 0,-0.410312 0.129192,-0.605649 0.129191,-0.196371 0.403076,-0.196371 0.276986,0 0.404111,0.199471 0.128157,0.198438 0.128157,0.600481 z m -0.271818,0.469223 q 0.03617,-0.08372 0.04858,-0.196371 0.01344,-0.113688 0.01344,-0.272852 0,-0.157096 -0.01344,-0.272852 -0.0124,-0.115755 -0.04961,-0.19637 -0.03617,-0.07958 -0.09922,-0.11989 -0.06201,-0.04031 -0.160197,-0.04031 -0.09715,0 -0.16123,0.04031 -0.06305,0.04031 -0.100253,0.121957 -0.03514,0.07648 -0.04858,0.199471 -0.0124,0.12299 -0.0124,0.269752 0,0.16123 0.01137,0.269751 0.01137,0.108521 0.04858,0.194304 0.03411,0.08061 0.09612,0.12299 0.06305,0.04237 0.166398,0.04237 0.09715,0 0.161231,-0.04031 0.06408,-0.04031 0.09922,-0.121957 z" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11667px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal" id="path26007"/>
      <path d="m 90.726995,82.172538 -0.741041,1.922367 h -0.178801 l 0.737941,-1.922367 z" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11667px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal" id="path26009"/>
      <path d="m 92.01374,82.472262 -0.696599,1.308449 h -0.221176 l 0.741042,-1.358058 h -0.876434 v -0.180868 h 1.053167 z" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11667px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal" id="path26011"/>
      <path d="m 93.39247,83.347662 h -0.228411 v 0.433049 H 92.965622 V 83.347662 H 92.228715 V 83.10995 l 0.745175,-0.868165 h 0.190169 v 0.940512 h 0.228411 z m -0.426848,-0.165365 v -0.694532 l -0.596347,0.694532 z" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11667px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal" id="path26013"/>
      <path d="m 94.702986,83.010731 q 0,0.414446 -0.130225,0.60875 -0.129192,0.19327 -0.402044,0.19327 -0.276986,0 -0.405143,-0.196371 -0.127125,-0.196371 -0.127125,-0.603581 0,-0.410312 0.129192,-0.605649 0.129191,-0.196371 0.403076,-0.196371 0.276987,0 0.404111,0.199471 0.128158,0.198438 0.128158,0.600481 z m -0.271819,0.469223 q 0.03617,-0.08372 0.04858,-0.196371 0.01344,-0.113688 0.01344,-0.272852 0,-0.157096 -0.01344,-0.272852 -0.0124,-0.115755 -0.04961,-0.19637 -0.03617,-0.07958 -0.09922,-0.11989 -0.06201,-0.04031 -0.160198,-0.04031 -0.09715,0 -0.16123,0.04031 -0.06305,0.04031 -0.100253,0.121957 -0.03514,0.07648 -0.04858,0.199471 -0.0124,0.12299 -0.0124,0.269752 0,0.16123 0.01137,0.269751 0.01137,0.108521 0.04858,0.194304 0.03411,0.08061 0.09612,0.12299 0.06305,0.04237 0.166398,0.04237 0.09715,0 0.161231,-0.04031 0.06408,-0.04031 0.09922,-0.121957 z" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11667px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal" id="path26015"/>
    </g>
  </g>
</svg>
H1Gdev added a commit to H1Gdev/SVG that referenced this issue Apr 11, 2021
mrbean-bremen pushed a commit that referenced this issue Apr 12, 2021
* Fixes #863 'SVG image is blurred when some sections have opacity<>1' 
* Add test
* Update ReleaseNotes.md
github-actions bot pushed a commit that referenced this issue Apr 12, 2021
…TING.md Generators Nuget README.md Samples Source Tests doc docfx.json index.md license.txt Fixes #863 'SVG image is blurred when some sections have opacity<>1' 
 BuildProcessTemplates CONTRIBUTING.md Generators Nuget README.md Samples Source Tests doc docfx.json index.md license.txt Add test
 BuildProcessTemplates CONTRIBUTING.md Generators Nuget README.md Samples Source Tests doc docfx.json index.md license.txt Update ReleaseNotes.md
@JonasTaulien
Copy link

Thanks you really much for fixing this. I work with @alonafe and we are patiently waiting for the release :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
2 participants