@lukekaalim/act-insight 1.1.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/InsightApp.module.css +36 -0
- package/InsightApp2.ts +82 -0
- package/TreeViewer.module.css +3 -8
- package/TreeViewer.ts +16 -12
- package/Virtual.ts +29 -11
- package/assets/icons/ancestor_column.png +0 -0
- package/assets/icons/ancestor_column.svg +26 -0
- package/assets/icons/ancestor_skip_row_column.png +0 -0
- package/assets/icons/ancestor_skip_row_column.svg +52 -0
- package/assets/icons/breakpoint.png +0 -0
- package/assets/icons/breakpoint.svg +33 -0
- package/assets/icons/breakpoint_arrow.png +0 -0
- package/assets/icons/breakpoint_arrow.svg +22 -0
- package/assets/icons/breakpoint_arrow_paused.png +0 -0
- package/assets/icons/breakpoint_arrow_paused.svg +38 -0
- package/assets/icons/breakpoint_panel.png +0 -0
- package/assets/icons/breakpoint_panel.svg +121 -0
- package/assets/icons/breakpoint_unset.png +0 -0
- package/assets/icons/breakpoint_unset.svg +26 -0
- package/assets/icons/bug.png +0 -0
- package/assets/icons/bug.svg +65 -0
- package/assets/icons/children.png +0 -0
- package/assets/icons/children.svg +38 -0
- package/assets/icons/collapse.png +0 -0
- package/assets/icons/collapse.svg +38 -0
- package/assets/icons/commit.png +0 -0
- package/assets/icons/commit.svg +30 -0
- package/assets/icons/commit_tree.png +0 -0
- package/assets/icons/commit_tree.svg +44 -0
- package/assets/icons/effect.png +0 -0
- package/assets/icons/effect.svg +28 -0
- package/assets/icons/expand.png +0 -0
- package/assets/icons/expand.svg +47 -0
- package/assets/icons/eye.png +0 -0
- package/assets/icons/eye.svg +36 -0
- package/assets/icons/eye_closed.png +0 -0
- package/assets/icons/eye_closed.svg +32 -0
- package/assets/icons/filter.png +0 -0
- package/assets/icons/filter.svg +22 -0
- package/assets/icons/graph.png +0 -0
- package/assets/icons/graph.svg +129 -0
- package/assets/icons/history_list.png +0 -0
- package/assets/icons/history_list.svg +60 -0
- package/assets/icons/hook.png +0 -0
- package/assets/icons/hook.svg +22 -0
- package/assets/icons/index.ts +76 -0
- package/assets/icons/inspector_panel.png +0 -0
- package/assets/icons/inspector_panel.svg +135 -0
- package/assets/icons/magnifying_glass.png +0 -0
- package/assets/icons/magnifying_glass.svg +39 -0
- package/assets/icons/pause.png +0 -0
- package/assets/icons/pause.svg +34 -0
- package/assets/icons/play.png +0 -0
- package/assets/icons/play.svg +23 -0
- package/assets/icons/reload.png +0 -0
- package/assets/icons/reload.svg +39 -0
- package/assets/icons/selection.png +0 -0
- package/assets/icons/selection.svg +22 -0
- package/assets/icons/side_effects.png +0 -0
- package/assets/icons/side_effects.svg +48 -0
- package/assets/icons/skip.png +0 -0
- package/assets/icons/skip.svg +22 -0
- package/assets/icons/source.svg +1366 -0
- package/assets/icons/step.png +0 -0
- package/assets/icons/step.svg +51 -0
- package/assets/icons/step_over_children.png +0 -0
- package/assets/icons/step_over_children.svg +57 -0
- package/assets/icons/thread.png +0 -0
- package/assets/icons/thread.svg +32 -0
- package/assets/icons/tree_column.png +0 -0
- package/assets/icons/tree_column.svg +26 -0
- package/assets/icons/tree_end.png +0 -0
- package/assets/icons/tree_end.svg +35 -0
- package/assets/icons/tree_junction.png +0 -0
- package/assets/icons/tree_junction.svg +35 -0
- package/assets/icons/vertical_grab_handle.png +0 -0
- package/assets/icons/vertical_grab_handle.svg +36 -0
- package/components/BreakpointPanel.ts +110 -0
- package/components/BreakpointToggle.ts +14 -0
- package/components/Button.ts +53 -0
- package/components/Checkbox.ts +17 -0
- package/components/CommitInspector.ts +161 -0
- package/components/CommitTree.ts +295 -0
- package/components/ControlBar.ts +60 -0
- package/components/EffectTable.ts +125 -0
- package/components/FiltersPanel.ts +45 -0
- package/components/HistoryList.ts +0 -0
- package/components/InspectorPanel.ts +54 -0
- package/components/PlaybackBar.ts +42 -0
- package/components/ThreadInspector.ts +26 -0
- package/components/index.module.css +414 -0
- package/lib/controller.ts +222 -0
- package/lib/list.ts +82 -0
- package/lib/selection.ts +32 -0
- package/package.json +4 -4
- package/public/icons/icons.svg +520 -0
- package/public/icons/icons__breakpoint.png +0 -0
- package/public/icons/icons__breakpoint.svg +30 -0
- package/public/icons/icons__breakpoint_panel.png +0 -0
- package/public/icons/icons__breakpoint_panel.svg +121 -0
- package/public/icons/icons__children.png +0 -0
- package/public/icons/icons__children.svg +38 -0
- package/public/icons/icons__eye.png +0 -0
- package/public/icons/icons__eye.svg +36 -0
- package/public/icons/icons__inspector_panel.png +0 -0
- package/public/icons/icons__inspector_panel.svg +131 -0
- package/public/icons/icons__magnifying_glass.png +0 -0
- package/public/icons/icons__magnifying_glass.svg +39 -0
- package/public/icons/icons__pause.png +0 -0
- package/public/icons/icons__pause.svg +34 -0
- package/public/icons/icons__play.png +0 -0
- package/public/icons/icons__play.svg +23 -0
- package/public/icons/icons__skip.png +0 -0
- package/public/icons/icons__skip.svg +22 -0
- package/public/icons/icons__step.png +0 -0
- package/public/icons/icons__step.svg +51 -0
- package/utils.ts +71 -7
- package/InsightApp.ts +0 -404
- package/MenuBar.module.css +0 -18
- package/MenuBar.ts +0 -39
- package/ScheduleControls.ts +0 -61
- package/lookup.ts +0 -185
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="13.427605mm"
|
|
6
|
+
height="12.964583mm"
|
|
7
|
+
viewBox="0 0 13.427605 12.964584"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg1"
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs1" />
|
|
14
|
+
<g
|
|
15
|
+
id="layer1"
|
|
16
|
+
transform="translate(-70.981051,-3.2192866)">
|
|
17
|
+
<path
|
|
18
|
+
id="path25"
|
|
19
|
+
style="fill:#349034;fill-opacity:1;stroke:none;stroke-width:1.127;stroke-dasharray:none"
|
|
20
|
+
d="M 79.693692,8.0913404 A 2.2216778,2.0696683 0 0 1 77.68968,9.7020948 v 5.0756592 a 2.8998742,3.9990203 0 0 0 2.759521,-3.994589 2.8998742,3.9990203 0 0 0 -0.755509,-2.6918246 z m -4.322217,0.051676 a 2.8998742,3.9990203 0 0 0 -0.72192,2.6401486 2.8998742,3.9990203 0 0 0 2.759522,3.994589 V 9.7046786 A 2.2216778,2.0696683 0 0 1 75.371475,8.1430164 Z m 4.095357,1.5880167 a 0.37417734,0.37417734 0 0 1 0.374138,0.3741379 0.37417734,0.37417734 0 0 1 -0.374138,0.374137 0.37417734,0.37417734 0 0 1 -0.374137,-0.374137 0.37417734,0.37417734 0 0 1 0.374137,-0.3741379 z m -3.835425,0.1870687 a 0.51449382,0.51449382 0 0 1 0.514698,0.5146982 0.51449382,0.51449382 0 0 1 -0.514698,0.514179 0.51449382,0.51449382 0 0 1 -0.51418,-0.514179 0.51449382,0.51449382 0 0 1 0.51418,-0.5146982 z m 2.970362,1.1926922 A 0.56126595,0.56126595 0 0 1 79.162975,11.672 0.56126595,0.56126595 0 0 1 78.601769,12.233206 0.56126595,0.56126595 0 0 1 78.040046,11.672 0.56126595,0.56126595 0 0 1 78.601769,11.110794 Z m -2.081527,1.099157 a 0.49110773,0.49110773 0 0 1 0.490926,0.490926 0.49110773,0.49110773 0 0 1 -0.490926,0.491443 0.49110773,0.49110773 0 0 1 -0.490926,-0.491443 0.49110773,0.49110773 0 0 1 0.490926,-0.490926 z" />
|
|
21
|
+
<ellipse
|
|
22
|
+
style="fill:#349034;fill-opacity:1;stroke:none;stroke-width:1.127;stroke-dasharray:none"
|
|
23
|
+
id="path26"
|
|
24
|
+
cx="77.492638"
|
|
25
|
+
cy="7.771513"
|
|
26
|
+
rx="1.6784505"
|
|
27
|
+
ry="1.2567708" />
|
|
28
|
+
<path
|
|
29
|
+
id="rect27"
|
|
30
|
+
style="fill:#349034;fill-opacity:1;stroke:none;stroke-width:1.127;stroke-dasharray:none"
|
|
31
|
+
d="m 73.787288,5.086735 c -0.03663,0.031549 -0.0523,0.082746 -0.03648,0.1317904 l 0.0092,0.029416 c 0.02109,0.065391 0.09086,0.1011374 0.156217,0.08007 l 0.828951,-0.2678226 1.20071,1.4311202 c 0.04416,0.052637 0.122087,0.059462 0.174727,0.015297 0.05264,-0.044163 0.05946,-0.1220906 0.0153,-0.1747277 L 74.860427,4.8116844 c -0.03597,-0.042869 -0.09411,-0.055225 -0.142964,-0.034527 -0.0042,9.026e-4 -0.0086,0.00192 -0.01275,0.00328 l -0.874231,0.2821968 c -0.01635,0.00527 -0.03098,0.013578 -0.04319,0.0241 z" />
|
|
32
|
+
<path
|
|
33
|
+
id="rect27-3"
|
|
34
|
+
style="fill:#349034;fill-opacity:1;stroke:none;stroke-width:1.127;stroke-dasharray:none"
|
|
35
|
+
d="m 81.325596,5.0233778 c 0.03663,0.031549 0.0523,0.082746 0.03648,0.1317904 l -0.0092,0.029416 c -0.02109,0.065391 -0.09086,0.1011374 -0.156217,0.08007 l -0.828951,-0.2678226 -1.20071,1.4311202 c -0.04416,0.052637 -0.122087,0.059462 -0.174727,0.015297 -0.05264,-0.044163 -0.05946,-0.1220906 -0.0153,-0.1747277 l 1.275486,-1.5201939 c 0.03597,-0.042869 0.09411,-0.055225 0.142964,-0.034527 0.0042,9.026e-4 0.0086,0.00192 0.01275,0.00328 l 0.874231,0.2821968 c 0.01635,0.00527 0.03098,0.013578 0.04319,0.0241 z" />
|
|
36
|
+
<path
|
|
37
|
+
id="path38"
|
|
38
|
+
style="fill:#349034;fill-opacity:1;stroke:none;stroke-width:0.943999;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
39
|
+
d="m 71.828507,8.3339195 0.924718,0.509172 0.947077,0.5191021 c 0.02203,0.00924 0.06686,0.032349 0.114669,0.047176 0.226796,0.070341 0.467673,-0.056491 0.538014,-0.2832873 0.07034,-0.2267963 -0.05649,-0.467673 -0.283287,-0.5380138 -0.03739,-0.011548 -0.07617,-0.017972 -0.09544,-0.019445 L 72.891755,8.4505132 Z" />
|
|
40
|
+
<path
|
|
41
|
+
id="path38-3"
|
|
42
|
+
style="fill:#349034;fill-opacity:1;stroke:none;stroke-width:0.943999;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
43
|
+
d="m 71.64945,10.868231 1.026975,0.244299 1.051172,0.247909 c 0.02369,0.003 0.07306,0.01336 0.123096,0.01491 0.237339,0.0074 0.435701,-0.179091 0.443051,-0.416432 0.0073,-0.237339 -0.179091,-0.435701 -0.416431,-0.443051 -0.03912,-0.0012 -0.0782,0.003 -0.09717,0.0067 l -1.074827,0.174671 z" />
|
|
44
|
+
<path
|
|
45
|
+
id="path38-3-6"
|
|
46
|
+
style="fill:#349034;fill-opacity:1;stroke:none;stroke-width:0.943999;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
47
|
+
d="m 72.272733,13.898394 1.03648,-0.200176 1.060016,-0.206848 c 0.02282,-0.007 0.07208,-0.0179 0.118318,-0.03709 0.219338,-0.09097 0.32333,-0.342589 0.232314,-0.561908 -0.09106,-0.219297 -0.342589,-0.323329 -0.561907,-0.232314 -0.03614,0.01501 -0.07003,0.03493 -0.08579,0.04611 l -0.907596,0.601692 z" />
|
|
48
|
+
<g
|
|
49
|
+
id="g39-5"
|
|
50
|
+
transform="matrix(-1,0,0,1,155.17204,0)">
|
|
51
|
+
<path
|
|
52
|
+
id="path38-7"
|
|
53
|
+
style="fill:#349034;fill-opacity:1;stroke:none;stroke-width:0.943999;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
54
|
+
d="m 71.828507,8.3339195 0.924718,0.509172 0.947077,0.5191021 c 0.02203,0.00924 0.06686,0.032349 0.114669,0.047176 0.226796,0.070341 0.467673,-0.056491 0.538014,-0.2832873 0.07034,-0.2267963 -0.05649,-0.467673 -0.283287,-0.5380138 -0.03739,-0.011548 -0.07617,-0.017972 -0.09544,-0.019445 L 72.891755,8.4505132 Z" />
|
|
55
|
+
<path
|
|
56
|
+
id="path38-3-4"
|
|
57
|
+
style="fill:#349034;fill-opacity:1;stroke:none;stroke-width:0.943999;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
58
|
+
d="m 71.64945,10.868231 1.026975,0.244299 1.051172,0.247909 c 0.02369,0.003 0.07306,0.01336 0.123096,0.01491 0.237339,0.0074 0.435701,-0.179091 0.443051,-0.416432 0.0073,-0.237339 -0.179091,-0.435701 -0.416431,-0.443051 -0.03912,-0.0012 -0.0782,0.003 -0.09717,0.0067 l -1.074827,0.174671 z" />
|
|
59
|
+
<path
|
|
60
|
+
id="path38-3-6-1"
|
|
61
|
+
style="fill:#349034;fill-opacity:1;stroke:none;stroke-width:0.943999;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
62
|
+
d="m 72.272733,13.898394 1.03648,-0.200176 1.060016,-0.206848 c 0.02282,-0.007 0.07208,-0.0179 0.118318,-0.03709 0.219338,-0.09097 0.32333,-0.342589 0.232314,-0.561908 -0.09106,-0.219297 -0.342589,-0.323329 -0.561907,-0.232314 -0.03614,0.01501 -0.07003,0.03493 -0.08579,0.04611 l -0.907596,0.601692 z" />
|
|
63
|
+
</g>
|
|
64
|
+
</g>
|
|
65
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="5.8500004mm"
|
|
6
|
+
height="5.9899998mm"
|
|
7
|
+
viewBox="0 0 5.8500004 5.99"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg1"
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs1" />
|
|
14
|
+
<g
|
|
15
|
+
id="layer1"
|
|
16
|
+
transform="translate(-36.389498,-16.902866)">
|
|
17
|
+
<rect
|
|
18
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.264999;stroke-linejoin:miter;stroke-dasharray:0.165, 0.329999;stroke-dashoffset:0;stroke-opacity:1"
|
|
19
|
+
id="rect8"
|
|
20
|
+
width="2.9141829"
|
|
21
|
+
height="2.1678677"
|
|
22
|
+
x="37.26936"
|
|
23
|
+
y="17.228544"
|
|
24
|
+
ry="0.30155686" />
|
|
25
|
+
<path
|
|
26
|
+
style="fill:none;fill-opacity:1;stroke:#5d7388;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:0.365, 0.365;stroke-dashoffset:0;stroke-opacity:1"
|
|
27
|
+
d="m 38.619832,18.228639 v 4.039579"
|
|
28
|
+
id="path10" />
|
|
29
|
+
<path
|
|
30
|
+
style="fill:none;fill-opacity:1;stroke:#5d7388;stroke-width:0.365;stroke-linejoin:miter;stroke-dasharray:0.365, 0.365;stroke-dashoffset:0;stroke-opacity:1"
|
|
31
|
+
d="m 39.173631,20.604732 h 2.037661"
|
|
32
|
+
id="path11" />
|
|
33
|
+
<path
|
|
34
|
+
style="fill:none;fill-opacity:1;stroke:#5d7388;stroke-width:0.365;stroke-linejoin:miter;stroke-dasharray:0.365, 0.365;stroke-dashoffset:0;stroke-opacity:1"
|
|
35
|
+
d="m 39.161785,22.061823 h 2.037661"
|
|
36
|
+
id="path11-6" />
|
|
37
|
+
</g>
|
|
38
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="11.940001mm"
|
|
6
|
+
height="11.94mm"
|
|
7
|
+
viewBox="0 0 11.940002 11.94"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg1"
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs1" />
|
|
14
|
+
<g
|
|
15
|
+
id="layer1"
|
|
16
|
+
transform="translate(-75.000117,-21.68432)">
|
|
17
|
+
<g
|
|
18
|
+
id="g27"
|
|
19
|
+
transform="matrix(1.2414025,0,0,1.2414025,-19.423008,-6.5137227)">
|
|
20
|
+
<rect
|
|
21
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#5d7388;stroke-width:0.943999;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
22
|
+
id="rect40"
|
|
23
|
+
width="8.3722181"
|
|
24
|
+
height="8.3254452"
|
|
25
|
+
x="76.683907"
|
|
26
|
+
y="23.368118"
|
|
27
|
+
ry="1.5376352" />
|
|
28
|
+
<rect
|
|
29
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.943999;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
30
|
+
id="rect41"
|
|
31
|
+
width="5.2150936"
|
|
32
|
+
height="1.122533"
|
|
33
|
+
x="78.180618"
|
|
34
|
+
y="27.086504"
|
|
35
|
+
ry="0.40925646" />
|
|
36
|
+
</g>
|
|
37
|
+
</g>
|
|
38
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="8mm"
|
|
6
|
+
height="7.9999995mm"
|
|
7
|
+
viewBox="0 0 8 7.9999998"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg1"
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs1" />
|
|
14
|
+
<g
|
|
15
|
+
id="layer1"
|
|
16
|
+
transform="translate(17.18783,-32.909642)">
|
|
17
|
+
<circle
|
|
18
|
+
style="fill:#349034;fill-opacity:1;stroke:#2d532d;stroke-width:0.466;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
19
|
+
id="path17-9-4"
|
|
20
|
+
cx="-13.161364"
|
|
21
|
+
cy="36.966751"
|
|
22
|
+
r="2.7882752" />
|
|
23
|
+
<circle
|
|
24
|
+
style="fill:#3fa83f;fill-opacity:1;stroke:none;stroke-width:0.266081;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
25
|
+
id="path17-9-4-4"
|
|
26
|
+
cx="-13.161364"
|
|
27
|
+
cy="36.966751"
|
|
28
|
+
r="2.332309" />
|
|
29
|
+
</g>
|
|
30
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="11.411777mm"
|
|
6
|
+
height="11.081474mm"
|
|
7
|
+
viewBox="0 0 11.411777 11.081475"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg1"
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs1" />
|
|
14
|
+
<g
|
|
15
|
+
id="layer1"
|
|
16
|
+
transform="translate(-6.3678351,-25.480485)">
|
|
17
|
+
<path
|
|
18
|
+
style="fill:#5d7388;fill-opacity:1;stroke:#349034;stroke-width:0.765;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
19
|
+
d="M 12.130583,28.051973 8.7921825,33.83425"
|
|
20
|
+
id="path18" />
|
|
21
|
+
<path
|
|
22
|
+
style="fill:#5d7388;fill-opacity:1;stroke:#349034;stroke-width:0.765;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
23
|
+
d="m 12.038061,28.051973 3.338401,5.782277"
|
|
24
|
+
id="path18-3" />
|
|
25
|
+
<circle
|
|
26
|
+
style="fill:#349034;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
27
|
+
id="path17"
|
|
28
|
+
cx="12.154276"
|
|
29
|
+
cy="28.099358"
|
|
30
|
+
r="1.7295556" />
|
|
31
|
+
<circle
|
|
32
|
+
style="fill:#349034;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
33
|
+
id="path17-9"
|
|
34
|
+
cx="8.9320898"
|
|
35
|
+
cy="33.690796"
|
|
36
|
+
r="1.7295556" />
|
|
37
|
+
<circle
|
|
38
|
+
style="fill:#349034;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
39
|
+
id="path17-9-8"
|
|
40
|
+
cx="15.234306"
|
|
41
|
+
cy="33.690796"
|
|
42
|
+
r="1.7295556" />
|
|
43
|
+
</g>
|
|
44
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="8mm"
|
|
6
|
+
height="7.9999995mm"
|
|
7
|
+
viewBox="0 0 8 7.9999998"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg1"
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs1" />
|
|
14
|
+
<g
|
|
15
|
+
id="layer1"
|
|
16
|
+
transform="translate(30.096949,-32.86287)">
|
|
17
|
+
<path
|
|
18
|
+
style="fill:#ffa504;fill-opacity:1;stroke:none;stroke-width:0.265316;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
19
|
+
id="path22-8-8"
|
|
20
|
+
d="m 26.912299,33.959114 -1.791477,-0.04143 -1.530747,0.931622 0.04143,-1.791477 -0.931622,-1.530747 1.791477,0.04143 1.530748,-0.931623 -0.04143,1.791478 z"
|
|
21
|
+
transform="matrix(0.35679495,-0.9351962,0.9351962,0.35679495,-65.682752,48.509315)" />
|
|
22
|
+
<path
|
|
23
|
+
style="fill:#ffa504;fill-opacity:1;stroke:#f08d18;stroke-width:0.33992;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
24
|
+
id="path22-8"
|
|
25
|
+
d="m 26.912299,33.959114 -1.791477,-0.04143 -1.530747,0.931622 0.04143,-1.791477 -0.931622,-1.530747 1.791477,0.04143 1.530748,-0.931623 -0.04143,1.791478 z"
|
|
26
|
+
transform="matrix(-0.65477163,-1.1708459,1.1708459,-0.65477163,-48.212244,87.458787)" />
|
|
27
|
+
</g>
|
|
28
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="11.940001mm"
|
|
6
|
+
height="11.94mm"
|
|
7
|
+
viewBox="0 0 11.940002 11.94"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg1"
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs1" />
|
|
14
|
+
<g
|
|
15
|
+
id="layer1"
|
|
16
|
+
transform="translate(-88.33018,-21.731096)">
|
|
17
|
+
<g
|
|
18
|
+
id="g28"
|
|
19
|
+
transform="matrix(1.2414849,0,0,1.240423,-22.652533,-6.4985647)">
|
|
20
|
+
<rect
|
|
21
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#5d7388;stroke-width:0.943999;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
22
|
+
id="rect40-5"
|
|
23
|
+
width="8.3722181"
|
|
24
|
+
height="8.3254452"
|
|
25
|
+
x="90.014175"
|
|
26
|
+
y="23.415094"
|
|
27
|
+
ry="1.5376352" />
|
|
28
|
+
<rect
|
|
29
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.943999;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
30
|
+
id="rect41-3"
|
|
31
|
+
width="5.2150936"
|
|
32
|
+
height="1.122533"
|
|
33
|
+
x="91.674385"
|
|
34
|
+
y="27.086504"
|
|
35
|
+
ry="0.40925646" />
|
|
36
|
+
<rect
|
|
37
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.943999;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
38
|
+
id="rect41-3-8"
|
|
39
|
+
width="5.2150936"
|
|
40
|
+
height="1.122533"
|
|
41
|
+
x="-30.255318"
|
|
42
|
+
y="93.720665"
|
|
43
|
+
ry="0.40925646"
|
|
44
|
+
transform="rotate(-90)" />
|
|
45
|
+
</g>
|
|
46
|
+
</g>
|
|
47
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="18.858223mm"
|
|
6
|
+
height="11.94mm"
|
|
7
|
+
viewBox="0 0 18.858223 11.94"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg1"
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs1" />
|
|
14
|
+
<g
|
|
15
|
+
id="layer1"
|
|
16
|
+
transform="translate(-33.608643,11.230942)">
|
|
17
|
+
<path
|
|
18
|
+
style="fill:#5d7388;fill-opacity:1;stroke-width:0.264583"
|
|
19
|
+
d="m 22.981969,7.2052003 c 0.719459,-0.8803573 2.613334,-2.0669287 4.447971,-2.0669287 1.834461,0 3.573513,1.2636232 4.342199,2.0729833 -0.7698,0.8083004 -2.510591,2.0695267 -4.345051,2.0669995 -1.834635,-0.00253 -3.726873,-1.1917065 -4.445119,-2.0730541 z"
|
|
20
|
+
id="path2"
|
|
21
|
+
transform="matrix(1.9056361,0,0,1.9056361,-9.2663453,-18.765244)" />
|
|
22
|
+
<ellipse
|
|
23
|
+
style="fill:#d8dee3;fill-opacity:1;stroke-width:0.523901"
|
|
24
|
+
id="path3"
|
|
25
|
+
cx="42.858597"
|
|
26
|
+
cy="-5.1301341"
|
|
27
|
+
rx="4.3542557"
|
|
28
|
+
ry="2.8054268" />
|
|
29
|
+
<circle
|
|
30
|
+
style="fill:#5d7388;fill-opacity:1;stroke-width:0.778009"
|
|
31
|
+
id="path4"
|
|
32
|
+
cx="42.754101"
|
|
33
|
+
cy="-5.1649709"
|
|
34
|
+
r="1.6023663" />
|
|
35
|
+
</g>
|
|
36
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="18.860001mm"
|
|
6
|
+
height="11.94mm"
|
|
7
|
+
viewBox="0 0 18.860001 11.94"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg1"
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs1" />
|
|
14
|
+
<g
|
|
15
|
+
id="layer1"
|
|
16
|
+
transform="translate(-53.544731,11.108414)">
|
|
17
|
+
<path
|
|
18
|
+
style="fill:#d8dee3;fill-opacity:1;stroke-width:0.264583"
|
|
19
|
+
d="m 22.981969,7.2052003 c 0.719459,-0.8803573 2.613334,-2.0669287 4.447971,-2.0669287 1.834461,0 3.573513,1.2636232 4.342199,2.0729833 -0.7698,0.8083004 -2.510591,2.0695267 -4.345051,2.0669995 -1.834635,-0.00253 -3.726873,-1.1917065 -4.445119,-2.0730541 z"
|
|
20
|
+
id="path2-3"
|
|
21
|
+
transform="matrix(1.9056361,0,0,1.9056361,10.674422,-18.64767)" />
|
|
22
|
+
<g
|
|
23
|
+
id="g21"
|
|
24
|
+
transform="translate(-0.43087207,0.05307317)">
|
|
25
|
+
<path
|
|
26
|
+
id="path2-5"
|
|
27
|
+
style="fill:#5d7388;fill-opacity:1;stroke-width:0.264583"
|
|
28
|
+
d="m 31.014776,6.5362512 a 3.7407294,1.9297065 0 0 1 -3.737359,1.8486123 3.7407294,1.9297065 0 0 1 -3.722986,-1.740684 c -0.232333,0.1913445 -0.426494,0.3824622 -0.572454,0.5610649 0.718245,0.8813476 2.610495,2.0703482 4.44513,2.0728755 1.83446,0.00253 3.575266,-1.2586092 4.345066,-2.0669096 -0.194863,-0.2051742 -0.45207,-0.439386 -0.757397,-0.6749591 z"
|
|
29
|
+
transform="matrix(1.9056361,0,0,1.9056361,11.105496,-18.698231)" />
|
|
30
|
+
</g>
|
|
31
|
+
</g>
|
|
32
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="11.940001mm"
|
|
6
|
+
height="11.94mm"
|
|
7
|
+
viewBox="0 0 11.940002 11.94"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg1"
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs1" />
|
|
14
|
+
<g
|
|
15
|
+
id="layer1"
|
|
16
|
+
transform="translate(-5.2597456,10.519489)">
|
|
17
|
+
<path
|
|
18
|
+
id="rect14"
|
|
19
|
+
style="fill:#f3b70e;fill-opacity:1;stroke:none;stroke-width:0.909"
|
|
20
|
+
d="m 6.9539457,-9.1313809 0.00155,0.8040853 H 15.28212 l 0.01499,-0.8040853 z m 0.1121378,1.2397176 0.2955892,0.5358846 h 7.5209883 l 0.293522,-0.5358846 z m 0.5725749,1.0386963 2.3745316,4.3051636 0.0052,1.508435 2.227771,1.17272112 10e-4,-2.68115612 2.360062,-4.3051636 z" />
|
|
21
|
+
</g>
|
|
22
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="11.410001mm"
|
|
6
|
+
height="11.079999mm"
|
|
7
|
+
viewBox="0 0 11.410001 11.079999"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg1"
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs1" />
|
|
14
|
+
<g
|
|
15
|
+
id="layer1"
|
|
16
|
+
transform="translate(-6.2684107,-38.662617)">
|
|
17
|
+
<g
|
|
18
|
+
id="g38"
|
|
19
|
+
style="fill:#44406c;fill-opacity:1"
|
|
20
|
+
transform="translate(0.51449384)">
|
|
21
|
+
<rect
|
|
22
|
+
style="fill:#44406c;fill-opacity:1;stroke:none;stroke-width:1.24269;stroke-dasharray:none"
|
|
23
|
+
id="rect31"
|
|
24
|
+
width="0.5415228"
|
|
25
|
+
height="7.555532"
|
|
26
|
+
x="7.6424794"
|
|
27
|
+
y="39.915035"
|
|
28
|
+
ry="0" />
|
|
29
|
+
<rect
|
|
30
|
+
style="opacity:0.52293;fill:#44406c;fill-opacity:1;stroke:none;stroke-width:0.581099;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
31
|
+
id="rect32"
|
|
32
|
+
width="7.9036541"
|
|
33
|
+
height="0.34812221"
|
|
34
|
+
x="7.9906015"
|
|
35
|
+
y="45.626808"
|
|
36
|
+
ry="0" />
|
|
37
|
+
<rect
|
|
38
|
+
style="opacity:0.52293;fill:#44406c;fill-opacity:1;stroke:none;stroke-width:0.581099;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
39
|
+
id="rect32-8"
|
|
40
|
+
width="7.9036541"
|
|
41
|
+
height="0.34812221"
|
|
42
|
+
x="7.9906015"
|
|
43
|
+
y="43.525185"
|
|
44
|
+
ry="0" />
|
|
45
|
+
<rect
|
|
46
|
+
style="opacity:0.52293;fill:#44406c;fill-opacity:1;stroke:none;stroke-width:0.581099;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
47
|
+
id="rect32-8-6"
|
|
48
|
+
width="7.9036541"
|
|
49
|
+
height="0.34812221"
|
|
50
|
+
x="7.9906015"
|
|
51
|
+
y="41.616962"
|
|
52
|
+
ry="0" />
|
|
53
|
+
</g>
|
|
54
|
+
<g
|
|
55
|
+
id="g37"
|
|
56
|
+
style="fill:#833e58;fill-opacity:1"
|
|
57
|
+
transform="translate(0.51449384)">
|
|
58
|
+
<rect
|
|
59
|
+
style="fill:#833e58;fill-opacity:1;stroke:none;stroke-width:1.24269;stroke-dasharray:none"
|
|
60
|
+
id="rect31-2"
|
|
61
|
+
width="0.5415228"
|
|
62
|
+
height="7.555532"
|
|
63
|
+
x="47.688801"
|
|
64
|
+
y="-15.957767"
|
|
65
|
+
ry="0"
|
|
66
|
+
transform="rotate(90)" />
|
|
67
|
+
<rect
|
|
68
|
+
style="opacity:0.495691;fill:#833e58;fill-opacity:1;stroke:none;stroke-width:0.581099;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
69
|
+
id="rect32-4"
|
|
70
|
+
width="7.9036541"
|
|
71
|
+
height="0.34812221"
|
|
72
|
+
x="39.963547"
|
|
73
|
+
y="-10.111564"
|
|
74
|
+
ry="0"
|
|
75
|
+
transform="rotate(90)" />
|
|
76
|
+
<rect
|
|
77
|
+
style="opacity:0.495691;fill:#833e58;fill-opacity:1;stroke:none;stroke-width:0.581099;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
78
|
+
id="rect32-8-8"
|
|
79
|
+
width="7.9036541"
|
|
80
|
+
height="0.34812221"
|
|
81
|
+
x="39.963547"
|
|
82
|
+
y="-12.21319"
|
|
83
|
+
ry="0"
|
|
84
|
+
transform="rotate(90)" />
|
|
85
|
+
<rect
|
|
86
|
+
style="opacity:0.495691;fill:#833e58;fill-opacity:1;stroke:none;stroke-width:0.581099;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
87
|
+
id="rect32-8-6-1"
|
|
88
|
+
width="7.9036541"
|
|
89
|
+
height="0.34812221"
|
|
90
|
+
x="39.963547"
|
|
91
|
+
y="-14.121414"
|
|
92
|
+
ry="0"
|
|
93
|
+
transform="rotate(90)" />
|
|
94
|
+
</g>
|
|
95
|
+
<g
|
|
96
|
+
id="path31"
|
|
97
|
+
style="opacity:1;fill:#e55b5b;fill-opacity:1"
|
|
98
|
+
transform="translate(0.51449384)">
|
|
99
|
+
<path
|
|
100
|
+
style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#e55b5b;fill-opacity:1;stroke-linecap:round;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
|
|
101
|
+
d="m 14.75,41.009766 a 0.4261145,0.4261145 0 0 0 -0.548828,0.246093 l -1.539063,4.035157 -2.7988277,-1.828125 -2.2187501,4.003906 a 0.4261145,0.4261145 0 0 0 0.1660157,0.580078 0.4261145,0.4261145 0 0 0 0.578125,-0.166016 l 1.7753911,-3.203125 2.919921,1.90625 1.914063,-5.023437 A 0.4261145,0.4261145 0 0 0 14.75,41.009766 Z"
|
|
102
|
+
id="path37" />
|
|
103
|
+
<g
|
|
104
|
+
id="g34"
|
|
105
|
+
style="fill:#e55b5b;fill-opacity:1">
|
|
106
|
+
<g
|
|
107
|
+
id="path34"
|
|
108
|
+
style="opacity:1;fill:#e55b5b;fill-opacity:1">
|
|
109
|
+
<path
|
|
110
|
+
style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#e55b5b;fill-opacity:1;fill-rule:evenodd;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
|
|
111
|
+
d="m 14.94942,40.489174 0.271427,1.681175 -1.592757,-0.60688 z"
|
|
112
|
+
id="path35" />
|
|
113
|
+
<path
|
|
114
|
+
style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#e55b5b;fill-opacity:1;fill-rule:evenodd;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
|
|
115
|
+
d="m 15.029297,40.277344 -1.625,1.322265 1.960937,0.746094 z m -0.160156,0.423828 0.208984,1.292969 -1.224609,-0.466797 z"
|
|
116
|
+
id="path36" />
|
|
117
|
+
</g>
|
|
118
|
+
</g>
|
|
119
|
+
</g>
|
|
120
|
+
<rect
|
|
121
|
+
style="fill:#e55b5b;fill-opacity:1;stroke:none;stroke-width:0.475768;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
122
|
+
id="rect33"
|
|
123
|
+
width="1.3883848"
|
|
124
|
+
height="1.3883848"
|
|
125
|
+
x="7.7852659"
|
|
126
|
+
y="47.124367"
|
|
127
|
+
ry="0" />
|
|
128
|
+
</g>
|
|
129
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="11.410001mm"
|
|
6
|
+
height="11.079999mm"
|
|
7
|
+
viewBox="0 0 11.410001 11.079999"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg1"
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs1" />
|
|
14
|
+
<g
|
|
15
|
+
id="layer1"
|
|
16
|
+
transform="translate(-32.201208,-25.815545)">
|
|
17
|
+
<rect
|
|
18
|
+
style="fill:#3c89a9;fill-opacity:1;stroke:none;stroke-width:0.665001;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
19
|
+
id="rect22-8"
|
|
20
|
+
width="9.1807308"
|
|
21
|
+
height="2.3454421"
|
|
22
|
+
x="33.448086"
|
|
23
|
+
y="30.126856"
|
|
24
|
+
ry="0.20103791" />
|
|
25
|
+
<circle
|
|
26
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.765;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:0.3825, 0.3825;stroke-dashoffset:0;stroke-opacity:1"
|
|
27
|
+
id="path23-1"
|
|
28
|
+
cx="34.523655"
|
|
29
|
+
cy="31.308695"
|
|
30
|
+
r="0.50259477" />
|
|
31
|
+
<rect
|
|
32
|
+
style="fill:#426471;fill-opacity:1;stroke:none;stroke-width:0.665001;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
33
|
+
id="rect22-8-4"
|
|
34
|
+
width="9.1807308"
|
|
35
|
+
height="2.3454421"
|
|
36
|
+
x="33.448086"
|
|
37
|
+
y="33.108917"
|
|
38
|
+
ry="0.20103791" />
|
|
39
|
+
<circle
|
|
40
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.765;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:0.3825, 0.3825;stroke-dashoffset:0;stroke-opacity:1"
|
|
41
|
+
id="path23-1-4"
|
|
42
|
+
cx="34.523655"
|
|
43
|
+
cy="34.290756"
|
|
44
|
+
r="0.50259477" />
|
|
45
|
+
<rect
|
|
46
|
+
style="fill:#76c9ed;fill-opacity:1;stroke:none;stroke-width:0.665001;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
47
|
+
id="rect22"
|
|
48
|
+
width="9.1807308"
|
|
49
|
+
height="2.3454421"
|
|
50
|
+
x="33.498344"
|
|
51
|
+
y="27.178297"
|
|
52
|
+
ry="0.20103791" />
|
|
53
|
+
<circle
|
|
54
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.765;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:0.3825, 0.3825;stroke-dashoffset:0;stroke-opacity:1"
|
|
55
|
+
id="path23"
|
|
56
|
+
cx="34.573914"
|
|
57
|
+
cy="28.360136"
|
|
58
|
+
r="0.50259477" />
|
|
59
|
+
</g>
|
|
60
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="8mm"
|
|
6
|
+
height="7.9999995mm"
|
|
7
|
+
viewBox="0 0 8 7.9999998"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg1"
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs1" />
|
|
14
|
+
<g
|
|
15
|
+
id="layer1"
|
|
16
|
+
transform="translate(35.662837,-42.404388)">
|
|
17
|
+
<path
|
|
18
|
+
id="path46"
|
|
19
|
+
style="fill:#5c3a78;fill-opacity:1;stroke:none;stroke-width:0.157052;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
20
|
+
d="m -29.684932,43.048057 c 0,0 -0.276655,0.281736 -0.676323,0.68985 l -0.306191,-0.30619 -1.121467,1.121468 0.318487,0.318487 c -0.253532,0.259347 -0.507356,0.519273 -0.741497,0.759327 a 0.61213829,0.61213829 0 0 0 -0.211505,-0.03751 0.61213829,0.61213829 0 0 0 -0.61238,0.611765 0.61213829,0.61213829 0 0 0 0.04365,0.228106 c -0.05605,0.05796 -0.105033,0.108845 -0.146332,0.151866 -0.340809,0.35501 -0.720885,0.783584 -0.929638,1.26411 -0.10438,0.240263 -0.165391,0.49917 -0.137108,0.764245 0.02828,0.265077 0.151286,0.52757 0.374437,0.750721 0.209688,0.209688 0.419871,0.344038 0.636974,0.399644 0.217103,0.05561 0.430995,0.02352 0.612995,-0.05103 0.363999,-0.149108 0.638208,-0.436428 0.927179,-0.659723 l -0.0018,-0.0025 1.334817,-1.109171 -1.157743,0.438381 0.102064,0.230564 -0.210891,-0.156783 -0.380586,0.194904 -0.0018,-0.0025 c -0.32317,0.249721 -0.592696,0.502846 -0.806055,0.590247 -0.106676,0.0437 -0.18881,0.05441 -0.290819,0.02828 -0.102012,-0.02613 -0.233705,-0.09721 -0.399646,-0.263151 -0.15248,-0.152481 -0.211427,-0.292747 -0.227491,-0.443299 -0.01606,-0.150551 0.01781,-0.320724 0.09776,-0.504784 0.159922,-0.368121 0.502442,-0.772257 0.82942,-1.11286 0.04167,-0.0434 0.09155,-0.09515 0.14879,-0.154325 a 0.61213829,0.61213829 0 0 0 0.19429,0.03136 0.61213829,0.61213829 0 0 0 0.611765,-0.612381 0.61213829,0.61213829 0 0 0 -0.03689,-0.20966 c 0.233956,-0.239873 0.488101,-0.500089 0.742111,-0.759942 l 0.320946,0.320947 1.121467,-1.121468 -0.333242,-0.333243 c 0.401352,-0.409872 0.679398,-0.693539 0.679398,-0.693539 z" />
|
|
21
|
+
</g>
|
|
22
|
+
</svg>
|