npmapps 1.0.24 → 1.0.26
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/app/.codegraph/daemon.pid +6 -0
- package/app/.eslintrc.js +19 -0
- package/app/README.md +24 -0
- package/app/babel.config.js +5 -0
- package/app/devtool-windows-amd64.zip +0 -0
- package/app/docs/superpowers/plans/2026-05-29-quill-editor.md +836 -0
- package/app/docs/superpowers/specs/2026-05-29-quill-editor-design.md +210 -0
- package/app/docs/superpowers/specs/2026-06-06-lazy-cascader-design.md +400 -0
- package/app/jsconfig.json +19 -0
- package/app/package-lock.json +21347 -0
- package/app/package.json +63 -0
- package/app/postcss.config.js +10 -0
- package/app/public/favicon.ico +0 -0
- package/app/public/index.html +17 -0
- package/app/public//344/270/200/351/224/256/351/273/221/346/232/227.html +136 -0
- package/app/src/App.vue +110 -0
- package/app/src/assets/bpmn-camunda.jpg +0 -0
- package/app/src/assets/css/diagram.less +17 -0
- package/app/src/assets/icon/Icon.less +31 -0
- package/app/src/assets/icon/font/app-codes.css +26 -0
- package/app/src/assets/icon/font/app.eot +0 -0
- package/app/src/assets/icon/font/app.svg +60 -0
- package/app/src/assets/icon/font/app.ttf +0 -0
- package/app/src/assets/icon/font/app.woff +0 -0
- package/app/src/assets/icon/font/app.woff2 +0 -0
- package/app/src/assets/icon/font/config.json +248 -0
- package/app/src/assets/icon/font/source/raw/align-bottom-tool.svg +30 -0
- package/app/src/assets/icon/font/source/raw/align-horizontal-center-tool.svg +85 -0
- package/app/src/assets/icon/font/source/raw/align-left-tool.svg +84 -0
- package/app/src/assets/icon/font/source/raw/align-right-tool.svg +80 -0
- package/app/src/assets/icon/font/source/raw/align-top-tool.svg +84 -0
- package/app/src/assets/icon/font/source/raw/align-vertical-center-tool.svg +89 -0
- package/app/src/assets/icon/font/source/raw/distribute-horizontally-tool.svg +95 -0
- package/app/src/assets/icon/font/source/raw/distribute-vertically-tool.svg +99 -0
- package/app/src/assets/icon/font/source/raw/set-color-tool.svg +111 -0
- package/app/src/assets/icon/font/source/symbols/align-bottom-tool.svg +30 -0
- package/app/src/assets/icon/font/source/symbols/align-horizontal-center-tool.svg +30 -0
- package/app/src/assets/icon/font/source/symbols/align-left-tool.svg +30 -0
- package/app/src/assets/icon/font/source/symbols/align-right-tool.svg +30 -0
- package/app/src/assets/icon/font/source/symbols/align-top-tool.svg +30 -0
- package/app/src/assets/icon/font/source/symbols/align-vertical-center-tool.svg +30 -0
- package/app/src/assets/icon/font/source/symbols/distribute-horizontally-tool.svg +30 -0
- package/app/src/assets/icon/font/source/symbols/distribute-vertically-tool.svg +30 -0
- package/app/src/assets/icon/font/source/symbols/set-color-tool.svg +63 -0
- package/app/src/assets/logo.png +0 -0
- package/app/src/components/EllTable/README.md +70 -0
- package/app/src/components/EllTable/article.md +184 -0
- package/app/src/components/EllTable/index.js +213 -0
- package/app/src/components/FormulaEditor/FunctionSelector.vue +123 -0
- package/app/src/components/FormulaEditor/OperatorSelector.vue +184 -0
- package/app/src/components/FormulaEditor/ParameterSelector.vue +123 -0
- package/app/src/components/FormulaEditor/api.js +69 -0
- package/app/src/components/FormulaEditor/index.vue +435 -0
- package/app/src/components/HelloWorld.vue +58 -0
- package/app/src/components/PageHeader/index.vue +158 -0
- package/app/src/components/Splitter/README.md +144 -0
- package/app/src/components/Splitter/example.vue +88 -0
- package/app/src/components/Splitter/index.vue +203 -0
- package/app/src/components/diagram/ToolBar.vue +357 -0
- package/app/src/components/diagram/customTranslate/customTranslate.js +12 -0
- package/app/src/components/diagram/customTranslate/translationsGerman.js +241 -0
- package/app/src/components/diagram/index.vue +261 -0
- package/app/src/components/diagram/xmlData.js +29 -0
- package/app/src/directives/filldown.js +155 -0
- package/app/src/directives/filldownTable.js +291 -0
- package/app/src/main.js +40 -0
- package/app/src/router/index.js +63 -0
- package/app/src/store/index.js +23 -0
- package/app/src/utils/winBox.js +23 -0
- package/app/src/views/Extend/A.vue +12 -0
- package/app/src/views/Extend/B.vue +10 -0
- package/app/src/views/Extend/MagicalComponentsForELFormItem.vue +87 -0
- package/app/src/views/Extend/index.vue +59 -0
- package/app/src/views/Extend/tableMouseHorizontalWheel.vue +193 -0
- package/app/src/views/Home.vue +37 -0
- package/app/src/views/RouterJump.vue +155 -0
- package/app/src/views/css.vue +57 -0
- package/app/src/views/cssComponents/EllipsisText.vue +83 -0
- package/app/src/views/cssComponents/HoverCard.vue +79 -0
- package/app/src/views/cssComponents/TableHover.vue +140 -0
- package/app/src/views/cssComponents/inputSlo.vue +52 -0
- package/app/src/views/cssComponents/tableFixed.vue +158 -0
- package/app/src/views/echarts/echart-dome.vue +82 -0
- package/app/src/views/echarts/index.vue +118 -0
- package/app/src/views/echarts/pei3d.vue +667 -0
- package/app/src/views/element/bpmn/index.vue +18 -0
- package/app/src/views/element/components/attendanceCycle/index.vue +131 -0
- package/app/src/views/element/components/attendanceGroup/index.vue +147 -0
- package/app/src/views/element/components/attendancePersonnel/index.vue +158 -0
- package/app/src/views/element/components/companyCalendar/index.vue +147 -0
- package/app/src/views/element/components/shift/index.vue +147 -0
- package/app/src/views/element/components/shiftRotationSystem/index.vue +147 -0
- package/app/src/views/element/elTableJsx/columnManagement.vue +340 -0
- package/app/src/views/element/elTableJsx/dialogInput.vue +71 -0
- package/app/src/views/element/elTableJsx/elTableJsx.vue +1826 -0
- package/app/src/views/element/elTableJsx/formTable.vue +598 -0
- package/app/src/views/element/elTableJsx/index.vue +29 -0
- package/app/src/views/element/elTableJsx/simpleTable.vue +192 -0
- package/app/src/views/element/elTableJsx.zip +0 -0
- package/app/src/views/element/index.vue +44 -0
- package/app/src/views/element/lazyCascader/LazyCascader.vue +302 -0
- package/app/src/views/element/lazyCascader/data.js +205 -0
- package/app/src/views/element/lazyCascader/index.vue +315 -0
- package/app/src/views/element/quillEditor/README.md +163 -0
- package/app/src/views/element/quillEditor/example.vue +314 -0
- package/app/src/views/element/quillEditor/index.vue +409 -0
- package/app/src/views/element/quillEditor/toolbar.js +122 -0
- package/app/vue.config.js +15 -0
- package/package.json +1 -1
- package/app/wujie-vue3-child/.claude/settings.local.json +0 -8
- package/app/wujie-vue3-child/.vscode/extensions.json +0 -3
- package/app/wujie-vue3-child/PROJECT_MEMORY.md +0 -427
- package/app/wujie-vue3-child/README.md +0 -5
- package/app/wujie-vue3-child/index.html +0 -13
- package/app/wujie-vue3-child/package-lock.json +0 -5744
- package/app/wujie-vue3-child/package.json +0 -28
- package/app/wujie-vue3-child/public/vite.svg +0 -1
- package/app/wujie-vue3-child/src/App.vue +0 -130
- package/app/wujie-vue3-child/src/assets/vue.svg +0 -1
- package/app/wujie-vue3-child/src/components/HelloWorld.vue +0 -43
- package/app/wujie-vue3-child/src/components/tags-view.vue +0 -193
- package/app/wujie-vue3-child/src/components/tags-view1.vue +0 -131
- package/app/wujie-vue3-child/src/directives/aiLoading.js +0 -182
- package/app/wujie-vue3-child/src/hooks/useClickOutside.js +0 -11
- package/app/wujie-vue3-child/src/hooks/useTableDragSort.js +0 -28
- package/app/wujie-vue3-child/src/main.js +0 -18
- package/app/wujie-vue3-child/src/router/index.js +0 -104
- package/app/wujie-vue3-child/src/store/tagsViewStroe.js +0 -34
- package/app/wujie-vue3-child/src/style.css +0 -171
- package/app/wujie-vue3-child/src/views/aiCoach/collapseExpand/index.jsx +0 -108
- package/app/wujie-vue3-child/src/views/aiCoach/collapseExpand/index.module.scss +0 -97
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/README.md +0 -836
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/REFLEX_EXAMPLES.md +0 -728
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentPersonnelSelector.jsx +0 -687
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentPersonnelSelector.module.scss +0 -560
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentSelector.jsx +0 -570
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentSelector.module.scss +0 -330
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentSelectorV2.jsx +0 -378
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentSelectorV2.module.scss +0 -228
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/OptionsSelector.jsx +0 -399
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/OptionsSelector.module.scss +0 -252
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/PersonnelSelector.jsx +0 -585
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/PersonnelSelector.module.scss +0 -331
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/PopoverSelector.jsx +0 -392
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/PopoverSelector.module.scss +0 -39
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/README.md +0 -248
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/SelectorTrigger.jsx +0 -194
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/index.jsx +0 -1459
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/mockData.js +0 -301
- package/app/wujie-vue3-child/src/views/aiCoach/dialogueSegment/index.jsx +0 -182
- package/app/wujie-vue3-child/src/views/aiCoach/dialogueSegment/index.module.scss +0 -28
- package/app/wujie-vue3-child/src/views/aiCoach/index.jsx +0 -293
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/ChartsPanel/index.jsx +0 -121
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/ChartsPanel/index.module.scss +0 -76
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/DonutChart/index.jsx +0 -104
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/PracticeTable/index.jsx +0 -75
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/PracticeTable/index.module.scss +0 -12
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankBarChart/index.jsx +0 -62
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankBarChart/index.module.scss +0 -43
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankingGroup/index.jsx +0 -29
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankingGroup/index.module.scss +0 -5
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankingList/index.jsx +0 -58
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankingList/index.module.scss +0 -85
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/ScriptStatsPanel/index.jsx +0 -92
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/ScriptStatsPanel/index.module.scss +0 -56
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/StatCardsRow/index.jsx +0 -40
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/StatCardsRow/index.module.scss +0 -53
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/echarts/EchartsDonut.jsx +0 -106
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/echarts/EchartsRankBar.jsx +0 -132
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/index.jsx +0 -176
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/index.module.scss +0 -96
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/CoachReport/index.jsx +0 -162
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/CoachReport/index.module.scss +0 -16
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ComprehensiveEvaluation/index.jsx +0 -29
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ComprehensiveEvaluation/index.module.scss +0 -25
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DialogueBubble/index.jsx +0 -106
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DialogueBubble/index.module.scss +0 -164
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DialogueRecord/index.jsx +0 -182
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DialogueRecord/index.module.scss +0 -203
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DimensionDetail/index.jsx +0 -145
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DimensionDetail/index.module.scss +0 -126
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DimensionScores/index.jsx +0 -67
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DimensionScores/index.module.scss +0 -105
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ReportHeader/index.jsx +0 -81
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ReportHeader/index.module.scss +0 -47
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/RoleInfo/index.jsx +0 -64
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/RoleInfo/index.module.scss +0 -85
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ScoreBadge/index.jsx +0 -39
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ScoreBadge/index.module.scss +0 -44
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/SubDimensionItem/index.jsx +0 -83
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/SubDimensionItem/index.module.scss +0 -101
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/index.jsx +0 -50
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/index.module.scss +0 -25
- package/app/wujie-vue3-child/src/views/aiCoach/scriptTable/index.jsx +0 -196
- package/app/wujie-vue3-child/src/views/aiCoach/scriptTable/index.module.scss +0 -41
- package/app/wujie-vue3-child/src/views/aiCoach/scriptTable/inputColumn/index.jsx +0 -183
- package/app/wujie-vue3-child/src/views/aiCoach/scriptTable/inputColumn/index.module.scss +0 -115
- package/app/wujie-vue3-child/src/views/child-to-parent.vue +0 -117
- package/app/wujie-vue3-child/src/views/home.vue +0 -53
- package/app/wujie-vue3-child/src/views/jsx/btnSelect/btnSelect.vue +0 -169
- package/app/wujie-vue3-child/src/views/jsx/btnSelect/index.vue +0 -69
- package/app/wujie-vue3-child/src/views/jsx/com.vue +0 -44
- package/app/wujie-vue3-child/src/views/jsx/dialog.jsx +0 -66
- package/app/wujie-vue3-child/src/views/jsx/index.vue +0 -72
- package/app/wujie-vue3-child/src/views/jsx/props.vue +0 -33
- package/app/wujie-vue3-child/src/views/parent-to-child.vue +0 -225
- package/app/wujie-vue3-child/src/views/phone-code.vue +0 -318
- package/app/wujie-vue3-child/src/views/router-jump.vue +0 -123
- package/app/wujie-vue3-child/src/views/test.vue +0 -192
- package/app/wujie-vue3-child/vite.config.js +0 -15
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
+
version="1.1"
|
|
11
|
+
id="svg3891"
|
|
12
|
+
height="2048"
|
|
13
|
+
width="2048"
|
|
14
|
+
inkscape:version="0.91 r13725"
|
|
15
|
+
sodipodi:docname="align-vertical-center-tool.svg">
|
|
16
|
+
<sodipodi:namedview
|
|
17
|
+
pagecolor="#ffffff"
|
|
18
|
+
bordercolor="#666666"
|
|
19
|
+
borderopacity="1"
|
|
20
|
+
objecttolerance="10"
|
|
21
|
+
gridtolerance="10"
|
|
22
|
+
guidetolerance="10"
|
|
23
|
+
inkscape:pageopacity="0"
|
|
24
|
+
inkscape:pageshadow="2"
|
|
25
|
+
inkscape:window-width="1600"
|
|
26
|
+
inkscape:window-height="847"
|
|
27
|
+
id="namedview8"
|
|
28
|
+
showgrid="true"
|
|
29
|
+
inkscape:snap-bbox="true"
|
|
30
|
+
inkscape:bbox-paths="true"
|
|
31
|
+
inkscape:snap-bbox-edge-midpoints="true"
|
|
32
|
+
inkscape:bbox-nodes="true"
|
|
33
|
+
inkscape:snap-bbox-midpoints="false"
|
|
34
|
+
inkscape:zoom="0.23046875"
|
|
35
|
+
inkscape:cx="-263.10357"
|
|
36
|
+
inkscape:cy="1024"
|
|
37
|
+
inkscape:window-x="-8"
|
|
38
|
+
inkscape:window-y="-8"
|
|
39
|
+
inkscape:window-maximized="1"
|
|
40
|
+
inkscape:current-layer="svg3891">
|
|
41
|
+
<inkscape:grid
|
|
42
|
+
type="xygrid"
|
|
43
|
+
id="grid4137"
|
|
44
|
+
empspacing="146" />
|
|
45
|
+
</sodipodi:namedview>
|
|
46
|
+
<defs
|
|
47
|
+
id="defs3893" />
|
|
48
|
+
<metadata
|
|
49
|
+
id="metadata3896">
|
|
50
|
+
<rdf:RDF>
|
|
51
|
+
<cc:Work
|
|
52
|
+
rdf:about="">
|
|
53
|
+
<dc:format>image/svg+xml</dc:format>
|
|
54
|
+
<dc:type
|
|
55
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
56
|
+
<dc:title></dc:title>
|
|
57
|
+
</cc:Work>
|
|
58
|
+
</rdf:RDF>
|
|
59
|
+
</metadata>
|
|
60
|
+
<g
|
|
61
|
+
id="g4138"
|
|
62
|
+
transform="matrix(0,1,-1,0,2048,4.0000065)">
|
|
63
|
+
<path
|
|
64
|
+
style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
65
|
+
d="m 1027.9727,1318 c 0,146 0,146 0,146"
|
|
66
|
+
id="path4363-4-2-8-5-8-0-8"
|
|
67
|
+
inkscape:connector-curvature="0" />
|
|
68
|
+
<path
|
|
69
|
+
inkscape:connector-curvature="0"
|
|
70
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
71
|
+
d="M 364.99999,515 1679,515 l 0,-437.999997 -1314.00001,0 0,437.999997 z"
|
|
72
|
+
id="rect4338-7-82-22-4" />
|
|
73
|
+
<path
|
|
74
|
+
inkscape:connector-curvature="0"
|
|
75
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
76
|
+
d="m 657,1245 730,0 0,-438 -730,0 0,438 z"
|
|
77
|
+
id="rect4338-7-82-22-4-9" />
|
|
78
|
+
<path
|
|
79
|
+
style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
80
|
+
d="m 1022,588 c 0,145.99998 0,145.99998 0,145.99998"
|
|
81
|
+
id="path4363-4-2-8-5-8-0-8-4"
|
|
82
|
+
inkscape:connector-curvature="0" />
|
|
83
|
+
<path
|
|
84
|
+
inkscape:connector-curvature="0"
|
|
85
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
86
|
+
d="m 365,1975 1314,0 0,-438 -1314,0 0,438 z"
|
|
87
|
+
id="rect4338-7-82-22-4-7" />
|
|
88
|
+
</g>
|
|
89
|
+
</svg>
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
+
version="1.1"
|
|
11
|
+
id="svg3891"
|
|
12
|
+
height="2048"
|
|
13
|
+
width="2048"
|
|
14
|
+
inkscape:version="0.91 r13725"
|
|
15
|
+
sodipodi:docname="distribute-horizontally-tool.svg">
|
|
16
|
+
<sodipodi:namedview
|
|
17
|
+
pagecolor="#ffffff"
|
|
18
|
+
bordercolor="#666666"
|
|
19
|
+
borderopacity="1"
|
|
20
|
+
objecttolerance="10"
|
|
21
|
+
gridtolerance="10"
|
|
22
|
+
guidetolerance="10"
|
|
23
|
+
inkscape:pageopacity="0"
|
|
24
|
+
inkscape:pageshadow="2"
|
|
25
|
+
inkscape:window-width="1600"
|
|
26
|
+
inkscape:window-height="847"
|
|
27
|
+
id="namedview8"
|
|
28
|
+
showgrid="true"
|
|
29
|
+
inkscape:snap-bbox="true"
|
|
30
|
+
inkscape:bbox-paths="true"
|
|
31
|
+
inkscape:snap-bbox-edge-midpoints="true"
|
|
32
|
+
inkscape:bbox-nodes="true"
|
|
33
|
+
inkscape:snap-bbox-midpoints="false"
|
|
34
|
+
inkscape:zoom="0.23046875"
|
|
35
|
+
inkscape:cx="799.73227"
|
|
36
|
+
inkscape:cy="1024"
|
|
37
|
+
inkscape:window-x="-8"
|
|
38
|
+
inkscape:window-y="-8"
|
|
39
|
+
inkscape:window-maximized="1"
|
|
40
|
+
inkscape:current-layer="svg3891">
|
|
41
|
+
<inkscape:grid
|
|
42
|
+
type="xygrid"
|
|
43
|
+
id="grid4140"
|
|
44
|
+
empspacing="146" />
|
|
45
|
+
</sodipodi:namedview>
|
|
46
|
+
<defs
|
|
47
|
+
id="defs3893" />
|
|
48
|
+
<metadata
|
|
49
|
+
id="metadata3896">
|
|
50
|
+
<rdf:RDF>
|
|
51
|
+
<cc:Work
|
|
52
|
+
rdf:about="">
|
|
53
|
+
<dc:format>image/svg+xml</dc:format>
|
|
54
|
+
<dc:type
|
|
55
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
56
|
+
<dc:title></dc:title>
|
|
57
|
+
</cc:Work>
|
|
58
|
+
</rdf:RDF>
|
|
59
|
+
</metadata>
|
|
60
|
+
<path
|
|
61
|
+
id="rect4338-7-82-22"
|
|
62
|
+
d="m 73.000002,661 0,1022 438.000008,0 0,-1022 -438.000008,0 z"
|
|
63
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
64
|
+
inkscape:connector-curvature="0" />
|
|
65
|
+
<path
|
|
66
|
+
inkscape:connector-curvature="0"
|
|
67
|
+
id="path4363-4-2-8-5-8-0-8-1-5-5"
|
|
68
|
+
d="m 438,369 c 1168,0 1168,0 1168,0"
|
|
69
|
+
style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
70
|
+
<path
|
|
71
|
+
id="rect4338-7-82-22-9"
|
|
72
|
+
d="m 802.99999,660.99999 0,730.00001 438.00001,0 0,-730.00001 -438,0 z"
|
|
73
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
74
|
+
inkscape:connector-curvature="0" />
|
|
75
|
+
<path
|
|
76
|
+
id="rect4338-7-82-22-3"
|
|
77
|
+
d="m 1533,661 0,1022 438,0 0,-1022 -438,0 z"
|
|
78
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
79
|
+
inkscape:connector-curvature="0" />
|
|
80
|
+
<path
|
|
81
|
+
inkscape:connector-curvature="0"
|
|
82
|
+
id="path4363-4-2-8-5-8-0-8-1-5-5-1"
|
|
83
|
+
d="m 511,442 c 0,146 0,146 0,146"
|
|
84
|
+
style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
85
|
+
<path
|
|
86
|
+
inkscape:connector-curvature="0"
|
|
87
|
+
id="path4363-4-2-8-5-8-0-8-1-5-5-1-9"
|
|
88
|
+
d="m 1022,442 c 0,146 0,146 0,146"
|
|
89
|
+
style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
90
|
+
<path
|
|
91
|
+
inkscape:connector-curvature="0"
|
|
92
|
+
id="path4363-4-2-8-5-8-0-8-1-5-5-1-4"
|
|
93
|
+
d="m 1533,442 c 0,146 0,146 0,146"
|
|
94
|
+
style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
95
|
+
</svg>
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
+
version="1.1"
|
|
11
|
+
id="svg3891"
|
|
12
|
+
height="2048"
|
|
13
|
+
width="2048"
|
|
14
|
+
inkscape:version="0.91 r13725"
|
|
15
|
+
sodipodi:docname="distribute-vertically-tool.svg">
|
|
16
|
+
<sodipodi:namedview
|
|
17
|
+
pagecolor="#ffffff"
|
|
18
|
+
bordercolor="#666666"
|
|
19
|
+
borderopacity="1"
|
|
20
|
+
objecttolerance="10"
|
|
21
|
+
gridtolerance="10"
|
|
22
|
+
guidetolerance="10"
|
|
23
|
+
inkscape:pageopacity="0"
|
|
24
|
+
inkscape:pageshadow="2"
|
|
25
|
+
inkscape:window-width="1600"
|
|
26
|
+
inkscape:window-height="847"
|
|
27
|
+
id="namedview8"
|
|
28
|
+
showgrid="true"
|
|
29
|
+
inkscape:snap-bbox="true"
|
|
30
|
+
inkscape:bbox-paths="true"
|
|
31
|
+
inkscape:snap-bbox-edge-midpoints="true"
|
|
32
|
+
inkscape:bbox-nodes="true"
|
|
33
|
+
inkscape:snap-bbox-midpoints="false"
|
|
34
|
+
inkscape:zoom="0.23046875"
|
|
35
|
+
inkscape:cx="799.73227"
|
|
36
|
+
inkscape:cy="1024"
|
|
37
|
+
inkscape:window-x="-8"
|
|
38
|
+
inkscape:window-y="-8"
|
|
39
|
+
inkscape:window-maximized="1"
|
|
40
|
+
inkscape:current-layer="svg3891">
|
|
41
|
+
<inkscape:grid
|
|
42
|
+
type="xygrid"
|
|
43
|
+
id="grid4140"
|
|
44
|
+
empspacing="146" />
|
|
45
|
+
</sodipodi:namedview>
|
|
46
|
+
<defs
|
|
47
|
+
id="defs3893" />
|
|
48
|
+
<metadata
|
|
49
|
+
id="metadata3896">
|
|
50
|
+
<rdf:RDF>
|
|
51
|
+
<cc:Work
|
|
52
|
+
rdf:about="">
|
|
53
|
+
<dc:format>image/svg+xml</dc:format>
|
|
54
|
+
<dc:type
|
|
55
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
56
|
+
<dc:title></dc:title>
|
|
57
|
+
</cc:Work>
|
|
58
|
+
</rdf:RDF>
|
|
59
|
+
</metadata>
|
|
60
|
+
<g
|
|
61
|
+
id="g4206"
|
|
62
|
+
transform="matrix(0,-1,1,0,-3.999999,2048)">
|
|
63
|
+
<path
|
|
64
|
+
inkscape:connector-curvature="0"
|
|
65
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
66
|
+
d="m 73.000002,661 0,1022 438.000008,0 0,-1022 -438.000008,0 z"
|
|
67
|
+
id="rect4338-7-82-22" />
|
|
68
|
+
<path
|
|
69
|
+
style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
70
|
+
d="m 438,369 c 1168,0 1168,0 1168,0"
|
|
71
|
+
id="path4363-4-2-8-5-8-0-8-1-5-5"
|
|
72
|
+
inkscape:connector-curvature="0" />
|
|
73
|
+
<path
|
|
74
|
+
inkscape:connector-curvature="0"
|
|
75
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
76
|
+
d="m 802.99999,660.99999 0,730.00001 438.00001,0 0,-730.00001 -438,0 z"
|
|
77
|
+
id="rect4338-7-82-22-9" />
|
|
78
|
+
<path
|
|
79
|
+
inkscape:connector-curvature="0"
|
|
80
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
81
|
+
d="m 1533,661 0,1022 438,0 0,-1022 -438,0 z"
|
|
82
|
+
id="rect4338-7-82-22-3" />
|
|
83
|
+
<path
|
|
84
|
+
style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
85
|
+
d="m 511,442 c 0,146 0,146 0,146"
|
|
86
|
+
id="path4363-4-2-8-5-8-0-8-1-5-5-1"
|
|
87
|
+
inkscape:connector-curvature="0" />
|
|
88
|
+
<path
|
|
89
|
+
style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
90
|
+
d="m 1022,442 c 0,146 0,146 0,146"
|
|
91
|
+
id="path4363-4-2-8-5-8-0-8-1-5-5-1-9"
|
|
92
|
+
inkscape:connector-curvature="0" />
|
|
93
|
+
<path
|
|
94
|
+
style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
95
|
+
d="m 1533,442 c 0,146 0,146 0,146"
|
|
96
|
+
id="path4363-4-2-8-5-8-0-8-1-5-5-1-4"
|
|
97
|
+
inkscape:connector-curvature="0" />
|
|
98
|
+
</g>
|
|
99
|
+
</svg>
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
+
width="2048"
|
|
11
|
+
height="2048"
|
|
12
|
+
id="svg3891"
|
|
13
|
+
version="1.1"
|
|
14
|
+
inkscape:version="0.91 r13725"
|
|
15
|
+
sodipodi:docname="set-color.svg"
|
|
16
|
+
inkscape:export-filename="C:\Users\Philipp\Desktop\align-bottom-tool.png"
|
|
17
|
+
inkscape:export-xdpi="0.69999999"
|
|
18
|
+
inkscape:export-ydpi="0.69999999">
|
|
19
|
+
<sodipodi:namedview
|
|
20
|
+
pagecolor="#ffffff"
|
|
21
|
+
bordercolor="#666666"
|
|
22
|
+
borderopacity="1"
|
|
23
|
+
objecttolerance="10"
|
|
24
|
+
gridtolerance="10"
|
|
25
|
+
guidetolerance="10"
|
|
26
|
+
inkscape:pageopacity="0"
|
|
27
|
+
inkscape:pageshadow="2"
|
|
28
|
+
inkscape:window-width="1920"
|
|
29
|
+
inkscape:window-height="1027"
|
|
30
|
+
id="namedview6"
|
|
31
|
+
showgrid="false"
|
|
32
|
+
inkscape:snap-bbox="true"
|
|
33
|
+
inkscape:bbox-paths="true"
|
|
34
|
+
inkscape:bbox-nodes="true"
|
|
35
|
+
inkscape:snap-bbox-edge-midpoints="true"
|
|
36
|
+
inkscape:snap-bbox-midpoints="true"
|
|
37
|
+
inkscape:snap-center="false"
|
|
38
|
+
inkscape:zoom="0.16"
|
|
39
|
+
inkscape:cx="1019.5806"
|
|
40
|
+
inkscape:cy="976.38444"
|
|
41
|
+
inkscape:window-x="1592"
|
|
42
|
+
inkscape:window-y="-8"
|
|
43
|
+
inkscape:window-maximized="1"
|
|
44
|
+
inkscape:current-layer="svg3891" />
|
|
45
|
+
<defs
|
|
46
|
+
id="defs3893" />
|
|
47
|
+
<metadata
|
|
48
|
+
id="metadata3896">
|
|
49
|
+
<rdf:RDF>
|
|
50
|
+
<cc:Work
|
|
51
|
+
rdf:about="">
|
|
52
|
+
<dc:format>image/svg+xml</dc:format>
|
|
53
|
+
<dc:type
|
|
54
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
55
|
+
<dc:title></dc:title>
|
|
56
|
+
</cc:Work>
|
|
57
|
+
</rdf:RDF>
|
|
58
|
+
</metadata>
|
|
59
|
+
<g
|
|
60
|
+
id="g4247"
|
|
61
|
+
transform="matrix(0.86657935,0.86656601,-0.8706519,0.8706385,1241.9444,-973.98574)">
|
|
62
|
+
<rect
|
|
63
|
+
transform="matrix(0,1,-1,0,0,0)"
|
|
64
|
+
ry="7.2573023e-008"
|
|
65
|
+
rx="66287.227"
|
|
66
|
+
y="-1204"
|
|
67
|
+
x="300.12634"
|
|
68
|
+
height="360"
|
|
69
|
+
width="1000"
|
|
70
|
+
id="rect4136-7"
|
|
71
|
+
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
72
|
+
<rect
|
|
73
|
+
ry="7.2234677e-008"
|
|
74
|
+
rx="66597.734"
|
|
75
|
+
y="1542.1864"
|
|
76
|
+
x="603.13623"
|
|
77
|
+
height="338.4407"
|
|
78
|
+
width="854.00006"
|
|
79
|
+
id="rect4134"
|
|
80
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:118.85426331;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
81
|
+
<rect
|
|
82
|
+
ry="7.2234677e-008"
|
|
83
|
+
rx="66597.719"
|
|
84
|
+
y="1122.6344"
|
|
85
|
+
x="517.86371"
|
|
86
|
+
height="208.27118"
|
|
87
|
+
width="1000"
|
|
88
|
+
id="rect4136"
|
|
89
|
+
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
90
|
+
<rect
|
|
91
|
+
transform="matrix(0.87315759,0.48743802,-0.12756037,0.99183081,0,0)"
|
|
92
|
+
ry="6.9755927e-008"
|
|
93
|
+
rx="52748.914"
|
|
94
|
+
y="254.76707"
|
|
95
|
+
x="1395.241"
|
|
96
|
+
height="199.95149"
|
|
97
|
+
width="380.33994"
|
|
98
|
+
id="rect4136-3"
|
|
99
|
+
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
100
|
+
<rect
|
|
101
|
+
transform="matrix(-0.87315759,0.48743802,0.12756037,0.99183081,0,0)"
|
|
102
|
+
ry="6.9755927e-008"
|
|
103
|
+
rx="52748.914"
|
|
104
|
+
y="1323.813"
|
|
105
|
+
x="-780.03601"
|
|
106
|
+
height="199.95149"
|
|
107
|
+
width="380.33994"
|
|
108
|
+
id="rect4136-3-0"
|
|
109
|
+
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
110
|
+
</g>
|
|
111
|
+
</svg>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg3891"
|
|
10
|
+
height="2048"
|
|
11
|
+
width="2048">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs3893" />
|
|
14
|
+
<metadata
|
|
15
|
+
id="metadata3896">
|
|
16
|
+
<rdf:RDF>
|
|
17
|
+
<cc:Work
|
|
18
|
+
rdf:about="">
|
|
19
|
+
<dc:format>image/svg+xml</dc:format>
|
|
20
|
+
<dc:type
|
|
21
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
22
|
+
<dc:title></dc:title>
|
|
23
|
+
</cc:Work>
|
|
24
|
+
</rdf:RDF>
|
|
25
|
+
</metadata>
|
|
26
|
+
<path
|
|
27
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#282828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:146.00001526;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
|
28
|
+
d="M 0 296 L 0 1464 L 0 1610 L 584 1610 L 730 1610 L 1314 1610 L 1460 1610 L 2044 1610 L 2044 1464 L 2044 296 L 1971 296 L 1460 296 L 1460 1464 L 1314 1464 L 1314 734 L 1241 734 L 730 734 L 730 1464 L 584 1464 L 584 296 L 511 296 L 0 296 z M 146 442 L 438 442 L 438 1464 L 146 1464 L 146 442 z M 1606 442 L 1898 442 L 1898 1464 L 1606 1464 L 1606 442 z M 876 880 L 1168 880 L 1168 1464 L 876 1464 L 876 880 z "
|
|
29
|
+
id="path4363-4-2-8-5-8-0-8" />
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
width="2048"
|
|
9
|
+
height="2048"
|
|
10
|
+
id="svg3891"
|
|
11
|
+
version="1.1">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs3893" />
|
|
14
|
+
<metadata
|
|
15
|
+
id="metadata3896">
|
|
16
|
+
<rdf:RDF>
|
|
17
|
+
<cc:Work
|
|
18
|
+
rdf:about="">
|
|
19
|
+
<dc:format>image/svg+xml</dc:format>
|
|
20
|
+
<dc:type
|
|
21
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
22
|
+
<dc:title></dc:title>
|
|
23
|
+
</cc:Work>
|
|
24
|
+
</rdf:RDF>
|
|
25
|
+
</metadata>
|
|
26
|
+
<path
|
|
27
|
+
id="path4363-4-2-8-5-8-0-8"
|
|
28
|
+
d="M 292 4 L 292 588 L 365 588 L 949 588 L 949 734 L 584 734 L 584 1318 L 657 1318 L 954.97266 1318 L 954.97266 1464 L 292 1464 L 292 2048 L 365 2048 L 1752 2048 L 1752 1464 L 1100.9727 1464 L 1100.9727 1318 L 1460 1318 L 1460 734 L 1095 734 L 1095 588 L 1752 588 L 1752 4 L 292 4 z M 438 150 L 1606 150 L 1606 442 L 438 442 L 438 150 z M 730 880 L 1314 880 L 1314 1172 L 730 1172 L 730 880 z M 438 1610 L 1606 1610 L 1606 1902 L 438 1902 L 438 1610 z "
|
|
29
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#282828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
width="2048"
|
|
9
|
+
height="2048"
|
|
10
|
+
id="svg3891"
|
|
11
|
+
version="1.1">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs3893" />
|
|
14
|
+
<metadata
|
|
15
|
+
id="metadata3896">
|
|
16
|
+
<rdf:RDF>
|
|
17
|
+
<cc:Work
|
|
18
|
+
rdf:about="">
|
|
19
|
+
<dc:format>image/svg+xml</dc:format>
|
|
20
|
+
<dc:type
|
|
21
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
22
|
+
<dc:title></dc:title>
|
|
23
|
+
</cc:Work>
|
|
24
|
+
</rdf:RDF>
|
|
25
|
+
</metadata>
|
|
26
|
+
<path
|
|
27
|
+
id="path4363-4-2-8-5-8-0-8"
|
|
28
|
+
d="M 292 4 L 292 588 L 292 734 L 292 1318 L 292 1464 L 292 2048 L 438 2048 L 1606 2048 L 1606 1975 L 1606 1464 L 438 1464 L 438 1318 L 1168 1318 L 1168 1245 L 1168 734 L 438 734 L 438 588 L 1606 588 L 1606 515 L 1606 4 L 438 4 L 292 4 z M 438 150 L 1460 150 L 1460 442 L 438 442 L 438 150 z M 438 880 L 1022 880 L 1022 1172 L 438 1172 L 438 880 z M 438 1610 L 1460 1610 L 1460 1902 L 438 1902 L 438 1610 z "
|
|
29
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#282828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:146.00001526;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
width="2048"
|
|
9
|
+
height="2048"
|
|
10
|
+
id="svg3891"
|
|
11
|
+
version="1.1">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs3893" />
|
|
14
|
+
<metadata
|
|
15
|
+
id="metadata3896">
|
|
16
|
+
<rdf:RDF>
|
|
17
|
+
<cc:Work
|
|
18
|
+
rdf:about="">
|
|
19
|
+
<dc:format>image/svg+xml</dc:format>
|
|
20
|
+
<dc:type
|
|
21
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
22
|
+
<dc:title></dc:title>
|
|
23
|
+
</cc:Work>
|
|
24
|
+
</rdf:RDF>
|
|
25
|
+
</metadata>
|
|
26
|
+
<path
|
|
27
|
+
id="path4363-4-2-8-5-8-0-8"
|
|
28
|
+
d="M 438 4 L 438 588 L 511 588 L 1606 588 L 1606 734 L 876 734 L 876 1318 L 949 1318 L 1606 1318 L 1606 1464 L 438 1464 L 438 2048 L 511 2048 L 1606 2048 L 1752 2048 L 1752 1464 L 1752 1318 L 1752 734 L 1752 588 L 1752 4 L 1606 4 L 438 4 z M 584 150 L 1606 150 L 1606 442 L 584 442 L 584 150 z M 1022 880 L 1606 880 L 1606 1172 L 1022 1172 L 1022 880 z M 584 1610 L 1606 1610 L 1606 1902 L 584 1902 L 584 1610 z "
|
|
29
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#282828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:146.00001526;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
width="2048"
|
|
9
|
+
height="2048"
|
|
10
|
+
id="svg3891"
|
|
11
|
+
version="1.1">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs3893" />
|
|
14
|
+
<metadata
|
|
15
|
+
id="metadata3896">
|
|
16
|
+
<rdf:RDF>
|
|
17
|
+
<cc:Work
|
|
18
|
+
rdf:about="">
|
|
19
|
+
<dc:format>image/svg+xml</dc:format>
|
|
20
|
+
<dc:type
|
|
21
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
22
|
+
<dc:title></dc:title>
|
|
23
|
+
</cc:Work>
|
|
24
|
+
</rdf:RDF>
|
|
25
|
+
</metadata>
|
|
26
|
+
<path
|
|
27
|
+
id="path4363-4-2-8-5-8-0-8"
|
|
28
|
+
d="M 0 296 L 0 442 L 0 1610 L 584 1610 L 584 1537 L 584 442 L 730 442 L 730 1172 L 1314 1172 L 1314 1099 L 1314 442 L 1460 442 L 1460 1610 L 2044 1610 L 2044 1537 L 2044 442 L 2044 296 L 1460 296 L 0 296 z M 146 442 L 438 442 L 438 1464 L 146 1464 L 146 442 z M 876 442 L 1168 442 L 1168 1026 L 876 1026 L 876 442 z M 1606 442 L 1898 442 L 1898 1464 L 1606 1464 L 1606 442 z "
|
|
29
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#282828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:146.00001526;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
width="2048"
|
|
9
|
+
height="2048"
|
|
10
|
+
id="svg3891"
|
|
11
|
+
version="1.1">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs3893" />
|
|
14
|
+
<metadata
|
|
15
|
+
id="metadata3896">
|
|
16
|
+
<rdf:RDF>
|
|
17
|
+
<cc:Work
|
|
18
|
+
rdf:about="">
|
|
19
|
+
<dc:format>image/svg+xml</dc:format>
|
|
20
|
+
<dc:type
|
|
21
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
22
|
+
<dc:title></dc:title>
|
|
23
|
+
</cc:Work>
|
|
24
|
+
</rdf:RDF>
|
|
25
|
+
</metadata>
|
|
26
|
+
<path
|
|
27
|
+
id="path4363-4-2-8-5-8-0-8"
|
|
28
|
+
d="M 0 296 L 0 369 L 0 1756 L 584 1756 L 584 1104.9727 L 730 1104.9727 L 730 1464 L 1314 1464 L 1314 1099 L 1460 1099 L 1460 1756 L 2044 1756 L 2044 296 L 1460 296 L 1460 369 L 1460 953 L 1314 953 L 1314 588 L 730 588 L 730 661 L 730 958.97266 L 584 958.97266 L 584 296 L 0 296 z M 146 442 L 438 442 L 438 1610 L 146 1610 L 146 442 z M 1606 442 L 1898 442 L 1898 1610 L 1606 1610 L 1606 442 z M 876 734 L 1168 734 L 1168 1318 L 876 1318 L 876 734 z "
|
|
29
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#282828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
width="2048"
|
|
9
|
+
height="2048"
|
|
10
|
+
id="svg3891"
|
|
11
|
+
version="1.1">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs3893" />
|
|
14
|
+
<metadata
|
|
15
|
+
id="metadata3896">
|
|
16
|
+
<rdf:RDF>
|
|
17
|
+
<cc:Work
|
|
18
|
+
rdf:about="">
|
|
19
|
+
<dc:format>image/svg+xml</dc:format>
|
|
20
|
+
<dc:type
|
|
21
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
22
|
+
<dc:title></dc:title>
|
|
23
|
+
</cc:Work>
|
|
24
|
+
</rdf:RDF>
|
|
25
|
+
</metadata>
|
|
26
|
+
<path
|
|
27
|
+
id="rect4338-7-82-22"
|
|
28
|
+
d="M 438 296 L 438 442 L 438 588 L 0 588 L 0 661 L 0 1756 L 584 1756 L 584 588 L 584 442 L 949 442 L 949 588 L 730 588 L 730 661 L 730 1464 L 1314 1464 L 1314 588 L 1095 588 L 1095 442 L 1460 442 L 1460 588 L 1460 661 L 1460 1756 L 2044 1756 L 2044 588 L 1606 588 L 1606 442 L 1606 296 L 438 296 z M 146 734 L 438 734 L 438 1610 L 146 1610 L 146 734 z M 876 734 L 1168 734 L 1168 1318 L 876 1318 L 876 734 z M 1606 734 L 1898 734 L 1898 1610 L 1606 1610 L 1606 734 z "
|
|
29
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#282828;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
width="2048"
|
|
9
|
+
height="2048"
|
|
10
|
+
id="svg3891"
|
|
11
|
+
version="1.1">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs3893" />
|
|
14
|
+
<metadata
|
|
15
|
+
id="metadata3896">
|
|
16
|
+
<rdf:RDF>
|
|
17
|
+
<cc:Work
|
|
18
|
+
rdf:about="">
|
|
19
|
+
<dc:format>image/svg+xml</dc:format>
|
|
20
|
+
<dc:type
|
|
21
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
22
|
+
<dc:title></dc:title>
|
|
23
|
+
</cc:Work>
|
|
24
|
+
</rdf:RDF>
|
|
25
|
+
</metadata>
|
|
26
|
+
<path
|
|
27
|
+
id="rect4338-7-82-22"
|
|
28
|
+
d="M 584 4 L 584 442 L 438 442 L 292 442 L 292 1610 L 438 1610 L 584 1610 L 584 2048 L 657 2048 L 1752 2048 L 1752 1464 L 584 1464 L 438 1464 L 438 1099 L 584 1099 L 584 1318 L 657 1318 L 1460 1318 L 1460 734 L 584 734 L 584 953 L 438 953 L 438 588 L 584 588 L 657 588 L 1752 588 L 1752 4 L 584 4 z M 730 150 L 1606 150 L 1606 442 L 730 442 L 730 150 z M 730 880 L 1314 880 L 1314 1172 L 730 1172 L 730 880 z M 730 1610 L 1606 1610 L 1606 1902 L 730 1902 L 730 1610 z "
|
|
29
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#282828;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
|
30
|
+
</svg>
|