@node-projects/web-component-designer 0.0.35 → 0.0.36

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.
Files changed (227) hide show
  1. package/README.md +7 -0
  2. package/assets/images/chromeDevtools/LICENSE +27 -0
  3. package/assets/images/chromeDevtools/flex-direction-column-icon.svg +1 -0
  4. package/assets/images/chromeDevtools/flex-direction-row-icon.svg +1 -0
  5. package/assets/images/chromeDevtools/info.txt +2 -0
  6. package/dist/elements/controls/DesignerTabControl.js +93 -88
  7. package/dist/elements/controls/ImageButtonListSelector.js +38 -39
  8. package/dist/elements/controls/ThicknessEditor.js +22 -22
  9. package/dist/elements/documentContainer.js +20 -13
  10. package/dist/elements/helper/CssAttributeParser.js +3 -3
  11. package/dist/elements/helper/CssCombiner.js +1 -1
  12. package/dist/elements/helper/IndentedTextWriter.js +3 -5
  13. package/dist/elements/helper/Screenshot.js +4 -0
  14. package/dist/elements/helper/contextMenu/ContextMenuHelper.js +59 -53
  15. package/dist/elements/helper/w3color.js +15 -17
  16. package/dist/elements/item/DesignItem.js +21 -15
  17. package/dist/elements/services/BaseServiceContainer.js +1 -3
  18. package/dist/elements/services/GlobalContext.js +8 -6
  19. package/dist/elements/services/InstanceServiceContainer.js +1 -4
  20. package/dist/elements/services/ServiceContainer.js +8 -10
  21. package/dist/elements/services/bindingsService/BaseCustomWebcomponentBindingsService.js +1 -1
  22. package/dist/elements/services/bindingsService/SpecialTagsBindingService.js +5 -5
  23. package/dist/elements/services/contentService/ContentService.js +2 -1
  24. package/dist/elements/services/elementsService/JsonFileElementsService.js +14 -10
  25. package/dist/elements/services/elementsService/PreDefinedElementsService.js +6 -4
  26. package/dist/elements/services/htmlParserService/NodeHtmlParserService.js +2 -1
  27. package/dist/elements/services/htmlWriterService/IHtmlWriterOptions.js +3 -0
  28. package/dist/elements/services/placementService/DefaultPlacementService.d.ts +3 -4
  29. package/dist/elements/services/placementService/DefaultPlacementService.js +10 -10
  30. package/dist/elements/services/placementService/FlexBoxPlacementService.d.ts +3 -4
  31. package/dist/elements/services/placementService/FlexBoxPlacementService.js +3 -3
  32. package/dist/elements/services/placementService/GridPlacementService.d.ts +3 -4
  33. package/dist/elements/services/placementService/GridPlacementService.js +3 -3
  34. package/dist/elements/services/placementService/IPlacementService.d.ts +3 -4
  35. package/dist/elements/services/popupService/PopupService.js +3 -1
  36. package/dist/elements/services/propertiesService/propertyEditors/BasePropertyEditor.js +4 -1
  37. package/dist/elements/services/propertiesService/propertyEditors/JsonPropertyEditor.js +7 -6
  38. package/dist/elements/services/propertiesService/propertyEditors/JsonPropertyPopupEditor.js +6 -6
  39. package/dist/elements/services/propertiesService/propertyEditors/TextPropertyEditor.js +1 -2
  40. package/dist/elements/services/propertiesService/services/AttributesPropertiesService.js +1 -3
  41. package/dist/elements/services/propertiesService/services/BaseCustomWebComponentPropertiesService.js +1 -4
  42. package/dist/elements/services/propertiesService/services/CommonPropertiesService.js +21 -23
  43. package/dist/elements/services/propertiesService/services/CssPropertiesService.js +186 -185
  44. package/dist/elements/services/propertiesService/services/ListPropertiesService.js +2 -2
  45. package/dist/elements/services/propertiesService/services/Lit2PropertiesService.js +1 -4
  46. package/dist/elements/services/propertiesService/services/LitElementPropertiesService.js +1 -4
  47. package/dist/elements/services/propertiesService/services/NativeElementsPropertiesService.js +72 -75
  48. package/dist/elements/services/propertiesService/services/PolymerPropertiesService.js +1 -4
  49. package/dist/elements/services/propertiesService/services/UnkownElementPropertiesService.js +1 -3
  50. package/dist/elements/services/selectionService/SelectionService.js +3 -4
  51. package/dist/elements/services/undoService/ChangeGroup.js +6 -2
  52. package/dist/elements/services/undoService/UndoService.js +3 -5
  53. package/dist/elements/services/undoService/transactionItems/AttributeChangeAction.js +5 -0
  54. package/dist/elements/services/undoService/transactionItems/CssStyleChangeAction.js +5 -0
  55. package/dist/elements/services/undoService/transactionItems/DeleteAction.js +5 -0
  56. package/dist/elements/services/undoService/transactionItems/InsertAction.js +4 -0
  57. package/dist/elements/services/undoService/transactionItems/MoveElementInDomAction.js +7 -0
  58. package/dist/elements/services/undoService/transactionItems/PropertyChangeAction.js +5 -0
  59. package/dist/elements/widgets/bindableObjectsBrowser/bindable-objects-browser.js +27 -24
  60. package/dist/elements/widgets/bindings/BindingsEditor.js +6 -6
  61. package/dist/elements/widgets/codeView/code-view-ace.js +12 -7
  62. package/dist/elements/widgets/codeView/code-view-code-mirror.js +18 -13
  63. package/dist/elements/widgets/codeView/code-view-monaco.js +16 -11
  64. package/dist/elements/widgets/demoView/demoView.js +24 -22
  65. package/dist/elements/widgets/designerView/DesignContext.js +1 -3
  66. package/dist/elements/widgets/designerView/IDesignerCanvas.d.ts +1 -2
  67. package/dist/elements/widgets/designerView/Snaplines.js +8 -5
  68. package/dist/elements/widgets/designerView/designerCanvas.d.ts +3 -2
  69. package/dist/elements/widgets/designerView/designerCanvas.js +110 -92
  70. package/dist/elements/widgets/designerView/designerView.js +89 -87
  71. package/dist/elements/widgets/designerView/extensions/AbstractExtension.js +5 -1
  72. package/dist/elements/widgets/designerView/extensions/AltToEnterContainerExtension.js +2 -0
  73. package/dist/elements/widgets/designerView/extensions/AltToEnterContainerExtensionProvider.js +4 -6
  74. package/dist/elements/widgets/designerView/extensions/CanvasExtension copy.d.ts +10 -0
  75. package/dist/elements/widgets/designerView/extensions/CanvasExtension copy.js +29 -0
  76. package/dist/elements/widgets/designerView/extensions/CanvasExtensionProvider copy.d.ts +10 -0
  77. package/dist/elements/widgets/designerView/extensions/CanvasExtensionProvider copy.js +15 -0
  78. package/dist/elements/widgets/designerView/extensions/CanvasExtensionProvider.js +3 -5
  79. package/dist/elements/widgets/designerView/extensions/EditText/EditTextExtension.js +11 -8
  80. package/dist/elements/widgets/designerView/extensions/ExtensionManager.js +1 -0
  81. package/dist/elements/widgets/designerView/extensions/GrayOutExtension.js +1 -0
  82. package/dist/elements/widgets/designerView/extensions/GrayOutExtensionProvider.js +3 -5
  83. package/dist/elements/widgets/designerView/extensions/GridExtensionProvider.js +5 -7
  84. package/dist/elements/widgets/designerView/extensions/InvisibleDivExtension.js +1 -0
  85. package/dist/elements/widgets/designerView/extensions/InvisibleDivExtensionProvider.js +3 -5
  86. package/dist/elements/widgets/designerView/extensions/MouseOverExtension.js +1 -0
  87. package/dist/elements/widgets/designerView/extensions/MouseOverExtensionProvider.js +3 -5
  88. package/dist/elements/widgets/designerView/extensions/PathExtension.js +4 -0
  89. package/dist/elements/widgets/designerView/extensions/PermamentCursorExtension.d.ts +10 -0
  90. package/dist/elements/widgets/designerView/extensions/PermamentCursorExtension.js +29 -0
  91. package/dist/elements/widgets/designerView/extensions/PermamentCursorExtensionProvider copy.d.ts +10 -0
  92. package/dist/elements/widgets/designerView/extensions/PermamentCursorExtensionProvider copy.js +15 -0
  93. package/dist/elements/widgets/designerView/extensions/PermamentCursorExtensionProvider.d.ts +10 -0
  94. package/dist/elements/widgets/designerView/extensions/PermamentCursorExtensionProvider.js +15 -0
  95. package/dist/elements/widgets/designerView/extensions/PositionExtension.js +4 -0
  96. package/dist/elements/widgets/designerView/extensions/PrimarySelectionDefaultExtension.js +2 -0
  97. package/dist/elements/widgets/designerView/extensions/ResizeExtension.js +14 -4
  98. package/dist/elements/widgets/designerView/extensions/ResizeExtensionProvider.js +1 -0
  99. package/dist/elements/widgets/designerView/extensions/RotateExtensionProvider.js +3 -5
  100. package/dist/elements/widgets/designerView/extensions/SelectionDefaultExtension.js +1 -0
  101. package/dist/elements/widgets/designerView/extensions/SelectionDefaultExtensionProvider.js +3 -5
  102. package/dist/elements/widgets/designerView/extensions/TransformOriginExtension.js +3 -0
  103. package/dist/elements/widgets/designerView/extensions/TransformOriginExtensionProvider.js +3 -5
  104. package/dist/elements/widgets/designerView/extensions/contextMenu/MultipleItemsSelectedContextMenu.js +1 -3
  105. package/dist/elements/widgets/designerView/extensions/pointerExtensions/AbstractDesignerPointerExtension.d.ts +22 -0
  106. package/dist/elements/widgets/designerView/extensions/pointerExtensions/AbstractDesignerPointerExtension.js +82 -0
  107. package/dist/elements/widgets/designerView/extensions/pointerExtensions/AbstractExtension.d.ts +22 -0
  108. package/dist/elements/widgets/designerView/extensions/pointerExtensions/AbstractExtension.js +78 -0
  109. package/dist/elements/widgets/designerView/extensions/pointerExtensions/CursorRectangleExtension.d.ts +7 -0
  110. package/dist/elements/widgets/designerView/extensions/pointerExtensions/CursorRectangleExtension.js +20 -0
  111. package/dist/elements/widgets/designerView/extensions/pointerExtensions/CursorRectanglePointerExtension copy.d.ts +7 -0
  112. package/dist/elements/widgets/designerView/extensions/pointerExtensions/CursorRectanglePointerExtension copy.js +20 -0
  113. package/dist/elements/widgets/designerView/extensions/pointerExtensions/CursorRectanglePointerExtension.d.ts +7 -0
  114. package/dist/elements/widgets/designerView/extensions/pointerExtensions/CursorRectanglePointerExtension.js +20 -0
  115. package/dist/elements/widgets/designerView/extensions/pointerExtensions/IDesignerExtension.d.ts +5 -0
  116. package/dist/elements/widgets/designerView/extensions/pointerExtensions/IDesignerExtension.js +1 -0
  117. package/dist/elements/widgets/designerView/extensions/pointerExtensions/IDesignerExtensionProvider.d.ts +9 -0
  118. package/dist/elements/widgets/designerView/extensions/pointerExtensions/IDesignerExtensionProvider.js +1 -0
  119. package/dist/elements/widgets/designerView/extensions/pointerExtensions/IDesignerPointerExtension.d.ts +5 -0
  120. package/dist/elements/widgets/designerView/extensions/pointerExtensions/IDesignerPointerExtension.js +1 -0
  121. package/dist/elements/widgets/designerView/extensions/pointerExtensions/IDesignerPointerExtensionProvider.d.ts +9 -0
  122. package/dist/elements/widgets/designerView/extensions/pointerExtensions/IDesignerPointerExtensionProvider.js +1 -0
  123. package/dist/elements/widgets/designerView/extensions/pointerExtensions/RulerExtension.d.ts +7 -0
  124. package/dist/elements/widgets/designerView/extensions/pointerExtensions/RulerExtension.js +20 -0
  125. package/dist/elements/widgets/designerView/extensions/pointerExtensions/RulerPointerExtension.d.ts +7 -0
  126. package/dist/elements/widgets/designerView/extensions/pointerExtensions/RulerPointerExtension.js +20 -0
  127. package/dist/elements/widgets/designerView/overlay/EditTextOverlay.js +3 -3
  128. package/dist/elements/widgets/designerView/overlayLayerView.js +28 -23
  129. package/dist/elements/widgets/designerView/tools/DrawElementTool.js +5 -1
  130. package/dist/elements/widgets/designerView/tools/DrawPathTool.d.ts +0 -1
  131. package/dist/elements/widgets/designerView/tools/DrawPathTool.js +4 -3
  132. package/dist/elements/widgets/designerView/tools/MagicWandSelectorTool.d.ts +0 -1
  133. package/dist/elements/widgets/designerView/tools/MagicWandSelectorTool.js +4 -5
  134. package/dist/elements/widgets/designerView/tools/PanTool.js +1 -3
  135. package/dist/elements/widgets/designerView/tools/PickColorTool.js +1 -3
  136. package/dist/elements/widgets/designerView/tools/PointerTool.d.ts +2 -1
  137. package/dist/elements/widgets/designerView/tools/PointerTool.js +75 -63
  138. package/dist/elements/widgets/designerView/tools/RectangleSelectorTool.js +11 -10
  139. package/dist/elements/widgets/designerView/tools/TextTool.js +1 -1
  140. package/dist/elements/widgets/designerView/tools/ZoomTool.js +1 -3
  141. package/dist/elements/widgets/miniatureView/html-2-canvas-miniature-view.js +5 -4
  142. package/dist/elements/widgets/paletteView/paletteElements.js +45 -45
  143. package/dist/elements/widgets/paletteView/paletteTreeView.js +53 -51
  144. package/dist/elements/widgets/paletteView/paletteView.js +9 -8
  145. package/dist/elements/widgets/propertyGrid/PropertyGrid.js +24 -19
  146. package/dist/elements/widgets/propertyGrid/PropertyGridPropertyList.js +12 -8
  147. package/dist/elements/widgets/treeView/treeView.js +102 -96
  148. package/dist/elements/widgets/treeView/treeViewExtended.js +72 -70
  149. package/dist/index.d.ts +0 -1
  150. package/package.json +1 -1
  151. package/tsconfig.json +1 -1
  152. package/assets/images/chromeDevtools/accelerometer-back.svg +0 -69
  153. package/assets/images/chromeDevtools/accelerometer-front.svg +0 -28
  154. package/assets/images/chromeDevtools/accessibility-icon.svg +0 -3
  155. package/assets/images/chromeDevtools/add-icon.svg +0 -3
  156. package/assets/images/chromeDevtools/checkboxCheckmark.svg +0 -60
  157. package/assets/images/chromeDevtools/chevrons.svg +0 -62
  158. package/assets/images/chromeDevtools/chromeSelect.svg +0 -1
  159. package/assets/images/chromeDevtools/chromeSelectDark.svg +0 -1
  160. package/assets/images/chromeDevtools/close-icon.svg +0 -5
  161. package/assets/images/chromeDevtools/copy_icon.svg +0 -79
  162. package/assets/images/chromeDevtools/dropdown_7x6_icon.svg +0 -1
  163. package/assets/images/chromeDevtools/elements_panel_icon.svg +0 -1
  164. package/assets/images/chromeDevtools/errorWave.svg +0 -74
  165. package/assets/images/chromeDevtools/error_icon.svg +0 -125
  166. package/assets/images/chromeDevtools/feedback_button_icon.svg +0 -3
  167. package/assets/images/chromeDevtools/help_outline.svg +0 -1
  168. package/assets/images/chromeDevtools/ic_checkmark_16x16.svg +0 -3
  169. package/assets/images/chromeDevtools/ic_command_go_to_line.svg +0 -4
  170. package/assets/images/chromeDevtools/ic_command_go_to_symbol.svg +0 -3
  171. package/assets/images/chromeDevtools/ic_command_help.svg +0 -3
  172. package/assets/images/chromeDevtools/ic_command_open_file.svg +0 -3
  173. package/assets/images/chromeDevtools/ic_command_run_command.svg +0 -3
  174. package/assets/images/chromeDevtools/ic_command_run_snippet.svg +0 -3
  175. package/assets/images/chromeDevtools/ic_delete_filter.svg +0 -1
  176. package/assets/images/chromeDevtools/ic_delete_list.svg +0 -1
  177. package/assets/images/chromeDevtools/ic_dimension_single.svg +0 -4
  178. package/assets/images/chromeDevtools/ic_file_default.svg +0 -3
  179. package/assets/images/chromeDevtools/ic_file_document.svg +0 -3
  180. package/assets/images/chromeDevtools/ic_file_font.svg +0 -3
  181. package/assets/images/chromeDevtools/ic_file_image.svg +0 -3
  182. package/assets/images/chromeDevtools/ic_file_script.svg +0 -3
  183. package/assets/images/chromeDevtools/ic_file_snippet.svg +0 -3
  184. package/assets/images/chromeDevtools/ic_file_stylesheet.svg +0 -3
  185. package/assets/images/chromeDevtools/ic_file_webbundle.svg +0 -5
  186. package/assets/images/chromeDevtools/ic_file_webbundle_inner_request.svg +0 -9
  187. package/assets/images/chromeDevtools/ic_folder_default.svg +0 -3
  188. package/assets/images/chromeDevtools/ic_folder_local.svg +0 -3
  189. package/assets/images/chromeDevtools/ic_folder_network.svg +0 -3
  190. package/assets/images/chromeDevtools/ic_info_black_18dp.svg +0 -1
  191. package/assets/images/chromeDevtools/ic_memory_16x16.svg +0 -6
  192. package/assets/images/chromeDevtools/ic_page_next_16x16_icon.svg +0 -1
  193. package/assets/images/chromeDevtools/ic_page_prev_16x16_icon.svg +0 -1
  194. package/assets/images/chromeDevtools/ic_preview_feature.svg +0 -3
  195. package/assets/images/chromeDevtools/ic_redo_16x16_icon.svg +0 -1
  196. package/assets/images/chromeDevtools/ic_request_response.svg +0 -5
  197. package/assets/images/chromeDevtools/ic_response.svg +0 -4
  198. package/assets/images/chromeDevtools/ic_show_node_16x16.svg +0 -4
  199. package/assets/images/chromeDevtools/ic_suggest_color.svg +0 -6
  200. package/assets/images/chromeDevtools/ic_undo_16x16_icon.svg +0 -1
  201. package/assets/images/chromeDevtools/ic_warning_black_18dp.svg +0 -1
  202. package/assets/images/chromeDevtools/issue-cross-icon.svg +0 -70
  203. package/assets/images/chromeDevtools/issue-exclamation-icon.svg +0 -64
  204. package/assets/images/chromeDevtools/issue-questionmark-icon.svg +0 -82
  205. package/assets/images/chromeDevtools/issue-text-icon.svg +0 -56
  206. package/assets/images/chromeDevtools/largeIcons.svg +0 -1629
  207. package/assets/images/chromeDevtools/lighthouse_logo.svg +0 -158
  208. package/assets/images/chromeDevtools/link_icon.svg +0 -1
  209. package/assets/images/chromeDevtools/mediumIcons.svg +0 -1101
  210. package/assets/images/chromeDevtools/network_conditions_icon.svg +0 -6
  211. package/assets/images/chromeDevtools/network_panel_icon.svg +0 -1
  212. package/assets/images/chromeDevtools/node_search_icon.svg +0 -1
  213. package/assets/images/chromeDevtools/preview_feature_video_thumbnail.svg +0 -92
  214. package/assets/images/chromeDevtools/refresh_12x12_icon.svg +0 -1
  215. package/assets/images/chromeDevtools/resizeDiagonal.svg +0 -1
  216. package/assets/images/chromeDevtools/resizeHorizontal.svg +0 -1
  217. package/assets/images/chromeDevtools/resizeVertical.svg +0 -1
  218. package/assets/images/chromeDevtools/securityIcons.svg +0 -278
  219. package/assets/images/chromeDevtools/settings_14x14_icon.svg +0 -1
  220. package/assets/images/chromeDevtools/smallIcons.svg +0 -1277
  221. package/assets/images/chromeDevtools/sources_panel_icon.svg +0 -1
  222. package/assets/images/chromeDevtools/survey_feedback_icon.svg +0 -1
  223. package/assets/images/chromeDevtools/switcherIcon.svg +0 -57
  224. package/assets/images/chromeDevtools/three_dots_menu_icon.svg +0 -1
  225. package/assets/images/chromeDevtools/trash_bin_icon.svg +0 -1
  226. package/assets/images/chromeDevtools/treeoutlineTriangles.svg +0 -70
  227. package/assets/images/chromeDevtools/warning_icon.svg +0 -83
@@ -1,1629 +0,0 @@
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:xlink="http://www.w3.org/1999/xlink"
9
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
10
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
11
- sodipodi:docname="largeIcons.svg"
12
- inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
13
- version="1.1"
14
- id="svg2"
15
- height="216"
16
- width="252">
17
- <metadata
18
- id="metadata606">
19
- <rdf:RDF>
20
- <cc:Work
21
- rdf:about="">
22
- <dc:format>image/svg+xml</dc:format>
23
- <dc:type
24
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
25
- <dc:title />
26
- </cc:Work>
27
- </rdf:RDF>
28
- </metadata>
29
- <defs
30
- id="defs604">
31
- <rect
32
- x="0"
33
- y="-48"
34
- width="252"
35
- height="48"
36
- id="rect324" />
37
- <linearGradient
38
- gradientUnits="userSpaceOnUse"
39
- y2="17.6469"
40
- x2="10"
41
- y1="3"
42
- x1="10"
43
- id="paint0_linear">
44
- <stop
45
- id="stop307"
46
- stop-opacity="0" />
47
- <stop
48
- id="stop309"
49
- offset="1" />
50
- </linearGradient>
51
- <linearGradient
52
- gradientUnits="userSpaceOnUse"
53
- y2="17.6469"
54
- x2="10"
55
- y1="3"
56
- x1="10"
57
- id="paint1_linear">
58
- <stop
59
- id="stop312"
60
- stop-color="white" />
61
- <stop
62
- id="stop314"
63
- stop-opacity="0"
64
- stop-color="white"
65
- offset="0.494792" />
66
- <stop
67
- id="stop316"
68
- stop-opacity="0"
69
- stop-color="white"
70
- offset="1" />
71
- </linearGradient>
72
- </defs>
73
- <sodipodi:namedview
74
- inkscape:document-units="in"
75
- pagecolor="#ffffff"
76
- bordercolor="#666666"
77
- borderopacity="1"
78
- objecttolerance="10"
79
- gridtolerance="10"
80
- guidetolerance="10"
81
- inkscape:pageopacity="0"
82
- inkscape:pageshadow="2"
83
- inkscape:window-width="1920"
84
- inkscape:window-height="1137"
85
- id="namedview602"
86
- showgrid="true"
87
- inkscape:zoom="2.4128986"
88
- inkscape:cx="145.564"
89
- inkscape:cy="135.01953"
90
- inkscape:window-x="3832"
91
- inkscape:window-y="-8"
92
- inkscape:window-maximized="1"
93
- inkscape:current-layer="svg2"
94
- inkscape:snap-grids="true"
95
- showguides="true"
96
- inkscape:guide-bbox="true"
97
- inkscape:document-rotation="0">
98
- <inkscape:grid
99
- type="xygrid"
100
- id="grid3583"
101
- empspacing="5"
102
- visible="true"
103
- enabled="true"
104
- snapvisiblegridlinesonly="true"
105
- spacingx="28"
106
- spacingy="24"
107
- originx="0"
108
- originy="0" />
109
- </sodipodi:namedview>
110
- <g
111
- id="g4">
112
- <g
113
- transform="translate(-322,-72)"
114
- id="g8">
115
- <circle
116
- transform="translate(326,74)"
117
- cx="15"
118
- cy="17"
119
- r="3"
120
- id="circle10"
121
- style="fill:#009802" />
122
- <path
123
- d="m 329,77 h 18 v 18 h -18 z"
124
- id="path12"
125
- inkscape:connector-curvature="0"
126
- style="fill:none" />
127
- <path
128
- d="m 327.25,75.25 h 20 v 20 h -20 z"
129
- id="path14"
130
- inkscape:connector-curvature="0"
131
- style="fill:none" />
132
- <path
133
- d="m 325.12,73.125 h 20 v 20 h -20 z"
134
- id="path16"
135
- inkscape:connector-curvature="0"
136
- style="fill:none" />
137
- </g>
138
- </g>
139
- <g
140
- transform="translate(-2.003,24)"
141
- id="g24">
142
- <path
143
- transform="translate(-224,-120)"
144
- d="m 240.77,127 h -1.534 v 4.233 h -4.233 v 1.534 h 4.233 V 137 h 1.534 v -4.233 h 4.233 v -1.534 h -4.233 z"
145
- id="path28"
146
- inkscape:connector-curvature="0" />
147
- </g>
148
- <g
149
- transform="translate(26,24)"
150
- id="g30">
151
- <path
152
- transform="translate(-96,-145)"
153
- d="m 103,148 h 18 v 18 h -18 z"
154
- id="path34"
155
- inkscape:connector-curvature="0"
156
- style="fill:none" />
157
- <path
158
- transform="translate(-96,-145)"
159
- d="m 115.42,154.7 -6.705,-6.705 -1.0575,1.0575 1.785,1.785 -3.8625,3.8625 c -0.4425,0.4425 -0.4425,1.155 0,1.59 l 4.125,4.125 c 0.2175,0.2175 0.51,0.33 0.795,0.33 0.285,0 0.5775,-0.1125 0.795,-0.33 l 4.125,-4.125 c 0.4425,-0.435 0.4425,-1.1475 0,-1.59 z m -8.5125,0.795 3.5925,-3.5925 3.5925,3.5925 z m 10.342,1.125 c 0,0 -1.5,1.6275 -1.5,2.625 0,0.825 0.675,1.5 1.5,1.5 0.825,0 1.5,-0.675 1.5,-1.5 0,-0.9975 -1.5,-2.625 -1.5,-2.625 z"
160
- id="path36"
161
- inkscape:connector-curvature="0" />
162
- <path
163
- transform="translate(-96,-145)"
164
- d="m 103,163 h 18 v 3 h -18 z"
165
- id="path38"
166
- inkscape:connector-curvature="0"
167
- style="fill-opacity:0.36" />
168
- </g>
169
- <g
170
- transform="translate(0,48)"
171
- id="g40">
172
- <path
173
- transform="translate(7,3)"
174
- d="M 0,0 H 18 V 18 H 0 Z"
175
- id="path44"
176
- inkscape:connector-curvature="0"
177
- style="fill:none" />
178
- <path
179
- transform="translate(7,3)"
180
- d="m 13,5 h 1.4936 C 15.32558,5 16,5.67154 16,6.5064 v 7.9871 c 0,0.83198 -0.67154,1.5064 -1.5064,1.5064 H 6.5065 c -0.83198,0 -1.5064,-0.67154 -1.5064,-1.5064 v -1.4936 h 6.4936 c 0.8349,0 1.5064,-0.67446 1.5064,-1.5064 V 4.9999 Z"
181
- id="path46"
182
- inkscape:connector-curvature="0"
183
- style="fill-opacity:0.36" />
184
- <path
185
- transform="translate(7,3)"
186
- d="M 3.5,2 C 2.669,2 2,2.669 2,3.5 v 8 C 2,12.331 2.669,13 3.5,13 h 8 c 0.831,0 1.5,-0.669 1.5,-1.5 v -8 C 13,2.669 12.331,2 11.5,2 Z m 0,1.5 h 8 v 8 h -8 z"
187
- id="path48"
188
- inkscape:connector-curvature="0"
189
- style="fill:#212121" />
190
- </g>
191
- <g
192
- transform="translate(26,48)"
193
- id="g50">
194
- <path
195
- transform="translate(-96,-24)"
196
- d="m 107,33 h 8 v 6 h -8 z"
197
- stroke-miterlimit="4.2"
198
- id="path54"
199
- inkscape:connector-curvature="0"
200
- style="stroke:#000000;stroke-width:2;stroke-miterlimit:4.2" />
201
- <path
202
- transform="translate(-96,-24)"
203
- d="m 115,36 4,-4 v 8"
204
- id="path56"
205
- inkscape:connector-curvature="0" />
206
- </g>
207
- <g
208
- transform="translate(54)"
209
- id="g58">
210
- <g
211
- id="g62"
212
- style="stroke:#000000">
213
- <path
214
- transform="matrix(0.36,0,0,0.36,-2.5,7.46)"
215
- d="m 53,14 a 3,3 0 1 1 -6,0 3,3 0 1 1 6,0 z"
216
- id="path64"
217
- inkscape:connector-curvature="0"
218
- style="fill-rule:evenodd;stroke-width:2.778" />
219
- <path
220
- transform="translate(-128,-120)"
221
- d="m 143.48,129.5 2.5403,-2 h -1.5242 v -2 h -2 l -0.0161,2 h -1.5403 z"
222
- id="path66"
223
- inkscape:connector-curvature="0" />
224
- <path
225
- transform="translate(-128,-120)"
226
- d="m 146.5,132.5 2,2.5 v -1.4998 l 2,-1e-4 v -2.0002 l -2,1e-4 V 130 Z"
227
- id="path68"
228
- inkscape:connector-curvature="0" />
229
- <path
230
- transform="translate(-128,-120)"
231
- d="m 143.5,135.5 -2.5,2 h 1.5 v 2 h 2 v -2 h 1.5 z"
232
- id="path70"
233
- inkscape:connector-curvature="0" />
234
- <path
235
- transform="translate(-128,-120)"
236
- d="m 140.5,132.5 -2,-2.5 v 1.4999 h -2 v 2.0002 l 2,-3e-4 V 135 Z"
237
- id="path72"
238
- inkscape:connector-curvature="0" />
239
- </g>
240
- </g>
241
- <g
242
- transform="translate(56,24)"
243
- id="g74">
244
- <g
245
- id="g78"
246
- style="fill-rule:evenodd">
247
- <path
248
- transform="matrix(0.9018,0,0,0.9018,4.308,4.525)"
249
- d="M 0,0 H 18 V 18 H 0 Z"
250
- id="path80"
251
- inkscape:connector-curvature="0"
252
- style="fill:none" />
253
- <path
254
- transform="matrix(0.9018,0,0,0.9018,4.308,4.525)"
255
- d="M 4.174,8.343 2.76,9.757 7.003,13.999 15.488,5.514 14.074,4.1 7.003,11.171 Z"
256
- id="path82"
257
- inkscape:connector-curvature="0" />
258
- </g>
259
- </g>
260
- <g
261
- transform="translate(57,47)"
262
- id="g84">
263
- <path
264
- transform="translate(-68,-143)"
265
- d="M 76.94,152 76,152.94 79.0533,156 76,159.06 l 0.94,0.94 4,-4 z"
266
- id="path88"
267
- inkscape:connector-curvature="0" />
268
- <path
269
- transform="translate(-68,-143)"
270
- d="M 80.94,152 80,152.94 83.0533,156 80,159.06 l 0.94,0.94 4,-4 z"
271
- id="path90"
272
- inkscape:connector-curvature="0" />
273
- </g>
274
- <g
275
- transform="translate(-2,72)"
276
- id="g92">
277
- <path
278
- transform="translate(-64)"
279
- d="m 80.44,16.94 c -2.48,0 -4.5,-2.02 -4.5,-4.5 0,-0.88 0.26,-1.7 0.69,-2.39 l 6.2,6.2 c -0.69,0.44 -1.51,0.69 -2.39,0.69 m 4.5,-4.5 c 0,0.88 -0.26,1.7 -0.69,2.39 l -6.2,-6.2 c 0.69,-0.44 1.51,-0.69 2.39,-0.69 2.48,0 4.5,2.02 4.5,4.5 M 80.5,6 C 76.91,6 74,8.91 74,12.5 74,16.09 76.91,19 80.5,19 84.09,19 87,16.09 87,12.5 87,8.91 84.09,6 80.5,6"
280
- id="path96"
281
- inkscape:connector-curvature="0" />
282
- </g>
283
- <g
284
- transform="translate(28,72)"
285
- id="g98">
286
- <g
287
- id="g102"
288
- style="fill-rule:evenodd">
289
- <path
290
- transform="matrix(0.87153,0,0,0.87153,4.071,4.568)"
291
- d="M 0,0 H 18 V 18 H 0 Z"
292
- id="path104"
293
- inkscape:connector-curvature="0"
294
- style="fill:none" />
295
- <path
296
- transform="matrix(0.87153,0,0,0.87153,4.071,4.568)"
297
- d="M 12,3.5 A 1.505,1.505 0 0 0 10.494,2 H 4.506 C 3.676,2 3,2.674 3,3.506 v 7.988 C 3,12.326 3.671,12.997 4.5,13 V 3.5 Z M 6,6.506 C 6,5.674 6.676,5 7.506,5 h 5.988 C 14.326,5 15,5.672 15,6.506 v 7.988 C 15,15.326 14.324,16 13.494,16 H 7.506 A 1.505,1.505 0 0 1 6,14.494 Z M 7.5,6.5 h 6 v 8 h -6 z"
298
- id="path106"
299
- inkscape:connector-curvature="0" />
300
- </g>
301
- </g>
302
- <g
303
- transform="translate(82)"
304
- id="g128">
305
- <path
306
- transform="translate(-128)"
307
- d="M 149,8.33 147.67,7 144,10.67 140.33,7 139,8.33 142.67,12 139,15.67 140.33,17 144,13.33 147.67,17 149,15.67 145.33,12 Z"
308
- id="path132"
309
- inkscape:connector-curvature="0" />
310
- </g>
311
- <g
312
- transform="translate(82,24)"
313
- id="g134">
314
- <path
315
- transform="translate(-32,-24)"
316
- d="M 53,37 H 43 V 32 H 53 Z M 41,42 H 55 V 30 H 41 Z"
317
- id="path138"
318
- inkscape:connector-curvature="0" />
319
- </g>
320
- <g
321
- transform="translate(82,48)"
322
- id="g140">
323
- <path
324
- transform="translate(-224,-48)"
325
- d="m 238,64 h 7 v -8 h -7 z m 9,2 h -14 v -12 h 14 z"
326
- id="path144"
327
- inkscape:connector-curvature="0" />
328
- </g>
329
- <g
330
- transform="translate(82,72)"
331
- id="g146">
332
- <path
333
- transform="translate(-256,-48)"
334
- d="m 274,64 h -7 v -8 h 7 z m -9,2 h 14 V 54 h -14 z"
335
- id="path150"
336
- inkscape:connector-curvature="0" />
337
- </g>
338
- <g
339
- transform="translate(-2,96)"
340
- id="g152">
341
- <path
342
- transform="translate(-160)"
343
- d="m 169,16.089 v 2.9105 h 2.9105 l 8.2839,-8.2839 -2.9106,-2.9105 z m 13.769,-7.9387 c 0.30785,-0.30785 0.30785,-0.79294 0,-1.1008 l -1.8191,-1.8191 c -0.30785,-0.30784 -0.79295,-0.30784 -1.1008,0 l -1.5206,1.5299 2.9105,2.9105 1.5299,-1.5206 z"
344
- id="path156"
345
- inkscape:connector-curvature="0" />
346
- </g>
347
- <g
348
- transform="translate(26,96)"
349
- id="g158">
350
- <path
351
- transform="translate(-288,-120)"
352
- d="m 310.77,127.04 -1.816,-1.8164 c -0.30331,-0.30338 -0.79716,-0.30338 -1.1005,0 l -2.4304,2.4309 -1.4894,-1.4935 -1.1005,1.1007 1.1044,1.1046 -6.9373,6.9348 v 3.695 h 3.6942 l 6.9373,-6.9387 1.1005,1.1046 1.1005,-1.1007 -1.4932,-1.4935 2.4304,-2.4309 c 0.3072,-0.30338 0.3072,-0.79345 0,-1.0968 z m -10.721,10.4 -1.4932,-1.4935 6.2724,-6.2736 1.4932,1.4935 -6.2723,6.2736 z"
353
- id="path162"
354
- inkscape:connector-curvature="0" />
355
- </g>
356
- <g
357
- transform="translate(54,96)"
358
- id="g164">
359
- <path
360
- transform="translate(-32,-48)"
361
- d="m 44,59 2,3 v 4 h 4 v -4 l 2,-3 z"
362
- id="path168"
363
- inkscape:connector-curvature="0"
364
- style="opacity:0.5;fill:#424242" />
365
- <path
366
- transform="translate(-32,-48)"
367
- d="m 46.5,65.23 c 0.32,0.13 0.84,0.24 1.47,0.24 0.59,0 1.14,-0.1 1.53,-0.26 v -3.93 l 4,-4.57 v -0.19 h -11 v 0.22 l 4,4.57 v 3.93 z M 47.97,67 C 46.81,66.91 45.82,66.71 45,66.01 V 61.89 L 41,57.32 V 55 h 14 v 2.35 l -4,4.57 v 4.13 c -0.92,0.67 -2.1,0.94 -3.03,0.95"
368
- id="path170"
369
- inkscape:connector-curvature="0" />
370
- </g>
371
- <g
372
- transform="translate(82.001,96)"
373
- id="g172">
374
- <path
375
- transform="matrix(0.75,0,0,0.75,-74.421,-143.43)"
376
- d="m 108.56,195.24 h 24 v 24 h -24 z"
377
- id="path176"
378
- inkscape:connector-curvature="0"
379
- style="fill:none" />
380
- <path
381
- transform="matrix(0.75,0,0,0.75,-74.421,-143.43)"
382
- d="m 108.56,215.24 h 24 v 4 h -24 z"
383
- id="path178"
384
- inkscape:connector-curvature="0"
385
- style="fill-opacity:0.36" />
386
- <path
387
- transform="matrix(0.75,0,0,0.75,-74.421,-143.43)"
388
- d="m 119.56,198.24 -5.5,14 h 2.25 l 1.12,-3 h 6.25 l 1.12,3 h 2.25 l -5.49,-14 z m -1.38,9 2.38,-6.33 2.38,6.33 z"
389
- id="path180"
390
- inkscape:connector-curvature="0" />
391
- </g>
392
- <g
393
- transform="translate(106,1)"
394
- id="g182">
395
- <path
396
- transform="rotate(-90,-186,-74)"
397
- d="m -278.5,126.5 h 14 v 12 h -14 z"
398
- id="path186"
399
- inkscape:connector-curvature="0"
400
- style="fill:none;stroke:#000000" />
401
- <path
402
- transform="matrix(0,1,1,0,-112,-260)"
403
- d="m 272,132.5 -5,-3.25 v 6.5"
404
- id="path188"
405
- inkscape:connector-curvature="0" />
406
- <path
407
- transform="rotate(-90,-186,-74)"
408
- d="m -275,126 h 1 v 13 h -1 z"
409
- id="path190"
410
- inkscape:connector-curvature="0" />
411
- </g>
412
- <path
413
- style="fill:none;stroke:#000000"
414
- inkscape:connector-curvature="0"
415
- id="path196"
416
- d="m 119.5,30.5 h 14 v 12 h -14 z" />
417
- <path
418
- inkscape:connector-curvature="0"
419
- id="path198"
420
- d="m 126,36.5 5,-3.25 v 6.5" />
421
- <path
422
- inkscape:connector-curvature="0"
423
- id="path200"
424
- d="m 123,30 h 1 v 13 h -1 z" />
425
- <g
426
- transform="translate(111,48)"
427
- id="g202">
428
- <path
429
- transform="matrix(-1,0,0,1,-192,-120)"
430
- d="m -214.5,126.5 h 14 v 12 h -14 z"
431
- id="path206"
432
- inkscape:connector-curvature="0"
433
- style="fill:none;stroke:#000000" />
434
- <path
435
- transform="translate(-192,-120)"
436
- d="m 208,132.5 -5,-3.25 v 6.5"
437
- id="path208"
438
- inkscape:connector-curvature="0" />
439
- <path
440
- transform="matrix(-1,0,0,1,-192,-120)"
441
- d="m -211,126 h 1 v 13 h -1 z"
442
- id="path210"
443
- inkscape:connector-curvature="0" />
444
- </g>
445
- <g
446
- transform="translate(106,73)"
447
- id="g212">
448
- <path
449
- transform="matrix(0,1,1,0,-88,283)"
450
- d="m -278.5,102.5 h 14 v 12 h -14 z"
451
- id="path216"
452
- inkscape:connector-curvature="0"
453
- style="fill:none;stroke:#000000" />
454
- <path
455
- transform="rotate(-90,97.5,185.5)"
456
- d="m 272,108.5 -5,-3.25 v 6.5"
457
- id="path218"
458
- inkscape:connector-curvature="0" />
459
- <path
460
- transform="matrix(0,1,1,0,-88,283)"
461
- d="m -275,102 h 1 v 13 h -1 z"
462
- id="path220"
463
- inkscape:connector-curvature="0" />
464
- </g>
465
- <g
466
- transform="translate(110,96)"
467
- id="g222">
468
- <path
469
- transform="translate(-224)"
470
- d="m 237,11 h -4 V 7 h 4 z"
471
- id="path226"
472
- inkscape:connector-curvature="0" />
473
- <path
474
- transform="translate(-224)"
475
- d="m 247,9 h -9 V 7 h 9 z"
476
- id="path228"
477
- inkscape:connector-curvature="0" />
478
- <path
479
- transform="translate(-224)"
480
- d="m 247,11 h -9 v -1 h 9 z"
481
- id="path230"
482
- inkscape:connector-curvature="0" />
483
- <path
484
- transform="translate(-224)"
485
- d="m 247,15 h -9 v -2 h 9 z"
486
- id="path232"
487
- inkscape:connector-curvature="0" />
488
- <path
489
- transform="translate(-224)"
490
- d="m 237,17 h -4 v -4 h 4 z"
491
- id="path234"
492
- inkscape:connector-curvature="0" />
493
- <path
494
- transform="translate(-224)"
495
- d="m 247,17 h -9 v -1 h 9 z"
496
- id="path236"
497
- inkscape:connector-curvature="0" />
498
- </g>
499
- <g
500
- transform="translate(-2,120)"
501
- id="g238">
502
- <path
503
- transform="translate(0,-144)"
504
- d="m 23,157 h -2 v 2 h 2 z"
505
- id="path242"
506
- inkscape:connector-curvature="0" />
507
- <path
508
- transform="translate(0,-144)"
509
- d="m 23,161 h -2 v 2 c 1,0 2,-1 2,-2 z"
510
- id="path244"
511
- inkscape:connector-curvature="0" />
512
- <path
513
- transform="translate(0,-144)"
514
- d="m 23,153 h -2 v 2 h 2 z"
515
- id="path246"
516
- inkscape:connector-curvature="0" />
517
- <path
518
- transform="translate(0,-144)"
519
- d="m 21,149 v 2 h 2 c 0,-1 -1,-2 -2,-2 z"
520
- id="path248"
521
- inkscape:connector-curvature="0" />
522
- <path
523
- transform="translate(0,-144)"
524
- d="m 11,163 h 4 v -6 H 9 v 4 c 0,1.1 0.9,2 2,2 z"
525
- id="path250"
526
- inkscape:connector-curvature="0" />
527
- <path
528
- transform="translate(0,-144)"
529
- d="M 11,153 H 9 v 2 h 2 z"
530
- id="path252"
531
- inkscape:connector-curvature="0" />
532
- <path
533
- transform="translate(0,-144)"
534
- d="m 19,149 h -2 v 2 h 2 z"
535
- id="path254"
536
- inkscape:connector-curvature="0" />
537
- <path
538
- transform="translate(0,-144)"
539
- d="m 19,161 h -2 v 2 h 2 z"
540
- id="path256"
541
- inkscape:connector-curvature="0" />
542
- <path
543
- transform="translate(0,-144)"
544
- d="m 11,149 c -1,0 -2,1 -2,2 h 2 z"
545
- id="path258"
546
- inkscape:connector-curvature="0" />
547
- <path
548
- transform="translate(0,-144)"
549
- d="m 15,149 h -2 v 2 h 2 z"
550
- id="path260"
551
- inkscape:connector-curvature="0" />
552
- </g>
553
- <g
554
- transform="translate(26,120)"
555
- id="g262">
556
- <path
557
- transform="translate(-290,-46)"
558
- d="m 317,69 v -5 l -5,5 z"
559
- id="path266"
560
- inkscape:connector-curvature="0" />
561
- </g>
562
- <g
563
- transform="translate(54,120)"
564
- id="g268">
565
- <g
566
- id="g272"
567
- style="fill-rule:evenodd">
568
- <path
569
- transform="matrix(1.4142,0,0,1.4142,-278.88,-36.772)"
570
- d="m 209.92,31.305 a 1.0607,1.0607 0 1 1 -2.1213,0 1.0607,1.0607 0 1 1 2.1213,0 z"
571
- id="path274"
572
- inkscape:connector-curvature="0" />
573
- <path
574
- transform="matrix(1.4142,0,0,1.4142,-278.88,-31.772)"
575
- d="m 209.92,31.305 a 1.0607,1.0607 0 1 1 -2.1213,0 1.0607,1.0607 0 1 1 2.1213,0 z"
576
- id="path276"
577
- inkscape:connector-curvature="0" />
578
- <path
579
- transform="matrix(1.4142,0,0,1.4142,-278.88,-26.772)"
580
- d="m 209.92,31.305 a 1.0607,1.0607 0 1 1 -2.1213,0 1.0607,1.0607 0 1 1 2.1213,0 z"
581
- id="path278"
582
- inkscape:connector-curvature="0" />
583
- </g>
584
- </g>
585
- <g
586
- transform="translate(84,120)"
587
- id="g280">
588
- <path
589
- transform="translate(-162,-144)"
590
- d="m 166,147 h 18 v 18 h -18 z"
591
- id="path284"
592
- inkscape:connector-curvature="0"
593
- style="fill:none" />
594
- <path
595
- transform="translate(-162,-144)"
596
- d="m 181.52,154.53 c -0.51,-2.58 -2.7862,-4.5262 -5.5162,-4.5262 -2.1675,0 -4.0462,1.23 -4.9875,3.0262 -2.2538,0.24375 -4.0125,2.1525 -4.0125,4.4738 0,2.4862 2.0138,4.5 4.5,4.5 h 9.75 c 2.07,0 3.75,-1.68 3.75,-3.75 0,-1.98 -1.5412,-3.585 -3.4838,-3.7238 z m -0.26625,5.9738 h -9.75 c -1.6575,0 -3,-1.3425 -3,-3 0,-1.6575 1.3425,-3 3,-3 h 0.5325 c 0.49125,-1.7288 2.0775,-3 3.9675,-3 2.28,0 4.125,1.845 4.125,4.125 v 0.375 h 1.125 c 1.2412,0 2.25,1.0088 2.25,2.25 0,1.2412 -1.0088,2.25 -2.25,2.25 z"
597
- id="path286"
598
- inkscape:connector-curvature="0" />
599
- </g>
600
- <g
601
- transform="translate(112,120)"
602
- id="g288">
603
- <path
604
- transform="translate(-226,-72)"
605
- d="m 235,76 c -0.55,0 -0.99,0.45 -0.99,1 L 234,91 c 0,0.55 0.44,1 1,1 h 10 c 0.55,0 1,-0.45 1,-1 V 81 l -5,-5 z m 6,5 v -4 l 4,4 z"
606
- id="path292"
607
- inkscape:connector-curvature="0" />
608
- <path
609
- transform="translate(-226,-72)"
610
- d="m 231,75 h 18 v 18 h -18 z"
611
- id="path294"
612
- inkscape:connector-curvature="0"
613
- style="fill:none" />
614
- </g>
615
- <g
616
- transform="translate(140)"
617
- id="g296">
618
- <path
619
- transform="translate(-162,-24)"
620
- d="m 169,29 h 18 v 18 h -18 z"
621
- id="path300"
622
- inkscape:connector-curvature="0"
623
- style="fill:none" />
624
- <path
625
- transform="translate(-162,-24)"
626
- d="m 167.25,27.25 h 20 v 20 h -20 z"
627
- id="path302"
628
- inkscape:connector-curvature="0"
629
- style="fill:none" />
630
- <path
631
- transform="translate(-162,-24)"
632
- d="m 165.12,25.125 h 20 v 20 h -20 z"
633
- id="path304"
634
- inkscape:connector-curvature="0"
635
- style="fill:none" />
636
- <path
637
- transform="translate(-162,-24)"
638
- d="m 171,28 c -0.55,0 -1,0.45 -1,1 v 14 c 0,0.55 0.44,1 1,1 h 5.0938 c -0.0656,-0.32311 -0.0937,-0.65753 -0.0937,-1 0,-2.7614 2.2386,-5 5,-5 0.34247,0 0.67689,0.02816 1,0.09375 v -5.0938 l -5,-5 h -6 z m 6,1 4,4 h -4 z"
639
- id="path306"
640
- inkscape:connector-curvature="0" />
641
- </g>
642
- <g
643
- transform="translate(140,24)"
644
- id="g308">
645
- <path
646
- transform="translate(-66,-120)"
647
- d="m 71,124 h 18 v 18 H 71 Z"
648
- id="path312"
649
- inkscape:connector-curvature="0"
650
- style="fill:none" />
651
- <path
652
- transform="translate(-66,-120)"
653
- d="m 82,129 -2,-2 h -5 c -0.55,0 -1,0.45 -1,1 v 10 c 0,0.55 0.45,1 1,1 h 12 c 0.55,0 1,-0.45 1,-1 v -8 c 0,-0.55 -0.45,-1 -1,-1 z"
654
- id="path314"
655
- inkscape:connector-curvature="0" />
656
- </g>
657
- <g
658
- transform="translate(140,48)"
659
- id="g316">
660
- <path
661
- transform="translate(-258,-144)"
662
- d="m 278,150 h -10.5 c -0.8325,0 -1.5,0.675 -1.5,1.5 v 9 c 0,0.825 0.6675,1.5 1.5,1.5 H 278 c 0.825,0 1.5,-0.675 1.5,-1.5 v -9 c 0,-0.825 -0.6675,-1.5 -1.5,-1.5 z m 0,10.5 H 267.5 V 153 H 278 Z"
663
- id="path320"
664
- inkscape:connector-curvature="0"
665
- style="fill:#010101" />
666
- <path
667
- transform="translate(-258,-144)"
668
- d="m 262.97,147.07 h 18 v 18 h -18 z"
669
- id="path322"
670
- inkscape:connector-curvature="0"
671
- style="fill:none" />
672
- </g>
673
- <g
674
- transform="translate(140,72)"
675
- id="g324">
676
- <path
677
- transform="translate(6,3.9)"
678
- d="M 9,1 H 3.9954 C 3.45567,1 3,1.45078 3,2.0068 v 11.986 c 0,0.5569 0.44565,1.0068 0.9954,1.0068 h 8.0092 C 12.54433,14.9996 13,14.54882 13,13.9928 V 4.9996 l -4,-4 z m 3,4 H 9 V 2 Z M 6,7 11,9.5 6,12 Z"
679
- id="path328"
680
- inkscape:connector-curvature="0" />
681
- </g>
682
- <g
683
- transform="translate(140,96)"
684
- id="g330">
685
- <g
686
- id="g334"
687
- style="stroke:#000000">
688
- <path
689
- transform="matrix(0.72907,0,0,0.72907,5.617,4.598)"
690
- d="M 7.854,6.963 6.877,7.279 6.857,8.617 6.889,8.705 7.398,9.699 6.188,10.578 5.398,9.787 5.326,9.73 4.047,9.336 3.443,10.166 4.213,11.26 4.291,11.313 5.287,11.817 4.824,13.241 3.72,13.065 3.628,13.061 2.362,13.493 v 1.027 l 1.266,0.434 0.092,-0.004 1.104,-0.178 0.463,1.424 -0.996,0.506 -0.078,0.051 -0.77,1.094 0.604,0.83 1.279,-0.393 0.072,-0.059 0.789,-0.791 1.211,0.879 -0.51,0.996 -0.031,0.086 0.02,1.338 0.977,0.316 0.803,-1.068 0.025,-0.09 0.172,-1.104 h 1.498 l 0.172,1.104 0.025,0.09 0.803,1.068 0.977,-0.316 0.02,-1.338 -0.031,-0.086 -0.51,-0.996 1.211,-0.879 0.789,0.791 0.072,0.059 1.279,0.393 0.604,-0.83 -0.771,-1.094 -0.076,-0.051 -0.996,-0.506 0.461,-1.424 1.105,0.178 0.092,0.004 1.266,-0.434 v -1.027 l -1.266,-0.432 -0.092,0.004 -1.105,0.176 -0.461,-1.424 0.996,-0.504 0.076,-0.053 0.771,-1.094 L 15.159,9.336 13.88,9.731 13.808,9.788 13.019,10.579 11.808,9.7 12.318,8.706 12.349,8.618 12.329,7.28 11.352,6.964 10.549,8.034 10.524,8.122 10.352,9.227 H 8.854 L 8.682,8.121 8.656,8.03 7.854,6.963 m 1.748,3.398 a 3.621,3.645 0 0 1 3.621,3.645 3.621,3.645 0 0 1 -3.621,3.646 3.621,3.645 0 0 1 -3.619,-3.646 3.621,3.645 0 0 1 3.619,-3.645 z"
691
- id="path336"
692
- inkscape:connector-curvature="0" />
693
- <path
694
- transform="matrix(0.72907,0,0,0.72907,5.227,3.617)"
695
- d="M 14.885,1.563 14.178,1.957 14.365,3.24 14.396,3.279 15.14,4.04 14.553,5.03 13.529,4.736 13.479,4.729 12.262,5.172 12.25,5.98 13.455,6.459 13.506,6.453 14.537,6.189 15.1,7.191 14.332,7.932 14.301,7.971 14.08,9.248 14.771,9.662 15.787,8.859 15.807,8.811 16.1,7.787 17.242,7.803 17.502,8.834 17.52,8.883 18.514,9.715 19.219,9.32 19.03,8.04 19,7.998 18.258,7.234 18.844,6.25 19.869,6.541 19.92,6.551 21.14,6.105 21.15,5.297 19.943,4.818 19.893,4.824 18.861,5.088 18.301,4.086 19.07,3.346 19.1,3.307 19.322,2.029 18.627,1.615 17.609,2.418 17.59,2.467 17.303,3.49 16.16,3.475 15.896,2.443 15.879,2.395 Z m 1.814,2.138 a 1.938,1.938 0 0 1 1.938,1.938 1.938,1.938 0 0 1 -1.938,1.937 1.938,1.938 0 0 1 -1.937,-1.937 1.938,1.938 0 0 1 1.937,-1.938 z"
696
- id="path338"
697
- inkscape:connector-curvature="0"
698
- style="stroke-width:0.899" />
699
- </g>
700
- </g>
701
- <g
702
- transform="translate(138,120)"
703
- id="g340">
704
- <g
705
- id="g344"
706
- style="fill:none">
707
- <path
708
- transform="translate(8,4)"
709
- d="M 0,0 H 16 V 16 H 0 Z"
710
- id="path346"
711
- inkscape:connector-curvature="0"
712
- style="opacity:0.5" />
713
- <path
714
- transform="translate(8,4)"
715
- d="M 6,14 H 3.5 C 2.5,14 2,13.5 2,12.5 v -9 C 2,2.5 2.5,2 3.5,2 h 9 C 14,2 14,3.4678 14,3.5 V 6 H 13 V 3 H 3 v 10 h 3 z m 9,-5 -3,2 3,3 -1,1 -3,-3 -2,3 -2,-8 z"
716
- id="path348"
717
- inkscape:connector-curvature="0"
718
- style="fill:#000000" />
719
- </g>
720
- </g>
721
- <g
722
- transform="translate(0,143.99999)"
723
- id="g350">
724
- <path
725
- transform="translate(-98,-120)"
726
- d="m 110.5,127.5 h -1 l 2,-2 2,2 h -1 c 0,0 -0.0345,4.6379 -0.0345,4.0345 l 4.0345,-0.034 v -1 l 2,2 -2,2 v -1 l -4.0345,-0.034 0.0345,4.0346 h 1 l -2,2 -2,-2 h 1 l 0.0345,-4.0346 -4.0345,0.034 v 1 l -2,-2 2,-2 v 1 l 4.0345,0.034 z"
727
- id="path354"
728
- inkscape:connector-curvature="0"
729
- style="stroke:#000000" />
730
- </g>
731
- <g
732
- transform="translate(26,143.99999)"
733
- id="g356">
734
- <path
735
- transform="translate(-320)"
736
- d="m 333.6,15.2 h 1.6 V 8.8 h -1.6 z M 336,4 c -4.42,0 -8,3.58 -8,8 0,4.42 3.58,8 8,8 4.42,0 8,-3.58 8,-8 0,-4.42 -3.58,-8 -8,-8 z m 0,14.4 c -3.528,0 -6.4,-2.872 -6.4,-6.4 0,-3.528 2.872,-6.4 6.4,-6.4 3.528,0 6.4,2.872 6.4,6.4 0,3.528 -2.872,6.4 -6.4,6.4 z m 0.8,-3.2 h 1.6 V 8.8 h -1.6 z"
737
- id="path360"
738
- inkscape:connector-curvature="0" />
739
- </g>
740
- <g
741
- transform="translate(54,143.99999)"
742
- id="g362">
743
- <path
744
- transform="translate(-32,-72)"
745
- d="m 47,88 h -3 v -8 h 3 z"
746
- id="path366"
747
- inkscape:connector-curvature="0" />
748
- <path
749
- transform="translate(-32,-72)"
750
- d="m 53,88 h -3 v -8 h 3 z"
751
- id="path368"
752
- inkscape:connector-curvature="0" />
753
- </g>
754
- <g
755
- transform="translate(82,143.99999)"
756
- id="g370">
757
- <path
758
- transform="translate(-256)"
759
- d="m 275,15 h -2 V 9 h 2 z m -4,0 h -2 V 9 h 2 z m 4,-10 h -6 l -4,4 v 6 l 4,4 h 6 l 4,-4.12 V 9 Z"
760
- id="path374"
761
- inkscape:connector-curvature="0" />
762
- </g>
763
- <g
764
- transform="translate(110,143.99999)"
765
- id="g376">
766
- <g
767
- font-weight="400"
768
- id="g380"
769
- style="font-weight:400;font-family:Sans">
770
- <path
771
- transform="translate(-289,-96)"
772
- d="m 300,101 v 4.0001 1.0001 l 3.3434,0.53115 -0.0156,8.0468 -1.3278,0.42183 c 0.006,0.59278 0.43931,1.0114 1,1 h 8 c 0.57896,0.002 0.98177,-0.42708 1,-1 v -14 c -0.0102,-0.53477 -0.48177,-0.99739 -1,-1 h -10 c -0.53297,0.008 -0.99716,0.45677 -1,1 z m 1,0 h 10 v 14 h -8 l 0.71845,-0.42179 0.0937,-8.4218 -2.8122,-0.1561 v -0.99993 z"
773
- overflow="visible"
774
- style="line-height:normal;text-indent:0;text-transform:none;overflow:visible"
775
- id="path382"
776
- inkscape:connector-curvature="0" />
777
- <path
778
- transform="translate(-289,-96)"
779
- d="m 297,106 v 9 c 0.006,0.59278 0.43931,1.0114 1,1 h 5 c 0.57896,0.002 0.98177,-0.42708 1,-1 v -9 c -0.0102,-0.53477 -0.48177,-0.99739 -1,-1 h -5 c -0.53297,0.008 -0.99716,0.45677 -1,1 z m 1,1.0002 h 5 v 7 h -5 z"
780
- overflow="visible"
781
- style="line-height:normal;text-indent:0;text-transform:none;overflow:visible"
782
- id="path384"
783
- inkscape:connector-curvature="0" />
784
- </g>
785
- </g>
786
- <g
787
- transform="translate(138,143.99999)"
788
- id="g386">
789
- <path
790
- transform="translate(-320,-48)"
791
- d="m 328,60 c 0,4.42 3.58,8 8,8 4.42,0 8,-3.58 8,-8 0,-4.42 -3.58,-8 -8,-8 -4.42,0 -8,3.58 -8,8 z m 8,6.4 c -3.528,0 -6.4,-2.872 -6.4,-6.4 0,-3.528 2.872,-6.4 6.4,-6.4 3.528,0 6.4,2.872 6.4,6.4 0,3.528 -2.872,6.4 -6.4,6.4 z M 334.5067,63.4286 339.0781,60 334.5067,56.5714 v 6.8571 z"
792
- id="path390"
793
- inkscape:connector-curvature="0" />
794
- </g>
795
- <g
796
- transform="translate(-2,167.99999)"
797
- id="g392">
798
- <path
799
- transform="translate(-96,-48)"
800
- d="m 108,60 10,-5 v 10"
801
- id="path396"
802
- inkscape:connector-curvature="0" />
803
- </g>
804
- <g
805
- transform="translate(26,167.99999)"
806
- id="g398">
807
- <path
808
- transform="translate(-64,-48)"
809
- d="M 86,60 76,55 v 10"
810
- id="path402"
811
- inkscape:connector-curvature="0" />
812
- </g>
813
- <g
814
- transform="translate(54,167.99999)"
815
- id="g404">
816
- <path
817
- transform="translate(-256,-24)"
818
- d="m 268.01,35.99 c 0.61,0.28 1.07,0.9 1.07,1.58 0.11,0.85 -0.05,1.72 0.12,2.57 0.27,0.54 1,0.28 1.43,0.55 0.49,0.24 0.48,1.01 -0.06,1.18 -0.56,0.22 -1.18,0.08 -1.74,-0.05 -0.71,-0.2 -1.41,-0.72 -1.5,-1.5 -0.18,-0.89 0.01,-1.8 -0.16,-2.68 -0.22,-0.64 -0.94,-0.9 -1.57,-0.93 -0.58,-0.1 -0.83,-0.94 -0.35,-1.3 0.51,-0.35 1.26,-0.14 1.69,-0.66 0.44,-0.48 0.29,-1.18 0.32,-1.78 0,-0.81 -0.02,-1.77 0.65,-2.34 0.66,-0.54 1.58,-0.71 2.41,-0.63 0.63,0 0.98,0.87 0.4,1.22 -0.44,0.37 -1.2,0.06 -1.51,0.65 -0.14,0.56 -0.05,1.15 -0.07,1.73 -0.01,0.75 -0.05,1.64 -0.72,2.13 -0.12,0.1 -0.26,0.19 -0.4,0.26"
819
- id="path408"
820
- inkscape:connector-curvature="0" />
821
- <path
822
- transform="translate(-256,-24)"
823
- d="m 276.98,35.99 c -0.67,-0.3 -1.08,-1.02 -1.08,-1.75 -0.07,-0.76 0.03,-1.52 -0.06,-2.28 -0.24,-0.58 -0.98,-0.4 -1.46,-0.59 -0.59,-0.24 -0.48,-1.18 0.14,-1.31 0.73,-0.15 1.52,-0.01 2.18,0.32 0.56,0.28 0.95,0.86 0.99,1.48 0.13,0.83 -0.03,1.68 0.13,2.5 0.2,0.68 0.94,0.83 1.54,0.9 0.56,0.07 0.86,0.8 0.46,1.21 -0.44,0.46 -1.2,0.2 -1.65,0.66 -0.51,0.46 -0.4,1.21 -0.4,1.83 -0.03,0.78 0.06,1.69 -0.52,2.3 -0.74,0.65 -1.8,0.86 -2.75,0.68 -0.52,-0.16 -0.69,-1.01 -0.15,-1.25 0.44,-0.23 1.02,-0.08 1.41,-0.45 0.26,-0.45 0.09,-0.98 0.14,-1.47 0.01,-0.76 -0.07,-1.63 0.43,-2.26 0.18,-0.21 0.42,-0.37 0.66,-0.51"
824
- id="path410"
825
- inkscape:connector-curvature="0" />
826
- </g>
827
- <g
828
- transform="translate(82,167.99999)"
829
- id="g412">
830
- <g
831
- id="g416">
832
- <path
833
- d="M 0,0 H 24 V 24 H 0 Z"
834
- id="path418"
835
- inkscape:connector-curvature="0"
836
- style="fill:none" />
837
- <path
838
- d="m 16,6 c -3.31,0 -6,2.69 -6,6 0,3.31 2.69,6 6,6 3.31,0 6,-2.69 6,-6 h -2 c 0,2.2091 -1.7909,4 -4,4 -2.2091,0 -4,-1.7909 -4,-4 0,-2.2091 1.7909,-4 4,-4 1.2756,0 2.3926,0.60127 3.125,1.5312 h 2.3438 C 20.52659,7.4496 18.4308,6 16,6 Z"
839
- id="path420"
840
- inkscape:connector-curvature="0" />
841
- <path
842
- d="M 21.091,6.88 V 9.9718 H 17.9992 Z"
843
- id="path422"
844
- inkscape:connector-curvature="0"
845
- style="stroke:#000000;stroke-width:1.068" />
846
- </g>
847
- </g>
848
- <g
849
- transform="translate(110,167.99999)"
850
- id="g424">
851
- <path
852
- transform="translate(8,4)"
853
- d="M 2.5858,13.891 C 0.9959,12.4291 0,10.3315 0,8.0002 c 0,-4.42 3.58,-8 8,-8 4.42,0 8,3.58 8,8 0,4.42 -3.58,8 -8,8 v -1.6 c 3.528,0 6.4,-2.872 6.4,-6.4 0,-3.528 -2.872,-6.4 -6.4,-6.4 -3.528,0 -6.4,2.872 -6.4,6.4 0,1.9357 0.86461,3.674 2.2278,4.8487 l 1.6925,-1.4201 0.015145,4.463 -4.3925,-0.7899 1.443,-1.2108 z M 6.5066,11.4287 11.078,8.0001 6.5066,4.5715 v 6.8571 z"
854
- id="path428"
855
- inkscape:connector-curvature="0" />
856
- </g>
857
- <g
858
- transform="translate(138,167.99999)"
859
- id="g430">
860
- <path
861
- transform="translate(0,-72)"
862
- d="M 23,84 15,79 V 89"
863
- id="path434"
864
- inkscape:connector-curvature="0" />
865
- <path
866
- transform="translate(0,-72)"
867
- d="M 13,89 H 10 V 79 h 3 z"
868
- id="path436"
869
- inkscape:connector-curvature="0" />
870
- </g>
871
- <g
872
- transform="translate(166)"
873
- id="g438">
874
- <path
875
- transform="translate(-160,-120)"
876
- d="m 169.2,130.15 c 0.0551,-0.1128 0.15339,-0.22 0.2313,-0.3064 0.54584,-0.6074 1.3889,-1.1974 3.0053,-1.5702 v -2.1715 c -1.2931,0.2523 -2.3146,0.6686 -3.304,1.5597 -0.33248,0.3832 -0.50543,0.6247 -0.514,1.1665 -0.007,0.443 0.17732,0.8863 0.58141,1.3219 z m 6.6309,3.1292 c -1.6164,-0.024 -3.1091,-0.2558 -4.6228,-0.764 -2.6938,-0.9037 -3.0286,-2.1697 -3.1703,-2.5931 -0.0958,1.6897 0.028,2.9573 0.0346,3.0648 0.092,1.5004 1.2918,2.6742 2.1575,3.1151 1.7796,0.9067 3.6614,1.3756 5.601,1.4151 v 2.4842 l 3.251,-4.6483 -3.251,-4.6486 z m -0.32327,-5.2959 c 1.6164,0.01 3.4529,0.3384 5.2454,1.1131 0.73528,0.3177 1.3275,0.7904 1.8082,1.3048 0.33152,-0.1523 0.80672,-0.7308 0.74126,-1.2923 -0.16163,-1.3879 -1.6264,-2.1912 -1.8801,-2.3045 -1.7704,-0.7908 -3.9751,-1.0356 -5.9147,-1.0589 v -1.7442 l -2.0132,2.8787 2.0132,2.8783 v -1.775 z m 8.4236,1.8658 c -0.0824,0.6478 -0.82676,2.0349 -3.8978,2.9138 v 4.5247 c 1.1314,-0.3677 2.465,-1.2956 3.1787,-2.1988 0.2911,-0.3677 0.46906,-0.875 0.57736,-1.242 0.33216,-1.1229 0.18604,-3.3136 0.14175,-3.9977 z"
877
- id="path442"
878
- inkscape:connector-curvature="0" />
879
- </g>
880
- <g
881
- transform="translate(166,24)"
882
- id="g444">
883
- <path
884
- transform="translate(8,4)"
885
- d="m 10.624,2.47 c 1.9155,0.90417 3.2862,2.7533 3.4971,4.9467 h 0.87866 C 14.70102,3.8234 11.68426,1 7.99976,1 L 7.61315,1.0175 9.84495,3.24 10.62403,2.47 Z M 6.9629,2.02083 c -0.34561,-0.34417 -0.90209,-0.34417 -1.2418,0 l -3.7255,3.71 c -0.34561,0.34417 -0.34561,0.89833 0,1.2367 l 7.041,7.0117 c 0.34561,0.34417 0.90209,0.34417 1.2418,0 l 3.7255,-3.71 c 0.34561,-0.34417 0.34561,-0.89833 0,-1.2367 z m 2.6946,11.34 -7.041,-7.0117 3.7255,-3.71 7.041,7.0117 z M 5.3755,13.53 C 3.46,12.63167 2.0893,10.7767 1.8784,8.5833 H 0.99974 C 1.29848,12.1766 4.31524,15 7.99974,15 L 8.38635,14.9825 6.15455,12.76 5.37547,13.53 Z"
886
- id="path448"
887
- inkscape:connector-curvature="0" />
888
- </g>
889
- <g
890
- transform="translate(166,48)"
891
- id="g450">
892
- <path
893
- transform="translate(-288,-72)"
894
- d="m 293.96,74.013 h 20 v 20 h -20 z"
895
- id="path454"
896
- inkscape:connector-curvature="0"
897
- style="fill:none" />
898
- <path
899
- transform="translate(-288,-72)"
900
- d="m 297,77 h 18 v 18 h -18 z"
901
- id="path456"
902
- inkscape:connector-curvature="0"
903
- style="fill:none" />
904
- <path
905
- transform="translate(-288,-72)"
906
- d="m 295.25,75.25 h 20 v 20 h -20 z"
907
- id="path458"
908
- inkscape:connector-curvature="0"
909
- style="fill:none" />
910
- <path
911
- transform="translate(-288,-72)"
912
- d="m 293.12,73.125 h 20 v 20 h -20 z"
913
- id="path460"
914
- inkscape:connector-curvature="0"
915
- style="fill:none" />
916
- <path
917
- transform="translate(-288,-72)"
918
- d="m 288,72 h 24 v 24 h -24 z"
919
- id="path462"
920
- inkscape:connector-curvature="0"
921
- style="fill:none" />
922
- <path
923
- transform="translate(-288,-72)"
924
- d="m 309.35,84.686 c 0.0288,-0.224 0.0504,-0.448 0.0504,-0.686 0,-0.238 -0.0216,-0.462 -0.0504,-0.686 l 1.5184,-1.155 c 0.13673,-0.105 0.17272,-0.294 0.0863,-0.448 l -1.4393,-2.422 c -0.0863,-0.154 -0.28065,-0.21 -0.43897,-0.154 l -1.7919,0.7 c -0.37422,-0.28 -0.77722,-0.511 -1.2162,-0.686 l -0.27341,-1.855 C 305.77334,77.126 305.62223,77 305.44232,77 h -2.8785 c -0.17992,0 -0.33104,0.126 -0.35263,0.294 l -0.27346,1.855 c -0.43898,0.175 -0.84198,0.413 -1.2162,0.686 l -1.7919,-0.7 c -0.16551,-0.063 -0.35262,0 -0.43898,0.154 l -1.4393,2.422 c -0.0935,0.154 -0.0504,0.343 0.0863,0.448 l 1.5184,1.155 c -0.0287,0.224 -0.0504,0.455 -0.0504,0.686 0,0.231 0.0216,0.462 0.0504,0.686 l -1.5184,1.155 c -0.13673,0.105 -0.17271,0.294 -0.0863,0.448 l 1.4393,2.422 c 0.0863,0.154 0.28067,0.21 0.43898,0.154 l 1.7919,-0.7 c 0.37421,0.28 0.77721,0.511 1.2162,0.686 l 0.27346,1.855 c 0.0216,0.168 0.17271,0.294 0.35263,0.294 h 2.8785 c 0.17991,0 0.33103,-0.126 0.35263,-0.294 l 0.27345,-1.855 c 0.43898,-0.175 0.84198,-0.413 1.2162,-0.686 l 1.7919,0.7 c 0.16552,0.063 0.35263,0 0.43898,-0.154 l 1.4393,-2.422 c 0.0863,-0.154 0.0504,-0.343 -0.0863,-0.448 l -1.5184,-1.155 z m -5.3469,1.764 c -1.3889,0 -2.5187,-1.099 -2.5187,-2.45 0,-1.351 1.1298,-2.45 2.5187,-2.45 1.3889,0 2.5187,1.099 2.5187,2.45 0,1.351 -1.1298,2.45 -2.5187,2.45 z"
925
- id="path464"
926
- inkscape:connector-curvature="0" />
927
- </g>
928
- <g
929
- transform="translate(162,73)"
930
- id="g466">
931
- <path
932
- transform="rotate(-90,57.5,193.5)"
933
- d="m 232.5,150.5 h 14 v 12 h -14 z"
934
- id="path470"
935
- inkscape:connector-curvature="0"
936
- style="fill:none;stroke:#000000" />
937
- <path
938
- transform="rotate(-90,57.5,193.5)"
939
- d="m 244,156.5 -5,-3.25 v 6.5"
940
- id="path472"
941
- inkscape:connector-curvature="0" />
942
- <path
943
- transform="rotate(-90,57.5,193.5)"
944
- d="m 236,150 h 1 v 13 h -1 z"
945
- id="path474"
946
- inkscape:connector-curvature="0" />
947
- </g>
948
- <g
949
- transform="translate(166,96)"
950
- id="g476">
951
- <path
952
- transform="translate(-160,-72)"
953
- d="m 168.5,78.5 h 14 v 12 h -14 z"
954
- id="path480"
955
- inkscape:connector-curvature="0"
956
- style="fill:none;stroke:#000000" />
957
- <path
958
- transform="translate(-160,-72)"
959
- d="m 180,84.5 -5,-3.25 v 6.5"
960
- id="path482"
961
- inkscape:connector-curvature="0" />
962
- <path
963
- transform="translate(-160,-72)"
964
- d="m 172,78 h 1 v 13 h -1 z"
965
- id="path484"
966
- inkscape:connector-curvature="0" />
967
- </g>
968
- <g
969
- transform="translate(166,120)"
970
- id="g486">
971
- <path
972
- transform="matrix(-1,0,0,1,-192,-96)"
973
- d="m -214.5,102.5 h 14 v 12 h -14 z"
974
- id="path490"
975
- inkscape:connector-curvature="0"
976
- style="fill:none;stroke:#000000" />
977
- <path
978
- transform="translate(-192,-96)"
979
- d="m 203,108.5 5,-3.25 v 6.5"
980
- id="path492"
981
- inkscape:connector-curvature="0" />
982
- <path
983
- transform="matrix(-1,0,0,1,-192,-96)"
984
- d="m -211,102 h 1 v 13 h -1 z"
985
- id="path494"
986
- inkscape:connector-curvature="0" />
987
- </g>
988
- <g
989
- transform="translate(162,144.99999)"
990
- id="g496">
991
- <path
992
- transform="matrix(0,1,1,0,-88,219)"
993
- d="m -214.5,102.5 h 14 v 12 h -14 z"
994
- id="path500"
995
- inkscape:connector-curvature="0"
996
- style="fill:none;stroke:#000000" />
997
- <path
998
- transform="rotate(-90,65.5,153.5)"
999
- d="m 203,108.5 5,-3.25 v 6.5"
1000
- id="path502"
1001
- inkscape:connector-curvature="0" />
1002
- <path
1003
- transform="matrix(0,1,1,0,-88,219)"
1004
- d="m -211,102 h 1 v 13 h -1 z"
1005
- id="path504"
1006
- inkscape:connector-curvature="0" />
1007
- </g>
1008
- <g
1009
- transform="translate(166,167.99999)"
1010
- id="g506">
1011
- <path
1012
- transform="translate(-288)"
1013
- d="m 298,12 c 0,3.31 2.69,6 6,6 3.31,0 6,-2.69 6,-6 0,-3.31 -2.69,-6 -6,-6 -3.31,0 -6,2.69 -6,6"
1014
- id="path510"
1015
- inkscape:connector-curvature="0" />
1016
- </g>
1017
- <g
1018
- transform="translate(-2,191.99999)"
1019
- id="g512">
1020
- <path
1021
- transform="translate(-64,-72)"
1022
- d="m 78.5,89 c 0,1.1 0.9,2 2,2 1.1,0 2,-0.9 2,-2 0,-1.1 -0.9,-2 -2,-2 -1.1,0 -2,0.9 -2,2"
1023
- id="path516"
1024
- inkscape:connector-curvature="0" />
1025
- <path
1026
- transform="translate(-64,-72)"
1027
- d="m 79,78 v 4 h -3 l 4.5,4 4.5,-4 h -3 v -4 z"
1028
- id="path518"
1029
- inkscape:connector-curvature="0" />
1030
- </g>
1031
- <g
1032
- transform="translate(26,191.99999)"
1033
- id="g520">
1034
- <path
1035
- transform="translate(-96,-72)"
1036
- d="m 110.5,89 c 0,1.1 0.9,2 2,2 1.1,0 2,-0.9 2,-2 0,-1.1 -0.9,-2 -2,-2 -1.1,0 -2,0.9 -2,2"
1037
- id="path524"
1038
- inkscape:connector-curvature="0" />
1039
- <path
1040
- transform="translate(-96,-72)"
1041
- d="m 112.5,78 -4.5,4 h 3 v 4 h 3 v -4 h 3 z"
1042
- id="path526"
1043
- inkscape:connector-curvature="0" />
1044
- </g>
1045
- <g
1046
- transform="translate(54,191.99999)"
1047
- id="g528">
1048
- <path
1049
- transform="translate(-128,-72)"
1050
- d="m 142,86.5 c 0,1.1 0.9,2 2,2 1.1,0 2,-0.9 2,-2 0,-1.1 -0.9,-2 -2,-2 -1.1,0 -2,0.9 -2,2"
1051
- id="path532"
1052
- inkscape:connector-curvature="0" />
1053
- <path
1054
- transform="translate(-128,-72)"
1055
- d="m 137.25,87.03 c 2.55,-8.43 11.4,-8.73 13.94,0"
1056
- id="path534"
1057
- inkscape:connector-curvature="0"
1058
- style="fill:none;stroke:#000000;stroke-width:2.5" />
1059
- <path
1060
- transform="translate(-128,-72)"
1061
- d="m 151.68,89 -4.54,-2.76 6.68,-2.1"
1062
- id="path536"
1063
- inkscape:connector-curvature="0" />
1064
- </g>
1065
- <g
1066
- transform="translate(82,191.99999)"
1067
- id="g538">
1068
- <path
1069
- transform="translate(-288,-24)"
1070
- d="m 295,36 c 0,4.97 4.03,9 9,9 4.97,0 9,-4.03 9,-9 0,-4.97 -4.03,-9 -9,-9 -4.97,0 -9,4.03 -9,9"
1071
- id="path542"
1072
- inkscape:connector-curvature="0"
1073
- style="fill:url(#sprite60_a)" />
1074
- <path
1075
- transform="translate(-288,-24)"
1076
- d="m 298,36 c 0,3.31 2.69,6 6,6 3.31,0 6,-2.69 6,-6 0,-3.31 -2.69,-6 -6,-6 -3.31,0 -6,2.69 -6,6"
1077
- id="path544"
1078
- inkscape:connector-curvature="0" />
1079
- <defs
1080
- id="defs546">
1081
- <radialGradient
1082
- id="sprite60_b"
1083
- cx="0"
1084
- cy="0"
1085
- r="1"
1086
- gradientTransform="matrix(18,0,0,-18,680,341)"
1087
- gradientUnits="userSpaceOnUse">
1088
- <stop
1089
- offset="0"
1090
- id="stop549" />
1091
- <stop
1092
- stop-opacity="0"
1093
- offset="1"
1094
- id="stop551" />
1095
- </radialGradient>
1096
- <radialGradient
1097
- id="sprite60_a"
1098
- cx="0"
1099
- cy="0"
1100
- r="1"
1101
- gradientTransform="matrix(9,0,0,9,304,36)"
1102
- gradientUnits="userSpaceOnUse"
1103
- xlink:href="#sprite60_b" />
1104
- </defs>
1105
- </g>
1106
- <g
1107
- transform="translate(110,191.99999)"
1108
- id="g554">
1109
- <g
1110
- id="g558">
1111
- <path
1112
- transform="translate(7,3)"
1113
- d="M 0,0 H 18 V 18 H 0 Z"
1114
- id="path560"
1115
- inkscape:connector-curvature="0"
1116
- style="fill:none" />
1117
- <path
1118
- transform="translate(7,3)"
1119
- d="M 15.25,8 H 16 V 6.125 5 H 5 V 6.125 8 h 0.75 c 0,-0.82843 0.67157,-1.5 1.5,-1.5 h 2.5 v 7.25 c 0,0.82843 -0.67157,1.5 -1.5,1.5 V 16 h 1.875 0.75 1.875 v -0.75 c -0.82843,0 -1.5,-0.67157 -1.5,-1.5 V 6.5 h 2.5 c 0.82843,0 1.5,0.67157 1.5,1.5 z"
1120
- id="path562"
1121
- inkscape:connector-curvature="0"
1122
- style="fill-opacity:0.36" />
1123
- <path
1124
- transform="translate(7,3)"
1125
- d="M 12.25,5 H 13 V 3.125 2 H 2 V 3.125 5 h 0.75 c 0,-0.82843 0.67157,-1.5 1.5,-1.5 h 2.5 v 7.25 c 0,0.82843 -0.67157,1.5 -1.5,1.5 V 13 h 1.875 0.75 1.875 v -0.75 c -0.82843,0 -1.5,-0.67157 -1.5,-1.5 V 3.5 h 2.5 c 0.82843,0 1.5,0.67157 1.5,1.5 z"
1126
- id="path564"
1127
- inkscape:connector-curvature="0" />
1128
- </g>
1129
- </g>
1130
- <g
1131
- transform="translate(138,191.99999)"
1132
- id="g566">
1133
- <path
1134
- transform="translate(-128,-24)"
1135
- d="m 139.5,33 h 9 L 147,43 h -6"
1136
- id="path570"
1137
- inkscape:connector-curvature="0" />
1138
- <path
1139
- transform="translate(-128,-24)"
1140
- d="m 147.5,30 h -2 v -1 h -3 v 1 h -2 c -0.55,0 -1,0.48 -1,1 v 1 h 1 7 1 v -1 c 0,-0.52 -0.45,-1 -1,-1"
1141
- id="path572"
1142
- inkscape:connector-curvature="0" />
1143
- </g>
1144
- <g
1145
- transform="translate(168,191.99999)"
1146
- id="g574">
1147
- <path
1148
- transform="translate(0,-48)"
1149
- d="M 10,57 H 8 v 9 h 11 v -2 h -9 z"
1150
- id="path578"
1151
- inkscape:connector-curvature="0" />
1152
- <path
1153
- transform="translate(0,-48)"
1154
- d="m 13,56 h 7 v 5 h -7 z m -2,-2 v 9 h 11 v -9 z"
1155
- id="path580"
1156
- inkscape:connector-curvature="0" />
1157
- </g>
1158
- <g
1159
- transform="translate(194)"
1160
- id="g582">
1161
- <path
1162
- transform="translate(-96)"
1163
- d="m 112,6.6909 c -3.6364,0 -6.7418,2.2618 -8,5.4545 1.2582,3.1927 4.3636,5.4545 8,5.4545 3.6364,0 6.7418,-2.2618 8,-5.4545 -1.2582,-3.1927 -4.3636,-5.4545 -8,-5.4545 z m 0,9.0909 c -2.0073,0 -3.6364,-1.6291 -3.6364,-3.6364 0,-2.0073 1.6291,-3.6364 3.6364,-3.6364 2.0073,0 3.6364,1.6291 3.6364,3.6364 0,2.0073 -1.6291,3.6364 -3.6364,3.6364 z m 0,-5.8182 c -1.2073,0 -2.1818,0.97455 -2.1818,2.1818 0,1.2073 0.97455,2.1818 2.1818,2.1818 1.2073,0 2.1818,-0.97455 2.1818,-2.1818 0,-1.2073 -0.97455,-2.1818 -2.1818,-2.1818 z"
1164
- id="path586"
1165
- inkscape:connector-curvature="0" />
1166
- </g>
1167
- <g
1168
- transform="translate(194,24)"
1169
- id="g588">
1170
- <path
1171
- transform="translate(-128,-48)"
1172
- d="m 153,57 h -11 v -2 h 11 z"
1173
- id="path592"
1174
- inkscape:connector-curvature="0"
1175
- style="opacity:0.2" />
1176
- <path
1177
- transform="translate(-128,-48)"
1178
- d="m 142,57 h -6 v -2 h 6 z"
1179
- id="path594"
1180
- inkscape:connector-curvature="0" />
1181
- <path
1182
- transform="translate(-128,-48)"
1183
- d="m 145,60 h -6 v -2 h 6 z"
1184
- id="path596"
1185
- inkscape:connector-curvature="0" />
1186
- <path
1187
- transform="translate(-128,-48)"
1188
- d="m 150,63 h -6 v -2 h 6 z"
1189
- id="path598"
1190
- inkscape:connector-curvature="0" />
1191
- <path
1192
- transform="translate(-128,-48)"
1193
- d="m 152,66 h -6 v -2 h 6 z"
1194
- id="path600"
1195
- inkscape:connector-curvature="0" />
1196
- </g>
1197
- <text
1198
- xml:space="preserve"
1199
- style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#b3b3b3;fill-opacity:1;stroke:none"
1200
- x="12.355932"
1201
- y="231.55931"
1202
- id="text4355"><tspan
1203
- sodipodi:role="line"
1204
- id="tspan4357"
1205
- x="12.355932"
1206
- y="231.55931"
1207
- style="font-size:12px;line-height:1.25;font-family:sans-serif">a</tspan></text>
1208
- <text
1209
- xml:space="preserve"
1210
- style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#b3b3b3;fill-opacity:1;stroke:none"
1211
- x="40.355934"
1212
- y="231.55931"
1213
- id="text4355-3"><tspan
1214
- sodipodi:role="line"
1215
- id="tspan4357-6"
1216
- x="40.355934"
1217
- y="231.55931"
1218
- style="font-size:12px;line-height:1.25;font-family:sans-serif">b</tspan></text>
1219
- <text
1220
- xml:space="preserve"
1221
- style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#b3b3b3;fill-opacity:1;stroke:none"
1222
- x="68.355934"
1223
- y="231.55931"
1224
- id="text4355-7"><tspan
1225
- sodipodi:role="line"
1226
- id="tspan4357-5"
1227
- x="68.355934"
1228
- y="231.55931"
1229
- style="font-size:12px;line-height:1.25;font-family:sans-serif">c</tspan></text>
1230
- <text
1231
- xml:space="preserve"
1232
- style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#b3b3b3;fill-opacity:1;stroke:none"
1233
- x="96.355934"
1234
- y="231.55931"
1235
- id="text4355-35"><tspan
1236
- sodipodi:role="line"
1237
- id="tspan4357-62"
1238
- x="96.355934"
1239
- y="231.55931"
1240
- style="font-size:12px;line-height:1.25;font-family:sans-serif">d</tspan></text>
1241
- <text
1242
- xml:space="preserve"
1243
- style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#b3b3b3;fill-opacity:1;stroke:none"
1244
- x="124.35593"
1245
- y="231.55931"
1246
- id="text4355-9"><tspan
1247
- sodipodi:role="line"
1248
- id="tspan4357-1"
1249
- x="124.35593"
1250
- y="231.55931"
1251
- style="font-size:12px;line-height:1.25;font-family:sans-serif">e</tspan></text>
1252
- <text
1253
- xml:space="preserve"
1254
- style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#b3b3b3;fill-opacity:1;stroke:none"
1255
- x="152.35593"
1256
- y="231.55931"
1257
- id="text4355-2"><tspan
1258
- sodipodi:role="line"
1259
- id="tspan4357-7"
1260
- x="152.35593"
1261
- y="231.55931"
1262
- style="font-size:12px;line-height:1.25;font-family:sans-serif">f</tspan></text>
1263
- <text
1264
- xml:space="preserve"
1265
- style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#b3b3b3;fill-opacity:1;stroke:none"
1266
- x="180.35593"
1267
- y="231.55931"
1268
- id="text4355-0"><tspan
1269
- sodipodi:role="line"
1270
- id="tspan4357-9"
1271
- x="180.35593"
1272
- y="231.55931"
1273
- style="font-size:12px;line-height:1.25;font-family:sans-serif">g</tspan></text>
1274
- <text
1275
- xml:space="preserve"
1276
- style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#b3b3b3;fill-opacity:1;stroke:none"
1277
- x="208.35593"
1278
- y="231.55931"
1279
- id="text4355-36"><tspan
1280
- sodipodi:role="line"
1281
- id="tspan4357-0"
1282
- x="208.35593"
1283
- y="231.55931"
1284
- style="font-size:12px;line-height:1.25;font-family:sans-serif">h</tspan></text>
1285
- <text
1286
- xml:space="preserve"
1287
- style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#b3b3b3;fill-opacity:1;stroke:none"
1288
- x="-15.644068"
1289
- y="207.55931"
1290
- id="text4355-6"><tspan
1291
- sodipodi:role="line"
1292
- id="tspan4357-2"
1293
- x="-15.644068"
1294
- y="207.55931"
1295
- style="font-size:12px;line-height:1.25;font-family:sans-serif">1</tspan></text>
1296
- <text
1297
- xml:space="preserve"
1298
- style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#b3b3b3;fill-opacity:1;stroke:none"
1299
- x="-15.644068"
1300
- y="183.55931"
1301
- id="text4355-61"><tspan
1302
- sodipodi:role="line"
1303
- id="tspan4357-8"
1304
- x="-15.644068"
1305
- y="183.55931"
1306
- style="font-size:12px;line-height:1.25;font-family:sans-serif">2</tspan></text>
1307
- <text
1308
- xml:space="preserve"
1309
- style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#b3b3b3;fill-opacity:1;stroke:none"
1310
- x="-15.644068"
1311
- y="159.55931"
1312
- id="text4355-79"><tspan
1313
- sodipodi:role="line"
1314
- id="tspan4357-20"
1315
- x="-15.644068"
1316
- y="159.55931"
1317
- style="font-size:12px;line-height:1.25;font-family:sans-serif">3</tspan></text>
1318
- <text
1319
- xml:space="preserve"
1320
- style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#b3b3b3;fill-opacity:1;stroke:none"
1321
- x="-15.644068"
1322
- y="135.55931"
1323
- id="text4355-23"><tspan
1324
- sodipodi:role="line"
1325
- id="tspan4357-75"
1326
- x="-15.644068"
1327
- y="135.55931"
1328
- style="font-size:12px;line-height:1.25;font-family:sans-serif">4</tspan></text>
1329
- <text
1330
- xml:space="preserve"
1331
- style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#b3b3b3;fill-opacity:1;stroke:none"
1332
- x="-15.644068"
1333
- y="111.5593"
1334
- id="text4355-92"><tspan
1335
- sodipodi:role="line"
1336
- id="tspan4357-28"
1337
- x="-15.644068"
1338
- y="111.5593"
1339
- style="font-size:12px;line-height:1.25;font-family:sans-serif">5</tspan></text>
1340
- <text
1341
- xml:space="preserve"
1342
- style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#b3b3b3;fill-opacity:1;stroke:none"
1343
- x="-15.644068"
1344
- y="87.559303"
1345
- id="text4355-97"><tspan
1346
- sodipodi:role="line"
1347
- id="tspan4357-3"
1348
- x="-15.644068"
1349
- y="87.559303"
1350
- style="font-size:12px;line-height:1.25;font-family:sans-serif">6</tspan></text>
1351
- <text
1352
- xml:space="preserve"
1353
- style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#b3b3b3;fill-opacity:1;stroke:none"
1354
- x="-15.644068"
1355
- y="63.559307"
1356
- id="text4355-612"><tspan
1357
- sodipodi:role="line"
1358
- id="tspan4357-93"
1359
- x="-15.644068"
1360
- y="63.559307"
1361
- style="font-size:12px;line-height:1.25;font-family:sans-serif">7</tspan></text>
1362
- <text
1363
- xml:space="preserve"
1364
- style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#b3b3b3;fill-opacity:1;stroke:none"
1365
- x="-15.644068"
1366
- y="39.559307"
1367
- id="text4355-1"><tspan
1368
- sodipodi:role="line"
1369
- id="tspan4357-94"
1370
- x="-15.644068"
1371
- y="39.559307"
1372
- style="font-size:12px;line-height:1.25;font-family:sans-serif">8</tspan></text>
1373
- <text
1374
- xml:space="preserve"
1375
- style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#b3b3b3;fill-opacity:1;stroke:none"
1376
- x="-15.644068"
1377
- y="15.559306"
1378
- id="text4355-78"><tspan
1379
- sodipodi:role="line"
1380
- id="tspan4357-4"
1381
- x="-15.644068"
1382
- y="15.559306"
1383
- style="font-size:12px;line-height:1.25;font-family:sans-serif">9</tspan></text>
1384
- <g
1385
- id="Page-1-6"
1386
- style="fill:none;stroke:none"
1387
- transform="translate(200,50)">
1388
- <g
1389
- id="undo">
1390
- <rect
1391
- height="20"
1392
- width="20"
1393
- y="0"
1394
- x="0"
1395
- id="bounds"
1396
- style="fill:#ffffff;fill-opacity:0" />
1397
- <path
1398
- id="shape"
1399
- d="M 4.3431457,9.3431458 C 5.790861,7.8954305 7.790861,7 10,7 c 3.555275,0 6.568879,2.3191676 7.610506,5.527197 L 16.155367,13 H 15.658589 C 14.834916,10.669615 12.612438,9 10,9 8.3431458,9 6.8431457,9.6715729 5.7573593,10.757359 L 8,13 H 2 V 7 Z"
1400
- inkscape:connector-curvature="0"
1401
- style="fill:#000000" />
1402
- </g>
1403
- </g>
1404
- <path
1405
- style="fill:#000000"
1406
- sodipodi:nodetypes="ccccccccccccc"
1407
- inkscape:connector-curvature="0"
1408
- d="m 215,82 h -3 v -4 h -4 v 4 h -3 l 5,6 z m -10,7 v 1 h 10 v -1 z"
1409
- id="path4295" />
1410
- <path
1411
- style="fill:none"
1412
- inkscape:connector-curvature="0"
1413
- d="m 196,72 h 24 v 24 h -24 z"
1414
- id="path4297" />
1415
- <path
1416
- style="fill:#000000"
1417
- d="m 210,102 -5,6 h 3 v 4 h 4 v -4 h 3 z m -5,11 v 1 h 10 v -1 z"
1418
- id="path4295-3"
1419
- inkscape:connector-curvature="0"
1420
- sodipodi:nodetypes="ccccccccccccc" />
1421
- <rect
1422
- style="fill:#000000"
1423
- id="square-icon"
1424
- width="8"
1425
- height="8"
1426
- x="206"
1427
- y="176" />
1428
- <g
1429
- style="fill:#000000"
1430
- id="g4456"
1431
- transform="matrix(0.78548728,0,0,0.78548728,200.6822,123.63151)">
1432
- <path
1433
- id="path4442"
1434
- d="M 15.5,14 H 14.71 L 14.43,13.73 C 15.41,12.59 16,11.11 16,9.5 16,5.91 13.09,3 9.5,3 5.91,3 3,5.91 3,9.5 3,13.09 5.91,16 9.5,16 c 1.61,0 3.09,-0.59 4.23,-1.57 L 14,14.71 v 0.79 l 5,4.99 1.49,-1.49 z m -6,0 C 7.01,14 5,11.99 5,9.5 5,7.01 7.01,5 9.5,5 11.99,5 14,7.01 14,9.5 14,11.99 11.99,14 9.5,14 Z"
1435
- inkscape:connector-curvature="0" />
1436
- <path
1437
- id="path4444"
1438
- d="M 0,0 H 24 V 24 H 0 Z"
1439
- inkscape:connector-curvature="0"
1440
- style="fill:none" />
1441
- </g>
1442
- <path
1443
- inkscape:connector-curvature="0"
1444
- id="path524-5"
1445
- d="m 211.71941,203.42329 c 0,1.1 0.9,2 2,2 1.1,0 2,-0.9 2,-2 0,-1.1 -0.9,-2 -2,-2 -1.1,0 -2,0.9 -2,2" />
1446
- <g
1447
- transform="translate(190.16772,189.50419)"
1448
- id="g520-3">
1449
- <path
1450
- d="m 20.83228,13.9958 -4,-4.5 v 3 h -4 v 3 h 4 v 3 z"
1451
- id="path526-7"
1452
- inkscape:connector-curvature="0"
1453
- sodipodi:nodetypes="cccccccc" />
1454
- </g>
1455
- <g
1456
- style="fill:none"
1457
- id="g339"
1458
- transform="translate(200.27965,146.41281)">
1459
- <path
1460
- id="path292-3"
1461
- d="M 3.21799,4.09202 C 3,4.51984 3,5.0799 3,6.2 v 5.6 c 0,0.1546 0,0.2985 5.7e-4,0.4329 C 3.00019,12.2386 3,12.2443 3,12.25 v 5.1464 c 0,0.2228 0.26929,0.3343 0.42678,0.1768 L 6.00005,14.9999 C 6.06466,15 6.13127,15 6.2,15 h 7.6 c 1.1201,0 1.6802,0 2.108,-0.218 0.3763,-0.1917 0.6823,-0.4977 0.874,-0.874 C 17,13.4802 17,12.9201 17,11.8 V 6.2 C 17,5.0799 17,4.51984 16.782,4.09202 16.5903,3.71569 16.2843,3.40973 15.908,3.21799 15.4802,3 14.9201,3 13.8,3 H 6.2 C 5.0799,3 4.51984,3 4.09202,3.21799 3.71569,3.40973 3.40973,3.71569 3.21799,4.09202 Z"
1462
- inkscape:connector-curvature="0"
1463
- style="clip-rule:evenodd;fill:#f29900;fill-rule:evenodd" />
1464
- <path
1465
- id="path303"
1466
- d="M 11,5 H 9 v 4.5 h 2 z m 0,6 H 9 v 2 h 2 z"
1467
- inkscape:connector-curvature="0"
1468
- style="clip-rule:evenodd;fill:#ffffff;fill-rule:evenodd" />
1469
- <path
1470
- id="path305"
1471
- mask="url(#path-4-outside-2)"
1472
- d="M 9,5 V 4.5 H 8.5 V 5 Z m 2,0 h 0.5 V 4.5 H 11 Z M 9,9.5 H 8.5 V 10 H 9 Z m 2,0 V 10 h 0.5 V 9.5 Z M 9,11 V 10.5 H 8.5 V 11 Z m 2,0 h 0.5 V 10.5 H 11 Z M 9,13 H 8.5 v 0.5 H 9 Z m 2,0 v 0.5 h 0.5 V 13 Z M 9,5.5 h 2 v -1 H 9 Z m 0.5,4 V 5 h -1 V 9.5 Z M 11,9 H 9 v 1 h 2 z M 10.5,5 v 4.5 h 1 V 5 Z M 9,11.5 h 2 v -1 H 9 Z M 9.5,13 v -2 h -1 v 2 z M 11,12.5 H 9 v 1 h 2 z M 10.5,11 v 2 h 1 v -2 z"
1473
- inkscape:connector-curvature="0"
1474
- style="fill:none;fill-opacity:0.12" />
1475
- </g>
1476
- <g
1477
- style="fill:none"
1478
- id="g317"
1479
- transform="translate(229.96609,195.64406)">
1480
- <circle
1481
- id="circle302"
1482
- r="6.5"
1483
- cy="8"
1484
- cx="8"
1485
- style="stroke:#1a73e8" />
1486
- <path
1487
- id="path304-3"
1488
- d="m 4,8 h 7.5 m 0,0 -4,-4 m 4,4 -4,4"
1489
- inkscape:connector-curvature="0"
1490
- style="stroke:#1a73e8" />
1491
- </g>
1492
- <text
1493
- xml:space="preserve"
1494
- style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#b3b3b3;fill-opacity:1;stroke:none"
1495
- x="234.8983"
1496
- y="231.55931"
1497
- id="text4355-36-6"><tspan
1498
- sodipodi:role="line"
1499
- id="tspan4357-0-7"
1500
- x="234.8983"
1501
- y="231.55931"
1502
- style="font-size:12px;line-height:1.25;font-family:sans-serif">i</tspan></text>
1503
- <text
1504
- xml:space="preserve"
1505
- style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#b3b3b3;fill-opacity:1;stroke:none"
1506
- x="-15.644068"
1507
- y="15.559306"
1508
- id="text4355-78-5"><tspan
1509
- sodipodi:role="line"
1510
- id="tspan4357-4-6"
1511
- x="-15.644068"
1512
- y="15.559306"
1513
- style="font-size:12px;line-height:1.25;font-family:sans-serif">9</tspan></text>
1514
- <path
1515
- id="path1124"
1516
- d="m 245.88478,174.20283 v 10.688 a 1.504,1.504 0 0 1 -0.914,1.383 1.472,1.472 0 0 1 -0.586,0.117 h -0.102 a 0.46,0.46 0 0 1 -0.109,-0.016 l -3.86,-0.547 a 7.801,7.801 0 0 1 -0.507,-0.086 13.884,13.884 0 0 0 -0.906,-0.156 3.795,3.795 0 0 0 -0.516,-0.031 4.56,4.56 0 0 0 -0.969,0.093 64.34,64.34 0 0 1 -0.445,0.094 7.52,7.52 0 0 1 -0.516,0.086 l -3.86,0.547 a 0.722,0.722 0 0 1 -0.1,0.008 0.88,0.88 0 0 0 -0.11,0.008 1.505,1.505 0 0 1 -1.383,-0.914 1.472,1.472 0 0 1 -0.117,-0.586 v -10.688 a 1.505,1.505 0 0 1 0.906,-1.383 1.44,1.44 0 0 1 0.586,-0.117 h 0.11 a 0.44,0.44 0 0 1 0.109,0.016 l 3.86,0.547 c 0.187,0.026 0.356,0.054 0.507,0.086 l 0.453,0.093 c 0.151,0.032 0.302,0.053 0.453,0.063 l 0.516,0.031 a 4.56,4.56 0 0 0 0.969,-0.093 c 0.146,-0.032 0.294,-0.06 0.445,-0.087 a 32.6,32.6 0 0 0 0.516,-0.093 l 3.86,-0.547 a 0.72,0.72 0 0 1 0.1,-0.008 c 0.032,0 0.07,-0.003 0.118,-0.008 0.208,0 0.4,0.04 0.578,0.117 0.177,0.079 0.336,0.185 0.476,0.32 0.141,0.136 0.248,0.295 0.32,0.477 0.074,0.183 0.113,0.378 0.118,0.586 z m -8,10.406 v -10.124 l -5.43,-0.782 h -0.03 a 0.128,0.128 0 0 1 -0.04,-0.008 0.48,0.48 0 0 0 -0.352,0.149 0.49,0.49 0 0 0 -0.148,0.36 v 10.687 c 0,0.14 0.05,0.258 0.148,0.351 a 0.534,0.534 0 0 0 0.36,0.149 h 0.062 l 5.43,-0.781 z m 7,0.282 v -10.688 c 0,-0.14 -0.05,-0.258 -0.148,-0.351 a 0.534,0.534 0 0 0 -0.36,-0.149 h -0.062 l -5.43,0.781 v 10.126 l 5.43,0.78 h 0.062 c 0.14,0 0.26,-0.046 0.36,-0.14 a 0.473,0.473 0 0 0 0.148,-0.36 z"
1517
- inkscape:connector-curvature="0" />
1518
- <path
1519
- id="path1145"
1520
- d="m 238.48176,159.80424 h -7.82 v -12 h 12 v 6 h -1 v -5 h -10 v 10 h 7.32 z m 7.516,2.555 c 0.073,0.146 0.11,0.294 0.11,0.445 a 0.95,0.95 0 0 1 -0.079,0.383 c -0.052,0.12 -0.122,0.226 -0.21,0.32 a 0.922,0.922 0 0 1 -0.321,0.219 1.005,1.005 0 0 1 -0.39,0.078 h -5.892 a 0.95,0.95 0 0 1 -0.383,-0.078 1.103,1.103 0 0 1 -0.32,-0.211 0.922,0.922 0 0 1 -0.22,-0.32 0.986,0.986 0 0 1 0.031,-0.836 l 2.337,-4.672 v -1.883 h -0.999 v -1 h 5 v 1 h -1 v 1.883 z m -1.89,-1.555 -1.446,-2.883 v -2.117 h -1 v 2.117 l -1.445,2.883 h 3.89 z m -8.946,-5.203 4.898,-4.899 0.704,0.704 -5.602,5.601 -2.602,-2.601 0.704,-0.704 z"
1521
- inkscape:connector-curvature="0" />
1522
- <!--
1523
- The following icon is a modification of one provided by Microsoft
1524
- as part of the vscode-icons project, hosted at
1525
- https://github.com/microsoft/vscode-icons. It is licensed under the
1526
- Creative Commons Attribution 4.0 International Public License,
1527
- available at: https://creativecommons.org/licenses/by/4.0/legalcode.
1528
- -->
1529
- <path
1530
- id="path4030"
1531
- d="m 242,125 h -11 c -0.55229,0 -1,0.40661 -1,1 v 7.628 c -1e-5,0.59339 0.44771,1.07434 1,1.07434 h 7.02699 c 0.039,-0.37283 0.11701,-0.73275 0.23001,-1.07443 H 231 V 126 h 11 v 4.43368 c 0.33232,-0.0395 0.66768,-0.0395 1,0 V 126 c 0,-0.59339 -0.44771,-1 -1,-1 z m -3.24201,7 c 0.076,-0.12141 0.15601,-0.0628 0.24201,-0.17675 V 131 h -5.00001 v 1 z M 239,127 l -1,2.1e-4 V 128 h 1 z m -1,2 h -1.00001 v 1 H 238 Z m 1.99999,-1.99979 H 241 V 128 h -1.00001 z M 241,130 v -1 h -2 v 1 z m -5,-2.99979 h 0.99999 V 128 H 236 Z M 236,129 h -1.00001 v 1 H 236 Z m -4,2 h 1 v 1 h -1 z m 0,-4 1,-2.1e-4 V 128 h -1 z m 2.99999,2.1e-4 h -1 V 128 h 1 z M 232,129 h 1.99999 v 1 H 232 Z m 7.274,4.77296 c -0.18413,0.46194 -0.27742,0.95978 -0.274,1.46228 0.0101,0.39754 0.068,0.78111 0.172,1.15178 0.104,0.36959 0.25999,0.70912 0.46999,1.0164 0.20801,0.30836 0.453,0.58018 0.73501,0.81548 0.281,0.2353 0.59699,0.41903 0.946,0.5544 l 0.336,-1.00887 c -0.24862,-0.0883 -0.48132,-0.22162 -0.68801,-0.39431 -0.19914,-0.16932 -0.37548,-0.36746 -0.52399,-0.58879 -0.1503,-0.2222 -0.26645,-0.46887 -0.34401,-0.73061 -0.0739,-0.26286 -0.1087,-0.53664 -0.103,-0.81118 -0.0118,-0.36443 0.0499,-0.7273 0.18101,-1.06366 0.25418,-0.64354 0.73103,-1.15587 1.32999,-1.42898 0.31416,-0.13546 0.65057,-0.20125 0.98901,-0.1934 0.344,0 0.64999,0.0537 0.958,0.19447 0.308,0.13968 0.57399,0.33307 0.79799,0.58019 0.22401,0.24711 0.40101,0.53184 0.53201,0.85631 0.12999,0.32555 0.21199,0.68548 0.21199,1.05507 -0.0104,0.41421 -0.10711,0.82064 -0.283,1.18939 -0.16344,0.37729 -0.40944,0.70648 -0.717,0.95944 v -1.61485 H 242.997 V 139 h 3.00299 v -1.0755 H 244.928 c 0.33999,-0.35884 0.60001,-0.77034 0.78299,-1.23556 0.182,-0.46524 0.289,-0.93904 0.289,-1.4494 -0.003,-0.50771 -0.10163,-1.00952 -0.28999,-1.47517 -0.17452,-0.44669 -0.4294,-0.85197 -0.75001,-1.1926 -0.32056,-0.33796 -0.697,-0.60869 -1.10999,-0.79829 -0.42605,-0.19791 -0.88584,-0.29818 -1.35,-0.2944 -0.47999,0 -0.945,0.0978 -1.373,0.2944 -0.41576,0.18748 -0.79297,0.46132 -1.11,0.80581 -0.31301,0.34274 -0.56001,0.74027 -0.743,1.19367 z"
1532
- inkscape:connector-curvature="0"
1533
- style="clip-rule:evenodd;fill-rule:evenodd;stroke-width:1.03654087"
1534
- sodipodi:nodetypes="ssccsccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
1535
- <g
1536
- id="g108"
1537
- transform="translate(53.601763,72)">
1538
- <path
1539
- transform="translate(0,-24)"
1540
- d="M 25,36 21.36,32 H 19.57 L 14,40 h 7.36 z"
1541
- id="path112"
1542
- inkscape:connector-curvature="0" />
1543
- <path
1544
- transform="translate(0,-24)"
1545
- d="m 7,32 v 8 H 9.05 L 14,32 Z"
1546
- id="path114"
1547
- inkscape:connector-curvature="0" />
1548
- <path
1549
- transform="translate(0,-24)"
1550
- d="M 9.67,44.55 8.08,43.23 18.84,27.45 20.43,28.77 Z"
1551
- id="path116"
1552
- inkscape:connector-curvature="0" />
1553
- <path
1554
- transform="translate(0,-24)"
1555
- d="M 0,24 H 24 V 48 H 0 Z"
1556
- id="path118"
1557
- inkscape:connector-curvature="0"
1558
- style="fill:none" />
1559
- <path
1560
- transform="translate(0,-24)"
1561
- d="M 0,24 H 24 V 48 H 0 Z m 0,0 H 24 V 48 H 0 Z m 0,0 H 24 V 48 H 0 Z m 0,0 H 24 V 48 H 0 Z"
1562
- id="path120"
1563
- inkscape:connector-curvature="0"
1564
- style="fill:none" />
1565
- <path
1566
- transform="translate(0,-24)"
1567
- d="M 0,24 H 24 V 48 H 0 Z"
1568
- id="path122"
1569
- inkscape:connector-curvature="0"
1570
- style="fill:none" />
1571
- <path
1572
- transform="translate(0,-24)"
1573
- d="M 0,24 H 24 V 48 H 0 Z"
1574
- id="path124"
1575
- inkscape:connector-curvature="0"
1576
- style="fill:none" />
1577
- <path
1578
- transform="translate(0,-24)"
1579
- d="M 0,24 H 24 V 48 H 0 Z"
1580
- id="path126"
1581
- inkscape:connector-curvature="0"
1582
- style="fill:none" />
1583
- </g>
1584
- <text
1585
- xml:space="preserve"
1586
- id="text322"
1587
- style="font-style:normal;font-weight:normal;font-size:10.6667px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect324);fill:#000000;fill-opacity:1;stroke:none;"><tspan
1588
- x="0"
1589
- y="-38.268446"><tspan
1590
- style="font-size:10.6667px">Sprites are deprecated, do not modify this file.
1591
- </tspan></tspan><tspan
1592
- x="0"
1593
- y="-24.935072"><tspan
1594
- style="font-size:10.6667px">See readme in front_end/Images for the new </tspan></tspan><tspan
1595
- x="0"
1596
- y="-11.601696"><tspan
1597
- style="font-size:10.6667px">workflow.</tspan></tspan></text>
1598
- <g
1599
- transform="translate(229.38296,76.01)"
1600
- id="g345"
1601
- style="fill:#000000">
1602
- <path
1603
- id="path330"
1604
- d="M 1,5 H 12 C 10.22,5 8.63,5.77 7.53,7 H 1 Z M 6.34,9 H 1 v 2 H 6 C 6,10.3 6.12,9.63 6.34,9 Z M 1,1 H 13 V 3 H 1 Z" />
1605
- <path
1606
- id="path332"
1607
- d="m 16,11 a 4,4 0 1 1 -8,0 4,4 0 0 1 8,0 z m -2.8,2.2 A 2.5,2.5 0 0 1 9.8,9.8 l 3.38,3.39 z m 0.95,-0.93 -3.42,-3.42 a 2.5,2.5 0 0 1 3.42,3.42 z"
1608
- clip-rule="evenodd"
1609
- fill-rule="evenodd" />
1610
- </g>
1611
- <g
1612
- transform="translate(229.36296,100)"
1613
- id="g361"
1614
- style="fill:#000000">
1615
- <path
1616
- id="path347"
1617
- d="M 2.07,1 A 1.5,1.5 0 0 0 0.92,3.46 L 5,8.36 V 13 a 1,1 0 1 0 2,0 V 8.36 l 4.08,-4.9 A 1.5,1.5 0 0 0 9.93,1 Z M 6,6.44 3.14,3 h 5.72 z"
1618
- clip-rule="evenodd"
1619
- fill-rule="evenodd" />
1620
- <path
1621
- id="path349"
1622
- d="m 16,11 a 4,4 0 1 1 -8,0 4,4 0 0 1 8,0 z m -2.8,2.2 A 2.5,2.5 0 0 1 9.8,9.8 l 3.38,3.39 z m 0.95,-0.93 -3.42,-3.42 a 2.5,2.5 0 0 1 3.42,3.42 z"
1623
- clip-rule="evenodd"
1624
- fill-rule="evenodd" />
1625
- </g>
1626
- <path
1627
- d="m 235.47721,60.520795 h -3.46219 l -0.77854,2.173598 H 230 L 233.13245,54 h 1.22734 l 2.45466,6.809475 -0.74188,1.375481 z m -0.39385,-1.086801 -1.33725,-3.718887 -1.33724,3.718887 z m 8.99435,5.765129 q 0.15572,0.348118 0.28394,0.619817 0.12822,0.271699 0.32058,0.458492 0.19234,0.186794 0.45795,0.288683 0.26563,0.101882 0.71442,0.101882 v 0.373588 h -4.11249 v -0.373588 h 0.3389 q 0.18319,0 0.3572,-0.02547 0.17404,-0.02548 0.27478,-0.144342 0.10082,-0.118869 0.10994,-0.314154 0,-0.118868 -0.0549,-0.331135 -0.0548,-0.212263 -0.14655,-0.458492 -0.0916,-0.246224 -0.19236,-0.500944 -0.10082,-0.254717 -0.20149,-0.492455 -0.10082,-0.237738 -0.17404,-0.390569 -0.0732,-0.152832 -0.10081,-0.229248 h -4.10332 q -0.0275,0.06793 -0.10994,0.229248 -0.0824,0.161321 -0.18316,0.390569 -0.10082,0.229245 -0.21983,0.483965 -0.11906,0.254719 -0.21066,0.492456 -0.0916,0.237737 -0.1557,0.458493 -0.0642,0.220757 -0.0642,0.339626 0,0.203774 0.10994,0.297169 0.10995,0.0934 0.28393,0.135851 0.17406,0.04246 0.34806,0.04246 0.17404,0 0.3389,0.01698 v 0.3736 h -3.45302 v -0.373587 q 0.4488,-0.07641 0.69609,-0.178303 0.2473,-0.101895 0.403,-0.2717 0.15572,-0.169814 0.27478,-0.441513 0.11906,-0.271699 0.30225,-0.670759 l 3.59041,-7.84533 h 0.75107 z m -2.66533,-2.50473 -1.62118,-3.234924 -1.54791,3.234924 z"
1628
- id="path393" />
1629
- </svg>