@lukekaalim/act-insight 1.0.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 +30 -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 +78 -11
- package/InsightApp.ts +0 -365
- package/MenuBar.module.css +0 -18
- package/MenuBar.ts +0 -39
- package/ScheduleControls.ts +0 -61
- package/lookup.ts +0 -185
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import ancestor_column from './ancestor_column.svg';
|
|
2
|
+
import ancestor_skip_row_column from './ancestor_skip_row_column.svg';
|
|
3
|
+
|
|
4
|
+
import breakpoint_arrow_paused from './breakpoint_arrow_paused.svg';
|
|
5
|
+
import breakpoint_arrow from './breakpoint_arrow.svg';
|
|
6
|
+
import breakpoint_panel from './breakpoint_panel.svg';
|
|
7
|
+
import breakpoint_unset from './breakpoint_unset.svg';
|
|
8
|
+
import breakpoint from './breakpoint.svg';
|
|
9
|
+
import bug from './bug.svg';
|
|
10
|
+
import children from './children.svg';
|
|
11
|
+
import collapse from './collapse.svg';
|
|
12
|
+
import commit_tree from './commit_tree.svg';
|
|
13
|
+
import commit from './commit.svg';
|
|
14
|
+
import expand from './expand.svg';
|
|
15
|
+
import eye from './eye.svg';
|
|
16
|
+
import effect from './effect.svg';
|
|
17
|
+
import filter from './filter.svg';
|
|
18
|
+
import graph from './graph.svg';
|
|
19
|
+
import history_list from './history_list.svg';
|
|
20
|
+
import hook from './hook.svg';
|
|
21
|
+
import inspector_panel from './inspector_panel.svg';
|
|
22
|
+
import magnifying_glass from './magnifying_glass.svg';
|
|
23
|
+
import pause from './pause.svg';
|
|
24
|
+
import play from './play.svg';
|
|
25
|
+
import reload from './reload.svg';
|
|
26
|
+
import selection from './selection.svg';
|
|
27
|
+
import side_effects from './side_effects.svg';
|
|
28
|
+
import skip from './skip.svg';
|
|
29
|
+
import step from './step.svg';
|
|
30
|
+
import step_over_children from './step_over_children.svg'
|
|
31
|
+
import tree_column from './tree_column.svg';
|
|
32
|
+
import tree_end from './tree_end.svg';
|
|
33
|
+
import tree_junction from './tree_junction.svg';
|
|
34
|
+
import thread from './thread.svg';
|
|
35
|
+
import vertical_grab_handle from './vertical_grab_handle.svg';
|
|
36
|
+
|
|
37
|
+
export const icons = {
|
|
38
|
+
ancestor_column,
|
|
39
|
+
ancestor_skip_row_column,
|
|
40
|
+
breakpoint_arrow_paused,
|
|
41
|
+
breakpoint_arrow,
|
|
42
|
+
breakpoint_panel,
|
|
43
|
+
breakpoint_unset,
|
|
44
|
+
breakpoint,
|
|
45
|
+
bug,
|
|
46
|
+
children,
|
|
47
|
+
collapse,
|
|
48
|
+
commit_tree,
|
|
49
|
+
commit,
|
|
50
|
+
expand,
|
|
51
|
+
eye,
|
|
52
|
+
effect,
|
|
53
|
+
filter,
|
|
54
|
+
graph,
|
|
55
|
+
history_list,
|
|
56
|
+
hook,
|
|
57
|
+
inspector_panel,
|
|
58
|
+
magnifying_glass,
|
|
59
|
+
pause,
|
|
60
|
+
play,
|
|
61
|
+
reload,
|
|
62
|
+
selection,
|
|
63
|
+
side_effects,
|
|
64
|
+
skip,
|
|
65
|
+
step,
|
|
66
|
+
step_over_children,
|
|
67
|
+
tree_column,
|
|
68
|
+
tree_end,
|
|
69
|
+
tree_junction,
|
|
70
|
+
thread,
|
|
71
|
+
vertical_grab_handle
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
for (const icon of Object.keys(icons) as (keyof typeof icons)[]) {
|
|
75
|
+
icons[icon] = new URL(icons[icon], location.href).href;
|
|
76
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1,135 @@
|
|
|
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(17.421652,-16.969879)">
|
|
17
|
+
<g
|
|
18
|
+
id="g12-9"
|
|
19
|
+
transform="translate(0,14.943818)">
|
|
20
|
+
<rect
|
|
21
|
+
style="fill:#c7d1d9;fill-opacity:1;stroke:#5d7388;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
22
|
+
id="rect11-5"
|
|
23
|
+
width="7.3140426"
|
|
24
|
+
height="9.9508686"
|
|
25
|
+
x="-16.158314"
|
|
26
|
+
y="2.9852602"
|
|
27
|
+
ry="0" />
|
|
28
|
+
<rect
|
|
29
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
30
|
+
id="rect12-0"
|
|
31
|
+
width="3.3841388"
|
|
32
|
+
height="0.63661981"
|
|
33
|
+
x="-15.746336"
|
|
34
|
+
y="3.7683892"
|
|
35
|
+
ry="0.23643248" />
|
|
36
|
+
<rect
|
|
37
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
38
|
+
id="rect12-1-4"
|
|
39
|
+
width="3.3841388"
|
|
40
|
+
height="0.63661981"
|
|
41
|
+
x="-15.059457"
|
|
42
|
+
y="4.6060472"
|
|
43
|
+
ry="0.23643248" />
|
|
44
|
+
<rect
|
|
45
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
46
|
+
id="rect12-6-8"
|
|
47
|
+
width="1.1057094"
|
|
48
|
+
height="0.63662004"
|
|
49
|
+
x="-15.746336"
|
|
50
|
+
y="5.4437051"
|
|
51
|
+
ry="0.23643248" />
|
|
52
|
+
<rect
|
|
53
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
54
|
+
id="rect12-1-5-7"
|
|
55
|
+
width="1.1392158"
|
|
56
|
+
height="0.63662004"
|
|
57
|
+
x="-15.746336"
|
|
58
|
+
y="6.281363"
|
|
59
|
+
ry="0.23643248" />
|
|
60
|
+
<rect
|
|
61
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
62
|
+
id="rect12-4-1"
|
|
63
|
+
width="1.3402537"
|
|
64
|
+
height="0.63662004"
|
|
65
|
+
x="-15.176728"
|
|
66
|
+
y="7.1860337"
|
|
67
|
+
ry="0.23643248" />
|
|
68
|
+
<rect
|
|
69
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
70
|
+
id="rect12-1-52-7"
|
|
71
|
+
width="3.0658281"
|
|
72
|
+
height="0.63661957"
|
|
73
|
+
x="-15.428026"
|
|
74
|
+
y="8.0236921"
|
|
75
|
+
ry="0.23643248" />
|
|
76
|
+
<rect
|
|
77
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
78
|
+
id="rect12-6-5-2"
|
|
79
|
+
width="3.4176464"
|
|
80
|
+
height="0.63661957"
|
|
81
|
+
x="-15.39452"
|
|
82
|
+
y="8.8613501"
|
|
83
|
+
ry="0.23643248" />
|
|
84
|
+
<rect
|
|
85
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
86
|
+
id="rect12-1-5-4-7"
|
|
87
|
+
width="3.3841388"
|
|
88
|
+
height="0.63661981"
|
|
89
|
+
x="-15.746336"
|
|
90
|
+
y="9.699008"
|
|
91
|
+
ry="0.23643248" />
|
|
92
|
+
<rect
|
|
93
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
94
|
+
id="rect12-1-5-0-2"
|
|
95
|
+
width="2.9150507"
|
|
96
|
+
height="0.63661957"
|
|
97
|
+
x="-15.210235"
|
|
98
|
+
y="10.620432"
|
|
99
|
+
ry="0.23643248" />
|
|
100
|
+
<rect
|
|
101
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
102
|
+
id="rect12-4-7-2"
|
|
103
|
+
width="3.3841388"
|
|
104
|
+
height="0.63661981"
|
|
105
|
+
x="-15.260494"
|
|
106
|
+
y="11.525103"
|
|
107
|
+
ry="0.23643248" />
|
|
108
|
+
</g>
|
|
109
|
+
<g
|
|
110
|
+
id="g14"
|
|
111
|
+
transform="matrix(1.4293703,0,0,1.4293703,5.3740179,-9.179078)">
|
|
112
|
+
<circle
|
|
113
|
+
style="fill:#5d8862;fill-opacity:1;stroke:none;stroke-width:0.112963;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
114
|
+
id="path13-1"
|
|
115
|
+
cx="-12.251043"
|
|
116
|
+
cy="21.341175"
|
|
117
|
+
r="2.1411114" />
|
|
118
|
+
<rect
|
|
119
|
+
style="fill:#5d8862;fill-opacity:1;stroke:none;stroke-width:0.112963;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
120
|
+
id="rect13-1"
|
|
121
|
+
width="7.1045971"
|
|
122
|
+
height="1.5719602"
|
|
123
|
+
x="4.8940549"
|
|
124
|
+
y="23.082003"
|
|
125
|
+
ry="0.37307248"
|
|
126
|
+
transform="rotate(45)" />
|
|
127
|
+
<circle
|
|
128
|
+
style="fill:#e0ede1;fill-opacity:1;stroke:none;stroke-width:0.0838667;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
129
|
+
id="path13-9-5"
|
|
130
|
+
cx="-12.251043"
|
|
131
|
+
cy="21.341175"
|
|
132
|
+
r="1.589613" />
|
|
133
|
+
</g>
|
|
134
|
+
</g>
|
|
135
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,39 @@
|
|
|
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(-39.282241,-2.2270992)">
|
|
17
|
+
<circle
|
|
18
|
+
style="fill:#5d8862;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
19
|
+
id="path13"
|
|
20
|
+
cx="43.689053"
|
|
21
|
+
cy="6.4206791"
|
|
22
|
+
r="3.1274157" />
|
|
23
|
+
<rect
|
|
24
|
+
style="fill:#5d8862;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
25
|
+
id="rect13"
|
|
26
|
+
width="10.377335"
|
|
27
|
+
height="2.2960846"
|
|
28
|
+
x="33.192822"
|
|
29
|
+
y="-27.333229"
|
|
30
|
+
ry="0.54492855"
|
|
31
|
+
transform="rotate(45)" />
|
|
32
|
+
<circle
|
|
33
|
+
style="fill:#e0ede1;fill-opacity:1;stroke:none;stroke-width:0.1225;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
34
|
+
id="path13-9"
|
|
35
|
+
cx="43.689053"
|
|
36
|
+
cy="6.4206791"
|
|
37
|
+
r="2.3218691" />
|
|
38
|
+
</g>
|
|
39
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="5.8520594mm"
|
|
6
|
+
height="5.9942136mm"
|
|
7
|
+
viewBox="0 0 5.8520594 5.9942138"
|
|
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(-14.33399,-16.798015)">
|
|
17
|
+
<rect
|
|
18
|
+
style="fill:#5d7388;fill-opacity:1;stroke-width:0.22508"
|
|
19
|
+
id="rect5"
|
|
20
|
+
width="1.5069969"
|
|
21
|
+
height="4.8598962"
|
|
22
|
+
x="15.211948"
|
|
23
|
+
y="17.417656"
|
|
24
|
+
ry="0.085511364" />
|
|
25
|
+
<rect
|
|
26
|
+
style="fill:#5d7388;fill-opacity:1;stroke-width:0.22508"
|
|
27
|
+
id="rect5-5"
|
|
28
|
+
width="1.5069969"
|
|
29
|
+
height="4.8598962"
|
|
30
|
+
x="17.77166"
|
|
31
|
+
y="17.417656"
|
|
32
|
+
ry="0.085511364" />
|
|
33
|
+
</g>
|
|
34
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="5.5203624mm"
|
|
6
|
+
height="5.9705205mm"
|
|
7
|
+
viewBox="0 0 5.5203624 5.9705207"
|
|
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.823453,-16.821706)">
|
|
17
|
+
<path
|
|
18
|
+
style="fill:#5d7388;fill-opacity:1;stroke-width:0.264583"
|
|
19
|
+
id="path5"
|
|
20
|
+
d="m 10.88808,18.477663 -2.234216,1.289925 -2.2342161,1.289926 0,-2.579851 0,-2.57985 2.2342162,1.289925 z"
|
|
21
|
+
transform="translate(0.9381769,1.3402527)" />
|
|
22
|
+
</g>
|
|
23
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,39 @@
|
|
|
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
|
+
<marker
|
|
15
|
+
style="overflow:visible"
|
|
16
|
+
id="marker20"
|
|
17
|
+
refX="0"
|
|
18
|
+
refY="0"
|
|
19
|
+
orient="auto-start-reverse"
|
|
20
|
+
markerWidth="0.40000001"
|
|
21
|
+
markerHeight="0.40000001"
|
|
22
|
+
viewBox="0 0 1 1"
|
|
23
|
+
preserveAspectRatio="xMidYMid">
|
|
24
|
+
<path
|
|
25
|
+
transform="scale(0.5)"
|
|
26
|
+
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
|
|
27
|
+
d="M 5.77,0 -2.88,5 V -5 Z"
|
|
28
|
+
id="path20" />
|
|
29
|
+
</marker>
|
|
30
|
+
</defs>
|
|
31
|
+
<g
|
|
32
|
+
id="layer1"
|
|
33
|
+
transform="translate(-43.224788,-16.969879)">
|
|
34
|
+
<path
|
|
35
|
+
id="path24"
|
|
36
|
+
style="fill:none;stroke:#5d7388;stroke-width:0.909;stroke-dasharray:none;marker-start:url(#marker20)"
|
|
37
|
+
d="m 47.474521,18.509594 c 0.3553,0.3553 0.575058,0.846143 0.575058,1.388313 0,1.084339 -0.879032,1.96337 -1.963371,1.96337 -1.084339,0 -1.963371,-0.879031 -1.963371,-1.96337 0,-0.54217 0.219758,-1.033013 0.575058,-1.388313" />
|
|
38
|
+
</g>
|
|
39
|
+
</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(-87.517512,-3.0208489)">
|
|
17
|
+
<path
|
|
18
|
+
id="rect21"
|
|
19
|
+
style="baseline-shift:baseline;display:inline;overflow:visible;opacity:1;vector-effect:none;fill:#5d7388;stroke-width:0.955795;stroke-dasharray:1.35533, 0.677658;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
|
|
20
|
+
d="m 93.869497,5.8532304 v 0.6781701 h 1.355157 V 5.8532304 Z m 2.033327,0 V 6.5314005 H 97.25798 V 5.8532304 Z m 2.032144,0 v 0.6781701 h 0.349145 V 6.94209 h 0.67817 V 6.366888 l -0.01008,-0.089357 -0.03196,-0.1011933 -0.04852,-0.091133 -0.06569,-0.078706 -0.07811,-0.065095 -0.09113,-0.048526 -0.100601,-0.031955 -0.08995,-0.0077 z m -9.416269,0.00887 -0.08995,0.0077 -0.100601,0.031363 -0.09173,0.048526 -0.07811,0.065687 -0.06509,0.078114 -0.04912,0.091725 -0.03137,0.1006012 -0.0095,0.089949 v 0.5746102 h 0.677578 V 6.5396853 h 0.349145 V 5.862107 Z m 1.18887,0 v 0.6775783 h 1.355156 V 5.862107 Z m 2.032734,0 v 0.67758 H 93.09546 V 5.862107 Z m 6.544402,1.7575614 v 1.3551567 h 0.677578 v -1.355155 z m -10.281439,0.00828 v 1.3557486 h 0.677578 V 7.6279532 Z m 10.259543,1.846919 V 10.82943 h 0.677578 V 9.4748721 Z m -10.237056,0.00828 v 1.3551572 h 0.677579 V 9.483157 Z m 10.235873,2.0244502 v 0.41069 H 97.91248 v 0.677578 h 0.511883 l 0.08936,-0.0077 0.100005,-0.03196 0.09232,-0.04852 0.07811,-0.06509 0.06569,-0.07871 0.04852,-0.09113 0.03137,-0.100601 0.01065,-0.08936 v -0.575202 z m -10.235873,0.0089 v 0.57461 l 0.0095,0.08995 0.03137,0.100601 0.04852,0.09173 0.06569,0.07811 0.07811,0.06509 0.09173,0.04852 0.100601,0.03196 0.08936,0.0077 h 0.511882 v -0.677578 h -0.349144 v -0.410708 z m 5.821849,0.401813 v 0.677578 h 1.355156 V 11.91834 Z m 2.032143,0 v 0.677578 h 1.355748 V 11.91834 Z m -6.149689,0.0089 v 0.677578 h 1.355156 v -0.677578 z m 2.032735,0 v 0.677578 h 1.355156 v -0.677578 z" />
|
|
21
|
+
</g>
|
|
22
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,48 @@
|
|
|
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
|
+
<marker
|
|
15
|
+
style="overflow:visible"
|
|
16
|
+
id="marker20"
|
|
17
|
+
refX="0"
|
|
18
|
+
refY="0"
|
|
19
|
+
orient="auto-start-reverse"
|
|
20
|
+
markerWidth="0.40000001"
|
|
21
|
+
markerHeight="0.40000001"
|
|
22
|
+
viewBox="0 0 1 1"
|
|
23
|
+
preserveAspectRatio="xMidYMid">
|
|
24
|
+
<path
|
|
25
|
+
transform="scale(0.5)"
|
|
26
|
+
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
|
|
27
|
+
d="M 5.77,0 -2.88,5 V -5 Z"
|
|
28
|
+
id="path20" />
|
|
29
|
+
</marker>
|
|
30
|
+
</defs>
|
|
31
|
+
<g
|
|
32
|
+
id="layer1"
|
|
33
|
+
transform="translate(-18.930344,-25.659024)">
|
|
34
|
+
<path
|
|
35
|
+
style="fill:#495a6a;fill-opacity:1;stroke:#d66741;stroke-width:1.127;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker20)"
|
|
36
|
+
d="m 22.169364,26.468844 v 8.46111"
|
|
37
|
+
id="path19" />
|
|
38
|
+
<path
|
|
39
|
+
style="fill:none;fill-opacity:1;stroke:#d66741;stroke-width:1.127;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
40
|
+
d="m 22.167968,27.540435 c 0,4.242901 3.906846,0.434477 3.906846,4.911462"
|
|
41
|
+
id="path21" />
|
|
42
|
+
<path
|
|
43
|
+
style="fill:#ffa504;fill-opacity:1;stroke:#c83d1d;stroke-width:0.265316;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
44
|
+
id="path22"
|
|
45
|
+
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"
|
|
46
|
+
transform="matrix(-0.45991503,-0.82240832,0.82240832,-0.45991503,10.833952,67.545152)" />
|
|
47
|
+
</g>
|
|
48
|
+
</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="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(-21.03898,-16.798013)">
|
|
17
|
+
<path
|
|
18
|
+
id="path5-2"
|
|
19
|
+
style="fill:#5d7388;fill-opacity:1;stroke-width:0.264583"
|
|
20
|
+
d="m 21.597294,17.238069 v 2.579688 2.580204 l 2.233972,-1.29036 1.112077,-0.642339 v 1.727027 c 0,0.04737 0.03841,0.08527 0.08578,0.08527 h 1.335836 c 0.04737,0 0.08578,-0.03789 0.08578,-0.08527 v -4.68912 c 0,-0.04737 -0.03841,-0.08527 -0.08578,-0.08527 h -1.335836 c -0.04737,0 -0.08578,0.03789 -0.08578,0.08527 v 1.667082 l -1.112077,-0.642338 z" />
|
|
21
|
+
</g>
|
|
22
|
+
</svg>
|