Probe graphics, and lift z by 25mm at end of probe
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "bbctrl",
|
||||
"version": "1.0.10b17",
|
||||
"version": "1.0.10b18",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "bbctrl",
|
||||
"version": "1.0.10b17",
|
||||
"version": "1.0.10b18",
|
||||
"hasInstallScript": true,
|
||||
"license": "GPL-3.0+",
|
||||
"dependencies": {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "bbctrl",
|
||||
"version": "1.0.10b17",
|
||||
"version": "1.0.10b18",
|
||||
"homepage": "https://onefinitycnc.com/",
|
||||
"repository": "https://github.com/OneFinityCNC/onefinity",
|
||||
"license": "GPL-3.0+",
|
||||
|
||||
13
src/svelte-components/package-lock.json
generated
@@ -17,6 +17,7 @@
|
||||
"string.prototype.matchall": "^4.0.7",
|
||||
"svelte": "^3.49.0",
|
||||
"svelte-check": "^2.8.0",
|
||||
"svelte-icon": "^1.2.4",
|
||||
"svelte-material-ui": "^6.0.0-beta.16",
|
||||
"svelte-preprocess": "^4.10.7",
|
||||
"svelte-tiny-virtual-list": "^2.0.5",
|
||||
@@ -5287,6 +5288,12 @@
|
||||
"svelte": ">=3.19.0"
|
||||
}
|
||||
},
|
||||
"node_modules/svelte-icon": {
|
||||
"version": "1.2.4",
|
||||
"resolved": "https://registry.npmjs.org/svelte-icon/-/svelte-icon-1.2.4.tgz",
|
||||
"integrity": "sha512-fDdTKQAaWUFRRR1f4l65ynXdoAcsR8ikL8G9hOh7gGrjlx/44Ka6flEJHR5mCKoAN/A11n8pd96QcKZpxvmbIQ==",
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/svelte-material-ui": {
|
||||
"version": "6.0.0-beta.16",
|
||||
"resolved": "https://registry.npmjs.org/svelte-material-ui/-/svelte-material-ui-6.0.0-beta.16.tgz",
|
||||
@@ -9998,6 +10005,12 @@
|
||||
"dev": true,
|
||||
"requires": {}
|
||||
},
|
||||
"svelte-icon": {
|
||||
"version": "1.2.4",
|
||||
"resolved": "https://registry.npmjs.org/svelte-icon/-/svelte-icon-1.2.4.tgz",
|
||||
"integrity": "sha512-fDdTKQAaWUFRRR1f4l65ynXdoAcsR8ikL8G9hOh7gGrjlx/44Ka6flEJHR5mCKoAN/A11n8pd96QcKZpxvmbIQ==",
|
||||
"dev": true
|
||||
},
|
||||
"svelte-material-ui": {
|
||||
"version": "6.0.0-beta.16",
|
||||
"resolved": "https://registry.npmjs.org/svelte-material-ui/-/svelte-material-ui-6.0.0-beta.16.tgz",
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"string.prototype.matchall": "^4.0.7",
|
||||
"svelte": "^3.49.0",
|
||||
"svelte-check": "^2.8.0",
|
||||
"svelte-icon": "^1.2.4",
|
||||
"svelte-material-ui": "^6.0.0-beta.16",
|
||||
"svelte-preprocess": "^4.10.7",
|
||||
"svelte-tiny-virtual-list": "^2.0.5",
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
<script type="ts">
|
||||
import Dialog, { Title, Content, Actions } from "@smui/dialog";
|
||||
import Button, { Label } from "@smui/button";
|
||||
import LinearProgress from "@smui/linear-progress";
|
||||
import { waitForChange } from "$lib/StoreHelpers";
|
||||
import { ControllerMethods } from "$lib/RegisterControllerMethods";
|
||||
import { Config } from "$lib/ConfigStore";
|
||||
@@ -14,6 +15,14 @@
|
||||
} from "$lib/ControllerState";
|
||||
import { numberWithUnit } from "$lib/RegexHelpers";
|
||||
import TextFieldWithOptions from "$components/TextFieldWithOptions.svelte";
|
||||
import Icon from "svelte-icon";
|
||||
import BitDiameter from "../svgs/probe-bit-diameter.svg?raw";
|
||||
import CheckXYZ from "../svgs/probe-check-xyz.svg?raw";
|
||||
import CheckZ from "../svgs/probe-check-z.svg?raw";
|
||||
import PlaceXYZ from "../svgs/probe-place-xyz.svg?raw";
|
||||
import PlaceZ from "../svgs/probe-place-z.svg?raw";
|
||||
import PutAwayXYZ from "../svgs/probe-put-away-xyz.svg?raw";
|
||||
import PutAwayZ from "../svgs/probe-put-away-z.svg?raw";
|
||||
|
||||
const ValidSteps = [
|
||||
"None",
|
||||
@@ -233,7 +242,7 @@
|
||||
G38.2 Z -2 F${slowSeek}
|
||||
G92 Z ${zOffset}
|
||||
|
||||
G91 G0 Z 3
|
||||
G91 G0 Z 25
|
||||
|
||||
M2
|
||||
`);
|
||||
@@ -301,10 +310,16 @@
|
||||
{/each}
|
||||
</ul>
|
||||
</div>
|
||||
<p>
|
||||
<p style="width: 100%">
|
||||
{#if currentStep === "CheckProbe"}
|
||||
Attach the probe magnet to the collet, then touch the probe
|
||||
block to the bit.
|
||||
|
||||
<Icon
|
||||
data={probeType === "xyz" ? CheckXYZ : CheckZ}
|
||||
size="300px"
|
||||
class="probe-icon-svg"
|
||||
/>
|
||||
{:else if currentStep === "BitDimensions"}
|
||||
<TextFieldWithOptions
|
||||
label="Cutter diameter"
|
||||
@@ -316,6 +331,8 @@
|
||||
valid={isFinite(cutterDiameterMetric)}
|
||||
helperText={`Examples: 1/2", 10 mm, 0.25 in`}
|
||||
/>
|
||||
|
||||
<Icon data={BitDiameter} size="150px" class="probe-icon-svg" />
|
||||
{:else if currentStep === "PlaceProbeBlock"}
|
||||
{#if probeType === "xyz"}
|
||||
Place the probe block face up, on the lower-left corner of
|
||||
@@ -325,12 +342,21 @@
|
||||
recess.
|
||||
{/if}
|
||||
|
||||
<Icon
|
||||
data={probeType === "xyz" ? PlaceXYZ : PlaceZ}
|
||||
width="304px"
|
||||
height="129px"
|
||||
class="probe-icon-svg"
|
||||
/>
|
||||
|
||||
<p>
|
||||
The probing procedure will begin as soon as you click
|
||||
'Next'.
|
||||
</p>
|
||||
{:else if currentStep === "Probe"}
|
||||
Probing in progress...
|
||||
|
||||
<LinearProgress indeterminate />
|
||||
{:else if currentStep === "Done"}
|
||||
{#if $probingFailed}
|
||||
Could not find the probe block during probing!
|
||||
@@ -344,6 +370,13 @@
|
||||
{:else}
|
||||
Don't forget to put away the probe!
|
||||
|
||||
<Icon
|
||||
data={probeType === "xyz" ? PutAwayXYZ : PutAwayZ}
|
||||
width="329px"
|
||||
height="256px"
|
||||
class="probe-icon-svg"
|
||||
/>
|
||||
|
||||
{#if probeType === "xyz"}
|
||||
<p>The machine will now move to the XY origin.</p>
|
||||
|
||||
@@ -381,72 +414,88 @@
|
||||
$light: #ddd;
|
||||
|
||||
:global {
|
||||
#probe-dialog-content {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.bit-dimensions {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.steps {
|
||||
margin-right: 50px;
|
||||
|
||||
ul {
|
||||
margin: 0 auto;
|
||||
list-style-type: none;
|
||||
counter-reset: steps;
|
||||
margin: 0;
|
||||
font-family: sans-serif;
|
||||
padding-inline-start: 20px;
|
||||
.probe-dialog {
|
||||
.mdc-linear-progress {
|
||||
height: 10px;
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
ul li {
|
||||
padding: 0 0 12px 30px;
|
||||
position: relative;
|
||||
margin: 0;
|
||||
white-space: nowrap;
|
||||
color: $text;
|
||||
.mdc-linear-progress__bar-inner {
|
||||
border-top-width: 10px;
|
||||
}
|
||||
|
||||
&:after {
|
||||
position: absolute;
|
||||
top: 3px;
|
||||
left: 0.5px;
|
||||
content: "";
|
||||
border: 2px solid $text;
|
||||
border-radius: 50%;
|
||||
display: inline-block;
|
||||
height: 11px;
|
||||
width: 11px;
|
||||
text-align: center;
|
||||
line-height: 12px;
|
||||
background: transparent;
|
||||
.probe-icon-svg {
|
||||
display: block;
|
||||
margin: 20px auto;
|
||||
}
|
||||
|
||||
#probe-dialog-content {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.bit-dimensions {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.steps {
|
||||
margin-right: 50px;
|
||||
|
||||
ul {
|
||||
margin: 0 auto;
|
||||
list-style-type: none;
|
||||
counter-reset: steps;
|
||||
margin: 0;
|
||||
font-family: sans-serif;
|
||||
padding-inline-start: 20px;
|
||||
}
|
||||
|
||||
&:before {
|
||||
position: absolute;
|
||||
left: 7px;
|
||||
top: 22px;
|
||||
bottom: 0;
|
||||
content: "";
|
||||
width: 0;
|
||||
border-left: 2px solid $text;
|
||||
}
|
||||
|
||||
&:last-of-type:before {
|
||||
border: none;
|
||||
}
|
||||
|
||||
&.active {
|
||||
color: $primary;
|
||||
font-weight: bold;
|
||||
ul li {
|
||||
padding: 0 0 12px 30px;
|
||||
position: relative;
|
||||
margin: 0;
|
||||
white-space: nowrap;
|
||||
color: $text;
|
||||
|
||||
&:after {
|
||||
border: 3px solid $primary;
|
||||
top: 2.5px;
|
||||
left: 0;
|
||||
position: absolute;
|
||||
top: 3px;
|
||||
left: 0.5px;
|
||||
content: "";
|
||||
border: 2px solid $text;
|
||||
border-radius: 50%;
|
||||
display: inline-block;
|
||||
height: 11px;
|
||||
width: 11px;
|
||||
text-align: center;
|
||||
line-height: 12px;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
&:before {
|
||||
position: absolute;
|
||||
left: 7px;
|
||||
top: 22px;
|
||||
bottom: 0;
|
||||
content: "";
|
||||
width: 0;
|
||||
border-left: 2px solid $text;
|
||||
}
|
||||
|
||||
&:last-of-type:before {
|
||||
border: none;
|
||||
}
|
||||
|
||||
&.active {
|
||||
color: $primary;
|
||||
font-weight: bold;
|
||||
|
||||
&:after {
|
||||
border: 3px solid $primary;
|
||||
top: 2.5px;
|
||||
left: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
75
src/svelte-components/src/svgs/probe-bit-diameter.svg
Normal file
@@ -0,0 +1,75 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100.88 191.47">
|
||||
<polygon
|
||||
points="21.64 186.89 12.57 189.89 3.5 186.89 3.5 88.81 1.5 85.76 1.5 1.5 23.64 1.5 23.64 85.76 21.64 88.81 21.64 186.89"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="3.5" y1="88.81" x2="21.64" y2="88.81"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="3.5" y1="185.56" x2="21.64" y2="177.06"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="3.5" y1="174.91" x2="21.64" y2="166.4"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="3.5" y1="164.21" x2="21.64" y2="155.71"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="3.5" y1="153.6" x2="21.64" y2="145.09"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="3.5" y1="142.9" x2="21.64" y2="134.4"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="3.5" y1="131.88" x2="21.64" y2="123.37"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="3.5" y1="121.18" x2="21.64" y2="112.68"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="3.5" y1="110.57" x2="21.64" y2="102.06"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="3.5" y1="99.87" x2="21.64" y2="91.37"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<g>
|
||||
<line x1="27.28" y1="1.5" x2="29.78" y2="1.5"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="31.28" y1="1.5" x2="38.5" y2="1.5"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-dasharray:0 0 0 0 2.49 1.5 2.49 1.5; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<polyline points="39.25 1.5 41.75 1.5 41.75 4"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="41.75" y1="6.64" x2="41.75" y2="19.39"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-dasharray:0 0 0 0 4.4 2.64 4.4 2.64; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="41.75" y1="20.71" x2="41.75" y2="82.72"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-dasharray:0 0 0 0 0 0 4.4 2.64 4.4 2.64 4.4 2.64; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<polyline points="41.75 84.04 41.75 86.54 39.25 86.54"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="37.76" y1="86.54" x2="30.53" y2="86.54"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-dasharray:0 0 0 0 2.49 1.5 2.49 1.5; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="29.78" y1="86.54" x2="27.28" y2="86.54"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
</g>
|
||||
<g>
|
||||
<line x1="27.28" y1="90.04" x2="29.78" y2="90.04"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="30.59" y1="90.04" x2="34.53" y2="90.04"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-dasharray:0 0 0 0 1.36 .81 1.36 .81; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<polyline points="34.94 90.04 37.44 90.04 37.44 92.54"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="37.44" y1="95.64" x2="37.44" y2="110.63"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-dasharray:0 0 0 0 5.17 3.1 5.17 3.1; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="37.44" y1="112.18" x2="37.44" y2="185.03"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-dasharray:0 0 0 0 0 0 5.17 3.1 5.17 3.1 5.17 3.1; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<polyline points="37.44 186.58 37.44 189.08 34.94 189.08"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="34.13" y1="189.08" x2="30.22" y2="189.08"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-dasharray:0 0 0 0 1.35 .81 1.35 .81; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="29.81" y1="189.08" x2="27.31" y2="189.08"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
</g>
|
||||
<line x1="41.75" y1="44.02" x2="56.79" y2="44.02"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="37.44" y1="138.65" x2="56.79" y2="138.65"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<circle cx="78.33" cy="44.02" r="21.54"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<circle cx="78.33" cy="138.65" r="21.54"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="68.56" y1="34.24" x2="88.11" y2="53.8"
|
||||
style="fill:none; stroke:#be1e2d; stroke-miterlimit:10; stroke-width:4px;" />
|
||||
<line x1="88.11" y1="34.24" x2="68.56" y2="53.8"
|
||||
style="fill:none; stroke:#be1e2d; stroke-miterlimit:10; stroke-width:4px;" />
|
||||
<polyline points="64.73 141.61 72.43 149.31 91.94 129.81"
|
||||
style="fill:none; stroke:#00a651; stroke-miterlimit:10; stroke-width:4px;" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.4 KiB |
243
src/svelte-components/src/svgs/probe-check-xyz.svg
Normal file
@@ -0,0 +1,243 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 307.88 290.65">
|
||||
<g>
|
||||
<polygon
|
||||
points="306.38 163.14 243.73 245.91 98.03 245.91 98.03 230.65 160.68 147.88 306.38 147.88 306.38 163.14"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<polyline points="306.38 147.88 243.73 230.65 98.03 230.65"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="243.73" y1="230.65" x2="243.73" y2="245.91"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<line x1="146.89" y1="186.96" x2="146.89" y2="190.46"
|
||||
style="fill:none; stroke:#37b34a; stroke-miterlimit:10; stroke-width:1.75px;" />
|
||||
<line x1="146.89" y1="191.76" x2="146.89" y2="202.85"
|
||||
style="fill:none; stroke:#37b34a; stroke-dasharray:0 0 0 0 4.56 1.3 4.56 1.3; stroke-miterlimit:10; stroke-width:1.75px;" />
|
||||
<line x1="146.89" y1="203.5" x2="146.89" y2="207"
|
||||
style="fill:none; stroke:#37b34a; stroke-miterlimit:10; stroke-width:1.75px;" />
|
||||
</g>
|
||||
<polyline points="142.67 191.08 146.89 185.87 150.95 190.95"
|
||||
style="fill:none; stroke:#37b34a; stroke-miterlimit:10; stroke-width:1.75px;" />
|
||||
</g>
|
||||
<g>
|
||||
<polygon points="150.06 174.24 132.23 197.79 90.77 197.79 90.77 186.45 108.6 162.89 150.06 162.89 150.06 174.24"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<polyline points="150.06 162.89 132.23 186.45 90.77 186.45"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="132.23" y1="186.45" x2="132.23" y2="197.79"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<ellipse cx="138.4" cy="167.46" rx="3.83" ry="1.56" style="fill:none; stroke:#231f20; stroke-miterlimit:10;" />
|
||||
<circle cx="110.61" cy="192.12" r="3.12" style="fill:none; stroke:#231f20; stroke-miterlimit:10;" />
|
||||
<g>
|
||||
<polygon points="123.91 172.78 120.77 169.36 118.81 171.98 121.94 175.4 123.91 172.78"
|
||||
style="fill:#29b473; opacity:.42;" />
|
||||
<polygon points="120.79 176.92 117.66 173.5 115.69 176.12 118.83 179.54 120.79 176.92"
|
||||
style="fill:#29b473; opacity:.42;" />
|
||||
<polygon points="117.09 181.85 117.68 181.06 114.55 177.65 111.39 181.85 114.47 181.55 117.09 181.85"
|
||||
style="fill:#29b473; opacity:.42;" />
|
||||
<polygon points="127.88 167.49 122.18 167.49 121.92 167.84 125.05 171.25 127.88 167.49"
|
||||
style="fill:#29b473; opacity:.42;" />
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path
|
||||
d="M1.25,178.73c8.14-4.37,16.49-8.51,25.42-10.9s16.85-8.86,25.66-6.05c3.11,.99,4.86,.29,7.84,1.63,7.16,3.22,14.5,6.16,22.19,7.73,.92,.19,1.85,.36,2.75,.64,.76,.24,1.49,.57,2.23,.85,3.03,1.13,6.35,1.46,9.56,1.07,1.51-.18,3.03-.52,4.52-.25s2.98,1.36,3.1,2.87c.15,1.87-1.69,3.22-3.31,4.16-5.19,3.04-10.67,6.16-16.68,6.31-1.06,.03-2.12-.04-3.16,.13-.96,.16-1.87,.52-2.8,.81-5.16,1.61-10.98,.91-15.62-1.86-.45-.27-.97-.56-1.45-.36-.27,.11-.46,.36-.64,.6-5.22,6.94-13.45,11.53-22.1,12.33"
|
||||
style="fill:#fff;" />
|
||||
<path
|
||||
d="M1.88,179.81c5.74-3.07,11.56-6.05,17.66-8.36,2.91-1.1,5.89-1.89,8.85-2.83,2.68-.84,5.25-1.98,7.82-3.08s5.22-2.2,7.99-2.8,5.43-.39,8.23,.37c2.52,.69,5.09,.51,7.53,1.56,2.93,1.27,5.84,2.56,8.82,3.7s6.08,2.19,9.2,3.02c1.49,.4,2.99,.73,4.5,1.04,1.66,.34,3.14,.9,4.73,1.47,2.8,1,5.85,1.37,8.81,1.13,1.5-.12,2.99-.5,4.5-.43,1.2,.05,3.18,.83,2.69,2.38-.36,1.13-1.67,1.85-2.62,2.42-1.33,.79-2.68,1.56-4.05,2.3-2.68,1.44-5.47,2.72-8.45,3.39s-6.08,.21-9.05,1.18-5.77,1.32-8.75,.89c-1.5-.22-3-.62-4.4-1.2s-2.85-1.93-4.35-1.72c-1.35,.19-2.09,1.71-2.9,2.64-.98,1.12-2.04,2.17-3.17,3.15-4.66,4.01-10.59,6.55-16.7,7.15-1.59,.16-1.6,2.66,0,2.5,5.78-.57,11.36-2.61,16.08-6.01,2.3-1.65,4.4-3.57,6.18-5.77,.18-.22,.7-1.1,.95-1.15,.34-.07,1.44,.81,1.81,.98,1.47,.71,3.01,1.26,4.61,1.6,2.93,.63,5.97,.65,8.91,.02,1.49-.32,2.91-1.01,4.41-1.23,1.65-.24,3.34-.05,5-.27,3.13-.41,6.08-1.52,8.91-2.88s5.65-2.73,7.99-4.62c2.05-1.66,3.05-4.46,1-6.58-2.35-2.43-5.65-1.48-8.6-1.24-3.43,.27-6.5-.44-9.69-1.64s-6.65-1.57-9.9-2.54-6.43-2.13-9.56-3.41c-1.61-.66-3.21-1.34-4.8-2.05-1.38-.61-2.73-1.24-4.23-1.49-1.3-.22-2.63-.22-3.92-.5-1.45-.31-2.83-.8-4.32-.97-2.8-.32-5.64,.17-8.31,1-3.25,1.01-6.32,2.49-9.46,3.78-3.37,1.38-6.89,2.22-10.33,3.39-7.25,2.48-14.12,5.94-20.86,9.55-1.42,.76-.16,2.92,1.26,2.16h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
<g>
|
||||
<path
|
||||
d="M90.74,193.11c-1.29,.17-2.57,.39-3.84,.65-.92,.19-1.85,.39-2.79,.36-.92-.04-1.82-.31-2.72-.51-4.42-.97-7.32-.5-11.78,.27"
|
||||
style="fill:#fff;" />
|
||||
<path
|
||||
d="M90.41,191.9c-1.83,.25-3.67,.77-5.5,.93s-3.78-.62-5.62-.86c-3.38-.43-6.69,.12-10.01,.69-1.58,.27-.91,2.68,.66,2.41,3.37-.58,6.73-1.08,10.14-.47,1.83,.33,3.52,.91,5.4,.66s3.72-.7,5.6-.96c1.59-.22,.91-2.63-.66-2.41h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
<g>
|
||||
<path
|
||||
d="M69.76,187.81c-1.62,2.32-1,5.49-1.75,8.21-.39,1.43-1.18,2.75-1.38,4.22-.21,1.55,.25,3.1,.55,4.63,.07,.36,.13,.74,0,1.09-.11,.31-.36,.55-.59,.8-1.37,1.46-2.16,3.44-2.16,5.44"
|
||||
style="fill:#fff;" />
|
||||
<path
|
||||
d="M68.68,187.18c-1.16,1.8-1.31,3.87-1.49,5.95-.09,1.07-.22,2.11-.57,3.14-.37,1.08-.89,2.12-1.12,3.24s-.17,2.25,.01,3.38c.1,.62,.27,1.23,.37,1.85,.12,.73,.02,.88-.44,1.43-1.45,1.71-2.2,3.8-2.26,6.03-.04,1.61,2.46,1.61,2.5,0,.03-1.13,.28-2.2,.82-3.2,.48-.88,1.34-1.51,1.76-2.41,.38-.82,.19-1.66,.03-2.51-.26-1.28-.63-2.59-.39-3.9,.36-1.96,1.39-3.66,1.65-5.68s.12-4.25,1.28-6.06c.88-1.36-1.29-2.61-2.16-1.26h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
<g>
|
||||
<path
|
||||
d="M67.04,206.15c1.3-.46,2.66-.76,4.03-.87,.35-.03,.69-.05,1.03-.11,.48-.09,.93-.27,1.39-.44,3.91-1.5,8.12-2.77,12.23-2.02"
|
||||
style="fill:#fff;" />
|
||||
<path
|
||||
d="M67.37,207.35c1.57-.54,3.1-.69,4.72-.93,1.39-.21,2.71-.89,4.04-1.33,2.97-.99,6.13-1.71,9.26-1.18,1.57,.27,2.25-2.14,.66-2.41-3.36-.57-6.69-.06-9.92,.96-1.44,.46-2.88,1.23-4.37,1.5-1.73,.31-3.37,.4-5.07,.98-1.51,.52-.86,2.94,.66,2.41h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
<g>
|
||||
<path
|
||||
d="M58.89,226.43c-2.05-4.85,.54-11.14,5.42-13.14,2.12-.87,4.51-.99,6.57-2,2.05-1,3.61-2.78,5.6-3.89,2.67-1.49,5.93-1.66,8.55-3.22,1.82-1.08,3.21-2.76,4.88-4.07,2.03-1.59,4.44-2.59,6.82-3.58,1.75-.73,3.72-1.46,5.49-.79,2.12,.8,3.09,3.41,2.7,5.64s-1.83,4.12-3.34,5.8c-7.7,8.57-18.19,14.03-28.44,19.3-2.72,1.4-5.45,2.8-8.28,3.96-2.26,.92-4.6,1.69-6.7,2.94-1.64,.98-3.1,2.23-4.66,3.35-5.43,3.91-11.97,6.11-18.6,6.96-6.63,.86-13.38,.43-19.99-.57"
|
||||
style="fill:#fff;" />
|
||||
<path
|
||||
d="M60.1,226.09c-1.55-3.87-.15-8.67,3.4-10.97,2.14-1.39,4.8-1.45,7.13-2.37s4.01-2.79,6.14-4.07c2.27-1.37,4.99-1.67,7.41-2.69s4.22-3.03,6.29-4.72,4.72-2.79,7.21-3.78c2.31-.91,5.06-1.29,5.9,1.63,.7,2.44-.84,4.79-2.36,6.57-1.71,2.01-3.64,3.85-5.65,5.56-4.04,3.43-8.55,6.28-13.16,8.88s-9.7,5.28-14.66,7.65c-2.68,1.28-5.5,2.22-8.2,3.46-2.54,1.16-4.6,2.92-6.86,4.52-10.84,7.7-24.78,8.03-37.46,6.14-1.57-.23-2.25,2.17-.66,2.41,12.35,1.84,25.58,1.74,36.69-4.67,2.65-1.53,4.89-3.64,7.52-5.2,2.79-1.66,5.97-2.56,8.92-3.9,5.5-2.5,10.9-5.39,16.16-8.37s9.92-6.02,14.27-9.85c3.62-3.19,8.96-7.83,8-13.24-.39-2.22-1.92-4.25-4.2-4.73-2.8-.6-5.73,.98-8.21,2.11-2.8,1.27-4.98,2.98-7.24,5.02-1.1,.99-2.27,1.84-3.66,2.37s-2.94,.87-4.39,1.36-2.72,1.1-3.93,1.98c-1.3,.94-2.48,2.07-3.9,2.83-2.74,1.46-6.03,1.3-8.65,3.12-4.22,2.94-6.21,8.78-4.27,13.61,.59,1.47,3.01,.83,2.41-.66h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
<g>
|
||||
<path
|
||||
d="M110.32,191.95c2.31,.23,4.18,2.27,4.64,4.55s-.3,4.67-1.62,6.57c-1.32,1.91-3.14,3.4-5.01,4.77-6.3,4.62-13.39,8.15-20.87,10.4"
|
||||
style="fill:#fff;" />
|
||||
<path
|
||||
d="M109.98,193.15c3.4,.48,4.45,4.11,3.45,7.02-1.14,3.32-4.23,5.56-6.99,7.49-5.91,4.13-12.43,7.28-19.32,9.38-1.53,.47-.88,2.88,.66,2.41,8.11-2.47,15.89-6.34,22.57-11.59,3.04-2.38,5.73-5.52,5.97-9.55,.21-3.46-2.09-7.07-5.68-7.57-1.57-.22-2.25,2.19-.66,2.41h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
<g>
|
||||
<path d="M85.05,190.29l-.83,3.58" style="fill:#fff;" />
|
||||
<path
|
||||
d="M83.84,189.96l-.83,3.58c-.15,.64,.2,1.38,.87,1.54,.64,.15,1.38-.19,1.54-.87l.83-3.58c.15-.64-.2-1.38-.87-1.54-.64-.15-1.38,.19-1.54,.87h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
<g>
|
||||
<path d="M84.5,198.52c-.06,.99-.02,1.98,.13,2.96" style="fill:#fff;" />
|
||||
<path
|
||||
d="M83.25,198.52c-.07,1.1,0,2.2,.17,3.29,.04,.29,.33,.61,.57,.75,.27,.16,.66,.22,.96,.13s.59-.29,.75-.57l.13-.3c.06-.22,.06-.44,0-.66-.01-.08-.02-.15-.03-.23l.04,.33c-.12-.9-.15-1.82-.1-2.73,.02-.31-.15-.67-.37-.88s-.57-.38-.88-.37-.66,.12-.88,.37-.34,.54-.37,.88h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
<g>
|
||||
<path d="M72.52,210.78c-.46,1.52-.91,3.05-1.05,4.64s.08,3.24,.9,4.6" style="fill:#fff;" />
|
||||
<path
|
||||
d="M71.31,210.44c-.99,3.32-1.88,7-.02,10.2,.81,1.39,2.97,.13,2.16-1.26-1.47-2.53-.52-5.62,.28-8.27,.19-.65-.23-1.36-.87-1.54s-1.34,.22-1.54,.87h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
<g>
|
||||
<path d="M84.74,205.93c-.61,1.54-.48,3.36,.34,4.8" style="fill:#fff;" />
|
||||
<path
|
||||
d="M83.54,205.6c-.71,1.86-.5,4.03,.46,5.76,.32,.57,1.15,.81,1.71,.45s.79-1.1,.45-1.71c-.05-.09-.1-.18-.15-.28-.02-.05-.05-.09-.07-.14-.05-.12-.04-.1,.03,.08,.01-.04-.08-.21-.1-.26-.03-.09-.06-.17-.08-.26-.06-.2-.11-.41-.14-.61v-.08c-.03-.14-.03-.1,0,.1,.02-.09-.02-.22-.03-.31-.01-.18-.01-.37,0-.55,0-.11,0-.21,.02-.31,0-.05,0-.1,.02-.16-.03,.2-.03,.23-.01,.1,.07-.39,.17-.77,.31-1.14,.23-.61-.26-1.4-.87-1.54-.71-.16-1.29,.22-1.54,.87h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
<g>
|
||||
<path d="M52.32,198.92c-4.57,5.84-6,13.57-6.04,20.99-.02,2.89,.15,5.85-.65,8.63" style="fill:#fff;" />
|
||||
<path
|
||||
d="M51.25,198.29c-3.09,4.01-4.82,8.88-5.6,13.85-.38,2.44-.58,4.9-.61,7.36-.04,2.92,.16,5.85-.61,8.71-.42,1.56,1.99,2.22,2.41,.66,.71-2.63,.7-5.34,.69-8.04,0-2.54,.09-5.09,.46-7.61,.72-4.93,2.35-9.68,5.41-13.66,.98-1.27-1.19-2.52-2.16-1.26h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
<g>
|
||||
<path d="M43.94,197.7c-.58,3.78-3.36,6.94-6.64,8.9s-7.05,2.93-10.75,3.87" style="fill:#fff;" />
|
||||
<path
|
||||
d="M42.73,197.37c-1.3,7.8-9.97,10.24-16.52,11.9-1.56,.39-.9,2.81,.66,2.41,4.15-1.05,8.48-2.15,12.04-4.64,3.06-2.14,5.59-5.25,6.22-9.01,.26-1.57-2.15-2.25-2.41-.66h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
<g>
|
||||
<path
|
||||
d="M91.16,173.72c.9,.4,1.5,1.25,2.27,1.85,1.63,1.28,3.91,1.36,5.95,.98,.45-.08,.91-.19,1.3-.43s.71-.64,.75-1.1c.06-.7-.53-1.28-1.06-1.74"
|
||||
style="fill:#fff;" />
|
||||
<path
|
||||
d="M90.53,174.79c.58,.28,.96,.69,1.44,1.14s1.03,.91,1.63,1.22c1.28,.66,2.75,.9,4.19,.83s3.25-.23,4.25-1.39c.56-.65,.78-1.51,.56-2.34-.2-.75-.77-1.36-1.34-1.86-.51-.44-1.27-.5-1.77,0-.45,.45-.51,1.32,0,1.77,.19,.17,.4,.34,.56,.54,0,0,.17,.36,.14,.17,0-.03,.04-.03,.05-.05-.06,.15-.05,.1-.12,.17-.11,.1-.29,.17-.46,.21-.96,.28-1.98,.34-2.99,.26-.84-.07-1.76-.34-2.47-.89-.81-.63-1.44-1.49-2.4-1.95-.61-.29-1.35-.17-1.71,.45-.32,.55-.16,1.42,.45,1.71h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path
|
||||
d="M1.25,178.57c8.14-4.37,16.49-8.51,25.42-10.9,8.93-2.39,16.85-8.86,25.66-6.05,3.11,.99,4.86,.29,7.84,1.63,7.16,3.22,14.5,6.16,22.19,7.73,.92,.19,1.85,.36,2.75,.64,.76,.24,1.49,.57,2.23,.85,3.03,1.13,6.35,1.46,9.56,1.07,1.51-.18,3.03-.52,4.52-.25s2.98,1.36,3.1,2.87c.15,1.87-1.69,3.22-3.31,4.16-5.19,3.04-10.67,6.16-16.68,6.31-1.06,.03-2.12-.04-3.16,.13-.96,.16-1.87,.52-2.8,.81-5.16,1.61-10.98,.91-15.62-1.86-.45-.27-.97-.56-1.45-.36-.27,.11-.46,.36-.64,.6"
|
||||
style="fill:#fff;" />
|
||||
<path
|
||||
d="M1.88,179.65c4.86-2.6,9.78-5.14,14.87-7.25,2.49-1.03,5.01-1.96,7.58-2.76,2.41-.74,4.83-1.37,7.18-2.29,4.42-1.74,8.72-4.06,13.44-4.92,2.29-.42,4.6-.32,6.84,.33s4.33,.55,6.45,1.12c2.51,.67,4.91,2.06,7.31,3.05s5.01,1.99,7.57,2.84,5.29,1.63,7.99,2.22c1.22,.27,2.46,.45,3.65,.83,1.32,.42,2.57,1.02,3.92,1.38,2.52,.68,5.18,.89,7.77,.63,1.78-.18,5.97-1.37,6.75,1.15,.63,2.02-3.24,3.63-4.54,4.37-2.34,1.34-4.72,2.63-7.25,3.57-2.8,1.04-5.51,1.41-8.47,1.47-2.79,.06-5.28,1.39-8.03,1.68s-5.61-.04-8.26-.98c-2.04-.72-4.85-3.38-6.68-1.03-.98,1.25,.78,3.03,1.77,1.77,.36-.46,.86,.14,1.3,.37,.49,.26,.99,.5,1.5,.72,1.24,.54,2.53,.97,3.85,1.26,2.53,.55,5.13,.63,7.68,.24,1.24-.19,2.43-.52,3.63-.9,1.41-.46,2.68-.62,4.16-.63,2.68-.02,5.3-.5,7.82-1.4s5.08-2.18,7.48-3.54c2-1.13,4.41-2.21,5.78-4.13,1.29-1.8,.98-4.13-.71-5.56-2.12-1.78-4.81-1.28-7.34-.97-2.82,.34-5.69,.13-8.4-.74-1.34-.43-2.61-1.04-3.97-1.39s-2.89-.6-4.32-.94c-5.66-1.37-11.12-3.43-16.46-5.74-2.36-1.02-4.53-2.1-7.12-2.39-1.12-.12-2.24-.2-3.33-.49-1.24-.33-2.43-.68-3.71-.82-4.99-.56-9.77,1.38-14.26,3.29-2.63,1.12-5.26,2.29-8,3.12-3.06,.92-6.11,1.8-9.1,2.95-6.07,2.35-11.88,5.29-17.61,8.36-1.42,.76-.16,2.92,1.26,2.16h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
<path d="M69.76,189.67c1.61,0,1.61-2.5,0-2.5s-1.61,2.5,0,2.5h0Z" style="fill:#231f20;" />
|
||||
<g>
|
||||
<path
|
||||
d="M91.16,173.56c.9,.4,1.5,1.25,2.27,1.85,1.63,1.28,3.91,1.36,5.95,.98,.45-.08,.91-.19,1.3-.43s.71-.64,.75-1.1c.06-.7-.53-1.28-1.06-1.74"
|
||||
style="fill:#fff;" />
|
||||
<path
|
||||
d="M90.53,174.64c.58,.28,.96,.69,1.44,1.14s1.03,.91,1.63,1.22c1.28,.66,2.75,.9,4.19,.83s3.25-.23,4.25-1.39c.56-.65,.78-1.51,.56-2.34-.2-.75-.77-1.36-1.34-1.86-.51-.44-1.27-.5-1.77,0-.45,.45-.51,1.32,0,1.77,.19,.17,.4,.34,.56,.54,0,0,.17,.36,.14,.17,0-.03,.04-.03,.05-.05-.06,.15-.05,.1-.12,.17-.11,.1-.29,.17-.46,.21-.96,.28-1.98,.34-2.99,.26-.84-.07-1.76-.34-2.47-.89-.81-.63-1.44-1.49-2.4-1.95-.61-.29-1.35-.17-1.71,.45-.32,.55-.16,1.42,.45,1.71h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path
|
||||
d="M107.25,200.34c-.57,.69-1.44,1.13-2.4,1.13-1.72,0-3.12-1.4-3.12-3.12,0-.71,.24-1.36,.63-1.88l5.79-6.56c.56-.56,1.34-.91,2.2-.91,1.72,0,3.12,1.4,3.12,3.12,0,.91-.39,1.72-1,2.29l-5.22,5.93Z"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10;" />
|
||||
<path
|
||||
d="M107.97,198.36c0,.75-.27,1.45-.71,1.99-.57,.69-1.44,1.13-2.4,1.13-1.72,0-3.12-1.4-3.12-3.12,0-.71,.24-1.36,.63-1.88,.57-.75,1.47-1.23,2.48-1.23,1.72,0,3.12,1.4,3.12,3.12Z"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10;" />
|
||||
</g>
|
||||
<g>
|
||||
<polygon
|
||||
points="142.87 164.83 137.76 166.52 132.66 164.83 132.66 109.62 131.53 107.91 131.53 60.47 144 60.47 144 107.91 142.87 109.62 142.87 164.83"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="132.66" y1="109.62" x2="142.87" y2="109.62"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="132.66" y1="164.09" x2="142.87" y2="159.3"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="132.66" y1="158.09" x2="142.87" y2="153.3"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="132.66" y1="152.07" x2="142.87" y2="147.28"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="132.66" y1="146.09" x2="142.87" y2="141.31"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="132.66" y1="140.07" x2="142.87" y2="135.28"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="132.66" y1="133.87" x2="142.87" y2="129.08"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="132.66" y1="127.85" x2="142.87" y2="123.06"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="132.66" y1="121.87" x2="142.87" y2="117.08"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="132.66" y1="115.85" x2="142.87" y2="111.06"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
</g>
|
||||
<path d="M169.68,0V57.54c0,2.23-1.82,4.05-4.05,4.05h-56.36c-2.23,0-4.05-1.82-4.05-4.05V0"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<rect x="125.74" y="61.6" width="24.04" height="24.04"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<rect x="122.08" y="85.64" width="31.37" height="19.04"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="134.29" y1="85.64" x2="134.29" y2="104.68"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="148.31" y1="85.64" x2="148.31" y2="104.68"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<ellipse cx="128.14" cy="95.16" rx="2.39" ry="4.57"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<path
|
||||
d="M113.51,99.73c-1.32,0-2.39-2.05-2.39-4.57s1.07-4.57,2.39-4.57h14.44c1.32,0,2.39,2.05,2.39,4.57s-1.07,4.57-2.39,4.57h-14.44Z"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<ellipse cx="113.51" cy="95.16" rx="2.39" ry="4.57"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<g>
|
||||
<g>
|
||||
<line x1="127.88" y1="202.38" x2="127.88" y2="205.88"
|
||||
style="fill:none; stroke:#37b34a; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="127.88" y1="207.38" x2="127.88" y2="220.16"
|
||||
style="fill:none; stroke:#37b34a; stroke-dasharray:0 0 0 0 5.26 1.5 5.26 1.5; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="127.88" y1="220.92" x2="127.88" y2="224.42"
|
||||
style="fill:none; stroke:#37b34a; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
</g>
|
||||
<polyline points="122.99 207.33 127.88 201.28 132.72 207.33"
|
||||
style="fill:none; stroke:#37b34a; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<line x1="95.86" y1="94.9" x2="92.36" y2="94.9"
|
||||
style="fill:none; stroke:#37b34a; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="90.8" y1="94.9" x2="77.59" y2="94.9"
|
||||
style="fill:none; stroke:#37b34a; stroke-dasharray:0 0 0 0 5.44 1.55 5.44 1.55; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="76.81" y1="94.9" x2="56.6" y2="94.9"
|
||||
style="fill:none; stroke:#37b34a; stroke-dasharray:0 0 0 0 0 0 5.44 1.55 5.44 1.55 5.44 1.55; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="55.82" y1="94.9" x2="52.32" y2="94.9"
|
||||
style="fill:none; stroke:#37b34a; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
</g>
|
||||
<polyline points="90.9 90 96.95 94.9 90.9 99.73"
|
||||
style="fill:none; stroke:#37b34a; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
</g>
|
||||
<path
|
||||
d="M111.84,93.61c-5.44,.15-10.02,3.72-13.85,7.24-2.01,1.85-3.9,3.81-5.83,5.74s-4.16,3.88-6.06,6.02c-4.2,4.74-7.49,10.2-10.3,15.85-2.66,5.36-5.36,10.73-7.5,16.33-2.35,6.16-3.71,12.57-4.38,19.12-.1,1.01,.94,1.88,1.88,1.88,1.1,0,1.77-.86,1.88-1.88,.57-5.54,1.71-10.99,3.56-16.25s4.22-10.04,6.62-14.91c2.64-5.36,5.4-10.68,9.12-15.38,3.31-4.18,7.41-7.76,11.19-11.51s8.22-8.36,13.67-8.51c2.41-.07,2.42-3.82,0-3.75h0Z"
|
||||
style="fill:#231f20;" />
|
||||
<path
|
||||
d="M59.12,233.43c2.05,17.35-4.54,34.73-17.73,46.21-3.46,3.02-7.33,5.53-11.45,7.56-2.17,1.06-.27,4.3,1.89,3.24,16.06-7.89,27.69-23.39,30.62-41.06,.88-5.28,1.04-10.63,.41-15.94-.12-1.01-.78-1.88-1.88-1.88-.92,0-1.99,.86-1.88,1.88h0Z"
|
||||
style="fill:#231f20;" />
|
||||
<path
|
||||
d="M103.49,197.11c-7.6,6.84-13.89,15.16-18.3,24.39-2.34,4.9-4.19,10.04-7.16,14.61s-6.89,8.75-10.54,12.93c-4.48,5.13-8.96,10.26-13.44,15.38-1.58,1.81,1.06,4.47,2.65,2.65,3.93-4.5,7.87-9.01,11.8-13.51,3.72-4.25,7.58-8.42,10.96-12.96s5.44-9.33,7.66-14.32c2.1-4.74,4.55-9.28,7.51-13.54,3.31-4.76,7.2-9.1,11.52-12.98,1.8-1.62-.86-4.26-2.65-2.65h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 21 KiB |
275
src/svelte-components/src/svgs/probe-check-z.svg
Normal file
@@ -0,0 +1,275 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 307.88 288.65">
|
||||
<g>
|
||||
<polygon
|
||||
points="306.38 161.14 243.73 243.91 98.03 243.91 98.03 228.65 160.68 145.88 306.38 145.88 306.38 161.14"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<polyline points="306.38 145.88 243.73 228.65 98.03 228.65"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="243.73" y1="228.65" x2="243.73" y2="243.91"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<line x1="146.89" y1="184.96" x2="146.89" y2="188.46"
|
||||
style="fill:none; stroke:#39b54a; stroke-miterlimit:10; stroke-width:1.75px;" />
|
||||
<line x1="146.89" y1="189.76" x2="146.89" y2="200.85"
|
||||
style="fill:none; stroke:#39b54a; stroke-dasharray:0 0 0 0 4.56 1.3 4.56 1.3; stroke-miterlimit:10; stroke-width:1.75px;" />
|
||||
<line x1="146.89" y1="201.5" x2="146.89" y2="205"
|
||||
style="fill:none; stroke:#39b54a; stroke-miterlimit:10; stroke-width:1.75px;" />
|
||||
</g>
|
||||
<polyline points="142.67 189.08 146.89 183.87 150.95 188.95"
|
||||
style="fill:none; stroke:#39b54a; stroke-miterlimit:10; stroke-width:1.75px;" />
|
||||
</g>
|
||||
<g>
|
||||
<polygon
|
||||
points="150.06 172.24 132.23 195.79 90.77 195.79 90.77 184.45 108.6 160.89 118.18 160.89 118.19 163.9 150.06 163.9 150.06 172.24"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<polyline points="149.25 164.78 137.31 180.56 137.3 178.27 136.9 178.28 132.23 184.45 90.77 184.45"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="132.23" y1="184.45" x2="132.23" y2="195.79"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<ellipse cx="138.4" cy="165.46" rx="3.83" ry="1.56" style="fill:none; stroke:#231f20; stroke-miterlimit:10;" />
|
||||
<circle cx="110.61" cy="190.12" r="3.12" style="fill:none; stroke:#231f20; stroke-miterlimit:10;" />
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<polygon
|
||||
points="149.65 164.78 149.65 172.23 131.83 195.79 131.83 184.45 136.5 178.28 136.9 178.27 136.91 180.56 148.85 164.78 149.65 164.78"
|
||||
style="fill:#fff;" />
|
||||
<polygon
|
||||
points="117.79 163.9 149.65 163.9 149.65 164.78 148.85 164.78 136.91 180.56 136.9 178.27 136.5 178.28 136.3 177.75 107.89 177.75 107.89 177.3 117.79 163.9"
|
||||
style="fill:#8dc63f;" />
|
||||
<polygon
|
||||
points="136.3 177.75 136.5 178.28 131.83 184.45 110.21 184.45 90.37 184.45 108.19 160.89 116.92 160.89 104.6 177.75 107.89 177.75 136.3 177.75"
|
||||
style="fill:#ed1c24;" />
|
||||
<path d="M131.83,184.45v11.34h-21.62v-2.55c1.72,0,3.12-1.4,3.12-3.12s-1.4-3.12-3.12-3.12v-2.55h21.62Z"
|
||||
style="fill:#fff;" />
|
||||
<circle cx="110.21" cy="190.12" r="3.12" style="fill:#fff;" />
|
||||
<path d="M110.21,193.24v2.55h-19.84v-11.34h19.84v2.55c-1.72,0-3.12,1.39-3.12,3.12s1.4,3.12,3.12,3.12Z"
|
||||
style="fill:#fff;" />
|
||||
<polygon
|
||||
points="104.6 177.75 116.92 160.89 117.77 160.89 117.79 163.9 107.89 177.3 107.89 177.75 104.6 177.75"
|
||||
style="fill:#fff;" />
|
||||
</g>
|
||||
<g>
|
||||
<polygon
|
||||
points="149.65 164.78 149.65 172.23 131.83 195.79 110.21 195.79 90.37 195.79 90.37 184.45 108.19 160.89 116.92 160.89 117.77 160.89 117.79 163.9 149.65 163.9 149.65 164.78"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<polyline
|
||||
points="148.85 164.78 136.91 180.56 136.9 178.27 136.5 178.28 131.83 184.45 110.21 184.45 90.37 184.45"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="131.83" y1="184.45" x2="131.83" y2="195.79"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<circle cx="110.21" cy="190.12" r="3.12" style="fill:none; stroke:#231f20; stroke-miterlimit:10;" />
|
||||
<polyline points="116.92 160.89 104.6 177.75 107.89 177.75 136.3 177.75"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="117.79" y1="163.9" x2="107.89" y2="177.3"
|
||||
style="fill:none; stroke:#231f20; stroke-linecap:round; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path
|
||||
d="M1.25,176.73c8.14-4.37,16.49-8.51,25.42-10.9,8.93-2.39,16.85-8.86,25.66-6.05,3.11,.99,4.86,.29,7.84,1.63,7.16,3.22,14.5,6.16,22.19,7.73,.92,.19,1.85,.36,2.75,.64,.76,.24,1.49,.57,2.23,.85,3.03,1.13,6.35,1.46,9.56,1.07,1.51-.18,3.03-.52,4.52-.25s2.98,1.36,3.1,2.87c.15,1.87-1.69,3.22-3.31,4.16-5.19,3.04-10.67,6.16-16.68,6.31-1.06,.03-2.12-.04-3.16,.13-.96,.16-1.87,.52-2.8,.81-5.16,1.61-10.98,.91-15.62-1.86-.45-.27-.97-.56-1.45-.36-.27,.11-.46,.36-.64,.6-5.22,6.94-13.45,11.53-22.1,12.33"
|
||||
style="fill:#fff;" />
|
||||
<path
|
||||
d="M1.88,177.81c5.74-3.07,11.56-6.05,17.66-8.36,2.91-1.1,5.89-1.89,8.85-2.83,2.68-.84,5.25-1.98,7.82-3.08s5.22-2.2,7.99-2.8,5.43-.39,8.23,.37c2.52,.69,5.09,.51,7.53,1.56,2.93,1.27,5.84,2.56,8.82,3.7s6.08,2.19,9.2,3.02c1.49,.4,2.99,.73,4.5,1.04,1.66,.34,3.14,.9,4.73,1.47,2.8,1,5.85,1.37,8.81,1.13,1.5-.12,2.99-.5,4.5-.43,1.2,.05,3.18,.83,2.69,2.38-.36,1.13-1.67,1.85-2.62,2.42-1.33,.79-2.68,1.56-4.05,2.3-2.68,1.44-5.47,2.72-8.45,3.39s-6.08,.21-9.05,1.18-5.77,1.32-8.75,.89c-1.5-.22-3-.62-4.4-1.2s-2.85-1.93-4.35-1.72c-1.35,.19-2.09,1.71-2.9,2.64-.98,1.12-2.04,2.17-3.17,3.15-4.66,4.01-10.59,6.55-16.7,7.15-1.59,.16-1.6,2.66,0,2.5,5.78-.57,11.36-2.61,16.08-6.01,2.3-1.65,4.4-3.57,6.18-5.77,.18-.22,.7-1.1,.95-1.15,.34-.07,1.44,.81,1.81,.98,1.47,.71,3.01,1.26,4.61,1.6,2.93,.63,5.97,.65,8.91,.02,1.49-.32,2.91-1.01,4.41-1.23,1.65-.24,3.34-.05,5-.27,3.13-.41,6.08-1.52,8.91-2.88s5.65-2.73,7.99-4.62c2.05-1.66,3.05-4.46,1-6.58-2.35-2.43-5.65-1.48-8.6-1.24-3.43,.27-6.5-.44-9.69-1.64s-6.65-1.57-9.9-2.54-6.43-2.13-9.56-3.41c-1.61-.66-3.21-1.34-4.8-2.05-1.38-.61-2.73-1.24-4.23-1.49-1.3-.22-2.63-.22-3.92-.5-1.45-.31-2.83-.8-4.32-.97-2.8-.32-5.64,.17-8.31,1-3.25,1.01-6.32,2.49-9.46,3.78-3.37,1.38-6.89,2.22-10.33,3.39-7.25,2.48-14.12,5.94-20.86,9.55-1.42,.76-.16,2.92,1.26,2.16h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
<g>
|
||||
<path
|
||||
d="M90.74,191.11c-1.29,.17-2.57,.39-3.84,.65-.92,.19-1.85,.39-2.79,.36-.92-.04-1.82-.31-2.72-.51-4.42-.97-7.32-.5-11.78,.27"
|
||||
style="fill:#fff;" />
|
||||
<path
|
||||
d="M90.41,189.9c-1.83,.25-3.67,.77-5.5,.93s-3.78-.62-5.62-.86c-3.38-.43-6.69,.12-10.01,.69-1.58,.27-.91,2.68,.66,2.41,3.37-.58,6.73-1.08,10.14-.47,1.83,.33,3.52,.91,5.4,.66s3.72-.7,5.6-.96c1.59-.22,.91-2.63-.66-2.41h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
<g>
|
||||
<path
|
||||
d="M69.76,185.81c-1.62,2.32-1,5.49-1.75,8.21-.39,1.43-1.18,2.75-1.38,4.22-.21,1.55,.25,3.1,.55,4.63,.07,.36,.13,.74,0,1.09-.11,.31-.36,.55-.59,.8-1.37,1.46-2.16,3.44-2.16,5.44"
|
||||
style="fill:#fff;" />
|
||||
<path
|
||||
d="M68.68,185.18c-1.16,1.8-1.31,3.87-1.49,5.95-.09,1.07-.22,2.11-.57,3.14-.37,1.08-.89,2.12-1.12,3.24s-.17,2.25,.01,3.38c.1,.62,.27,1.23,.37,1.85,.12,.73,.02,.88-.44,1.43-1.45,1.71-2.2,3.8-2.26,6.03-.04,1.61,2.46,1.61,2.5,0,.03-1.13,.28-2.2,.82-3.2,.48-.88,1.34-1.51,1.76-2.41,.38-.82,.19-1.66,.03-2.51-.26-1.28-.63-2.59-.39-3.9,.36-1.96,1.39-3.66,1.65-5.68s.12-4.25,1.28-6.06c.88-1.36-1.29-2.61-2.16-1.26h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
<g>
|
||||
<path
|
||||
d="M67.04,204.15c1.3-.46,2.66-.76,4.03-.87,.35-.03,.69-.05,1.03-.11,.48-.09,.93-.27,1.39-.44,3.91-1.5,8.12-2.77,12.23-2.02"
|
||||
style="fill:#fff;" />
|
||||
<path
|
||||
d="M67.37,205.35c1.57-.54,3.1-.69,4.72-.93,1.39-.21,2.71-.89,4.04-1.33,2.97-.99,6.13-1.71,9.26-1.18,1.57,.27,2.25-2.14,.66-2.41-3.36-.57-6.69-.06-9.92,.96-1.44,.46-2.88,1.23-4.37,1.5-1.73,.31-3.37,.4-5.07,.98-1.51,.52-.86,2.94,.66,2.41h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
<g>
|
||||
<path
|
||||
d="M58.89,224.43c-2.05-4.85,.54-11.14,5.42-13.14,2.12-.87,4.51-.99,6.57-2,2.05-1,3.61-2.78,5.6-3.89,2.67-1.49,5.93-1.66,8.55-3.22,1.82-1.08,3.21-2.76,4.88-4.07,2.03-1.59,4.44-2.59,6.82-3.58,1.75-.73,3.72-1.46,5.49-.79,2.12,.8,3.09,3.41,2.7,5.64s-1.83,4.12-3.34,5.8c-7.7,8.57-18.19,14.03-28.44,19.3-2.72,1.4-5.45,2.8-8.28,3.96-2.26,.92-4.6,1.69-6.7,2.94-1.64,.98-3.1,2.23-4.66,3.35-5.43,3.91-11.97,6.11-18.6,6.96-6.63,.86-13.38,.43-19.99-.57"
|
||||
style="fill:#fff;" />
|
||||
<path
|
||||
d="M60.1,224.09c-1.55-3.87-.15-8.67,3.4-10.97,2.14-1.39,4.8-1.45,7.13-2.37s4.01-2.79,6.14-4.07c2.27-1.37,4.99-1.67,7.41-2.69s4.22-3.03,6.29-4.72,4.72-2.79,7.21-3.78c2.31-.91,5.06-1.29,5.9,1.63,.7,2.44-.84,4.79-2.36,6.57-1.71,2.01-3.64,3.85-5.65,5.56-4.04,3.43-8.55,6.28-13.16,8.88s-9.7,5.28-14.66,7.65c-2.68,1.28-5.5,2.22-8.2,3.46-2.54,1.16-4.6,2.92-6.86,4.52-10.84,7.7-24.78,8.03-37.46,6.14-1.57-.23-2.25,2.17-.66,2.41,12.35,1.84,25.58,1.74,36.69-4.67,2.65-1.53,4.89-3.64,7.52-5.2,2.79-1.66,5.97-2.56,8.92-3.9,5.5-2.5,10.9-5.39,16.16-8.37s9.92-6.02,14.27-9.85c3.62-3.19,8.96-7.83,8-13.24-.39-2.22-1.92-4.25-4.2-4.73-2.8-.6-5.73,.98-8.21,2.11-2.8,1.27-4.98,2.98-7.24,5.02-1.1,.99-2.27,1.84-3.66,2.37s-2.94,.87-4.39,1.36-2.72,1.1-3.93,1.98c-1.3,.94-2.48,2.07-3.9,2.83-2.74,1.46-6.03,1.3-8.65,3.12-4.22,2.94-6.21,8.78-4.27,13.61,.59,1.47,3.01,.83,2.41-.66h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
<g>
|
||||
<path
|
||||
d="M110.32,189.95c2.31,.23,4.18,2.27,4.64,4.55s-.3,4.67-1.62,6.57c-1.32,1.91-3.14,3.4-5.01,4.77-6.3,4.62-13.39,8.15-20.87,10.4"
|
||||
style="fill:#fff;" />
|
||||
<path
|
||||
d="M109.98,191.15c3.4,.48,4.45,4.11,3.45,7.02-1.14,3.32-4.23,5.56-6.99,7.49-5.91,4.13-12.43,7.28-19.32,9.38-1.53,.47-.88,2.88,.66,2.41,8.11-2.47,15.89-6.34,22.57-11.59,3.04-2.38,5.73-5.52,5.97-9.55,.21-3.46-2.09-7.07-5.68-7.57-1.57-.22-2.25,2.19-.66,2.41h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
<g>
|
||||
<path d="M85.05,188.29l-.83,3.58" style="fill:#fff;" />
|
||||
<path
|
||||
d="M83.84,187.96l-.83,3.58c-.15,.64,.2,1.38,.87,1.54,.64,.15,1.38-.19,1.54-.87l.83-3.58c.15-.64-.2-1.38-.87-1.54-.64-.15-1.38,.19-1.54,.87h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
<g>
|
||||
<path d="M84.5,196.52c-.06,.99-.02,1.98,.13,2.96" style="fill:#fff;" />
|
||||
<path
|
||||
d="M83.25,196.52c-.07,1.1,0,2.2,.17,3.29,.04,.29,.33,.61,.57,.75,.27,.16,.66,.22,.96,.13s.59-.29,.75-.57l.13-.3c.06-.22,.06-.44,0-.66-.01-.08-.02-.15-.03-.23l.04,.33c-.12-.9-.15-1.82-.1-2.73,.02-.31-.15-.67-.37-.88s-.57-.38-.88-.37-.66,.12-.88,.37-.34,.54-.37,.88h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
<g>
|
||||
<path d="M72.52,208.78c-.46,1.52-.91,3.05-1.05,4.64s.08,3.24,.9,4.6" style="fill:#fff;" />
|
||||
<path
|
||||
d="M71.31,208.44c-.99,3.32-1.88,7-.02,10.2,.81,1.39,2.97,.13,2.16-1.26-1.47-2.53-.52-5.62,.28-8.27,.19-.65-.23-1.36-.87-1.54s-1.34,.22-1.54,.87h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
<g>
|
||||
<path d="M84.74,203.93c-.61,1.54-.48,3.36,.34,4.8" style="fill:#fff;" />
|
||||
<path
|
||||
d="M83.54,203.6c-.71,1.86-.5,4.03,.46,5.76,.32,.57,1.15,.81,1.71,.45s.79-1.1,.45-1.71c-.05-.09-.1-.18-.15-.28-.02-.05-.05-.09-.07-.14-.05-.12-.04-.1,.03,.08,.01-.04-.08-.21-.1-.26-.03-.09-.06-.17-.08-.26-.06-.2-.11-.41-.14-.61v-.08c-.03-.14-.03-.1,0,.1,.02-.09-.02-.22-.03-.31-.01-.18-.01-.37,0-.55,0-.11,0-.21,.02-.31,0-.05,0-.1,.02-.16-.03,.2-.03,.23-.01,.1,.07-.39,.17-.77,.31-1.14,.23-.61-.26-1.4-.87-1.54-.71-.16-1.29,.22-1.54,.87h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
<g>
|
||||
<path d="M52.32,196.92c-4.57,5.84-6,13.57-6.04,20.99-.02,2.89,.15,5.85-.65,8.63" style="fill:#fff;" />
|
||||
<path
|
||||
d="M51.25,196.29c-3.09,4.01-4.82,8.88-5.6,13.85-.38,2.44-.58,4.9-.61,7.36-.04,2.92,.16,5.85-.61,8.71-.42,1.56,1.99,2.22,2.41,.66,.71-2.63,.7-5.34,.69-8.04,0-2.54,.09-5.09,.46-7.61,.72-4.93,2.35-9.68,5.41-13.66,.98-1.27-1.19-2.52-2.16-1.26h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
<g>
|
||||
<path d="M43.94,195.7c-.58,3.78-3.36,6.94-6.64,8.9s-7.05,2.93-10.75,3.87" style="fill:#fff;" />
|
||||
<path
|
||||
d="M42.73,195.37c-1.3,7.8-9.97,10.24-16.52,11.9-1.56,.39-.9,2.81,.66,2.41,4.15-1.05,8.48-2.15,12.04-4.64,3.06-2.14,5.59-5.25,6.22-9.01,.26-1.57-2.15-2.25-2.41-.66h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
<g>
|
||||
<path
|
||||
d="M91.16,171.72c.9,.4,1.5,1.25,2.27,1.85,1.63,1.28,3.91,1.36,5.95,.98,.45-.08,.91-.19,1.3-.43s.71-.64,.75-1.1c.06-.7-.53-1.28-1.06-1.74"
|
||||
style="fill:#fff;" />
|
||||
<path
|
||||
d="M90.53,172.79c.58,.28,.96,.69,1.44,1.14s1.03,.91,1.63,1.22c1.28,.66,2.75,.9,4.19,.83s3.25-.23,4.25-1.39c.56-.65,.78-1.51,.56-2.34-.2-.75-.77-1.36-1.34-1.86-.51-.44-1.27-.5-1.77,0-.45,.45-.51,1.32,0,1.77,.19,.17,.4,.34,.56,.54,0,0,.17,.36,.14,.17,0-.03,.04-.03,.05-.05-.06,.15-.05,.1-.12,.17-.11,.1-.29,.17-.46,.21-.96,.28-1.98,.34-2.99,.26-.84-.07-1.76-.34-2.47-.89-.81-.63-1.44-1.49-2.4-1.95-.61-.29-1.35-.17-1.71,.45-.32,.55-.16,1.42,.45,1.71h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path
|
||||
d="M1.25,176.57c8.14-4.37,16.49-8.51,25.42-10.9,8.93-2.39,16.85-8.86,25.66-6.05,3.11,.99,4.86,.29,7.84,1.63,7.16,3.22,14.5,6.16,22.19,7.73,.92,.19,1.85,.36,2.75,.64,.76,.24,1.49,.57,2.23,.85,3.03,1.13,6.35,1.46,9.56,1.07,1.51-.18,3.03-.52,4.52-.25s2.98,1.36,3.1,2.87c.15,1.87-1.69,3.22-3.31,4.16-5.19,3.04-10.67,6.16-16.68,6.31-1.06,.03-2.12-.04-3.16,.13-.96,.16-1.87,.52-2.8,.81-5.16,1.61-10.98,.91-15.62-1.86-.45-.27-.97-.56-1.45-.36-.27,.11-.46,.36-.64,.6"
|
||||
style="fill:#fff;" />
|
||||
<path
|
||||
d="M1.88,177.65c4.86-2.6,9.78-5.14,14.87-7.25,2.49-1.03,5.01-1.96,7.58-2.76,2.41-.74,4.83-1.37,7.18-2.29,4.42-1.74,8.72-4.06,13.44-4.92,2.29-.42,4.6-.32,6.84,.33s4.33,.55,6.45,1.12c2.51,.67,4.91,2.06,7.31,3.05s5.01,1.99,7.57,2.84,5.29,1.63,7.99,2.22c1.22,.27,2.46,.45,3.65,.83,1.32,.42,2.57,1.02,3.92,1.38,2.52,.68,5.18,.89,7.77,.63,1.78-.18,5.97-1.37,6.75,1.15,.63,2.02-3.24,3.63-4.54,4.37-2.34,1.34-4.72,2.63-7.25,3.57-2.8,1.04-5.51,1.41-8.47,1.47-2.79,.06-5.28,1.39-8.03,1.68s-5.61-.04-8.26-.98c-2.04-.72-4.85-3.38-6.68-1.03-.98,1.25,.78,3.03,1.77,1.77,.36-.46,.86,.14,1.3,.37,.49,.26,.99,.5,1.5,.72,1.24,.54,2.53,.97,3.85,1.26,2.53,.55,5.13,.63,7.68,.24,1.24-.19,2.43-.52,3.63-.9,1.41-.46,2.68-.62,4.16-.63,2.68-.02,5.3-.5,7.82-1.4s5.08-2.18,7.48-3.54c2-1.13,4.41-2.21,5.78-4.13,1.29-1.8,.98-4.13-.71-5.56-2.12-1.78-4.81-1.28-7.34-.97-2.82,.34-5.69,.13-8.4-.74-1.34-.43-2.61-1.04-3.97-1.39s-2.89-.6-4.32-.94c-5.66-1.37-11.12-3.43-16.46-5.74-2.36-1.02-4.53-2.1-7.12-2.39-1.12-.12-2.24-.2-3.33-.49-1.24-.33-2.43-.68-3.71-.82-4.99-.56-9.77,1.38-14.26,3.29-2.63,1.12-5.26,2.29-8,3.12-3.06,.92-6.11,1.8-9.1,2.95-6.07,2.35-11.88,5.29-17.61,8.36-1.42,.76-.16,2.92,1.26,2.16h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
<path d="M69.76,187.67c1.61,0,1.61-2.5,0-2.5s-1.61,2.5,0,2.5h0Z" style="fill:#231f20;" />
|
||||
<g>
|
||||
<path
|
||||
d="M91.16,171.56c.9,.4,1.5,1.25,2.27,1.85,1.63,1.28,3.91,1.36,5.95,.98,.45-.08,.91-.19,1.3-.43s.71-.64,.75-1.1c.06-.7-.53-1.28-1.06-1.74"
|
||||
style="fill:#fff;" />
|
||||
<path
|
||||
d="M90.53,172.64c.58,.28,.96,.69,1.44,1.14s1.03,.91,1.63,1.22c1.28,.66,2.75,.9,4.19,.83s3.25-.23,4.25-1.39c.56-.65,.78-1.51,.56-2.34-.2-.75-.77-1.36-1.34-1.86-.51-.44-1.27-.5-1.77,0-.45,.45-.51,1.32,0,1.77,.19,.17,.4,.34,.56,.54,0,0,.17,.36,.14,.17,0-.03,.04-.03,.05-.05-.06,.15-.05,.1-.12,.17-.11,.1-.29,.17-.46,.21-.96,.28-1.98,.34-2.99,.26-.84-.07-1.76-.34-2.47-.89-.81-.63-1.44-1.49-2.4-1.95-.61-.29-1.35-.17-1.71,.45-.32,.55-.16,1.42,.45,1.71h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path
|
||||
d="M107.25,198.34c-.57,.69-1.44,1.13-2.4,1.13-1.72,0-3.12-1.4-3.12-3.12,0-.71,.24-1.36,.63-1.88l5.79-6.56c.56-.56,1.34-.91,2.2-.91,1.72,0,3.12,1.4,3.12,3.12,0,.91-.39,1.72-1,2.29l-5.22,5.93Z"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10;" />
|
||||
<path
|
||||
d="M107.97,196.36c0,.75-.27,1.45-.71,1.99-.57,.69-1.44,1.13-2.4,1.13-1.72,0-3.12-1.4-3.12-3.12,0-.71,.24-1.36,.63-1.88,.57-.75,1.47-1.23,2.48-1.23,1.72,0,3.12,1.4,3.12,3.12Z"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10;" />
|
||||
</g>
|
||||
<g>
|
||||
<polygon
|
||||
points="142.87 164.83 137.76 166.52 132.66 164.83 132.66 109.62 131.53 107.91 131.53 60.47 144 60.47 144 107.91 142.87 109.62 142.87 164.83"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="132.66" y1="109.62" x2="142.87" y2="109.62"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="132.66" y1="164.09" x2="142.87" y2="159.3"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="132.66" y1="158.09" x2="142.87" y2="153.3"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="132.66" y1="152.07" x2="142.87" y2="147.28"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="132.66" y1="146.09" x2="142.87" y2="141.31"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="132.66" y1="140.07" x2="142.87" y2="135.28"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="132.66" y1="133.87" x2="142.87" y2="129.08"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="132.66" y1="127.85" x2="142.87" y2="123.06"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="132.66" y1="121.87" x2="142.87" y2="117.08"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="132.66" y1="115.85" x2="142.87" y2="111.06"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
</g>
|
||||
<path d="M169.68,0V57.54c0,2.23-1.82,4.05-4.05,4.05h-56.36c-2.23,0-4.05-1.82-4.05-4.05V0"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<rect x="125.74" y="61.6" width="24.04" height="24.04"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<rect x="122.08" y="85.64" width="31.37" height="19.04"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="134.29" y1="85.64" x2="134.29" y2="104.68"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="148.31" y1="85.64" x2="148.31" y2="104.68"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<ellipse cx="128.14" cy="95.16" rx="2.39" ry="4.57"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<path
|
||||
d="M113.51,99.73c-1.32,0-2.39-2.05-2.39-4.57s1.07-4.57,2.39-4.57h14.44c1.32,0,2.39,2.05,2.39,4.57s-1.07,4.57-2.39,4.57h-14.44Z"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<ellipse cx="113.51" cy="95.16" rx="2.39" ry="4.57"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<g>
|
||||
<g>
|
||||
<line x1="127.88" y1="200.38" x2="127.88" y2="203.88"
|
||||
style="fill:none; stroke:#39b54a; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="127.88" y1="205.38" x2="127.88" y2="218.16"
|
||||
style="fill:none; stroke:#39b54a; stroke-dasharray:0 0 0 0 5.26 1.5 5.26 1.5; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="127.88" y1="218.92" x2="127.88" y2="222.42"
|
||||
style="fill:none; stroke:#39b54a; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
</g>
|
||||
<polyline points="122.99 205.33 127.88 199.28 132.72 205.33"
|
||||
style="fill:none; stroke:#39b54a; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<line x1="95.86" y1="94.9" x2="92.36" y2="94.9"
|
||||
style="fill:none; stroke:#39b54a; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="90.8" y1="94.9" x2="77.59" y2="94.9"
|
||||
style="fill:none; stroke:#39b54a; stroke-dasharray:0 0 0 0 5.44 1.55 5.44 1.55; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="76.81" y1="94.9" x2="56.6" y2="94.9"
|
||||
style="fill:none; stroke:#39b54a; stroke-dasharray:0 0 0 0 0 0 5.44 1.55 5.44 1.55 5.44 1.55; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="55.82" y1="94.9" x2="52.32" y2="94.9"
|
||||
style="fill:none; stroke:#39b54a; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
</g>
|
||||
<polyline points="90.9 90 96.95 94.9 90.9 99.73"
|
||||
style="fill:none; stroke:#39b54a; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
</g>
|
||||
<path
|
||||
d="M111.84,93.61c-5.44,.15-10.02,3.72-13.85,7.24-2.01,1.85-3.9,3.81-5.83,5.74s-4.16,3.88-6.06,6.02c-4.2,4.74-7.48,10.2-10.3,15.85-2.6,5.24-5.32,10.43-7.5,15.87-2.39,5.97-3.72,12.19-4.38,18.58-.1,1.01,.94,1.88,1.88,1.88,1.1,0,1.77-.86,1.88-1.88,.56-5.4,1.68-10.7,3.56-15.79s4.27-9.66,6.62-14.38c2.66-5.35,5.4-10.67,9.12-15.37,3.31-4.18,7.41-7.76,11.19-11.51s8.22-8.36,13.67-8.51c2.41-.07,2.42-3.82,0-3.75h0Z"
|
||||
style="fill:#231f20;" />
|
||||
<path
|
||||
d="M59.12,231.43c2.05,17.35-4.54,34.73-17.73,46.21-3.46,3.02-7.33,5.53-11.45,7.56-2.17,1.06-.27,4.3,1.89,3.24,16.06-7.89,27.69-23.39,30.62-41.06,.88-5.28,1.04-10.63,.41-15.94-.12-1.01-.78-1.88-1.88-1.88-.92,0-1.99,.86-1.88,1.88h0Z"
|
||||
style="fill:#231f20;" />
|
||||
<path
|
||||
d="M103.49,195.11c-7.6,6.84-13.89,15.16-18.3,24.39-2.34,4.9-4.19,10.04-7.16,14.61s-6.89,8.75-10.54,12.93c-4.48,5.13-8.96,10.26-13.44,15.38-1.58,1.81,1.06,4.47,2.65,2.65,3.93-4.5,7.87-9.01,11.8-13.51,3.72-4.25,7.58-8.42,10.96-12.96s5.44-9.33,7.66-14.32c2.1-4.74,4.55-9.28,7.51-13.54,3.31-4.76,7.2-9.1,11.52-12.98,1.8-1.62-.86-4.26-2.65-2.65h0Z"
|
||||
style="fill:#231f20;" />
|
||||
<polyline points="117.33 160.89 105.01 177.76 136.71 177.76"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="118.19" y1="163.9" x2="108.3" y2="177.3"
|
||||
style="fill:none; stroke:#231f20; stroke-linecap:round; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 23 KiB |
49
src/svelte-components/src/svgs/probe-place-xyz.svg
Normal file
@@ -0,0 +1,49 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 303.91 128.94">
|
||||
<polygon
|
||||
points="167.2 14.19 171.09 20.83 167.49 22.75 163.59 16.12 152.92 21.83 151.59 19.59 162.28 13.87 158.38 7.24 161.99 5.31 165.88 11.95 176.56 6.23 177.87 8.48 167.2 14.19"
|
||||
style="fill:#be1e2d;" />
|
||||
<polygon
|
||||
points="277.18 14.19 281.07 20.83 277.47 22.75 273.57 16.12 262.9 21.83 261.58 19.59 272.26 13.87 268.36 7.24 271.97 5.31 275.86 11.95 286.55 6.23 287.86 8.48 277.18 14.19"
|
||||
style="fill:#be1e2d;" />
|
||||
<polygon
|
||||
points="234.48 71.98 238.37 78.62 234.77 80.55 230.87 73.91 220.2 79.62 218.88 77.38 229.56 71.67 225.66 65.03 229.27 63.1 233.16 69.74 243.85 64.02 245.15 66.27 234.48 71.98"
|
||||
style="fill:#be1e2d;" />
|
||||
<polygon
|
||||
points="200.71 41.95 204.59 48.59 200.99 50.51 197.09 43.88 186.42 49.59 185.1 47.35 195.78 41.63 191.88 35 195.5 33.07 199.38 39.71 210.07 33.99 211.38 36.24 200.71 41.95"
|
||||
style="fill:#be1e2d;" />
|
||||
<polyline points="112.27 66.96 118.93 76.72 136.87 63.1"
|
||||
style="fill:none; stroke:#00a651; stroke-miterlimit:10; stroke-width:4px;" />
|
||||
<polygon points="302.41 16.76 239.77 99.53 94.07 99.53 94.07 84.27 156.71 1.5 302.41 1.5 302.41 16.76"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<polyline points="302.41 1.5 239.77 84.27 94.07 84.27"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="239.77" y1="84.27" x2="239.77" y2="99.53"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<polygon points="60.79 103.89 42.96 127.44 1.5 127.44 1.5 116.1 19.33 92.55 60.79 92.55 60.79 103.89"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<polyline points="60.79 92.55 42.96 116.1 1.5 116.1"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="42.96" y1="116.1" x2="42.96" y2="127.44"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<ellipse cx="49.13" cy="97.11" rx="3.83" ry="1.56" style="fill:none; stroke:#231f20; stroke-miterlimit:10;" />
|
||||
<circle cx="21.34" cy="121.77" r="3.12" style="fill:none; stroke:#231f20; stroke-miterlimit:10;" />
|
||||
<g>
|
||||
<polygon points="34.63 102.43 31.5 99.01 29.54 101.63 32.67 105.05 34.63 102.43" style="fill:#bcbec0;" />
|
||||
<polygon points="31.52 106.57 28.39 103.16 26.42 105.77 29.56 109.19 31.52 106.57" style="fill:#bcbec0;" />
|
||||
<polygon points="27.82 111.51 28.41 110.72 25.28 107.3 22.12 111.51 25.2 111.2 27.82 111.51"
|
||||
style="fill:#bcbec0;" />
|
||||
<polygon points="38.61 97.14 32.91 97.14 32.65 97.49 35.78 100.91 38.61 97.14" style="fill:#bcbec0;" />
|
||||
</g>
|
||||
<g>
|
||||
<line x1="93.77" y1="75.66" x2="91.3" y2="76.07"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="87.94" y1="76.63" x2="71.68" y2="79.35"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-dasharray:0 0 0 0 5.68 3.41 5.68 3.41; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="70" y1="79.64" x2="44.78" y2="83.86"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-dasharray:0 0 0 0 0 0 5.68 3.41 5.68 3.41 5.68 3.41; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="43.1" y1="84.14" x2="40.63" y2="84.55"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
</g>
|
||||
<polyline points="82.19 71.95 93.77 75.66 85.96 83.49"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.6 KiB |
60
src/svelte-components/src/svgs/probe-place-z.svg
Normal file
@@ -0,0 +1,60 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 326.35 123.59">
|
||||
<polygon points="324.85 16.76 262.21 99.53 116.51 99.53 116.51 84.27 179.15 1.5 324.85 1.5 324.85 16.76"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<polygon points="206.56 67.29 185.57 36.09 197.9 27.68 210.04 45.9 256.99 10.26 266.02 22.15 206.56 67.29"
|
||||
style="fill:#00a651;" />
|
||||
<polyline points="324.85 1.5 262.21 84.27 116.51 84.27"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="262.21" y1="84.27" x2="262.21" y2="99.53"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<g>
|
||||
<line x1="159.81" y1="65.69" x2="157.36" y2="66.17"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="154.33" y1="66.76" x2="139.7" y2="69.61"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-dasharray:0 0 0 0 5.14 3.08 5.14 3.08; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="138.19" y1="69.91" x2="67.04" y2="83.78"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-dasharray:0 0 0 0 0 0 5.14 3.08 5.14 3.08 5.14 3.08; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="65.53" y1="84.07" x2="63.07" y2="84.55"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
</g>
|
||||
<polyline points="151.51 61.52 163.08 65.23 155.28 73.06"
|
||||
style="fill:none; stroke:#a7a9ac; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<g>
|
||||
<g>
|
||||
<polygon
|
||||
points="60.79 91.08 60.79 98.53 42.96 122.09 42.96 110.74 47.63 104.58 48.03 104.56 48.04 106.86 59.98 91.08 60.79 91.08"
|
||||
style="fill:#fff;" />
|
||||
<polygon
|
||||
points="28.92 90.2 60.79 90.2 60.79 91.08 59.98 91.08 48.04 106.86 48.03 104.56 47.63 104.58 47.44 104.05 19.03 104.05 19.03 103.6 28.92 90.2"
|
||||
style="fill:#8dc63f;" />
|
||||
<polygon
|
||||
points="47.44 104.05 47.63 104.58 42.96 110.74 21.34 110.74 1.5 110.74 19.33 87.19 28.06 87.19 15.74 104.05 19.03 104.05 47.44 104.05"
|
||||
style="fill:#ed1c24;" />
|
||||
<path d="M42.96,110.74v11.35H21.34v-2.56c1.73,0,3.12-1.39,3.12-3.11s-1.39-3.12-3.12-3.12v-2.56h21.62Z"
|
||||
style="fill:#fff;" />
|
||||
<path
|
||||
d="M21.34,113.3c1.73,0,3.12,1.39,3.12,3.12s-1.39,3.11-3.12,3.11-3.11-1.39-3.11-3.11,1.39-3.12,3.11-3.12Z"
|
||||
style="fill:#fff;" />
|
||||
<path d="M21.34,119.53v2.56H1.5v-11.35H21.34v2.56c-1.72,0-3.11,1.39-3.11,3.12s1.39,3.11,3.11,3.11Z"
|
||||
style="fill:#fff;" />
|
||||
<polygon points="15.74 104.05 28.06 87.19 28.91 87.19 28.92 90.2 19.03 103.6 19.03 104.05 15.74 104.05"
|
||||
style="fill:#fff;" />
|
||||
</g>
|
||||
<g>
|
||||
<polygon
|
||||
points="60.79 91.08 60.79 98.53 42.96 122.09 21.34 122.09 1.5 122.09 1.5 110.74 19.33 87.19 28.06 87.19 28.91 87.19 28.92 90.2 60.79 90.2 60.79 91.08"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<polyline points="59.98 91.08 48.04 106.86 48.03 104.56 47.63 104.58 42.96 110.74 21.34 110.74 1.5 110.74"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="42.96" y1="110.74" x2="42.96" y2="122.09"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<path
|
||||
d="M21.34,113.3c1.73,0,3.12,1.39,3.12,3.12s-1.39,3.11-3.12,3.11-3.11-1.39-3.11-3.11,1.39-3.12,3.11-3.12Z"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10;" />
|
||||
<polyline points="28.06 87.19 15.74 104.05 19.03 104.05 47.44 104.05"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="28.92" y1="90.2" x2="19.03" y2="103.6"
|
||||
style="fill:none; stroke:#231f20; stroke-linecap:round; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.1 KiB |
115
src/svelte-components/src/svgs/probe-put-away-xyz.svg
Normal file
@@ -0,0 +1,115 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 328.41 256.15">
|
||||
<g>
|
||||
<polygon
|
||||
points="326.91 163.14 264.27 245.91 118.57 245.91 118.57 230.65 181.21 147.88 326.91 147.88 326.91 163.14"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<polyline points="326.91 147.88 264.27 230.65 118.57 230.65"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="264.27" y1="230.65" x2="264.27" y2="245.91"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
</g>
|
||||
<g>
|
||||
<polygon points="111.56 197.79 93.74 221.34 52.27 221.34 52.27 210 70.1 186.45 111.56 186.45 111.56 197.79"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<polyline points="111.56 186.45 93.74 210 52.27 210"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="93.74" y1="210" x2="93.74" y2="221.34"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<ellipse cx="99.9" cy="191.01" rx="3.83" ry="1.56" style="fill:none; stroke:#231f20; stroke-miterlimit:10;" />
|
||||
<circle cx="72.12" cy="215.67" r="3.12" style="fill:none; stroke:#231f20; stroke-miterlimit:10;" />
|
||||
<g>
|
||||
<polygon points="85.41 196.33 82.28 192.91 80.31 195.53 83.44 198.95 85.41 196.33"
|
||||
style="fill:#2bb673; opacity:.42;" />
|
||||
<polygon points="82.3 200.48 79.16 197.06 77.2 199.68 80.33 203.09 82.3 200.48"
|
||||
style="fill:#2bb673; opacity:.42;" />
|
||||
<polygon points="78.59 205.41 79.19 204.62 76.05 201.2 72.89 205.41 75.97 205.1 78.59 205.41"
|
||||
style="fill:#2bb673; opacity:.42;" />
|
||||
<polygon points="89.38 191.04 83.68 191.04 83.42 191.39 86.56 194.81 89.38 191.04"
|
||||
style="fill:#2bb673; opacity:.42;" />
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path
|
||||
d="M69.35,223.89c-.57,.69-1.44,1.13-2.4,1.13-1.72,0-3.12-1.4-3.12-3.12,0-.71,.24-1.36,.63-1.88l5.79-6.56c.56-.56,1.34-.91,2.2-.91,1.72,0,3.12,1.4,3.12,3.12,0,.91-.39,1.72-1,2.29l-5.22,5.93Z"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10;" />
|
||||
<path
|
||||
d="M70.06,221.91c0,.75-.27,1.45-.71,1.99-.57,.69-1.44,1.13-2.4,1.13-1.72,0-3.12-1.4-3.12-3.12,0-.71,.24-1.36,.63-1.88,.57-.75,1.47-1.23,2.48-1.23,1.72,0,3.12,1.4,3.12,3.12Z"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10;" />
|
||||
</g>
|
||||
<g>
|
||||
<polygon
|
||||
points="163.4 164.83 158.3 166.52 153.19 164.83 153.19 109.62 152.06 107.91 152.06 60.47 164.53 60.47 164.53 107.91 163.4 109.62 163.4 164.83"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="153.19" y1="109.62" x2="163.4" y2="109.62"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="153.19" y1="164.09" x2="163.4" y2="159.3"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="153.19" y1="158.09" x2="163.4" y2="153.3"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="153.19" y1="152.07" x2="163.4" y2="147.28"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="153.19" y1="146.09" x2="163.4" y2="141.31"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="153.19" y1="140.07" x2="163.4" y2="135.28"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="153.19" y1="133.87" x2="163.4" y2="129.08"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="153.19" y1="127.85" x2="163.4" y2="123.06"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="153.19" y1="121.87" x2="163.4" y2="117.08"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="153.19" y1="115.85" x2="163.4" y2="111.06"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
</g>
|
||||
<path d="M190.21,0V57.54c0,2.23-1.82,4.05-4.05,4.05h-56.36c-2.23,0-4.05-1.82-4.05-4.05V0"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<rect x="146.28" y="61.6" width="24.04" height="24.04"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<rect x="142.61" y="85.64" width="31.37" height="19.04"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="154.82" y1="85.64" x2="154.82" y2="104.68"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="168.85" y1="85.64" x2="168.85" y2="104.68"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<ellipse cx="148.67" cy="95.16" rx="2.39" ry="4.57"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<path
|
||||
d="M71.21,99.73c-1.32,0-2.39-2.05-2.39-4.57s1.07-4.57,2.39-4.57h14.44c1.32,0,2.39,2.05,2.39,4.57s-1.07,4.57-2.39,4.57h-14.44Z"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<ellipse cx="71.21" cy="95.16" rx="2.39" ry="4.57"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<g>
|
||||
<g>
|
||||
<line x1="94.11" y1="94.84" x2="97.61" y2="94.84"
|
||||
style="fill:none; stroke:#ed1c24; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="99.16" y1="94.84" x2="112.38" y2="94.84"
|
||||
style="fill:none; stroke:#ed1c24; stroke-dasharray:0 0 0 0 5.44 1.55 5.44 1.55; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="113.16" y1="94.84" x2="133.36" y2="94.84"
|
||||
style="fill:none; stroke:#ed1c24; stroke-dasharray:0 0 0 0 0 0 5.44 1.55 5.44 1.55 5.44 1.55; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="134.14" y1="94.84" x2="137.64" y2="94.84"
|
||||
style="fill:none; stroke:#ed1c24; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
</g>
|
||||
<polyline points="99.06 99.73 93.02 94.84 99.06 90"
|
||||
style="fill:none; stroke:#ed1c24; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<line x1="116.95" y1="190.46" x2="120.38" y2="189.78"
|
||||
style="fill:none; stroke:#ed1c24; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="121.44" y1="189.58" x2="130.44" y2="187.81"
|
||||
style="fill:none; stroke:#ed1c24; stroke-dasharray:0 0 0 0 3.78 1.08 3.78 1.08; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="130.97" y1="187.71" x2="144.73" y2="185"
|
||||
style="fill:none; stroke:#ed1c24; stroke-dasharray:0 0 0 0 0 0 3.78 1.08 3.78 1.08 3.78 1.08; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="145.26" y1="184.9" x2="148.7" y2="184.23"
|
||||
style="fill:none; stroke:#ed1c24; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
</g>
|
||||
<polyline points="122.75 194.3 115.88 190.67 120.88 184.75"
|
||||
style="fill:none; stroke:#ed1c24; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
</g>
|
||||
<path
|
||||
d="M69.9,93.3c-9.07-.24-17.32,4.41-24.11,10.04s-11.88,12.04-15.84,19.44c-3.11,5.81-5.51,11.98-5.9,18.6-.35,5.97,.4,12,1.35,17.89,2.21,13.7,5.99,27.09,8.74,40.68,1.18,5.8,2.23,11.68,2.47,17.61,.23,5.59-.33,11.4-3.15,16.41-2.42,4.3-6.54,6.35-11.01,7.98-5.9,2.15-11.79,4.15-17.12,7.56-1.66,1.06-3.24,2.24-4.78,3.47-.8,.64-.65,1.98,0,2.65,.77,.79,1.87,.63,2.65,0,5.19-4.16,11.12-6.84,17.35-9.03,4.73-1.67,9.74-3.29,13.34-6.97,4.21-4.31,5.86-10.66,6.38-16.5,.48-5.48-.24-11.05-1.1-16.46-2.14-13.43-5.87-26.56-8.58-39.87-1.26-6.18-2.38-12.42-2.75-18.72-.32-5.39,0-10.38,1.81-15.46,2.77-7.7,7.16-14.85,12.71-20.85s12.9-11.91,21.18-14c2.09-.53,4.2-.76,6.36-.7,2.41,.06,2.41-3.69,0-3.75h0Z"
|
||||
style="fill:#231f20;" />
|
||||
<path
|
||||
d="M64.5,221.06c-1.88,3.18-2.66,6.86-3.58,10.4-.78,3.05-1.59,6.62-4.02,8.83-1.32,1.2-3.18,1.8-4.87,2.26-2.03,.56-4.11,.84-6.21,.96-4.68,.27-9.37-.13-14.04-.35-5.05-.24-10.18-.31-15.11,.94-2.34,.59-1.35,4.21,1,3.62,9.17-2.32,18.84,.08,28.16-.46,4.16-.24,8.99-.9,12.5-3.33,3.09-2.14,4.57-5.69,5.59-9.17,1.15-3.94,1.71-8.22,3.82-11.8,1.23-2.08-2.01-3.97-3.24-1.89h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.5 KiB |
134
src/svelte-components/src/svgs/probe-put-away-z.svg
Normal file
@@ -0,0 +1,134 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 328.41 256.15">
|
||||
<g>
|
||||
<g>
|
||||
<polygon
|
||||
points="111.57 190.34 111.57 197.79 93.74 221.35 93.74 210.01 98.41 203.84 98.81 203.83 98.82 206.12 110.76 190.34 111.57 190.34"
|
||||
style="fill:#fff;" />
|
||||
<polygon
|
||||
points="98.22 203.31 69.81 203.31 69.81 202.86 79.7 189.46 111.57 189.46 111.57 190.34 110.76 190.34 98.82 206.12 98.81 203.83 98.41 203.84 98.22 203.31"
|
||||
style="fill:#8dc63f;" />
|
||||
<polygon
|
||||
points="98.22 203.31 98.41 203.84 93.74 210.01 72.12 210.01 52.28 210.01 70.11 186.45 78.83 186.45 66.52 203.31 69.81 203.31 98.22 203.31"
|
||||
style="fill:#ed1c24;" />
|
||||
<path d="M93.74,210.01v11.34h-21.62v-2.56c1.72,0,3.12-1.39,3.12-3.11s-1.4-3.12-3.12-3.12v-2.55h21.62Z"
|
||||
style="fill:#fff;" />
|
||||
<path
|
||||
d="M72.12,212.56c1.72,0,3.12,1.39,3.12,3.12s-1.4,3.11-3.12,3.11-3.12-1.39-3.12-3.11,1.4-3.12,3.12-3.12Z"
|
||||
style="fill:#fff;" />
|
||||
<path d="M72.12,218.79v2.56h-19.84v-11.34h19.84v2.55c-1.72,0-3.12,1.39-3.12,3.12s1.4,3.11,3.12,3.11Z"
|
||||
style="fill:#fff;" />
|
||||
<polygon points="79.7 189.46 69.81 202.86 69.81 203.31 66.52 203.31 78.83 186.45 79.68 186.45 79.7 189.46"
|
||||
style="fill:#fff;" />
|
||||
</g>
|
||||
<g>
|
||||
<polygon
|
||||
points="111.57 190.34 111.57 197.79 93.74 221.35 72.12 221.35 52.28 221.35 52.28 210.01 70.11 186.45 78.83 186.45 79.68 186.45 79.7 189.46 111.57 189.46 111.57 190.34"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<polyline
|
||||
points="110.76 190.34 98.82 206.12 98.81 203.83 98.41 203.84 93.74 210.01 72.12 210.01 52.28 210.01"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="93.74" y1="210.01" x2="93.74" y2="221.35"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<path
|
||||
d="M72.12,212.56c1.72,0,3.12,1.39,3.12,3.12s-1.4,3.11-3.12,3.11-3.12-1.39-3.12-3.11,1.4-3.12,3.12-3.12Z"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10;" />
|
||||
<polyline points="78.83 186.45 66.52 203.31 69.81 203.31 98.22 203.31"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="79.7" y1="189.46" x2="69.81" y2="202.86"
|
||||
style="fill:none; stroke:#231f20; stroke-linecap:round; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<polygon
|
||||
points="326.91 163.14 264.27 245.91 118.57 245.91 118.57 230.65 181.21 147.88 326.91 147.88 326.91 163.14"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<polyline points="326.91 147.88 264.27 230.65 118.57 230.65"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="264.27" y1="230.65" x2="264.27" y2="245.91"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
</g>
|
||||
<g>
|
||||
<path
|
||||
d="M69.35,223.89c-.57,.69-1.44,1.13-2.4,1.13-1.72,0-3.12-1.4-3.12-3.12,0-.71,.24-1.36,.63-1.88l5.79-6.56c.56-.56,1.34-.91,2.2-.91,1.72,0,3.12,1.4,3.12,3.12,0,.91-.39,1.72-1,2.29l-5.22,5.93Z"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10;" />
|
||||
<path
|
||||
d="M70.06,221.91c0,.75-.27,1.45-.71,1.99-.57,.69-1.44,1.13-2.4,1.13-1.72,0-3.12-1.4-3.12-3.12,0-.71,.24-1.36,.63-1.88,.57-.75,1.47-1.23,2.48-1.23,1.72,0,3.12,1.4,3.12,3.12Z"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10;" />
|
||||
</g>
|
||||
<g>
|
||||
<polygon
|
||||
points="163.4 164.83 158.3 166.52 153.19 164.83 153.19 109.62 152.06 107.91 152.06 60.47 164.53 60.47 164.53 107.91 163.4 109.62 163.4 164.83"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="153.19" y1="109.62" x2="163.4" y2="109.62"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="153.19" y1="164.09" x2="163.4" y2="159.3"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="153.19" y1="158.09" x2="163.4" y2="153.3"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="153.19" y1="152.07" x2="163.4" y2="147.28"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="153.19" y1="146.09" x2="163.4" y2="141.31"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="153.19" y1="140.07" x2="163.4" y2="135.28"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="153.19" y1="133.87" x2="163.4" y2="129.08"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="153.19" y1="127.85" x2="163.4" y2="123.06"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="153.19" y1="121.87" x2="163.4" y2="117.08"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="153.19" y1="115.85" x2="163.4" y2="111.06"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
</g>
|
||||
<path d="M190.21,0V57.54c0,2.23-1.82,4.05-4.05,4.05h-56.36c-2.23,0-4.05-1.82-4.05-4.05V0"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<rect x="146.28" y="61.6" width="24.04" height="24.04"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<rect x="142.61" y="85.64" width="31.37" height="19.04"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="154.82" y1="85.64" x2="154.82" y2="104.68"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<line x1="168.85" y1="85.64" x2="168.85" y2="104.68"
|
||||
style="fill:none; stroke:#231f20; stroke-miterlimit:10; stroke-width:3px;" />
|
||||
<ellipse cx="148.67" cy="95.16" rx="2.39" ry="4.57"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<path
|
||||
d="M71.21,99.73c-1.32,0-2.39-2.05-2.39-4.57s1.07-4.57,2.39-4.57h14.44c1.32,0,2.39,2.05,2.39,4.57s-1.07,4.57-2.39,4.57h-14.44Z"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<ellipse cx="71.21" cy="95.16" rx="2.39" ry="4.57"
|
||||
style="fill:#fff; stroke:#231f20; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<g>
|
||||
<g>
|
||||
<line x1="94.11" y1="94.84" x2="97.61" y2="94.84"
|
||||
style="fill:none; stroke:#ed1c24; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="99.16" y1="94.84" x2="112.38" y2="94.84"
|
||||
style="fill:none; stroke:#ed1c24; stroke-dasharray:0 0 0 0 5.44 1.55 5.44 1.55; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="113.16" y1="94.84" x2="133.36" y2="94.84"
|
||||
style="fill:none; stroke:#ed1c24; stroke-dasharray:0 0 0 0 0 0 5.44 1.55 5.44 1.55 5.44 1.55; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="134.14" y1="94.84" x2="137.64" y2="94.84"
|
||||
style="fill:none; stroke:#ed1c24; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
</g>
|
||||
<polyline points="99.06 99.73 93.02 94.84 99.06 90"
|
||||
style="fill:none; stroke:#ed1c24; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<line x1="116.95" y1="190.46" x2="120.38" y2="189.78"
|
||||
style="fill:none; stroke:#ed1c24; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="121.44" y1="189.58" x2="130.44" y2="187.81"
|
||||
style="fill:none; stroke:#ed1c24; stroke-dasharray:0 0 0 0 3.78 1.08 3.78 1.08; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="130.97" y1="187.71" x2="144.73" y2="185"
|
||||
style="fill:none; stroke:#ed1c24; stroke-dasharray:0 0 0 0 0 0 3.78 1.08 3.78 1.08 3.78 1.08; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
<line x1="145.26" y1="184.9" x2="148.7" y2="184.23"
|
||||
style="fill:none; stroke:#ed1c24; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
</g>
|
||||
<polyline points="122.75 194.3 115.88 190.67 120.88 184.75"
|
||||
style="fill:none; stroke:#ed1c24; stroke-miterlimit:10; stroke-width:2px;" />
|
||||
</g>
|
||||
<path
|
||||
d="M69.9,93.3c-9.07-.24-17.32,4.41-24.11,10.04s-11.88,12.04-15.84,19.44c-3.11,5.81-5.51,11.98-5.9,18.6-.35,5.97,.4,12,1.35,17.89,2.21,13.7,5.99,27.09,8.74,40.68,1.18,5.8,2.23,11.68,2.47,17.61,.23,5.59-.33,11.4-3.15,16.41-2.42,4.3-6.54,6.35-11.01,7.98-5.9,2.15-11.79,4.15-17.12,7.56-1.66,1.06-3.24,2.24-4.78,3.47-.8,.64-.65,1.98,0,2.65,.77,.79,1.87,.63,2.65,0,5.19-4.16,11.12-6.84,17.35-9.03,4.73-1.67,9.74-3.29,13.34-6.97,4.21-4.31,5.86-10.66,6.38-16.5,.48-5.48-.24-11.05-1.1-16.46-2.14-13.43-5.87-26.56-8.58-39.87-1.26-6.18-2.38-12.42-2.75-18.72-.32-5.39,0-10.38,1.81-15.46,2.77-7.7,7.16-14.85,12.71-20.85s12.9-11.91,21.18-14c2.09-.53,4.2-.76,6.36-.7,2.41,.06,2.41-3.69,0-3.75h0Z"
|
||||
style="fill:#231f20;" />
|
||||
<path
|
||||
d="M64.5,221.06c-1.88,3.18-2.66,6.86-3.58,10.4-.78,3.05-1.59,6.62-4.02,8.83-1.32,1.2-3.18,1.8-4.87,2.26-2.03,.56-4.11,.84-6.21,.96-4.68,.27-9.37-.13-14.04-.35-5.05-.24-10.18-.31-15.11,.94-2.34,.59-1.35,4.21,1,3.62,9.17-2.32,18.84,.08,28.16-.46,4.16-.24,8.99-.9,12.5-3.33,3.09-2.14,4.57-5.69,5.59-9.17,1.15-3.94,1.71-8.22,3.82-11.8,1.23-2.08-2.01-3.97-3.24-1.89h0Z"
|
||||
style="fill:#231f20;" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 9.7 KiB |