simple-frame-unit 1.0.2
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/.env.dev +14 -0
- package/CHANGELOG.md +9 -0
- package/README.md +24 -0
- package/dist/ed-frame-vue.common.1.js +11046 -0
- package/dist/ed-frame-vue.common.1.js.map +1 -0
- package/dist/ed-frame-vue.common.2.js +1715 -0
- package/dist/ed-frame-vue.common.2.js.map +1 -0
- package/dist/ed-frame-vue.common.js +53427 -0
- package/dist/ed-frame-vue.common.js.map +1 -0
- package/dist/ed-frame-vue.umd.1.js +11046 -0
- package/dist/ed-frame-vue.umd.1.js.map +1 -0
- package/dist/ed-frame-vue.umd.2.js +1715 -0
- package/dist/ed-frame-vue.umd.2.js.map +1 -0
- package/dist/ed-frame-vue.umd.js +53437 -0
- package/dist/ed-frame-vue.umd.js.map +1 -0
- package/dist/ed-frame-vue.umd.min.1.js +17 -0
- package/dist/ed-frame-vue.umd.min.1.js.map +1 -0
- package/dist/ed-frame-vue.umd.min.2.js +4 -0
- package/dist/ed-frame-vue.umd.min.2.js.map +1 -0
- package/dist/ed-frame-vue.umd.min.js +470 -0
- package/dist/ed-frame-vue.umd.min.js.map +1 -0
- package/import.easydata.js +46 -0
- package/lib/CHANGELOG.md +18 -0
- package/lib/README.md +27 -0
- package/lib/api/ds/index.js +124 -0
- package/lib/api/easyData.js +90 -0
- package/lib/api/easyform/easyForm.js +32 -0
- package/lib/api/index.js +61 -0
- package/lib/api/interface/index.js +32 -0
- package/lib/api/system.js +20 -0
- package/lib/index.js +80 -0
- package/lib/packages/BasicTemplate/EasyDataTemplate.vue +189 -0
- package/lib/packages/BasicTemplate/Props.js +64 -0
- package/lib/packages/BasicTemplate/components/TemplateComp.vue +263 -0
- package/lib/packages/BasicTemplate/components/TemplateViews.vue +292 -0
- package/lib/packages/BasicTemplate/hooks/business.js +74 -0
- package/lib/packages/BasicTemplate/hooks/getFormData.js +89 -0
- package/lib/packages/BasicTemplate/hooks/queryFormData.js +194 -0
- package/lib/packages/BasicTemplate/hooks/submitForm.js +53 -0
- package/lib/packages/BasicTemplate/hooks/useEmits.js +15 -0
- package/lib/packages/BasicTemplate/hooks/validate.js +42 -0
- package/lib/packages/EasyDataForm/EasyDataForm.vue +597 -0
- package/lib/packages/EasyDataForm/Props.js +22 -0
- package/lib/packages/EasyDataForm/components/FormItem.vue +228 -0
- package/lib/packages/EasyDataForm/hooks/useChosePopup.js +85 -0
- package/lib/packages/EasyDataForm/hooks/useEmits.js +19 -0
- package/lib/packages/EasyDataForm/hooks/useForm.js +169 -0
- package/lib/packages/EasyDataForm/hooks/useUpload.js +168 -0
- package/lib/packages/EasyDataList/EasyDataList.vue +348 -0
- package/lib/packages/EasyDataList/Props.js +116 -0
- package/lib/packages/EasyDataList/components/BasicModal.vue +150 -0
- package/lib/packages/EasyDataList/components/FormAction.vue +63 -0
- package/lib/packages/EasyDataList/hooks/useEmits.js +30 -0
- package/lib/packages/EasyDataList/hooks/useForm.js +62 -0
- package/lib/packages/EasyDataList/hooks/useTable.js +314 -0
- package/lib/packages/EasyDataTable/EasyDataTable.vue +233 -0
- package/lib/packages/EasyDataView/EasyDataView.vue +105 -0
- package/lib/packages/EdRichPreview/index.js +32 -0
- package/lib/packages/EdRichText/index.vue +167 -0
- package/lib/packages/EdRichText/replaceUrl.js +49 -0
- package/lib/packages/components/FileView.vue +97 -0
- package/lib/packages/index.js +11 -0
- package/lib/packages/mixins/EasyDataMixins.js +133 -0
- package/lib/packages/mixins/useTable.jsx +130 -0
- package/lib/pages/DataSource/index.js +8 -0
- package/lib/pages/DataSource/src/components/ControlViews/BaseProps.js +103 -0
- package/lib/pages/DataSource/src/components/ControlViews/control.js +1089 -0
- package/lib/pages/DataSource/src/components/ControlViews/index.vue +301 -0
- package/lib/pages/DataSource/src/components/TableOperationModal.vue +225 -0
- package/lib/pages/DataSource/src/components/TablePropsModal.vue +367 -0
- package/lib/pages/DataSource/src/components/ViewPropsModal.vue +737 -0
- package/lib/pages/DataSource/src/components/modal/ChooseDict.vue +119 -0
- package/lib/pages/DataSource/src/hooks/useTable.js +138 -0
- package/lib/pages/DataSource/src/index.vue +431 -0
- package/lib/pages/Interface/index.js +8 -0
- package/lib/pages/Interface/src/components/InterfaceCall.vue +73 -0
- package/lib/pages/Interface/src/components/InterfaceDepend.vue +299 -0
- package/lib/pages/Interface/src/components/InterfaceFee.vue +131 -0
- package/lib/pages/Interface/src/components/InterfaceMessage.vue +878 -0
- package/lib/pages/Interface/src/components/InterfaceMock.vue +203 -0
- package/lib/pages/Interface/src/components/InterfaceParam.vue +308 -0
- package/lib/pages/Interface/src/components/InterfaceRepeat.vue +281 -0
- package/lib/pages/Interface/src/components/InterfaceVariable.vue +31 -0
- package/lib/pages/Interface/src/index.vue +216 -0
- package/lib/pages/Template/index.js +8 -0
- package/lib/pages/Template/src/components/DefineModal.vue +524 -0
- package/lib/pages/Template/src/components/TemplatePreview.vue +109 -0
- package/lib/pages/Template/src/components/model/AddDialog.vue +60 -0
- package/lib/pages/Template/src/components/model/TemplatePreview2.vue +101 -0
- package/lib/pages/Template/src/hooks/index.js +3 -0
- package/lib/pages/Template/src/hooks/useEmits.js +64 -0
- package/lib/pages/Template/src/index.vue +124 -0
- package/lib/popup/index.js +8 -0
- package/lib/popup/src/DataSourceChoose.vue +44 -0
- package/lib/popup/src/DataSourceViewIdChoose.vue +67 -0
- package/lib/popup/src/DictChoose.vue +104 -0
- package/lib/popup/src/InterfaceChoose.vue +46 -0
- package/lib/popup/src/OrgChoose.vue +121 -0
- package/lib/popup/src/RoleChoose.vue +101 -0
- package/lib/popup/src/TemplateChoose.vue +43 -0
- package/lib/popup/src/UserChoose.vue +161 -0
- package/lib/popup//347/273/204/344/273/266/345/274/200/345/217/221/350/247/204/350/214/203.md +25 -0
- package/lib/style/custom.scss +126 -0
- package/lib/style/deep.scss +109 -0
- package/lib/style/index.scss +4 -0
- package/lib/utils/MapLoader.js +48 -0
- package/lib/utils/dateUtils.js +58 -0
- package/lib/utils/index.js +8 -0
- package/lib/utils/setting.js +25 -0
- package/lib/utils/sortable/index.js +3784 -0
- package/lib/utils/useBusiness.js +212 -0
- package/lib/utils/utils.js +588 -0
- package/package.json +77 -0
- package/src/App.vue +12 -0
- package/src/assets/Vue.png +0 -0
- package/src/assets/avatar.png +0 -0
- package/src/assets/images/bg.png +0 -0
- package/src/assets/images/logo-bills.png +0 -0
- package/src/assets/images/pic.png +0 -0
- package/src/assets/images/weplus-logo.png +0 -0
- package/src/assets/marker.png +0 -0
- package/src/assets/styles/common.scss +359 -0
- package/src/assets/styles/ele-docs.css +3278 -0
- package/src/assets/styles/fonts/icomoon.eot +0 -0
- package/src/assets/styles/fonts/icomoon.svg +14 -0
- package/src/assets/styles/fonts/icomoon.ttf +0 -0
- package/src/assets/styles/fonts/icomoon.woff +0 -0
- package/src/assets/styles/fonts/style.css +39 -0
- package/src/assets/styles/higtlightEle.css +84 -0
- package/src/assets/svg/code.svg +7 -0
- package/src/assets/svg/password.svg +1 -0
- package/src/components/Popups/DiyCompDictChoose.vue +112 -0
- package/src/components/Popups/index.js +28 -0
- package/src/components/ed-base-vue/global/variable.js +8 -0
- package/src/components/ed-base-vue/index.js +81 -0
- package/src/components/ed-base-vue/package/EdCard/index.js +7 -0
- package/src/components/ed-base-vue/package/EdCard/src/index.vue +87 -0
- package/src/components/ed-base-vue/package/EdCodeEditor/index.js +8 -0
- package/src/components/ed-base-vue/package/EdCodeEditor/src/AceEditor/AceConfig.js +71 -0
- package/src/components/ed-base-vue/package/EdCodeEditor/src/AceEditor/Editor.vue +137 -0
- package/src/components/ed-base-vue/package/EdCodeEditor/src/AceEditor/Toolbar.vue +68 -0
- package/src/components/ed-base-vue/package/EdCodeEditor/src/AceEditor/index.vue +119 -0
- package/src/components/ed-base-vue/package/EdCodeEditor/src/AceEditor/webpack-resolver.js +51 -0
- package/src/components/ed-base-vue/package/EdCodeEditor/src/Codemirror/Toolbar.vue +57 -0
- package/src/components/ed-base-vue/package/EdCodeEditor/src/Codemirror/config.js +64 -0
- package/src/components/ed-base-vue/package/EdCodeEditor/src/Codemirror/index.vue +309 -0
- package/src/components/ed-base-vue/package/EdCodeEditor/src/EdCodeEditor.vue +238 -0
- package/src/components/ed-base-vue/package/EdDate/index.js +8 -0
- package/src/components/ed-base-vue/package/EdDate/src/index.js +50 -0
- package/src/components/ed-base-vue/package/EdDescriptions/index.js +8 -0
- package/src/components/ed-base-vue/package/EdDescriptions/src/EdDescriptions.vue +46 -0
- package/src/components/ed-base-vue/package/EdDescriptions/src/EdDescriptionsItem.js +20 -0
- package/src/components/ed-base-vue/package/EdDescriptions/src/Props.js +20 -0
- package/src/components/ed-base-vue/package/EdDialog/index.js +8 -0
- package/src/components/ed-base-vue/package/EdDialog/src/EdDialog.vue +138 -0
- package/src/components/ed-base-vue/package/EdDialog/src/Props.js +91 -0
- package/src/components/ed-base-vue/package/EdDialog/src/components/DialogFooter.vue +42 -0
- package/src/components/ed-base-vue/package/EdDialog/src/components/DialogWrapper.vue +53 -0
- package/src/components/ed-base-vue/package/EdDrawer/index.js +8 -0
- package/src/components/ed-base-vue/package/EdDrawer/src/DrawerFooter.vue +41 -0
- package/src/components/ed-base-vue/package/EdDrawer/src/EdDrawer.vue +150 -0
- package/src/components/ed-base-vue/package/EdDrawer/src/props.js +71 -0
- package/src/components/ed-base-vue/package/EdFlow/index.js +8 -0
- package/src/components/ed-base-vue/package/EdFlow/src/EdFlowItem.vue +733 -0
- package/src/components/ed-base-vue/package/EdFlow/src/index.vue +148 -0
- package/src/components/ed-base-vue/package/EdForm/index.js +8 -0
- package/src/components/ed-base-vue/package/EdForm/src/EdForm.vue +172 -0
- package/src/components/ed-base-vue/package/EdForm/src/Props.js +33 -0
- package/src/components/ed-base-vue/package/EdForm/src/components/EdFormItem.vue +34 -0
- package/src/components/ed-base-vue/package/EdIcons/index.js +8 -0
- package/src/components/ed-base-vue/package/EdIcons/src/hooks/Icons.js +406 -0
- package/src/components/ed-base-vue/package/EdIcons/src/hooks/Icons1.js +830 -0
- package/src/components/ed-base-vue/package/EdIcons/src/index.vue +13 -0
- package/src/components/ed-base-vue/package/EdImage/index.js +8 -0
- package/src/components/ed-base-vue/package/EdImage/src/index.vue +28 -0
- package/src/components/ed-base-vue/package/EdInputArray/index.js +8 -0
- package/src/components/ed-base-vue/package/EdInputArray/src/Props.js +26 -0
- package/src/components/ed-base-vue/package/EdInputArray/src/index.vue +97 -0
- package/src/components/ed-base-vue/package/EdInputColor/index.js +8 -0
- package/src/components/ed-base-vue/package/EdInputColor/src/InputColor.vue +81 -0
- package/src/components/ed-base-vue/package/EdInputMap/index.js +9 -0
- package/src/components/ed-base-vue/package/EdInputMap/src/EdInputMap.vue +246 -0
- package/src/components/ed-base-vue/package/EdInputMap/src/EdInputMapProps.js +6 -0
- package/src/components/ed-base-vue/package/EdInputPop/index.js +13 -0
- package/src/components/ed-base-vue/package/EdInputPop/src/EdInputPop.vue +144 -0
- package/src/components/ed-base-vue/package/EdInputPop/src/Props.js +48 -0
- package/src/components/ed-base-vue/package/EdInputTable/index.js +8 -0
- package/src/components/ed-base-vue/package/EdInputTable/src/EdInputTable.vue +368 -0
- package/src/components/ed-base-vue/package/EdInputTable/src/Fetch.js +40 -0
- package/src/components/ed-base-vue/package/EdJsonEditor/index.js +13 -0
- package/src/components/ed-base-vue/package/EdJsonEditor/src/EdJsonEditor.vue +198 -0
- package/src/components/ed-base-vue/package/EdJsonEditor/src/assets/img/jsoneditor-icons.svg +749 -0
- package/src/components/ed-base-vue/package/EdJsonEditor/src/assets/jsoneditor.css +2031 -0
- package/src/components/ed-base-vue/package/EdJsonEditor/src/assets/plus.svg +1 -0
- package/src/components/ed-base-vue/package/EdJsonEditor/src/hooks.js +63 -0
- package/src/components/ed-base-vue/package/EdJsonViewer/index.js +8 -0
- package/src/components/ed-base-vue/package/EdJsonViewer/src/EdJsonViewer.vue +44 -0
- package/src/components/ed-base-vue/package/EdLable/index.js +8 -0
- package/src/components/ed-base-vue/package/EdLable/src/index.vue +34 -0
- package/src/components/ed-base-vue/package/EdLink/index.js +8 -0
- package/src/components/ed-base-vue/package/EdLink/src/index.vue +43 -0
- package/src/components/ed-base-vue/package/EdMarkEditor/index.js +15 -0
- package/src/components/ed-base-vue/package/EdMarkEditor/src/EdMarkEditor.vue +368 -0
- package/src/components/ed-base-vue/package/EdMarkEditor/src/extra-function.js +538 -0
- package/src/components/ed-base-vue/package/EdMarkEditor/src/highlight.js +95 -0
- package/src/components/ed-base-vue/package/EdTable/index.js +8 -0
- package/src/components/ed-base-vue/package/EdTable/src/EdTable.vue +240 -0
- package/src/components/ed-base-vue/package/EdTable/src/Props.js +97 -0
- package/src/components/ed-base-vue/package/EdTable/src/components/TableColumnItem.js +24 -0
- package/src/components/ed-base-vue/package/EdTable/src/components/TablePagination.vue +73 -0
- package/src/components/ed-base-vue/package/EdTableEditor/index.js +8 -0
- package/src/components/ed-base-vue/package/EdTableEditor/src/EdTableEditor.vue +282 -0
- package/src/components/ed-base-vue/package/EdTableEditor/src/Props.js +107 -0
- package/src/components/ed-base-vue/package/EdTableEditor/src/hooks/validate.js +90 -0
- package/src/components/ed-base-vue/package/EdUpload/index.js +8 -0
- package/src/components/ed-base-vue/package/EdUpload/src/Props.js +90 -0
- package/src/components/ed-base-vue/package/EdUpload/src/index.vue +88 -0
- package/src/components/ed-base-vue/package/EdViewer/index.js +8 -0
- package/src/components/ed-base-vue/package/EdViewer/src/EdViewer.vue +310 -0
- package/src/components/ed-base-vue/package/EdWangEditor/index.js +14 -0
- package/src/components/ed-base-vue/package/EdWangEditor/src/EdWangEditor.vue +127 -0
- package/src/components/ed-base-vue/package/ExtendSlot.js +12 -0
- package/src/components/ed-base-vue/package/OptionSlot.js +65 -0
- package/src/components/ed-base-vue/plugin/Message/index.js +2 -0
- package/src/components/ed-base-vue/plugin/Message/src/main.js +91 -0
- package/src/components/ed-base-vue/plugin/Message/src/main.vue +253 -0
- package/src/components/ed-base-vue/plugin/print/index.js +156 -0
- package/src/components/ed-base-vue/plugin/sortable/index.js +3784 -0
- package/src/components/ed-base-vue/style/custom.scss +107 -0
- package/src/components/ed-base-vue/style/deep.scss +100 -0
- package/src/components/ed-base-vue/style/index.scss +4 -0
- package/src/components/ed-base-vue/tools/date-format.js +315 -0
- package/src/components/ed-base-vue/tools/utils.js +124 -0
- package/src/layouts/components/AppMain.vue +17 -0
- package/src/layouts/components/Header.vue +256 -0
- package/src/layouts/components/Logo.vue +56 -0
- package/src/layouts/components/Navbar.vue +169 -0
- package/src/layouts/components/SideBar.vue +107 -0
- package/src/layouts/components/index.js +5 -0
- package/src/layouts/index.vue +57 -0
- package/src/main.js +42 -0
- package/src/request/config.js +6 -0
- package/src/request/index.js +85 -0
- package/src/request/request.js +147 -0
- package/src/router/index.js +65 -0
- package/src/router/modules/baseRouter.js +43 -0
- package/src/router/modules/easydata.js +49 -0
- package/src/views/base/BaseRichPreview.vue +23 -0
- package/src/views/base/BaseRichText.vue +28 -0
- package/src/views/base/EdFormView.vue +54 -0
- package/src/views/base/EdTable.vue +98 -0
- package/src/views/base/inputTable.vue +103 -0
- package/src/views/easydata/Interface.vue +3 -0
- package/src/views/easydata/dataSource.vue +13 -0
- package/src/views/easydata/dataSourceView.vue +71 -0
- package/src/views/easydata/templateDemo.vue +89 -0
- package/src/views/easydata/templateInfo.vue +13 -0
- package/src/views/index.vue +17 -0
- package/src/views/login.vue +208 -0
- package/src/views/redirect.vue +15 -0
|
@@ -0,0 +1,749 @@
|
|
|
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="240"
|
|
11
|
+
height="144"
|
|
12
|
+
id="svg4136"
|
|
13
|
+
version="1.1"
|
|
14
|
+
inkscape:version="0.91 r13725"
|
|
15
|
+
sodipodi:docname="jsoneditor-icons.svg">
|
|
16
|
+
<title
|
|
17
|
+
id="title6512">JSON Editor Icons</title>
|
|
18
|
+
<metadata
|
|
19
|
+
id="metadata4148">
|
|
20
|
+
<rdf:RDF>
|
|
21
|
+
<cc:Work
|
|
22
|
+
rdf:about="">
|
|
23
|
+
<dc:format>image/svg+xml</dc:format>
|
|
24
|
+
<dc:type
|
|
25
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
26
|
+
<dc:title>JSON Editor Icons</dc:title>
|
|
27
|
+
</cc:Work>
|
|
28
|
+
</rdf:RDF>
|
|
29
|
+
</metadata>
|
|
30
|
+
<defs
|
|
31
|
+
id="defs4146" />
|
|
32
|
+
<sodipodi:namedview
|
|
33
|
+
pagecolor="#ff63ff"
|
|
34
|
+
bordercolor="#666666"
|
|
35
|
+
borderopacity="1"
|
|
36
|
+
objecttolerance="10"
|
|
37
|
+
gridtolerance="10"
|
|
38
|
+
guidetolerance="10"
|
|
39
|
+
inkscape:pageopacity="0"
|
|
40
|
+
inkscape:pageshadow="2"
|
|
41
|
+
inkscape:window-width="1920"
|
|
42
|
+
inkscape:window-height="1026"
|
|
43
|
+
id="namedview4144"
|
|
44
|
+
showgrid="true"
|
|
45
|
+
inkscape:zoom="4"
|
|
46
|
+
inkscape:cx="13.229181"
|
|
47
|
+
inkscape:cy="119.82429"
|
|
48
|
+
inkscape:window-x="0"
|
|
49
|
+
inkscape:window-y="0"
|
|
50
|
+
inkscape:window-maximized="1"
|
|
51
|
+
inkscape:current-layer="svg4136"
|
|
52
|
+
showguides="false"
|
|
53
|
+
borderlayer="false"
|
|
54
|
+
inkscape:showpageshadow="true"
|
|
55
|
+
showborder="true">
|
|
56
|
+
<inkscape:grid
|
|
57
|
+
type="xygrid"
|
|
58
|
+
id="grid4640"
|
|
59
|
+
empspacing="24" />
|
|
60
|
+
</sodipodi:namedview>
|
|
61
|
+
<!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->
|
|
62
|
+
<rect
|
|
63
|
+
style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0"
|
|
64
|
+
id="svg_1"
|
|
65
|
+
height="16"
|
|
66
|
+
width="16"
|
|
67
|
+
y="4"
|
|
68
|
+
x="4" />
|
|
69
|
+
<rect
|
|
70
|
+
id="svg_1-7"
|
|
71
|
+
height="16"
|
|
72
|
+
width="16"
|
|
73
|
+
y="3.999995"
|
|
74
|
+
x="28.000006"
|
|
75
|
+
style="fill:#ec3f29;fill-opacity:0.94117647;stroke:none;stroke-width:0" />
|
|
76
|
+
<rect
|
|
77
|
+
style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0"
|
|
78
|
+
x="52.000004"
|
|
79
|
+
y="3.999995"
|
|
80
|
+
width="16"
|
|
81
|
+
height="16"
|
|
82
|
+
id="rect4165" />
|
|
83
|
+
<rect
|
|
84
|
+
id="rect4175"
|
|
85
|
+
height="16"
|
|
86
|
+
width="16"
|
|
87
|
+
y="3.9999852"
|
|
88
|
+
x="172.00002"
|
|
89
|
+
style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0" />
|
|
90
|
+
<rect
|
|
91
|
+
id="rect4175-3"
|
|
92
|
+
height="16"
|
|
93
|
+
width="16"
|
|
94
|
+
y="3.999995"
|
|
95
|
+
x="196"
|
|
96
|
+
style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0" />
|
|
97
|
+
<g
|
|
98
|
+
id="g4299"
|
|
99
|
+
style="stroke:none">
|
|
100
|
+
<rect
|
|
101
|
+
x="7.0000048"
|
|
102
|
+
y="10.999998"
|
|
103
|
+
width="9.9999924"
|
|
104
|
+
height="1.9999986"
|
|
105
|
+
id="svg_1-1"
|
|
106
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0" />
|
|
107
|
+
<rect
|
|
108
|
+
x="11.000005"
|
|
109
|
+
y="7.0000114"
|
|
110
|
+
width="1.9999955"
|
|
111
|
+
height="9.9999838"
|
|
112
|
+
id="svg_1-1-1"
|
|
113
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0" />
|
|
114
|
+
</g>
|
|
115
|
+
<g
|
|
116
|
+
id="g4299-3"
|
|
117
|
+
transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,12.000001)"
|
|
118
|
+
style="stroke:none">
|
|
119
|
+
<rect
|
|
120
|
+
x="7.0000048"
|
|
121
|
+
y="10.999998"
|
|
122
|
+
width="9.9999924"
|
|
123
|
+
height="1.9999986"
|
|
124
|
+
id="svg_1-1-0"
|
|
125
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0" />
|
|
126
|
+
<rect
|
|
127
|
+
x="11.000005"
|
|
128
|
+
y="7.0000114"
|
|
129
|
+
width="1.9999955"
|
|
130
|
+
height="9.9999838"
|
|
131
|
+
id="svg_1-1-1-9"
|
|
132
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0" />
|
|
133
|
+
</g>
|
|
134
|
+
<rect
|
|
135
|
+
id="svg_1-7-5"
|
|
136
|
+
height="6.9999905"
|
|
137
|
+
width="6.9999909"
|
|
138
|
+
y="7.0000048"
|
|
139
|
+
x="55.000004"
|
|
140
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0" />
|
|
141
|
+
<rect
|
|
142
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#4c4c4c;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
143
|
+
x="58"
|
|
144
|
+
y="10.00001"
|
|
145
|
+
width="6.9999909"
|
|
146
|
+
height="6.9999905"
|
|
147
|
+
id="rect4354" />
|
|
148
|
+
<rect
|
|
149
|
+
id="svg_1-7-5-7"
|
|
150
|
+
height="6.9999905"
|
|
151
|
+
width="6.9999909"
|
|
152
|
+
y="10.000005"
|
|
153
|
+
x="58.000004"
|
|
154
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#3c80df;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647" />
|
|
155
|
+
<g
|
|
156
|
+
id="g4378">
|
|
157
|
+
<rect
|
|
158
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0"
|
|
159
|
+
x="198"
|
|
160
|
+
y="10.999999"
|
|
161
|
+
width="7.9999909"
|
|
162
|
+
height="1.9999965"
|
|
163
|
+
id="svg_1-7-5-3" />
|
|
164
|
+
<rect
|
|
165
|
+
id="rect4374"
|
|
166
|
+
height="1.9999946"
|
|
167
|
+
width="11.999995"
|
|
168
|
+
y="7.0000005"
|
|
169
|
+
x="198"
|
|
170
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0" />
|
|
171
|
+
<rect
|
|
172
|
+
id="rect4376"
|
|
173
|
+
height="1.9999995"
|
|
174
|
+
width="3.9999928"
|
|
175
|
+
y="14.999996"
|
|
176
|
+
x="198"
|
|
177
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0" />
|
|
178
|
+
</g>
|
|
179
|
+
<g
|
|
180
|
+
transform="matrix(1,0,0,-1,-23.999995,23.999995)"
|
|
181
|
+
id="g4383">
|
|
182
|
+
<rect
|
|
183
|
+
id="rect4385"
|
|
184
|
+
height="1.9999965"
|
|
185
|
+
width="7.9999909"
|
|
186
|
+
y="10.999999"
|
|
187
|
+
x="198"
|
|
188
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0" />
|
|
189
|
+
<rect
|
|
190
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0"
|
|
191
|
+
x="198"
|
|
192
|
+
y="7.0000005"
|
|
193
|
+
width="11.999995"
|
|
194
|
+
height="1.9999946"
|
|
195
|
+
id="rect4387" />
|
|
196
|
+
<rect
|
|
197
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0"
|
|
198
|
+
x="198"
|
|
199
|
+
y="14.999996"
|
|
200
|
+
width="3.9999928"
|
|
201
|
+
height="1.9999995"
|
|
202
|
+
id="rect4389" />
|
|
203
|
+
</g>
|
|
204
|
+
<rect
|
|
205
|
+
style="fill:#4c4c4c;fill-opacity:1;stroke:none"
|
|
206
|
+
id="rect3754-4"
|
|
207
|
+
width="16"
|
|
208
|
+
height="16"
|
|
209
|
+
x="76"
|
|
210
|
+
y="3.9999199" />
|
|
211
|
+
<path
|
|
212
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
213
|
+
d="m 85.10447,6.0157384 -0.0156,1.4063 c 3.02669,-0.2402 0.33008,3.6507996 2.48438,4.5780996 -2.18694,1.0938 0.49191,4.9069 -2.45313,4.5781 l -0.0156,1.4219 c 5.70828,0.559 1.03264,-5.1005 4.70313,-5.2656 l 0,-1.4063 c -3.61303,-0.027 1.11893,-5.7069996 -4.70313,-5.3124996 z"
|
|
214
|
+
id="path4351"
|
|
215
|
+
inkscape:connector-curvature="0"
|
|
216
|
+
sodipodi:nodetypes="cccccccc" />
|
|
217
|
+
<path
|
|
218
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
219
|
+
d="m 82.78125,5.9984384 0.0156,1.4063 c -3.02668,-0.2402 -0.33007,3.6506996 -2.48437,4.5780996 2.18694,1.0938 -0.49192,4.9069 2.45312,4.5781 l 0.0156,1.4219 c -5.70827,0.559 -1.03263,-5.1004 -4.70312,-5.2656 l 0,-1.4063 c 3.61303,-0.027 -1.11894,-5.7070996 4.70312,-5.3124996 z"
|
|
220
|
+
id="path4351-9"
|
|
221
|
+
inkscape:connector-curvature="0"
|
|
222
|
+
sodipodi:nodetypes="cccccccc" />
|
|
223
|
+
<rect
|
|
224
|
+
style="fill:#4c4c4c;fill-opacity:1;stroke:none"
|
|
225
|
+
id="rect3754-25"
|
|
226
|
+
width="16"
|
|
227
|
+
height="16"
|
|
228
|
+
x="100"
|
|
229
|
+
y="3.9999199" />
|
|
230
|
+
<path
|
|
231
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
|
232
|
+
d="m 103.719,5.6719384 0,12.7187996 3.03125,0 0,-1.5313 -1.34375,0 0,-9.6249996 1.375,0 0,-1.5625 z"
|
|
233
|
+
id="path2987"
|
|
234
|
+
inkscape:connector-curvature="0" />
|
|
235
|
+
<path
|
|
236
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
|
237
|
+
d="m 112.2185,5.6721984 0,12.7187996 -3.03125,0 0,-1.5313 1.34375,0 0,-9.6249996 -1.375,0 0,-1.5625 z"
|
|
238
|
+
id="path2987-1"
|
|
239
|
+
inkscape:connector-curvature="0" />
|
|
240
|
+
<rect
|
|
241
|
+
style="fill:#4c4c4c;fill-opacity:1;stroke:none"
|
|
242
|
+
id="rect3754-73"
|
|
243
|
+
width="16"
|
|
244
|
+
height="16"
|
|
245
|
+
x="124"
|
|
246
|
+
y="3.9999199" />
|
|
247
|
+
<path
|
|
248
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
|
249
|
+
d="m 126.2824,17.602938 1.78957,0 1.14143,-2.8641 5.65364,0 1.14856,2.8641 1.76565,0 -4.78687,-11.1610996 -1.91903,0 z"
|
|
250
|
+
id="path3780"
|
|
251
|
+
inkscape:connector-curvature="0"
|
|
252
|
+
sodipodi:nodetypes="ccccccccc" />
|
|
253
|
+
<path
|
|
254
|
+
style="fill:#4c4c4c;fill-opacity:1;stroke:none"
|
|
255
|
+
d="m 129.72704,13.478838 4.60852,0.01 -2.30426,-5.5497996 z"
|
|
256
|
+
id="path3782"
|
|
257
|
+
inkscape:connector-curvature="0" />
|
|
258
|
+
<rect
|
|
259
|
+
style="fill:#4c4c4c;fill-opacity:1;stroke:none"
|
|
260
|
+
id="rect3754-35"
|
|
261
|
+
width="16"
|
|
262
|
+
height="16"
|
|
263
|
+
x="148"
|
|
264
|
+
y="3.9999199" />
|
|
265
|
+
<path
|
|
266
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
|
267
|
+
d="m 156.47655,5.8917384 0,2.1797 0.46093,2.3983996 1.82813,0 0.39844,-2.3983996 0,-2.1797 z"
|
|
268
|
+
id="path5008-2"
|
|
269
|
+
inkscape:connector-curvature="0"
|
|
270
|
+
sodipodi:nodetypes="ccccccc" />
|
|
271
|
+
<path
|
|
272
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
|
273
|
+
d="m 152.51561,5.8906384 0,2.1797 0.46094,2.3983996 1.82812,0 0.39844,-2.3983996 0,-2.1797 z"
|
|
274
|
+
id="path5008-2-8"
|
|
275
|
+
inkscape:connector-curvature="0"
|
|
276
|
+
sodipodi:nodetypes="ccccccc" />
|
|
277
|
+
<rect
|
|
278
|
+
id="svg_1-7-2"
|
|
279
|
+
height="1.9999961"
|
|
280
|
+
width="11.999996"
|
|
281
|
+
y="64"
|
|
282
|
+
x="54"
|
|
283
|
+
style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0" />
|
|
284
|
+
<rect
|
|
285
|
+
id="svg_1-7-2-2"
|
|
286
|
+
height="2.9999905"
|
|
287
|
+
width="2.9999907"
|
|
288
|
+
y="52"
|
|
289
|
+
x="80.000008"
|
|
290
|
+
style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0" />
|
|
291
|
+
<rect
|
|
292
|
+
style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0"
|
|
293
|
+
x="85.000008"
|
|
294
|
+
y="52"
|
|
295
|
+
width="2.9999907"
|
|
296
|
+
height="2.9999905"
|
|
297
|
+
id="rect4561" />
|
|
298
|
+
<rect
|
|
299
|
+
style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0"
|
|
300
|
+
x="80.000008"
|
|
301
|
+
y="58"
|
|
302
|
+
width="2.9999907"
|
|
303
|
+
height="2.9999905"
|
|
304
|
+
id="rect4563" />
|
|
305
|
+
<rect
|
|
306
|
+
id="rect4565"
|
|
307
|
+
height="2.9999905"
|
|
308
|
+
width="2.9999907"
|
|
309
|
+
y="58"
|
|
310
|
+
x="85.000008"
|
|
311
|
+
style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0" />
|
|
312
|
+
<rect
|
|
313
|
+
id="rect4567"
|
|
314
|
+
height="2.9999905"
|
|
315
|
+
width="2.9999907"
|
|
316
|
+
y="64"
|
|
317
|
+
x="80.000008"
|
|
318
|
+
style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0" />
|
|
319
|
+
<rect
|
|
320
|
+
style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0"
|
|
321
|
+
x="85.000008"
|
|
322
|
+
y="64"
|
|
323
|
+
width="2.9999907"
|
|
324
|
+
height="2.9999905"
|
|
325
|
+
id="rect4569" />
|
|
326
|
+
<circle
|
|
327
|
+
style="opacity:1;fill:none;fill-opacity:1;stroke:#4c4c4c;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
|
328
|
+
id="path4571"
|
|
329
|
+
cx="110.06081"
|
|
330
|
+
cy="57.939209"
|
|
331
|
+
r="4.7438836" />
|
|
332
|
+
<rect
|
|
333
|
+
style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0"
|
|
334
|
+
x="116.64566"
|
|
335
|
+
y="-31.79752"
|
|
336
|
+
width="4.229713"
|
|
337
|
+
height="6.4053884"
|
|
338
|
+
id="rect4563-2"
|
|
339
|
+
transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)" />
|
|
340
|
+
<path
|
|
341
|
+
style="fill:#4c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
342
|
+
d="M 125,56 138.77027,56.095 132,64 Z"
|
|
343
|
+
id="path4613"
|
|
344
|
+
inkscape:connector-curvature="0"
|
|
345
|
+
sodipodi:nodetypes="cccc" />
|
|
346
|
+
<path
|
|
347
|
+
sodipodi:nodetypes="cccc"
|
|
348
|
+
inkscape:connector-curvature="0"
|
|
349
|
+
id="path4615"
|
|
350
|
+
d="M 149,64 162.77027,63.905 156,56 Z"
|
|
351
|
+
style="fill:#4c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
|
352
|
+
<rect
|
|
353
|
+
style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0"
|
|
354
|
+
x="54"
|
|
355
|
+
y="53"
|
|
356
|
+
width="11.999996"
|
|
357
|
+
height="1.9999961"
|
|
358
|
+
id="rect4638" />
|
|
359
|
+
<rect
|
|
360
|
+
id="svg_1-7-2-24"
|
|
361
|
+
height="1.9999957"
|
|
362
|
+
width="12.99999"
|
|
363
|
+
y="-56"
|
|
364
|
+
x="53"
|
|
365
|
+
style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0"
|
|
366
|
+
transform="matrix(0,1,-1,0,0,0)" />
|
|
367
|
+
<rect
|
|
368
|
+
transform="matrix(0,1,-1,0,0,0)"
|
|
369
|
+
style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0"
|
|
370
|
+
x="53"
|
|
371
|
+
y="-66"
|
|
372
|
+
width="12.99999"
|
|
373
|
+
height="1.9999957"
|
|
374
|
+
id="rect4657" />
|
|
375
|
+
<rect
|
|
376
|
+
id="rect4659"
|
|
377
|
+
height="0.99999291"
|
|
378
|
+
width="11.999999"
|
|
379
|
+
y="57"
|
|
380
|
+
x="54"
|
|
381
|
+
style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0" />
|
|
382
|
+
<rect
|
|
383
|
+
style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1"
|
|
384
|
+
x="54"
|
|
385
|
+
y="88.000122"
|
|
386
|
+
width="11.999996"
|
|
387
|
+
height="1.9999961"
|
|
388
|
+
id="rect4661" />
|
|
389
|
+
<rect
|
|
390
|
+
style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1"
|
|
391
|
+
x="80.000008"
|
|
392
|
+
y="76.000122"
|
|
393
|
+
width="2.9999907"
|
|
394
|
+
height="2.9999905"
|
|
395
|
+
id="rect4663" />
|
|
396
|
+
<rect
|
|
397
|
+
id="rect4665"
|
|
398
|
+
height="2.9999905"
|
|
399
|
+
width="2.9999907"
|
|
400
|
+
y="76.000122"
|
|
401
|
+
x="85.000008"
|
|
402
|
+
style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1" />
|
|
403
|
+
<rect
|
|
404
|
+
id="rect4667"
|
|
405
|
+
height="2.9999905"
|
|
406
|
+
width="2.9999907"
|
|
407
|
+
y="82.000122"
|
|
408
|
+
x="80.000008"
|
|
409
|
+
style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1" />
|
|
410
|
+
<rect
|
|
411
|
+
style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1"
|
|
412
|
+
x="85.000008"
|
|
413
|
+
y="82.000122"
|
|
414
|
+
width="2.9999907"
|
|
415
|
+
height="2.9999905"
|
|
416
|
+
id="rect4669" />
|
|
417
|
+
<rect
|
|
418
|
+
style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1"
|
|
419
|
+
x="80.000008"
|
|
420
|
+
y="88.000122"
|
|
421
|
+
width="2.9999907"
|
|
422
|
+
height="2.9999905"
|
|
423
|
+
id="rect4671" />
|
|
424
|
+
<rect
|
|
425
|
+
id="rect4673"
|
|
426
|
+
height="2.9999905"
|
|
427
|
+
width="2.9999907"
|
|
428
|
+
y="88.000122"
|
|
429
|
+
x="85.000008"
|
|
430
|
+
style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1" />
|
|
431
|
+
<circle
|
|
432
|
+
r="4.7438836"
|
|
433
|
+
cy="81.939331"
|
|
434
|
+
cx="110.06081"
|
|
435
|
+
id="circle4675"
|
|
436
|
+
style="opacity:1;fill:none;fill-opacity:1;stroke:#d3d3d3;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
|
437
|
+
<rect
|
|
438
|
+
transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)"
|
|
439
|
+
id="rect4677"
|
|
440
|
+
height="6.4053884"
|
|
441
|
+
width="4.229713"
|
|
442
|
+
y="-14.826816"
|
|
443
|
+
x="133.6163"
|
|
444
|
+
style="fill:#d3d3d3;fill-opacity:1;stroke:#d3d3d3;stroke-width:0;stroke-opacity:1" />
|
|
445
|
+
<path
|
|
446
|
+
sodipodi:nodetypes="cccc"
|
|
447
|
+
inkscape:connector-curvature="0"
|
|
448
|
+
id="path4679"
|
|
449
|
+
d="m 125,80.000005 13.77027,0.09499 L 132,87.999992 Z"
|
|
450
|
+
style="fill:#d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:#d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
|
451
|
+
<path
|
|
452
|
+
style="fill:#d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:#d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
453
|
+
d="M 149,88.0002 162.77027,87.9052 156,80.0002 Z"
|
|
454
|
+
id="path4681"
|
|
455
|
+
inkscape:connector-curvature="0"
|
|
456
|
+
sodipodi:nodetypes="cccc" />
|
|
457
|
+
<rect
|
|
458
|
+
id="rect4683"
|
|
459
|
+
height="1.9999961"
|
|
460
|
+
width="11.999996"
|
|
461
|
+
y="77.000122"
|
|
462
|
+
x="54"
|
|
463
|
+
style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1" />
|
|
464
|
+
<rect
|
|
465
|
+
transform="matrix(0,1,-1,0,0,0)"
|
|
466
|
+
style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1"
|
|
467
|
+
x="77.000122"
|
|
468
|
+
y="-56"
|
|
469
|
+
width="12.99999"
|
|
470
|
+
height="1.9999957"
|
|
471
|
+
id="rect4685" />
|
|
472
|
+
<rect
|
|
473
|
+
id="rect4687"
|
|
474
|
+
height="1.9999957"
|
|
475
|
+
width="12.99999"
|
|
476
|
+
y="-66"
|
|
477
|
+
x="77.000122"
|
|
478
|
+
style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1"
|
|
479
|
+
transform="matrix(0,1,-1,0,0,0)" />
|
|
480
|
+
<rect
|
|
481
|
+
style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1"
|
|
482
|
+
x="54"
|
|
483
|
+
y="81.000122"
|
|
484
|
+
width="11.999999"
|
|
485
|
+
height="0.99999291"
|
|
486
|
+
id="rect4689" />
|
|
487
|
+
<rect
|
|
488
|
+
id="rect4761-1"
|
|
489
|
+
height="1.9999945"
|
|
490
|
+
width="15.99999"
|
|
491
|
+
y="101"
|
|
492
|
+
x="76.000008"
|
|
493
|
+
style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
|
|
494
|
+
<rect
|
|
495
|
+
id="rect4761-0"
|
|
496
|
+
height="1.9999945"
|
|
497
|
+
width="15.99999"
|
|
498
|
+
y="105"
|
|
499
|
+
x="76.000008"
|
|
500
|
+
style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
|
|
501
|
+
<rect
|
|
502
|
+
id="rect4761-7"
|
|
503
|
+
height="1.9999945"
|
|
504
|
+
width="9"
|
|
505
|
+
y="109"
|
|
506
|
+
x="76.000008"
|
|
507
|
+
style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
|
|
508
|
+
<rect
|
|
509
|
+
id="rect4761-1-1"
|
|
510
|
+
height="1.9999945"
|
|
511
|
+
width="12"
|
|
512
|
+
y="125"
|
|
513
|
+
x="76.000008"
|
|
514
|
+
style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
|
|
515
|
+
<rect
|
|
516
|
+
id="rect4761-1-1-4"
|
|
517
|
+
height="1.9999945"
|
|
518
|
+
width="10"
|
|
519
|
+
y="137"
|
|
520
|
+
x="76.000008"
|
|
521
|
+
style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
|
|
522
|
+
<rect
|
|
523
|
+
id="rect4761-1-1-4-4"
|
|
524
|
+
height="1.9999945"
|
|
525
|
+
width="10"
|
|
526
|
+
y="129"
|
|
527
|
+
x="82"
|
|
528
|
+
style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
|
|
529
|
+
<rect
|
|
530
|
+
id="rect4761-1-1-4-4-3"
|
|
531
|
+
height="1.9999945"
|
|
532
|
+
width="9"
|
|
533
|
+
y="133"
|
|
534
|
+
x="82"
|
|
535
|
+
style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
|
|
536
|
+
<path
|
|
537
|
+
inkscape:connector-curvature="0"
|
|
538
|
+
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:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;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"
|
|
539
|
+
d="m 36.398438,100.0254 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,100.5991 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1452 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533865,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550756,0 6.710442,-2.4113 7.650391,-5.9414 0.939949,-3.5301 -0.618463,-7.2736 -3.710938,-9.0703 -1.159678,-0.6738 -2.431087,-1.0231 -3.701171,-1.0625 z"
|
|
540
|
+
id="path4138" />
|
|
541
|
+
<path
|
|
542
|
+
inkscape:connector-curvature="0"
|
|
543
|
+
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:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;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"
|
|
544
|
+
d="m 59.722656,99.9629 c -1.270084,0.039 -2.541493,0.3887 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5402 -3.710937,9.0703 0.939949,3.5301 4.09768,5.9414 7.648437,5.9414 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4056 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z"
|
|
545
|
+
id="path4138-1" />
|
|
546
|
+
<path
|
|
547
|
+
inkscape:connector-curvature="0"
|
|
548
|
+
style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none"
|
|
549
|
+
d="m 10.5,100 0,2 -2.4999996,0 L 12,107 l 4,-5 -2.5,0 0,-2 -3,0 z"
|
|
550
|
+
id="path3055-0-77" />
|
|
551
|
+
<path
|
|
552
|
+
style="opacity:0.8;fill:none;stroke:#ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
553
|
+
d="m 4.9850574,108.015 14.0298856,-0.03"
|
|
554
|
+
id="path5244-5-0-5"
|
|
555
|
+
inkscape:connector-curvature="0"
|
|
556
|
+
sodipodi:nodetypes="cc" />
|
|
557
|
+
<path
|
|
558
|
+
style="opacity:0.8;fill:none;stroke:#ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
559
|
+
d="m 4.9849874,132.015 14.0298866,-0.03"
|
|
560
|
+
id="path5244-5-0-5-8"
|
|
561
|
+
inkscape:connector-curvature="0"
|
|
562
|
+
sodipodi:nodetypes="cc" />
|
|
563
|
+
<path
|
|
564
|
+
inkscape:connector-curvature="0"
|
|
565
|
+
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:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;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"
|
|
566
|
+
d="m 36.398438,123.9629 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,124.5366 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1453 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533864,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550757,0 6.710442,-2.4093 7.650391,-5.9394 0.939949,-3.5301 -0.618463,-7.2756 -3.710938,-9.0723 -1.159678,-0.6737 -2.431087,-1.0231 -3.701171,-1.0625 z"
|
|
567
|
+
id="path4138-12" />
|
|
568
|
+
<path
|
|
569
|
+
inkscape:connector-curvature="0"
|
|
570
|
+
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:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;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"
|
|
571
|
+
d="m 59.722656,123.9629 c -1.270084,0.039 -2.541493,0.3888 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5422 -3.710937,9.0723 0.939949,3.5301 4.09768,5.9394 7.648437,5.9394 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4055 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z"
|
|
572
|
+
id="path4138-1-3" />
|
|
573
|
+
<path
|
|
574
|
+
id="path6191"
|
|
575
|
+
d="m 10.5,116 0,-2 -2.4999996,0 L 12,109 l 4,5 -2.5,0 0,2 -3,0 z"
|
|
576
|
+
style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none"
|
|
577
|
+
inkscape:connector-curvature="0" />
|
|
578
|
+
<path
|
|
579
|
+
inkscape:connector-curvature="0"
|
|
580
|
+
style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none"
|
|
581
|
+
d="m 10.5,129 0,-2 -2.4999996,0 L 12,122 l 4,5 -2.5,0 0,2 -3,0 z"
|
|
582
|
+
id="path6193" />
|
|
583
|
+
<path
|
|
584
|
+
id="path6195"
|
|
585
|
+
d="m 10.5,135 0,2 -2.4999996,0 L 12,142 l 4,-5 -2.5,0 0,-2 -3,0 z"
|
|
586
|
+
style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none"
|
|
587
|
+
inkscape:connector-curvature="0" />
|
|
588
|
+
<path
|
|
589
|
+
sodipodi:type="star"
|
|
590
|
+
style="fill:#4d4d4d;fill-opacity:0.90196078;stroke:#d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
|
591
|
+
id="path4500"
|
|
592
|
+
sodipodi:sides="3"
|
|
593
|
+
sodipodi:cx="11.55581"
|
|
594
|
+
sodipodi:cy="60.073242"
|
|
595
|
+
sodipodi:r1="5.1116104"
|
|
596
|
+
sodipodi:r2="2.5558052"
|
|
597
|
+
sodipodi:arg1="0"
|
|
598
|
+
sodipodi:arg2="1.0471976"
|
|
599
|
+
inkscape:flatsided="false"
|
|
600
|
+
inkscape:rounded="0"
|
|
601
|
+
inkscape:randomized="0"
|
|
602
|
+
d="m 16.66742,60.073242 -3.833708,2.213392 -3.8337072,2.213393 0,-4.426785 0,-4.426784 3.8337082,2.213392 z"
|
|
603
|
+
inkscape:transform-center-x="-1.2779026" />
|
|
604
|
+
<path
|
|
605
|
+
inkscape:transform-center-x="1.277902"
|
|
606
|
+
d="m -31.500004,60.073242 -3.833708,2.213392 -3.833707,2.213393 0,-4.426785 0,-4.426784 3.833707,2.213392 z"
|
|
607
|
+
inkscape:randomized="0"
|
|
608
|
+
inkscape:rounded="0"
|
|
609
|
+
inkscape:flatsided="false"
|
|
610
|
+
sodipodi:arg2="1.0471976"
|
|
611
|
+
sodipodi:arg1="0"
|
|
612
|
+
sodipodi:r2="2.5558052"
|
|
613
|
+
sodipodi:r1="5.1116104"
|
|
614
|
+
sodipodi:cy="60.073242"
|
|
615
|
+
sodipodi:cx="-36.611614"
|
|
616
|
+
sodipodi:sides="3"
|
|
617
|
+
id="path4502"
|
|
618
|
+
style="fill:#4d4d4d;fill-opacity:0.90196078;stroke:#d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
|
619
|
+
sodipodi:type="star"
|
|
620
|
+
transform="scale(-1,1)" />
|
|
621
|
+
<path
|
|
622
|
+
d="m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z"
|
|
623
|
+
inkscape:randomized="0"
|
|
624
|
+
inkscape:rounded="0"
|
|
625
|
+
inkscape:flatsided="false"
|
|
626
|
+
sodipodi:arg2="1.0471976"
|
|
627
|
+
sodipodi:arg1="0"
|
|
628
|
+
sodipodi:r2="2.5558052"
|
|
629
|
+
sodipodi:r1="5.1116104"
|
|
630
|
+
sodipodi:cy="60.073212"
|
|
631
|
+
sodipodi:cx="11.55581"
|
|
632
|
+
sodipodi:sides="3"
|
|
633
|
+
id="path4504"
|
|
634
|
+
style="fill:#4d4d4d;fill-opacity:0.90196078;stroke:#d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
|
635
|
+
sodipodi:type="star"
|
|
636
|
+
transform="matrix(0,1,-1,0,72.0074,71.7877)"
|
|
637
|
+
inkscape:transform-center-y="1.2779029" />
|
|
638
|
+
<path
|
|
639
|
+
inkscape:transform-center-y="-1.2779026"
|
|
640
|
+
transform="matrix(0,-1,-1,0,96,96)"
|
|
641
|
+
sodipodi:type="star"
|
|
642
|
+
style="fill:#4d4d4d;fill-opacity:0.90196078;stroke:#d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
|
643
|
+
id="path4506"
|
|
644
|
+
sodipodi:sides="3"
|
|
645
|
+
sodipodi:cx="11.55581"
|
|
646
|
+
sodipodi:cy="60.073212"
|
|
647
|
+
sodipodi:r1="5.1116104"
|
|
648
|
+
sodipodi:r2="2.5558052"
|
|
649
|
+
sodipodi:arg1="0"
|
|
650
|
+
sodipodi:arg2="1.0471976"
|
|
651
|
+
inkscape:flatsided="false"
|
|
652
|
+
inkscape:rounded="0"
|
|
653
|
+
inkscape:randomized="0"
|
|
654
|
+
d="m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z" />
|
|
655
|
+
<path
|
|
656
|
+
sodipodi:nodetypes="cccc"
|
|
657
|
+
inkscape:connector-curvature="0"
|
|
658
|
+
id="path4615-5"
|
|
659
|
+
d="m 171.82574,65.174193 16.34854,0 -8.17427,-13.348454 z"
|
|
660
|
+
style="fill:#fbb917;fill-opacity:1;fill-rule:evenodd;stroke:#fbb917;stroke-width:1.65161395;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
|
661
|
+
<path
|
|
662
|
+
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
663
|
+
d="m 179,55 0,6 2,0 0,-6"
|
|
664
|
+
id="path4300"
|
|
665
|
+
inkscape:connector-curvature="0"
|
|
666
|
+
sodipodi:nodetypes="cccc" />
|
|
667
|
+
<path
|
|
668
|
+
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
669
|
+
d="m 179,62 0,2 2,0 0,-2"
|
|
670
|
+
id="path4300-6"
|
|
671
|
+
inkscape:connector-curvature="0"
|
|
672
|
+
sodipodi:nodetypes="cccc" />
|
|
673
|
+
<path
|
|
674
|
+
style="fill:#ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:0.8"
|
|
675
|
+
d="M 99.994369,113.0221 102,114.98353 l 7,-6.9558 3,0.97227 2,-1 1,-2 0,-3 -3,3 -3,-3 3,-3 -3,0 -2,1 -1,2 0.99437,3.0221 z"
|
|
676
|
+
id="path4268"
|
|
677
|
+
inkscape:connector-curvature="0"
|
|
678
|
+
sodipodi:nodetypes="ccccccccccccccc" />
|
|
679
|
+
<rect
|
|
680
|
+
id="rect4175-3-5"
|
|
681
|
+
height="16"
|
|
682
|
+
width="16"
|
|
683
|
+
y="4"
|
|
684
|
+
x="220"
|
|
685
|
+
style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0" />
|
|
686
|
+
<path
|
|
687
|
+
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
688
|
+
d="m 234,6 0,2 -5,5 0,5 -2,0 0,-5 -5,-5 0,-2"
|
|
689
|
+
id="path3546"
|
|
690
|
+
inkscape:connector-curvature="0"
|
|
691
|
+
sodipodi:nodetypes="cccccccc" />
|
|
692
|
+
<g
|
|
693
|
+
transform="matrix(1.3333328,0,0,-1.5999992,-139.9999,127.19999)"
|
|
694
|
+
id="g4383-6">
|
|
695
|
+
<rect
|
|
696
|
+
id="rect4385-2"
|
|
697
|
+
height="1.2499905"
|
|
698
|
+
width="5.9999924"
|
|
699
|
+
y="12.625005"
|
|
700
|
+
x="198.00002"
|
|
701
|
+
style="fill:#ffffff;fill-opacity:0.8;stroke:#000000;stroke-width:0" />
|
|
702
|
+
<rect
|
|
703
|
+
style="fill:#ffffff;fill-opacity:0.8;stroke:#000000;stroke-width:0"
|
|
704
|
+
x="198.00002"
|
|
705
|
+
y="15.125007"
|
|
706
|
+
width="7.4999928"
|
|
707
|
+
height="1.2499949"
|
|
708
|
+
id="rect4387-9" />
|
|
709
|
+
<rect
|
|
710
|
+
style="fill:#ffffff;fill-opacity:0.8;stroke:#000000;stroke-width:0"
|
|
711
|
+
x="198.00002"
|
|
712
|
+
y="7.6250024"
|
|
713
|
+
width="2.9999909"
|
|
714
|
+
height="1.2499905"
|
|
715
|
+
id="rect4389-1-0" />
|
|
716
|
+
<rect
|
|
717
|
+
style="fill:#ffffff;fill-opacity:0.8;stroke:#000000;stroke-width:0"
|
|
718
|
+
x="198.00002"
|
|
719
|
+
y="10.125004"
|
|
720
|
+
width="4.4999919"
|
|
721
|
+
height="1.2499905"
|
|
722
|
+
id="rect4389-1-9" />
|
|
723
|
+
<path
|
|
724
|
+
style="fill:#ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
725
|
+
d="m 207.00001,16.375004 0,-5.625005 -2.25,0 3,-3.1250014 3,3.1250014 -2.25,0 0,5.625005 -1.5,0"
|
|
726
|
+
id="path4402"
|
|
727
|
+
inkscape:connector-curvature="0"
|
|
728
|
+
sodipodi:nodetypes="cccccccc" />
|
|
729
|
+
</g>
|
|
730
|
+
<path
|
|
731
|
+
style="fill:#ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
732
|
+
d="m 164,100 0,3 -6,6 0,7 -4,0 0,-7 -6,-6 0,-3"
|
|
733
|
+
id="path3546-2-2"
|
|
734
|
+
inkscape:connector-curvature="0"
|
|
735
|
+
sodipodi:nodetypes="cccccccc" />
|
|
736
|
+
<rect
|
|
737
|
+
style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0"
|
|
738
|
+
id="svg_1-3"
|
|
739
|
+
height="16"
|
|
740
|
+
width="16"
|
|
741
|
+
y="28"
|
|
742
|
+
x="4" />
|
|
743
|
+
<path
|
|
744
|
+
sodipodi:nodetypes="ccccccccc"
|
|
745
|
+
inkscape:connector-curvature="0"
|
|
746
|
+
id="path4402-5-7"
|
|
747
|
+
d="m 15,41 0,-7 -4,0 0,3 -5,-4 5,-4 0,3 6,0 0,9"
|
|
748
|
+
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
|
749
|
+
</svg>
|