目录

  • SVG基础
    • SVG预定义元素,不同的元素可拥有不同的属性
    • 可用于 `` 路径的命令,所有命令均允许小写,大写表示绝对定位,小写表示相对定位
    • stroke属性,可广泛应用于任何种类的线条、文字或元素轮廓
    • 动画相关的元素和属性
  • 用JS控制SVG的预设动画

SVG基础

SVG预定义元素,不同的元素可拥有不同的属性

  • 矩形 rect
  • 圆形 circle
  • 椭圆 ellipse
  • 线 line
  • 折线 polyline
  • 多边形 polygon
  • 路径 path
  • 文本 text
  • 分组 g
  • 引用 defs 是definitions的缩写,可对诸如渐变之类的特殊元素进行定义
  • 滤镜 filter

可用于 <path> 路径的命令,所有命令均允许小写,大写表示绝对定位,小写表示相对定位

  • M = moveto
  • L = lineto
  • H = horizontal lineto
  • V = vertical lineto
  • C = curveto
  • S = smooth curveto
  • Q = quadratic Bézier curve
  • T = smooth quadratic Bézier curveto
  • A = elliptical Arc
  • Z = closepath

stroke属性,可广泛应用于任何种类的线条、文字或元素轮廓

  • stroke 定义一条线、文本或元素轮廓的颜色
  • stroke-width 定义一条线、文本或元素轮廓的宽度
  • stroke-linecap 定义不同类型的开放路径的终结
  • stroke-dasharray 用于创建虚线

动画相关的元素和属性

  • animate 随着时间动态改变属性

    • attributeName = “目标属性名称”
    • from = “起始值”
    • to = “结束值”
    • dur = “持续时间”
    • repeatCount = “动画重复次数”
  • animateColor 定义随着时间的推移颜色转换
    • by = “相对偏移值”
    • from = “起始值”
    • to = “结束值”
  • animateMotion 使元素沿着动作路径移动
    • calcMode = “动画的插补模式。可以是’discrete’, ‘linear’, ‘paced’, ‘spline’”
    • path = “运动路径”
    • keyPoints = “沿运动路径的对象目前时间应移动多远”
    • rotate = “应用旋转变换”
    • xlink:href = “一个URI引用元素,它定义运动路径”
  • animateTransform 动画上一个目标元素变换属性,从而控制平移、缩放、旋转或倾斜
    • by = “相对偏移值”
    • from = “起始值”
    • to = “结束值”
    • type = “类型的转换其值是随时间变化。可以是 ‘translate’, ‘scale’, ‘rotate’, ‘skewX’, ‘skewY’”

用JS控制SVG的预设动画

基本思路

  • <svg>标签把SVG内容嵌入到网页文档结构中,方便后续获取;
  • 用CSS的@keyframes为SVG中的某些元素“预设”一些动画效果;
  • 用JS获取SVG中的元素,然后用切换类名class的方式,达到控制动画显隐的效果;

代码示例

<!DOCTYPE html><html><head><meta charset="utf-8" /><title>用JS控制SVG的预设动画</title><style type="text/css">svg#freepik_stories-smart-mobility {width: 800px;}#freepik--Character--inject-1.animated {animation: 1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) speedRight;animation-delay: 0s;}#freepik--Car--inject-1.animated {animation: 1.5s Infinite linear shake;animation-delay: 0s;}@keyframes speedRight {from {transform: translate3d(50%, 0, 0) skewX(-20deg);opacity: 0;}60% {transform: skewX(10deg);opacity: 1;}80% {transform: skewX(-2deg);}to {opacity: 1;transform: translate3d(0, 0, 0);}}@keyframes shake {10%,90% {transform: translate3d(-1px, 0, 0);}20%,80% {transform: translate3d(2px, 0, 0);}30%,50%,70% {transform: translate3d(-4px, 0, 0);}40%,60% {transform: translate3d(4px, 0, 0);}}</style></head><body><div class="btns"><button id="shakeBtn">ToggleShake</button><button id="speedBtn">SpeedRight</button></div><svg class="" id="freepik_stories-smart-mobility" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 750 500" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.com/svgjs"><g id="freepik--background-simple--inject-1" class="animable" style="transform-origin: 378.049px 190.182px;"><path d="M725.35,164.13C740,71.36,609.75,18,536.6,20.54,494.64,22,457.46,40,420.82,58.91c-66,34-121,36-171,15C204.06,54.69,146.81,61,103.68,85.14c-21.9,12.23-41.36,30-52.58,52.72-14.1,28.56-1.56,61.53,5.11,90.4,3.26,14.12,6.33,29.47,1.61,43.65-14,42-35,46-32,67l3,21h692s16-24,7-61c-4.18-17.18-14.91-29.49-25.77-42.83-5.55-6.82-10.67-14.28-12.81-22.81-6-24.21,15.07-26.35,26.53-41.6C721.61,183.89,723.87,173.52,725.35,164.13Z" style="fill: #407BFF; transform-origin: 378.049px 190.182px;" id="elwdy5mzamv4" class="animable"></path><g id="eldreywgbb9zl"><path d="M725.35,164.13C740,71.36,609.75,18,536.6,20.54,494.64,22,457.46,40,420.82,58.91c-66,34-121,36-171,15C204.06,54.69,146.81,61,103.68,85.14c-21.9,12.23-41.36,30-52.58,52.72-14.1,28.56-1.56,61.53,5.11,90.4,3.26,14.12,6.33,29.47,1.61,43.65-14,42-35,46-32,67l3,21h692s16-24,7-61c-4.18-17.18-14.91-29.49-25.77-42.83-5.55-6.82-10.67-14.28-12.81-22.81-6-24.21,15.07-26.35,26.53-41.6C721.61,183.89,723.87,173.52,725.35,164.13Z" style="fill: rgb(255, 255, 255); opacity: 0.7; transform-origin: 378.049px 190.182px;" class="animable" id="elb2o38yj1tnr"></path></g></g><g id="freepik--Floor--inject-1" class="animable" style="transform-origin: 374.575px 415.45px;"><line x1="29.11" y1="359.28" x2="720.04" y2="359.28" style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 374.575px 359.28px;" id="el3s4iau8wccw" class="animable"></line><line x1="29.11" y1="471.62" x2="720.04" y2="471.62" style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 374.575px 471.62px;" id="elie0ywcx0aa" class="animable"></line><line x1="29.11" y1="408.71" x2="720.04" y2="408.71" style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 374.575px 408.71px;" id="el5xujxej22y7" class="animable"></line></g><g id="freepik--City--inject-1" class="animable" style="transform-origin: 372.7px 176.19px;"><g id="el8xsu3qq4j3i"><g style="opacity: 0.23; transform-origin: 372.7px 176.19px;" class="animable" id="elea099flnw1u"><polyline points="56.06 327.5 56.06 155.74 163.73 155.74 163.73 330.05" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 109.895px 242.895px;" id="eltu48f3jijw" class="animable"></polyline><polyline points="59.88 155.54 59.88 149.11 159.68 149.11 159.68 155.53" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 109.78px 152.325px;" id="elg1q1levhhqu" class="animable"></polyline><line x1="62.41" y1="162.91" x2="62.41" y2="329.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 62.41px 245.985px;" id="el845sl1l6tji" class="animable"></line><line x1="70.22" y1="162.91" x2="70.22" y2="329.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 70.22px 245.985px;" id="elbiflly44te" class="animable"></line><line x1="78.03" y1="162.91" x2="78.03" y2="329.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 78.03px 245.985px;" id="elbxjuc1m42sa" class="animable"></line><line x1="85.84" y1="162.91" x2="85.84" y2="329.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 85.84px 245.985px;" id="eleo79ru4p4bj" class="animable"></line><line x1="93.65" y1="162.91" x2="93.65" y2="329.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 93.65px 245.985px;" id="el5bv32licyat" class="animable"></line><line x1="101.46" y1="162.91" x2="101.46" y2="329.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 101.46px 245.985px;" id="el7fz97hbqnbc" class="animable"></line><line x1="109.27" y1="162.91" x2="109.27" y2="329.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 109.27px 245.985px;" id="eldzdca3h1r0p" class="animable"></line><line x1="117.08" y1="162.91" x2="117.08" y2="329.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 117.08px 245.985px;" id="el20ytj0y8b17" class="animable"></line><line x1="124.89" y1="162.91" x2="124.89" y2="329.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 124.89px 245.985px;" id="elss2idmyehc" class="animable"></line><line x1="132.7" y1="162.91" x2="132.7" y2="329.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 132.7px 245.985px;" id="eli2bb18xuz6f" class="animable"></line><line x1="140.51" y1="162.91" x2="140.51" y2="329.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 140.51px 245.985px;" id="ely8c0oqm12m9" class="animable"></line><line x1="148.32" y1="162.91" x2="148.32" y2="329.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 148.32px 245.985px;" id="elwohvftytdcf" class="animable"></line><line x1="156.13" y1="162.91" x2="156.13" y2="329.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 156.13px 245.985px;" id="eli5yxg3px9kb" class="animable"></line><line x1="62.41" y1="169.93" x2="157.36" y2="169.93" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 109.885px 169.93px;" id="elambqhf6txqk" class="animable"></line><line x1="62.41" y1="181.79" x2="157.36" y2="181.79" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 109.885px 181.79px;" id="elzpaddvdctna" class="animable"></line><line x1="62.41" y1="193.65" x2="157.36" y2="193.65" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 109.885px 193.65px;" id="elpnwuicmerpq" class="animable"></line><line x1="62.41" y1="205.5" x2="157.36" y2="205.5" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 109.885px 205.5px;" id="elfteqrnoqqi7" class="animable"></line><line x1="62.41" y1="217.36" x2="157.36" y2="217.36" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 109.885px 217.36px;" id="elh45q7fwnm6e" class="animable"></line><line x1="62.41" y1="229.22" x2="157.36" y2="229.22" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 109.885px 229.22px;" id="elwmrnkgmmmtc" class="animable"></line><line x1="62.41" y1="241.07" x2="157.36" y2="241.07" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 109.885px 241.07px;" id="el28jguor0zav" class="animable"></line><line x1="62.41" y1="252.93" x2="157.36" y2="252.93" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 109.885px 252.93px;" id="elg0a7hjmrygc" class="animable"></line><line x1="62.41" y1="264.79" x2="157.36" y2="264.79" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 109.885px 264.79px;" id="el5slf6ds004e" class="animable"></line><line x1="62.41" y1="276.64" x2="157.36" y2="276.64" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 109.885px 276.64px;" id="el29qsqth1mj5" class="animable"></line><line x1="62.41" y1="288.5" x2="157.36" y2="288.5" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 109.885px 288.5px;" id="el5uaf761iedy" class="animable"></line><line x1="62.41" y1="300.36" x2="157.36" y2="300.36" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 109.885px 300.36px;" id="el23qpk2dork2" class="animable"></line><line x1="62.41" y1="312.21" x2="157.36" y2="312.21" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 109.885px 312.21px;" id="el5vgnwv0ujch" class="animable"></line><polyline points="63.99 149.04 63.99 141.47 109.95 141.47 109.95 149.32" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 86.97px 145.395px;" id="elwb319jwfr7p" class="animable"></polyline><polyline points="156.38 147.79 156.38 85.76 209.93 85.76 209.93 330.88" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 183.155px 208.32px;" id="elvqh9mpgvocq" class="animable"></polyline><polyline points="161.75 85.77 161.75 78.42 204.65 78.42 204.65 85.34" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 183.2px 82.095px;" id="el3xpcyi16rzi" class="animable"></polyline><polyline points="176.62 77.98 176.62 63.27 189.79 63.27 189.79 77.55" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 183.205px 70.625px;" id="el7qbvehkoyvk" class="animable"></polyline><rect x="163.67" y="92.6" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 165.12px 95.555px;" id="elyh2gvgqnojn" class="animable"></rect><rect x="172.38" y="92.6" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 173.83px 95.555px;" id="elwh8y5i4q0ip" class="animable"></rect><rect x="181.09" y="92.6" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 182.54px 95.555px;" id="els2vl6zte05" class="animable"></rect><rect x="189.79" y="92.6" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 191.24px 95.555px;" id="elfa1thh34krs" class="animable"></rect><rect x="198.5" y="92.6" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 199.95px 95.555px;" id="el35w8fk242xy" class="animable"></rect><rect x="163.67" y="107.39" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 165.12px 110.345px;" id="el3uxzz40dh6g" class="animable"></rect><rect x="172.38" y="107.39" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 173.83px 110.345px;" id="elf0kt24t68vg" class="animable"></rect><rect x="181.09" y="107.39" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 182.54px 110.345px;" id="el2tux63ovpvb" class="animable"></rect><rect x="189.79" y="107.39" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 191.24px 110.345px;" id="el7j0ntb2jku8" class="animable"></rect><rect x="198.5" y="107.39" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 199.95px 110.345px;" id="elnss1a8vmkz" class="animable"></rect><rect x="163.67" y="122.18" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 165.12px 125.135px;" id="elnooqu6vrl6" class="animable"></rect><rect x="172.38" y="122.18" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 173.83px 125.135px;" id="el3r0tzysicoi" class="animable"></rect><rect x="181.09" y="122.18" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 182.54px 125.135px;" id="el47pq5lpx64w" class="animable"></rect><rect x="189.79" y="122.18" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 191.24px 125.135px;" id="els9laeitfgse" class="animable"></rect><rect x="198.5" y="122.18" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 199.95px 125.135px;" id="el7mmmt5gaz9a" class="animable"></rect><rect x="163.67" y="136.96" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 165.12px 139.915px;" id="el22ck9lohgfd" class="animable"></rect><rect x="172.38" y="136.96" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 173.83px 139.915px;" id="elxxmxuxz8b" class="animable"></rect><rect x="181.09" y="136.96" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 182.54px 139.915px;" id="elau8syyx7vp" class="animable"></rect><rect x="189.79" y="136.96" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 191.24px 139.915px;" id="elv5ub3rhdenm" class="animable"></rect><rect x="198.5" y="136.96" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 199.95px 139.915px;" id="elyh80t5v8l09" class="animable"></rect><rect x="172.38" y="151.75" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 173.83px 154.705px;" id="elut6eb1s21wi" class="animable"></rect><rect x="181.09" y="151.75" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 182.54px 154.705px;" id="elsslasjfnx4g" class="animable"></rect><rect x="189.79" y="151.75" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 191.24px 154.705px;" id="elf5cngaw5bc8" class="animable"></rect><rect x="198.5" y="151.75" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 199.95px 154.705px;" id="elnpjnv56o7z" class="animable"></rect><rect x="172.38" y="166.54" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 173.83px 169.495px;" id="ellsfeovcl63" class="animable"></rect><rect x="181.09" y="166.54" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 182.54px 169.495px;" id="elj3p7ru4y1zl" class="animable"></rect><rect x="189.79" y="166.54" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 191.24px 169.495px;" id="elbigzi6zzivq" class="animable"></rect><rect x="198.5" y="166.54" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 199.95px 169.495px;" id="ely41v3ud29" class="animable"></rect><rect x="172.38" y="181.32" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 173.83px 184.275px;" id="elj5rqhnwgech" class="animable"></rect><rect x="181.09" y="181.32" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 182.54px 184.275px;" id="el1dmk8azyx0bj" class="animable"></rect><rect x="189.79" y="181.32" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 191.24px 184.275px;" id="el7tr0l23j4cu" class="animable"></rect><rect x="198.5" y="181.32" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 199.95px 184.275px;" id="el2ywy44z4m1w" class="animable"></rect><rect x="172.38" y="196.11" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 173.83px 199.065px;" id="el5uwaol4rw4d" class="animable"></rect><rect x="181.09" y="196.11" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 182.54px 199.065px;" id="el9tljyke4nrf" class="animable"></rect><rect x="189.79" y="196.11" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 191.24px 199.065px;" id="el434g55sww75" class="animable"></rect><rect x="198.5" y="196.11" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 199.95px 199.065px;" id="el6s6ttjyazcl" class="animable"></rect><rect x="172.38" y="210.9" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 173.83px 213.855px;" id="elflp6wlg4xrm" class="animable"></rect><rect x="181.09" y="210.9" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 182.54px 213.855px;" id="elehofzxlsaql" class="animable"></rect><rect x="189.79" y="210.9" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 191.24px 213.855px;" id="elmg4we5ac908" class="animable"></rect><rect x="198.5" y="210.9" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 199.95px 213.855px;" id="elf5l57rjixvs" class="animable"></rect><rect x="172.38" y="225.68" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 173.83px 228.635px;" id="elfv40ihkdw0l" class="animable"></rect><rect x="181.09" y="225.68" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 182.54px 228.635px;" id="el3rjvqpn2lc" class="animable"></rect><rect x="189.79" y="225.68" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 191.24px 228.635px;" id="elq8977hovjef" class="animable"></rect><rect x="198.5" y="225.68" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 199.95px 228.635px;" id="ellnnlw23gmv" class="animable"></rect><rect x="172.38" y="240.47" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 173.83px 243.425px;" id="el1u50b9ptaw7" class="animable"></rect><rect x="181.09" y="240.47" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 182.54px 243.425px;" id="elk9e5s3gi8v" class="animable"></rect><rect x="189.79" y="240.47" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 191.24px 243.425px;" id="elkliipdf39k" class="animable"></rect><rect x="198.5" y="240.47" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 199.95px 243.425px;" id="eldhy0e4hgg5e" class="animable"></rect><rect x="172.38" y="255.26" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 173.83px 258.215px;" id="el19iavi8isxi" class="animable"></rect><rect x="181.09" y="255.26" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 182.54px 258.215px;" id="elfppskgdcrwk" class="animable"></rect><rect x="189.79" y="255.26" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 191.24px 258.215px;" id="elgmcmu8x5kw" class="animable"></rect><rect x="198.5" y="255.26" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 199.95px 258.215px;" id="eljdhiuk7rchs" class="animable"></rect><rect x="172.38" y="270.04" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 173.83px 272.995px;" id="el2c41jb54awu" class="animable"></rect><rect x="181.09" y="270.04" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 182.54px 272.995px;" id="el02vjbo1ptyg8" class="animable"></rect><rect x="189.79" y="270.04" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 191.24px 272.995px;" id="elsjfdsgtojzj" class="animable"></rect><rect x="198.5" y="270.04" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 199.95px 272.995px;" id="elsd609s0geto" class="animable"></rect><rect x="172.38" y="284.83" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 173.83px 287.785px;" id="elg2e4xvypwbm" class="animable"></rect><rect x="181.09" y="284.83" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 182.54px 287.785px;" id="elga9gb9rm4x" class="animable"></rect><rect x="189.79" y="284.83" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 191.24px 287.785px;" id="eltx0lo7j79jo" class="animable"></rect><rect x="198.5" y="284.83" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 199.95px 287.785px;" id="elaigle53apjc" class="animable"></rect><rect x="172.38" y="299.61" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 173.83px 302.565px;" id="el2c7xf2njp25" class="animable"></rect><rect x="181.09" y="299.61" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 182.54px 302.565px;" id="elo0l26cq41n" class="animable"></rect><rect x="189.79" y="299.61" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 191.24px 302.565px;" id="elzil401we69t" class="animable"></rect><rect x="198.5" y="299.61" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 199.95px 302.565px;" id="el7y92wqu3qdq" class="animable"></rect><rect x="172.38" y="314.4" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 173.83px 317.355px;" id="elah0jszmalfw" class="animable"></rect><rect x="181.09" y="314.4" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 182.54px 317.355px;" id="ele22ac9ld3a" class="animable"></rect><rect x="189.79" y="314.4" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 191.24px 317.355px;" id="el8bt7ggowvv7" class="animable"></rect><rect x="198.5" y="314.4" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 199.95px 317.355px;" id="elcfn24nnyqxq" class="animable"></rect><polyline points="211.79 103.87 329.87 103.87 329.87 329.75" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 270.83px 216.81px;" id="elkfjdy2ycgj" class="animable"></polyline><rect x="214.44" y="108.82" width="21.44" height="12.38" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 225.16px 115.01px;" id="el44khqf45tko" class="animable"></rect><rect x="240.17" y="108.82" width="21.44" height="12.38" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 250.89px 115.01px;" id="elw9eny043ndj" class="animable"></rect><rect x="265.9" y="108.82" width="21.44" height="12.38" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 276.62px 115.01px;" id="elya5r0kbpp5k" class="animable"></rect><line x1="212.65" y1="137.7" x2="309.9" y2="137.7" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 261.275px 137.7px;" id="elvj5bvcjv7vc" class="animable"></line><line x1="212.65" y1="145.84" x2="309.9" y2="145.84" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 261.275px 145.84px;" id="el4i3jl1i697x" class="animable"></line><line x1="212.65" y1="153.97" x2="309.9" y2="153.97" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 261.275px 153.97px;" id="el36e1rwn2ylx" class="animable"></line><line x1="212.65" y1="162.1" x2="309.9" y2="162.1" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 261.275px 162.1px;" id="elw0de55cg8zs" class="animable"></line><line x1="212.65" y1="170.23" x2="309.9" y2="170.23" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 261.275px 170.23px;" id="elz5ke01q7crh" class="animable"></line><line x1="212.65" y1="178.37" x2="309.9" y2="178.37" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 261.275px 178.37px;" id="ellmemx6oi6e9" class="animable"></line><line x1="212.65" y1="186.5" x2="309.9" y2="186.5" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 261.275px 186.5px;" id="elpvbji88qkw" class="animable"></line><line x1="212.65" y1="194.63" x2="309.9" y2="194.63" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 261.275px 194.63px;" id="elx33tfeeebu8" class="animable"></line><line x1="212.65" y1="202.76" x2="309.9" y2="202.76" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 261.275px 202.76px;" id="el1cumvfusrzt" class="animable"></line><line x1="212.65" y1="210.9" x2="309.9" y2="210.9" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 261.275px 210.9px;" id="elbeul39x1ewg" class="animable"></line><line x1="212.65" y1="219.03" x2="309.9" y2="219.03" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 261.275px 219.03px;" id="eljdr1334ih4m" class="animable"></line><line x1="212.65" y1="227.16" x2="309.9" y2="227.16" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 261.275px 227.16px;" id="el0wjixww6xf2e" class="animable"></line><line x1="212.65" y1="235.29" x2="309.9" y2="235.29" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 261.275px 235.29px;" id="elcmvn2roxwtr" class="animable"></line><line x1="212.65" y1="243.43" x2="309.9" y2="243.43" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 261.275px 243.43px;" id="elrfflojpv0o" class="animable"></line><line x1="212.65" y1="251.56" x2="309.9" y2="251.56" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 261.275px 251.56px;" id="el0jv6cwj1di7v" class="animable"></line><line x1="212.65" y1="259.69" x2="309.9" y2="259.69" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 261.275px 259.69px;" id="elttrhkewxc" class="animable"></line><line x1="212.65" y1="267.82" x2="309.9" y2="267.82" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 261.275px 267.82px;" id="elwmw50v5lg5l" class="animable"></line><line x1="212.65" y1="275.96" x2="309.9" y2="275.96" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 261.275px 275.96px;" id="ellaskdln35es" class="animable"></line><line x1="212.65" y1="284.09" x2="309.9" y2="284.09" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 261.275px 284.09px;" id="el1yzm97i7qmg" class="animable"></line><line x1="212.65" y1="292.22" x2="309.9" y2="292.22" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 261.275px 292.22px;" id="elzjgcakl4bef" class="animable"></line><line x1="212.65" y1="300.35" x2="309.9" y2="300.35" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 261.275px 300.35px;" id="elgm75b2d1999" class="animable"></line><line x1="212.65" y1="308.49" x2="309.9" y2="308.49" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 261.275px 308.49px;" id="elmgheedtm08" class="animable"></line><line x1="212.65" y1="316.62" x2="309.9" y2="316.62" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 261.275px 316.62px;" id="elnmyjq15ou2" class="animable"></line><line x1="212.65" y1="324.75" x2="309.9" y2="324.75" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 261.275px 324.75px;" id="elmogc5ghjt3s" class="animable"></line><line x1="316.43" y1="137.7" x2="324.41" y2="137.7" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 320.42px 137.7px;" id="elft3ydmv94zs" class="animable"></line><line x1="316.43" y1="145.84" x2="324.41" y2="145.84" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 320.42px 145.84px;" id="el3lirvr6rzux" class="animable"></line><line x1="316.43" y1="153.97" x2="324.41" y2="153.97" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 320.42px 153.97px;" id="elfpflbbohrra" class="animable"></line><line x1="316.43" y1="162.1" x2="324.41" y2="162.1" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 320.42px 162.1px;" id="el90moyp3457" class="animable"></line><line x1="316.43" y1="170.23" x2="324.41" y2="170.23" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 320.42px 170.23px;" id="elmxqhiemzm6" class="animable"></line><line x1="316.43" y1="178.37" x2="324.41" y2="178.37" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 320.42px 178.37px;" id="els3gvpz72jba" class="animable"></line><line x1="316.43" y1="186.5" x2="324.41" y2="186.5" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 320.42px 186.5px;" id="el2yi8km7c46g" class="animable"></line><line x1="316.43" y1="194.63" x2="324.41" y2="194.63" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 320.42px 194.63px;" id="elb04fqwgjpj" class="animable"></line><line x1="316.43" y1="202.76" x2="324.41" y2="202.76" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 320.42px 202.76px;" id="elclcx387958k" class="animable"></line><line x1="316.43" y1="210.9" x2="324.41" y2="210.9" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 320.42px 210.9px;" id="elrl0b9vi4by" class="animable"></line><line x1="316.43" y1="219.03" x2="324.41" y2="219.03" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 320.42px 219.03px;" id="elpxbpapgnhom" class="animable"></line><line x1="316.43" y1="227.16" x2="324.41" y2="227.16" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 320.42px 227.16px;" id="ely840xac3wce" class="animable"></line><line x1="316.43" y1="235.29" x2="324.41" y2="235.29" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 320.42px 235.29px;" id="elrrsvclofizk" class="animable"></line><line x1="316.43" y1="243.43" x2="324.41" y2="243.43" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 320.42px 243.43px;" id="elnwtj7gydpah" class="animable"></line><line x1="316.43" y1="251.56" x2="324.41" y2="251.56" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 320.42px 251.56px;" id="elucr9giey4we" class="animable"></line><line x1="316.43" y1="259.69" x2="324.41" y2="259.69" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 320.42px 259.69px;" id="elx189g5ifgy" class="animable"></line><line x1="316.43" y1="267.82" x2="324.41" y2="267.82" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 320.42px 267.82px;" id="el38t6s107hqb" class="animable"></line><line x1="316.43" y1="275.96" x2="324.41" y2="275.96" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 320.42px 275.96px;" id="elx0imia19tob" class="animable"></line><line x1="316.43" y1="284.09" x2="324.41" y2="284.09" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 320.42px 284.09px;" id="el46uh9sfimzb" class="animable"></line><line x1="316.43" y1="292.22" x2="324.41" y2="292.22" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 320.42px 292.22px;" id="eljqa2qdey52q" class="animable"></line><line x1="316.43" y1="300.35" x2="324.41" y2="300.35" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 320.42px 300.35px;" id="ellaxu9hfecik" class="animable"></line><line x1="316.43" y1="308.49" x2="324.41" y2="308.49" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 320.42px 308.49px;" id="el6y7ad006jvh" class="animable"></line><line x1="316.43" y1="316.62" x2="324.41" y2="316.62" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 320.42px 316.62px;" id="elips4ig9z33" class="animable"></line><line x1="316.43" y1="324.75" x2="324.41" y2="324.75" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 320.42px 324.75px;" id="el6sjfcqj1hw5" class="animable"></line><polyline points="223.02 104 223.02 99.79 247.57 99.79 247.57 97.42 263.33 97.42 263.33 102.16 285.81 102.16 285.81 103.74" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 254.415px 100.71px;" id="el2gmk9z1oy91" class="animable"></polyline><polyline points="329.87 103.87 329.87 20.5 383.43 20.5 383.43 101.85 442.67 101.85 442.67 331.88" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.27px 176.19px;" id="eleam1vkwjqs" class="animable"></polyline><polyline points="384.29 45.87 426.36 45.87 426.36 101.85" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 405.325px 73.86px;" id="elnvx8ciakzr" class="animable"></polyline><line x1="348.23" y1="27.5" x2="348.23" y2="330.14" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 348.23px 178.82px;" id="elvvh4c14h5tr" class="animable"></line><line x1="334.93" y1="30.94" x2="342.92" y2="30.94" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 30.94px;" id="ellw7ei7c1w29" class="animable"></line><line x1="334.93" y1="39.07" x2="342.92" y2="39.07" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 39.07px;" id="el59lwfeuii3t" class="animable"></line><line x1="334.93" y1="47.2" x2="342.92" y2="47.2" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 47.2px;" id="el9bljcmo62gl" class="animable"></line><line x1="334.93" y1="55.33" x2="342.92" y2="55.33" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 55.33px;" id="el0d0owrcrlzo" class="animable"></line><line x1="334.93" y1="63.47" x2="342.92" y2="63.47" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 63.47px;" id="elcfc1wfvcmj" class="animable"></line><line x1="334.93" y1="71.6" x2="342.92" y2="71.6" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 71.6px;" id="elsf63ibi7cdp" class="animable"></line><line x1="334.93" y1="79.73" x2="342.92" y2="79.73" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 79.73px;" id="el7pukva9wnds" class="animable"></line><line x1="334.93" y1="87.86" x2="342.92" y2="87.86" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 87.86px;" id="el0q6yhdhrbybl" class="animable"></line><line x1="334.93" y1="96" x2="342.92" y2="96" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 96px;" id="elsnc74q9byy" class="animable"></line><line x1="334.93" y1="104.13" x2="342.92" y2="104.13" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 104.13px;" id="elmb0pgj24h6" class="animable"></line><line x1="334.93" y1="112.26" x2="342.92" y2="112.26" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 112.26px;" id="elrtlbrp2ymyk" class="animable"></line><line x1="334.93" y1="120.39" x2="342.92" y2="120.39" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 120.39px;" id="elemthpfwraa" class="animable"></line><line x1="334.93" y1="128.53" x2="342.92" y2="128.53" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 128.53px;" id="el9l694sb37j" class="animable"></line><line x1="334.93" y1="136.66" x2="342.92" y2="136.66" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 136.66px;" id="elrwgef9wtqj" class="animable"></line><line x1="334.93" y1="144.79" x2="342.92" y2="144.79" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 144.79px;" id="elybotqglhvdp" class="animable"></line><line x1="334.93" y1="152.92" x2="342.92" y2="152.92" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 152.92px;" id="elqspwa2605yb" class="animable"></line><line x1="334.93" y1="161.06" x2="342.92" y2="161.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 161.06px;" id="elc4bl8qagiyj" class="animable"></line><line x1="334.93" y1="169.19" x2="342.92" y2="169.19" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 169.19px;" id="ela91drbt3cpl" class="animable"></line><line x1="334.93" y1="177.32" x2="342.92" y2="177.32" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 177.32px;" id="elrb0y38ozgab" class="animable"></line><line x1="334.93" y1="185.45" x2="342.92" y2="185.45" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 185.45px;" id="el1hduj86qcmi" class="animable"></line><line x1="334.93" y1="193.59" x2="342.92" y2="193.59" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 193.59px;" id="elobvz6ug0vjj" class="animable"></line><line x1="334.93" y1="201.72" x2="342.92" y2="201.72" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 201.72px;" id="el6moy0e8jfwr" class="animable"></line><line x1="334.93" y1="209.85" x2="342.92" y2="209.85" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 209.85px;" id="el7wcgdqzxzus" class="animable"></line><line x1="334.93" y1="217.98" x2="342.92" y2="217.98" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 217.98px;" id="elfxk6vbn5tm6" class="animable"></line><line x1="334.93" y1="225.22" x2="342.92" y2="225.22" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 225.22px;" id="elb3kkvczv1h" class="animable"></line><line x1="334.93" y1="233.36" x2="342.92" y2="233.36" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 233.36px;" id="elri4mhuq1bjl" class="animable"></line><line x1="334.93" y1="241.49" x2="342.92" y2="241.49" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 241.49px;" id="eluug91n6hvze" class="animable"></line><line x1="334.93" y1="249.62" x2="342.92" y2="249.62" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 249.62px;" id="elmmh93acpa3j" class="animable"></line><line x1="334.93" y1="257.76" x2="342.92" y2="257.76" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 257.76px;" id="ell314omdowbs" class="animable"></line><line x1="334.93" y1="265.89" x2="342.92" y2="265.89" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 265.89px;" id="elzqkms1v6c2" class="animable"></line><line x1="334.93" y1="274.02" x2="342.92" y2="274.02" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 274.02px;" id="el8jzuh2inreq" class="animable"></line><line x1="334.93" y1="282.15" x2="342.92" y2="282.15" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 282.15px;" id="el6klw8p19jps" class="animable"></line><line x1="334.93" y1="290.29" x2="342.92" y2="290.29" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 290.29px;" id="el3insjwf7522" class="animable"></line><line x1="334.93" y1="297.32" x2="342.92" y2="297.32" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 297.32px;" id="elz8r9c6yq0o9" class="animable"></line><line x1="334.93" y1="305.45" x2="342.92" y2="305.45" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 305.45px;" id="elw9zvbsym8j" class="animable"></line><line x1="334.93" y1="313.59" x2="342.92" y2="313.59" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 313.59px;" id="el245kqahlqnv" class="animable"></line><line x1="334.93" y1="321.72" x2="342.92" y2="321.72" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 321.72px;" id="elo9c48he9m7" class="animable"></line><line x1="334.93" y1="329.85" x2="342.92" y2="329.85" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.925px 329.85px;" id="eld0i4togatkw" class="animable"></line><line x1="353.27" y1="30.94" x2="361.25" y2="30.94" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 30.94px;" id="el6be6re8r14" class="animable"></line><line x1="353.27" y1="39.07" x2="361.25" y2="39.07" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 39.07px;" id="eliq8lcfr5ccd" class="animable"></line><line x1="353.27" y1="47.2" x2="361.25" y2="47.2" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 47.2px;" id="el4dm9ql3xkak" class="animable"></line><line x1="353.27" y1="55.33" x2="361.25" y2="55.33" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 55.33px;" id="elnlpmhv1jqs" class="animable"></line><line x1="353.27" y1="63.47" x2="361.25" y2="63.47" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 63.47px;" id="el1shvtfmaj5g" class="animable"></line><line x1="353.27" y1="71.6" x2="361.25" y2="71.6" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 71.6px;" id="el7nh3sj56rk4" class="animable"></line><line x1="353.27" y1="79.73" x2="361.25" y2="79.73" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 79.73px;" id="elvbfcyx521fn" class="animable"></line><line x1="353.27" y1="87.86" x2="361.25" y2="87.86" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 87.86px;" id="elmk32i6brmto" class="animable"></line><line x1="353.27" y1="96" x2="361.25" y2="96" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 96px;" id="elmmzzhc6197m" class="animable"></line><line x1="353.27" y1="104.13" x2="361.25" y2="104.13" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 104.13px;" id="elj9eqol1rax" class="animable"></line><line x1="353.27" y1="112.26" x2="361.25" y2="112.26" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 112.26px;" id="el8pfi61afbki" class="animable"></line><line x1="353.27" y1="120.39" x2="361.25" y2="120.39" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 120.39px;" id="el0hzr8s3eq3y" class="animable"></line><line x1="353.27" y1="128.53" x2="361.25" y2="128.53" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 128.53px;" id="elok21ypw61q" class="animable"></line><line x1="353.27" y1="136.66" x2="361.25" y2="136.66" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 136.66px;" id="elp6uadngmo5" class="animable"></line><line x1="353.27" y1="144.79" x2="361.25" y2="144.79" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 144.79px;" id="el4c8gdipzmuw" class="animable"></line><line x1="353.27" y1="152.92" x2="361.25" y2="152.92" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 152.92px;" id="elmkcw99xft7" class="animable"></line><line x1="353.27" y1="161.06" x2="361.25" y2="161.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 161.06px;" id="elli4c6m8jlv" class="animable"></line><line x1="353.27" y1="169.19" x2="361.25" y2="169.19" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 169.19px;" id="ele1yhuf0pbg" class="animable"></line><line x1="353.27" y1="177.32" x2="361.25" y2="177.32" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 177.32px;" id="elopw18rntm8" class="animable"></line><line x1="353.27" y1="185.45" x2="361.25" y2="185.45" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 185.45px;" id="elascy6d4ow1" class="animable"></line><line x1="353.27" y1="193.59" x2="361.25" y2="193.59" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 193.59px;" id="elecgvuattea6" class="animable"></line><line x1="353.27" y1="201.72" x2="361.25" y2="201.72" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 201.72px;" id="elw5mdotki9s8" class="animable"></line><line x1="353.27" y1="209.85" x2="361.25" y2="209.85" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 209.85px;" id="elh479przhyg5" class="animable"></line><line x1="353.27" y1="217.98" x2="361.25" y2="217.98" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 217.98px;" id="elqp1new0t1" class="animable"></line><line x1="353.27" y1="225.22" x2="361.25" y2="225.22" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 225.22px;" id="elkpfzpdxpf5" class="animable"></line><line x1="353.27" y1="233.36" x2="361.25" y2="233.36" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 233.36px;" id="el06sqrw3l4zcj" class="animable"></line><line x1="353.27" y1="241.49" x2="361.25" y2="241.49" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 241.49px;" id="el7d4y370fbse" class="animable"></line><line x1="353.27" y1="249.62" x2="361.25" y2="249.62" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 249.62px;" id="el2mqb3nujch6" class="animable"></line><line x1="353.27" y1="257.76" x2="361.25" y2="257.76" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 257.76px;" id="eloyklsc6gouq" class="animable"></line><line x1="353.27" y1="265.89" x2="361.25" y2="265.89" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 265.89px;" id="el23ccnzpfuzx" class="animable"></line><line x1="353.27" y1="274.02" x2="361.25" y2="274.02" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 274.02px;" id="el1w9lbrhxg7g" class="animable"></line><line x1="353.27" y1="282.15" x2="361.25" y2="282.15" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 282.15px;" id="eld0po7ecv4v" class="animable"></line><line x1="353.27" y1="290.29" x2="361.25" y2="290.29" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 290.29px;" id="elfk8vkssgs8m" class="animable"></line><line x1="368.05" y1="30.94" x2="376.04" y2="30.94" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 30.94px;" id="eloilq8ylls2" class="animable"></line><line x1="368.05" y1="39.07" x2="376.04" y2="39.07" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 39.07px;" id="elepcdvzx6nxd" class="animable"></line><line x1="368.05" y1="47.2" x2="376.04" y2="47.2" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 47.2px;" id="elsqyg188qtx7" class="animable"></line><line x1="368.05" y1="55.33" x2="376.04" y2="55.33" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 55.33px;" id="elte8oyc1cxqi" class="animable"></line><line x1="368.05" y1="63.47" x2="376.04" y2="63.47" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 63.47px;" id="elnybbt9lrls" class="animable"></line><line x1="368.05" y1="71.6" x2="376.04" y2="71.6" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 71.6px;" id="el6syj4ew8n0r" class="animable"></line><line x1="368.05" y1="79.73" x2="376.04" y2="79.73" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 79.73px;" id="elwe3u10hujw" class="animable"></line><line x1="368.05" y1="87.86" x2="376.04" y2="87.86" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 87.86px;" id="elgha2c9wbcwh" class="animable"></line><line x1="368.05" y1="96" x2="376.04" y2="96" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 96px;" id="ellbt0rd33o2b" class="animable"></line><line x1="368.05" y1="104.13" x2="376.04" y2="104.13" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 104.13px;" id="el5xgnjzv7au9" class="animable"></line><line x1="368.05" y1="112.26" x2="376.04" y2="112.26" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 112.26px;" id="el9jhraj7aoyv" class="animable"></line><line x1="368.05" y1="120.39" x2="376.04" y2="120.39" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 120.39px;" id="elycrc4nulope" class="animable"></line><line x1="368.05" y1="128.53" x2="376.04" y2="128.53" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 128.53px;" id="elqta6l6sllg" class="animable"></line><line x1="368.05" y1="136.66" x2="376.04" y2="136.66" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 136.66px;" id="els3rw90jellb" class="animable"></line><line x1="368.05" y1="144.79" x2="376.04" y2="144.79" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 144.79px;" id="elifpq5zd104" class="animable"></line><line x1="368.05" y1="152.92" x2="376.04" y2="152.92" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 152.92px;" id="el6yydipb6d5a" class="animable"></line><line x1="368.05" y1="161.06" x2="376.04" y2="161.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 161.06px;" id="elefhx4oxtwn8" class="animable"></line><line x1="368.05" y1="169.19" x2="376.04" y2="169.19" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 169.19px;" id="elw00l9xuwffq" class="animable"></line><line x1="368.05" y1="177.32" x2="376.04" y2="177.32" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 177.32px;" id="eld4tipbr6nu8" class="animable"></line><line x1="368.05" y1="185.45" x2="376.04" y2="185.45" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 185.45px;" id="el3j2ih0p3ccf" class="animable"></line><line x1="368.05" y1="193.59" x2="376.04" y2="193.59" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 193.59px;" id="el4lmol22wg1f" class="animable"></line><line x1="368.05" y1="201.72" x2="376.04" y2="201.72" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 201.72px;" id="elsy04ptn559o" class="animable"></line><line x1="368.05" y1="209.85" x2="376.04" y2="209.85" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 209.85px;" id="elmgqnncf4ir" class="animable"></line><line x1="368.05" y1="217.98" x2="376.04" y2="217.98" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 217.98px;" id="el5hw5k2ijfxc" class="animable"></line><line x1="368.05" y1="225.22" x2="376.04" y2="225.22" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 225.22px;" id="ela2b9loy3how" class="animable"></line><line x1="368.05" y1="233.36" x2="376.04" y2="233.36" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 233.36px;" id="elugwpiy38bee" class="animable"></line><line x1="368.05" y1="241.49" x2="376.04" y2="241.49" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 241.49px;" id="elr4zfcys6p7s" class="animable"></line><line x1="368.05" y1="249.62" x2="376.04" y2="249.62" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 249.62px;" id="elc8gbvvmuxwl" class="animable"></line><line x1="368.05" y1="257.76" x2="376.04" y2="257.76" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 257.76px;" id="el9w0t66y6psn" class="animable"></line><line x1="368.05" y1="265.89" x2="376.04" y2="265.89" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 265.89px;" id="el1xsdfm0q1ri" class="animable"></line><line x1="368.05" y1="274.02" x2="376.04" y2="274.02" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 274.02px;" id="elofayomrkt7m" class="animable"></line><line x1="368.05" y1="282.15" x2="376.04" y2="282.15" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 282.15px;" id="el9ei1rv9ojg6" class="animable"></line><line x1="368.05" y1="290.29" x2="376.04" y2="290.29" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 290.29px;" id="eltxsmw2cxtq9" class="animable"></line><line x1="382.84" y1="112.26" x2="390.82" y2="112.26" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.83px 112.26px;" id="elvwxtq8n75r8" class="animable"></line><line x1="382.84" y1="120.39" x2="390.82" y2="120.39" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.83px 120.39px;" id="elys3bkigpu5" class="animable"></line><line x1="382.84" y1="128.53" x2="390.82" y2="128.53" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.83px 128.53px;" id="elycol2k2dn8o" class="animable"></line><line x1="382.84" y1="136.66" x2="390.82" y2="136.66" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.83px 136.66px;" id="elnckutsmyv0b" class="animable"></line><line x1="382.84" y1="144.79" x2="390.82" y2="144.79" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.83px 144.79px;" id="ellbmxmqeuc0k" class="animable"></line><line x1="382.84" y1="152.92" x2="390.82" y2="152.92" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.83px 152.92px;" id="elxtxpn5okdq" class="animable"></line><line x1="382.84" y1="161.06" x2="390.82" y2="161.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.83px 161.06px;" id="eldgyc45ddulj" class="animable"></line><line x1="382.84" y1="169.19" x2="390.82" y2="169.19" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.83px 169.19px;" id="el9uv83o4mdsh" class="animable"></line><line x1="382.84" y1="177.32" x2="390.82" y2="177.32" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.83px 177.32px;" id="elo2ayfw017ur" class="animable"></line><line x1="382.84" y1="185.45" x2="390.82" y2="185.45" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.83px 185.45px;" id="elwl4ee77exy" class="animable"></line><line x1="382.84" y1="193.59" x2="390.82" y2="193.59" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.83px 193.59px;" id="elxof95u7z9nd" class="animable"></line><line x1="382.84" y1="201.72" x2="390.82" y2="201.72" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.83px 201.72px;" id="elfi66digj5w6" class="animable"></line><line x1="382.84" y1="209.85" x2="390.82" y2="209.85" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.83px 209.85px;" id="el55htvficd6a" class="animable"></line><line x1="382.84" y1="217.98" x2="390.82" y2="217.98" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.83px 217.98px;" id="elz11l1lmim2" class="animable"></line><line x1="382.84" y1="225.22" x2="390.82" y2="225.22" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.83px 225.22px;" id="elbio68vr1x2v" class="animable"></line><line x1="382.84" y1="233.36" x2="390.82" y2="233.36" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.83px 233.36px;" id="elvxmjp84yli" class="animable"></line><line x1="382.84" y1="241.49" x2="390.82" y2="241.49" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.83px 241.49px;" id="elgbr236u6c5t" class="animable"></line><line x1="382.84" y1="249.62" x2="390.82" y2="249.62" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.83px 249.62px;" id="elzo3coflleql" class="animable"></line><line x1="382.84" y1="257.76" x2="390.82" y2="257.76" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.83px 257.76px;" id="elmrp1ej90ic" class="animable"></line><line x1="382.84" y1="265.89" x2="390.82" y2="265.89" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.83px 265.89px;" id="el1gwge7zo9ix" class="animable"></line><line x1="382.84" y1="274.02" x2="390.82" y2="274.02" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.83px 274.02px;" id="elefd0ix9wqeo" class="animable"></line><line x1="382.84" y1="282.15" x2="390.82" y2="282.15" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.83px 282.15px;" id="elecqbbu8i39" class="animable"></line><line x1="382.84" y1="290.29" x2="390.82" y2="290.29" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.83px 290.29px;" id="elipn8zp3y31o" class="animable"></line><line x1="397.62" y1="112.26" x2="405.61" y2="112.26" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 401.615px 112.26px;" id="el47qtlxmnl13" class="animable"></line><line x1="397.62" y1="120.39" x2="405.61" y2="120.39" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 401.615px 120.39px;" id="eldi1k22ruxiw" class="animable"></line><line x1="397.62" y1="128.53" x2="405.61" y2="128.53" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 401.615px 128.53px;" id="elv8n4ulpqhde" class="animable"></line><line x1="397.62" y1="136.66" x2="405.61" y2="136.66" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 401.615px 136.66px;" id="elgxgetarfzfm" class="animable"></line><line x1="397.62" y1="144.79" x2="405.61" y2="144.79" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 401.615px 144.79px;" id="el4944k0qfpu7" class="animable"></line><line x1="397.62" y1="152.92" x2="405.61" y2="152.92" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 401.615px 152.92px;" id="elk2gf7stkjy" class="animable"></line><line x1="397.62" y1="161.06" x2="405.61" y2="161.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 401.615px 161.06px;" id="el4q42spuzsr9" class="animable"></line><line x1="397.62" y1="169.19" x2="405.61" y2="169.19" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 401.615px 169.19px;" id="el8l8aboxaakx" class="animable"></line><line x1="397.62" y1="177.32" x2="405.61" y2="177.32" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 401.615px 177.32px;" id="elwmt41ipnfqs" class="animable"></line><line x1="397.62" y1="185.45" x2="405.61" y2="185.45" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 401.615px 185.45px;" id="elvohqxjpzre" class="animable"></line><line x1="397.62" y1="193.59" x2="405.61" y2="193.59" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 401.615px 193.59px;" id="elcnpuefhx2ho" class="animable"></line><line x1="397.62" y1="201.72" x2="405.61" y2="201.72" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 401.615px 201.72px;" id="el5exh9ac2gkx" class="animable"></line><line x1="397.62" y1="209.85" x2="405.61" y2="209.85" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 401.615px 209.85px;" id="elkwzt96v6el" class="animable"></line><line x1="397.62" y1="217.98" x2="405.61" y2="217.98" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 401.615px 217.98px;" id="elqlht7izdctd" class="animable"></line><line x1="397.62" y1="225.22" x2="405.61" y2="225.22" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 401.615px 225.22px;" id="elj1hgbusxu3" class="animable"></line><line x1="397.62" y1="233.36" x2="405.61" y2="233.36" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 401.615px 233.36px;" id="elmsb3dx735wk" class="animable"></line><line x1="397.62" y1="241.49" x2="405.61" y2="241.49" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 401.615px 241.49px;" id="elw9bqocaowe8" class="animable"></line><line x1="397.62" y1="249.62" x2="405.61" y2="249.62" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 401.615px 249.62px;" id="elwyqhr54vvoj" class="animable"></line><line x1="397.62" y1="257.76" x2="405.61" y2="257.76" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 401.615px 257.76px;" id="elldgqo26woj" class="animable"></line><line x1="397.62" y1="265.89" x2="405.61" y2="265.89" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 401.615px 265.89px;" id="elq2s6lktog6o" class="animable"></line><line x1="397.62" y1="274.02" x2="405.61" y2="274.02" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 401.615px 274.02px;" id="elbmi1mra4okw" class="animable"></line><line x1="397.62" y1="282.15" x2="405.61" y2="282.15" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 401.615px 282.15px;" id="elw9sgmtdi62t" class="animable"></line><line x1="397.62" y1="290.29" x2="405.61" y2="290.29" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 401.615px 290.29px;" id="el0jvk70w2fz3n" class="animable"></line><line x1="412.41" y1="112.26" x2="420.39" y2="112.26" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 416.4px 112.26px;" id="eltaztyjm3or" class="animable"></line><line x1="412.41" y1="120.39" x2="420.39" y2="120.39" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 416.4px 120.39px;" id="eldqc9j475lv" class="animable"></line><line x1="412.41" y1="128.53" x2="420.39" y2="128.53" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 416.4px 128.53px;" id="eltom0hw2ucwd" class="animable"></line><line x1="412.41" y1="136.66" x2="420.39" y2="136.66" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 416.4px 136.66px;" id="el4wdoxl57bhb" class="animable"></line><line x1="412.41" y1="144.79" x2="420.39" y2="144.79" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 416.4px 144.79px;" id="elfx46n2rw8kr" class="animable"></line><line x1="412.41" y1="152.92" x2="420.39" y2="152.92" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 416.4px 152.92px;" id="eld2lkp7ekvdk" class="animable"></line><line x1="412.41" y1="161.06" x2="420.39" y2="161.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 416.4px 161.06px;" id="elohv0jmh81y" class="animable"></line><line x1="412.41" y1="169.19" x2="420.39" y2="169.19" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 416.4px 169.19px;" id="elgldu4852mtb" class="animable"></line><line x1="412.41" y1="177.32" x2="420.39" y2="177.32" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 416.4px 177.32px;" id="elyctiq9o7w7d" class="animable"></line><line x1="412.41" y1="185.45" x2="420.39" y2="185.45" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 416.4px 185.45px;" id="el48vxeg5kpoo" class="animable"></line><line x1="412.41" y1="193.59" x2="420.39" y2="193.59" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 416.4px 193.59px;" id="eluclqc60o5mb" class="animable"></line><line x1="412.41" y1="201.72" x2="420.39" y2="201.72" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 416.4px 201.72px;" id="elp0rayhkfc3e" class="animable"></line><line x1="412.41" y1="209.85" x2="420.39" y2="209.85" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 416.4px 209.85px;" id="elecr55jpldjt" class="animable"></line><line x1="412.41" y1="217.98" x2="420.39" y2="217.98" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 416.4px 217.98px;" id="el92ga3pbq4fp" class="animable"></line><line x1="412.41" y1="225.22" x2="420.39" y2="225.22" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 416.4px 225.22px;" id="elx4ebq0pwo6m" class="animable"></line><line x1="412.41" y1="233.36" x2="420.39" y2="233.36" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 416.4px 233.36px;" id="eloeoxtcfph59" class="animable"></line><line x1="412.41" y1="241.49" x2="420.39" y2="241.49" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 416.4px 241.49px;" id="el28xkrc3bpsz" class="animable"></line><line x1="412.41" y1="249.62" x2="420.39" y2="249.62" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 416.4px 249.62px;" id="el3q6uozu4i41" class="animable"></line><line x1="412.41" y1="257.76" x2="420.39" y2="257.76" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 416.4px 257.76px;" id="el3cckiptfh2a" class="animable"></line><line x1="412.41" y1="265.89" x2="420.39" y2="265.89" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 416.4px 265.89px;" id="elo1nq37vggw" class="animable"></line><line x1="412.41" y1="274.02" x2="420.39" y2="274.02" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 416.4px 274.02px;" id="elxtg7ubmz8po" class="animable"></line><line x1="412.41" y1="282.15" x2="420.39" y2="282.15" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 416.4px 282.15px;" id="el73xgzbhlwsk" class="animable"></line><line x1="412.41" y1="290.29" x2="420.39" y2="290.29" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 416.4px 290.29px;" id="el8ii582wmxaf" class="animable"></line><line x1="427.19" y1="112.26" x2="435.18" y2="112.26" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 431.185px 112.26px;" id="elfbfuxlwn4uo" class="animable"></line><line x1="427.19" y1="120.39" x2="435.18" y2="120.39" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 431.185px 120.39px;" id="elvprsp6ws0cf" class="animable"></line><line x1="427.19" y1="128.53" x2="435.18" y2="128.53" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 431.185px 128.53px;" id="eljtf486nwxi" class="animable"></line><line x1="427.19" y1="136.66" x2="435.18" y2="136.66" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 431.185px 136.66px;" id="elgf56b7w1ibh" class="animable"></line><line x1="427.19" y1="144.79" x2="435.18" y2="144.79" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 431.185px 144.79px;" id="elu6vcqvhygwb" class="animable"></line><line x1="427.19" y1="152.92" x2="435.18" y2="152.92" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 431.185px 152.92px;" id="elgxdm463xsub" class="animable"></line><line x1="427.19" y1="161.06" x2="435.18" y2="161.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 431.185px 161.06px;" id="el59m4o9v977" class="animable"></line><line x1="427.19" y1="169.19" x2="435.18" y2="169.19" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 431.185px 169.19px;" id="elqtvzn7psna" class="animable"></line><line x1="427.19" y1="177.32" x2="435.18" y2="177.32" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 431.185px 177.32px;" id="elebb8n8bfllo" class="animable"></line><line x1="427.19" y1="185.45" x2="435.18" y2="185.45" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 431.185px 185.45px;" id="elr5kbjy5rnl" class="animable"></line><line x1="427.19" y1="193.59" x2="435.18" y2="193.59" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 431.185px 193.59px;" id="elt3uey3zzhyl" class="animable"></line><line x1="427.19" y1="201.72" x2="435.18" y2="201.72" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 431.185px 201.72px;" id="elmv0tyzf2wqp" class="animable"></line><line x1="427.19" y1="209.85" x2="435.18" y2="209.85" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 431.185px 209.85px;" id="elp1jtsnucu4o" class="animable"></line><line x1="427.19" y1="217.98" x2="435.18" y2="217.98" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 431.185px 217.98px;" id="el5ji5nxpr5mc" class="animable"></line><line x1="427.19" y1="225.22" x2="435.18" y2="225.22" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 431.185px 225.22px;" id="elk3i0ze5ukc" class="animable"></line><line x1="427.19" y1="233.36" x2="435.18" y2="233.36" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 431.185px 233.36px;" id="elyv6gszwua" class="animable"></line><line x1="427.19" y1="241.49" x2="435.18" y2="241.49" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 431.185px 241.49px;" id="elmtbwxmjzww7" class="animable"></line><line x1="427.19" y1="249.62" x2="435.18" y2="249.62" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 431.185px 249.62px;" id="elqhpy29yhv4" class="animable"></line><line x1="427.19" y1="257.76" x2="435.18" y2="257.76" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 431.185px 257.76px;" id="elnqsy17z99ln" class="animable"></line><line x1="427.19" y1="265.89" x2="435.18" y2="265.89" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 431.185px 265.89px;" id="el0q375cjti5a" class="animable"></line><line x1="427.19" y1="274.02" x2="435.18" y2="274.02" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 431.185px 274.02px;" id="el4ugj4gu63s7" class="animable"></line><line x1="427.19" y1="282.15" x2="435.18" y2="282.15" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 431.185px 282.15px;" id="elcjv3ef3lrlp" class="animable"></line><line x1="427.19" y1="290.29" x2="435.18" y2="290.29" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 431.185px 290.29px;" id="el7u7cd5ivnox" class="animable"></line><line x1="353.27" y1="297.32" x2="361.25" y2="297.32" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 297.32px;" id="el543gr94obef" class="animable"></line><line x1="353.27" y1="305.45" x2="361.25" y2="305.45" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 305.45px;" id="el012drv2ckerx" class="animable"></line><line x1="353.27" y1="313.59" x2="361.25" y2="313.59" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 313.59px;" id="el8btlhdyh3v" class="animable"></line><line x1="353.27" y1="321.72" x2="361.25" y2="321.72" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 321.72px;" id="elgft5bscet64" class="animable"></line><line x1="353.27" y1="329.85" x2="361.25" y2="329.85" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.26px 329.85px;" id="eldjctf3gyxbv" class="animable"></line><line x1="368.05" y1="297.32" x2="376.04" y2="297.32" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 297.32px;" id="elaey85ejs958" class="animable"></line><line x1="368.05" y1="305.45" x2="376.04" y2="305.45" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 305.45px;" id="elitulkihhcb" class="animable"></line><line x1="368.05" y1="313.59" x2="376.04" y2="313.59" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 313.59px;" id="elj19x560mxvk" class="animable"></line><line x1="368.05" y1="321.72" x2="376.04" y2="321.72" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 321.72px;" id="el02iuw35vozqc" class="animable"></line><line x1="368.05" y1="329.85" x2="376.04" y2="329.85" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.045px 329.85px;" id="eln138xlvw5te" class="animable"></line><line x1="382.84" y1="297.32" x2="390.82" y2="297.32" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.83px 297.32px;" id="el3p1rtryxguk" class="animable"></line><line x1="382.84" y1="305.45" x2="390.82" y2="305.45" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.83px 305.45px;" id="el2ny8u5acr0r" class="animable"></line><line x1="382.84" y1="313.59" x2="390.82" y2="313.59" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.83px 313.59px;" id="el0fyqlksp9lqk" class="animable"></line><line x1="382.84" y1="321.72" x2="390.82" y2="321.72" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.83px 321.72px;" id="elseu2h8w1css" class="animable"></line><line x1="382.84" y1="329.85" x2="390.82" y2="329.85" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.83px 329.85px;" id="elrlf2inv6otj" class="animable"></line><line x1="397.62" y1="297.32" x2="405.61" y2="297.32" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 401.615px 297.32px;" id="elivjc7dt3eac" class="animable"></line><line x1="397.62" y1="305.45" x2="405.61" y2="305.45" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 401.615px 305.45px;" id="elfypw4gaa5w9" class="animable"></line><line x1="397.62" y1="313.59" x2="405.61" y2="313.59" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 401.615px 313.59px;" id="eled6rwhiw2db" class="animable"></line><line x1="397.62" y1="321.72" x2="405.61" y2="321.72" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 401.615px 321.72px;" id="el1shf2ufmux4" class="animable"></line><line x1="397.62" y1="329.85" x2="405.61" y2="329.85" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 401.615px 329.85px;" id="elaaxlmqtdexg" class="animable"></line><line x1="412.41" y1="297.32" x2="420.39" y2="297.32" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 416.4px 297.32px;" id="elm47c03rcpii" class="animable"></line><line x1="412.41" y1="305.45" x2="420.39" y2="305.45" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 416.4px 305.45px;" id="el87wlbi3cp88" class="animable"></line><line x1="412.41" y1="313.59" x2="420.39" y2="313.59" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 416.4px 313.59px;" id="el0gm0t67vjw16" class="animable"></line><line x1="412.41" y1="321.72" x2="420.39" y2="321.72" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 416.4px 321.72px;" id="el3wexh3svswg" class="animable"></line><line x1="412.41" y1="329.85" x2="420.39" y2="329.85" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 416.4px 329.85px;" id="eldcbprd243ba" class="animable"></line><line x1="427.19" y1="297.32" x2="435.18" y2="297.32" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 431.185px 297.32px;" id="elf6dzphyjihd" class="animable"></line><line x1="427.19" y1="305.45" x2="435.18" y2="305.45" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 431.185px 305.45px;" id="elvw538mbnhbe" class="animable"></line><line x1="427.19" y1="313.59" x2="435.18" y2="313.59" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 431.185px 313.59px;" id="elhlphp6x9k38" class="animable"></line><line x1="427.19" y1="321.72" x2="435.18" y2="321.72" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 431.185px 321.72px;" id="el0y0c15mgkfz" class="animable"></line><line x1="427.19" y1="329.85" x2="435.18" y2="329.85" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 431.185px 329.85px;" id="eldg523yvos59" class="animable"></line><polyline points="155.29 129.69 121.2 129.69 121.2 108.51 60.51 108.51 60.51 81.41 41.39 81.41 41.39 144.93 21.44 144.93" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 88.365px 113.17px;" id="el1ndpv37b2p6" class="animable"></polyline><polyline points="426.3 82.26 444.59 82.26 444.59 65.32 486.16 65.32 486.16 135.69" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 456.23px 100.505px;" id="el186015kmh32" class="animable"></polyline><polyline points="450.15 327.5 450.15 155.74 557.82 155.74 557.82 330.05" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 503.985px 242.895px;" id="el3d3z1oozwdf" class="animable"></polyline><polyline points="453.97 155.54 453.97 149.11 553.77 149.11 553.77 155.53" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 503.87px 152.325px;" id="elafuy9s1s93j" class="animable"></polyline><line x1="456.5" y1="162.91" x2="456.5" y2="329.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 456.5px 245.985px;" id="elf38spv1txhu" class="animable"></line><line x1="464.31" y1="162.91" x2="464.31" y2="329.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 464.31px 245.985px;" id="elvf4ce13gbmb" class="animable"></line><line x1="472.12" y1="162.91" x2="472.12" y2="329.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 472.12px 245.985px;" id="el59gzo4eybt" class="animable"></line><line x1="479.93" y1="162.91" x2="479.93" y2="329.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 479.93px 245.985px;" id="eleq8v6v5bs6" class="animable"></line><line x1="487.74" y1="162.91" x2="487.74" y2="329.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 487.74px 245.985px;" id="elnuyrybravy" class="animable"></line><line x1="495.55" y1="162.91" x2="495.55" y2="329.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 495.55px 245.985px;" id="elbb6b3cuskge" class="animable"></line><line x1="503.36" y1="162.91" x2="503.36" y2="329.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 503.36px 245.985px;" id="elylei945591q" class="animable"></line><line x1="511.17" y1="162.91" x2="511.17" y2="329.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 511.17px 245.985px;" id="elh4q79hc2plh" class="animable"></line><line x1="518.98" y1="162.91" x2="518.98" y2="329.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 518.98px 245.985px;" id="elkk1o64ps23d" class="animable"></line><line x1="526.79" y1="162.91" x2="526.79" y2="329.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 526.79px 245.985px;" id="elftwgk9hxbfd" class="animable"></line><line x1="534.6" y1="162.91" x2="534.6" y2="329.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 534.6px 245.985px;" id="el2ey9afqswm" class="animable"></line><line x1="542.41" y1="162.91" x2="542.41" y2="329.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 542.41px 245.985px;" id="el1o8gbvqghy1" class="animable"></line><line x1="550.22" y1="162.91" x2="550.22" y2="329.06" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 550.22px 245.985px;" id="el3tktax6x839" class="animable"></line><line x1="456.5" y1="169.93" x2="551.44" y2="169.93" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 503.97px 169.93px;" id="el3bjaqgj8t3k" class="animable"></line><line x1="456.5" y1="181.79" x2="551.44" y2="181.79" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 503.97px 181.79px;" id="elcn2qnx0rhqw" class="animable"></line><line x1="456.5" y1="193.65" x2="551.44" y2="193.65" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 503.97px 193.65px;" id="eliybkiwwia6" class="animable"></line><line x1="456.5" y1="205.5" x2="551.44" y2="205.5" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 503.97px 205.5px;" id="eldjui1sjevbs" class="animable"></line><line x1="456.5" y1="217.36" x2="551.44" y2="217.36" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 503.97px 217.36px;" id="el0eidzlzaos3" class="animable"></line><line x1="456.5" y1="229.22" x2="551.44" y2="229.22" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 503.97px 229.22px;" id="elyu1ulkfcko" class="animable"></line><line x1="456.5" y1="241.07" x2="551.44" y2="241.07" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 503.97px 241.07px;" id="el7buvu8aajcb" class="animable"></line><line x1="456.5" y1="252.93" x2="551.44" y2="252.93" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 503.97px 252.93px;" id="el253dg71ynee" class="animable"></line><line x1="456.5" y1="264.79" x2="551.44" y2="264.79" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 503.97px 264.79px;" id="elaib52oi1ud" class="animable"></line><line x1="456.5" y1="276.64" x2="551.44" y2="276.64" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 503.97px 276.64px;" id="elactidce4q98" class="animable"></line><line x1="456.5" y1="288.5" x2="551.44" y2="288.5" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 503.97px 288.5px;" id="elfuafp6c6pvh" class="animable"></line><line x1="456.5" y1="300.36" x2="551.44" y2="300.36" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 503.97px 300.36px;" id="elksromp19ih8" class="animable"></line><line x1="456.5" y1="312.21" x2="551.44" y2="312.21" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 503.97px 312.21px;" id="elndr82mha6m" class="animable"></line><polyline points="458.08 149.04 458.08 141.47 504.04 141.47 504.04 149.32" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 481.06px 145.395px;" id="el133w7d9yl7d" class="animable"></polyline><polyline points="550.47 147.79 550.47 85.76 604.01 85.76 604.01 330.88" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 577.24px 208.32px;" id="eljom1fj4jxbn" class="animable"></polyline><polyline points="555.84 85.77 555.84 78.42 598.74 78.42 598.74 85.34" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 577.29px 82.095px;" id="elrwd3kcd9l3f" class="animable"></polyline><polyline points="570.71 77.98 570.71 63.27 583.87 63.27 583.87 77.55" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 577.29px 70.625px;" id="elwyvtu04r42p" class="animable"></polyline><rect x="557.76" y="92.6" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 559.21px 95.555px;" id="elo7ggxmx51lf" class="animable"></rect><rect x="566.47" y="92.6" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 567.92px 95.555px;" id="elu9kjkiocsp" class="animable"></rect><rect x="575.17" y="92.6" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 576.62px 95.555px;" id="ele0t2wsvx0g" class="animable"></rect><rect x="583.88" y="92.6" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 585.33px 95.555px;" id="eldhramp699jl" class="animable"></rect><rect x="592.59" y="92.6" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 594.04px 95.555px;" id="elccpyy1zr6yk" class="animable"></rect><rect x="557.76" y="107.39" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 559.21px 110.345px;" id="elha9621udqhq" class="animable"></rect><rect x="566.47" y="107.39" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 567.92px 110.345px;" id="ele2736menqco" class="animable"></rect><rect x="575.17" y="107.39" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 576.62px 110.345px;" id="elx37ges4path" class="animable"></rect><rect x="583.88" y="107.39" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 585.33px 110.345px;" id="eljmxtk0gjax" class="animable"></rect><rect x="592.59" y="107.39" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 594.04px 110.345px;" id="el2tdoa4df21r" class="animable"></rect><rect x="557.76" y="122.18" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 559.21px 125.135px;" id="elcg9olpmv3nu" class="animable"></rect><rect x="566.47" y="122.18" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 567.92px 125.135px;" id="elhrb8335he4o" class="animable"></rect><rect x="575.17" y="122.18" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 576.62px 125.135px;" id="elsyxv0xtgy4" class="animable"></rect><rect x="583.88" y="122.18" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 585.33px 125.135px;" id="elkwrhrjemmli" class="animable"></rect><rect x="592.59" y="122.18" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 594.04px 125.135px;" id="el6xll4q3ota2" class="animable"></rect><rect x="557.76" y="136.96" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 559.21px 139.915px;" id="elid83k8gc4e8" class="animable"></rect><rect x="566.47" y="136.96" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 567.92px 139.915px;" id="elcfnyjsaon7v" class="animable"></rect><rect x="575.17" y="136.96" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 576.62px 139.915px;" id="el19bdej2ltxj" class="animable"></rect><rect x="583.88" y="136.96" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 585.33px 139.915px;" id="el31mx42kgbvp" class="animable"></rect><rect x="592.59" y="136.96" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 594.04px 139.915px;" id="elhhp8xf1mirg" class="animable"></rect><rect x="566.47" y="151.75" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 567.92px 154.705px;" id="elaqeen3du619" class="animable"></rect><rect x="575.17" y="151.75" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 576.62px 154.705px;" id="elv7vcdnreyk" class="animable"></rect><rect x="583.88" y="151.75" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 585.33px 154.705px;" id="elox68g5ve9hc" class="animable"></rect><rect x="592.59" y="151.75" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 594.04px 154.705px;" id="elpcjmgn36ov" class="animable"></rect><rect x="566.47" y="166.54" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 567.92px 169.495px;" id="elyr8zrym6h1l" class="animable"></rect><rect x="575.17" y="166.54" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 576.62px 169.495px;" id="elf4t7sqwym7" class="animable"></rect><rect x="583.88" y="166.54" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 585.33px 169.495px;" id="elz0b23s96nae" class="animable"></rect><rect x="592.59" y="166.54" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 594.04px 169.495px;" id="el6ksnogv691m" class="animable"></rect><rect x="566.47" y="181.32" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 567.92px 184.275px;" id="el0sh6lafuhmz" class="animable"></rect><rect x="575.17" y="181.32" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 576.62px 184.275px;" id="elgo2wfey9bnm" class="animable"></rect><rect x="583.88" y="181.32" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 585.33px 184.275px;" id="elztl9qpun07a" class="animable"></rect><rect x="592.59" y="181.32" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 594.04px 184.275px;" id="elsh818zxcdbk" class="animable"></rect><rect x="566.47" y="196.11" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 567.92px 199.065px;" id="ellcpjrtl0n2i" class="animable"></rect><rect x="575.17" y="196.11" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 576.62px 199.065px;" id="els7k1duwbs4q" class="animable"></rect><rect x="583.88" y="196.11" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 585.33px 199.065px;" id="el4ar5gk88m5" class="animable"></rect><rect x="592.59" y="196.11" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 594.04px 199.065px;" id="elrj3pjgh39ei" class="animable"></rect><rect x="566.47" y="210.9" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 567.92px 213.855px;" id="eld8riehmfyss" class="animable"></rect><rect x="575.17" y="210.9" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 576.62px 213.855px;" id="el5hqektwytsd" class="animable"></rect><rect x="583.88" y="210.9" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 585.33px 213.855px;" id="elr16s2xt9il" class="animable"></rect><rect x="592.59" y="210.9" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 594.04px 213.855px;" id="el04df68awcbba" class="animable"></rect><rect x="566.47" y="225.68" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 567.92px 228.635px;" id="el1jjbjcieyoij" class="animable"></rect><rect x="575.17" y="225.68" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 576.62px 228.635px;" id="elpex645o1q3e" class="animable"></rect><rect x="583.88" y="225.68" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 585.33px 228.635px;" id="el2nlkh3e4hvo" class="animable"></rect><rect x="592.59" y="225.68" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 594.04px 228.635px;" id="el7ed3gs5zu8" class="animable"></rect><rect x="566.47" y="240.47" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 567.92px 243.425px;" id="elbhtp6yirtn" class="animable"></rect><rect x="575.17" y="240.47" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 576.62px 243.425px;" id="eltxfdn7ua7de" class="animable"></rect><rect x="583.88" y="240.47" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 585.33px 243.425px;" id="eljkrcs17p9i" class="animable"></rect><rect x="592.59" y="240.47" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 594.04px 243.425px;" id="elub1cwnzsafq" class="animable"></rect><rect x="566.47" y="255.26" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 567.92px 258.215px;" id="el27a3jurhckg" class="animable"></rect><rect x="575.17" y="255.26" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 576.62px 258.215px;" id="elzlv2rjbe7q" class="animable"></rect><rect x="583.88" y="255.26" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 585.33px 258.215px;" id="elmxm3hixyndg" class="animable"></rect><rect x="592.59" y="255.26" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 594.04px 258.215px;" id="el0j1ubk0970pc" class="animable"></rect><rect x="566.47" y="270.04" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 567.92px 272.995px;" id="elubtmubm8jo" class="animable"></rect><rect x="575.17" y="270.04" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 576.62px 272.995px;" id="eltk4jv9yqnz" class="animable"></rect><rect x="583.88" y="270.04" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 585.33px 272.995px;" id="elf5ztdrk0jz" class="animable"></rect><rect x="592.59" y="270.04" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 594.04px 272.995px;" id="el1z17kpvqjajh" class="animable"></rect><rect x="566.47" y="284.83" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 567.92px 287.785px;" id="elbnc804h0mp" class="animable"></rect><rect x="575.17" y="284.83" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 576.62px 287.785px;" id="ela7crse8q8g" class="animable"></rect><rect x="583.88" y="284.83" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 585.33px 287.785px;" id="elkqjhqxh5eqi" class="animable"></rect><rect x="592.59" y="284.83" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 594.04px 287.785px;" id="el2azl2d10srt" class="animable"></rect><rect x="566.47" y="299.61" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 567.92px 302.565px;" id="el9bfeut6ow6f" class="animable"></rect><rect x="575.17" y="299.61" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 576.62px 302.565px;" id="eljoqrre4v0pm" class="animable"></rect><rect x="583.88" y="299.61" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 585.33px 302.565px;" id="elzkmrs11l27j" class="animable"></rect><rect x="592.59" y="299.61" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 594.04px 302.565px;" id="elgl1zc1lx76e" class="animable"></rect><rect x="566.47" y="314.4" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 567.92px 317.355px;" id="ele9acgz35975" class="animable"></rect><rect x="575.17" y="314.4" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 576.62px 317.355px;" id="elvm7c4ru982" class="animable"></rect><rect x="583.88" y="314.4" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 585.33px 317.355px;" id="el1jmhf48mlr" class="animable"></rect><rect x="592.59" y="314.4" width="2.9" height="5.91" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 594.04px 317.355px;" id="elsp4se13hnf" class="animable"></rect><polyline points="605.88 103.87 723.96 103.87 723.96 329.75" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 664.92px 216.81px;" id="eluvt7e09br39" class="animable"></polyline><rect x="608.53" y="108.82" width="21.44" height="12.38" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 619.25px 115.01px;" id="ell9ju4m6nqtb" class="animable"></rect><rect x="634.26" y="108.82" width="21.44" height="12.38" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 644.98px 115.01px;" id="elvb3v1eaezwp" class="animable"></rect><rect x="659.99" y="108.82" width="21.44" height="12.38" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 670.71px 115.01px;" id="eljmetj7kwpw" class="animable"></rect><line x1="606.74" y1="137.7" x2="703.99" y2="137.7" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 655.365px 137.7px;" id="el6p0hzqix6wu" class="animable"></line><line x1="606.74" y1="145.84" x2="703.99" y2="145.84" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 655.365px 145.84px;" id="elq72mxv42xbq" class="animable"></line><line x1="606.74" y1="153.97" x2="703.99" y2="153.97" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 655.365px 153.97px;" id="el96xoaxnwba4" class="animable"></line><line x1="606.74" y1="162.1" x2="703.99" y2="162.1" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 655.365px 162.1px;" id="elwufuce7hik" class="animable"></line><line x1="606.74" y1="170.23" x2="703.99" y2="170.23" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 655.365px 170.23px;" id="el70mus52fdek" class="animable"></line><line x1="606.74" y1="178.37" x2="703.99" y2="178.37" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 655.365px 178.37px;" id="eloi2a89kg52h" class="animable"></line><line x1="606.74" y1="186.5" x2="703.99" y2="186.5" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 655.365px 186.5px;" id="elpv3punjofpd" class="animable"></line><line x1="606.74" y1="194.63" x2="703.99" y2="194.63" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 655.365px 194.63px;" id="el48weayerkgs" class="animable"></line><line x1="606.74" y1="202.76" x2="703.99" y2="202.76" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 655.365px 202.76px;" id="elsjgxrdbkaxn" class="animable"></line><line x1="606.74" y1="210.9" x2="703.99" y2="210.9" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 655.365px 210.9px;" id="elz27o8xydm0g" class="animable"></line><line x1="606.74" y1="219.03" x2="703.99" y2="219.03" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 655.365px 219.03px;" id="elbuurfctlqn5" class="animable"></line><line x1="606.74" y1="227.16" x2="703.99" y2="227.16" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 655.365px 227.16px;" id="el5890h6krzu" class="animable"></line><line x1="606.74" y1="235.29" x2="703.99" y2="235.29" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 655.365px 235.29px;" id="elhe03gcu38vv" class="animable"></line><line x1="606.74" y1="243.43" x2="703.99" y2="243.43" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 655.365px 243.43px;" id="elwogt7uo5ur" class="animable"></line><line x1="606.74" y1="251.56" x2="703.99" y2="251.56" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 655.365px 251.56px;" id="elkupl52wk2e" class="animable"></line><line x1="606.74" y1="259.69" x2="703.99" y2="259.69" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 655.365px 259.69px;" id="elnvu5ez7eye8" class="animable"></line><line x1="606.74" y1="267.82" x2="703.99" y2="267.82" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 655.365px 267.82px;" id="elmm9m5rmrcuo" class="animable"></line><line x1="606.74" y1="275.96" x2="703.99" y2="275.96" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 655.365px 275.96px;" id="ely2l7jbaous" class="animable"></line><line x1="606.74" y1="284.09" x2="703.99" y2="284.09" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 655.365px 284.09px;" id="el0mlwpragy0va" class="animable"></line><line x1="606.74" y1="292.22" x2="703.99" y2="292.22" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 655.365px 292.22px;" id="elenz8vw0kqb" class="animable"></line><line x1="606.74" y1="300.35" x2="703.99" y2="300.35" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 655.365px 300.35px;" id="elm9j0t0v089" class="animable"></line><line x1="606.74" y1="308.49" x2="703.99" y2="308.49" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 655.365px 308.49px;" id="elbomkrrz1ieb" class="animable"></line><line x1="606.74" y1="316.62" x2="703.99" y2="316.62" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 655.365px 316.62px;" id="el1tzg79rm15c" class="animable"></line><line x1="606.74" y1="324.75" x2="703.99" y2="324.75" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 655.365px 324.75px;" id="elnih1wqg7l2o" class="animable"></line><line x1="710.52" y1="137.7" x2="718.5" y2="137.7" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 714.51px 137.7px;" id="el5wl11jzs91l" class="animable"></line><line x1="710.52" y1="145.84" x2="718.5" y2="145.84" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 714.51px 145.84px;" id="elvr2xd00b2a9" class="animable"></line><line x1="710.52" y1="153.97" x2="718.5" y2="153.97" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 714.51px 153.97px;" id="elfksfganahye" class="animable"></line><line x1="710.52" y1="162.1" x2="718.5" y2="162.1" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 714.51px 162.1px;" id="els32r6c6uwea" class="animable"></line><line x1="710.52" y1="170.23" x2="718.5" y2="170.23" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 714.51px 170.23px;" id="el65smpfqqbmd" class="animable"></line><line x1="710.52" y1="178.37" x2="718.5" y2="178.37" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 714.51px 178.37px;" id="eles2f8ptmp0h" class="animable"></line><line x1="710.52" y1="186.5" x2="718.5" y2="186.5" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 714.51px 186.5px;" id="el6p74ngdeasw" class="animable"></line><line x1="710.52" y1="194.63" x2="718.5" y2="194.63" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 714.51px 194.63px;" id="el4s5yc5pkekx" class="animable"></line><line x1="710.52" y1="202.76" x2="718.5" y2="202.76" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 714.51px 202.76px;" id="el8jgfnmkirks" class="animable"></line><line x1="710.52" y1="210.9" x2="718.5" y2="210.9" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 714.51px 210.9px;" id="elf7204wseqde" class="animable"></line><line x1="710.52" y1="219.03" x2="718.5" y2="219.03" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 714.51px 219.03px;" id="elfolmxxsftxq" class="animable"></line><line x1="710.52" y1="227.16" x2="718.5" y2="227.16" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 714.51px 227.16px;" id="elykrip782dhl" class="animable"></line><line x1="710.52" y1="235.29" x2="718.5" y2="235.29" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 714.51px 235.29px;" id="eln9qmspekv4m" class="animable"></line><line x1="710.52" y1="243.43" x2="718.5" y2="243.43" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 714.51px 243.43px;" id="elnhjy5wh37up" class="animable"></line><line x1="710.52" y1="251.56" x2="718.5" y2="251.56" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 714.51px 251.56px;" id="elk87bjnv36y" class="animable"></line><line x1="710.52" y1="259.69" x2="718.5" y2="259.69" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 714.51px 259.69px;" id="el2t317cbajru" class="animable"></line><line x1="710.52" y1="267.82" x2="718.5" y2="267.82" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 714.51px 267.82px;" id="elc9yqsiad8t" class="animable"></line><line x1="710.52" y1="275.96" x2="718.5" y2="275.96" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 714.51px 275.96px;" id="elh7f59v3rlkt" class="animable"></line><line x1="710.52" y1="284.09" x2="718.5" y2="284.09" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 714.51px 284.09px;" id="el5js2tyh0zix" class="animable"></line><line x1="710.52" y1="292.22" x2="718.5" y2="292.22" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 714.51px 292.22px;" id="elwx870v4tk" class="animable"></line><line x1="710.52" y1="300.35" x2="718.5" y2="300.35" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 714.51px 300.35px;" id="elcolujxdbwa" class="animable"></line><line x1="710.52" y1="308.49" x2="718.5" y2="308.49" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 714.51px 308.49px;" id="elfr1flwf0zng" class="animable"></line><line x1="710.52" y1="316.62" x2="718.5" y2="316.62" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 714.51px 316.62px;" id="el66twblzi6cs" class="animable"></line><line x1="710.52" y1="324.75" x2="718.5" y2="324.75" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 714.51px 324.75px;" id="el18hywtv6xhs" class="animable"></line><polyline points="617.11 104 617.11 99.79 641.66 99.79 641.66 97.42 657.42 97.42 657.42 102.16 679.89 102.16 679.89 103.74" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 648.5px 100.71px;" id="elosrhakixrz8" class="animable"></polyline><polyline points="549.37 129.69 515.29 129.69 515.29 108.51 487.89 108.51" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 518.63px 119.1px;" id="el87w7f42nq9k" class="animable"></polyline><line x1="454.02" y1="72.83" x2="454.02" y2="136.88" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 454.02px 104.855px;" id="el6zuc2lfrek8" class="animable"></line><line x1="462.99" y1="72.83" x2="462.99" y2="136.88" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 462.99px 104.855px;" id="elxit079a6rm" class="animable"></line><line x1="471.96" y1="72.83" x2="471.96" y2="136.88" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; transform-origin: 471.96px 104.855px;" id="elfdnhtupw6v7" class="animable"></line></g></g></g><g id="freepik--Plants--inject-1" class="animable" style="transform-origin: 374.5px 442.908px;"><path d="M43.42,429.84a15.21,15.21,0,0,0,5.48.07c0,1.11,0,2.28.08,3.5a30.52,30.52,0,0,0,.81,5.27s0,.05,0,.07c-.29-.49-1.17-1.82-1.25-1.91-1.12-1.33-4.06-3.25-5.86-2.51a2.31,2.31,0,0,0-1.07,3.25,4.85,4.85,0,0,0,3.5,2,16.33,16.33,0,0,0,4.74-.67,41,41,0,0,0,1.77,5.13c.41,1,.84,1.95,1.29,2.92-.27-.41-.51-.78-.55-.83-1.12-1.33-4.06-3.24-5.86-2.51a2.31,2.31,0,0,0-1.07,3.25,4.79,4.79,0,0,0,3.5,2,15.35,15.35,0,0,0,4.61-.63l.53,1.11c.85,1.77,1.72,3.53,2.51,5.28.28.62.53,1.24.78,1.86-.24-.37-.45-.67-.48-.72-1.12-1.33-4-3.24-5.86-2.51A2.31,2.31,0,0,0,50,456.59a4.82,4.82,0,0,0,3.5,2A14.84,14.84,0,0,0,58,458c.24.64.48,1.28.69,1.91.13.44.28.85.39,1.29s.23.87.34,1.3c.19.83.39,1.69.55,2.51.11.57.21,1.11.32,1.66-.27-.62-.83-1.82-.89-1.91-.9-1.49-3.51-3.82-5.4-3.37a2.3,2.3,0,0,0-1.55,3.05A4.82,4.82,0,0,0,55.54,467a15.59,15.59,0,0,0,4.77.06c.17.91.32,1.79.45,2.63.1.63.2,1.24.28,1.83h1.21c-.1-.65-.22-1.33-.35-2-.17-.92-.36-1.9-.57-2.9A26.84,26.84,0,0,0,64,465.39,17.1,17.1,0,0,0,67.84,468c-.36.84-.72,1.66-1.07,2.43l-.56,1.22,1.28,0,.33-.77c.37-.86.75-1.79,1.13-2.74a16,16,0,0,0,4.74.44,4.82,4.82,0,0,0,3.4-2.2,2.31,2.31,0,0,0-1.22-3.2c-1.83-.64-4.68,1.41-5.73,2.79-.06.08-.64,1-1,1.65.15-.39.31-.77.46-1.17.3-.8.59-1.61.89-2.47.14-.42.27-.85.41-1.28s.24-.89.37-1.34c.26-1.05.48-2.13.68-3.21a15.36,15.36,0,0,0,4.49,1.1,4.78,4.78,0,0,0,3.69-1.66,2.29,2.29,0,0,0-.72-3.34c-1.71-.92-4.84.67-6.08,1.88-.08.07-.88,1-1.31,1.58.11-.66.23-1.31.32-2,.27-1.92.48-3.87.7-5.82.07-.6.15-1.2.22-1.79a15.87,15.87,0,0,0,4.64,1.16,4.78,4.78,0,0,0,3.69-1.66,2.29,2.29,0,0,0-.72-3.34c-1.71-.92-4.83.67-6.08,1.88-.1.09-1.25,1.48-1.52,1.85.16-1.31.33-2.62.55-3.9A39.26,39.26,0,0,1,75,439c.11,0,3.18,1.26,4.67,1.17a4.8,4.8,0,0,0,3.69-1.66,2.3,2.3,0,0,0-.72-3.34c-1.71-.92-4.84.67-6.09,1.88-.08.08-1,1.14-1.36,1.65l-.1-.05a30.08,30.08,0,0,1,2.12-4.84c.45-.86.94-1.66,1.42-2.42A15.83,15.83,0,0,0,83.08,433a4.85,4.85,0,0,0,3.85-1.24,2.3,2.3,0,0,0-.35-3.41c-1.6-1.1-4.88.14-6.25,1.2-.06,0-.4.37-.78.74,0-.08,0-.18,0-.28s.11-.17.16-.25c.83-1.21,1.67-2.27,2.42-3.2.43-.53.83-1,1.2-1.43a15.21,15.21,0,0,0,4.65-.59,4.79,4.79,0,0,0,2.84-2.88A2.3,2.3,0,0,0,89,418.79c-1.92-.24-4.26,2.38-5,3.95-.07.14-.81,2.38-.77,2.38h0c-.37.41-.77.85-1.19,1.34-.76.92-1.62,2-2.48,3.14,0-1.87-.26-5.75-2.72-6-3.25-.36-4.24,3.35-2.25,5.4a5.9,5.9,0,0,0,4.25,1.66c-.64.92-1.29,1.92-1.89,3a30.33,30.33,0,0,0-2.24,4.84l0,.06c0-.56,0-2.16,0-2.28-.2-1.72-1.59-4.94-3.5-5.32A2.3,2.3,0,0,0,68.52,433a4.82,4.82,0,0,0,1.8,3.63,15.61,15.61,0,0,0,4.32,2.05A41.47,41.47,0,0,0,73.28,444c-.2,1-.37,2.08-.53,3.14,0-.49,0-.93,0-1-.19-1.72-1.59-4.94-3.49-5.32a2.29,2.29,0,0,0-2.69,2.12,4.83,4.83,0,0,0,1.79,3.63,15.4,15.4,0,0,0,4.2,2c-.06.4-.12.81-.17,1.21-.27,1.95-.52,3.89-.83,5.79-.11.67-.24,1.33-.37,2,0-.44,0-.8,0-.86-.19-1.72-1.59-4.94-3.49-5.32A2.29,2.29,0,0,0,65,453.5a4.84,4.84,0,0,0,1.79,3.63,14.59,14.59,0,0,0,4.08,2c-.15.67-.31,1.34-.48,2-.13.43-.23.86-.39,1.29s-.29.85-.43,1.27c-.3.8-.61,1.62-.93,2.39-.21.54-.43,1.05-.65,1.56.12-.66.32-2,.32-2.08a8.81,8.81,0,0,0-1.13-4.36,2.9,2.9,0,0,0,0-.51,2.31,2.31,0,0,0-2.79-2c-1.88.48-3.12,3.75-3.24,5.49,0,.1,0,1.21.09,1.92-.09-.41-.17-.81-.27-1.23-.18-.83-.39-1.66-.61-2.55-.12-.43-.25-.86-.37-1.29s-.29-.88-.43-1.32c-.36-1-.77-2-1.21-3.06A14.91,14.91,0,0,0,62.68,455a4.78,4.78,0,0,0,2.16-3.42,2.3,2.3,0,0,0-2.44-2.39c-1.94.18-3.66,3.23-4,4.93,0,.1-.16,1.35-.22,2-.27-.61-.53-1.22-.82-1.83-.84-1.75-1.74-3.5-2.63-5.25l-.81-1.6a16.24,16.24,0,0,0,4.52-1.6,4.78,4.78,0,0,0,2.16-3.42,2.3,2.3,0,0,0-2.45-2.39c-1.93.18-3.66,3.23-4,4.93,0,.13-.22,1.92-.25,2.38-.59-1.18-1.16-2.37-1.69-3.55a40.92,40.92,0,0,1-1.82-4.93c.12,0,3.35-.71,4.55-1.6A4.8,4.8,0,0,0,57,433.92a2.3,2.3,0,0,0-2.45-2.39c-1.94.18-3.66,3.23-4,4.92,0,.11-.17,1.48-.22,2.13h-.11a29.13,29.13,0,0,1-.91-5.2c-.09-1-.13-1.9-.14-2.8a15.77,15.77,0,0,0,4.58-1.08,4.81,4.81,0,0,0,2.52-3.16,2.3,2.3,0,0,0-2.17-2.65c-1.94,0-4,2.81-4.55,4.45,0,.09-.24,1-.38,1.72,0-.4,0-.83,0-1.22,0-1.47.14-2.81.25-4,.06-.68.14-1.29.22-1.86a15.7,15.7,0,0,0,3.55-3.05,4.83,4.83,0,0,0,.78-4,2.3,2.3,0,0,0-3.15-1.35c-1.74.86-2.25,4.33-2,6.05,0,.15.64,2.43.67,2.41l0,0c-.09.54-.17,1.13-.25,1.77-.14,1.19-.28,2.54-.34,4,0,.27,0,.55,0,.83-.73-1.15-3-4.39-5.55-3.75C40.3,426.5,41,429.22,43.42,429.84Z" style="fill: rgb(38, 50, 56); transform-origin: 66.1051px 442.908px;" id="eli1t8ngjbpc" class="animable"></path><path d="M108.46,444.32a10.28,10.28,0,0,0,3.6,0c0,.73,0,1.5,0,2.3a19.77,19.77,0,0,0,.53,3.46s0,0,0,0c-.19-.32-.77-1.19-.82-1.25-.74-.87-2.66-2.13-3.85-1.65a1.51,1.51,0,0,0-.7,2.13,3.14,3.14,0,0,0,2.3,1.34,10.1,10.1,0,0,0,3.11-.44,27.56,27.56,0,0,0,1.16,3.38c.27.64.55,1.27.85,1.91-.18-.27-.34-.51-.37-.54-.73-.88-2.66-2.13-3.84-1.65a1.51,1.51,0,0,0-.7,2.13,3.12,3.12,0,0,0,2.29,1.34,9.62,9.62,0,0,0,3-.42c.12.25.23.49.35.73.56,1.16,1.12,2.32,1.64,3.47.19.41.35.81.52,1.22-.16-.24-.29-.44-.32-.47-.73-.87-2.66-2.13-3.84-1.65a1.51,1.51,0,0,0-.7,2.14,3.14,3.14,0,0,0,2.29,1.33,9.42,9.42,0,0,0,3-.39c.16.42.32.84.45,1.26s.19.55.26.84.15.57.22.85c.12.55.25,1.12.36,1.65.08.37.14.73.21,1.09-.18-.41-.54-1.19-.58-1.26-.59-1-2.31-2.5-3.55-2.21a1.52,1.52,0,0,0-1,2,3.17,3.17,0,0,0,2.07,1.67,11,11,0,0,0,3.13,0c.11.59.21,1.17.3,1.72l.18,1.2h.79c-.07-.43-.14-.87-.23-1.34s-.24-1.25-.38-1.91a13.92,13.92,0,0,0,1.76-.79,10.87,10.87,0,0,0,2.52,1.68c-.24.56-.47,1.09-.7,1.6l-.37.8h.84c.07-.16.15-.33.22-.51.24-.56.49-1.17.74-1.79a10.6,10.6,0,0,0,3.11.29,3.14,3.14,0,0,0,2.23-1.45,1.51,1.51,0,0,0-.8-2.1c-1.2-.42-3.07.92-3.76,1.83,0,.05-.42.68-.65,1.08.1-.25.2-.5.3-.77.2-.52.39-1.05.59-1.61l.27-.85c.09-.27.15-.58.24-.88.17-.68.32-1.39.44-2.1a10,10,0,0,0,2.95.72,3.15,3.15,0,0,0,2.43-1.09,1.51,1.51,0,0,0-.48-2.19c-1.12-.61-3.17.44-4,1.23,0,.05-.58.69-.86,1,.08-.43.15-.86.21-1.3.18-1.26.32-2.54.46-3.82,0-.4.1-.79.14-1.18a10.47,10.47,0,0,0,3,.77,3.19,3.19,0,0,0,2.43-1.09,1.52,1.52,0,0,0-.48-2.2c-1.12-.6-3.17.45-4,1.24-.06.06-.82,1-1,1.21.11-.86.22-1.71.36-2.55a27,27,0,0,1,.79-3.36,10.86,10.86,0,0,0,3.07.77A3.15,3.15,0,0,0,134.7,450a1.52,1.52,0,0,0-.47-2.2c-1.13-.6-3.18.45-4,1.24,0,.05-.63.75-.89,1.08l-.07,0a19.19,19.19,0,0,1,1.39-3.18c.3-.56.62-1.09.94-1.59a10.06,10.06,0,0,0,2.9,1.07,3.15,3.15,0,0,0,2.52-.81,1.51,1.51,0,0,0-.23-2.24c-1-.72-3.2.09-4.1.79l-.51.48c0-.05,0-.11,0-.18a1.63,1.63,0,0,1,.11-.17c.54-.79,1.09-1.49,1.58-2.1.29-.34.55-.65.8-.93a10.41,10.41,0,0,0,3-.39,3.16,3.16,0,0,0,1.86-1.89,1.51,1.51,0,0,0-1.23-1.88c-1.27-.15-2.8,1.56-3.28,2.59,0,.09-.53,1.57-.51,1.57h0c-.24.26-.5.56-.78.88-.5.6-1.06,1.28-1.63,2.06,0-1.23-.17-3.78-1.78-4-2.14-.23-2.79,2.2-1.48,3.54a3.84,3.84,0,0,0,2.79,1.09,23,23,0,0,0-1.24,2A19,19,0,0,0,129,450s0,0,0,0c0-.38,0-1.42,0-1.5-.13-1.14-1-3.25-2.3-3.5a1.51,1.51,0,0,0-1.76,1.39,3.16,3.16,0,0,0,1.18,2.39,10.36,10.36,0,0,0,2.84,1.35,26.81,26.81,0,0,0-.9,3.45c-.13.68-.24,1.37-.34,2.06,0-.32,0-.61,0-.65-.13-1.13-1-3.24-2.3-3.49a1.5,1.5,0,0,0-1.76,1.39,3.14,3.14,0,0,0,1.18,2.38,9.85,9.85,0,0,0,2.75,1.32c0,.27-.07.54-.11.8-.17,1.28-.34,2.56-.54,3.8-.07.44-.16.87-.24,1.3,0-.28,0-.53,0-.56-.13-1.13-1-3.25-2.3-3.5a1.51,1.51,0,0,0-1.76,1.4,3.15,3.15,0,0,0,1.18,2.38,9.43,9.43,0,0,0,2.67,1.29c-.1.44-.2.88-.31,1.3s-.15.57-.26.85-.19.56-.28.83c-.2.53-.4,1.07-.61,1.57s-.28.69-.42,1c.07-.44.2-1.3.2-1.37a5.83,5.83,0,0,0-.74-2.86,1.93,1.93,0,0,0,0-.34,1.52,1.52,0,0,0-1.83-1.31c-1.24.31-2,2.46-2.13,3.6,0,.07,0,.8.06,1.26-.06-.27-.11-.53-.18-.8-.12-.55-.25-1.09-.4-1.68l-.24-.85c-.08-.28-.19-.57-.29-.86-.23-.67-.5-1.34-.79-2a9.92,9.92,0,0,0,2.86-1,3.11,3.11,0,0,0,1.42-2.24,1.51,1.51,0,0,0-1.6-1.58c-1.27.12-2.41,2.13-2.65,3.24,0,.07-.11.89-.15,1.34-.17-.4-.34-.8-.53-1.2-.55-1.15-1.14-2.3-1.73-3.45l-.53-1.05a10.61,10.61,0,0,0,3-1.05,3.09,3.09,0,0,0,1.42-2.24,1.5,1.5,0,0,0-1.6-1.57c-1.27.12-2.41,2.12-2.65,3.23,0,.09-.15,1.26-.16,1.56-.39-.77-.77-1.55-1.11-2.33a26.41,26.41,0,0,1-1.2-3.23,10.86,10.86,0,0,0,3-1.05,3.13,3.13,0,0,0,1.42-2.25,1.51,1.51,0,0,0-1.6-1.57c-1.27.12-2.41,2.12-2.65,3.24,0,.07-.11,1-.15,1.39h-.07a18.62,18.62,0,0,1-.6-3.42c-.06-.63-.08-1.24-.09-1.84a9.91,9.91,0,0,0,3-.7,3.12,3.12,0,0,0,1.66-2.08,1.51,1.51,0,0,0-1.42-1.74c-1.28,0-2.62,1.85-3,2.93,0,.06-.16.67-.25,1.13,0-.27,0-.55,0-.81,0-1,.09-1.84.16-2.62,0-.45.09-.85.14-1.22a9.88,9.88,0,0,0,2.33-2,3.12,3.12,0,0,0,.52-2.6,1.51,1.51,0,0,0-2.07-.89c-1.14.57-1.47,2.85-1.3,4,0,.1.42,1.6.44,1.59l0,0c0,.36-.11.74-.16,1.17-.09.78-.19,1.66-.22,2.63,0,.18,0,.36,0,.54-.48-.75-2-2.88-3.64-2.46C106.41,442.12,106.85,443.91,108.46,444.32Z" style="fill: rgb(38, 50, 56); transform-origin: 123.301px 452.809px;" id="elskkxqit1yb" class="animable"></path><path d="M676.65,444.32a10.29,10.29,0,0,0,3.6,0,22.49,22.49,0,0,0,0,2.3,18.87,18.87,0,0,0,.53,3.46.06.06,0,0,0,0,0c-.2-.32-.78-1.19-.83-1.25-.73-.87-2.66-2.13-3.84-1.65a1.5,1.5,0,0,0-.7,2.13,3.12,3.12,0,0,0,2.29,1.34,10.13,10.13,0,0,0,3.12-.44,26,26,0,0,0,1.16,3.38c.26.64.55,1.27.85,1.91-.18-.27-.34-.51-.37-.54-.73-.88-2.66-2.13-3.84-1.65a1.5,1.5,0,0,0-.7,2.13,3.12,3.12,0,0,0,2.29,1.34,9.71,9.71,0,0,0,3-.42c.11.25.23.49.34.73.56,1.16,1.13,2.32,1.65,3.47.18.41.35.81.51,1.22-.15-.24-.29-.44-.31-.47-.74-.87-2.66-2.13-3.85-1.65a1.52,1.52,0,0,0-.7,2.14,3.16,3.16,0,0,0,2.3,1.33,9.39,9.39,0,0,0,2.94-.39c.16.42.32.84.46,1.26s.18.55.25.84.15.57.23.85c.12.55.25,1.12.36,1.65l.21,1.09c-.18-.41-.55-1.19-.58-1.26-.6-1-2.31-2.5-3.55-2.21a1.51,1.51,0,0,0-1,2,3.17,3.17,0,0,0,2.07,1.67,10.91,10.91,0,0,0,3.12,0c.11.59.21,1.17.3,1.72s.13.81.18,1.2h.8c-.07-.43-.15-.87-.23-1.34s-.24-1.25-.38-1.91a14.61,14.61,0,0,0,1.76-.79,10.87,10.87,0,0,0,2.52,1.68c-.24.56-.48,1.09-.71,1.6-.12.28-.24.54-.37.8h.84c.08-.16.15-.33.23-.51.24-.56.49-1.17.73-1.79a10.63,10.63,0,0,0,3.12.29,3.18,3.18,0,0,0,2.23-1.45,1.51,1.51,0,0,0-.8-2.1c-1.21-.42-3.07.92-3.76,1.83,0,.05-.42.68-.65,1.08.1-.25.2-.5.3-.77.2-.52.38-1.05.59-1.61.08-.28.17-.56.26-.85s.16-.58.24-.88c.18-.68.32-1.39.45-2.1a10,10,0,0,0,3,.72,3.12,3.12,0,0,0,2.42-1.09,1.5,1.5,0,0,0-.47-2.19c-1.13-.61-3.18.44-4,1.23,0,.05-.57.69-.85,1,.07-.43.15-.86.21-1.3.18-1.26.31-2.54.46-3.82,0-.4.09-.79.14-1.18a10.29,10.29,0,0,0,3,.77,3.15,3.15,0,0,0,2.42-1.09,1.52,1.52,0,0,0-.47-2.2c-1.13-.6-3.18.45-4,1.24-.06.06-.81,1-1,1.21.1-.86.21-1.71.36-2.55a25.34,25.34,0,0,1,.79-3.36,10.67,10.67,0,0,0,3.06.77,3.19,3.19,0,0,0,2.43-1.09,1.52,1.52,0,0,0-.48-2.2c-1.12-.6-3.17.45-4,1.24-.06.05-.63.75-.9,1.08l-.06,0a19.19,19.19,0,0,1,1.39-3.18c.29-.56.61-1.09.93-1.59a10.06,10.06,0,0,0,2.9,1.07,3.17,3.17,0,0,0,2.53-.81,1.51,1.51,0,0,0-.23-2.24c-1.05-.72-3.21.09-4.11.79l-.5.48v-.18a1.63,1.63,0,0,0,.11-.17c.55-.79,1.1-1.49,1.59-2.1.28-.34.54-.65.79-.93a10.33,10.33,0,0,0,3-.39,3.15,3.15,0,0,0,1.87-1.89,1.51,1.51,0,0,0-1.24-1.88c-1.26-.15-2.8,1.56-3.28,2.59,0,.09-.53,1.57-.5,1.57h0c-.24.26-.5.56-.77.88-.51.6-1.07,1.28-1.63,2.06,0-1.23-.17-3.78-1.79-4-2.13-.23-2.78,2.2-1.48,3.54a3.87,3.87,0,0,0,2.79,1.09c-.42.61-.84,1.26-1.24,2a19.81,19.81,0,0,0-1.47,3.18.08.08,0,0,1,0,0c0-.38,0-1.42,0-1.5-.12-1.14-1-3.25-2.29-3.5a1.51,1.51,0,0,0-1.76,1.39,3.18,3.18,0,0,0,1.17,2.39,10.49,10.49,0,0,0,2.84,1.35,26.8,26.8,0,0,0-.89,3.45c-.13.68-.24,1.37-.35,2.06V455c-.13-1.13-1-3.24-2.3-3.49a1.5,1.5,0,0,0-1.76,1.39,3.16,3.16,0,0,0,1.17,2.38,9.89,9.89,0,0,0,2.76,1.32l-.12.8c-.17,1.28-.33,2.56-.54,3.8-.07.44-.15.87-.24,1.3,0-.28,0-.53,0-.56-.12-1.13-1-3.25-2.29-3.5a1.51,1.51,0,0,0-1.76,1.4,3.17,3.17,0,0,0,1.17,2.38,9.61,9.61,0,0,0,2.68,1.29c-.1.44-.2.88-.32,1.3s-.15.57-.25.85-.19.56-.28.83c-.2.53-.41,1.07-.61,1.57l-.43,1c.08-.44.21-1.3.21-1.37a5.83,5.83,0,0,0-.74-2.86,1.94,1.94,0,0,0,0-.34,1.51,1.51,0,0,0-1.82-1.31c-1.24.31-2.06,2.46-2.13,3.6,0,.07,0,.8.05,1.26-.06-.27-.11-.53-.17-.8-.12-.55-.26-1.09-.4-1.68-.08-.28-.17-.56-.25-.85s-.19-.57-.28-.86c-.24-.67-.5-1.34-.79-2a10,10,0,0,0,2.86-1,3.17,3.17,0,0,0,1.42-2.24A1.51,1.51,0,0,0,689.1,457c-1.27.12-2.4,2.13-2.65,3.24,0,.07-.1.89-.14,1.34-.18-.4-.35-.8-.54-1.2-.55-1.15-1.14-2.3-1.72-3.45l-.54-1.05a10.64,10.64,0,0,0,3-1.05,3.15,3.15,0,0,0,1.42-2.24,1.51,1.51,0,0,0-1.61-1.57c-1.27.12-2.4,2.12-2.65,3.23,0,.09-.14,1.26-.16,1.56-.39-.77-.76-1.55-1.11-2.33a26.33,26.33,0,0,1-1.19-3.23,11,11,0,0,0,3-1.05,3.19,3.19,0,0,0,1.42-2.25,1.51,1.51,0,0,0-1.61-1.57c-1.27.12-2.4,2.12-2.65,3.24,0,.07-.11,1-.15,1.39h-.07a19.46,19.46,0,0,1-.59-3.42c-.07-.63-.09-1.24-.1-1.84a10,10,0,0,0,3-.7,3.18,3.18,0,0,0,1.66-2.08,1.52,1.52,0,0,0-1.43-1.74c-1.27,0-2.62,1.85-3,2.93,0,.06-.15.67-.25,1.13v-.81c0-1,.09-1.84.17-2.62,0-.45.09-.85.14-1.22a10.29,10.29,0,0,0,2.33-2,3.15,3.15,0,0,0,.51-2.6,1.5,1.5,0,0,0-2.06-.89c-1.14.57-1.48,2.85-1.31,4,0,.1.42,1.6.44,1.59l0,0c-.06.36-.11.74-.17,1.17-.09.78-.18,1.66-.22,2.63,0,.18,0,.36,0,.54-.47-.75-2-2.88-3.64-2.46C674.6,442.12,675,443.91,676.65,444.32Z" style="fill: rgb(38, 50, 56); transform-origin: 691.449px 452.799px;" id="elzy4jsw506kp" class="animable"></path></g><g id="freepik--Device--inject-1" class="animable" style="transform-origin: 646.09px 179.325px;"><path d="M705.07,74V275.93a17.81,17.81,0,0,1-17.8,17.8H602.88a17.8,17.8,0,0,1-17.8-17.8V74a17.79,17.79,0,0,1,17.8-17.79h35.28l0,.13c1,3.75,3.44,6.19,6.11,6.19h1.53c2.66,0,5.06-2.44,6.11-6.19l0-.13h35.28A17.8,17.8,0,0,1,705.07,74Z" style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 645.075px 174.97px;" id="ellxowg9ls4pq" class="animable"></path><path d="M585.45,279.53a17.79,17.79,0,0,0,17.43,14.2h84.39a17.81,17.81,0,0,0,17.43-14.2Z" style="fill: #407BFF; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 645.075px 286.63px;" id="el1oclpapcpzm" class="animable"></path><path d="M705.07,78.06V74a17.8,17.8,0,0,0-17.8-17.79H652l0,.13c-1.05,3.75-3.45,6.19-6.11,6.19h-1.53c-2.67,0-5.07-2.44-6.11-6.19l0-.13H602.88A17.79,17.79,0,0,0,585.08,74v4Z" style="fill: #407BFF; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 645.075px 67.135px;" id="elazzq7g8pxdf" class="animable"></path><path d="M658.66,210.67V154.53h25.77a1.18,1.18,0,0,0,1.06-.68l19.57-42.8v-5.61l-21.38,46.75h-25V78.68h-2.34v30.78c-23.27-2.3-36.91,8.67-44.27,18.4a62.36,62.36,0,0,0-10.15,20.66l-16.82-10.68v2.77l30.12,19.12h0v34.11l-30.1-5.49v2.37l71.24,13v6.4L585.08,267v3l32.22-25.74,24.56,33.23a1.16,1.16,0,0,0,.94.47.9.9,0,0,0,.28,0L681.79,268v11h2.34V245.44a1.17,1.17,0,0,0-.64-1l-8.7-4.39,14.86-16.21,15.41,5.92v-2.49l-15.31-5.89a1.14,1.14,0,0,0-1.28.3l-15.84,17.27-29.77-15.06,15.36-12.27A1.19,1.19,0,0,0,658.66,210.67Zm23.13,35.49V265.6l-38.52,9.87-24.15-32.66,21.73-17.36Zm-25.47-44.82-38.81-7.08V161.2l38.81,24.64Zm0-18.26L604,149.83a60.7,60.7,0,0,1,9.94-20.56c10.18-13.45,24.45-19.32,42.41-17.47Z" style="fill: rgb(204, 204, 204); transform-origin: 645.07px 178.84px;" id="elujbf0xbt9mg" class="animable"></path><polygon points="705.07 186.66 701.57 186.66 692.76 208.71 675.12 208.71 684.43 187.16 670.72 187.16 670.72 166.09 691.29 166.09 705.07 139.35 705.07 186.66" style="fill: rgb(196, 196, 196); transform-origin: 687.895px 174.03px;" id="el96ok4uyarev" class="animable"></polygon><rect x="589.59" y="101.31" width="17.49" height="14.58" style="fill: rgb(196, 196, 196); transform-origin: 598.335px 108.6px;" id="elh3585glwr6b" class="animable"></rect><rect x="610" y="101.31" width="12.59" height="10.5" style="fill: rgb(196, 196, 196); transform-origin: 616.295px 106.56px;" id="elah5qldqlafm" class="animable"></rect><path d="M609.23,147.74l43.29,28V117.08S621.56,114.07,609.23,147.74Z" style="fill: rgb(196, 196, 196); transform-origin: 630.875px 146.375px;" id="elotthtnoufr" class="animable"></path><rect x="626.33" y="101.31" width="8.16" height="6.8" style="fill: rgb(196, 196, 196); transform-origin: 630.41px 104.71px;" id="el7mftwz1njoc" class="animable"></rect><polygon points="649.65 238.33 633.91 249.41 642.65 265.74 674.14 263.99 675.89 248.83 663.64 243.58 658.4 251.75 653.15 248.83 657.81 240.08 649.65 238.33" style="fill: rgb(196, 196, 196); transform-origin: 654.9px 252.035px;" id="elipyhqvjrvb" class="animable"></polygon><polygon points="599.2 205.45 599.2 236.94 585.08 244.13 585.08 204.78 599.2 205.45" style="fill: rgb(196, 196, 196); transform-origin: 592.14px 224.455px;" id="el382el5t9gvu" class="animable"></polygon><polygon points="622.71 225 622.71 206.55 603.12 205.63 603.12 234.95 622.71 225" style="fill: rgb(196, 196, 196); transform-origin: 612.915px 220.29px;" id="elj4q3sd5e87" class="animable"></polygon><polygon points="625.65 206.69 625.65 223.5 637.41 217.53 637.41 207.24 625.65 206.69" style="fill: rgb(196, 196, 196); transform-origin: 631.53px 215.095px;" id="elriufc7xo5q" class="animable"></polygon><path d="M712.69,145.85V123.31h-2V70a17.8,17.8,0,0,0-17.8-17.79H597.28A17.8,17.8,0,0,0,579.49,70V288.64a17.8,17.8,0,0,0,17.79,17.8h95.58a17.8,17.8,0,0,0,17.8-17.8V165.07h2V151.75h-2v-5.9Zm-7.62,130.08a17.81,17.81,0,0,1-17.8,17.8H602.88a17.8,17.8,0,0,1-17.8-17.8V74a17.79,17.79,0,0,1,17.8-17.79h35.28l0,.13c1,3.75,3.44,6.19,6.11,6.19h1.53c2.66,0,5.06-2.44,6.11-6.19l0-.13h35.28A17.8,17.8,0,0,1,705.07,74Z" style="fill: rgb(112, 112, 112); stroke: rgb(38, 50, 56); stroke-linejoin: round; transform-origin: 646.09px 179.325px;" id="elhcpnljhujf5" class="animable"></path><path d="M690.8,54.63H599.34a17.8,17.8,0,0,0-17.79,17.79V286.19A17.8,17.8,0,0,0,599.34,304H690.8a17.8,17.8,0,0,0,17.8-17.8V72.42A17.8,17.8,0,0,0,690.8,54.63Zm14.27,221.3a17.81,17.81,0,0,1-17.8,17.8H602.88a17.8,17.8,0,0,1-17.8-17.8V74a17.79,17.79,0,0,1,17.8-17.79h35.28l0,.13c1,3.75,3.44,6.19,6.11,6.19h1.53c2.66,0,5.06-2.44,6.11-6.19l0-.13h35.28A17.8,17.8,0,0,1,705.07,74Z" style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-linejoin: round; transform-origin: 645.075px 179.315px;" id="eltbohss7d5d" class="animable"></path><circle cx="644.71" cy="57.1" r="1.67" style="fill: rgb(255, 255, 255); transform-origin: 644.71px 57.1px;" id="elxmlg7rzehtd" class="animable"></circle><path d="M595.75,63.5c0,1.69-1.9,2.3-1.91,3.59v.09h1.84v.57h-2.46v-.49c0-1.81,1.9-2.16,1.9-3.74,0-.57-.19-.88-.66-.88s-.65.33-.65.83V64h-.59v-.45c0-.86.4-1.43,1.26-1.43S595.75,62.64,595.75,63.5Z" style="fill: rgb(38, 50, 56); transform-origin: 594.485px 64.935px;" id="el33b4qj1ugry" class="animable"></path><path d="M598.81,63.49v.15a1.11,1.11,0,0,1-.68,1.15,1.11,1.11,0,0,1,.68,1.16v.43c0,.86-.4,1.42-1.26,1.42s-1.26-.56-1.26-1.42V66h.59v.42c0,.51.2.81.65.81s.66-.29.66-.86v-.43c0-.56-.23-.82-.71-.84h-.33v-.56h.37c.41,0,.67-.28.67-.77v-.25c0-.58-.2-.88-.66-.88s-.65.32-.65.82v.29h-.59v-.26c0-.85.4-1.41,1.26-1.41S598.81,62.64,598.81,63.49Z" style="fill: rgb(38, 50, 56); transform-origin: 597.554px 64.94px;" id="el7y86xsogl4p" class="animable"></path><path d="M600,63.92v.77h-.6v-.77Zm0,3v.78h-.6V67Z" style="fill: rgb(38, 50, 56); transform-origin: 599.7px 65.81px;" id="el8rcv6jqgxm9" class="animable"></path><path d="M601.29,64.42a.91.91,0,0,1,.83-.46c.72,0,1,.53,1,1.33v1.09c0,.86-.4,1.42-1.26,1.42s-1.26-.56-1.26-1.42V66h.59v.41c0,.51.2.81.65.81s.66-.3.66-.81V65.33c0-.5-.21-.8-.66-.8a.61.61,0,0,0-.63.6v.12h-.58l.15-3.11H603v.56h-1.65Z" style="fill: rgb(38, 50, 56); transform-origin: 601.86px 64.97px;" id="el4zyih9xzf5x" class="animable"></path><path d="M606.28,63.48v.11h-.58v-.15c0-.5-.21-.8-.67-.8s-.68.31-.68.91v1.26a.91.91,0,0,1,.91-.61c.72,0,1,.53,1,1.33v.85c0,.86-.43,1.42-1.28,1.42s-1.29-.56-1.29-1.42V63.52c0-.88.4-1.44,1.29-1.44S606.28,62.63,606.28,63.48Zm-1.93,2.1v.84c0,.51.21.81.67.81s.66-.3.66-.81v-.84c0-.5-.22-.81-.66-.81S604.35,65.08,604.35,65.58Z" style="fill: rgb(38, 50, 56); transform-origin: 604.985px 64.94px;" id="elgiemxxu923" class="animable"></path><rect x="665.9" y="63.73" width="1.58" height="3.96" style="fill: rgb(38, 50, 56); transform-origin: 666.69px 65.71px;" id="el0m8ayjqhzb7" class="animable"></rect><rect x="668.01" y="62.94" width="1.58" height="4.75" style="fill: rgb(38, 50, 56); transform-origin: 668.8px 65.315px;" id="elgqdrix5vytu" class="animable"></rect><rect x="670.13" y="62.38" width="1.58" height="5.31" style="fill: rgb(38, 50, 56); transform-origin: 670.92px 65.035px;" id="el943vn6aebe" class="animable"></rect><rect x="672.24" y="61.4" width="1.58" height="6.29" style="fill: rgb(38, 50, 56); transform-origin: 673.03px 64.545px;" id="elymncm178naf" class="animable"></rect><path d="M693.41,67.58h-9.5v-5.8h9.5Zm-9-.53h8.44V62.3h-8.44Z" style="fill: rgb(38, 50, 56); transform-origin: 688.66px 64.68px;" id="elzfudzulme5p" class="animable"></path><rect x="685.23" y="62.88" width="5.01" height="3.6" style="fill: rgb(38, 50, 56); transform-origin: 687.735px 64.68px;" id="ela3w5dfzfs8g" class="animable"></rect><rect x="693.08" y="63.99" width="1.19" height="1.37" style="fill: rgb(38, 50, 56); transform-origin: 693.675px 64.675px;" id="el968wq7md7dc" class="animable"></rect><path d="M680.43,66.32a.37.37,0,0,1-.18,0,2.77,2.77,0,0,0-3.27,0,.35.35,0,0,1-.5,0,.35.35,0,0,1,0-.49,3.44,3.44,0,0,1,4.09,0,.35.35,0,0,1,.12.48A.33.33,0,0,1,680.43,66.32Z" style="fill: rgb(38, 50, 56); transform-origin: 678.56px 65.7906px;" id="elj81goq08mb" class="animable"></path><path d="M681.14,65.12a.31.31,0,0,1-.18-.05c-2.79-1.66-4.67,0-4.69,0a.36.36,0,0,1-.47-.54,4.72,4.72,0,0,1,5.53,0,.35.35,0,0,1,.12.48A.37.37,0,0,1,681.14,65.12Z" style="fill: rgb(38, 50, 56); transform-origin: 678.602px 64.385px;" id="el2tt8zty0hf4" class="animable"></path><path d="M681.79,63.74a.31.31,0,0,1-.18-.05c-3.54-2.1-5.89-.12-6,0a.36.36,0,0,1-.47-.54s2.83-2.41,6.82,0a.36.36,0,0,1,.13.49A.37.37,0,0,1,681.79,63.74Z" style="fill: rgb(38, 50, 56); transform-origin: 678.591px 62.9168px;" id="el1t3ph4k6sbb" class="animable"></path><path d="M679.36,66.91a.89.89,0,1,1-.89-.89A.89.89,0,0,1,679.36,66.91Z" style="fill: rgb(38, 50, 56); transform-origin: 678.47px 66.91px;" id="elqwc4djhei1" class="animable"></path><path d="M688.55,144.58c-3.45-.27-7.5,1.26-9.06,3.43s1.29,7.39,1.29,7.39,9.65-4.25,11.2-6.41S692,144.85,688.55,144.58Zm-3.94,5.49c-1.38-.11-2-.9-1.37-1.77a4.45,4.45,0,0,1,3.62-1.37c1.38.11,2,.9,1.37,1.77A4.45,4.45,0,0,1,684.61,150.07Z" style="fill: rgb(38, 50, 56); transform-origin: 685.804px 149.975px;" id="elzz80x9517td" class="animable"></path><path d="M680.78,132.6a8.13,8.13,0,0,0-8.12,8.12c0,4.49,8.12,14.29,8.12,14.29s8.12-9.8,8.12-14.29A8.12,8.12,0,0,0,680.78,132.6Zm0,11.37a3.25,3.25,0,1,1,3.25-3.25A3.26,3.26,0,0,1,680.78,144Z" style="fill: #407BFF; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 680.78px 143.805px;" id="eldnm61991zum" class="animable"></path><line x1="642.57" y1="223.51" x2="641.41" y2="224.46" style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 3px; transform-origin: 641.99px 223.985px;" id="eluoc5p1k0iba" class="animable"></line><line x1="639.07" y1="226.39" x2="621.46" y2="240.89" style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 3px; stroke-dasharray: 3.04103, 3.04103; transform-origin: 630.265px 233.64px;" id="elppr8eycwe3" class="animable"></line><line x1="620.28" y1="241.85" x2="619.13" y2="242.81" style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 3px; transform-origin: 619.705px 242.33px;" id="ela6qvb8jb2w" class="animable"></line><polyline points="676.74 155.01 658.66 155.01 658.66 210.27 642.57 223.51" style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 3px; transform-origin: 659.655px 189.26px;" id="elu472fk52evn" class="animable"></polyline><circle cx="642.86" cy="223.85" r="4.62" style="fill: #407BFF; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 642.86px 223.85px;" id="elahncl3bjeob" class="animable"></circle></g><g id="freepik--Screen--inject-1" class="animable" style="transform-origin: 159.85px 134.54px;"><path d="M51,52.18H268.73a8.14,8.14,0,0,1,8.14,8.14V208.14a8.75,8.75,0,0,1-8.75,8.75H47.44a4.61,4.61,0,0,1-4.61-4.61v-152A8.14,8.14,0,0,1,51,52.18Z" style="fill: rgb(255, 255, 255); transform-origin: 159.85px 134.535px;" id="elqw2khgrjya" class="animable"></path><path d="M276.88,109.83v-4.4h-4.65l-7.39-12.57h12V89.71H263l-3-5h16.84V81.54H258.19l-5.91-10.06h-3.77l5.65,10.06h-29.9l-4.67-10.06h-3.78l4.42,10.06H192.61l-2-10.06h-3.77l1.68,10.06H161.89l-.15-10.06H158l-.11,10.06H131.09l1.72-10.06H129l-2,10.06H100.41l3.48-10.06h-3.78L96.37,81.54H69.31L75,71.48H71.19L65.28,81.54H42.82v3.14H63.43l-3,5H42.82v3.15H58.63l-7.39,12.57H42.82v4.4h5.84l-5.84,9.94v14H77l-9.58,25.78H42.82v9.43H63.88L48.69,209.81a5.25,5.25,0,0,0,4.92,7.08h0l16.58-47.95h39.64l-9.44,47.95h7.55l8.2-47.95h40.74l-.54,47.95h7.56l-.71-47.95h40l8,47.95h7.56l-9.27-47.95h49.07l18.31,41.74V194.76l-12-25.82h12v-9.43H260.49l-12-25.78h28.37v-5.66h-31l-8.47-18.24H270L276.88,122v-8.67l-2.07-3.51ZM99.32,84.68h27.12l-1,5H97.58Zm-2.83,8.18h28.34l-2.48,12.57H92.15Zm25,17-3.59,18.24H84.32l6.3-18.24ZM67.55,84.68H95.2l-1.87,5H64.72ZM63,92.86h29.2l-4.67,12.57H55.9ZM43.19,128.07l10.24-18.24H85.85l-6.78,18.24Zm68.5,31.44H73.45l8.91-25.78h34.41Zm45.29,0H117.76l4.41-25.78h35.1Zm.35-31.44h-34.2l3.12-18.24h31.29Zm.25-22.64H127l2.15-12.57h28.57Zm.18-15.72H129.69l.86-5h27.27Zm98.16-5,2.83,5H228.06l-2.34-5Zm-30.73,8.18,5.52,12.57H197.23l-2.44-12.57Zm-3.58-8.18,2.2,5H194.19l-1-5Zm-59.68,0H189.1l.84,5H162Zm.12,8.18h28.41l2.11,12.57H162.24Zm.26,17h31l3.05,18.24H162.58Zm.74,49.68-.39-25.78H197.3l4.32,25.78Zm91.38,0H207.68l-5-25.78h40.42Zm-13.79-31.44h-39l-3.52-18.24h34.56Zm-5.27-22.64-5.85-12.57h31l7.06,12.57Z" style="fill: rgb(176, 176, 176); transform-origin: 159.85px 144.185px;" id="eli3eqob0p4a" class="animable"></path><path d="M42.82,187.81h67.6a13.91,13.91,0,0,1,13.91,13.91v15.18a0,0,0,0,1,0,0H47.44a4.61,4.61,0,0,1-4.61-4.61V187.81A0,0,0,0,1,42.82,187.81Z" style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 83.575px 202.355px;" id="elw1s7hnm7a6h" class="animable"></path><path d="M62.14,187.81H42.82v23.83a5.26,5.26,0,0,0,5.26,5.25H62.14Z" style="fill: rgb(102, 102, 102); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 52.48px 202.35px;" id="el4bvrr7sc1to" class="animable"></path><path d="M52.5,197.33v-2.24l-7.3,4.21,7.3,4.21V200.6a4.29,4.29,0,0,1-.74,8.51H49.17a1.62,1.62,0,0,0,0,3.23h2.59a7.52,7.52,0,0,0,.74-15Z" style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 52.2231px 203.715px;" id="elqxh3czrd86" class="animable"></path><g id="el49gwvp3wuox"><path d="M204.12,187.81h72.75a0,0,0,0,1,0,0V203A13.91,13.91,0,0,1,263,216.89h-67.6a0,0,0,0,1,0,0V196.56A8.75,8.75,0,0,1,204.12,187.81Z" style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 236.135px 202.35px; transform: rotate(180deg);" class="animable" id="eljc9ao16d9g"></path></g><path d="M51,52.18H268.73a8.14,8.14,0,0,1,8.14,8.14V75.26a0,0,0,0,1,0,0H42.82a0,0,0,0,1,0,0V60.32A8.14,8.14,0,0,1,51,52.18Z" style="fill: #407BFF; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 159.845px 63.72px;" id="elivb5sq7waln" class="animable"></path><path d="M51,52.18h44.5a0,0,0,0,1,0,0V88.66a0,0,0,0,1,0,0H42.82a0,0,0,0,1,0,0V60.32A8.14,8.14,0,0,1,51,52.18Z" style="fill: #407BFF; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 69.16px 70.42px;" id="el2gx8w16or0z" class="animable"></path><path d="M77.54,196.66l-.31,1.62H76.4l1.54-8.06h1.31l1.54,8.06h-.9l-.31-1.62Zm.12-.77h1.79l-.91-4.66Z" style="fill: rgb(38, 50, 56); transform-origin: 78.595px 194.25px;" id="el9nd1wxgnrno" class="animable"></path><path d="M83.29,190.22c1.26,0,1.79.65,1.79,1.84v.66c0,.89-.31,1.44-1,1.66.74.22,1,.81,1,1.68v1.25a2,2,0,0,0,.16,1h-.91a2,2,0,0,1-.15-1V196c0-.92-.43-1.2-1.18-1.2h-.63v3.44h-.9v-8.06Zm-.23,3.8c.71,0,1.14-.23,1.14-1.11v-.77c0-.72-.27-1.1-.93-1.1h-.88v3Z" style="fill: rgb(38, 50, 56); transform-origin: 83.355px 194.245px;" id="elujqfmekv26f" class="animable"></path><path d="M87.83,190.22c1.26,0,1.79.65,1.79,1.84v.66c0,.89-.31,1.44-1,1.66.74.22,1,.81,1,1.68v1.25a2.16,2.16,0,0,0,.16,1h-.9a2,2,0,0,1-.15-1V196c0-.92-.43-1.2-1.18-1.2h-.63v3.44H86v-8.06ZM87.6,194c.71,0,1.14-.23,1.14-1.11v-.77c0-.72-.27-1.1-.94-1.1h-.87v3Z" style="fill: rgb(38, 50, 56); transform-origin: 87.89px 194.245px;" id="elruu7y7xc9h" class="animable"></path><path d="M91.47,190.22v8.06h-.9v-8.06Z" style="fill: rgb(38, 50, 56); transform-origin: 91.02px 194.25px;" id="el5tpysq5iijb" class="animable"></path><path d="M93.07,190.22l1.31,7,1.3-7h.83L95,198.28H93.68l-1.52-8.06Z" style="fill: rgb(38, 50, 56); transform-origin: 94.335px 194.25px;" id="el6jmuzhr0dnk" class="animable"></path><path d="M97.82,196.66l-.31,1.62h-.83l1.55-8.06h1.3l1.54,8.06h-.9l-.31-1.62Zm.12-.77h1.79l-.91-4.66Z" style="fill: rgb(38, 50, 56); transform-origin: 98.875px 194.25px;" id="elmtmpqb1coo" class="animable"></path><path d="M101.77,198.28v-8.06h.9v7.24H105v.82Z" style="fill: rgb(38, 50, 56); transform-origin: 103.385px 194.25px;" id="el3xqzimsy0di" class="animable"></path><path d="M80.61,204.16c0-1.1-.39-1.4-1-1.4s-1,.33-1,1.21v.79H76.77v-.67c0-2,1-3.1,2.89-3.1s2.89,1.13,2.89,3.1v.32A2.42,2.42,0,0,1,81.19,207a2.52,2.52,0,0,1,1.36,2.59v1c0,2-1,3.1-2.89,3.1s-2.89-1.13-2.89-3.1v-1H78.6v1.14c0,.88.39,1.22,1,1.22s1-.3,1-1.4v-1c0-1.15-.39-1.57-1.27-1.57h-.65v-1.76h.76c.72,0,1.16-.32,1.16-1.31Z" style="fill: rgb(38, 50, 56); transform-origin: 79.6765px 207.34px;" id="elffikkud5s6a" class="animable"></path><path d="M85.72,204.89v1.86H83.85v-1.86Zm0,6.71v1.87H83.85V211.6Z" style="fill: rgb(38, 50, 56); transform-origin: 84.785px 209.18px;" id="el9pcphz20s9i" class="animable"></path><path d="M90,202.76c-.62,0-1,.33-1,1.21v1.32H87.12v-1.2c0-2,1-3.1,2.89-3.1s2.89,1.13,2.89,3.1c0,3.88-3.86,5.32-3.86,7.35a1.1,1.1,0,0,0,0,.26h3.67v1.77H87.12V212c0-3.63,3.85-4.23,3.85-7.79C91,203.06,90.58,202.76,90,202.76Z" style="fill: rgb(38, 50, 56); transform-origin: 90.01px 207.23px;" id="el56hnt3kh4vt" class="animable"></path><path d="M93.94,204.09c0-2,1-3.1,2.94-3.1s2.94,1.13,2.94,3.1v6.42c0,2-1,3.1-2.94,3.1s-2.94-1.13-2.94-3.1Zm1.94,6.54c0,.88.39,1.22,1,1.22s1-.34,1-1.22V204c0-.88-.39-1.21-1-1.21s-1,.33-1,1.21Z" style="fill: rgb(38, 50, 56); transform-origin: 96.88px 207.3px;" id="elnlsqbu0mmtf" class="animable"></path><path d="M109.54,204.18v1.61c0,2-1,3-2.88,3h-.92v4.64H103.8V201.13h2.86C108.59,201.13,109.54,202.21,109.54,204.18Zm-3.8-1.28v4.17h.92c.61,0,1-.28,1-1.16v-1.85c0-.88-.34-1.16-1-1.16Z" style="fill: rgb(38, 50, 56); transform-origin: 106.67px 207.28px;" id="elt1xj4m85qt" class="animable"></path><path d="M114.55,209.89l1.32-8.76h2.69v12.34h-1.83v-8.85l-1.34,8.85h-1.83l-1.45-8.72v8.72h-1.69V201.13h2.7Z" style="fill: rgb(38, 50, 56); transform-origin: 114.49px 207.3px;" id="elf3ru1tc5da" class="animable"></path><path d="M210.91,192.15v.22h-.85v-.26c0-.73-.28-1.15-.92-1.15s-.92.42-.92,1.14c0,1.8,2.7,2,2.7,4.25,0,1.22-.58,2-1.81,2s-1.81-.79-1.81-2v-.46h.84v.5c0,.73.3,1.15.94,1.15s.95-.42.95-1.15c0-1.79-2.7-2-2.7-4.24,0-1.24.58-2,1.79-2S210.91,190.93,210.91,192.15Z" style="fill: rgb(38, 50, 56); transform-origin: 209.11px 194.25px;" id="el0pplpi7bg33j" class="animable"></path><path d="M213.47,190.22c1.27,0,1.81.75,1.81,2v1a1.69,1.69,0,0,1-1.88,1.94h-.79v3.18h-.9v-8.06Zm-.07,4.08c.67,0,1-.31,1-1.09v-1.07c0-.73-.26-1.1-.92-1.1h-.86v3.26Z" style="fill: rgb(38, 50, 56); transform-origin: 213.505px 194.28px;" id="eltw4wkc5f9ur" class="animable"></path><path d="M218.85,193.79v.81h-2v2.86h2.42v.82H216v-8.06h3.32V191h-2.42v2.75Z" style="fill: rgb(38, 50, 56); transform-origin: 217.66px 194.25px;" id="elvyolmjl2a4" class="animable"></path><path d="M223,193.79v.81h-2v2.86h2.42v.82h-3.31v-8.06h3.31V191H221v2.75Z" style="fill: rgb(38, 50, 56); transform-origin: 221.765px 194.25px;" id="elfyvdczmkpso" class="animable"></path><path d="M226.16,190.22c1.26,0,1.83.76,1.83,2v4.07c0,1.23-.57,2-1.83,2h-1.89v-8.06Zm0,7.24c.64,0,1-.4,1-1.14v-4.14c0-.74-.32-1.14-1-1.14h-1v6.42Z" style="fill: rgb(38, 50, 56); transform-origin: 226.13px 194.255px;" id="elg60ebf4nqnd" class="animable"></path><path d="M210.5,202.76c-.61,0-1,.33-1,1.21v1.32h-1.83v-1.2c0-2,1-3.1,2.89-3.1s2.89,1.13,2.89,3.1c0,3.88-3.86,5.32-3.86,7.35a1.1,1.1,0,0,0,0,.26h3.66v1.77h-5.6V212c0-3.63,3.84-4.23,3.84-7.79C211.51,203.06,211.12,202.76,210.5,202.76Z" style="fill: rgb(38, 50, 56); transform-origin: 210.55px 207.23px;" id="elungrqklag77" class="animable"></path><path d="M216.39,209.49v1.14c0,.88.38,1.2,1,1.2s1-.32,1-1.2v-2.71c0-.88-.38-1.22-1-1.22s-1,.34-1,1.22v.37h-1.84l.36-7.16H220v1.77h-3.36l-.16,2.94a1.85,1.85,0,0,1,1.69-.9c1.43,0,2.15,1,2.15,2.82v2.75c0,2-1,3.1-2.89,3.1s-2.89-1.13-2.89-3.1v-1Z" style="fill: rgb(38, 50, 56); transform-origin: 217.43px 207.37px;" id="elm30tqzsu4c" class="animable"></path><path d="M228.45,209.89l1.32-8.76h2.7v12.34h-1.84v-8.85l-1.33,8.85h-1.84L226,204.75v8.72h-1.69V201.13H227Z" style="fill: rgb(38, 50, 56); transform-origin: 228.39px 207.3px;" id="elni4arw5pcaj" class="animable"></path><path d="M235.81,213.47h-1.94V201.13h1.94v5.29H238v-5.29h2v12.34h-2v-5.29h-2.2Z" style="fill: rgb(38, 50, 56); transform-origin: 236.935px 207.3px;" id="elz1gz2x3c3w" class="animable"></path><g id="el7biroglcsk9"><circle cx="255.18" cy="93.49" r="8.8" style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 255.18px 93.49px; transform: rotate(-45deg);" class="animable" id="elnizuc3yx6hl"></circle></g><line x1="255.18" y1="90.34" x2="255.18" y2="97.89" style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2px; transform-origin: 255.18px 94.115px;" id="el3rkjc3b8dho" class="animable"></line><line x1="258.95" y1="94.11" x2="251.41" y2="94.11" style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2px; transform-origin: 255.18px 94.11px;" id="elyax73d7mv7i" class="animable"></line><g id="elalqkq2t4zc6"><circle cx="255.18" cy="117.38" r="8.8" style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 255.18px 117.38px; transform: rotate(-13.23deg);" class="animable" id="elzmkt59bflki"></circle></g><line x1="258.95" y1="118.01" x2="251.41" y2="118.01" style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2px; transform-origin: 255.18px 118.01px;" id="elzjv19i9oyk" class="animable"></line><path d="M64.65,62.05H60V57.58a.77.77,0,0,0-1.16-.67l-12.6,7.28a.76.76,0,0,0,0,1.33l12.6,7.28A.77.77,0,0,0,60,72.13v-5h2.12V83.42h5V64.56A2.51,2.51,0,0,0,64.65,62.05Z" style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 56.484px 70.112px;" id="elnbz1tsji8i" class="animable"></path><path d="M85.59,70.69,78.53,58.45a.9.9,0,0,0-1.55,0L69.91,70.69A.9.9,0,0,0,70.69,72h4.65V83.62h5V72h4.45A.89.89,0,0,0,85.59,70.69Z" style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 77.7532px 70.8138px;" id="ell7xal2v01ul" class="animable"></path><rect x="247.64" y="173.97" width="26.41" height="28.93" style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 260.845px 188.435px;" id="elwj8sk2dh3yn" class="animable"></rect><path d="M253.33,186.19v-8.06h.9v7.24h2.3v.82Z" style="fill: rgb(38, 50, 56); transform-origin: 254.93px 182.16px;" id="elgakw0to5psh" class="animable"></path><path d="M258.11,178.13v8.06h-.9v-8.06Z" style="fill: rgb(38, 50, 56); transform-origin: 257.66px 182.16px;" id="el3itw3o9sv4t" class="animable"></path><path d="M262,186.17h-.87l-1.33-6.41v6.43H259v-8.06h1.25l1.33,6.43,1.27-6.43h1.26v8.06h-.85V179.7Z" style="fill: rgb(38, 50, 56); transform-origin: 261.555px 182.16px;" id="ell1km5xwi9nl" class="animable"></path><path d="M266,178.13v8.06h-.9v-8.06Z" style="fill: rgb(38, 50, 56); transform-origin: 265.55px 182.16px;" id="el1c4ugp1uj8n" class="animable"></path><path d="M268,186.19v-7.25h-1.48v-.81h3.86v.81h-1.49v7.25Z" style="fill: rgb(38, 50, 56); transform-origin: 268.45px 182.16px;" id="el9rudgwtllgt" class="animable"></path><path d="M257.31,191c0-1.11-.39-1.41-1-1.41s-1,.34-1,1.22v.79h-1.84v-.67c0-2,1-3.1,2.89-3.1s2.89,1.13,2.89,3.1v.32c0,1.32-.42,2.15-1.35,2.53a2.52,2.52,0,0,1,1.35,2.59v1c0,2-1,3.1-2.89,3.1s-2.89-1.13-2.89-3.1v-1h1.84v1.14c0,.89.38,1.22,1,1.22s1-.3,1-1.39v-1c0-1.15-.39-1.57-1.27-1.57h-.65V193h.75c.72,0,1.17-.32,1.17-1.3Z" style="fill: rgb(38, 50, 56); transform-origin: 256.372px 194.15px;" id="elboxfwpmr7j6" class="animable"></path><path d="M260.39,190.89c0-2,1-3.1,2.94-3.1s2.94,1.13,2.94,3.1v6.41c0,2-1,3.1-2.94,3.1s-2.94-1.13-2.94-3.1Zm1.93,6.53c0,.89.39,1.22,1,1.22s1-.33,1-1.22v-6.65c0-.88-.39-1.22-1-1.22s-1,.34-1,1.22Z" style="fill: rgb(38, 50, 56); transform-origin: 263.33px 194.095px;" id="elvrxxiypjcx" class="animable"></path><polygon points="163.9 216.89 162.58 128.07 108.29 128.07 109.2 123.62 93.01 131.52 105.81 140.18 107.13 133.73 157.27 133.73 156.34 216.89 163.9 216.89" style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 128.455px 170.255px;" id="elclvy8skkvt" class="animable"></polygon><path d="M88.94,120.74c-4.07-.32-8.85,1.49-10.68,4s1.52,8.71,1.52,8.71,11.37-5,13.2-7.55S93,121.06,88.94,120.74Zm-4.65,6.47c-1.62-.13-2.34-1.06-1.61-2.08A5.26,5.26,0,0,1,87,123.51c1.62.13,2.35,1.06,1.61,2.08A5.22,5.22,0,0,1,84.29,127.21Z" style="fill: rgb(38, 50, 56); transform-origin: 85.7035px 127.077px;" id="elkaup50q4k" class="animable"></path><path d="M79.78,106.63a9.56,9.56,0,0,0-9.56,9.57c0,5.28,9.56,16.84,9.56,16.84s9.57-11.56,9.57-16.84A9.56,9.56,0,0,0,79.78,106.63Zm0,13.39a3.83,3.83,0,1,1,3.83-3.82A3.82,3.82,0,0,1,79.78,120Z" style="fill: #407BFF; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 79.785px 119.835px;" id="elvm9hv4k86d" class="animable"></path><polygon points="160.23 176.57 143.42 205.69 177.04 205.69 160.23 176.57" style="fill: rgb(38, 50, 56); transform-origin: 160.23px 191.13px;" id="els8mbrljn5n" class="animable"></polygon><path d="M51,52.18H268.73a8.14,8.14,0,0,1,8.14,8.14V208.14a8.75,8.75,0,0,1-8.75,8.75H47.44a4.61,4.61,0,0,1-4.61-4.61v-152A8.14,8.14,0,0,1,51,52.18Z" style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 159.85px 134.535px;" id="elbi15apaqk38" class="animable"></path></g><g id="freepik--Character--inject-1" class="animable animator-active" style="transform-origin: 577.875px 319.105px;"><circle cx="511.29" cy="436.12" r="16.09" style="fill: rgb(178, 178, 178); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 511.29px 436.12px;" id="eljxqmr8yyi2c" class="animable"></circle><circle cx="511.29" cy="436.12" r="12.19" style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 511.29px 436.12px;" id="eliv34ie5zaok" class="animable"></circle><path d="M516.65,440.77l5.42,1a11.89,11.89,0,0,0,.93-2.34l-4.65-3a.75.75,0,0,1-.08-1.2l4.32-3.71a12,12,0,0,0-1.14-2.16L516,431.28a.75.75,0,0,1-1-.68l-.23-6.15a11.5,11.5,0,0,0-2.22-.45l-2.11,5.89a.74.74,0,0,1-1.14.35L504,426.36a11.79,11.79,0,0,0-1.59,1.41l3.46,5.6a.75.75,0,0,1-.44,1.11l-6.35,1.7a12.4,12.4,0,0,0,.21,2.13l6.47.77a.75.75,0,0,1,.59,1l-2.48,5.68a12.21,12.21,0,0,0,1.95,1.21l4.33-4.27a.75.75,0,0,1,1.19.18L514,448a12.32,12.32,0,0,0,2.33-.8l-.59-5.61A.74.74,0,0,1,516.65,440.77Z" style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 511.04px 436px;" id="el4jhllz6xtfp" class="animable"></path><path d="M503.56,300.9l14,11.25a5.15,5.15,0,0,1,1.92,4.37l-8.18,119.6" style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 4px; transform-origin: 511.526px 368.51px;" id="elnv87yy8tthl" class="animable"></path><path d="M554.68,201.8s-1.74,5-1.11,6.47a7.6,7.6,0,0,1,.48,3.95c-.16.47-3.16,5.84-2.84,6.47s3.63,2.68,3.63,2.68,3.94,8.84,5.2,8.68,7.58-3.16,7.58-3.16l.94,8.52,12.31-5,4-17.83s.16-6.62-10.1-11S555.78,199.59,554.68,201.8Z" style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 568.028px 217.269px;" id="elv6btls8inm" class="animable"></path><path d="M558,222.32s2.37.79,3.32-2.37" style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 559.66px 221.179px;" id="elw9rnawjbj1p" class="animable"></path><path d="M555.63,209.54s1.57-1.9,3.15-.16" style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 557.205px 209.093px;" id="el2oq782bnt0f" class="animable"></path><path d="M558.3,212.7c.1.82-.1,1.52-.45,1.56s-.7-.59-.8-1.42.11-1.52.45-1.56S558.21,211.87,558.3,212.7Z" style="fill: rgb(38, 50, 56); transform-origin: 557.675px 212.77px;" id="elmioi9g6echm" class="animable"></path><path d="M517.6,289.06l-6.79,5.21s-9.78-2-10.57-2-.63,1.89-.63,1.89-3.16,6-2.84,6.79,3.16,3.78,3.47,3.15a3.64,3.64,0,0,0,.16-2.68c-.32-1.26,2.84-3,2.84-3s6.94,2.21,9.31,2.21,6.78-3.47,6.78-3.47l5.53-5.52L519,287.64Z" style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 510.804px 295.913px;" id="ellx2lfvl9ge" class="animable"></path><path d="M551.42,338.28s1,29.69,2.15,32.54c3.68,8.91,38.07,40.52,39.6,42.06s-.92,7.67-.92,8.6-1.53,4.29-4.6,6.44a5.18,5.18,0,0,0-1.95,5.66,29.85,29.85,0,0,1,4.71.17c2.76.31,7.06,0,8-2.76a19.41,19.41,0,0,1,4.6-8c2.46-2.46,6.45-2.46,6.14-7.37s-5.21-6.14-7.67-9.51S585.8,388,582.12,380.65,568.61,365,568.61,365l1.84-26.4Z" style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 580.294px 386.064px;" id="eldbhmd1tf1n" class="animable"></path><path d="M603.89,408.53c-.44,1.11-.94,2.3-1.51,3.43a8.21,8.21,0,0,1-5.53,4.3L595.32,415a2.31,2.31,0,0,0-1.65-.54c.06,2.41-1.42,6.27-1.42,7,0,.92-1.53,4.29-4.6,6.44a5.18,5.18,0,0,0-1.95,5.66,29.85,29.85,0,0,1,4.71.17c2.76.31,7.06,0,8-2.76a19.41,19.41,0,0,1,4.6-8c2.46-2.46,6.45-2.46,6.14-7.37C608.91,412.08,606.26,410.45,603.89,408.53Z" style="fill: #407BFF; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 597.33px 421.179px;" id="elvt5rqsbvcj" class="animable"></path><path d="M566.78,335.56s2.07,17.49,3.58,22.38a74.32,74.32,0,0,1,2.06,8.09s.19,16,2.83,23.32,1.5,30,1.5,30.59-2.82,4.51-6.21,6.4-10.34,4.13-10.34,5.26a2.27,2.27,0,0,0,1.88,2.45c1.32.18,9.59.56,14.11.56a36.46,36.46,0,0,0,11.66-2.26c.94-.56.19-3.38-.19-6.2s0-18.18,0-18.18,2.07-13.92,1.88-24.07-3.76-21.07-3.76-21.07,1.13-25.77,1.69-27.08S566.78,335.56,566.78,335.56Z" style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 574.871px 384.862px;" id="el2jiwx6ht67a" class="animable"></path><path d="M587.85,432.35c.94-.56.19-3.38-.19-6.2-.06-.45-.1-1.14-.13-2a20.47,20.47,0,0,1-8.52.67,8.23,8.23,0,0,0-.57-3,5.55,5.55,0,0,0-1.69-1.88c0,.57-2.82,4.51-6.21,6.4s-10.34,4.13-10.34,5.26a2.27,2.27,0,0,0,1.88,2.45c1.32.18,9.59.56,14.11.56A36.46,36.46,0,0,0,587.85,432.35Z" style="fill: #407BFF; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 574.247px 427.275px;" id="elk3par7ox5f" class="animable"></path><path d="M552.49,296.25,538,334.81s10,7.52,28.77,7.52,39.31-9,39.31-9l-13.54-36.67S569.6,291,552.49,296.25Z" style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 572.04px 318.174px;" id="el5a7aywyeogx" class="animable"></path><line x1="555.31" y1="300.39" x2="550.42" y2="316.75" style="fill: none; stroke: rgb(255, 255, 255); stroke-miterlimit: 10; transform-origin: 552.865px 308.57px;" id="el8e201b3rkpa" class="animable"></line><line x1="557.94" y1="303.21" x2="553.43" y2="327.47" style="fill: none; stroke: rgb(255, 255, 255); stroke-miterlimit: 10; transform-origin: 555.685px 315.34px;" id="elbt4fvitoa6t" class="animable"></line><line x1="564.9" y1="300.01" x2="563.77" y2="309.98" style="fill: none; stroke: rgb(255, 255, 255); stroke-miterlimit: 10; transform-origin: 564.335px 304.995px;" id="elne03c8nwds" class="animable"></line><line x1="588.22" y1="301.52" x2="591.99" y2="314.68" style="fill: none; stroke: rgb(255, 255, 255); stroke-miterlimit: 10; transform-origin: 590.105px 308.1px;" id="elabomg59cuks" class="animable"></line><path d="M568.09,234.31a7,7,0,0,0-4.57,3.15c-1.9,2.84-45.92,51.6-45.92,51.6a40,40,0,0,0,4.57,3.16,9.78,9.78,0,0,0,2.53.94l3.47-1.89s18.46-.95,22.41-2.21c0,0-2.69,7.89-2.05,8.52s2.84,2.68,4.89,2.84,8.36-1.1,8.36-1.1,15.62,2.21,21,2.21,9.15-1.11,10.25-2,3.63-4.26,4-7-6.63-22.09-5.84-24,3.31-15.62,1.26-24.77-6.94-8.84-10.1-10.89S568.09,234.31,568.09,234.31Z" style="fill: rgb(178, 178, 178); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 557.322px 266.877px;" id="el1vtkpoppy9e" class="animable"></path><path d="M550.58,289.06s12.94-2.05,15.62-3.94,18-26.83,18-26.83" style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 567.39px 273.675px;" id="elbe2jtty5r9j" class="animable"></path><path d="M581.77,292.4c2-.18,3.36-.18,3.36-.18" style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 583.45px 292.31px;" id="ele9gr6w90n3g" class="animable"></path><path d="M561.78,299.32s14.2-6.16,17.51-6.63" style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 570.535px 296.005px;" id="ellz4tjycp23" class="animable"></path><path d="M561.34,278.22c1.64-.68,3.32-1.43,5-2.25" style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 563.84px 277.095px;" id="elykj4z6n79a" class="animable"></path><path d="M536.69,284.49a85.86,85.86,0,0,0,21.86-5.17" style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 547.62px 281.905px;" id="eltpobpyv04b" class="animable"></path><path d="M533.22,282.91a56.73,56.73,0,0,0,18.93-5.21" style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 542.685px 280.305px;" id="elev4w32cfb8n" class="animable"></path><path d="M521.07,285.75a12.36,12.36,0,0,0,6,3.94" style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 524.07px 287.72px;" id="el8wnu0wq933h" class="animable"></path><line x1="580.56" y1="264.6" x2="586.71" y2="258.77" style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 583.635px 261.685px;" id="elkzr39a2sr0j" class="animable"></line><path d="M576.93,232.89s10.1,7.73,12.78,11.2,2.68,13.26,3.79,13.41,9.62-5.83,10.88-10.1-7.89-9.62-13.41-12.3S578.19,231,576.93,232.89Z" style="fill: rgb(178, 178, 178); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 590.714px 244.764px;" id="elrkzmd7oha8s" class="animable"></path><path d="M566,206.06s-.63,5.05,1.1,9,4.58,8.52,4.11,12.46-6.31,5.53-6.31,5.53,1.42,3.78,4.57,5,7.42-1.9,7.42-1.9l-.48,2.53a26.69,26.69,0,0,0,9.47-1.27c4.1-1.57,5.68-6.47,4.74-11.51s-4.26-7.74-5-10.58a6.1,6.1,0,0,1,.94-5.05s-1.73-4.73-9.15-7.73S567.14,203.38,566,206.06Z" style="fill: #407BFF; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 577.891px 220.078px;" id="ele7n4iu2g3x" class="animable"></path><path d="M569.35,208.27s1.27,12.47-2.52,20.2" style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2px; transform-origin: 568.192px 218.37px;" id="eluvngmmrzn9l" class="animable"></path><path d="M551.84,203.38s4.73,0,7.57,1.74,4.58,4.1,7.58,3.94,5.36-2.52,7.89-1.26a6,6,0,0,1,3.63,4.89c.15,1.74.63,3,2.68,3.47a16.68,16.68,0,0,0,5,.48c.63-.16,3.78-5,4.73-11.37s-3.94-15.77-15.3-18.61S550.73,190.28,551.84,203.38Z" style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 571.406px 201.333px;" id="elintxvpomp9o" class="animable"></path><path d="M506.55,300.9a3,3,0,1,0-3,3A3,3,0,0,0,506.55,300.9Z" style="fill: rgb(130, 130, 130); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 503.55px 300.9px;" id="elignniq9gtds" class="animable"></path><circle cx="644.46" cy="436.12" r="16.09" style="fill: rgb(178, 178, 178); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 644.46px 436.12px;" id="el0y7h042i9sfp" class="animable"></circle><circle cx="644.46" cy="436.12" r="12.19" style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 644.46px 436.12px;" id="elabmdyxk72fk" class="animable"></circle><path d="M649.83,440.77l5.41,1a11.92,11.92,0,0,0,.94-2.34l-4.65-3a.75.75,0,0,1-.08-1.2l4.31-3.71a12,12,0,0,0-1.13-2.16l-5.48,1.87a.74.74,0,0,1-1-.68l-.23-6.15a11.81,11.81,0,0,0-2.22-.45l-2.11,5.89a.74.74,0,0,1-1.15.35l-5.26-3.88a11.22,11.22,0,0,0-1.59,1.41l3.46,5.6a.75.75,0,0,1-.45,1.11l-6.34,1.7a12.4,12.4,0,0,0,.2,2.13l6.47.77a.75.75,0,0,1,.6,1l-2.48,5.68A12.12,12.12,0,0,0,639,447l4.34-4.27a.74.74,0,0,1,1.18.18l2.68,5.07a12.32,12.32,0,0,0,2.33-.8l-.59-5.61A.74.74,0,0,1,649.83,440.77Z" style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 644.22px 435.965px;" id="elignppkxyu9h" class="animable"></path><polyline points="514.57 393.78 546.09 436.3 648.41 436.3" style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 4px; transform-origin: 581.49px 415.04px;" id="elmwa4k2bzykr" class="animable"></polyline><g id="elqwf135bwiz" class=""><rect x="511.37" y="377.42" width="7.33" height="12.38" style="fill: rgb(38, 50, 56); transform-origin: 515.035px 383.61px; transform: rotate(3.53deg);" class="animable" id="elhgkb7x611lr"></rect></g></g><g id="freepik--Car--inject-1" class="animable" style="transform-origin: 282.695px 279.87px;"><path d="M453.58,362.51H375.21v11.42H361.57l-149-.23h-12l-72.46-3.78-2.34.34-.67,8-5,2,.66-14.35.67-13.69s-.67-10.36,3-16.37,8-19.7,28.71-23,36.4,2.67,43.74,8,14.7,23.71,18.37,33.39,3.67,12.35,3.67,12.35H354.17s3-31.72,17.36-44.41,39.07-14.35,58.1-8S459.83,342.08,453.58,362.51Z" style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 287.711px 345.417px;" id="elo9kr2iigym" class="animable"></path><path d="M109.73,358.19c2.17,6.49,6.13,10.82,7.94,11.9l1.8,1.09s1.81-20.94,7.22-31.76,19.79-22.92,42.22-23.09c18.68-.14,35,15.87,39.32,28.15s3.25,28.5,4.33,29.22,149,1.08,149,1.08-2.88-22.83,9.38-40a44,44,0,0,1,46.91-17.69c13,3.47,27.06,14.44,31.75,22.74s4,22.72,4,22.72,4-2.88,4.69-6.49,0-15.88-4.69-26.34S441.31,310.56,441,307.31s1.8-26-1.81-39.69-15.87-49.42-15.87-49.42,6.13-2.9,4.69-5.06c-.68-1-7.93-2.49-18.39-3.93-12-1.65-28.09-3.23-43.31-4-28.5-1.44-65.3-1.81-83.71,2.53,0,0-16.95,2.88-20.19,4S215.09,239.12,193.44,260c0,0-7.67,2.39-15.05,4.46-3.35.95-6.64,1.83-9.13,2.4-7.93,1.8-42.21,12.27-43.65,18s-4.33,32.47-4.33,32.47-6.13,5.78-7.21,10.47S107.56,351.68,109.73,358.19Z" style="fill: rgb(204, 204, 204); transform-origin: 283.87px 289.504px;" id="elng1gp76weuj" class="animable"></path><path d="M374.36,312.71c38.29,0,57.38-6,66.67-11.11-.1,2.84-.17,4.89-.08,5.71.36,3.25,7.94,11.91,12.63,22.37S459,352.41,458.27,356s-4.69,6.49-4.69,6.49.72-14.42-4-22.72-18.74-19.27-31.75-22.74A44,44,0,0,0,371,334.74c-12.26,17.21-9.38,40-9.38,40s-147.92-.36-149-1.08,0-17-4.33-29.22c-3.34-9.48-13.82-21.17-27-26C199,316.22,218.13,311,241.73,305,284.66,294.13,308.37,312.71,374.36,312.71Z" style="fill: rgb(135, 135, 135); transform-origin: 319.902px 338.164px;" id="eld49oli52f9" class="animable"></path><path d="M114.07,327.88c1.08-4.69,7.21-10.47,7.21-10.47s.2-1.87.53-4.72a171.66,171.66,0,0,0,16.76,4.51,111,111,0,0,0,12.73,2c-12.47,4.26-20.78,12.55-24.61,20.2-5.41,10.82-7.22,31.76-7.22,31.76l-1.8-1.09c-1.81-1.08-5.77-5.41-7.94-11.9S113,332.57,114.07,327.88Z" style="fill: rgb(135, 135, 135); transform-origin: 130.262px 341.925px;" id="elblbw5me0pgg" class="animable"></path><path d="M109.73,358.19c2.17,6.49,6.13,10.82,7.94,11.9l1.8,1.09s1.81-20.94,7.22-31.76,19.79-22.92,42.22-23.09c18.68-.14,35,15.87,39.32,28.15s3.25,28.5,4.33,29.22,149,1.08,149,1.08-2.88-22.83,9.38-40a44,44,0,0,1,46.91-17.69c13,3.47,27.06,14.44,31.75,22.74s4,22.72,4,22.72,4-2.88,4.69-6.49,0-15.88-4.69-26.34S441.31,310.56,441,307.31s1.8-26-1.81-39.69-15.87-49.42-15.87-49.42,6.13-2.9,4.69-5.06c-.68-1-7.93-2.49-18.39-3.93-12-1.65-28.09-3.23-43.31-4-28.5-1.44-65.3-1.81-83.71,2.53,0,0-16.95,2.88-20.19,4S215.09,239.12,193.44,260c0,0-7.67,2.39-15.05,4.46-3.35.95-6.64,1.83-9.13,2.4-7.93,1.8-42.21,12.27-43.65,18s-4.33,32.47-4.33,32.47-6.13,5.78-7.21,10.47S107.56,351.68,109.73,358.19Z" style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 283.87px 289.504px;" id="elcfsu14xmhk" class="animable"></path><path d="M178.39,264.5l16.18.91,16.67.24,5.13-4.49s55-37.82,67-41.16,45.83-6.29,56.41-5.63,27.26,12.8,34.83,35.78,7.17,27,5.58,37-12.52,22.78-28.55,46.5-43.6,21.16-43.6,21.16l-87.45,4.8,3.46,8S329.22,367,337.56,365s10.25-8.33,17.95-20.51,44.88-63.48,52.58-72.46S429,259.4,429,259.4s-24.73-30.94-27.05-38.73c-1.29-4.31,3.3-8.54,7.65-11.46-12-1.65-28.09-3.23-43.31-4-28.5-1.44-65.3-1.81-83.71,2.53,0,0-16.95,2.88-20.19,4S215.09,239.12,193.44,260C193.44,260,185.77,262.43,178.39,264.5Z" style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 303.695px 285.919px;" id="els9by0jjcw3" class="animable"></path><path d="M337,214.22s-45.46-.36-63.86,5.41-75.41,52-74.33,53.4,8.3,1.81,11.55,1.45,132-11.19,132-11.19a29.76,29.76,0,0,0,12.27,5.78c7.22,1.44,26.34-.73,26.34-.73s-9-29.22-17.32-39.69S345.34,214.22,337,214.22Z" style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 289.882px 244.41px;" id="elkq9m8qvgk1a" class="animable"></path><path d="M333.47,264.05V217.33s-40.74,1.33-50.09,2.67-12,3.34-12,3.34l-36.39,23-.28,26C264.49,269.85,313.44,265.73,333.47,264.05Z" style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 284.09px 244.835px;" id="elval92mo5oqk" class="animable"></path><path d="M243.32,269.08l-19.7,2s-5.35-3.68-5.35-4.68,4.68-2.33,4.68-2.33-2-7.68,7-12,13.69,1.66,14,5S243.32,269.08,243.32,269.08Z" style="fill: rgb(204, 204, 204); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 231.141px 260.82px;" id="el1a9zp5t4g3o" class="animable"></path><path d="M339.8,214.38l-.3,49.16,2.95-.25a29.76,29.76,0,0,0,12.27,5.78c7.22,1.44,26.34-.73,26.34-.73s-9-29.22-17.32-39.69C356.34,219.33,347.51,215.17,339.8,214.38Z" style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 360.28px 241.972px;" id="eljcw5cawypmd" class="animable"></path><path d="M374.63,250.15c-5,.21-13.58.86-18.12,2.91-6.68,3-14.06,10.23-14.06,10.23a29.76,29.76,0,0,0,12.27,5.78c7.22,1.44,26.34-.73,26.34-.73S378.39,259.71,374.63,250.15Z" style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 361.755px 259.857px;" id="elx0vswofhrck" class="animable"></path><path d="M351.17,263.07l15.69-.66a7.5,7.5,0,0,0,6.68.33c3.34-1.67,2.67-4.67-.34-6s-8,1.34-8,1.34l-13.69,1S347.49,259.73,351.17,263.07Z" style="fill: rgb(204, 204, 204); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 362.692px 259.869px;" id="elhq02t4cjm9r" class="animable"></path><path d="M259.16,213.33c-11.11,6.2-46.88,28.5-65.72,46.71,0,0-16.24,5.06-24.17,6.86l25.3-1.49L258,216.66S258.56,215,259.16,213.33Z" style="fill: rgb(204, 204, 204); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 214.215px 240.115px;" id="elqm77nsv5cs" class="animable"></path><path d="M437.47,261.69c-4.76-16-14.2-43.5-14.2-43.5S418,221.67,418,224s17,36.06,18.36,37.39A1.31,1.31,0,0,0,437.47,261.69Z" style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 427.735px 239.952px;" id="elkwiqo116k09" class="animable"></path><path d="M220.61,359.57s-10.68-44.41-11-53.09,1.34-25,4.68-29.38" style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 215.091px 318.335px;" id="elbtc1261hxo5" class="animable"></path><path d="M438.65,271.42s-4.34-6-10-6-6,6-5,9S428,288.12,432,292.12s8,4.68,8.68-1S443,277.77,438.65,271.42Z" style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 432.383px 280.335px;" id="elwrph8tbyoo" class="animable"></path><path d="M408.93,210.65s-8.68,4.68-7,10,16.36,25.37,21,31.05,6,7.68,6,7.68-11,2-12.69,8,15.36,36.07,15.36,36.07" style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 416.657px 257.05px;" id="elw74y7pzad49" class="animable"></path><path d="M422.29,310.82s11.35-8.35,18-10" style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 431.29px 305.82px;" id="el1m5ieq92zcx" class="animable"></path><path d="M220.85,343.88s97.16-3,110.52-9.69,23.37-15,28.71-22c0,0,.34-3-11.35-3s-69.45,12.69-111.19,30.39" style="fill: rgb(222, 222, 222); transform-origin: 290.466px 326.535px;" id="el46yen8qvb7" class="animable"></path><path d="M144.48,293.12s5.68-5.67,4-11-13.69-.67-18.37,2.67-8,25.37-6,25.37S144.48,293.12,144.48,293.12Z" style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 136.154px 294.93px;" id="el599faflwp18" class="animable"></path><circle cx="165.85" cy="360.24" r="39.07" style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 165.85px 360.24px;" id="elnqoo13fwfif" class="animable"></circle><g id="els9ohmj27mb"><circle cx="165.85" cy="360.24" r="27.81" style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 165.85px 360.24px; transform: rotate(-45deg);" class="animable" id="eltrxqcfojjb"></circle></g><circle cx="409" cy="360.24" r="39.07" style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 409px 360.24px;" id="elffgcqdycef" class="animable"></circle><g id="elwhegsscz9x"><circle cx="409" cy="360.24" r="27.81" style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; transform-origin: 409px 360.24px; transform: rotate(-45deg);" class="animable" id="elowb9l8n14af"></circle></g><path d="M74.81,385.12a42.59,42.59,0,0,1-.18-60.42" style="fill: none; stroke: #407BFF; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; transform-origin: 68.4804px 354.91px;" id="ele920qg7p6vo" class="animable"></path><path d="M82.25,379.87a33.67,33.67,0,0,1-.2-49.93" style="fill: none; stroke: #407BFF; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; transform-origin: 76.661px 354.905px;" id="elewt8200w49c" class="animable"></path><path d="M91.51,374.43a23.66,23.66,0,0,1,0-39.23" style="fill: none; stroke: #407BFF; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; transform-origin: 86.2953px 354.815px;" id="elnpzu1ggvc6" class="animable"></path><path d="M99.71,368.66a14.74,14.74,0,0,1,.34-27.81" style="fill: none; stroke: #407BFF; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; transform-origin: 95.0387px 354.755px;" id="elp0a9gnbidb" class="animable"></path><path d="M298.09,172.83a42.59,42.59,0,0,1,60.42-.18" style="fill: none; stroke: #407BFF; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; transform-origin: 328.3px 166.5px;" id="elwzaloxo35so" class="animable"></path><path d="M303.34,180.27a33.68,33.68,0,0,1,49.93-.19" style="fill: none; stroke: #407BFF; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; transform-origin: 328.305px 174.686px;" id="eldlwmyg79vz5" class="animable"></path><path d="M308.77,189.54a23.67,23.67,0,0,1,39.24,0" style="fill: none; stroke: #407BFF; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; transform-origin: 328.39px 184.326px;" id="el62rk3o27u4l" class="animable"></path><path d="M314.55,197.74a14.73,14.73,0,0,1,27.8.33" style="fill: none; stroke: #407BFF; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; transform-origin: 328.45px 193.058px;" id="ela4zjprd5xlv" class="animable"></path><path d="M490.58,385.12a42.6,42.6,0,0,0,.19-60.42" style="fill: none; stroke: #407BFF; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; transform-origin: 496.91px 354.91px;" id="elxs7mvx4gf" class="animable"></path><path d="M483.14,379.87a33.67,33.67,0,0,0,.2-49.93" style="fill: none; stroke: #407BFF; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; transform-origin: 488.729px 354.905px;" id="elz97k3biu7w8" class="animable"></path><path d="M473.88,374.43a23.66,23.66,0,0,0,0-39.23" style="fill: none; stroke: #407BFF; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; transform-origin: 479.095px 354.815px;" id="elxcm2y9bpxp" class="animable"></path><path d="M465.68,368.66a14.74,14.74,0,0,0-.34-27.81" style="fill: none; stroke: #407BFF; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3px; transform-origin: 470.351px 354.755px;" id="el1qwbk7i4xuwi" class="animable"></path></g><defs>     <filter id="active" height="200%">         <feMorphology in="SourceAlpha" result="DILATED" operator="dilate" radius="2"></feMorphology>                <feFlood flood-color="#32DFEC" flood-opacity="1" result="PINK"></feFlood>        <feComposite in="PINK" in2="DILATED" operator="in" result="OUTLINE"></feComposite>        <feMerge>            <feMergeNode in="OUTLINE"></feMergeNode>            <feMergeNode in="SourceGraphic"></feMergeNode>        </feMerge>    </filter>    <filter id="hover" height="200%">        <feMorphology in="SourceAlpha" result="DILATED" operator="dilate" radius="2"></feMorphology>                <feFlood flood-color="#ff0000" flood-opacity="0.5" result="PINK"></feFlood>        <feComposite in="PINK" in2="DILATED" operator="in" result="OUTLINE"></feComposite>        <feMerge>            <feMergeNode in="OUTLINE"></feMergeNode>            <feMergeNode in="SourceGraphic"></feMergeNode>        </feMerge>            <feColorMatrix type="matrix" values="0   0   0   0   0                0   1   0   0   0                0   0   0   0   0                0   0   0   1   0 "></feColorMatrix>    </filter></defs></svg><script type="text/javascript">document.addEventListener("DOMContentLoaded", function() {// 切换循环动画的显隐let shakeBtn = document.getElementById("shakeBtn");let car = document.getElementById("freepik--Car--inject-1");shakeBtn.addEventListener("click", function(ev) {if(car.classList.contains("animated")) {car.classList.remove("animated");}else {car.classList.add("animated");   }});// 反复触发一个只执行一次的动画let speedBtn = document.getElementById("speedBtn");let bike = document.getElementById("freepik--Character--inject-1");speedBtn.addEventListener("click", function(ev) {bike.classList.remove("animated");window.setTimeout(function() {bike.classList.add("animated");}, 100);});});</script></body>
</html>

效果展示

用JS控制SVG的预设动画相关推荐

  1. js svg语音波动动画_SVG实现环形进度条的原理

    之前在项目中遇到一个环形进度条的需求,要求能实时更新进度,脑海中瞬间便蹦出css,svg,canvas3中方案,对于3种方案个人更偏向于svg,用法简单,代码量也很少,同时也便于实时控制.具体效果如下 ...

  2. svg配合css3动画_与Sarah Drasner一起使用CSS,JS和SVG进行动画处理,并避免倦怠

    svg配合css3动画 In this episode of the Versioning Show, Tim and David are joined by Sarah Drasner, a tea ...

  3. svg html 鼠标滚轮交互,鼠标滚轮控制SVG线条动画

    之前用D3制作图表是初次接触SVG,当时只顾感叹D3的强大了.后来当看到网站 Serio Verify 的时候,才意识到SVG用于制作可交互的页面动画是多么有意思. 于是自己也尝试在HTML页面中制作 ...

  4. 【Web】使用Three.js制作有数据源控制的3D模型动画

    懒得写了,大概记录下步骤. 1. 使用开源软件Blender制作3D模型 1.1 Blender Blender类似于3DMax.Maya,是制作3D模型的工具软件,是开源软件,但较难使用,无法制作精 ...

  5. js svg语音波动动画_整理一些有趣的svg动画

    原因 原因很简单,我不想成为一个api前端工程师,想能够多学一点.偶尔的喜欢做一些html可能难以完成的效果,去年用canvas写了一份简单的gant图,感觉还不错.后来画流程图的时候搜索各大网站发现 ...

  6. CSS3 SVG波浪线条动画js特效

    下载地址 CSS3 SVG波浪线条动画特效是一款简单的线条波浪滚动,线条弯曲动画特效. dd:

  7. svg汽车跑道动画js特效

    下载地址 svg汽车跑道动画特效代码 dd:

  8. HTML5 SVG纸屑按钮动画js特效

    下载地址HTML5 SVG纸屑按钮动画特效是一款html5基于svg制作的点击按钮纸屑散开飘落动画特效. dd:

  9. SVG进阶-SMIL动画

    SMIL SMIL是指同步多媒体集成语言(Synchronized Multimedia Integration Language)SVG相关的动画都是基于这种语言标准实现的 SMIL允许你做下面这些 ...

最新文章

  1. sysctl -p详解
  2. SAP有用的知识(持续更新)
  3. db2安装包v10.5_LINUX安装db2V10.5步骤
  4. MySQL的Grant命令
  5. Python自动化开发学习的第十一周----WEB基础(jquery)
  6. 数据中心未来将向“四高”演进
  7. 5G与数据中心是新基建“耗电双雄”?事情不能这么看……
  8. FragmentTabHostUnderLineDemo【FragmentTabHost带下划线】
  9. html5跨域通讯之postMessage的用法
  10. vscode导入本地jar包_go导入本地包踩坑(已解决!)
  11. [转]Oracle SQL 日期的應用
  12. crontab 每天凌晨12点定时器_双十一预售:李佳琦薇娅凌晨12:00点,观看次数双双破亿...
  13. Javascript:Ajax案例实操
  14. Windows服务详解
  15. 李沐动手学深度学习V2-语义分割和Pascal VOC2012数据集加载代码实现
  16. 【转】8段数码管引脚图,8段数码管动态显示详解
  17. python生词本查单词译文_Kindle 阅读器“生词本”功能详细使用说明
  18. 线程池为啥要用阻塞队列
  19. 简析also, too, as well,either用法
  20. java登陆密码加密怎么做,Java如何实现密码加密

热门文章

  1. 「可口可乐 + Zion」7天上线小程序是如何做到的?
  2. 登录模块与token的使用和创建
  3. 小彭玉的扫荡食堂计划
  4. python网络爬虫进入(一)——简单的博客爬行动物
  5. 每个初学JAVA者都应该搞懂的问题
  6. 陈老师的一些单片机外围电路设计心得
  7. SQL语句基础4/select查询语句练习
  8. Java燕山大学_GitHub - jiajiayao/YsuSelfStudy: 燕山大学空教室查询及教务辅助系统,中国大学生计算机设计大赛省赛三等奖,已上架小米应用商店...
  9. DAO概念板块代币大盘点,你又把握了几个?
  10. 【光通信】Wi-Fi联盟——Wi-Fi 7与Wi-Fi 6相比到底有哪些变化