datalab-platform 0.0.1.dev0__py3-none-any.whl → 1.0.1__py3-none-any.whl

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 (496) hide show
  1. datalab/__init__.py +35 -2
  2. datalab/adapters_metadata/__init__.py +31 -0
  3. datalab/adapters_metadata/base_adapter.py +316 -0
  4. datalab/adapters_metadata/common.py +422 -0
  5. datalab/adapters_metadata/geometry_adapter.py +98 -0
  6. datalab/adapters_metadata/table_adapter.py +84 -0
  7. datalab/adapters_plotpy/__init__.py +54 -0
  8. datalab/adapters_plotpy/annotations.py +124 -0
  9. datalab/adapters_plotpy/base.py +110 -0
  10. datalab/adapters_plotpy/converters.py +86 -0
  11. datalab/adapters_plotpy/factories.py +80 -0
  12. datalab/adapters_plotpy/objects/__init__.py +0 -0
  13. datalab/adapters_plotpy/objects/base.py +197 -0
  14. datalab/adapters_plotpy/objects/image.py +157 -0
  15. datalab/adapters_plotpy/objects/scalar.py +565 -0
  16. datalab/adapters_plotpy/objects/signal.py +264 -0
  17. datalab/adapters_plotpy/roi/__init__.py +0 -0
  18. datalab/adapters_plotpy/roi/base.py +146 -0
  19. datalab/adapters_plotpy/roi/factory.py +93 -0
  20. datalab/adapters_plotpy/roi/image.py +207 -0
  21. datalab/adapters_plotpy/roi/signal.py +72 -0
  22. datalab/app.py +98 -0
  23. datalab/config.py +817 -0
  24. datalab/control/__init__.py +0 -0
  25. datalab/control/baseproxy.py +776 -0
  26. datalab/control/proxy.py +343 -0
  27. datalab/control/remote.py +1005 -0
  28. datalab/data/doc/DataLab_en.pdf +0 -0
  29. datalab/data/doc/DataLab_fr.pdf +0 -0
  30. datalab/data/icons/analysis/delete_results.svg +109 -0
  31. datalab/data/icons/analysis/fw1e2.svg +156 -0
  32. datalab/data/icons/analysis/fwhm.svg +156 -0
  33. datalab/data/icons/analysis/histogram.svg +49 -0
  34. datalab/data/icons/analysis/peak_detect.svg +160 -0
  35. datalab/data/icons/analysis/plot_results.svg +151 -0
  36. datalab/data/icons/analysis/show_results.svg +83 -0
  37. datalab/data/icons/analysis/stats.svg +49 -0
  38. datalab/data/icons/analysis.svg +120 -0
  39. datalab/data/icons/apply.svg +3 -0
  40. datalab/data/icons/check_all.svg +15 -0
  41. datalab/data/icons/collapse.svg +44 -0
  42. datalab/data/icons/collapse_selection.svg +63 -0
  43. datalab/data/icons/console.svg +101 -0
  44. datalab/data/icons/create/1d-normal.svg +8 -0
  45. datalab/data/icons/create/1d-poisson.svg +9 -0
  46. datalab/data/icons/create/1d-uniform.svg +8 -0
  47. datalab/data/icons/create/1d-zero.svg +57 -0
  48. datalab/data/icons/create/2d-gaussian.svg +56 -0
  49. datalab/data/icons/create/2d-normal.svg +38 -0
  50. datalab/data/icons/create/2d-poisson.svg +38 -0
  51. datalab/data/icons/create/2d-ramp.svg +90 -0
  52. datalab/data/icons/create/2d-sinc.svg +62 -0
  53. datalab/data/icons/create/2d-uniform.svg +38 -0
  54. datalab/data/icons/create/2d-zero.svg +13 -0
  55. datalab/data/icons/create/checkerboard.svg +39 -0
  56. datalab/data/icons/create/cosine.svg +12 -0
  57. datalab/data/icons/create/exponential.svg +55 -0
  58. datalab/data/icons/create/gaussian.svg +12 -0
  59. datalab/data/icons/create/grating.svg +29 -0
  60. datalab/data/icons/create/linear_chirp.svg +7 -0
  61. datalab/data/icons/create/logistic.svg +7 -0
  62. datalab/data/icons/create/lorentzian.svg +12 -0
  63. datalab/data/icons/create/planck.svg +12 -0
  64. datalab/data/icons/create/polynomial.svg +7 -0
  65. datalab/data/icons/create/pulse.svg +12 -0
  66. datalab/data/icons/create/ring.svg +18 -0
  67. datalab/data/icons/create/sawtooth.svg +7 -0
  68. datalab/data/icons/create/siemens.svg +35 -0
  69. datalab/data/icons/create/sinc.svg +12 -0
  70. datalab/data/icons/create/sine.svg +7 -0
  71. datalab/data/icons/create/square.svg +7 -0
  72. datalab/data/icons/create/square_pulse.svg +7 -0
  73. datalab/data/icons/create/step.svg +7 -0
  74. datalab/data/icons/create/step_pulse.svg +12 -0
  75. datalab/data/icons/create/triangle.svg +7 -0
  76. datalab/data/icons/create/voigt.svg +12 -0
  77. datalab/data/icons/edit/annotations.svg +72 -0
  78. datalab/data/icons/edit/annotations_copy.svg +114 -0
  79. datalab/data/icons/edit/annotations_delete.svg +83 -0
  80. datalab/data/icons/edit/annotations_edit.svg +98 -0
  81. datalab/data/icons/edit/annotations_export.svg +85 -0
  82. datalab/data/icons/edit/annotations_import.svg +85 -0
  83. datalab/data/icons/edit/annotations_paste.svg +100 -0
  84. datalab/data/icons/edit/copy_titles.svg +109 -0
  85. datalab/data/icons/edit/delete.svg +84 -0
  86. datalab/data/icons/edit/delete_all.svg +214 -0
  87. datalab/data/icons/edit/duplicate.svg +64 -0
  88. datalab/data/icons/edit/goto_source.svg +60 -0
  89. datalab/data/icons/edit/metadata.svg +60 -0
  90. datalab/data/icons/edit/metadata_add.svg +80 -0
  91. datalab/data/icons/edit/metadata_copy.svg +96 -0
  92. datalab/data/icons/edit/metadata_delete.svg +62 -0
  93. datalab/data/icons/edit/metadata_export.svg +68 -0
  94. datalab/data/icons/edit/metadata_import.svg +68 -0
  95. datalab/data/icons/edit/metadata_paste.svg +79 -0
  96. datalab/data/icons/edit/move_down.svg +55 -0
  97. datalab/data/icons/edit/move_up.svg +54 -0
  98. datalab/data/icons/edit/new_group.svg +76 -0
  99. datalab/data/icons/edit/recompute.svg +60 -0
  100. datalab/data/icons/edit/rename.svg +49 -0
  101. datalab/data/icons/edit.svg +16 -0
  102. datalab/data/icons/expand.svg +44 -0
  103. datalab/data/icons/expand_selection.svg +63 -0
  104. datalab/data/icons/fit/cdf_fit.svg +56 -0
  105. datalab/data/icons/fit/exponential_fit.svg +55 -0
  106. datalab/data/icons/fit/gaussian_fit.svg +62 -0
  107. datalab/data/icons/fit/interactive_fit.svg +101 -0
  108. datalab/data/icons/fit/linear_fit.svg +57 -0
  109. datalab/data/icons/fit/lorentzian_fit.svg +209 -0
  110. datalab/data/icons/fit/multigaussian_fit.svg +85 -0
  111. datalab/data/icons/fit/multilorentzian_fit.svg +85 -0
  112. datalab/data/icons/fit/piecewiseexponential_fit.svg +209 -0
  113. datalab/data/icons/fit/planckian_fit.svg +62 -0
  114. datalab/data/icons/fit/polynomial_fit.svg +59 -0
  115. datalab/data/icons/fit/sigmoid_fit.svg +56 -0
  116. datalab/data/icons/fit/sinusoidal_fit.svg +72 -0
  117. datalab/data/icons/fit/twohalfgaussian_fit.svg +63 -0
  118. datalab/data/icons/fit/voigt_fit.svg +57 -0
  119. datalab/data/icons/group.svg +56 -0
  120. datalab/data/icons/h5/h5array.svg +59 -0
  121. datalab/data/icons/h5/h5attrs.svg +75 -0
  122. datalab/data/icons/h5/h5browser.svg +133 -0
  123. datalab/data/icons/h5/h5file.svg +69 -0
  124. datalab/data/icons/h5/h5group.svg +49 -0
  125. datalab/data/icons/h5/h5scalar.svg +1 -0
  126. datalab/data/icons/help_pdf.svg +46 -0
  127. datalab/data/icons/history.svg +7 -0
  128. datalab/data/icons/image.svg +135 -0
  129. datalab/data/icons/io/fileopen_directory.svg +60 -0
  130. datalab/data/icons/io/fileopen_h5.svg +84 -0
  131. datalab/data/icons/io/fileopen_ima.svg +187 -0
  132. datalab/data/icons/io/fileopen_py.svg +123 -0
  133. datalab/data/icons/io/fileopen_sig.svg +138 -0
  134. datalab/data/icons/io/filesave_h5.svg +97 -0
  135. datalab/data/icons/io/filesave_ima.svg +200 -0
  136. datalab/data/icons/io/filesave_py.svg +136 -0
  137. datalab/data/icons/io/filesave_sig.svg +151 -0
  138. datalab/data/icons/io/import_text.svg +144 -0
  139. datalab/data/icons/io/save_to_directory.svg +134 -0
  140. datalab/data/icons/io.svg +84 -0
  141. datalab/data/icons/libre-camera-flash-off.svg +1 -0
  142. datalab/data/icons/libre-camera-flash-on.svg +1 -0
  143. datalab/data/icons/libre-gui-about.svg +1 -0
  144. datalab/data/icons/libre-gui-action-delete.svg +1 -0
  145. datalab/data/icons/libre-gui-add.svg +1 -0
  146. datalab/data/icons/libre-gui-arrow-down.svg +1 -0
  147. datalab/data/icons/libre-gui-arrow-left.svg +1 -0
  148. datalab/data/icons/libre-gui-arrow-right.svg +1 -0
  149. datalab/data/icons/libre-gui-arrow-up.svg +1 -0
  150. datalab/data/icons/libre-gui-close.svg +40 -0
  151. datalab/data/icons/libre-gui-cogs.svg +1 -0
  152. datalab/data/icons/libre-gui-globe.svg +1 -0
  153. datalab/data/icons/libre-gui-help.svg +1 -0
  154. datalab/data/icons/libre-gui-link.svg +1 -0
  155. datalab/data/icons/libre-gui-menu.svg +1 -0
  156. datalab/data/icons/libre-gui-pencil.svg +1 -0
  157. datalab/data/icons/libre-gui-plugin.svg +1 -0
  158. datalab/data/icons/libre-gui-questions.svg +1 -0
  159. datalab/data/icons/libre-gui-settings.svg +1 -0
  160. datalab/data/icons/libre-gui-unlink.svg +1 -0
  161. datalab/data/icons/libre-tech-ram.svg +1 -0
  162. datalab/data/icons/libre-toolbox.svg +1 -0
  163. datalab/data/icons/logs.svg +1 -0
  164. datalab/data/icons/markers.svg +74 -0
  165. datalab/data/icons/menu.svg +13 -0
  166. datalab/data/icons/new_ima.svg +148 -0
  167. datalab/data/icons/new_sig.svg +123 -0
  168. datalab/data/icons/operations/abs.svg +116 -0
  169. datalab/data/icons/operations/arithmetic.svg +123 -0
  170. datalab/data/icons/operations/average.svg +124 -0
  171. datalab/data/icons/operations/complex_from_magnitude_phase.svg +116 -0
  172. datalab/data/icons/operations/complex_from_real_imag.svg +124 -0
  173. datalab/data/icons/operations/constant.svg +116 -0
  174. datalab/data/icons/operations/constant_add.svg +109 -0
  175. datalab/data/icons/operations/constant_divide.svg +109 -0
  176. datalab/data/icons/operations/constant_multiply.svg +109 -0
  177. datalab/data/icons/operations/constant_subtract.svg +109 -0
  178. datalab/data/icons/operations/convert_dtype.svg +117 -0
  179. datalab/data/icons/operations/convolution.svg +46 -0
  180. datalab/data/icons/operations/deconvolution.svg +57 -0
  181. datalab/data/icons/operations/derivative.svg +127 -0
  182. datalab/data/icons/operations/difference.svg +52 -0
  183. datalab/data/icons/operations/division.svg +139 -0
  184. datalab/data/icons/operations/exp.svg +116 -0
  185. datalab/data/icons/operations/flip_horizontally.svg +69 -0
  186. datalab/data/icons/operations/flip_vertically.svg +74 -0
  187. datalab/data/icons/operations/im.svg +124 -0
  188. datalab/data/icons/operations/integral.svg +50 -0
  189. datalab/data/icons/operations/inverse.svg +143 -0
  190. datalab/data/icons/operations/log10.svg +109 -0
  191. datalab/data/icons/operations/phase.svg +116 -0
  192. datalab/data/icons/operations/power.svg +118 -0
  193. datalab/data/icons/operations/product.svg +124 -0
  194. datalab/data/icons/operations/profile.svg +379 -0
  195. datalab/data/icons/operations/profile_average.svg +399 -0
  196. datalab/data/icons/operations/profile_radial.svg +261 -0
  197. datalab/data/icons/operations/profile_segment.svg +262 -0
  198. datalab/data/icons/operations/quadratic_difference.svg +84 -0
  199. datalab/data/icons/operations/re.svg +124 -0
  200. datalab/data/icons/operations/rotate_left.svg +72 -0
  201. datalab/data/icons/operations/rotate_right.svg +72 -0
  202. datalab/data/icons/operations/signals_to_image.svg +314 -0
  203. datalab/data/icons/operations/sqrt.svg +110 -0
  204. datalab/data/icons/operations/std.svg +124 -0
  205. datalab/data/icons/operations/sum.svg +102 -0
  206. datalab/data/icons/play_demo.svg +9 -0
  207. datalab/data/icons/processing/axis_transform.svg +62 -0
  208. datalab/data/icons/processing/bandpass.svg +79 -0
  209. datalab/data/icons/processing/bandstop.svg +71 -0
  210. datalab/data/icons/processing/binning.svg +126 -0
  211. datalab/data/icons/processing/clip.svg +119 -0
  212. datalab/data/icons/processing/detrending.svg +173 -0
  213. datalab/data/icons/processing/distribute_on_grid.svg +769 -0
  214. datalab/data/icons/processing/edge_detection.svg +46 -0
  215. datalab/data/icons/processing/erase.svg +1 -0
  216. datalab/data/icons/processing/exposure.svg +143 -0
  217. datalab/data/icons/processing/fourier.svg +104 -0
  218. datalab/data/icons/processing/highpass.svg +59 -0
  219. datalab/data/icons/processing/interpolation.svg +71 -0
  220. datalab/data/icons/processing/level_adjustment.svg +70 -0
  221. datalab/data/icons/processing/lowpass.svg +60 -0
  222. datalab/data/icons/processing/morphology.svg +49 -0
  223. datalab/data/icons/processing/noise_addition.svg +114 -0
  224. datalab/data/icons/processing/noise_reduction.svg +38 -0
  225. datalab/data/icons/processing/normalize.svg +84 -0
  226. datalab/data/icons/processing/offset_correction.svg +131 -0
  227. datalab/data/icons/processing/resampling1d.svg +101 -0
  228. datalab/data/icons/processing/resampling2d.svg +240 -0
  229. datalab/data/icons/processing/reset_positions.svg +185 -0
  230. datalab/data/icons/processing/resize.svg +9 -0
  231. datalab/data/icons/processing/reverse_signal_x.svg +171 -0
  232. datalab/data/icons/processing/stability.svg +11 -0
  233. datalab/data/icons/processing/swap_x_y.svg +65 -0
  234. datalab/data/icons/processing/thresholding.svg +63 -0
  235. datalab/data/icons/processing/windowing.svg +45 -0
  236. datalab/data/icons/properties.svg +26 -0
  237. datalab/data/icons/reset.svg +9 -0
  238. datalab/data/icons/restore.svg +40 -0
  239. datalab/data/icons/roi/roi.svg +76 -0
  240. datalab/data/icons/roi/roi_coordinate.svg +78 -0
  241. datalab/data/icons/roi/roi_copy.svg +112 -0
  242. datalab/data/icons/roi/roi_delete.svg +81 -0
  243. datalab/data/icons/roi/roi_export.svg +87 -0
  244. datalab/data/icons/roi/roi_graphical.svg +78 -0
  245. datalab/data/icons/roi/roi_grid.svg +67 -0
  246. datalab/data/icons/roi/roi_ima.svg +188 -0
  247. datalab/data/icons/roi/roi_import.svg +87 -0
  248. datalab/data/icons/roi/roi_new.svg +81 -0
  249. datalab/data/icons/roi/roi_new_circle.svg +95 -0
  250. datalab/data/icons/roi/roi_new_polygon.svg +110 -0
  251. datalab/data/icons/roi/roi_new_rectangle.svg +70 -0
  252. datalab/data/icons/roi/roi_paste.svg +98 -0
  253. datalab/data/icons/roi/roi_sig.svg +124 -0
  254. datalab/data/icons/shapes.svg +134 -0
  255. datalab/data/icons/signal.svg +103 -0
  256. datalab/data/icons/table.svg +85 -0
  257. datalab/data/icons/table_unavailable.svg +102 -0
  258. datalab/data/icons/to_signal.svg +124 -0
  259. datalab/data/icons/tour/next.svg +44 -0
  260. datalab/data/icons/tour/previous.svg +44 -0
  261. datalab/data/icons/tour/rewind.svg +51 -0
  262. datalab/data/icons/tour/stop.svg +47 -0
  263. datalab/data/icons/tour/tour.svg +16 -0
  264. datalab/data/icons/uncheck_all.svg +78 -0
  265. datalab/data/icons/view/curve_antialiasing.svg +50 -0
  266. datalab/data/icons/view/new_window.svg +98 -0
  267. datalab/data/icons/view/refresh-auto.svg +57 -0
  268. datalab/data/icons/view/refresh-manual.svg +51 -0
  269. datalab/data/icons/view/reset_curve_styles.svg +96 -0
  270. datalab/data/icons/view/show_first.svg +55 -0
  271. datalab/data/icons/view/show_titles.svg +46 -0
  272. datalab/data/icons/visualization.svg +51 -0
  273. datalab/data/logo/DataLab-Banner-150.png +0 -0
  274. datalab/data/logo/DataLab-Banner-200.png +0 -0
  275. datalab/data/logo/DataLab-Banner2-100.png +0 -0
  276. datalab/data/logo/DataLab-Splash.png +0 -0
  277. datalab/data/logo/DataLab-watermark.png +0 -0
  278. datalab/data/logo/DataLab.svg +83 -0
  279. datalab/data/tests/reordering_test.h5 +0 -0
  280. datalab/data/tutorials/fabry_perot/fabry-perot1.jpg +0 -0
  281. datalab/data/tutorials/fabry_perot/fabry-perot2.jpg +0 -0
  282. datalab/data/tutorials/laser_beam/TEM00_z_13.jpg +0 -0
  283. datalab/data/tutorials/laser_beam/TEM00_z_18.jpg +0 -0
  284. datalab/data/tutorials/laser_beam/TEM00_z_23.jpg +0 -0
  285. datalab/data/tutorials/laser_beam/TEM00_z_30.jpg +0 -0
  286. datalab/data/tutorials/laser_beam/TEM00_z_35.jpg +0 -0
  287. datalab/data/tutorials/laser_beam/TEM00_z_40.jpg +0 -0
  288. datalab/data/tutorials/laser_beam/TEM00_z_45.jpg +0 -0
  289. datalab/data/tutorials/laser_beam/TEM00_z_50.jpg +0 -0
  290. datalab/data/tutorials/laser_beam/TEM00_z_55.jpg +0 -0
  291. datalab/data/tutorials/laser_beam/TEM00_z_60.jpg +0 -0
  292. datalab/data/tutorials/laser_beam/TEM00_z_65.jpg +0 -0
  293. datalab/data/tutorials/laser_beam/TEM00_z_70.jpg +0 -0
  294. datalab/data/tutorials/laser_beam/TEM00_z_75.jpg +0 -0
  295. datalab/data/tutorials/laser_beam/TEM00_z_80.jpg +0 -0
  296. datalab/env.py +542 -0
  297. datalab/gui/__init__.py +89 -0
  298. datalab/gui/actionhandler.py +1701 -0
  299. datalab/gui/docks.py +473 -0
  300. datalab/gui/h5io.py +150 -0
  301. datalab/gui/macroeditor.py +310 -0
  302. datalab/gui/main.py +2081 -0
  303. datalab/gui/newobject.py +217 -0
  304. datalab/gui/objectview.py +766 -0
  305. datalab/gui/panel/__init__.py +48 -0
  306. datalab/gui/panel/base.py +3254 -0
  307. datalab/gui/panel/image.py +157 -0
  308. datalab/gui/panel/macro.py +607 -0
  309. datalab/gui/panel/signal.py +164 -0
  310. datalab/gui/plothandler.py +800 -0
  311. datalab/gui/processor/__init__.py +84 -0
  312. datalab/gui/processor/base.py +2456 -0
  313. datalab/gui/processor/catcher.py +75 -0
  314. datalab/gui/processor/image.py +1214 -0
  315. datalab/gui/processor/signal.py +755 -0
  316. datalab/gui/profiledialog.py +333 -0
  317. datalab/gui/roieditor.py +633 -0
  318. datalab/gui/roigrideditor.py +208 -0
  319. datalab/gui/settings.py +612 -0
  320. datalab/gui/tour.py +908 -0
  321. datalab/h5/__init__.py +12 -0
  322. datalab/h5/common.py +314 -0
  323. datalab/h5/generic.py +580 -0
  324. datalab/h5/native.py +39 -0
  325. datalab/h5/utils.py +95 -0
  326. datalab/objectmodel.py +640 -0
  327. datalab/plugins/_readme_.txt +9 -0
  328. datalab/plugins/datalab_imageformats.py +175 -0
  329. datalab/plugins/datalab_testdata.py +190 -0
  330. datalab/plugins.py +355 -0
  331. datalab/tests/__init__.py +199 -0
  332. datalab/tests/backbone/__init__.py +1 -0
  333. datalab/tests/backbone/config_unit_test.py +170 -0
  334. datalab/tests/backbone/config_versioning_unit_test.py +34 -0
  335. datalab/tests/backbone/dictlistserial_app_test.py +38 -0
  336. datalab/tests/backbone/errorcatcher_unit_test.py +69 -0
  337. datalab/tests/backbone/errormsgbox_unit_test.py +50 -0
  338. datalab/tests/backbone/execenv_unit.py +262 -0
  339. datalab/tests/backbone/loadtest_gdi.py +147 -0
  340. datalab/tests/backbone/long_callback.py +96 -0
  341. datalab/tests/backbone/main_app_test.py +137 -0
  342. datalab/tests/backbone/memory_leak.py +43 -0
  343. datalab/tests/backbone/procisolation1_unit.py +128 -0
  344. datalab/tests/backbone/procisolation2_unit.py +171 -0
  345. datalab/tests/backbone/procisolation_unit_test.py +22 -0
  346. datalab/tests/backbone/profiling_app.py +27 -0
  347. datalab/tests/backbone/strings_unit_test.py +65 -0
  348. datalab/tests/backbone/title_formatting_unit_test.py +82 -0
  349. datalab/tests/conftest.py +131 -0
  350. datalab/tests/features/__init__.py +1 -0
  351. datalab/tests/features/applauncher/__init__.py +1 -0
  352. datalab/tests/features/applauncher/launcher1_app_test.py +28 -0
  353. datalab/tests/features/applauncher/launcher2_app_test.py +30 -0
  354. datalab/tests/features/common/__init__.py +1 -0
  355. datalab/tests/features/common/add_metadata_app_test.py +134 -0
  356. datalab/tests/features/common/add_metadata_unit_test.py +267 -0
  357. datalab/tests/features/common/annotations_management_unit_test.py +152 -0
  358. datalab/tests/features/common/auto_analysis_recompute_unit_test.py +240 -0
  359. datalab/tests/features/common/createobject_unit_test.py +50 -0
  360. datalab/tests/features/common/geometry_results_app_test.py +135 -0
  361. datalab/tests/features/common/interactive_processing_test.py +1109 -0
  362. datalab/tests/features/common/io_app_test.py +75 -0
  363. datalab/tests/features/common/large_results_app_test.py +187 -0
  364. datalab/tests/features/common/metadata_all_patterns_test.py +103 -0
  365. datalab/tests/features/common/metadata_app_test.py +139 -0
  366. datalab/tests/features/common/metadata_io_unit_test.py +60 -0
  367. datalab/tests/features/common/misc_app_test.py +236 -0
  368. datalab/tests/features/common/multiple_geometry_results_unit_test.py +122 -0
  369. datalab/tests/features/common/multiple_table_results_unit_test.py +64 -0
  370. datalab/tests/features/common/operation_modes_app_test.py +392 -0
  371. datalab/tests/features/common/plot_results_app_test.py +278 -0
  372. datalab/tests/features/common/reorder_app_test.py +75 -0
  373. datalab/tests/features/common/result_deletion_unit_test.py +96 -0
  374. datalab/tests/features/common/result_merged_label_unit_test.py +154 -0
  375. datalab/tests/features/common/result_shape_settings_unit_test.py +223 -0
  376. datalab/tests/features/common/roi_plotitem_unit_test.py +64 -0
  377. datalab/tests/features/common/roieditor_unit_test.py +102 -0
  378. datalab/tests/features/common/save_to_dir_app_test.py +163 -0
  379. datalab/tests/features/common/save_to_dir_unit_test.py +474 -0
  380. datalab/tests/features/common/stat_app_test.py +40 -0
  381. datalab/tests/features/common/stats_tools_unit_test.py +77 -0
  382. datalab/tests/features/common/table_results_app_test.py +52 -0
  383. datalab/tests/features/common/textimport_unit_test.py +131 -0
  384. datalab/tests/features/common/uuid_preservation_test.py +281 -0
  385. datalab/tests/features/common/worker_unit_test.py +402 -0
  386. datalab/tests/features/control/__init__.py +1 -0
  387. datalab/tests/features/control/connect_dialog.py +28 -0
  388. datalab/tests/features/control/embedded1_unit_test.py +304 -0
  389. datalab/tests/features/control/embedded2_unit_test.py +52 -0
  390. datalab/tests/features/control/remoteclient_app_test.py +219 -0
  391. datalab/tests/features/control/remoteclient_unit.py +75 -0
  392. datalab/tests/features/control/simpleclient_unit_test.py +321 -0
  393. datalab/tests/features/hdf5/__init__.py +1 -0
  394. datalab/tests/features/hdf5/h5browser1_unit_test.py +31 -0
  395. datalab/tests/features/hdf5/h5browser2_unit.py +55 -0
  396. datalab/tests/features/hdf5/h5browser_app_test.py +77 -0
  397. datalab/tests/features/hdf5/h5import_app_test.py +25 -0
  398. datalab/tests/features/hdf5/h5importer_app_test.py +34 -0
  399. datalab/tests/features/image/__init__.py +1 -0
  400. datalab/tests/features/image/annotations_app_test.py +28 -0
  401. datalab/tests/features/image/annotations_unit_test.py +80 -0
  402. datalab/tests/features/image/average_app_test.py +46 -0
  403. datalab/tests/features/image/background_dialog_test.py +70 -0
  404. datalab/tests/features/image/blobs_app_test.py +50 -0
  405. datalab/tests/features/image/contour_app_test.py +42 -0
  406. datalab/tests/features/image/contour_fabryperot_app_test.py +51 -0
  407. datalab/tests/features/image/denoise_app_test.py +31 -0
  408. datalab/tests/features/image/distribute_on_grid_app_test.py +95 -0
  409. datalab/tests/features/image/edges_app_test.py +31 -0
  410. datalab/tests/features/image/erase_app_test.py +21 -0
  411. datalab/tests/features/image/fft2d_app_test.py +27 -0
  412. datalab/tests/features/image/flatfield_app_test.py +40 -0
  413. datalab/tests/features/image/geometry_transform_unit_test.py +396 -0
  414. datalab/tests/features/image/imagetools_app_test.py +51 -0
  415. datalab/tests/features/image/imagetools_unit_test.py +27 -0
  416. datalab/tests/features/image/load_app_test.py +73 -0
  417. datalab/tests/features/image/morph_app_test.py +32 -0
  418. datalab/tests/features/image/offsetcorrection_app_test.py +30 -0
  419. datalab/tests/features/image/peak2d_app_test.py +53 -0
  420. datalab/tests/features/image/profile_app_test.py +73 -0
  421. datalab/tests/features/image/profile_dialog_test.py +56 -0
  422. datalab/tests/features/image/roi_app_test.py +98 -0
  423. datalab/tests/features/image/roi_circ_app_test.py +62 -0
  424. datalab/tests/features/image/roi_manipulation_app_test.py +268 -0
  425. datalab/tests/features/image/roigrid_unit_test.py +60 -0
  426. datalab/tests/features/image/side_by_side_app_test.py +52 -0
  427. datalab/tests/features/macro/__init__.py +1 -0
  428. datalab/tests/features/macro/macro_app_test.py +28 -0
  429. datalab/tests/features/macro/macroeditor_unit_test.py +102 -0
  430. datalab/tests/features/signal/__init__.py +1 -0
  431. datalab/tests/features/signal/baseline_dialog_test.py +53 -0
  432. datalab/tests/features/signal/deltax_dialog_unit_test.py +34 -0
  433. datalab/tests/features/signal/fft1d_app_test.py +26 -0
  434. datalab/tests/features/signal/filter_app_test.py +44 -0
  435. datalab/tests/features/signal/fitdialog_unit_test.py +50 -0
  436. datalab/tests/features/signal/interpolation_app_test.py +110 -0
  437. datalab/tests/features/signal/loadbigsignal_app_test.py +80 -0
  438. datalab/tests/features/signal/multiple_rois_unit_test.py +132 -0
  439. datalab/tests/features/signal/pulse_features_app_test.py +118 -0
  440. datalab/tests/features/signal/pulse_features_roi_app_test.py +55 -0
  441. datalab/tests/features/signal/roi_app_test.py +78 -0
  442. datalab/tests/features/signal/roi_manipulation_app_test.py +261 -0
  443. datalab/tests/features/signal/select_xy_cursor_unit_test.py +46 -0
  444. datalab/tests/features/signal/signalpeakdetection_dialog_test.py +33 -0
  445. datalab/tests/features/signal/signals_to_image_app_test.py +98 -0
  446. datalab/tests/features/signal/xarray_compat_app_test.py +128 -0
  447. datalab/tests/features/tour_unit_test.py +22 -0
  448. datalab/tests/features/utilities/__init__.py +1 -0
  449. datalab/tests/features/utilities/installconf_unit_test.py +21 -0
  450. datalab/tests/features/utilities/logview_app_test.py +21 -0
  451. datalab/tests/features/utilities/logview_error.py +24 -0
  452. datalab/tests/features/utilities/logview_unit_test.py +21 -0
  453. datalab/tests/features/utilities/memstatus_app_test.py +42 -0
  454. datalab/tests/features/utilities/settings_unit_test.py +88 -0
  455. datalab/tests/scenarios/__init__.py +1 -0
  456. datalab/tests/scenarios/beautiful_app.py +121 -0
  457. datalab/tests/scenarios/common.py +463 -0
  458. datalab/tests/scenarios/demo.py +212 -0
  459. datalab/tests/scenarios/example_app_test.py +47 -0
  460. datalab/tests/scenarios/scenario_h5_app_test.py +75 -0
  461. datalab/tests/scenarios/scenario_ima1_app_test.py +34 -0
  462. datalab/tests/scenarios/scenario_ima2_app_test.py +34 -0
  463. datalab/tests/scenarios/scenario_mac_app_test.py +58 -0
  464. datalab/tests/scenarios/scenario_sig1_app_test.py +36 -0
  465. datalab/tests/scenarios/scenario_sig2_app_test.py +35 -0
  466. datalab/utils/__init__.py +1 -0
  467. datalab/utils/conf.py +304 -0
  468. datalab/utils/dephash.py +105 -0
  469. datalab/utils/qthelpers.py +633 -0
  470. datalab/utils/strings.py +34 -0
  471. datalab/utils/tests.py +0 -0
  472. datalab/widgets/__init__.py +1 -0
  473. datalab/widgets/connection.py +138 -0
  474. datalab/widgets/filedialog.py +91 -0
  475. datalab/widgets/fileviewer.py +84 -0
  476. datalab/widgets/fitdialog.py +788 -0
  477. datalab/widgets/h5browser.py +1048 -0
  478. datalab/widgets/imagebackground.py +111 -0
  479. datalab/widgets/instconfviewer.py +175 -0
  480. datalab/widgets/logviewer.py +80 -0
  481. datalab/widgets/signalbaseline.py +90 -0
  482. datalab/widgets/signalcursor.py +208 -0
  483. datalab/widgets/signaldeltax.py +151 -0
  484. datalab/widgets/signalpeak.py +199 -0
  485. datalab/widgets/status.py +249 -0
  486. datalab/widgets/textimport.py +786 -0
  487. datalab/widgets/warningerror.py +223 -0
  488. datalab/widgets/wizard.py +286 -0
  489. datalab_platform-1.0.1.dist-info/METADATA +121 -0
  490. datalab_platform-1.0.1.dist-info/RECORD +494 -0
  491. datalab_platform-0.0.1.dev0.dist-info/METADATA +0 -67
  492. datalab_platform-0.0.1.dev0.dist-info/RECORD +0 -7
  493. {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.1.dist-info}/WHEEL +0 -0
  494. {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.1.dist-info}/entry_points.txt +0 -0
  495. {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.1.dist-info}/licenses/LICENSE +0 -0
  496. {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,65 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ role="img"
4
+ focusable="false"
5
+ aria-hidden="true"
6
+ viewBox="0 0 14 14"
7
+ version="1.1"
8
+ id="svg12"
9
+ sodipodi:docname="swap_x_y.svg"
10
+ inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
13
+ xmlns="http://www.w3.org/2000/svg"
14
+ xmlns:svg="http://www.w3.org/2000/svg">
15
+ <defs
16
+ id="defs16" />
17
+ <sodipodi:namedview
18
+ id="namedview14"
19
+ pagecolor="#ffffff"
20
+ bordercolor="#000000"
21
+ borderopacity="0.25"
22
+ inkscape:showpageshadow="2"
23
+ inkscape:pageopacity="0.0"
24
+ inkscape:pagecheckerboard="0"
25
+ inkscape:deskcolor="#d1d1d1"
26
+ showgrid="false"
27
+ inkscape:zoom="42.274884"
28
+ inkscape:cx="3.8911993"
29
+ inkscape:cy="7.2501677"
30
+ inkscape:window-width="1920"
31
+ inkscape:window-height="1009"
32
+ inkscape:window-x="-8"
33
+ inkscape:window-y="-8"
34
+ inkscape:window-maximized="1"
35
+ inkscape:current-layer="svg12" />
36
+ <rect
37
+ style="fill:#696969;fill-opacity:0.817241;stroke-width:0.547874"
38
+ id="rect28089"
39
+ width="0.53186357"
40
+ height="12.584304"
41
+ x="2.8532717"
42
+ y="0.6150223" />
43
+ <rect
44
+ style="fill:#696969;fill-opacity:0.817241;stroke-width:0.54642"
45
+ id="rect28089-7"
46
+ width="0.53186357"
47
+ height="12.5176"
48
+ x="10.103792"
49
+ y="-13.022007"
50
+ transform="rotate(90)" />
51
+ <g
52
+ fill="#008000"
53
+ id="g3"
54
+ transform="matrix(-0.13200698,0.54633234,-0.54633234,-0.13200698,11.967788,3.1247236)">
55
+ <path
56
+ d="M 11.642105,3.2105264 10.663158,4 c 0.694737,0.8526316 1.073684,1.9263158 1.073684,3 0,2.6210526 -2.1157894,4.736842 -4.736842,4.736842 -0.2842105,0 -0.6,-0.03158 -0.8842105,-0.09474 l -0.2210526,1.231579 c 0.3789473,0.06316 0.7578947,0.09474 1.1052631,0.09474 3.315789,0 6,-2.684211 6,-5.9999999 0,-1.3263158 -0.473684,-2.6842105 -1.357895,-3.7578947 z"
57
+ id="path1" />
58
+ <path
59
+ d="M 9.2105263,1.9789474 12.968421,2.4842106 9.8736842,5.5789474 Z M 7,1.031579 c -3.3157894,0 -5.9999999,2.6842105 -5.9999999,5.9999999 0,1.4526316 0.5052631,2.8421053 1.4526315,3.9157891 L 3.4,10.126316 C 2.6736843,9.2736842 2.2631579,8.168421 2.2631579,7.0315789 2.263158,4.4105263 4.3789474,2.2947369 7,2.2947369 c 0.2842105,0 0.6,0.031579 0.8842105,0.094737 L 8.1052631,1.1578948 C 7.7578947,1.063158 7.3789474,1.031579 7,1.031579 Z"
60
+ id="path2" />
61
+ <path
62
+ d="M 4.7894737,12.08421 1.031579,11.578947 4.1263158,8.4842105 Z"
63
+ id="path3" />
64
+ </g>
65
+ </svg>
@@ -0,0 +1,63 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ role="img"
4
+ focusable="false"
5
+ aria-hidden="true"
6
+ viewBox="0 0 14 14"
7
+ version="1.1"
8
+ id="svg12"
9
+ sodipodi:docname="thresholding.svg"
10
+ inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
13
+ xmlns="http://www.w3.org/2000/svg"
14
+ xmlns:svg="http://www.w3.org/2000/svg">
15
+ <defs
16
+ id="defs16" />
17
+ <sodipodi:namedview
18
+ id="namedview14"
19
+ pagecolor="#ffffff"
20
+ bordercolor="#000000"
21
+ borderopacity="0.25"
22
+ inkscape:showpageshadow="2"
23
+ inkscape:pageopacity="0.0"
24
+ inkscape:pagecheckerboard="0"
25
+ inkscape:deskcolor="#d1d1d1"
26
+ showgrid="false"
27
+ inkscape:zoom="21.137442"
28
+ inkscape:cx="5.9373315"
29
+ inkscape:cy="8.160874"
30
+ inkscape:window-width="1920"
31
+ inkscape:window-height="1009"
32
+ inkscape:window-x="-8"
33
+ inkscape:window-y="-8"
34
+ inkscape:window-maximized="1"
35
+ inkscape:current-layer="svg12" />
36
+ <path
37
+ id="path1"
38
+ style="opacity:1;fill:#c2bc00;fill-opacity:1;stroke-width:0.835741;stroke-miterlimit:10"
39
+ d="M 6.4127936,1.2806989 C 6.0398259,1.2884945 5.6883208,1.5481735 5.5692067,1.9014251 5.0385841,2.6588911 4.1592681,2.5162595 3.2894697,2.016167 2.91556,1.8437844 2.4573736,1.8691214 2.106574,2.0857049 1.7812513,2.2810069 1.5511918,2.628628 1.5058528,3.006191 1.45034,3.4250748 1.6172792,3.8690228 1.9449414,4.1383259 2.629017,5.88293 1.6726219,6.2123493 1.2455365,7.2579807 1.1560305,7.5429583 1.2133555,7.8692359 1.3976658,8.1048164 1.5980007,8.3686492 2.308401,8.1857734 3.1818841,8.6379303 4.0553671,9.0900846 4.1299655,9.7608386 4.1299655,9.7608386 4.323573,10.136664 4.7132243,10.406993 5.1361396,10.442917 5.5575503,10.484787 5.9957153,10.301148 6.2547672,9.9647116 6.6399108,9.0144416 6.8536454,8.7555243 7.7797159,8.7845453 8.0518427,8.8904646 8.3738307,8.8564556 8.6157356,8.6921053 8.8685124,8.526364 9.0355944,8.234265 9.0389904,7.9307323 9.0463904,7.6124606 8.8796134,7.2950995 8.6082616,7.1267699 8.3681887,6.7789785 8.8512054,6.2565509 9.5309784,5.8429186 9.8399154,5.5689731 10.004867,5.1383601 9.9453804,4.7282827 9.8907604,4.3099914 9.6157944,3.9251091 9.2312284,3.7482131 c 0,0 -1.2361266,-0.3174174 -1.6198476,-0.7669209 C 7.2276606,2.5317938 7.2241013,1.2558414 6.4127934,1.2806989 Z"
40
+ sodipodi:nodetypes="sccccccczcccccccccczss" />
41
+ <text
42
+ xml:space="preserve"
43
+ style="font-weight:bold;font-size:6.20299px;line-height:1.05;font-family:Arial;-inkscape-font-specification:'Arial Bold';letter-spacing:0px;fill:#008000;stroke:#362fff;stroke-width:0.865318;stroke-linecap:square"
44
+ x="3.5284584"
45
+ y="7.8634105"
46
+ id="text1"><tspan
47
+ sodipodi:role="line"
48
+ id="tspan1"
49
+ x="3.5284584"
50
+ y="7.8634105"
51
+ style="font-size:6.20299px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.865318">1</tspan></text>
52
+ <text
53
+ xml:space="preserve"
54
+ style="font-weight:bold;font-size:6.20299px;line-height:1.05;font-family:Arial;-inkscape-font-specification:'Arial Bold';letter-spacing:0px;fill:#c2bc00;fill-opacity:1;stroke:#362fff;stroke-width:0.865318;stroke-linecap:square"
55
+ x="9.3526554"
56
+ y="13.168679"
57
+ id="text1-4"><tspan
58
+ sodipodi:role="line"
59
+ id="tspan1-0"
60
+ x="9.3526554"
61
+ y="13.168679"
62
+ style="font-size:6.20299px;fill:#c2bc00;fill-opacity:1;stroke:none;stroke-width:0.865318">0</tspan></text>
63
+ </svg>
@@ -0,0 +1,45 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ role="img"
4
+ focusable="false"
5
+ aria-hidden="true"
6
+ viewBox="0 0 14 14"
7
+ version="1.1"
8
+ id="svg12"
9
+ sodipodi:docname="windowing.svg"
10
+ inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
11
+ xml:space="preserve"
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"><defs
16
+ id="defs16" /><sodipodi:namedview
17
+ id="namedview14"
18
+ pagecolor="#ffffff"
19
+ bordercolor="#000000"
20
+ borderopacity="0.25"
21
+ inkscape:showpageshadow="2"
22
+ inkscape:pageopacity="0.0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#d1d1d1"
25
+ showgrid="false"
26
+ inkscape:zoom="32"
27
+ inkscape:cx="8.421875"
28
+ inkscape:cy="8.046875"
29
+ inkscape:window-width="1920"
30
+ inkscape:window-height="1009"
31
+ inkscape:window-x="-8"
32
+ inkscape:window-y="-8"
33
+ inkscape:window-maximized="1"
34
+ inkscape:current-layer="svg12" /><g
35
+ id="g198"
36
+ transform="matrix(1.0675544,0,0,1.0675544,-0.47288119,-11.002131)"><path
37
+ style="fill:#ff2a2a;stroke-width:0.792323"
38
+ d="m 1.4158248,16.490928 -0.3374775,0.0306 -0.039332,-0.209667 -0.039332,-0.209669 0.03868,-0.06257 0.03868,-0.06258 H 1.3264995 1.575955 l 0.3021977,-0.150601 0.3021975,-0.150591 0.4880374,-0.514634 0.4880373,-0.514636 0.7272136,-1.014667 0.727213,-1.01467 0.4031777,-0.489205 0.4031765,-0.489205 0.3976153,-0.298709 0.3976175,-0.29871 0.2872121,-0.09606 0.287214,-0.09606 0.3603951,0.02893 0.3603989,0.02893 0.307281,0.155712 0.3072821,0.155711 0.419577,0.395761 0.419579,0.395761 0.568649,0.764005 0.5686493,0.764003 0.46477,0.646464 0.464772,0.646464 0.442431,0.443576 0.442431,0.443577 0.268326,0.129426 0.268325,0.129426 h 0.275293 0.275293 v 0.272626 0.272625 l -0.34459,-0.03125 -0.344589,-0.03125 -0.257797,-0.115037 -0.257798,-0.115037 -0.306785,-0.243861 -0.306786,-0.243863 -0.369063,-0.432852 -0.369064,-0.432852 -0.7933893,-1.105086 -0.793389,-1.105087 -0.450423,-0.477544 -0.450421,-0.477546 -0.307308,-0.167256 -0.307305,-0.167258 -0.301997,-0.0043 -0.301995,-0.0043 -0.254364,0.132581 -0.2543622,0.132581 -0.2258666,0.181512 -0.2258667,0.181511 -0.3764487,0.447834 -0.3764467,0.447834 -0.7359749,1.028467 -0.7359747,1.028464 -0.333592,0.373297 L 2.88513,15.695352 2.6182201,15.926361 2.3513112,16.15737 2.0523123,16.308885 1.7533133,16.4604 Z"
39
+ id="path198" /><path
40
+ style="fill:#008000;stroke-width:0.792327"
41
+ d="m 1.4158236,17.234997 -0.3374776,-0.0306 -0.039331,0.209668 -0.039331,0.209669 0.038681,0.06258 0.038681,0.06258 h 0.2494541 0.2494556 l 0.3021976,0.150592 0.3021976,0.150591 0.4880374,0.514634 0.4880373,0.514635 0.7272136,1.014668 0.7272129,1.014669 0.4031776,0.489206 0.403176,0.489204 0.3976161,0.298709 0.3976167,0.29871 0.2872125,0.09606 0.287213,0.09606 0.360397,-0.02893 0.360398,-0.02893 0.307281,-0.155712 0.307282,-0.155712 0.419577,-0.39576 0.419578,-0.395761 0.56865,-0.764004 0.568649,-0.764004 0.46477,-0.646465 0.464771,-0.646463 0.442431,-0.443576 0.442432,-0.443577 0.268325,-0.129426 0.268326,-0.129426 h 0.275292 0.275293 V 17.47626 17.203635 l -0.34459,0.03125 -0.344588,0.03125 -0.257798,0.115037 -0.257797,0.115037 -0.306786,0.243862 -0.306785,0.243861 -0.369064,0.432853 -0.369063,0.432852 -0.793389,1.105087 -0.793388,1.105085 -0.450424,0.477545 -0.450422,0.477546 -0.307307,0.167256 -0.307306,0.167258 -0.301996,0.0043 -0.301995,0.0043 L 6.483254,22.225463 6.2288921,22.092882 6.003025,21.911369 5.7771585,21.729859 5.4007098,21.282025 5.0242631,20.834192 4.2882881,19.805725 3.5523136,18.77726 3.2187216,18.403963 2.8851306,18.030604 2.6182204,17.799595 2.3513114,17.568586 2.0523126,17.417072 1.7533136,17.265557 Z"
42
+ id="path198-9" /><path
43
+ style="fill:#0000ff;stroke-width:0.723787"
44
+ d="M 6.4166767,22.412814 6.3130247,22.437644 6.210906,22.415774 6.108787,22.393904 6.024288,22.230504 5.939789,22.0671 5.883717,21.815095 5.827645,21.563092 5.737548,20.868243 5.647452,20.173394 5.4156731,17.741423 5.1838942,15.309452 l -0.08742,-0.694848 -0.087421,-0.694849 -0.03823,-0.173712 -0.03823,-0.173713 -0.04672,0.215011 -0.04672,0.215011 -0.2648118,1.811632 -0.2648257,1.811631 -0.108372,0.497688 -0.108372,0.497688 -0.086546,0.207133 -0.086546,0.207133 -0.1519686,0.09957 -0.1519685,0.09957 L 3.4732213,19.169466 3.3307,19.104528 3.2140809,18.915159 3.0974618,18.72579 2.8022078,17.799325 2.5069539,16.87286 2.3966466,16.65572 2.2863394,16.43858 h -0.062357 -0.062357 l -0.4016636,0.387773 -0.4016636,0.387774 -0.1791498,-0.17915 -0.1791498,-0.17915 0.4178529,-0.396812 0.4178528,-0.396812 0.1756559,-0.07543 0.1756559,-0.07543 0.1593752,0.035 0.1593752,0.035 0.1165453,0.127281 0.1165453,0.12728 0.116094,0.231616 0.1160941,0.231617 0.2737904,0.868561 0.2737905,0.86856 0.04268,0.04676 0.04268,0.04676 0.1245306,-0.596847 0.1245307,-0.596848 0.2311345,-1.621313 0.2311345,-1.621314 0.092201,-0.463232 0.092201,-0.463233 0.1062613,-0.243932 0.1062613,-0.243932 0.1588948,-0.03988 0.1588957,-0.03988 0.132141,0.153623 0.132141,0.153623 0.060682,0.217045 0.060682,0.217045 0.1133334,0.781705 0.1133326,0.781704 0.1185136,1.215986 0.1185135,1.215985 0.1757419,1.787484 0.1757419,1.787483 0.049739,0.210207 0.049746,0.210207 0.0058,-0.104102 0.0058,-0.1041 0.08744,-0.76446 0.08744,-0.764461 0.231497,-2.779394 0.231497,-2.779395 0.08785,-0.781705 0.08784,-0.781705 0.0866,-0.431799 0.0866,-0.431799 0.08903,-0.135878 0.08903,-0.135877 0.08717,-0.03345 0.08718,-0.03345 0.138047,0.0629 0.138047,0.0629 0.09091,0.306145 0.09092,0.306145 0.113443,0.86903 0.113444,0.86903 0.205966,2.200355 0.205965,2.200354 0.113832,0.913019 0.113833,0.913019 v 0.06029 0.06029 l 0.05009,-0.03096 0.05009,-0.03096 0.03149,-0.218551 0.03149,-0.218553 0.238847,-1.650265 0.238847,-1.650266 0.11773,-0.579041 0.11773,-0.57904 0.10648,-0.241141 0.1064786,-0.24114 0.117448,-0.06285 0.117448,-0.06285 h 0.114467 0.114468 l 0.146349,0.173927 0.146349,0.173925 0.35261,1.085488 0.352609,1.085486 0.10437,0.136139 0.10437,0.136138 0.446386,-0.390865 0.446386,-0.390866 0.170974,0.163803 0.170974,0.163803 -0.100888,0.113537 -0.100888,0.113536 -0.39234,0.339289 -0.392339,0.339288 h -0.217247 -0.217251 l -0.127816,-0.08952 -0.127816,-0.08952 -0.140749,-0.243423 -0.140749,-0.243422 -0.301127,-0.950688 -0.301127,-0.950688 -0.04445,0.08213 -0.04445,0.08213 -0.09022,0.405328 -0.09022,0.405329 -0.2655793,1.852929 -0.265579,1.85293 -0.113812,0.45838 -0.113811,0.458379 -0.08854,0.135138 -0.08854,0.135137 h -0.163405 -0.163403 l -0.09953,-0.109986 -0.09954,-0.109986 -0.08302,-0.309818 -0.08302,-0.309819 -0.115774,-0.868561 -0.115774,-0.868561 -0.229863,-2.403018 -0.229863,-2.40302 -0.06867,-0.599454 -0.06867,-0.599455 -0.04294,0.07832 -0.04294,0.07832 -0.121993,1.27389 -0.121993,1.273889 -0.145316,1.766074 -0.145316,1.766074 -0.119204,1.187034 -0.119202,1.187033 -0.08404,0.482912 -0.08404,0.482911 -0.08333,0.161149 -0.08333,0.161149 z"
45
+ id="path197" /></g></svg>
@@ -0,0 +1,26 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="256" height="256" viewBox="0 0 256 256" xml:space="preserve">
2
+ <g style="stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: none; fill-rule: nonzero; opacity: 1;" transform="translate(1.4065934065934016 1.4065934065934016) scale(2.81 2.81)">
3
+ <circle cx="45" cy="45" r="45" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(32,196,203); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) "/>
4
+ <line x1="0" y1="-23.202000000000005" x2="0" y2="23.202000000000005" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(27,167,173); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) "/>
5
+ <path d="M 41.781 73.921 c -1.381 0 -2.5 -1.119 -2.5 -2.5 V 25.017 c 0 -1.381 1.119 -2.5 2.5 -2.5 s 2.5 1.119 2.5 2.5 v 46.404 C 44.281 72.802 43.162 73.921 41.781 73.921 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(27,167,173); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
6
+ <line x1="0" y1="-23.202000000000005" x2="0" y2="23.202000000000005" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(27,167,173); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) "/>
7
+ <path d="M 62.414 73.921 c -1.381 0 -2.5 -1.119 -2.5 -2.5 V 25.017 c 0 -1.381 1.119 -2.5 2.5 -2.5 s 2.5 1.119 2.5 2.5 v 46.404 C 64.914 72.802 63.795 73.921 62.414 73.921 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(27,167,173); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
8
+ <line x1="0" y1="-23.202000000000005" x2="0" y2="23.202000000000005" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(27,167,173); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) "/>
9
+ <path d="M 21.149 73.921 c -1.381 0 -2.5 -1.119 -2.5 -2.5 V 25.017 c 0 -1.381 1.119 -2.5 2.5 -2.5 s 2.5 1.119 2.5 2.5 v 46.404 C 23.649 72.802 22.53 73.921 21.149 73.921 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(27,167,173); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
10
+ <circle cx="41.779" cy="59.969" r="5.149" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(27,167,173); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) "/>
11
+ <path d="M 41.781 66.621 c -3.666 0 -6.649 -2.982 -6.649 -6.648 s 2.983 -6.649 6.649 -6.649 s 6.648 2.983 6.648 6.649 S 45.447 66.621 41.781 66.621 z M 41.781 56.323 c -2.012 0 -3.649 1.637 -3.649 3.649 c 0 2.012 1.637 3.648 3.649 3.648 c 2.012 0 3.648 -1.637 3.648 -3.648 C 45.43 57.96 43.793 56.323 41.781 56.323 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(27,167,173); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
12
+ <circle cx="62.419000000000004" cy="49.049" r="5.149" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(27,167,173); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) "/>
13
+ <path d="M 62.414 55.698 c -3.666 0 -6.649 -2.983 -6.649 -6.649 s 2.983 -6.648 6.649 -6.648 s 6.648 2.982 6.648 6.648 S 66.08 55.698 62.414 55.698 z M 62.414 45.4 c -2.013 0 -3.649 1.637 -3.649 3.648 c 0 2.013 1.637 3.649 3.649 3.649 c 2.012 0 3.648 -1.637 3.648 -3.649 C 66.063 47.037 64.426 45.4 62.414 45.4 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(27,167,173); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
14
+ <circle cx="21.149" cy="35.699" r="5.149" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(27,167,173); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) "/>
15
+ <path d="M 21.149 42.348 c -3.666 0 -6.649 -2.983 -6.649 -6.649 s 2.983 -6.649 6.649 -6.649 s 6.649 2.983 6.649 6.649 S 24.815 42.348 21.149 42.348 z M 21.149 32.05 c -2.012 0 -3.649 1.637 -3.649 3.649 s 1.637 3.649 3.649 3.649 s 3.649 -1.637 3.649 -3.649 S 23.161 32.05 21.149 32.05 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(27,167,173); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
16
+ <path d="M 45.219 70.483 c -1.381 0 -2.5 -1.119 -2.5 -2.5 V 21.58 c 0 -1.381 1.119 -2.5 2.5 -2.5 s 2.5 1.119 2.5 2.5 v 46.404 C 47.719 69.364 46.6 70.483 45.219 70.483 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(255,255,255); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
17
+ <path d="M 65.852 70.483 c -1.381 0 -2.5 -1.119 -2.5 -2.5 V 21.58 c 0 -1.381 1.119 -2.5 2.5 -2.5 s 2.5 1.119 2.5 2.5 v 46.404 C 68.352 69.364 67.232 70.483 65.852 70.483 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(255,255,255); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
18
+ <path d="M 24.586 70.483 c -1.381 0 -2.5 -1.119 -2.5 -2.5 V 21.58 c 0 -1.381 1.119 -2.5 2.5 -2.5 s 2.5 1.119 2.5 2.5 v 46.404 C 27.086 69.364 25.967 70.483 24.586 70.483 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(255,255,255); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
19
+ <circle cx="45.219" cy="56.539" r="5.149" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(255,255,255); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) "/>
20
+ <path d="M 45.219 63.184 c -3.666 0 -6.649 -2.982 -6.649 -6.648 s 2.983 -6.649 6.649 -6.649 s 6.648 2.983 6.648 6.649 S 48.885 63.184 45.219 63.184 z M 45.219 52.886 c -2.012 0 -3.649 1.637 -3.649 3.649 c 0 2.012 1.637 3.648 3.649 3.648 c 2.012 0 3.648 -1.637 3.648 -3.648 C 48.867 54.522 47.23 52.886 45.219 52.886 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(255,255,255); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
21
+ <circle cx="65.849" cy="45.609" r="5.149" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(255,255,255); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) "/>
22
+ <path d="M 65.852 52.261 c -3.666 0 -6.649 -2.982 -6.649 -6.649 c 0 -3.666 2.983 -6.649 6.649 -6.649 s 6.648 2.983 6.648 6.649 C 72.5 49.278 69.518 52.261 65.852 52.261 z M 65.852 41.963 c -2.013 0 -3.649 1.637 -3.649 3.649 s 1.637 3.649 3.649 3.649 c 2.012 0 3.648 -1.637 3.648 -3.649 S 67.863 41.963 65.852 41.963 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(255,255,255); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
23
+ <circle cx="24.589000000000002" cy="32.259" r="5.149" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(255,255,255); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) "/>
24
+ <path d="M 24.586 38.91 c -3.666 0 -6.649 -2.983 -6.649 -6.649 s 2.983 -6.649 6.649 -6.649 s 6.649 2.983 6.649 6.649 S 28.252 38.91 24.586 38.91 z M 24.586 28.612 c -2.012 0 -3.649 1.637 -3.649 3.649 s 1.637 3.649 3.649 3.649 s 3.649 -1.637 3.649 -3.649 S 26.599 28.612 24.586 28.612 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(255,255,255); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
25
+ </g>
26
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="256" height="256" viewBox="0 0 256 256" xml:space="preserve">
2
+
3
+ <defs>
4
+ </defs>
5
+ <g style="stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: none; fill-rule: nonzero; opacity: 1;" transform="translate(1.4065934065934016 1.4065934065934016) scale(2.81 2.81)" >
6
+ <circle cx="45" cy="45" r="45" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(65,124,229); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) "/>
7
+ <path d="M 71.5 34.314 V 20.388 l -4.597 4.597 c -3.701 -3.908 -8.386 -6.701 -13.626 -8.105 c -7.536 -2.019 -15.407 -0.983 -22.162 2.918 c -6.756 3.901 -11.588 10.199 -13.608 17.734 c -2.019 7.536 -0.983 15.406 2.918 22.162 c 3.9 6.756 10.199 11.588 17.734 13.607 c 2.486 0.666 5.005 0.987 7.5 0.987 c 10.099 0 19.786 -5.264 25.127 -14.199 l -5.585 -3.338 c -5.176 8.657 -15.603 12.878 -25.358 10.265 c -5.857 -1.569 -10.752 -5.325 -13.783 -10.576 c -3.031 -5.251 -3.837 -11.368 -2.267 -17.224 c 1.569 -5.857 5.325 -10.752 10.576 -13.783 c 5.25 -3.032 11.367 -3.837 17.224 -2.268 c 4.13 1.107 7.806 3.331 10.698 6.432 l -4.717 4.717 H 71.5 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(255,255,255); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round" />
8
+ </g>
9
+ </svg>
@@ -0,0 +1,40 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ role="img"
4
+ focusable="false"
5
+ aria-hidden="true"
6
+ viewBox="0 0 14 14"
7
+ version="1.1"
8
+ id="svg4"
9
+ sodipodi:docname="restore.svg"
10
+ inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
13
+ xmlns="http://www.w3.org/2000/svg"
14
+ xmlns:svg="http://www.w3.org/2000/svg">
15
+ <defs
16
+ id="defs8" />
17
+ <sodipodi:namedview
18
+ id="namedview6"
19
+ pagecolor="#ffffff"
20
+ bordercolor="#000000"
21
+ borderopacity="0.25"
22
+ inkscape:showpageshadow="2"
23
+ inkscape:pageopacity="0.0"
24
+ inkscape:pagecheckerboard="0"
25
+ inkscape:deskcolor="#d1d1d1"
26
+ showgrid="false"
27
+ inkscape:zoom="30.821429"
28
+ inkscape:cx="5.5318656"
29
+ inkscape:cy="5.8238702"
30
+ inkscape:window-width="1274"
31
+ inkscape:window-height="742"
32
+ inkscape:window-x="88"
33
+ inkscape:window-y="66"
34
+ inkscape:window-maximized="0"
35
+ inkscape:current-layer="svg4" />
36
+ <path
37
+ fill="#008000"
38
+ d="M 2.6194133,2.7379764 8.994199,1.0298577 7.6608655,3.339259 C 11.368984,6.2499417 11.434367,10.136693 10.345052,13.356778 10.068342,10.502719 8.58095,8.4122918 5.694199,6.7456253 L 4.3275325,9.1127612 Z"
39
+ id="path2" />
40
+ </svg>
@@ -0,0 +1,76 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ role="img"
4
+ focusable="false"
5
+ aria-hidden="true"
6
+ viewBox="0 0 14 14"
7
+ id="svg2"
8
+ version="1.1"
9
+ inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
10
+ width="100%"
11
+ height="100%"
12
+ sodipodi:docname="roi.svg"
13
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
14
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ xmlns:svg="http://www.w3.org/2000/svg"
17
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
18
+ xmlns:cc="http://creativecommons.org/ns#"
19
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
20
+ <metadata
21
+ id="metadata12">
22
+ <rdf:RDF>
23
+ <cc:Work
24
+ rdf:about="">
25
+ <dc:format>image/svg+xml</dc:format>
26
+ <dc:type
27
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
28
+ </cc:Work>
29
+ </rdf:RDF>
30
+ </metadata>
31
+ <defs
32
+ id="defs10" />
33
+ <sodipodi:namedview
34
+ pagecolor="#000000"
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="1009"
44
+ id="namedview8"
45
+ showgrid="false"
46
+ inkscape:zoom="16.857143"
47
+ inkscape:cx="7.118644"
48
+ inkscape:cy="7.029661"
49
+ inkscape:window-x="1912"
50
+ inkscape:window-y="-8"
51
+ inkscape:window-maximized="1"
52
+ inkscape:current-layer="svg2"
53
+ inkscape:showpageshadow="2"
54
+ inkscape:pagecheckerboard="false"
55
+ inkscape:deskcolor="#000000" />
56
+ <path
57
+ d="M 12.853106,9.585401 V 4.4145982 c 0.485809,-0.1730847 0.83616,-0.6321355 0.83616,-1.1773101 0,-0.6923388 -0.561898,-1.2542373 -1.254238,-1.2542373 -0.545174,0 -1.004226,0.3503495 -1.177311,0.8361579 H 2.742282 C 2.5691972,2.3334 2.1101465,1.9830508 1.5649712,1.9830508 c -0.69233883,0 -1.25423716,0.5618985 -1.25423716,1.2542373 0,0.5451746 0.35035027,1.0042256 0.83615816,1.1773101 V 9.585401 c -0.48580789,0.173085 -0.83615816,0.632136 -0.83615816,1.177311 0,0.69234 0.56189833,1.254238 1.25423716,1.254238 0.5451753,0 1.004226,-0.350351 1.1773108,-0.83616 h 8.515435 c 0.173085,0.48581 0.632137,0.83616 1.177311,0.83616 0.69234,0 1.254238,-0.561898 1.254238,-1.254238 0,-0.545176 -0.350351,-1.004226 -0.83616,-1.177311 z m -1.595389,0.759232 H 2.742282 C 2.6168582,9.9901021 2.3375814,9.7116612 1.9830504,9.585401 V 4.4145982 C 2.3375814,4.2883432 2.6160222,4.0098983 2.742282,3.6553661 h 8.515435 c 0.126256,0.3545322 0.404701,0.6329728 0.759232,0.7592321 V 9.585401 c -0.354531,0.1262549 -0.633808,0.4047011 -0.759232,0.759232 z"
58
+ id="path6"
59
+ inkscape:connector-curvature="0"
60
+ style="fill:#4949ff;fill-opacity:1;stroke-width:1.67231" />
61
+ <path
62
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.0118644;stroke-linecap:square;stroke-dasharray:none;stroke-dashoffset:1.1932;stroke-opacity:1"
63
+ d="M 2.676311,10.158898 C 2.579,9.9725962 2.3170567,9.7163019 2.1207627,9.6153304 L 1.9872881,9.546673 V 6.9994361 4.4521993 l 0.1631356,-0.08521 C 2.336726,4.2696779 2.5930203,4.0077346 2.6939913,3.8114406 l 0.068658,-0.1334745 h 4.237351 4.2373507 l 0.06866,0.1334745 c 0.100972,0.196294 0.357266,0.4582373 0.543568,0.5555483 l 0.163136,0.08521 v 2.5478006 2.5478007 l -0.163136,0.08521 C 11.663274,9.730322 11.40698,9.992265 11.306008,10.188559 l -0.06866,0.133475 H 6.9994361 2.7615213 Z"
64
+ id="path1" />
65
+ <text
66
+ xml:space="preserve"
67
+ style="font-size:6.1136px;line-height:0.85;font-family:'Franklin Gothic Demi Cond';-inkscape-font-specification:'Franklin Gothic Demi Cond';text-align:center;letter-spacing:0px;text-anchor:middle;opacity:1;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.224032;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1"
68
+ x="7"
69
+ y="9.0373688"
70
+ id="text1"><tspan
71
+ sodipodi:role="line"
72
+ id="tspan1"
73
+ x="7"
74
+ y="9.0373688"
75
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.1136px;font-family:'Franklin Gothic Medium';-inkscape-font-specification:'Franklin Gothic Medium, ';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.224032;stroke-dasharray:none;stroke-opacity:1">ROI</tspan></text>
76
+ </svg>
@@ -0,0 +1,78 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ role="img"
4
+ focusable="false"
5
+ aria-hidden="true"
6
+ viewBox="0 0 14 14"
7
+ id="svg2"
8
+ version="1.1"
9
+ inkscape:version="1.4 (86a8ad7, 2024-10-11)"
10
+ width="100%"
11
+ height="100%"
12
+ sodipodi:docname="roi_coords.svg"
13
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
14
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ xmlns:svg="http://www.w3.org/2000/svg"
17
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
18
+ xmlns:cc="http://creativecommons.org/ns#"
19
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
20
+ <metadata
21
+ id="metadata12">
22
+ <rdf:RDF>
23
+ <cc:Work
24
+ rdf:about="">
25
+ <dc:format>image/svg+xml</dc:format>
26
+ <dc:type
27
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
28
+ </cc:Work>
29
+ </rdf:RDF>
30
+ </metadata>
31
+ <defs
32
+ id="defs10" />
33
+ <sodipodi:namedview
34
+ pagecolor="#000000"
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="1009"
44
+ id="namedview8"
45
+ showgrid="false"
46
+ inkscape:zoom="16.857143"
47
+ inkscape:cx="7.118644"
48
+ inkscape:cy="7.029661"
49
+ inkscape:window-x="-8"
50
+ inkscape:window-y="-8"
51
+ inkscape:window-maximized="1"
52
+ inkscape:current-layer="svg2"
53
+ inkscape:showpageshadow="2"
54
+ inkscape:pagecheckerboard="false"
55
+ inkscape:deskcolor="#000000" />
56
+ <path
57
+ d="M 12.853106,8.297265 V 3.1264622 c 0.485809,-0.1730847 0.83616,-0.6321355 0.83616,-1.1773101 0,-0.6923386 -0.561898,-1.25423698 -1.254238,-1.25423698 -0.545174,0 -1.004226,0.35034958 -1.177311,0.83615768 H 2.742282 C 2.5691972,1.0452644 2.1101465,0.69491512 1.5649712,0.69491512 c -0.69233883,0 -1.25423716,0.56189838 -1.25423716,1.25423698 0,0.5451746 0.35035027,1.0042256 0.83615816,1.1773101 V 8.297265 C 0.66108431,8.47035 0.31073404,8.929401 0.31073404,9.474576 c 0,0.69234 0.56189833,1.254238 1.25423716,1.254238 0.5451753,0 1.004226,-0.350351 1.1773108,-0.83616 h 8.515435 c 0.173085,0.48581 0.632137,0.83616 1.177311,0.83616 0.69234,0 1.254238,-0.561898 1.254238,-1.254238 0,-0.545176 -0.350351,-1.004226 -0.83616,-1.177311 z M 11.257717,9.056497 H 2.742282 C 2.6168582,8.7019661 2.3375814,8.4235252 1.9830504,8.297265 V 3.1264622 C 2.3375814,3.0002072 2.6160222,2.7217623 2.742282,2.3672301 h 8.515435 c 0.126256,0.3545322 0.404701,0.6329728 0.759232,0.7592321 V 8.297265 c -0.354531,0.1262549 -0.633808,0.4047011 -0.759232,0.759232 z"
58
+ id="path6"
59
+ inkscape:connector-curvature="0"
60
+ style="fill:#4949ff;fill-opacity:1;stroke-width:1.67231" />
61
+ <path
62
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.0118644;stroke-linecap:square;stroke-dasharray:none;stroke-dashoffset:1.1932;stroke-opacity:1"
63
+ d="M 2.676311,8.870762 C 2.579,8.6844602 2.3170567,8.4281659 2.1207627,8.3271944 L 1.9872881,8.258537 V 5.7113001 3.1640633 l 0.1631356,-0.08521 C 2.336726,2.9815419 2.5930203,2.7195986 2.6939913,2.5233046 l 0.068658,-0.1334745 h 4.237351 4.2373507 l 0.06866,0.1334745 c 0.100972,0.196294 0.357266,0.4582373 0.543568,0.5555483 l 0.163136,0.08521 v 2.5478006 2.5478007 l -0.163136,0.08521 C 11.663274,8.442186 11.40698,8.704129 11.306008,8.900423 l -0.06866,0.133475 H 6.9994361 2.7615213 Z"
64
+ id="path1" />
65
+ <g
66
+ id="g3"
67
+ transform="matrix(0.51233333,0,0,0.51233333,2.0012287,2.6502024)">
68
+ <path
69
+ d="M 5.5,8.557 A 2.08,2.08 0 0 1 7,8 V 9 C 6.26,9 6.052,9.417 6,9.571 v 5.86 C 6.048,15.574 6.251,16 7,16 v 1 A 2.08,2.08 0 0 1 5.5,16.443 2.08,2.08 0 0 1 4,17 v -1 c 0.74,0 0.948,-0.417 1,-0.571 V 9.569 C 4.952,9.426 4.749,9 4,9 V 8 A 2.08,2.08 0 0 1 5.5,8.557 Z M 23,6.5 v 12 A 1.502,1.502 0 0 1 21.5,20 H 2.5 A 1.502,1.502 0 0 1 1,18.5 V 6.5 A 1.502,1.502 0 0 1 2.5,5 h 19 A 1.502,1.502 0 0 1 23,6.5 Z m -1,0 A 0.5,0.5 0 0 0 21.5,6 H 2.5 A 0.5,0.5 0 0 0 2,6.5 v 12 A 0.5,0.5 0 0 0 2.5,19 h 19 A 0.5,0.5 0 0 0 22,18.5 Z M 12,17 h 1 v -1 h -1 z m -2,0 h 1 V 16 H 10 Z M 8,17 H 9 V 16 H 8 Z m 6,0 h 1 v -1 h -1 z m 4,0 h 1 v -1 h -1 z m -2,0 h 1 v -1 h -1 z"
70
+ id="path1-4"
71
+ style="fill:#666666" />
72
+ <path
73
+ style="fill:#cccccc;stroke-width:0.842627;stroke-linecap:square;stroke-dashoffset:1.1932"
74
+ d="m 76.729684,631.07268 c -2.234856,-1.01495 -5.134485,-3.34716 -6.443618,-5.18269 L 67.905824,622.55266 67.651028,417.25731 67.396232,211.96195 69.65727,208.6068 c 1.243571,-1.84534 3.766207,-4.36949 5.605857,-5.60923 l 3.344819,-2.25408 H 400 721.39205 l 3.34482,2.25408 c 1.83966,1.23974 4.36229,3.76389 5.60586,5.60923 l 2.26104,3.35515 -0.25479,205.29536 -0.2548,205.29535 -2.38025,3.33733 c -1.30913,1.83553 -4.20876,4.16774 -6.44362,5.18269 -3.93567,1.78736 -14.09543,1.84537 -323.27031,1.84537 -309.174877,0 -319.334644,-0.058 -323.270316,-1.84537 z m 76.859886,-66.14985 c 7.37605,-1.89365 18.31636,-7.16179 24.11417,-11.61184 2.59456,-1.99144 5.1254,-3.62078 5.62407,-3.62078 0.49868,0 2.16769,1.06107 3.70893,2.35793 10.19112,8.57526 30.05375,15.48594 44.50959,15.48594 h 2.40658 V 550.3271 533.12011 l -5.70964,-0.59677 c -11.59103,-1.21151 -20.34949,-5.86129 -25.07446,-13.31179 l -2.92098,-4.60591 v -97.49101 c 0,-94.54836 0.0581,-97.60486 1.92425,-101.26285 4.16039,-8.15504 13.69928,-13.74678 25.08938,-14.70751 l 6.69145,-0.56441 V 283.37543 266.171 h -4.99842 c -12.5643,0 -29.69147,5.92785 -40.32636,13.95726 l -5.29901,4.0008 -3.68439,-2.9156 c -10.21834,-8.08617 -25.13031,-13.77999 -38.62862,-14.74952 l -8.17844,-0.58742 v 17.49544 17.49545 h 4.35655 c 10.95409,0 23.17997,6.66483 27.40007,14.93691 1.89769,3.71976 1.94846,6.34179 1.94846,100.61108 0,89.31462 -0.13112,97.06809 -1.69733,100.36864 -4.02114,8.47392 -13.96598,14.45033 -26.16777,15.72567 l -5.83998,0.6104 v 17.32345 17.32346 l 7.61683,-0.71377 c 4.18925,-0.39256 10.10003,-1.35125 13.13507,-2.13042 z m 146.78218,-14.73696 v -17.3482 h -16.85254 -16.85254 v 17.3482 17.34821 h 16.85254 16.85254 z m 66.41883,0 v -17.3482 H 349.93804 333.0855 v 17.3482 17.34821 h 16.85254 16.85254 z m 67.41016,0 v -17.3482 h -17.3482 -17.3482 v 17.3482 17.34821 h 17.3482 17.3482 z m 66.41884,0 v -17.3482 h -17.3482 -17.34821 v 17.3482 17.34821 h 17.34821 17.3482 z m 66.41883,0 v -17.3482 h -16.85254 -16.85254 v 17.3482 17.34821 h 16.85254 16.85254 z m 66.41884,0 v -17.3482 h -16.85254 -16.85254 v 17.3482 17.34821 h 16.85254 16.85254 z"
75
+ id="path3"
76
+ transform="scale(0.03)" />
77
+ </g>
78
+ </svg>
@@ -0,0 +1,112 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ role="img"
4
+ focusable="false"
5
+ aria-hidden="true"
6
+ viewBox="0 0 14 14"
7
+ id="svg2"
8
+ version="1.1"
9
+ inkscape:version="1.4 (86a8ad7, 2024-10-11)"
10
+ width="100%"
11
+ height="100%"
12
+ sodipodi:docname="roi_copy.svg"
13
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
14
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ xmlns:svg="http://www.w3.org/2000/svg"
17
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
18
+ xmlns:cc="http://creativecommons.org/ns#"
19
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
20
+ <metadata
21
+ id="metadata12">
22
+ <rdf:RDF>
23
+ <cc:Work
24
+ rdf:about="">
25
+ <dc:format>image/svg+xml</dc:format>
26
+ <dc:type
27
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
28
+ </cc:Work>
29
+ </rdf:RDF>
30
+ </metadata>
31
+ <defs
32
+ id="defs10" />
33
+ <sodipodi:namedview
34
+ pagecolor="#000000"
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="991"
44
+ id="namedview8"
45
+ showgrid="false"
46
+ inkscape:zoom="16.857143"
47
+ inkscape:cx="7.118644"
48
+ inkscape:cy="7.029661"
49
+ inkscape:window-x="-9"
50
+ inkscape:window-y="-9"
51
+ inkscape:window-maximized="1"
52
+ inkscape:current-layer="svg2"
53
+ inkscape:showpageshadow="2"
54
+ inkscape:pagecheckerboard="false"
55
+ inkscape:deskcolor="#000000" />
56
+ <path
57
+ d="M 11.533192,7.0991553 V 2.5703355 c 0.425492,-0.1515952 0.732345,-0.5536524 0.732345,-1.0311407 0,-0.60638114 -0.492136,-1.09851687 -1.098518,-1.09851687 -0.477487,0 -0.879546,0.30685172 -1.031141,0.73234437 H 2.6776803 C 2.526085,0.7475294 2.1240279,0.44067793 1.646539,0.44067793 c -0.6063812,0 -1.09851684,0.49213573 -1.09851684,1.09851687 0,0.4774883 0.30685233,0.8795456 0.73234464,1.0311407 v 4.5288198 c -0.42549231,0.1515956 -0.73234464,0.553653 -0.73234464,1.0311416 0,0.6063825 0.49213564,1.0985173 1.09851684,1.0985173 0.4774889,0 0.879546,-0.3068529 1.0311413,-0.732346 h 7.4581977 c 0.151595,0.4254943 0.553654,0.732346 1.031141,0.732346 0.606382,0 1.098518,-0.4921348 1.098518,-1.0985173 0,-0.4774895 -0.306853,-0.879546 -0.732345,-1.0311416 z M 10.135878,7.7641246 H 2.6776803 C 2.5678285,7.4536106 2.3232255,7.2097397 2.0127114,7.0991553 V 2.5703355 C 2.3232255,2.4597559 2.5670964,2.2158814 2.6776803,1.9053663 h 7.4581977 c 0.110585,0.3105151 0.354456,0.5543858 0.664969,0.6649692 v 4.5288198 c -0.310513,0.11058 -0.555117,0.3544553 -0.664969,0.6649693 z"
58
+ id="path6"
59
+ inkscape:connector-curvature="0"
60
+ style="fill:#4949ff;fill-opacity:1;stroke-width:1.46469" />
61
+ <path
62
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.0103914;stroke-linecap:square;stroke-dasharray:none;stroke-dashoffset:1.1932;stroke-opacity:1"
63
+ d="M 2.6199,7.6014496 C 2.5346707,7.4382782 2.305249,7.2138043 2.133326,7.1253688 L 2.016423,7.0652357 V 4.8342519 2.6032683 L 2.1593045,2.5286376 C 2.3224763,2.443408 2.5469503,2.2139863 2.6353852,2.0420633 L 2.6955189,1.9251599 H 6.40678 10.118041 l 0.06013,0.1169034 c 0.08844,0.171923 0.31291,0.4013447 0.476081,0.4865739 l 0.142882,0.074631 v 2.2314772 2.2314775 l -0.142882,0.074631 c -0.163173,0.08523 -0.387647,0.3146513 -0.476083,0.4865744 l -0.06014,0.1169034 H 6.4062858 2.694531 Z"
64
+ id="path1" />
65
+ <text
66
+ xml:space="preserve"
67
+ style="font-size:5.35456px;line-height:0.85;font-family:'Franklin Gothic Demi Cond';-inkscape-font-specification:'Franklin Gothic Demi Cond';text-align:center;letter-spacing:0px;text-anchor:middle;opacity:1;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.196217;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1"
68
+ x="6.4067798"
69
+ y="6.6191649"
70
+ id="text1"><tspan
71
+ sodipodi:role="line"
72
+ id="tspan1"
73
+ x="6.4067798"
74
+ y="6.6191649"
75
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.35456px;font-family:'Franklin Gothic Medium';-inkscape-font-specification:'Franklin Gothic Medium, ';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.196217;stroke-dasharray:none;stroke-opacity:1">ROI</tspan></text>
76
+ <g
77
+ id="g306"
78
+ transform="matrix(0.83676874,0,0,0.83676874,2.69213,3.7958618)">
79
+ <rect
80
+ style="fill:#ffccaa;stroke:#d45500;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
81
+ id="rect955"
82
+ width="3.6778848"
83
+ height="6.3810096"
84
+ x="4.0258412"
85
+ y="2.4609373" />
86
+ <rect
87
+ style="fill:#ffccaa;stroke:#d45500;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
88
+ id="rect955-6"
89
+ width="3.6778843"
90
+ height="4.3371396"
91
+ x="5.3046875"
92
+ y="4.5048075" />
93
+ <rect
94
+ style="fill:#ffccaa;stroke:#d45500;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
95
+ id="rect955-68"
96
+ width="3.6778848"
97
+ height="6.3810096"
98
+ x="7.7433882"
99
+ y="4.9393029" />
100
+ <rect
101
+ style="fill:#ffccaa;stroke:#d45500;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
102
+ id="rect955-6-6"
103
+ width="3.6778843"
104
+ height="4.3371396"
105
+ x="9.022234"
106
+ y="6.9831729" />
107
+ <path
108
+ d="M 11.460937,4.5048077 H 9.6021631 V 3.8852163 L 7.7433894,2.0264423 H 3.40625 v 7.4350961 h 3.717548 v 2.4783646 h 6.195913 V 6.3635817 Z m 0,0.8762376 0.982539,0.9825364 H 11.460937 Z M 7.7433894,2.9026799 8.7259291,3.8852163 H 7.7433894 Z M 4.0258413,2.6460336 H 7.123798 V 4.5048077 H 8.982572 V 8.841947 H 4.0258413 Z M 12.700119,11.320312 H 7.7433894 V 9.4615384 H 9.6021631 V 5.124399 h 1.2391829 v 1.858774 h 1.858773 z"
109
+ id="path2-0"
110
+ style="fill:#ff6600;stroke-width:0.826122" />
111
+ </g>
112
+ </svg>
@@ -0,0 +1,81 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ role="img"
4
+ focusable="false"
5
+ aria-hidden="true"
6
+ viewBox="0 0 14 14"
7
+ id="svg2"
8
+ version="1.1"
9
+ inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
10
+ width="100%"
11
+ height="100%"
12
+ sodipodi:docname="roi_delete.svg"
13
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
14
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ xmlns:svg="http://www.w3.org/2000/svg"
17
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
18
+ xmlns:cc="http://creativecommons.org/ns#"
19
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
20
+ <metadata
21
+ id="metadata12">
22
+ <rdf:RDF>
23
+ <cc:Work
24
+ rdf:about="">
25
+ <dc:format>image/svg+xml</dc:format>
26
+ <dc:type
27
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
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="1009"
44
+ id="namedview8"
45
+ showgrid="false"
46
+ inkscape:zoom="16.857143"
47
+ inkscape:cx="7.118644"
48
+ inkscape:cy="7.088983"
49
+ inkscape:window-x="-8"
50
+ inkscape:window-y="-8"
51
+ inkscape:window-maximized="1"
52
+ inkscape:current-layer="svg2"
53
+ inkscape:showpageshadow="2"
54
+ inkscape:pagecheckerboard="0"
55
+ inkscape:deskcolor="#d1d1d1" />
56
+ <path
57
+ d="M 12.6455,9.493698 V 4.5063016 c 0.468577,-0.1669455 0.8065,-0.609714 0.8065,-1.1355515 0,-0.6677818 -0.541968,-1.20975 -1.20975,-1.20975 -0.525838,0 -0.968606,0.3379227 -1.135552,0.8064997 H 2.8933021 C 2.7263565,2.4989226 2.283588,2.1610001 1.75775,2.1610001 c -0.667782,0 -1.20974995,0.5419682 -1.20974995,1.20975 0,0.5258375 0.3379235,0.9686062 0.80649995,1.1355515 V 9.493698 c -0.46857645,0.166945 -0.80649995,0.609714 -0.80649995,1.135552 0,0.667782 0.54196795,1.20975 1.20975005,1.20975 0.525838,0 0.9686065,-0.337924 1.135552,-0.806502 h 8.2133959 c 0.166946,0.468578 0.609714,0.806502 1.135552,0.806502 0.667782,0 1.20975,-0.541968 1.20975,-1.20975 0,-0.525838 -0.337923,-0.968607 -0.8065,-1.135552 z M 11.106698,10.226 H 2.8933021 C 2.772327,9.884044 2.5029561,9.615479 2.161,9.493698 V 4.5063016 C 2.5029561,4.384525 2.7715206,4.1159561 2.8933021,3.7739992 H 11.106698 C 11.22848,4.1159561 11.497044,4.3845206 11.839,4.5063016 V 9.493698 C 11.497044,9.615479 11.227673,9.884044 11.106698,10.226 Z"
58
+ id="path6"
59
+ inkscape:connector-curvature="0"
60
+ style="fill:#808080;fill-opacity:1;stroke-width:1.613" />
61
+ <g
62
+ transform="translate(5.2195116,-1039.4354)"
63
+ id="g10">
64
+ <circle
65
+ cx="1.7804884"
66
+ cy="1046.4354"
67
+ r="2.9268293"
68
+ fill="#f44336"
69
+ id="circle2" />
70
+ <g
71
+ fill="#ffffff"
72
+ id="g8">
73
+ <path
74
+ d="m 3.334781,1047.3665 -0.6207805,0.6208 -2.48312193,-2.4831 0.6207805,-0.6208 z"
75
+ id="path4" />
76
+ <path
77
+ d="m 0.8493176,1047.9896 -0.6207805,-0.6207 2.483122,-2.4832 0.6207805,0.6208 z"
78
+ id="path6-2" />
79
+ </g>
80
+ </g>
81
+ </svg>