qwc2 2025.3.31

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 (528) hide show
  1. package/LICENSE +28 -0
  2. package/README.md +68 -0
  3. package/actions/display.js +7 -0
  4. package/actions/editing.js +7 -0
  5. package/actions/layerinfo.js +7 -0
  6. package/actions/layers.js +8 -0
  7. package/actions/localConfig.js +7 -0
  8. package/actions/locale.js +10 -0
  9. package/actions/locate.js +8 -0
  10. package/actions/logging.js +7 -0
  11. package/actions/map.js +15 -0
  12. package/actions/measurement.js +8 -0
  13. package/actions/processNotifications.js +7 -0
  14. package/actions/redlining.js +7 -0
  15. package/actions/redliningPick.js +7 -0
  16. package/actions/serviceinfo.js +7 -0
  17. package/actions/task.js +9 -0
  18. package/actions/theme.js +24 -0
  19. package/actions/windows.js +10 -0
  20. package/components/AppMenu.js +8 -0
  21. package/components/AttributeForm.js +34 -0
  22. package/components/AutoEditForm.js +8 -0
  23. package/components/CoordinateDisplayer.js +7 -0
  24. package/components/EditComboField.js +10 -0
  25. package/components/EditUploadField.js +8 -0
  26. package/components/FullscreenSwitcher.js +8 -0
  27. package/components/Icon.js +7 -0
  28. package/components/IdentifyViewer.js +16 -0
  29. package/components/ImportLayer.js +25 -0
  30. package/components/LayerInfoWindow.js +7 -0
  31. package/components/LinkFeatureForm.js +10 -0
  32. package/components/MapSelection.js +13 -0
  33. package/components/NumericInputWindow.js +7 -0
  34. package/components/PickFeature.js +7 -0
  35. package/components/PluginsContainer.js +8 -0
  36. package/components/PrintSelection.js +54 -0
  37. package/components/QtDesignerForm.js +30 -0
  38. package/components/ResizeableWindow.js +12 -0
  39. package/components/SearchBox.js +26 -0
  40. package/components/ServiceInfoWindow.js +7 -0
  41. package/components/SideBar.js +9 -0
  42. package/components/StandardApp.js +35 -0
  43. package/components/Swipeable.js +1 -0
  44. package/components/TaskBar.js +7 -0
  45. package/components/ThemeLayersListWindow.js +9 -0
  46. package/components/ThemeList.js +12 -0
  47. package/components/Toolbar.js +7 -0
  48. package/components/WindowManager.js +7 -0
  49. package/components/map/OlLayer.js +12 -0
  50. package/components/map/OlLocate.css +56 -0
  51. package/components/map/OlLocate.js +17 -0
  52. package/components/map/OlMap.js +11 -0
  53. package/components/map/layers/BingLayer.js +8 -0
  54. package/components/map/layers/GoogleLayer.js +27 -0
  55. package/components/map/layers/GraticuleLayer.js +8 -0
  56. package/components/map/layers/ImageLayer.js +8 -0
  57. package/components/map/layers/MVTLayer.js +7 -0
  58. package/components/map/layers/OSMLayer.js +8 -0
  59. package/components/map/layers/OverlayLayer.js +10 -0
  60. package/components/map/layers/VectorLayer.js +14 -0
  61. package/components/map/layers/WFSLayer.js +11 -0
  62. package/components/map/layers/WMSLayer.js +11 -0
  63. package/components/map/layers/WMTSLayer.js +9 -0
  64. package/components/map/layers/XYZLayer.js +7 -0
  65. package/components/map/layers/index.js +8 -0
  66. package/components/map3d/BottomBar3D.js +7 -0
  67. package/components/map3d/Compare3D.js +12 -0
  68. package/components/map3d/Draw3D.js +10 -0
  69. package/components/map3d/ExportObjects3D.js +17 -0
  70. package/components/map3d/HeightProfile3D.js +8 -0
  71. package/components/map3d/HideObjects3D.js +12 -0
  72. package/components/map3d/Identify3D.js +13 -0
  73. package/components/map3d/LayerTree3D.js +8 -0
  74. package/components/map3d/Map3D.js +29 -0
  75. package/components/map3d/Map3DLight.js +10 -0
  76. package/components/map3d/MapControls3D.js +20 -0
  77. package/components/map3d/MapExport3D.js +11 -0
  78. package/components/map3d/Measure3D.js +23 -0
  79. package/components/map3d/OverviewMap3D.js +9 -0
  80. package/components/map3d/SearchField3D.js +16 -0
  81. package/components/map3d/TopBar3D.js +7 -0
  82. package/components/map3d/View3DSwitcher.js +7 -0
  83. package/components/map3d/drawtool/CreateTool3D.js +9 -0
  84. package/components/map3d/drawtool/EditTool3D.js +9 -0
  85. package/components/map3d/drawtool/NumericInput3D.js +7 -0
  86. package/components/map3d/img/viewcone.svg +124 -0
  87. package/components/map3d/layers/VectorLayer3D.js +7 -0
  88. package/components/map3d/layers/WFSLayer3D.js +8 -0
  89. package/components/map3d/layers/WMSLayer3D.js +7 -0
  90. package/components/map3d/layers/WMTSLayer3D.js +9 -0
  91. package/components/map3d/layers/index.js +8 -0
  92. package/components/map3d/models/arrow.glb +0 -0
  93. package/components/map3d/models/pin.glb +0 -0
  94. package/components/map3d/slices/map3d.js +1 -0
  95. package/components/map3d/style/BottomBar3D.css +67 -0
  96. package/components/map3d/style/Compare3D.css +57 -0
  97. package/components/map3d/style/Draw3D.css +7 -0
  98. package/components/map3d/style/HideObjects3D.css +29 -0
  99. package/components/map3d/style/LayerTree3D.css +126 -0
  100. package/components/map3d/style/Map3D.css +42 -0
  101. package/components/map3d/style/Map3DLight.css +72 -0
  102. package/components/map3d/style/MapControls3D.css +56 -0
  103. package/components/map3d/style/MapExport3D.css +25 -0
  104. package/components/map3d/style/OverviewMap3D.css +37 -0
  105. package/components/map3d/style/SearchField3D.css +7 -0
  106. package/components/map3d/style/View3DSwitcher.css +27 -0
  107. package/components/map3d/utils/Tiles3DStyle.js +1 -0
  108. package/components/share/ShareLink.js +7 -0
  109. package/components/share/ShareQRCode.js +8 -0
  110. package/components/share/ShareSocials.js +9 -0
  111. package/components/share/style/ShareLink.css +13 -0
  112. package/components/share/style/ShareSocials.css +9 -0
  113. package/components/style/App.css +229 -0
  114. package/components/style/AppMenu.css +162 -0
  115. package/components/style/AttributeForm.css +57 -0
  116. package/components/style/AutoEditForm.css +64 -0
  117. package/components/style/DefaultColorScheme.css +60 -0
  118. package/components/style/EditUploadField.css +103 -0
  119. package/components/style/FullscreenSwitcher.css +25 -0
  120. package/components/style/Icon.css +26 -0
  121. package/components/style/IdentifyViewer.css +249 -0
  122. package/components/style/ImportLayer.css +28 -0
  123. package/components/style/LayerInfoWindow.css +46 -0
  124. package/components/style/LinkFeatureForm.css +48 -0
  125. package/components/style/NumericInputWindow.css +11 -0
  126. package/components/style/PickFeature.css +25 -0
  127. package/components/style/PluginsContainer.css +4 -0
  128. package/components/style/QtDesignerForm.css +225 -0
  129. package/components/style/ResizeableWindow.css +178 -0
  130. package/components/style/SearchBox.css +159 -0
  131. package/components/style/ServiceInfoWindow.css +34 -0
  132. package/components/style/SideBar.css +100 -0
  133. package/components/style/TaskBar.css +35 -0
  134. package/components/style/ThemeLayersListWindow.css +47 -0
  135. package/components/style/ThemeList.css +200 -0
  136. package/components/style/Toolbar.css +20 -0
  137. package/components/style/WindowManager.css +50 -0
  138. package/components/timeline/FixedTimeline.js +10 -0
  139. package/components/timeline/InfiniteTimeline.js +13 -0
  140. package/components/timeline/TimelineFeaturesSlider.js +10 -0
  141. package/components/timeline/style/FixedTimeline.css +76 -0
  142. package/components/timeline/style/InfiniteTimeline.css +94 -0
  143. package/components/timeline/style/TimelineFeaturesSlider.css +131 -0
  144. package/components/widgets/AccordeonWidget.js +7 -0
  145. package/components/widgets/ButtonBar.js +7 -0
  146. package/components/widgets/ColorButton.js +8 -0
  147. package/components/widgets/ComboBox.js +7 -0
  148. package/components/widgets/CopyButton.js +7 -0
  149. package/components/widgets/DateTimeInput.js +8 -0
  150. package/components/widgets/EditableSelect.js +8 -0
  151. package/components/widgets/FileSelector.js +9 -0
  152. package/components/widgets/Input.js +7 -0
  153. package/components/widgets/InputContainer.js +7 -0
  154. package/components/widgets/LayerCatalogWidget.js +3 -0
  155. package/components/widgets/MenuButton.js +1 -0
  156. package/components/widgets/ModalDialog.js +7 -0
  157. package/components/widgets/NavBar.js +7 -0
  158. package/components/widgets/NumberInput.js +9 -0
  159. package/components/widgets/PopupMenu.js +1 -0
  160. package/components/widgets/Primitives.js +7 -0
  161. package/components/widgets/ReCaptchaWidget.js +1 -0
  162. package/components/widgets/SearchWidget.js +7 -0
  163. package/components/widgets/Spinner.js +6 -0
  164. package/components/widgets/SuggestionInput.js +7 -0
  165. package/components/widgets/TextInput.js +7 -0
  166. package/components/widgets/ToggleSwitch.js +7 -0
  167. package/components/widgets/VectorLayerPicker.js +8 -0
  168. package/components/widgets/style/AccordeonWidget.css +22 -0
  169. package/components/widgets/style/ButtonBar.css +88 -0
  170. package/components/widgets/style/ColorButton.css +88 -0
  171. package/components/widgets/style/ComboBox.css +83 -0
  172. package/components/widgets/style/CopyButton.css +21 -0
  173. package/components/widgets/style/EditableSelect.css +47 -0
  174. package/components/widgets/style/FileSelector.css +14 -0
  175. package/components/widgets/style/InputContainer.css +34 -0
  176. package/components/widgets/style/LayerCatalogWidget.css +59 -0
  177. package/components/widgets/style/MenuButton.css +122 -0
  178. package/components/widgets/style/ModalDialog.css +50 -0
  179. package/components/widgets/style/NavBar.css +12 -0
  180. package/components/widgets/style/NumberInput.css +76 -0
  181. package/components/widgets/style/SearchWidget.css +43 -0
  182. package/components/widgets/style/Spinner.css +32 -0
  183. package/components/widgets/style/SuggestionInput.css +8 -0
  184. package/components/widgets/style/TextInput.css +94 -0
  185. package/components/widgets/style/ToggleSwitch.css +61 -0
  186. package/components/widgets/style/VectorLayerPicker.css +3 -0
  187. package/icons/2d.svg +70 -0
  188. package/icons/3d.svg +70 -0
  189. package/icons/3d2d.svg +92 -0
  190. package/icons/after.svg +76 -0
  191. package/icons/arrow-down.svg +60 -0
  192. package/icons/arrow-up.svg +60 -0
  193. package/icons/before.svg +76 -0
  194. package/icons/bglayer.svg +71 -0
  195. package/icons/bookmark.svg +170 -0
  196. package/icons/box.svg +63 -0
  197. package/icons/buffer.svg +67 -0
  198. package/icons/camera.svg +118 -0
  199. package/icons/catalog.svg +62 -0
  200. package/icons/checked.svg +80 -0
  201. package/icons/chevron-down.svg +60 -0
  202. package/icons/chevron-left.svg +59 -0
  203. package/icons/chevron-right.svg +60 -0
  204. package/icons/chevron-up.svg +60 -0
  205. package/icons/circle.svg +70 -0
  206. package/icons/clear.svg +62 -0
  207. package/icons/clock.svg +71 -0
  208. package/icons/cog.svg +60 -0
  209. package/icons/collapse.svg +73 -0
  210. package/icons/compare.svg +72 -0
  211. package/icons/cone.svg +58 -0
  212. package/icons/confirm.svg +62 -0
  213. package/icons/copy.svg +60 -0
  214. package/icons/cuboid.svg +58 -0
  215. package/icons/cyclomedia.svg +47 -0
  216. package/icons/cylinder.svg +58 -0
  217. package/icons/dataimport.svg +116 -0
  218. package/icons/detach.svg +79 -0
  219. package/icons/dock.svg +82 -0
  220. package/icons/dock_bottom.svg +82 -0
  221. package/icons/dock_left.svg +84 -0
  222. package/icons/dock_right.svg +84 -0
  223. package/icons/dock_top.svg +84 -0
  224. package/icons/draw.svg +78 -0
  225. package/icons/editdraw.svg +84 -0
  226. package/icons/edited.svg +78 -0
  227. package/icons/editing.svg +118 -0
  228. package/icons/ellipse.svg +72 -0
  229. package/icons/embed.svg +88 -0
  230. package/icons/expand.svg +73 -0
  231. package/icons/export.svg +126 -0
  232. package/icons/eye.svg +127 -0
  233. package/icons/featureform.svg +115 -0
  234. package/icons/fill.svg +62 -0
  235. package/icons/filter.svg +69 -0
  236. package/icons/folder-open.svg +60 -0
  237. package/icons/freehand.svg +82 -0
  238. package/icons/group.svg +76 -0
  239. package/icons/home.svg +60 -0
  240. package/icons/identify_radius.svg +71 -0
  241. package/icons/identify_region.svg +71 -0
  242. package/icons/import.svg +62 -0
  243. package/icons/info-sign.svg +60 -0
  244. package/icons/info.svg +80 -0
  245. package/icons/layers.svg +71 -0
  246. package/icons/light.svg +77 -0
  247. package/icons/line.svg +61 -0
  248. package/icons/line_buffer.svg +65 -0
  249. package/icons/link.svg +75 -0
  250. package/icons/list-alt.svg +111 -0
  251. package/icons/lock.svg +54 -0
  252. package/icons/login.svg +56 -0
  253. package/icons/logout.svg +56 -0
  254. package/icons/map3d.svg +51 -0
  255. package/icons/maximize.svg +84 -0
  256. package/icons/measure.svg +82 -0
  257. package/icons/measure_line.svg +87 -0
  258. package/icons/measure_polygon.svg +88 -0
  259. package/icons/menu-hamburger.svg +60 -0
  260. package/icons/minimize.svg +76 -0
  261. package/icons/minus-sign.svg +60 -0
  262. package/icons/minus.svg +61 -0
  263. package/icons/nav-end.svg +74 -0
  264. package/icons/nav-left.svg +74 -0
  265. package/icons/nav-right.svg +74 -0
  266. package/icons/nav-start.svg +73 -0
  267. package/icons/new.svg +84 -0
  268. package/icons/nodetool.svg +68 -0
  269. package/icons/numericinput.svg +86 -0
  270. package/icons/ok.svg +60 -0
  271. package/icons/open.svg +79 -0
  272. package/icons/open_link.svg +74 -0
  273. package/icons/paint.svg +75 -0
  274. package/icons/pen.svg +41 -0
  275. package/icons/person.svg +44 -0
  276. package/icons/pick.svg +67 -0
  277. package/icons/pick_point.svg +74 -0
  278. package/icons/pick_region.svg +71 -0
  279. package/icons/plus.svg +60 -0
  280. package/icons/point.svg +67 -0
  281. package/icons/point_buffer.svg +74 -0
  282. package/icons/polygon.svg +61 -0
  283. package/icons/print.svg +60 -0
  284. package/icons/pyramid.svg +58 -0
  285. package/icons/radio_checked.svg +78 -0
  286. package/icons/radio_tristate.svg +75 -0
  287. package/icons/radio_unchecked.svg +72 -0
  288. package/icons/rasterexport.svg +124 -0
  289. package/icons/rect.svg +63 -0
  290. package/icons/refresh.svg +44 -0
  291. package/icons/remove.svg +60 -0
  292. package/icons/report.svg +84 -0
  293. package/icons/routing-bicycle.svg +40 -0
  294. package/icons/routing-bus.svg +40 -0
  295. package/icons/routing-cablecar.svg +40 -0
  296. package/icons/routing-car.svg +40 -0
  297. package/icons/routing-ship.svg +40 -0
  298. package/icons/routing-train.svg +40 -0
  299. package/icons/routing-tram.svg +40 -0
  300. package/icons/routing-truck.svg +40 -0
  301. package/icons/routing-walking.svg +40 -0
  302. package/icons/routing.svg +68 -0
  303. package/icons/save.svg +190 -0
  304. package/icons/scale.svg +62 -0
  305. package/icons/screenshot.svg +60 -0
  306. package/icons/search.svg +60 -0
  307. package/icons/selectbox.svg +79 -0
  308. package/icons/share.svg +64 -0
  309. package/icons/snap_edge.svg +79 -0
  310. package/icons/snap_vertex.svg +79 -0
  311. package/icons/sphere.svg +58 -0
  312. package/icons/square.svg +68 -0
  313. package/icons/sync.svg +72 -0
  314. package/icons/text.svg +68 -0
  315. package/icons/themes.svg +81 -0
  316. package/icons/tilt-down.svg +67 -0
  317. package/icons/tilt-left.svg +48 -0
  318. package/icons/tilt-right.svg +48 -0
  319. package/icons/tilt-up.svg +67 -0
  320. package/icons/today.svg +45 -0
  321. package/icons/tools.svg +77 -0
  322. package/icons/transformtool.svg +74 -0
  323. package/icons/transparency.svg +132 -0
  324. package/icons/trash.svg +60 -0
  325. package/icons/tree_minus.svg +81 -0
  326. package/icons/tree_plus.svg +81 -0
  327. package/icons/triangle-down.svg +59 -0
  328. package/icons/triangle-left.svg +60 -0
  329. package/icons/triangle-right.svg +60 -0
  330. package/icons/triangle-up.svg +59 -0
  331. package/icons/tristate.svg +79 -0
  332. package/icons/unchecked.svg +74 -0
  333. package/icons/undock.svg +82 -0
  334. package/icons/undock_bottom.svg +82 -0
  335. package/icons/undock_left.svg +82 -0
  336. package/icons/undock_right.svg +84 -0
  337. package/icons/undock_top.svg +84 -0
  338. package/icons/unmaximize.svg +84 -0
  339. package/icons/unminimize.svg +76 -0
  340. package/icons/up-down-arrow.svg +66 -0
  341. package/icons/warning.svg +72 -0
  342. package/icons/wedge.svg +58 -0
  343. package/icons/zoom.svg +60 -0
  344. package/icons/zoomin.svg +71 -0
  345. package/icons/zoomout.svg +80 -0
  346. package/libs/openlayers.js +11 -0
  347. package/package.json +135 -0
  348. package/plugins/API.js +114 -0
  349. package/plugins/AttributeTable.js +25 -0
  350. package/plugins/Authentication.js +13 -0
  351. package/plugins/BackgroundSwitcher.js +10 -0
  352. package/plugins/Bookmark.js +13 -0
  353. package/plugins/BottomBar.js +10 -0
  354. package/plugins/CookiePopup.js +9 -0
  355. package/plugins/Cyclomedia.js +11 -0
  356. package/plugins/Editing.js +21 -0
  357. package/plugins/FeatureForm.js +21 -0
  358. package/plugins/FeatureSearch.js +11 -0
  359. package/plugins/GeometryDigitizer.js +43 -0
  360. package/plugins/HeightProfile.js +26 -0
  361. package/plugins/Help.js +11 -0
  362. package/plugins/HomeButton.js +9 -0
  363. package/plugins/Identify.js +18 -0
  364. package/plugins/LayerCatalog.js +45 -0
  365. package/plugins/LayerTree.js +15 -0
  366. package/plugins/LocateButton.js +10 -0
  367. package/plugins/Map.js +22 -0
  368. package/plugins/MapCompare.js +11 -0
  369. package/plugins/MapCopyright.js +11 -0
  370. package/plugins/MapExport.js +23 -0
  371. package/plugins/MapFilter.js +20 -0
  372. package/plugins/MapInfoTooltip.js +32 -0
  373. package/plugins/MapLegend.js +14 -0
  374. package/plugins/MapTip.js +15 -0
  375. package/plugins/Measure.js +10 -0
  376. package/plugins/NewsPopup.js +12 -0
  377. package/plugins/Panoramax.js +10 -0
  378. package/plugins/Portal.js +10 -0
  379. package/plugins/Print.js +22 -0
  380. package/plugins/ProcessNotifications.js +11 -0
  381. package/plugins/Redlining.js +12 -0
  382. package/plugins/Reports.js +15 -0
  383. package/plugins/Routing.js +23 -0
  384. package/plugins/ScratchDrawing.js +15 -0
  385. package/plugins/Settings.js +12 -0
  386. package/plugins/Share.js +11 -0
  387. package/plugins/StartupMarker.js +12 -0
  388. package/plugins/TaskButton.js +9 -0
  389. package/plugins/ThemeSwitcher.js +10 -0
  390. package/plugins/TimeManager.js +21 -0
  391. package/plugins/TopBar.js +13 -0
  392. package/plugins/ValueTool.js +11 -0
  393. package/plugins/View3D.js +34 -0
  394. package/plugins/ZoomButtons.js +11 -0
  395. package/plugins/map/EditingSupport.js +13 -0
  396. package/plugins/map/LocateSupport.js +14 -0
  397. package/plugins/map/MeasurementSupport.js +15 -0
  398. package/plugins/map/OverviewSupport.js +14 -0
  399. package/plugins/map/RedliningPickSupport.js +12 -0
  400. package/plugins/map/RedliningSupport.js +28 -0
  401. package/plugins/map/ScaleBarSupport.js +10 -0
  402. package/plugins/map/SnapInteraction.js +1 -0
  403. package/plugins/map/SnapSupport.js +7 -0
  404. package/plugins/map/SnappingSupport.js +23 -0
  405. package/plugins/map/style/OverviewSupport.css +42 -0
  406. package/plugins/map/style/ScaleBarSupport.css +18 -0
  407. package/plugins/map/style/SnappingSupport.css +33 -0
  408. package/plugins/redlining/RedliningBufferSupport.js +8 -0
  409. package/plugins/style/AttributeTable.css +220 -0
  410. package/plugins/style/Authentication.css +16 -0
  411. package/plugins/style/BackgroundSwitcher.css +99 -0
  412. package/plugins/style/Bookmark.css +62 -0
  413. package/plugins/style/BottomBar.css +53 -0
  414. package/plugins/style/Buttons.css +68 -0
  415. package/plugins/style/CookiePopup.css +24 -0
  416. package/plugins/style/Cyclomedia.css +66 -0
  417. package/plugins/style/Editing.css +40 -0
  418. package/plugins/style/FeatureForm.css +21 -0
  419. package/plugins/style/FeatureSearch.css +71 -0
  420. package/plugins/style/GeometryDigitizer.css +28 -0
  421. package/plugins/style/HeightProfile.css +26 -0
  422. package/plugins/style/Identify.css +4 -0
  423. package/plugins/style/LayerCatalog.css +8 -0
  424. package/plugins/style/LayerTree.css +316 -0
  425. package/plugins/style/Map.css +43 -0
  426. package/plugins/style/MapCompare.css +27 -0
  427. package/plugins/style/MapCopyright.css +17 -0
  428. package/plugins/style/MapExport.css +55 -0
  429. package/plugins/style/MapFilter.css +101 -0
  430. package/plugins/style/MapInfoTooltip.css +78 -0
  431. package/plugins/style/MapLegend.css +36 -0
  432. package/plugins/style/MapTip.css +22 -0
  433. package/plugins/style/Measure.css +23 -0
  434. package/plugins/style/NewsPopup.css +87 -0
  435. package/plugins/style/Panoramax.css +15 -0
  436. package/plugins/style/Portal.css +115 -0
  437. package/plugins/style/Print.css +116 -0
  438. package/plugins/style/ProcessNotifications.css +55 -0
  439. package/plugins/style/Redlining.css +101 -0
  440. package/plugins/style/Reports.css +11 -0
  441. package/plugins/style/Routing.css +243 -0
  442. package/plugins/style/ScratchDrawing.css +8 -0
  443. package/plugins/style/Settings.css +11 -0
  444. package/plugins/style/Share.css +59 -0
  445. package/plugins/style/ThemeSwitcher.css +7 -0
  446. package/plugins/style/TimeManager.css +91 -0
  447. package/plugins/style/TopBar.css +50 -0
  448. package/plugins/style/ValueTool.css +60 -0
  449. package/reducers/display.js +7 -0
  450. package/reducers/editing.js +8 -0
  451. package/reducers/index.js +7 -0
  452. package/reducers/layerinfo.js +7 -0
  453. package/reducers/layers.js +14 -0
  454. package/reducers/localConfig.js +8 -0
  455. package/reducers/locale.js +8 -0
  456. package/reducers/locate.js +8 -0
  457. package/reducers/map.js +11 -0
  458. package/reducers/measurement.js +8 -0
  459. package/reducers/processNotifications.js +7 -0
  460. package/reducers/redlining.js +7 -0
  461. package/reducers/redliningPick.js +7 -0
  462. package/reducers/serviceinfo.js +7 -0
  463. package/reducers/task.js +7 -0
  464. package/reducers/theme.js +7 -0
  465. package/reducers/windows.js +7 -0
  466. package/scripts/dist.sh +16 -0
  467. package/scripts/gen-plugin-docs.js +9 -0
  468. package/scripts/makeIconkit.js +7 -0
  469. package/scripts/package-commands.bat +8 -0
  470. package/scripts/package-commands.sh +22 -0
  471. package/scripts/themesConfig.js +48 -0
  472. package/scripts/themesConfig.py +659 -0
  473. package/scripts/translateui.sh +51 -0
  474. package/scripts/updateTranslations.js +17 -0
  475. package/scripts/wmts_config_generator.py +169 -0
  476. package/selectors/searchproviders.js +12 -0
  477. package/static/translations/bg-BG.json +709 -0
  478. package/static/translations/ca-ES.json +709 -0
  479. package/static/translations/cs-CZ.json +709 -0
  480. package/static/translations/de-CH.json +709 -0
  481. package/static/translations/de-DE.json +709 -0
  482. package/static/translations/en-US.json +709 -0
  483. package/static/translations/es-ES.json +709 -0
  484. package/static/translations/fi-FI.json +709 -0
  485. package/static/translations/fr-FR.json +709 -0
  486. package/static/translations/hu-HU.json +709 -0
  487. package/static/translations/it-IT.json +709 -0
  488. package/static/translations/ja-JP.json +709 -0
  489. package/static/translations/nl-NL.json +709 -0
  490. package/static/translations/no-NO.json +709 -0
  491. package/static/translations/pl-PL.json +709 -0
  492. package/static/translations/pt-BR.json +709 -0
  493. package/static/translations/pt-PT.json +709 -0
  494. package/static/translations/ro-RO.json +709 -0
  495. package/static/translations/ru-RU.json +709 -0
  496. package/static/translations/sv-SE.json +709 -0
  497. package/static/translations/tr-TR.json +709 -0
  498. package/static/translations/tsconfig.json +606 -0
  499. package/stores/StandardStore.js +8 -0
  500. package/utils/ConfigUtils.js +9 -0
  501. package/utils/CoordinatesUtils.js +29 -0
  502. package/utils/DxfUtils.js +10 -0
  503. package/utils/EditingInterface.js +67 -0
  504. package/utils/EditingUtils.js +11 -0
  505. package/utils/FeatureStyles.js +10 -0
  506. package/utils/IdentifyUtils.js +12 -0
  507. package/utils/ImageEditor.js +15 -0
  508. package/utils/LayerUtils.js +57 -0
  509. package/utils/LocaleUtils.js +9 -0
  510. package/utils/MapUtils.js +66 -0
  511. package/utils/MeasureUtils.js +9 -0
  512. package/utils/MiscUtils.js +15 -0
  513. package/utils/PermaLinkUtils.js +11 -0
  514. package/utils/ResourceRegistry.js +7 -0
  515. package/utils/RoutingInterface.js +12 -0
  516. package/utils/SearchProviders.js +19 -0
  517. package/utils/ServiceLayerUtils.js +20 -0
  518. package/utils/Signal.js +2 -0
  519. package/utils/ThemeUtils.js +12 -0
  520. package/utils/VectorLayerUtils.js +20 -0
  521. package/utils/expr_grammar/README.md +3 -0
  522. package/utils/expr_grammar/grammar.js +3 -0
  523. package/utils/expr_grammar/grammar.ne +118 -0
  524. package/utils/expr_grammar/test.js +13 -0
  525. package/utils/img/README.markers +1 -0
  526. package/utils/img/arrowhead.svg +4 -0
  527. package/utils/img/marker-icon.png +0 -0
  528. package/utils/img/measurehead.svg +4 -0
@@ -0,0 +1,40 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ viewBox="0 0 24 24"
4
+ version="1.1"
5
+ id="svg617"
6
+ sodipodi:docname="routing-tram.svg"
7
+ width="24"
8
+ height="24"
9
+ inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
10
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
11
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+ xmlns="http://www.w3.org/2000/svg"
13
+ xmlns:svg="http://www.w3.org/2000/svg">
14
+ <defs
15
+ id="defs621" />
16
+ <sodipodi:namedview
17
+ id="namedview619"
18
+ pagecolor="#ffffff"
19
+ bordercolor="#666666"
20
+ borderopacity="1.0"
21
+ inkscape:showpageshadow="2"
22
+ inkscape:pageopacity="0.0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#d1d1d1"
25
+ showgrid="false"
26
+ inkscape:zoom="1.3554688"
27
+ inkscape:cx="180.74928"
28
+ inkscape:cy="20.288184"
29
+ inkscape:window-width="1600"
30
+ inkscape:window-height="841"
31
+ inkscape:window-x="0"
32
+ inkscape:window-y="0"
33
+ inkscape:window-maximized="1"
34
+ inkscape:current-layer="svg617" />
35
+ <!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
36
+ <path
37
+ d="m 6.1055317,3.0625 c -0.5242187,0 -1.0140625,0.2363281 -1.340625,0.6445313 l -0.5542968,0.6875 C 3.8582661,4.8371094 3.2094379,4.9101563 2.7625629,4.5535156 2.3156879,4.196875 2.2469379,3.5523438 2.6035786,3.1054688 L 3.1492817,2.4179687 C 3.8668599,1.5242187 4.9539692,1 6.1055317,1 H 17.896157 c 1.147266,0 2.234375,0.5242187 2.951953,1.4179687 l 0.55,0.6875001 c 0.356641,0.446875 0.283594,1.0957031 -0.163281,1.4480468 -0.446875,0.3523438 -1.095703,0.2835938 -1.448047,-0.1589843 l -0.545703,-0.6875 C 18.914516,3.2988281 18.420376,3.0625 17.900454,3.0625 H 13.032095 V 5.125 h 1.71875 c 2.277343,0 4.125,1.8476562 4.125,4.125 v 6.875 c 0,1.314844 -0.614454,2.483594 -1.572657,3.239844 l 2.814453,2.814453 C 20.42272,22.484375 20.207876,23 19.778188,23 h -1.705859 c -0.365234,0 -0.713281,-0.146094 -0.971094,-0.403906 L 14.750845,20.25 H 9.2508442 L 6.9047505,22.596094 C 6.646938,22.853906 6.2988911,23 5.9336567,23 H 4.2235005 C 3.793813,23 3.5789692,22.480078 3.8840474,22.179297 L 6.6985005,19.364844 C 5.7402974,18.608594 5.1258442,17.439844 5.1258442,16.125 V 9.25 c 0,-2.2773438 1.8476563,-4.125 4.125,-4.125 H 10.969594 V 3.0625 Z M 9.2508442,7.875 c -0.7605468,0 -1.375,0.6144531 -1.375,1.375 v 1.375 c 0,0.760547 0.6144532,1.375 1.375,1.375 h 5.5000008 c 0.760546,0 1.375,-0.614453 1.375,-1.375 V 9.25 c 0,-0.7605469 -0.614454,-1.375 -1.375,-1.375 z m 1.3749998,8.25 a 1.375,1.375 0 1 0 -2.7499998,0 1.375,1.375 0 1 0 2.7499998,0 z m 4.125001,1.375 a 1.375,1.375 0 1 0 0,-2.75 1.375,1.375 0 1 0 0,2.75 z"
38
+ id="path615"
39
+ style="stroke-width:0.0429688" />
40
+ </svg>
@@ -0,0 +1,40 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ viewBox="0 0 24 24"
4
+ version="1.1"
5
+ id="svg245"
6
+ sodipodi:docname="routing-truck.svg"
7
+ width="24"
8
+ height="24"
9
+ inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
10
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
11
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+ xmlns="http://www.w3.org/2000/svg"
13
+ xmlns:svg="http://www.w3.org/2000/svg">
14
+ <defs
15
+ id="defs249" />
16
+ <sodipodi:namedview
17
+ id="namedview247"
18
+ pagecolor="#ffffff"
19
+ bordercolor="#666666"
20
+ borderopacity="1.0"
21
+ inkscape:showpageshadow="2"
22
+ inkscape:pageopacity="0.0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#d1d1d1"
25
+ showgrid="false"
26
+ inkscape:zoom="11.3125"
27
+ inkscape:cx="31.116022"
28
+ inkscape:cy="34.342541"
29
+ inkscape:window-width="1920"
30
+ inkscape:window-height="1171"
31
+ inkscape:window-x="1600"
32
+ inkscape:window-y="0"
33
+ inkscape:window-maximized="1"
34
+ inkscape:current-layer="svg245" />
35
+ <!--! Font Awesome Pro 6.3.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
36
+ <path
37
+ d="M 2.65,3.2 C 1.739063,3.2 1,3.939062 1,4.85 v 11 c 0,0.910938 0.739063,1.65 1.65,1.65 H 3.2 c 0,1.821875 1.478125,3.3 3.3,3.3 1.821875,0 3.3,-1.478125 3.3,-3.3 h 4.4 c 0,1.821875 1.478125,3.3 3.3,3.3 1.821875,0 3.3,-1.478125 3.3,-3.3 h 1.1 c 0.608438,0 1.1,-0.491562 1.1,-1.1 0,-0.608437 -0.491562,-1.1 -1.1,-1.1 V 13.1 12 11.357187 C 21.9,10.772812 21.669687,10.2125 21.257187,9.8 L 18.6,7.142812 C 18.1875,6.730312 17.627188,6.5 17.042812,6.5 H 15.3 V 4.85 C 15.3,3.939062 14.560938,3.2 13.65,3.2 Z M 15.3,8.7 h 1.742812 L 19.7,11.357187 V 12 H 15.3 Z M 4.85,17.5 a 1.65,1.65 0 1 1 3.3,0 1.65,1.65 0 1 1 -3.3,0 z M 17.5,15.85 a 1.65,1.65 0 1 1 0,3.3 1.65,1.65 0 1 1 0,-3.3 z"
38
+ id="path179"
39
+ style="stroke-width:0.034375" />
40
+ </svg>
@@ -0,0 +1,40 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ viewBox="0 0 24 24"
4
+ version="1.1"
5
+ id="svg4"
6
+ sodipodi:docname="routing-walking.svg"
7
+ width="24"
8
+ height="24"
9
+ inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
10
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
11
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+ xmlns="http://www.w3.org/2000/svg"
13
+ xmlns:svg="http://www.w3.org/2000/svg">
14
+ <defs
15
+ id="defs8" />
16
+ <sodipodi:namedview
17
+ id="namedview6"
18
+ pagecolor="#ffffff"
19
+ bordercolor="#666666"
20
+ borderopacity="1.0"
21
+ inkscape:showpageshadow="2"
22
+ inkscape:pageopacity="0.0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#d1d1d1"
25
+ showgrid="false"
26
+ inkscape:zoom="5.421875"
27
+ inkscape:cx="2.5821326"
28
+ inkscape:cy="38.824208"
29
+ inkscape:window-width="1600"
30
+ inkscape:window-height="841"
31
+ inkscape:window-x="0"
32
+ inkscape:window-y="0"
33
+ inkscape:window-maximized="1"
34
+ inkscape:current-layer="svg4" />
35
+ <!--! Font Awesome Pro 6.3.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
36
+ <path
37
+ d="m 11.999793,3.0626009 a 2.062601,2.062601 0 1 1 4.125202,0 2.062601,2.062601 0 1 1 -4.125202,0 z M 10.56027,9.5640902 c -0.04297,0.017188 -0.08164,0.034377 -0.124616,0.051565 L 10.091887,9.7660531 C 9.3871655,10.07974 8.8457328,10.677035 8.6007989,11.407539 L 8.4890747,11.742712 C 8.248438,12.464622 7.4706656,12.85136 6.7487554,12.610723 6.0268452,12.370086 5.6401075,11.592314 5.8807443,10.870404 L 5.9924685,10.535231 C 6.4823361,9.0699255 7.5652015,7.8753358 8.9746453,7.2479614 L 9.3184121,7.0975635 C 10.212206,6.7022317 11.17905,6.4959716 12.158785,6.4959716 c 1.9165,0 3.643929,1.1516187 4.37873,2.9177206 l 0.661751,1.5856248 0.919576,0.459787 c 0.67894,0.33947 0.953953,1.16451 0.614483,1.84345 -0.339469,0.678939 -1.16451,0.953953 -1.843449,0.614483 l -1.151619,-0.571512 c -0.442599,-0.223449 -0.790664,-0.592998 -0.979735,-1.052786 l -0.412521,-0.98833 -0.829337,2.814591 2.127057,2.320426 c 0.232043,0.253528 0.395332,0.558621 0.481274,0.893793 l 0.988329,3.957616 c 0.184775,0.734801 -0.262122,1.482494 -1.00122,1.667268 -0.739099,0.184775 -1.482495,-0.262122 -1.66727,-1.00122 L 13.499476,18.171151 10.461437,14.858099 C 9.8254681,14.166268 9.5891284,13.199424 9.8297652,12.292739 L 10.555973,9.5640902 Z M 8.0765546,18.102398 9.1508258,15.421017 c 0.090239,0.128912 0.1933688,0.249231 0.3007959,0.369549 l 1.7489133,1.907906 -0.623077,1.555544 c -0.10313,0.257825 -0.257825,0.494165 -0.455491,0.691831 l -2.6513014,2.651301 c -0.5371356,0.537136 -1.4094438,0.537136 -1.9465794,0 -0.5371356,-0.537135 -0.5371356,-1.409444 0,-1.946579 z"
38
+ id="path2"
39
+ style="stroke-width:0.0429708" />
40
+ </svg>
@@ -0,0 +1,68 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Generated by IcoMoon.io -->
3
+
4
+ <svg
5
+ version="1.1"
6
+ width="24"
7
+ height="24"
8
+ viewBox="0 0 24 24"
9
+ id="svg6"
10
+ sodipodi:docname="routing.svg"
11
+ inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ xmlns:svg="http://www.w3.org/2000/svg"
16
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
17
+ xmlns:cc="http://creativecommons.org/ns#"
18
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
19
+ <metadata
20
+ id="metadata12">
21
+ <rdf:RDF>
22
+ <cc:Work
23
+ rdf:about="">
24
+ <dc:format>image/svg+xml</dc:format>
25
+ <dc:type
26
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
27
+ <dc:title>uniE021</dc:title>
28
+ </cc:Work>
29
+ </rdf:RDF>
30
+ </metadata>
31
+ <defs
32
+ id="defs10" />
33
+ <sodipodi:namedview
34
+ pagecolor="#ffffff"
35
+ bordercolor="#666666"
36
+ borderopacity="1"
37
+ objecttolerance="10"
38
+ gridtolerance="10"
39
+ guidetolerance="10"
40
+ inkscape:pageopacity="0"
41
+ inkscape:pageshadow="2"
42
+ inkscape:window-width="1920"
43
+ inkscape:window-height="1171"
44
+ id="namedview8"
45
+ showgrid="true"
46
+ inkscape:zoom="29.5"
47
+ inkscape:cx="8.7966102"
48
+ inkscape:cy="17.508475"
49
+ inkscape:window-x="1600"
50
+ inkscape:window-y="0"
51
+ inkscape:window-maximized="1"
52
+ inkscape:current-layer="svg6"
53
+ inkscape:showpageshadow="2"
54
+ inkscape:pagecheckerboard="0"
55
+ inkscape:deskcolor="#d1d1d1">
56
+ <inkscape:grid
57
+ type="xygrid"
58
+ id="grid767" />
59
+ </sodipodi:namedview>
60
+ <title
61
+ id="title2">uniE021</title>
62
+ <path
63
+ id="path928"
64
+ style="fill:#000000;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1"
65
+ d="M 12 1 L 1 12 L 12 23 L 23 12 L 12 1 z M 15 6 L 17.966797 9 L 18 9 L 18 9.0351562 L 18.769531 9.8125 L 19 10.044922 L 15 14.089844 L 15 11 L 8 11 L 8 16 L 6 16 L 6 9 L 15 9 L 15 6 z " />
66
+ <g
67
+ id="path5233" />
68
+ </svg>
package/icons/save.svg ADDED
@@ -0,0 +1,190 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
+ version="1.1"
11
+ width="24"
12
+ height="24"
13
+ viewBox="0 0 24 24"
14
+ id="svg6"
15
+ sodipodi:docname="save.svg"
16
+ inkscape:version="1.0.2 (394de47547, 2021-03-26)">
17
+ <metadata
18
+ id="metadata12">
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>uniE032</dc:title>
26
+ </cc:Work>
27
+ </rdf:RDF>
28
+ </metadata>
29
+ <defs
30
+ id="defs10">
31
+ <inkscape:path-effect
32
+ effect="fillet_chamfer"
33
+ id="path-effect857"
34
+ is_visible="true"
35
+ lpeversion="1"
36
+ satellites_param="F,0,0,1,0,0.2,0,1 @ F,0,0,1,0,0.2,0,1 @ F,0,0,1,0,0.2,0,1 @ F,0,0,1,0,0.2,0,1 @ F,0,0,1,0,0.2,0,1 @ F,0,0,1,0,0.2,0,1 @ F,0,0,1,0,0.2,0,1 @ F,0,0,1,0,0.2,0,1"
37
+ unit="px"
38
+ method="auto"
39
+ mode="F"
40
+ radius="0.2"
41
+ chamfer_steps="1"
42
+ flexible="false"
43
+ use_knot_distance="true"
44
+ apply_no_radius="true"
45
+ apply_with_radius="true"
46
+ only_selected="false"
47
+ hide_knots="false" />
48
+ <inkscape:path-effect
49
+ effect="fillet_chamfer"
50
+ id="path-effect855"
51
+ is_visible="true"
52
+ lpeversion="1"
53
+ satellites_param="F,0,0,1,0,0.5,0,1 @ F,0,0,1,0,0.5,0,1 @ F,0,0,1,0,0.5,0,1 @ F,0,0,1,0,0.5,0,1"
54
+ unit="px"
55
+ method="auto"
56
+ mode="F"
57
+ radius="0.5"
58
+ chamfer_steps="1"
59
+ flexible="false"
60
+ use_knot_distance="true"
61
+ apply_no_radius="true"
62
+ apply_with_radius="true"
63
+ only_selected="false"
64
+ hide_knots="false" />
65
+ <inkscape:path-effect
66
+ effect="fillet_chamfer"
67
+ id="path-effect853"
68
+ is_visible="true"
69
+ lpeversion="1"
70
+ satellites_param="F,0,0,1,0,0.5,0,1 @ F,0,0,1,0,0.5,0,1 @ F,0,0,1,0,0.5,0,1 @ F,0,0,1,0,0.5,0,1"
71
+ unit="px"
72
+ method="auto"
73
+ mode="F"
74
+ radius="0.5"
75
+ chamfer_steps="1"
76
+ flexible="false"
77
+ use_knot_distance="true"
78
+ apply_no_radius="true"
79
+ apply_with_radius="true"
80
+ only_selected="false"
81
+ hide_knots="false" />
82
+ <inkscape:path-effect
83
+ effect="fillet_chamfer"
84
+ id="path-effect851"
85
+ is_visible="true"
86
+ lpeversion="1"
87
+ satellites_param="F,0,0,1,0,0.5,0,1 @ F,0,0,1,0,0.5,0,1 @ F,0,0,1,0,0.5,0,1 @ F,0,0,1,0,0.5,0,1"
88
+ unit="px"
89
+ method="auto"
90
+ mode="F"
91
+ radius="0.5"
92
+ chamfer_steps="1"
93
+ flexible="false"
94
+ use_knot_distance="true"
95
+ apply_no_radius="true"
96
+ apply_with_radius="true"
97
+ only_selected="false"
98
+ hide_knots="false" />
99
+ </defs>
100
+ <sodipodi:namedview
101
+ pagecolor="#ffffff"
102
+ bordercolor="#666666"
103
+ borderopacity="1"
104
+ objecttolerance="10"
105
+ gridtolerance="10"
106
+ guidetolerance="10"
107
+ inkscape:pageopacity="0"
108
+ inkscape:pageshadow="2"
109
+ inkscape:window-width="1848"
110
+ inkscape:window-height="1016"
111
+ id="namedview8"
112
+ showgrid="true"
113
+ inkscape:zoom="22.627417"
114
+ inkscape:cx="6.9476464"
115
+ inkscape:cy="12.171401"
116
+ inkscape:window-x="1992"
117
+ inkscape:window-y="27"
118
+ inkscape:window-maximized="1"
119
+ inkscape:current-layer="svg6"
120
+ inkscape:document-rotation="0">
121
+ <inkscape:grid
122
+ type="xygrid"
123
+ id="grid816"
124
+ originx="0"
125
+ originy="0" />
126
+ </sodipodi:namedview>
127
+ <title
128
+ id="title2">uniE032</title>
129
+ <path
130
+ id="rect840"
131
+ style="fill:#000000;stroke:#000000;stroke-width:0.4;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke markers fill;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none;fill-opacity:1"
132
+ d="m 2.1222499,2.0623487 c -0.022614,0.017118 -0.042782,0.037286 -0.0599,0.0599 C 1.9968515,2.2087782 2,2.3981369 2,2.5085938 V 21.491406 c 0,0.110457 -0.00315,0.299815 0.062349,0.386344 0.017118,0.02261 0.037286,0.04278 0.0599,0.0599 C 2.2087782,22.003149 2.3981369,22 2.5085938,22 H 21.491406 c 0.110457,0 0.299815,0.0031 0.386344,-0.06235 0.02261,-0.01712 0.04278,-0.03729 0.0599,-0.0599 C 22.003149,21.791222 22,21.601863 22,21.491406 V 7.3171875 A 0.49086397,0.49086397 67.831814 0 0 21.860226,6.9741377 L 17.139774,2.1430498 A 0.47504266,0.47504266 22.831814 0 0 16.8,2 H 2.5085938 C 2.3981369,2 2.2087791,1.9968515 2.1222499,2.0623487 Z"
133
+ inkscape:path-effect="#path-effect857"
134
+ inkscape:original-d="M 2.3085938 2 C 2.1377702 2 2 2.1377702 2 2.3085938 L 2 21.691406 C 2 21.86223 2.1377702 22 2.3085938 22 L 21.691406 22 C 21.86223 22 22 21.86223 22 21.691406 L 22 7.1171875 L 17 2 L 2.3085938 2 z " />
135
+ <path
136
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill"
137
+ id="rect842"
138
+ width="14"
139
+ height="8"
140
+ x="5"
141
+ y="12.90425"
142
+ ry="0"
143
+ inkscape:path-effect="#path-effect855"
144
+ d="m 5.5,12.90425 h 13 a 0.5,0.5 45 0 1 0.5,0.5 v 7 a 0.5,0.5 135 0 1 -0.5,0.5 h -13 a 0.5,0.5 45 0 1 -0.5,-0.5 v -7 a 0.5,0.5 135 0 1 0.5,-0.5 z"
145
+ sodipodi:type="rect" />
146
+ <path
147
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.555554px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
148
+ d="M 7,15.444445 H 17 V 16 H 7 Z"
149
+ id="path822-5"
150
+ inkscape:connector-curvature="0"
151
+ sodipodi:nodetypes="ccccc" />
152
+ <path
153
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.555554px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
154
+ d="m 7,16.425001 h 10 v 0.555555 H 7 Z"
155
+ id="path822-5-3"
156
+ inkscape:connector-curvature="0"
157
+ sodipodi:nodetypes="ccccc" />
158
+ <path
159
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.555554px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
160
+ d="m 7,17.405557 h 10 v 0.555556 H 7 Z"
161
+ id="path822-5-5"
162
+ inkscape:connector-curvature="0"
163
+ sodipodi:nodetypes="ccccc" />
164
+ <path
165
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.555554px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
166
+ d="m 7,18.386112 h 10 v 0.555556 H 7 Z"
167
+ id="path822-5-6"
168
+ inkscape:connector-curvature="0"
169
+ sodipodi:nodetypes="ccccc" />
170
+ <path
171
+ style="fill:#ffffff;stroke:#000000;stroke-width:0.4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill;fill-opacity:1"
172
+ id="rect844"
173
+ width="11"
174
+ height="6"
175
+ x="5"
176
+ y="4"
177
+ inkscape:path-effect="#path-effect853"
178
+ d="m 5.5,4 h 10 A 0.5,0.5 45 0 1 16,4.5 v 5 A 0.5,0.5 135 0 1 15.5,10 l -10,0 A 0.5,0.5 45 0 1 5,9.5 v -5 A 0.5,0.5 135 0 1 5.5,4 Z"
179
+ sodipodi:type="rect" />
180
+ <path
181
+ style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill"
182
+ id="rect849"
183
+ width="3"
184
+ height="4"
185
+ x="12"
186
+ y="5"
187
+ inkscape:path-effect="#path-effect851"
188
+ d="m 12.5,5 h 2 A 0.5,0.5 45 0 1 15,5.5 v 3 A 0.5,0.5 135 0 1 14.5,9 h -2 A 0.5,0.5 45 0 1 12,8.5 v -3 A 0.5,0.5 135 0 1 12.5,5 Z"
189
+ sodipodi:type="rect" />
190
+ </svg>
@@ -0,0 +1,62 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ width="24"
4
+ height="24"
5
+ viewBox="0 0 24 24"
6
+ version="1.1"
7
+ id="svg11"
8
+ inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
9
+ sodipodi:docname="scale.svg"
10
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
11
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+ xmlns="http://www.w3.org/2000/svg"
13
+ xmlns:svg="http://www.w3.org/2000/svg"
14
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
15
+ xmlns:cc="http://creativecommons.org/ns#"
16
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
17
+ <metadata
18
+ id="metadata17">
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
+ </cc:Work>
26
+ </rdf:RDF>
27
+ </metadata>
28
+ <defs
29
+ id="defs15" />
30
+ <sodipodi:namedview
31
+ pagecolor="#878787"
32
+ bordercolor="#666666"
33
+ borderopacity="1"
34
+ objecttolerance="10"
35
+ gridtolerance="10"
36
+ guidetolerance="10"
37
+ inkscape:pageopacity="0"
38
+ inkscape:pageshadow="2"
39
+ inkscape:window-width="1920"
40
+ inkscape:window-height="1171"
41
+ id="namedview13"
42
+ showgrid="true"
43
+ units="px"
44
+ inkscape:zoom="9.8333331"
45
+ inkscape:cx="17.084746"
46
+ inkscape:cy="3.5084747"
47
+ inkscape:window-x="1600"
48
+ inkscape:window-y="0"
49
+ inkscape:window-maximized="1"
50
+ inkscape:current-layer="svg11"
51
+ inkscape:showpageshadow="2"
52
+ inkscape:pagecheckerboard="0"
53
+ inkscape:deskcolor="#878787">
54
+ <inkscape:grid
55
+ type="xygrid"
56
+ id="grid4473" />
57
+ </sodipodi:namedview>
58
+ <path
59
+ id="path406"
60
+ style="color:#000000;fill:#000000;-inkscape-stroke:none"
61
+ d="M 13.414062 5.0429688 C 12.500866 5.0429687 11.771703 5.2953548 11.226562 5.7988281 C 10.684895 6.3023014 10.414062 6.9717864 10.414062 7.8085938 C 10.414062 8.5655399 10.656466 9.1772994 11.142578 9.6425781 C 11.632162 10.104384 12.275172 10.333984 13.070312 10.333984 C 13.382814 10.333984 13.672092 10.291883 13.939453 10.205078 C 14.206815 10.118272 14.459201 9.9880647 14.695312 9.8144531 C 14.636285 10.467232 14.438802 10.959634 14.105469 11.292969 C 13.772134 11.62283 13.308161 11.787109 12.710938 11.787109 C 12.426214 11.787109 12.13737 11.750651 11.845703 11.677734 C 11.554035 11.601345 11.249133 11.48915 10.929688 11.339844 L 10.929688 12.777344 C 11.249133 12.88498 11.574869 12.965492 11.908203 13.017578 C 12.241537 13.073131 12.590494 13.099609 12.955078 13.099609 C 14.087025 13.099609 14.977646 12.734594 15.626953 12.001953 C 16.27626 11.265841 16.601562 10.255428 16.601562 8.9707031 C 16.601563 7.7207004 16.323135 6.7523886 15.767578 6.0683594 C 15.212021 5.3843301 14.427953 5.0429688 13.414062 5.0429688 z M 20.236328 5.0429688 C 19.323132 5.0429687 18.593968 5.2953548 18.048828 5.7988281 C 17.50716 6.3023014 17.236328 6.9717864 17.236328 7.8085938 C 17.236328 8.5655399 17.478732 9.1772994 17.964844 9.6425781 C 18.454428 10.104384 19.097437 10.333984 19.892578 10.333984 C 20.205078 10.333984 20.494357 10.291883 20.761719 10.205078 C 21.02908 10.118272 21.281466 9.9880647 21.517578 9.8144531 C 21.45855 10.467232 21.261069 10.959634 20.927734 11.292969 C 20.594401 11.62283 20.130427 11.787109 19.533203 11.787109 C 19.248481 11.787109 18.959636 11.750651 18.667969 11.677734 C 18.376302 11.601345 18.071398 11.48915 17.751953 11.339844 L 17.751953 12.777344 C 18.071398 12.88498 18.397134 12.965492 18.730469 13.017578 C 19.063802 13.073131 19.412759 13.099609 19.777344 13.099609 C 20.909291 13.099609 21.799912 12.734594 22.449219 12.001953 C 23.098526 11.265841 23.423828 10.255428 23.423828 8.9707031 C 23.423828 7.7207004 23.145401 6.7523886 22.589844 6.0683594 C 22.034287 5.3843301 21.250219 5.0429688 20.236328 5.0429688 z M 2.3847656 5.1738281 L 0.57617188 5.5488281 L 0.57617188 6.9121094 L 2.3945312 6.5371094 L 2.3945312 11.564453 L 0.62304688 11.564453 L 0.62304688 12.949219 L 6.0605469 12.949219 L 6.0605469 11.564453 L 4.2910156 11.564453 L 4.2910156 5.1738281 L 2.3847656 5.1738281 z M 13.402344 6.3027344 C 13.753039 6.3027344 14.018229 6.4173172 14.195312 6.6464844 C 14.372396 6.8756515 14.460938 7.2165789 14.460938 7.6679688 C 14.460937 8.1228308 14.372396 8.4641922 14.195312 8.6933594 C 14.018229 8.9190543 13.753039 9.0332031 13.402344 9.0332031 C 13.051649 9.0332031 12.788412 8.9190543 12.611328 8.6933594 C 12.434244 8.4641922 12.345703 8.1228308 12.345703 7.6679688 C 12.345703 7.2165789 12.434244 6.8756515 12.611328 6.6464844 C 12.788412 6.4173172 13.051649 6.3027344 13.402344 6.3027344 z M 20.224609 6.3027344 C 20.575304 6.3027344 20.840494 6.4173172 21.017578 6.6464844 C 21.194662 6.8756515 21.283203 7.2165789 21.283203 7.6679688 C 21.283203 8.1228308 21.194662 8.4641922 21.017578 8.6933594 C 20.840494 8.9190543 20.575304 9.0332031 20.224609 9.0332031 C 19.873914 9.0332031 19.610678 8.9190543 19.433594 8.6933594 C 19.25651 8.4641922 19.167969 8.1228308 19.167969 7.6679688 C 19.167969 7.2165789 19.25651 6.8756515 19.433594 6.6464844 C 19.610678 6.4173172 19.873914 6.3027344 20.224609 6.3027344 z M 7.3886719 7.1152344 L 7.3886719 9.1308594 L 9.2695312 9.1308594 L 9.2695312 7.1152344 L 7.3886719 7.1152344 z M 7.3886719 10.933594 L 7.3886719 12.949219 L 9.2695312 12.949219 L 9.2695312 10.933594 L 7.3886719 10.933594 z M 1 15 L 1 23 L 23 23 L 23 15 L 21 15 L 21 21 L 3 21 L 3 15 L 1 15 z " />
62
+ </svg>
@@ -0,0 +1,60 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Generated by IcoMoon.io -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ version="1.1"
13
+ width="24"
14
+ height="24"
15
+ viewBox="0 0 24 24"
16
+ id="svg6"
17
+ sodipodi:docname="uniE087.svg"
18
+ inkscape:version="0.92.3 (2405546, 2018-03-11)">
19
+ <metadata
20
+ id="metadata12">
21
+ <rdf:RDF>
22
+ <cc:Work
23
+ rdf:about="">
24
+ <dc:format>image/svg+xml</dc:format>
25
+ <dc:type
26
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
27
+ <dc:title>uniE087</dc:title>
28
+ </cc:Work>
29
+ </rdf:RDF>
30
+ </metadata>
31
+ <defs
32
+ id="defs10" />
33
+ <sodipodi:namedview
34
+ pagecolor="#ffffff"
35
+ bordercolor="#666666"
36
+ borderopacity="1"
37
+ objecttolerance="10"
38
+ gridtolerance="10"
39
+ guidetolerance="10"
40
+ inkscape:pageopacity="0"
41
+ inkscape:pageshadow="2"
42
+ inkscape:window-width="1280"
43
+ inkscape:window-height="995"
44
+ id="namedview8"
45
+ showgrid="false"
46
+ inkscape:zoom="7.375"
47
+ inkscape:cx="16"
48
+ inkscape:cy="16"
49
+ inkscape:window-x="1600"
50
+ inkscape:window-y="0"
51
+ inkscape:window-maximized="1"
52
+ inkscape:current-layer="svg6" />
53
+ <title
54
+ id="title2">uniE087</title>
55
+ <path
56
+ d="m 10.6,0.8 h 2.8 q 0.1869,0 0.3269,0.14 0.14,0.14 0.14,0.3269 V 4.888 q 1.9229,0.504 3.332,1.9131 1.4091,1.4091 1.9131,3.332 h 3.6211 q 0.1869,0 0.3269,0.14 0.14,0.14 0.14,0.3269 v 2.8 q 0,0.1869 -0.14,0.3269 -0.14,0.14 -0.3269,0.14 H 19.112 q -0.504,1.9229 -1.9131,3.332 -1.4091,1.4091 -3.332,1.9131 v 3.6211 q 0,0.1869 -0.14,0.3269 -0.14,0.14 -0.3269,0.14 h -2.8 q -0.1869,0 -0.3269,-0.14 -0.14,-0.14 -0.14,-0.3269 V 19.112 Q 8.2102,18.608 6.8011,17.1989 5.392,15.7898 4.888,13.8669 H 1.2669 Q 1.08,13.8669 0.94,13.7269 0.8,13.5869 0.8,13.4 v -2.8 q 0,-0.1869 0.14,-0.3269 0.14,-0.14 0.3269,-0.14 H 4.888 Q 5.392,8.2102 6.8011,6.8011 8.2102,5.392 10.1331,4.888 V 1.2669 q 0,-0.1869 0.14,-0.3269 Q 10.4131,0.8 10.6,0.8 Z m 3.2669,5.7309 v 3.136 q 0,0.1869 -0.14,0.3269 -0.14,0.14 -0.3269,0.14 h -2.8 q -0.1869,0 -0.3269,-0.14 -0.14,-0.14 -0.14,-0.3269 V 6.5309 Q 8.864,6.96 7.912,7.912 6.96,8.864 6.5309,10.1331 h 3.136 q 0.1869,0 0.3269,0.14 0.14,0.14 0.14,0.3269 v 2.8 q 0,0.1869 -0.14,0.3269 -0.14,0.14 -0.3269,0.14 H 6.5309 Q 6.96,15.136 7.912,16.088 q 0.952,0.952 2.2211,1.3811 v -3.136 q 0,-0.1869 0.14,-0.3269 0.14,-0.14 0.3269,-0.14 h 2.8 q 0.1869,0 0.3269,0.14 0.14,0.14 0.14,0.3269 v 3.136 Q 15.136,17.04 16.088,16.088 17.04,15.136 17.4691,13.8669 h -3.136 q -0.1869,0 -0.3269,-0.14 -0.14,-0.14 -0.14,-0.3269 v -2.8 q 0,-0.1869 0.14,-0.3269 0.14,-0.14 0.3269,-0.14 h 3.136 Q 17.04,8.864 16.088,7.912 15.136,6.96 13.8669,6.5309 Z"
57
+ id="path4"
58
+ inkscape:connector-curvature="0"
59
+ style="stroke-width:0.69999999" />
60
+ </svg>
@@ -0,0 +1,60 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Generated by IcoMoon.io -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ version="1.1"
13
+ width="24"
14
+ height="24"
15
+ viewBox="0 0 24 24"
16
+ id="svg6"
17
+ sodipodi:docname="search.svg"
18
+ inkscape:version="0.92.3 (2405546, 2018-03-11)">
19
+ <metadata
20
+ id="metadata12">
21
+ <rdf:RDF>
22
+ <cc:Work
23
+ rdf:about="">
24
+ <dc:format>image/svg+xml</dc:format>
25
+ <dc:type
26
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
27
+ <dc:title>uniE003</dc:title>
28
+ </cc:Work>
29
+ </rdf:RDF>
30
+ </metadata>
31
+ <defs
32
+ id="defs10" />
33
+ <sodipodi:namedview
34
+ pagecolor="#ffffff"
35
+ bordercolor="#666666"
36
+ borderopacity="1"
37
+ objecttolerance="10"
38
+ gridtolerance="10"
39
+ guidetolerance="10"
40
+ inkscape:pageopacity="0"
41
+ inkscape:pageshadow="2"
42
+ inkscape:window-width="1280"
43
+ inkscape:window-height="995"
44
+ id="namedview8"
45
+ showgrid="false"
46
+ inkscape:zoom="7.375"
47
+ inkscape:cx="16"
48
+ inkscape:cy="16"
49
+ inkscape:window-x="1600"
50
+ inkscape:window-y="0"
51
+ inkscape:window-maximized="1"
52
+ inkscape:current-layer="svg6" />
53
+ <title
54
+ id="title2">uniE003</title>
55
+ <path
56
+ d="m 9.9510055,0.80945 q 1.8669005,0 3.5651005,0.728 1.6982,0.728 2.9211,1.9509 1.2229,1.2229 1.9509,2.9211 0.728,1.6982 0.728,3.5651 l -0.0189,0.0371 0.0189,0.0931 q 0,2.632 -1.456,4.8909 l 5.1331,5.1149 q 0.4291,0.4851 0.42,0.8309 -0.0091,0.3458 -0.42,0.7931 l -1.1011,1.0829 q -0.4851,0.3731 -0.868,0.3731 -0.3829,0 -0.7371,-0.3731 l -5.1331,-5.1149 q -2.2211,1.4371 -4.872,1.4371 l -0.093101,-0.0189 -0.0371,0.0189 q -1.8669,0 -3.5651,-0.728 -1.6982,-0.728 -2.9211,-1.9509 -1.2229,-1.2229 -1.9509,-2.9211 -0.72799949,-1.6982 -0.72799949,-3.5651 0,-1.8669 0.72799999,-3.5651 0.728,-1.6982 1.9509,-2.9211 1.2229,-1.2229 2.9211,-1.9509 1.6982,-0.728 3.5651,-0.728 z m 0,3.1549 q -1.6429,0 -3.024,0.8029 -1.3811,0.8029 -2.184,2.184 -0.8029,1.3811 -0.8029,3.024 0,1.6429 0.8029,3.024 0.8029,1.3811 2.184,2.184 1.3811,0.8029 3.024,0.8029 1.6429005,0 3.0240005,-0.8029 1.3811,-0.8029 2.184,-2.184 0.8029,-1.3811 0.8029,-3.024 0,-1.6429 -0.8029,-3.024 -0.8029,-1.3811 -2.184,-2.184 -1.3811,-0.8029 -3.0240005,-0.8029 z"
57
+ id="path4"
58
+ inkscape:connector-curvature="0"
59
+ style="stroke-width:0.69999999" />
60
+ </svg>
@@ -0,0 +1,79 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="24"
13
+ height="24"
14
+ viewBox="0 0 24.000015 24.000015"
15
+ version="1.1"
16
+ id="svg4492"
17
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
18
+ sodipodi:docname="selectbox.svg">
19
+ <defs
20
+ id="defs4486" />
21
+ <sodipodi:namedview
22
+ id="base"
23
+ pagecolor="#ffffff"
24
+ bordercolor="#666666"
25
+ borderopacity="1.0"
26
+ inkscape:pageopacity="0.0"
27
+ inkscape:pageshadow="2"
28
+ inkscape:zoom="22.627417"
29
+ inkscape:cx="7.7762192"
30
+ inkscape:cy="11.996607"
31
+ inkscape:document-units="px"
32
+ inkscape:current-layer="layer1"
33
+ showgrid="true"
34
+ units="px"
35
+ inkscape:window-width="1280"
36
+ inkscape:window-height="995"
37
+ inkscape:window-x="1600"
38
+ inkscape:window-y="0"
39
+ inkscape:window-maximized="1"
40
+ inkscape:snap-bbox="true"
41
+ inkscape:bbox-paths="true"
42
+ inkscape:bbox-nodes="true"
43
+ inkscape:snap-bbox-edge-midpoints="true"
44
+ inkscape:snap-bbox-midpoints="true"
45
+ inkscape:snap-nodes="false">
46
+ <inkscape:grid
47
+ type="xygrid"
48
+ id="grid4494" />
49
+ </sodipodi:namedview>
50
+ <metadata
51
+ id="metadata4489">
52
+ <rdf:RDF>
53
+ <cc:Work
54
+ rdf:about="">
55
+ <dc:format>image/svg+xml</dc:format>
56
+ <dc:type
57
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
58
+ <dc:title></dc:title>
59
+ </cc:Work>
60
+ </rdf:RDF>
61
+ </metadata>
62
+ <g
63
+ inkscape:label="Layer 1"
64
+ inkscape:groupmode="layer"
65
+ id="layer1"
66
+ transform="translate(0,-290.64998)">
67
+ <path
68
+ 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;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;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;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000393;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.00000791, 1.00000398;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
69
+ d="m 2,292.15039 h 2 v -1 H 2 Z m 3,0 h 2 v -1 H 5 Z m 3,0 h 2 v -1 H 8 Z m 3,0 h 2 v -1 h -2 z m 3,0 h 2 v -1 h -2 z m -13.5,1.5 h 1 v -2 h -1 z m 15,1 h 1 v -2 h -1 z m -15,2 h 1 v -2 h -1 z m 15,1 h 1 v -2 h -1 z m -15,2 h 1 v -2 h -1 z m 15,1 h 1 v -2 h -1 z m -15,2 h 1 v -2 h -1 z m 15,0 h 1 v -1 h -1 z m -14.5,1.5 h 2 v -1 H 1 Z m 3,0 h 2 v -1 H 4 Z m 3,0 h 2 v -1 H 7 Z m 3,0 h 2 v -1 h -2 z m 3,0 h 2 v -1 h -2 z"
70
+ id="path4498"
71
+ inkscape:connector-curvature="0" />
72
+ <path
73
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000393px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
74
+ d="m 21.158084,313.07555 0.812172,-0.46991 -1.875666,-3.25525 2.905501,-0.59573 -7.000113,-4.63111 0.502574,8.38994 1.967658,-2.22339 1.875684,3.25528 z"
75
+ id="path4513"
76
+ inkscape:connector-curvature="0"
77
+ sodipodi:nodetypes="ccccccccc" />
78
+ </g>
79
+ </svg>