datalab-platform 0.0.1.dev0__py3-none-any.whl → 1.0.0__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.
- datalab/__init__.py +35 -2
- datalab/adapters_metadata/__init__.py +31 -0
- datalab/adapters_metadata/base_adapter.py +316 -0
- datalab/adapters_metadata/common.py +422 -0
- datalab/adapters_metadata/geometry_adapter.py +98 -0
- datalab/adapters_metadata/table_adapter.py +84 -0
- datalab/adapters_plotpy/__init__.py +54 -0
- datalab/adapters_plotpy/annotations.py +124 -0
- datalab/adapters_plotpy/base.py +110 -0
- datalab/adapters_plotpy/converters.py +86 -0
- datalab/adapters_plotpy/factories.py +80 -0
- datalab/adapters_plotpy/objects/__init__.py +0 -0
- datalab/adapters_plotpy/objects/base.py +197 -0
- datalab/adapters_plotpy/objects/image.py +157 -0
- datalab/adapters_plotpy/objects/scalar.py +565 -0
- datalab/adapters_plotpy/objects/signal.py +264 -0
- datalab/adapters_plotpy/roi/__init__.py +0 -0
- datalab/adapters_plotpy/roi/base.py +146 -0
- datalab/adapters_plotpy/roi/factory.py +93 -0
- datalab/adapters_plotpy/roi/image.py +207 -0
- datalab/adapters_plotpy/roi/signal.py +72 -0
- datalab/app.py +98 -0
- datalab/config.py +817 -0
- datalab/control/__init__.py +0 -0
- datalab/control/baseproxy.py +776 -0
- datalab/control/proxy.py +343 -0
- datalab/control/remote.py +1005 -0
- datalab/data/doc/DataLab_en.pdf +0 -0
- datalab/data/doc/DataLab_fr.pdf +0 -0
- datalab/data/icons/analysis/delete_results.svg +109 -0
- datalab/data/icons/analysis/fw1e2.svg +156 -0
- datalab/data/icons/analysis/fwhm.svg +156 -0
- datalab/data/icons/analysis/histogram.svg +49 -0
- datalab/data/icons/analysis/peak_detect.svg +160 -0
- datalab/data/icons/analysis/plot_results.svg +151 -0
- datalab/data/icons/analysis/show_results.svg +83 -0
- datalab/data/icons/analysis/stats.svg +49 -0
- datalab/data/icons/analysis.svg +120 -0
- datalab/data/icons/apply.svg +3 -0
- datalab/data/icons/check_all.svg +15 -0
- datalab/data/icons/collapse.svg +44 -0
- datalab/data/icons/collapse_selection.svg +63 -0
- datalab/data/icons/console.svg +101 -0
- datalab/data/icons/create/1d-normal.svg +8 -0
- datalab/data/icons/create/1d-poisson.svg +9 -0
- datalab/data/icons/create/1d-uniform.svg +8 -0
- datalab/data/icons/create/1d-zero.svg +57 -0
- datalab/data/icons/create/2d-gaussian.svg +56 -0
- datalab/data/icons/create/2d-normal.svg +38 -0
- datalab/data/icons/create/2d-poisson.svg +38 -0
- datalab/data/icons/create/2d-ramp.svg +90 -0
- datalab/data/icons/create/2d-sinc.svg +62 -0
- datalab/data/icons/create/2d-uniform.svg +38 -0
- datalab/data/icons/create/2d-zero.svg +13 -0
- datalab/data/icons/create/checkerboard.svg +39 -0
- datalab/data/icons/create/cosine.svg +12 -0
- datalab/data/icons/create/exponential.svg +55 -0
- datalab/data/icons/create/gaussian.svg +12 -0
- datalab/data/icons/create/grating.svg +29 -0
- datalab/data/icons/create/linear_chirp.svg +7 -0
- datalab/data/icons/create/logistic.svg +7 -0
- datalab/data/icons/create/lorentzian.svg +12 -0
- datalab/data/icons/create/planck.svg +12 -0
- datalab/data/icons/create/polynomial.svg +7 -0
- datalab/data/icons/create/pulse.svg +12 -0
- datalab/data/icons/create/ring.svg +18 -0
- datalab/data/icons/create/sawtooth.svg +7 -0
- datalab/data/icons/create/siemens.svg +35 -0
- datalab/data/icons/create/sinc.svg +12 -0
- datalab/data/icons/create/sine.svg +7 -0
- datalab/data/icons/create/square.svg +7 -0
- datalab/data/icons/create/square_pulse.svg +7 -0
- datalab/data/icons/create/step.svg +7 -0
- datalab/data/icons/create/step_pulse.svg +12 -0
- datalab/data/icons/create/triangle.svg +7 -0
- datalab/data/icons/create/voigt.svg +12 -0
- datalab/data/icons/edit/annotations.svg +72 -0
- datalab/data/icons/edit/annotations_copy.svg +114 -0
- datalab/data/icons/edit/annotations_delete.svg +83 -0
- datalab/data/icons/edit/annotations_edit.svg +98 -0
- datalab/data/icons/edit/annotations_export.svg +85 -0
- datalab/data/icons/edit/annotations_import.svg +85 -0
- datalab/data/icons/edit/annotations_paste.svg +100 -0
- datalab/data/icons/edit/copy_titles.svg +109 -0
- datalab/data/icons/edit/delete.svg +84 -0
- datalab/data/icons/edit/delete_all.svg +214 -0
- datalab/data/icons/edit/duplicate.svg +64 -0
- datalab/data/icons/edit/goto_source.svg +60 -0
- datalab/data/icons/edit/metadata.svg +60 -0
- datalab/data/icons/edit/metadata_add.svg +80 -0
- datalab/data/icons/edit/metadata_copy.svg +96 -0
- datalab/data/icons/edit/metadata_delete.svg +62 -0
- datalab/data/icons/edit/metadata_export.svg +68 -0
- datalab/data/icons/edit/metadata_import.svg +68 -0
- datalab/data/icons/edit/metadata_paste.svg +79 -0
- datalab/data/icons/edit/move_down.svg +55 -0
- datalab/data/icons/edit/move_up.svg +54 -0
- datalab/data/icons/edit/new_group.svg +76 -0
- datalab/data/icons/edit/recompute.svg +60 -0
- datalab/data/icons/edit/rename.svg +49 -0
- datalab/data/icons/edit.svg +16 -0
- datalab/data/icons/expand.svg +44 -0
- datalab/data/icons/expand_selection.svg +63 -0
- datalab/data/icons/fit/cdf_fit.svg +56 -0
- datalab/data/icons/fit/exponential_fit.svg +55 -0
- datalab/data/icons/fit/gaussian_fit.svg +62 -0
- datalab/data/icons/fit/interactive_fit.svg +101 -0
- datalab/data/icons/fit/linear_fit.svg +57 -0
- datalab/data/icons/fit/lorentzian_fit.svg +209 -0
- datalab/data/icons/fit/multigaussian_fit.svg +85 -0
- datalab/data/icons/fit/multilorentzian_fit.svg +85 -0
- datalab/data/icons/fit/piecewiseexponential_fit.svg +209 -0
- datalab/data/icons/fit/planckian_fit.svg +62 -0
- datalab/data/icons/fit/polynomial_fit.svg +59 -0
- datalab/data/icons/fit/sigmoid_fit.svg +56 -0
- datalab/data/icons/fit/sinusoidal_fit.svg +72 -0
- datalab/data/icons/fit/twohalfgaussian_fit.svg +63 -0
- datalab/data/icons/fit/voigt_fit.svg +57 -0
- datalab/data/icons/group.svg +56 -0
- datalab/data/icons/h5/h5array.svg +59 -0
- datalab/data/icons/h5/h5attrs.svg +75 -0
- datalab/data/icons/h5/h5browser.svg +133 -0
- datalab/data/icons/h5/h5file.svg +69 -0
- datalab/data/icons/h5/h5group.svg +49 -0
- datalab/data/icons/h5/h5scalar.svg +1 -0
- datalab/data/icons/help_pdf.svg +46 -0
- datalab/data/icons/history.svg +7 -0
- datalab/data/icons/image.svg +135 -0
- datalab/data/icons/io/fileopen_directory.svg +60 -0
- datalab/data/icons/io/fileopen_h5.svg +84 -0
- datalab/data/icons/io/fileopen_ima.svg +187 -0
- datalab/data/icons/io/fileopen_py.svg +123 -0
- datalab/data/icons/io/fileopen_sig.svg +138 -0
- datalab/data/icons/io/filesave_h5.svg +97 -0
- datalab/data/icons/io/filesave_ima.svg +200 -0
- datalab/data/icons/io/filesave_py.svg +136 -0
- datalab/data/icons/io/filesave_sig.svg +151 -0
- datalab/data/icons/io/import_text.svg +144 -0
- datalab/data/icons/io/save_to_directory.svg +134 -0
- datalab/data/icons/io.svg +84 -0
- datalab/data/icons/libre-camera-flash-off.svg +1 -0
- datalab/data/icons/libre-camera-flash-on.svg +1 -0
- datalab/data/icons/libre-gui-about.svg +1 -0
- datalab/data/icons/libre-gui-action-delete.svg +1 -0
- datalab/data/icons/libre-gui-add.svg +1 -0
- datalab/data/icons/libre-gui-arrow-down.svg +1 -0
- datalab/data/icons/libre-gui-arrow-left.svg +1 -0
- datalab/data/icons/libre-gui-arrow-right.svg +1 -0
- datalab/data/icons/libre-gui-arrow-up.svg +1 -0
- datalab/data/icons/libre-gui-close.svg +40 -0
- datalab/data/icons/libre-gui-cogs.svg +1 -0
- datalab/data/icons/libre-gui-globe.svg +1 -0
- datalab/data/icons/libre-gui-help.svg +1 -0
- datalab/data/icons/libre-gui-link.svg +1 -0
- datalab/data/icons/libre-gui-menu.svg +1 -0
- datalab/data/icons/libre-gui-pencil.svg +1 -0
- datalab/data/icons/libre-gui-plugin.svg +1 -0
- datalab/data/icons/libre-gui-questions.svg +1 -0
- datalab/data/icons/libre-gui-settings.svg +1 -0
- datalab/data/icons/libre-gui-unlink.svg +1 -0
- datalab/data/icons/libre-tech-ram.svg +1 -0
- datalab/data/icons/libre-toolbox.svg +1 -0
- datalab/data/icons/logs.svg +1 -0
- datalab/data/icons/markers.svg +74 -0
- datalab/data/icons/menu.svg +13 -0
- datalab/data/icons/new_ima.svg +148 -0
- datalab/data/icons/new_sig.svg +123 -0
- datalab/data/icons/operations/abs.svg +116 -0
- datalab/data/icons/operations/arithmetic.svg +123 -0
- datalab/data/icons/operations/average.svg +124 -0
- datalab/data/icons/operations/complex_from_magnitude_phase.svg +116 -0
- datalab/data/icons/operations/complex_from_real_imag.svg +124 -0
- datalab/data/icons/operations/constant.svg +116 -0
- datalab/data/icons/operations/constant_add.svg +109 -0
- datalab/data/icons/operations/constant_divide.svg +109 -0
- datalab/data/icons/operations/constant_multiply.svg +109 -0
- datalab/data/icons/operations/constant_subtract.svg +109 -0
- datalab/data/icons/operations/convert_dtype.svg +117 -0
- datalab/data/icons/operations/convolution.svg +46 -0
- datalab/data/icons/operations/deconvolution.svg +57 -0
- datalab/data/icons/operations/derivative.svg +127 -0
- datalab/data/icons/operations/difference.svg +52 -0
- datalab/data/icons/operations/division.svg +139 -0
- datalab/data/icons/operations/exp.svg +116 -0
- datalab/data/icons/operations/flip_horizontally.svg +69 -0
- datalab/data/icons/operations/flip_vertically.svg +74 -0
- datalab/data/icons/operations/im.svg +124 -0
- datalab/data/icons/operations/integral.svg +50 -0
- datalab/data/icons/operations/inverse.svg +143 -0
- datalab/data/icons/operations/log10.svg +109 -0
- datalab/data/icons/operations/phase.svg +116 -0
- datalab/data/icons/operations/power.svg +118 -0
- datalab/data/icons/operations/product.svg +124 -0
- datalab/data/icons/operations/profile.svg +379 -0
- datalab/data/icons/operations/profile_average.svg +399 -0
- datalab/data/icons/operations/profile_radial.svg +261 -0
- datalab/data/icons/operations/profile_segment.svg +262 -0
- datalab/data/icons/operations/quadratic_difference.svg +84 -0
- datalab/data/icons/operations/re.svg +124 -0
- datalab/data/icons/operations/rotate_left.svg +72 -0
- datalab/data/icons/operations/rotate_right.svg +72 -0
- datalab/data/icons/operations/signals_to_image.svg +314 -0
- datalab/data/icons/operations/sqrt.svg +110 -0
- datalab/data/icons/operations/std.svg +124 -0
- datalab/data/icons/operations/sum.svg +102 -0
- datalab/data/icons/play_demo.svg +9 -0
- datalab/data/icons/processing/axis_transform.svg +62 -0
- datalab/data/icons/processing/bandpass.svg +79 -0
- datalab/data/icons/processing/bandstop.svg +71 -0
- datalab/data/icons/processing/binning.svg +126 -0
- datalab/data/icons/processing/clip.svg +119 -0
- datalab/data/icons/processing/detrending.svg +173 -0
- datalab/data/icons/processing/distribute_on_grid.svg +769 -0
- datalab/data/icons/processing/edge_detection.svg +46 -0
- datalab/data/icons/processing/erase.svg +1 -0
- datalab/data/icons/processing/exposure.svg +143 -0
- datalab/data/icons/processing/fourier.svg +104 -0
- datalab/data/icons/processing/highpass.svg +59 -0
- datalab/data/icons/processing/interpolation.svg +71 -0
- datalab/data/icons/processing/level_adjustment.svg +70 -0
- datalab/data/icons/processing/lowpass.svg +60 -0
- datalab/data/icons/processing/morphology.svg +49 -0
- datalab/data/icons/processing/noise_addition.svg +114 -0
- datalab/data/icons/processing/noise_reduction.svg +38 -0
- datalab/data/icons/processing/normalize.svg +84 -0
- datalab/data/icons/processing/offset_correction.svg +131 -0
- datalab/data/icons/processing/resampling1d.svg +101 -0
- datalab/data/icons/processing/resampling2d.svg +240 -0
- datalab/data/icons/processing/reset_positions.svg +185 -0
- datalab/data/icons/processing/resize.svg +9 -0
- datalab/data/icons/processing/reverse_signal_x.svg +171 -0
- datalab/data/icons/processing/stability.svg +11 -0
- datalab/data/icons/processing/swap_x_y.svg +65 -0
- datalab/data/icons/processing/thresholding.svg +63 -0
- datalab/data/icons/processing/windowing.svg +45 -0
- datalab/data/icons/properties.svg +26 -0
- datalab/data/icons/reset.svg +9 -0
- datalab/data/icons/restore.svg +40 -0
- datalab/data/icons/roi/roi.svg +76 -0
- datalab/data/icons/roi/roi_coordinate.svg +78 -0
- datalab/data/icons/roi/roi_copy.svg +112 -0
- datalab/data/icons/roi/roi_delete.svg +81 -0
- datalab/data/icons/roi/roi_export.svg +87 -0
- datalab/data/icons/roi/roi_graphical.svg +78 -0
- datalab/data/icons/roi/roi_grid.svg +67 -0
- datalab/data/icons/roi/roi_ima.svg +188 -0
- datalab/data/icons/roi/roi_import.svg +87 -0
- datalab/data/icons/roi/roi_new.svg +81 -0
- datalab/data/icons/roi/roi_new_circle.svg +95 -0
- datalab/data/icons/roi/roi_new_polygon.svg +110 -0
- datalab/data/icons/roi/roi_new_rectangle.svg +70 -0
- datalab/data/icons/roi/roi_paste.svg +98 -0
- datalab/data/icons/roi/roi_sig.svg +124 -0
- datalab/data/icons/shapes.svg +134 -0
- datalab/data/icons/signal.svg +103 -0
- datalab/data/icons/table.svg +85 -0
- datalab/data/icons/table_unavailable.svg +102 -0
- datalab/data/icons/to_signal.svg +124 -0
- datalab/data/icons/tour/next.svg +44 -0
- datalab/data/icons/tour/previous.svg +44 -0
- datalab/data/icons/tour/rewind.svg +51 -0
- datalab/data/icons/tour/stop.svg +47 -0
- datalab/data/icons/tour/tour.svg +16 -0
- datalab/data/icons/uncheck_all.svg +78 -0
- datalab/data/icons/view/curve_antialiasing.svg +50 -0
- datalab/data/icons/view/new_window.svg +98 -0
- datalab/data/icons/view/refresh-auto.svg +57 -0
- datalab/data/icons/view/refresh-manual.svg +51 -0
- datalab/data/icons/view/reset_curve_styles.svg +96 -0
- datalab/data/icons/view/show_first.svg +55 -0
- datalab/data/icons/view/show_titles.svg +46 -0
- datalab/data/icons/visualization.svg +51 -0
- datalab/data/logo/DataLab-Banner-150.png +0 -0
- datalab/data/logo/DataLab-Banner-200.png +0 -0
- datalab/data/logo/DataLab-Banner2-100.png +0 -0
- datalab/data/logo/DataLab-Splash.png +0 -0
- datalab/data/logo/DataLab-watermark.png +0 -0
- datalab/data/logo/DataLab.svg +83 -0
- datalab/data/tests/reordering_test.h5 +0 -0
- datalab/data/tutorials/fabry_perot/fabry-perot1.jpg +0 -0
- datalab/data/tutorials/fabry_perot/fabry-perot2.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_13.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_18.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_23.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_30.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_35.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_40.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_45.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_50.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_55.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_60.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_65.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_70.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_75.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_80.jpg +0 -0
- datalab/env.py +542 -0
- datalab/gui/__init__.py +89 -0
- datalab/gui/actionhandler.py +1701 -0
- datalab/gui/docks.py +473 -0
- datalab/gui/h5io.py +150 -0
- datalab/gui/macroeditor.py +310 -0
- datalab/gui/main.py +2081 -0
- datalab/gui/newobject.py +217 -0
- datalab/gui/objectview.py +766 -0
- datalab/gui/panel/__init__.py +48 -0
- datalab/gui/panel/base.py +3254 -0
- datalab/gui/panel/image.py +157 -0
- datalab/gui/panel/macro.py +607 -0
- datalab/gui/panel/signal.py +164 -0
- datalab/gui/plothandler.py +800 -0
- datalab/gui/processor/__init__.py +84 -0
- datalab/gui/processor/base.py +2456 -0
- datalab/gui/processor/catcher.py +75 -0
- datalab/gui/processor/image.py +1214 -0
- datalab/gui/processor/signal.py +755 -0
- datalab/gui/profiledialog.py +333 -0
- datalab/gui/roieditor.py +633 -0
- datalab/gui/roigrideditor.py +208 -0
- datalab/gui/settings.py +612 -0
- datalab/gui/tour.py +908 -0
- datalab/h5/__init__.py +12 -0
- datalab/h5/common.py +314 -0
- datalab/h5/generic.py +580 -0
- datalab/h5/native.py +39 -0
- datalab/h5/utils.py +95 -0
- datalab/objectmodel.py +640 -0
- datalab/plugins/_readme_.txt +9 -0
- datalab/plugins/datalab_imageformats.py +175 -0
- datalab/plugins/datalab_testdata.py +190 -0
- datalab/plugins.py +355 -0
- datalab/tests/__init__.py +199 -0
- datalab/tests/backbone/__init__.py +1 -0
- datalab/tests/backbone/config_unit_test.py +170 -0
- datalab/tests/backbone/config_versioning_unit_test.py +34 -0
- datalab/tests/backbone/dictlistserial_app_test.py +38 -0
- datalab/tests/backbone/errorcatcher_unit_test.py +69 -0
- datalab/tests/backbone/errormsgbox_unit_test.py +50 -0
- datalab/tests/backbone/execenv_unit.py +262 -0
- datalab/tests/backbone/loadtest_gdi.py +147 -0
- datalab/tests/backbone/long_callback.py +96 -0
- datalab/tests/backbone/main_app_test.py +137 -0
- datalab/tests/backbone/memory_leak.py +43 -0
- datalab/tests/backbone/procisolation1_unit.py +128 -0
- datalab/tests/backbone/procisolation2_unit.py +171 -0
- datalab/tests/backbone/procisolation_unit_test.py +22 -0
- datalab/tests/backbone/profiling_app.py +27 -0
- datalab/tests/backbone/strings_unit_test.py +65 -0
- datalab/tests/backbone/title_formatting_unit_test.py +82 -0
- datalab/tests/conftest.py +131 -0
- datalab/tests/features/__init__.py +1 -0
- datalab/tests/features/applauncher/__init__.py +1 -0
- datalab/tests/features/applauncher/launcher1_app_test.py +28 -0
- datalab/tests/features/applauncher/launcher2_app_test.py +30 -0
- datalab/tests/features/common/__init__.py +1 -0
- datalab/tests/features/common/add_metadata_app_test.py +134 -0
- datalab/tests/features/common/add_metadata_unit_test.py +267 -0
- datalab/tests/features/common/annotations_management_unit_test.py +152 -0
- datalab/tests/features/common/auto_analysis_recompute_unit_test.py +240 -0
- datalab/tests/features/common/createobject_unit_test.py +50 -0
- datalab/tests/features/common/geometry_results_app_test.py +135 -0
- datalab/tests/features/common/interactive_processing_test.py +1109 -0
- datalab/tests/features/common/io_app_test.py +75 -0
- datalab/tests/features/common/large_results_app_test.py +187 -0
- datalab/tests/features/common/metadata_all_patterns_test.py +103 -0
- datalab/tests/features/common/metadata_app_test.py +139 -0
- datalab/tests/features/common/metadata_io_unit_test.py +60 -0
- datalab/tests/features/common/misc_app_test.py +236 -0
- datalab/tests/features/common/multiple_geometry_results_unit_test.py +122 -0
- datalab/tests/features/common/multiple_table_results_unit_test.py +64 -0
- datalab/tests/features/common/operation_modes_app_test.py +392 -0
- datalab/tests/features/common/plot_results_app_test.py +278 -0
- datalab/tests/features/common/reorder_app_test.py +75 -0
- datalab/tests/features/common/result_deletion_unit_test.py +96 -0
- datalab/tests/features/common/result_merged_label_unit_test.py +154 -0
- datalab/tests/features/common/result_shape_settings_unit_test.py +223 -0
- datalab/tests/features/common/roi_plotitem_unit_test.py +64 -0
- datalab/tests/features/common/roieditor_unit_test.py +102 -0
- datalab/tests/features/common/save_to_dir_app_test.py +163 -0
- datalab/tests/features/common/save_to_dir_unit_test.py +474 -0
- datalab/tests/features/common/stat_app_test.py +40 -0
- datalab/tests/features/common/stats_tools_unit_test.py +77 -0
- datalab/tests/features/common/table_results_app_test.py +52 -0
- datalab/tests/features/common/textimport_unit_test.py +131 -0
- datalab/tests/features/common/uuid_preservation_test.py +281 -0
- datalab/tests/features/common/worker_unit_test.py +402 -0
- datalab/tests/features/control/__init__.py +1 -0
- datalab/tests/features/control/connect_dialog.py +28 -0
- datalab/tests/features/control/embedded1_unit_test.py +304 -0
- datalab/tests/features/control/embedded2_unit_test.py +52 -0
- datalab/tests/features/control/remoteclient_app_test.py +219 -0
- datalab/tests/features/control/remoteclient_unit.py +75 -0
- datalab/tests/features/control/simpleclient_unit_test.py +321 -0
- datalab/tests/features/hdf5/__init__.py +1 -0
- datalab/tests/features/hdf5/h5browser1_unit_test.py +31 -0
- datalab/tests/features/hdf5/h5browser2_unit.py +55 -0
- datalab/tests/features/hdf5/h5browser_app_test.py +77 -0
- datalab/tests/features/hdf5/h5import_app_test.py +25 -0
- datalab/tests/features/hdf5/h5importer_app_test.py +34 -0
- datalab/tests/features/image/__init__.py +1 -0
- datalab/tests/features/image/annotations_app_test.py +28 -0
- datalab/tests/features/image/annotations_unit_test.py +80 -0
- datalab/tests/features/image/average_app_test.py +46 -0
- datalab/tests/features/image/background_dialog_test.py +70 -0
- datalab/tests/features/image/blobs_app_test.py +50 -0
- datalab/tests/features/image/contour_app_test.py +42 -0
- datalab/tests/features/image/contour_fabryperot_app_test.py +51 -0
- datalab/tests/features/image/denoise_app_test.py +31 -0
- datalab/tests/features/image/distribute_on_grid_app_test.py +95 -0
- datalab/tests/features/image/edges_app_test.py +31 -0
- datalab/tests/features/image/erase_app_test.py +21 -0
- datalab/tests/features/image/fft2d_app_test.py +27 -0
- datalab/tests/features/image/flatfield_app_test.py +40 -0
- datalab/tests/features/image/geometry_transform_unit_test.py +396 -0
- datalab/tests/features/image/imagetools_app_test.py +51 -0
- datalab/tests/features/image/imagetools_unit_test.py +27 -0
- datalab/tests/features/image/load_app_test.py +73 -0
- datalab/tests/features/image/morph_app_test.py +32 -0
- datalab/tests/features/image/offsetcorrection_app_test.py +30 -0
- datalab/tests/features/image/peak2d_app_test.py +53 -0
- datalab/tests/features/image/profile_app_test.py +73 -0
- datalab/tests/features/image/profile_dialog_test.py +56 -0
- datalab/tests/features/image/roi_app_test.py +98 -0
- datalab/tests/features/image/roi_circ_app_test.py +62 -0
- datalab/tests/features/image/roi_manipulation_app_test.py +268 -0
- datalab/tests/features/image/roigrid_unit_test.py +60 -0
- datalab/tests/features/image/side_by_side_app_test.py +52 -0
- datalab/tests/features/macro/__init__.py +1 -0
- datalab/tests/features/macro/macro_app_test.py +28 -0
- datalab/tests/features/macro/macroeditor_unit_test.py +102 -0
- datalab/tests/features/signal/__init__.py +1 -0
- datalab/tests/features/signal/baseline_dialog_test.py +53 -0
- datalab/tests/features/signal/deltax_dialog_unit_test.py +34 -0
- datalab/tests/features/signal/fft1d_app_test.py +26 -0
- datalab/tests/features/signal/filter_app_test.py +44 -0
- datalab/tests/features/signal/fitdialog_unit_test.py +50 -0
- datalab/tests/features/signal/interpolation_app_test.py +110 -0
- datalab/tests/features/signal/loadbigsignal_app_test.py +80 -0
- datalab/tests/features/signal/multiple_rois_unit_test.py +132 -0
- datalab/tests/features/signal/pulse_features_app_test.py +118 -0
- datalab/tests/features/signal/pulse_features_roi_app_test.py +55 -0
- datalab/tests/features/signal/roi_app_test.py +78 -0
- datalab/tests/features/signal/roi_manipulation_app_test.py +261 -0
- datalab/tests/features/signal/select_xy_cursor_unit_test.py +46 -0
- datalab/tests/features/signal/signalpeakdetection_dialog_test.py +33 -0
- datalab/tests/features/signal/signals_to_image_app_test.py +98 -0
- datalab/tests/features/signal/xarray_compat_app_test.py +128 -0
- datalab/tests/features/tour_unit_test.py +22 -0
- datalab/tests/features/utilities/__init__.py +1 -0
- datalab/tests/features/utilities/installconf_unit_test.py +21 -0
- datalab/tests/features/utilities/logview_app_test.py +21 -0
- datalab/tests/features/utilities/logview_error.py +24 -0
- datalab/tests/features/utilities/logview_unit_test.py +21 -0
- datalab/tests/features/utilities/memstatus_app_test.py +42 -0
- datalab/tests/features/utilities/settings_unit_test.py +88 -0
- datalab/tests/scenarios/__init__.py +1 -0
- datalab/tests/scenarios/beautiful_app.py +121 -0
- datalab/tests/scenarios/common.py +463 -0
- datalab/tests/scenarios/demo.py +212 -0
- datalab/tests/scenarios/example_app_test.py +47 -0
- datalab/tests/scenarios/scenario_h5_app_test.py +75 -0
- datalab/tests/scenarios/scenario_ima1_app_test.py +34 -0
- datalab/tests/scenarios/scenario_ima2_app_test.py +34 -0
- datalab/tests/scenarios/scenario_mac_app_test.py +58 -0
- datalab/tests/scenarios/scenario_sig1_app_test.py +36 -0
- datalab/tests/scenarios/scenario_sig2_app_test.py +35 -0
- datalab/utils/__init__.py +1 -0
- datalab/utils/conf.py +304 -0
- datalab/utils/dephash.py +105 -0
- datalab/utils/qthelpers.py +633 -0
- datalab/utils/strings.py +34 -0
- datalab/utils/tests.py +0 -0
- datalab/widgets/__init__.py +1 -0
- datalab/widgets/connection.py +138 -0
- datalab/widgets/filedialog.py +91 -0
- datalab/widgets/fileviewer.py +84 -0
- datalab/widgets/fitdialog.py +788 -0
- datalab/widgets/h5browser.py +1048 -0
- datalab/widgets/imagebackground.py +111 -0
- datalab/widgets/instconfviewer.py +175 -0
- datalab/widgets/logviewer.py +80 -0
- datalab/widgets/signalbaseline.py +90 -0
- datalab/widgets/signalcursor.py +208 -0
- datalab/widgets/signaldeltax.py +151 -0
- datalab/widgets/signalpeak.py +199 -0
- datalab/widgets/status.py +249 -0
- datalab/widgets/textimport.py +786 -0
- datalab/widgets/warningerror.py +223 -0
- datalab/widgets/wizard.py +286 -0
- datalab_platform-1.0.0.dist-info/METADATA +121 -0
- datalab_platform-1.0.0.dist-info/RECORD +494 -0
- datalab_platform-0.0.1.dev0.dist-info/METADATA +0 -67
- datalab_platform-0.0.1.dev0.dist-info/RECORD +0 -7
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.0.dist-info}/WHEEL +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.0.dist-info}/entry_points.txt +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.0.dist-info}/licenses/LICENSE +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,68 @@
|
|
|
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="svg6"
|
|
9
|
+
sodipodi:docname="metadata_export.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="defs10" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview8"
|
|
19
|
+
pagecolor="#ffffff"
|
|
20
|
+
bordercolor="#666666"
|
|
21
|
+
borderopacity="1.0"
|
|
22
|
+
inkscape:pageshadow="2"
|
|
23
|
+
inkscape:pageopacity="0.0"
|
|
24
|
+
inkscape:pagecheckerboard="0"
|
|
25
|
+
showgrid="false"
|
|
26
|
+
inkscape:zoom="59.428571"
|
|
27
|
+
inkscape:cx="5.9146635"
|
|
28
|
+
inkscape:cy="5.90625"
|
|
29
|
+
inkscape:window-width="1920"
|
|
30
|
+
inkscape:window-height="1017"
|
|
31
|
+
inkscape:window-x="-8"
|
|
32
|
+
inkscape:window-y="-8"
|
|
33
|
+
inkscape:window-maximized="1"
|
|
34
|
+
inkscape:current-layer="svg6"
|
|
35
|
+
inkscape:showpageshadow="2"
|
|
36
|
+
inkscape:deskcolor="#d1d1d1" />
|
|
37
|
+
<g
|
|
38
|
+
id="g882"
|
|
39
|
+
transform="matrix(0.80453486,0,0,0.80453486,1.0946557,1.368256)">
|
|
40
|
+
<path
|
|
41
|
+
d="m 0.40773791,0.03945634 c -0.29008998,0 -0.52539061,0.1689063 -0.52539061,0.3789063 V 13.66055 c 0,0.2101 0.23530063,0.378906 0.52539061,0.378906 H 5.2026598 c 0.29019,0 0.5234375,-0.168806 0.5234375,-0.378906 V 0.41836264 c 0,-0.21 -0.2332475,-0.3789063 -0.5234375,-0.3789063 z M 1.0932848,1.0980501 h 3.421875 v 3.2148438 h -3.421875 z m 0,4.2832032 h 3.421875 V 8.596097 h -3.421875 z m 0,4.2832026 h 3.421875 v 3.2167971 h -3.421875 z"
|
|
42
|
+
id="path2"
|
|
43
|
+
style="fill:#999999" />
|
|
44
|
+
<path
|
|
45
|
+
style="fill:#ccffcc;fill-opacity:1;stroke:#d45500;stroke-width:0.0129196"
|
|
46
|
+
d="M 0.56089341,2.5672787 V 0.5737384 H 2.8042224 5.0475512 V 2.5672787 4.5608189 H 2.8042224 0.56089341 Z"
|
|
47
|
+
id="path1898" />
|
|
48
|
+
<path
|
|
49
|
+
style="fill:#e6cccc;fill-opacity:1;stroke:#d45500;stroke-width:0.0129539"
|
|
50
|
+
d="M 0.56076251,6.9646774 V 4.9711544 H 2.8042224 5.0476821 v 1.993523 1.9935231 H 2.8042224 0.56076251 Z"
|
|
51
|
+
id="path1974" />
|
|
52
|
+
<path
|
|
53
|
+
style="fill:#f0f0f0;fill-opacity:1;stroke:#d45500;stroke-width:0.0129192"
|
|
54
|
+
d="M 0.56104805,11.362075 V 9.3685358 H 2.8042223 5.0473965 v 1.9935392 1.99354 H 2.8042223 0.56104805 Z"
|
|
55
|
+
id="path2050" />
|
|
56
|
+
</g>
|
|
57
|
+
<g
|
|
58
|
+
fill="#ff5722"
|
|
59
|
+
id="g8"
|
|
60
|
+
transform="matrix(0.93746091,0,0,0.93746091,0.36209356,0.40411976)">
|
|
61
|
+
<path
|
|
62
|
+
d="M 12.355,7 9.145,9.7 V 4.3 Z"
|
|
63
|
+
id="path4" />
|
|
64
|
+
<path
|
|
65
|
+
d="m 3.745,6.1 h 6.9 v 1.8 h -6.9 z"
|
|
66
|
+
id="path6" />
|
|
67
|
+
</g>
|
|
68
|
+
</svg>
|
|
@@ -0,0 +1,68 @@
|
|
|
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="svg6"
|
|
9
|
+
sodipodi:docname="metadata_import.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="defs10" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview8"
|
|
19
|
+
pagecolor="#ffffff"
|
|
20
|
+
bordercolor="#666666"
|
|
21
|
+
borderopacity="1.0"
|
|
22
|
+
inkscape:pageshadow="2"
|
|
23
|
+
inkscape:pageopacity="0.0"
|
|
24
|
+
inkscape:pagecheckerboard="0"
|
|
25
|
+
showgrid="false"
|
|
26
|
+
inkscape:zoom="59.428571"
|
|
27
|
+
inkscape:cx="5.9146635"
|
|
28
|
+
inkscape:cy="6.9831731"
|
|
29
|
+
inkscape:window-width="1920"
|
|
30
|
+
inkscape:window-height="1017"
|
|
31
|
+
inkscape:window-x="-8"
|
|
32
|
+
inkscape:window-y="-8"
|
|
33
|
+
inkscape:window-maximized="1"
|
|
34
|
+
inkscape:current-layer="svg6"
|
|
35
|
+
inkscape:showpageshadow="2"
|
|
36
|
+
inkscape:deskcolor="#d1d1d1" />
|
|
37
|
+
<g
|
|
38
|
+
id="g882"
|
|
39
|
+
transform="matrix(0.80453486,0,0,0.80453486,1.0946557,1.368256)">
|
|
40
|
+
<path
|
|
41
|
+
d="m 0.40773791,0.03945634 c -0.29008998,0 -0.52539061,0.1689063 -0.52539061,0.3789063 V 13.66055 c 0,0.2101 0.23530063,0.378906 0.52539061,0.378906 H 5.2026598 c 0.29019,0 0.5234375,-0.168806 0.5234375,-0.378906 V 0.41836264 c 0,-0.21 -0.2332475,-0.3789063 -0.5234375,-0.3789063 z M 1.0932848,1.0980501 h 3.421875 v 3.2148438 h -3.421875 z m 0,4.2832032 h 3.421875 V 8.596097 h -3.421875 z m 0,4.2832026 h 3.421875 v 3.2167971 h -3.421875 z"
|
|
42
|
+
id="path2"
|
|
43
|
+
style="fill:#999999" />
|
|
44
|
+
<path
|
|
45
|
+
style="fill:#ccffcc;fill-opacity:1;stroke:#d45500;stroke-width:0.0129196"
|
|
46
|
+
d="M 0.56089341,2.5672787 V 0.5737384 H 2.8042224 5.0475512 V 2.5672787 4.5608189 H 2.8042224 0.56089341 Z"
|
|
47
|
+
id="path1898" />
|
|
48
|
+
<path
|
|
49
|
+
style="fill:#e6cccc;fill-opacity:1;stroke:#d45500;stroke-width:0.0129539"
|
|
50
|
+
d="M 0.56076251,6.9646774 V 4.9711544 H 2.8042224 5.0476821 v 1.993523 1.9935231 H 2.8042224 0.56076251 Z"
|
|
51
|
+
id="path1974" />
|
|
52
|
+
<path
|
|
53
|
+
style="fill:#f0f0f0;fill-opacity:1;stroke:#d45500;stroke-width:0.0129192"
|
|
54
|
+
d="M 0.56104805,11.362075 V 9.3685358 H 2.8042223 5.0473965 v 1.9935392 1.99354 H 2.8042223 0.56104805 Z"
|
|
55
|
+
id="path2050" />
|
|
56
|
+
</g>
|
|
57
|
+
<g
|
|
58
|
+
fill="#e91e63"
|
|
59
|
+
id="g8"
|
|
60
|
+
transform="matrix(0.91274929,0,0,0.91274929,0.97897621,0.61075499)">
|
|
61
|
+
<path
|
|
62
|
+
d="M 3.64,7 6.85,4.3 v 5.4 z"
|
|
63
|
+
id="path4" />
|
|
64
|
+
<path
|
|
65
|
+
d="m 5.35,6.1 h 6.9 v 1.8 h -6.9 z"
|
|
66
|
+
id="path6" />
|
|
67
|
+
</g>
|
|
68
|
+
</svg>
|
|
@@ -0,0 +1,79 @@
|
|
|
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="svg6"
|
|
9
|
+
sodipodi:docname="metadata_paste.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="defs10" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview8"
|
|
19
|
+
pagecolor="#ffffff"
|
|
20
|
+
bordercolor="#666666"
|
|
21
|
+
borderopacity="1.0"
|
|
22
|
+
inkscape:pageshadow="2"
|
|
23
|
+
inkscape:pageopacity="0.0"
|
|
24
|
+
inkscape:pagecheckerboard="0"
|
|
25
|
+
showgrid="false"
|
|
26
|
+
inkscape:zoom="59.428571"
|
|
27
|
+
inkscape:cx="5.9146635"
|
|
28
|
+
inkscape:cy="8.2788462"
|
|
29
|
+
inkscape:window-width="1920"
|
|
30
|
+
inkscape:window-height="1017"
|
|
31
|
+
inkscape:window-x="-8"
|
|
32
|
+
inkscape:window-y="-8"
|
|
33
|
+
inkscape:window-maximized="1"
|
|
34
|
+
inkscape:current-layer="svg6"
|
|
35
|
+
inkscape:showpageshadow="2"
|
|
36
|
+
inkscape:deskcolor="#d1d1d1" />
|
|
37
|
+
<g
|
|
38
|
+
id="g882"
|
|
39
|
+
transform="matrix(0.80453486,0,0,0.80453486,1.0946557,1.368256)">
|
|
40
|
+
<path
|
|
41
|
+
d="m 0.40773791,0.03945634 c -0.29008998,0 -0.52539061,0.1689063 -0.52539061,0.3789063 V 13.66055 c 0,0.2101 0.23530063,0.378906 0.52539061,0.378906 H 5.2026598 c 0.29019,0 0.5234375,-0.168806 0.5234375,-0.378906 V 0.41836264 c 0,-0.21 -0.2332475,-0.3789063 -0.5234375,-0.3789063 z M 1.0932848,1.0980501 h 3.421875 v 3.2148438 h -3.421875 z m 0,4.2832032 h 3.421875 V 8.596097 h -3.421875 z m 0,4.2832026 h 3.421875 v 3.2167971 h -3.421875 z"
|
|
42
|
+
id="path2"
|
|
43
|
+
style="fill:#999999" />
|
|
44
|
+
<path
|
|
45
|
+
style="fill:#ccffcc;fill-opacity:1;stroke:#d45500;stroke-width:0.0129196"
|
|
46
|
+
d="M 0.56089341,2.5672787 V 0.5737384 H 2.8042224 5.0475512 V 2.5672787 4.5608189 H 2.8042224 0.56089341 Z"
|
|
47
|
+
id="path1898" />
|
|
48
|
+
<path
|
|
49
|
+
style="fill:#e6cccc;fill-opacity:1;stroke:#d45500;stroke-width:0.0129539"
|
|
50
|
+
d="M 0.56076251,6.9646774 V 4.9711544 H 2.8042224 5.0476821 v 1.993523 1.9935231 H 2.8042224 0.56076251 Z"
|
|
51
|
+
id="path1974" />
|
|
52
|
+
<path
|
|
53
|
+
style="fill:#f0f0f0;fill-opacity:1;stroke:#d45500;stroke-width:0.0129192"
|
|
54
|
+
d="M 0.56104805,11.362075 V 9.3685358 H 2.8042223 5.0473965 v 1.9935392 1.99354 H 2.8042223 0.56104805 Z"
|
|
55
|
+
id="path2050" />
|
|
56
|
+
</g>
|
|
57
|
+
<g
|
|
58
|
+
id="g1016"
|
|
59
|
+
transform="matrix(0.81634845,0,0,0.81634845,1.5232716,1.2082185)">
|
|
60
|
+
<rect
|
|
61
|
+
style="fill:#aaccff;stroke:#d45500;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
|
|
62
|
+
id="rect991"
|
|
63
|
+
width="6.7790279"
|
|
64
|
+
height="6.9265242"
|
|
65
|
+
x="4.6328125"
|
|
66
|
+
y="3.4551136" />
|
|
67
|
+
<rect
|
|
68
|
+
style="fill:#aaccff;stroke:#d45500;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
|
|
69
|
+
id="rect991-2"
|
|
70
|
+
width="4.4232593"
|
|
71
|
+
height="4.1164284"
|
|
72
|
+
x="7.766736"
|
|
73
|
+
y="6.5655842" />
|
|
74
|
+
<path
|
|
75
|
+
d="M 11.125783,9.6749069 H 8.8175127 V 8.976419 h 2.3082703 z m -7.9e-4,-1.290258 H 8.8174888 V 7.6861608 H 11.124993 Z M 11.422987,4.9411872 H 6.9970833 V 11.367325 H 12.875567 V 6.3924861 Z m 0.521272,5.4948288 H 7.9284152 V 5.8724959 h 2.7960868 v 1.0554847 h 1.219757 z M 6.1687195,9.625 H 4.6328125 V 3.4551137 h 1.4047351 l 0.58013,0.5820774 H 8.555959 L 9.1438464,3.4551137 h 1.3329326 v 0.7410727 h 0.942936 V 2.5276869 h -1.326404 c -0.2116981,0 -0.4147851,-0.083776 -0.5649271,-0.2330081 L 9.021597,1.7904027 H 6.111258 L 5.6044951,2.2946325 C 5.4543609,2.4438888 5.2512902,2.527663 5.0395764,2.527663 H 3.7131486 v 8.040268 h 2.4555709 z"
|
|
76
|
+
id="path2-1"
|
|
77
|
+
style="fill:#0066ff;stroke-width:0.798077" />
|
|
78
|
+
</g>
|
|
79
|
+
</svg>
|
|
@@ -0,0 +1,55 @@
|
|
|
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="move_down.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="29.892857"
|
|
28
|
+
inkscape:cx="13.080048"
|
|
29
|
+
inkscape:cy="4.1983274"
|
|
30
|
+
inkscape:window-width="1920"
|
|
31
|
+
inkscape:window-height="991"
|
|
32
|
+
inkscape:window-x="-9"
|
|
33
|
+
inkscape:window-y="-9"
|
|
34
|
+
inkscape:window-maximized="1"
|
|
35
|
+
inkscape:current-layer="svg12" />
|
|
36
|
+
<ellipse
|
|
37
|
+
style="fill:#ffffff;stroke:none;stroke-width:2;stroke-linecap:round"
|
|
38
|
+
id="path2"
|
|
39
|
+
cx="-7.0000005"
|
|
40
|
+
cy="-6.9999995"
|
|
41
|
+
rx="3.4958184"
|
|
42
|
+
ry="3.7968936"
|
|
43
|
+
transform="scale(-1)" />
|
|
44
|
+
<g
|
|
45
|
+
style="fill:none;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
46
|
+
transform="matrix(-0.13526215,0,0,-0.13526215,13.086797,13.086797)"
|
|
47
|
+
id="g2">
|
|
48
|
+
<path
|
|
49
|
+
d="M 0,45 C 0,69.853 20.147,90 45,90 69.853,90 90,69.853 90,45 90,20.147 69.853,0 45,0 20.147,0 0,20.147 0,45 Z M 46.209,21.459 64.575,39.825 c 0.668,0.668 0.668,1.75 0,2.418 l -6.055,6.055 c -0.668,0.668 -1.751,0.668 -2.418,0 l -5.11,-5.111 v 24.144 c 0,0.944 -0.766,1.71 -1.71,1.71 h -8.563 c -0.944,0 -1.71,-0.766 -1.71,-1.71 V 43.187 l -5.111,5.111 c -0.668,0.668 -1.751,0.668 -2.418,0 l -6.055,-6.055 c -0.668,-0.668 -0.668,-1.751 0,-2.418 L 43.791,21.459 c 0.668,-0.668 1.751,-0.668 2.418,0 z"
|
|
50
|
+
style="opacity:1;fill:#5ba0d0;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
51
|
+
stroke-linecap="round"
|
|
52
|
+
id="path1" />
|
|
53
|
+
|
|
54
|
+
</g>
|
|
55
|
+
</svg>
|
|
@@ -0,0 +1,54 @@
|
|
|
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="move_up.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="29.892857"
|
|
28
|
+
inkscape:cx="13.080048"
|
|
29
|
+
inkscape:cy="4.1983274"
|
|
30
|
+
inkscape:window-width="1920"
|
|
31
|
+
inkscape:window-height="991"
|
|
32
|
+
inkscape:window-x="-9"
|
|
33
|
+
inkscape:window-y="-9"
|
|
34
|
+
inkscape:window-maximized="1"
|
|
35
|
+
inkscape:current-layer="svg12" />
|
|
36
|
+
<ellipse
|
|
37
|
+
style="fill:#ffffff;stroke:none;stroke-width:2;stroke-linecap:round"
|
|
38
|
+
id="path2"
|
|
39
|
+
cx="7"
|
|
40
|
+
cy="7.000001"
|
|
41
|
+
rx="3.4958184"
|
|
42
|
+
ry="3.7968936" />
|
|
43
|
+
<g
|
|
44
|
+
style="fill:none;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
45
|
+
transform="matrix(0.13526215,0,0,0.13526215,0.9132035,0.9132035)"
|
|
46
|
+
id="g2">
|
|
47
|
+
<path
|
|
48
|
+
d="M 0,45 C 0,69.853 20.147,90 45,90 69.853,90 90,69.853 90,45 90,20.147 69.853,0 45,0 20.147,0 0,20.147 0,45 Z M 46.209,21.459 64.575,39.825 c 0.668,0.668 0.668,1.75 0,2.418 l -6.055,6.055 c -0.668,0.668 -1.751,0.668 -2.418,0 l -5.11,-5.111 v 24.144 c 0,0.944 -0.766,1.71 -1.71,1.71 h -8.563 c -0.944,0 -1.71,-0.766 -1.71,-1.71 V 43.187 l -5.111,5.111 c -0.668,0.668 -1.751,0.668 -2.418,0 l -6.055,-6.055 c -0.668,-0.668 -0.668,-1.751 0,-2.418 L 43.791,21.459 c 0.668,-0.668 1.751,-0.668 2.418,0 z"
|
|
49
|
+
style="opacity:1;fill:#5ba0d0;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
50
|
+
stroke-linecap="round"
|
|
51
|
+
id="path1" />
|
|
52
|
+
|
|
53
|
+
</g>
|
|
54
|
+
</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
|
+
version="1.1"
|
|
8
|
+
id="svg12"
|
|
9
|
+
sodipodi:docname="new_group.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="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="6.2330153"
|
|
29
|
+
inkscape:cy="7.2619951"
|
|
30
|
+
inkscape:window-width="1920"
|
|
31
|
+
inkscape:window-height="1017"
|
|
32
|
+
inkscape:window-x="-8"
|
|
33
|
+
inkscape:window-y="-8"
|
|
34
|
+
inkscape:window-maximized="1"
|
|
35
|
+
inkscape:current-layer="svg12" />
|
|
36
|
+
<path
|
|
37
|
+
style="fill:#37474f;fill-opacity:1;stroke-width:0.0283859"
|
|
38
|
+
d="M 6.8296648,6.2443952 C 5.1630385,5.5656538 1.8498204,4.1646697 1.7789376,4.1087109 1.5025462,3.8905091 1.4800142,3.4944286 1.7294168,3.2382259 1.8405063,3.1241066 2.0039025,3.0514944 4.345882,2.0754702 6.5932984,1.1388551 6.8595177,1.0343842 6.9999828,1.0339318 c 0.1415059,-3.633e-4 0.390015,0.09695 2.6541007,1.0402832 2.3522085,0.9800497 2.5048905,1.0479296 2.6164655,1.1632569 0.249319,0.2577033 0.226926,0.6519036 -0.04951,0.871831 -0.05551,0.044159 -1.158863,0.5197575 -2.5669417,1.1064682 C 7.5864819,6.0772998 7.159093,6.2461719 7.0283823,6.253264 6.9425113,6.257924 6.8530974,6.2539906 6.8296786,6.244414 Z"
|
|
39
|
+
id="path468" />
|
|
40
|
+
<path
|
|
41
|
+
style="fill:#e6e6e6;fill-opacity:1;stroke-width:0.0283859"
|
|
42
|
+
d="M 8.6321836,4.3315814 C 9.5064757,3.9681026 10.230488,3.6632333 10.241101,3.6540937 10.251674,3.6449595 9.5273918,3.332242 8.6315001,2.959184 L 7.0026097,2.2808951 5.3619985,2.965448 C 4.4596615,3.3419539 3.7277741,3.6507492 3.73558,3.6516593 c 0.00783,9.084e-4 0.7422977,0.3067549 1.6322008,0.6796531 0.8899054,0.3728999 1.6307817,0.6742049 1.6463938,0.6695669 0.015607,-0.00461 0.7437167,-0.3058214 1.618009,-0.6692979 z"
|
|
43
|
+
id="path470" />
|
|
44
|
+
<path
|
|
45
|
+
style="fill:#37474f;fill-opacity:1;stroke-width:0.0283859"
|
|
46
|
+
d="M 6.8296648,8.555918 C 6.7047945,8.5138635 1.9668561,6.5342623 1.8572542,6.4783472 1.7992771,6.4487701 1.72075,6.3829396 1.682745,6.3320546 1.3828407,5.9304968 1.650263,5.366658 2.1420241,5.3636968 2.2889687,5.3627885 2.4934964,5.4425038 4.6384238,6.3363819 6.122015,6.9546554 6.9974976,7.3052811 7.0370482,7.2970226 7.0713075,7.2898568 8.1340078,6.8517267 9.3986083,6.3233765 11.510477,5.4410359 11.710928,5.3628176 11.85794,5.3637005 c 0.420368,0.0025 0.706337,0.4392481 0.53752,0.8208844 C 12.31933,6.3566469 12.267463,6.4146095 12.123673,6.488199 12.061243,6.520158 10.92436,6.998606 9.5973109,7.5514122 7.1367723,8.5763955 7.0182294,8.6194195 6.8296648,8.555918 Z"
|
|
47
|
+
id="path466" />
|
|
48
|
+
<path
|
|
49
|
+
style="fill:#475b63;fill-opacity:1;stroke-width:0.0283859"
|
|
50
|
+
d="M 6.8012757,10.738642 C 6.2414245,10.520938 1.8794269,8.6854904 1.8017182,8.6349215 1.6736432,8.551578 1.5497412,8.3147523 1.5501286,8.1540355 1.5504917,8.0267197 1.653419,7.7820185 1.7384714,7.7065142 1.8523252,7.6054423 2.0631461,7.5345575 2.200317,7.551231 2.278995,7.560811 3.2500251,7.9502309 4.6555214,8.5359024 6.171646,9.1676718 7.001233,9.4994853 7.0399531,9.4896143 7.0726131,9.4812143 8.1276204,9.0454211 9.3844144,8.521022 10.755609,7.9488883 11.721549,7.5611371 11.799648,7.5514906 c 0.137204,-0.01695 0.347723,0.053715 0.461846,0.1550236 0.08505,0.075507 0.188036,0.3202055 0.188343,0.4475213 3.64e-4,0.1605988 -0.123509,0.3974956 -0.251591,0.4810624 -0.05663,0.036946 -1.213433,0.5299779 -2.5706822,1.0956284 -1.7603477,0.7336367 -2.5048743,1.0310367 -2.5973281,1.0374947 -0.071286,0.0046 -0.1743128,-0.0085 -0.2289567,-0.02957 z"
|
|
51
|
+
id="path464" />
|
|
52
|
+
<path
|
|
53
|
+
style="fill:#576e79;fill-opacity:1;stroke-width:0.0283859"
|
|
54
|
+
d="M 6.8722457,12.954603 C 6.6969628,12.909251 1.8442374,10.871475 1.7585568,10.807248 1.5332822,10.638388 1.4799938,10.238454 1.6505101,9.996368 1.6966271,9.930898 1.7918411,9.846607 1.8620975,9.809066 2.1201858,9.6711498 2.0703906,9.6546621 4.6666067,10.737631 l 2.336137,0.974492 2.3333759,-0.974308 C 11.929153,9.6551011 11.880146,9.6713468 12.137865,9.809066 c 0.07022,0.0375 0.165472,0.121825 0.211588,0.187302 0.170493,0.242052 0.11739,0.64091 -0.108041,0.81153 -0.11818,0.08944 -5.0284225,2.133784 -5.1723701,2.153474 -0.061397,0.0086 -0.1499568,0.0049 -0.196792,-0.0071 z"
|
|
55
|
+
id="path438" />
|
|
56
|
+
<g
|
|
57
|
+
id="g3798"
|
|
58
|
+
transform="matrix(0.54267566,0,0,0.54267566,6.7985787,6.8695433)">
|
|
59
|
+
<circle
|
|
60
|
+
cx="7"
|
|
61
|
+
cy="7"
|
|
62
|
+
r="6"
|
|
63
|
+
fill="#4caf50"
|
|
64
|
+
id="circle2915" />
|
|
65
|
+
<g
|
|
66
|
+
fill="#ffffff"
|
|
67
|
+
id="g2921">
|
|
68
|
+
<path
|
|
69
|
+
d="M 6.1428571,4.1428571 H 7.8571429 V 9.8571429 H 6.1428571 Z"
|
|
70
|
+
id="path2917" />
|
|
71
|
+
<path
|
|
72
|
+
d="M 4.1428571,6.1428571 H 9.8571429 V 7.8571429 H 4.1428571 Z"
|
|
73
|
+
id="path2919" />
|
|
74
|
+
</g>
|
|
75
|
+
</g>
|
|
76
|
+
</svg>
|
|
@@ -0,0 +1,60 @@
|
|
|
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="recompute.svg"
|
|
10
|
+
inkscape:version="1.4.2 (f4327f4, 2025-05-13)"
|
|
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="defs4" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview4"
|
|
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
|
+
inkscape:zoom="40.759655"
|
|
27
|
+
inkscape:cx="5.0172161"
|
|
28
|
+
inkscape:cy="6.7591347"
|
|
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="svg4" />
|
|
35
|
+
<g
|
|
36
|
+
id="g4"
|
|
37
|
+
transform="matrix(0.85863706,0,0,0.85863706,0.9895406,0.9895406)">
|
|
38
|
+
<path
|
|
39
|
+
fill="#4caf50"
|
|
40
|
+
d="M 11.909091,3.1818182 H 2.0909091 c -0.6,0 -1.090909,0.4909091 -1.090909,1.0909091 V 8.6363636 H 13 V 4.2727273 c 0,-0.6 -0.490909,-1.0909091 -1.090909,-1.0909091 z"
|
|
41
|
+
id="path1" />
|
|
42
|
+
<path
|
|
43
|
+
fill="#37474f"
|
|
44
|
+
d="m 1.0000001,8.6363636 v 1.0909091 c 0,0.6000003 0.490909,1.0909093 1.090909,1.0909093 H 6.7272727 V 9.4545454 C 6.7272727,9.2909091 6.8363636,9.1818182 7,9.1818182 c 0.1636364,0 0.2727273,0.1090909 0.2727273,0.2727272 v 1.3636366 h 4.6363637 c 0.6,0 1.090909,-0.490909 1.090909,-1.0909093 V 8.6363636 Z"
|
|
45
|
+
id="path2" />
|
|
46
|
+
<path
|
|
47
|
+
fill="#ff9800"
|
|
48
|
+
d="M 2.3636364,9.1818182 H 2.909091 V 10.818182 H 2.3636364 Z m 1.0909091,0 H 4 V 10.818182 H 3.4545455 Z m 1.0909091,0 H 5.0909091 V 10.818182 H 4.5454546 Z m 1.0909091,0 H 6.1818182 V 10.818182 H 5.6363637 Z m 2.1818181,0 H 8.3636364 V 10.818182 H 7.8181818 Z m 1.0909091,0 H 9.4545454 V 10.818182 H 8.9090909 Z m 1.0909091,0 h 0.545455 V 10.818182 H 10 Z m 1.090909,0 h 0.545455 v 1.6363638 h -0.545455 z"
|
|
49
|
+
id="path3" />
|
|
50
|
+
<path
|
|
51
|
+
fill="#37474f"
|
|
52
|
+
d="M 5.9090909,4.8181818 H 8.0909091 V 7.5454545 H 5.9090909 Z m 3.2727273,0 H 11.363636 V 7.5454545 H 9.1818182 Z m -6.5454545,0 H 4.8181818 V 7.5454545 H 2.6363637 Z"
|
|
53
|
+
id="path4" />
|
|
54
|
+
</g>
|
|
55
|
+
<path
|
|
56
|
+
d="M 13.326373,4.5232812 V 1.3196483 L 12.268847,2.3771737 C 11.417443,1.4781506 10.339672,0.8356297 9.1342289,0.51264309 7.4005908,0.04817872 5.5898929,0.28650754 4.0359293,1.1839205 2.4817306,2.0813338 1.3701446,3.5301691 0.90544564,5.2635725 0.44098205,6.9972068 0.67931333,8.8076768 1.5767246,10.361876 c 0.8971824,1.55419 2.3462462,2.665777 4.0796555,3.130246 0.5718908,0.153206 1.151383,0.227054 1.7253505,0.227054 2.323239,0 4.5517074,-1.210968 5.7803864,-3.266436 L 11.877308,9.6848424 C 10.686585,11.676357 8.287886,12.647387 6.0437771,12.046273 4.6963935,11.685329 3.5703096,10.821277 2.8730394,9.6133016 2.1757691,8.4053257 1.990348,6.9981259 2.351525,5.6509715 2.7124669,4.3035874 3.5765201,3.1775066 4.7844968,2.4802345 5.9922448,1.7827327 7.3994414,1.5975448 8.7468249,1.9584887 9.6969244,2.2131498 10.542574,2.7247752 11.207871,3.4381506 l -1.08513,1.0851306 z"
|
|
57
|
+
style="fill:#417ce5;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.230047;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
58
|
+
stroke-linecap="round"
|
|
59
|
+
id="path1-4" />
|
|
60
|
+
</svg>
|
|
@@ -0,0 +1,49 @@
|
|
|
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="rename.svg"
|
|
10
|
+
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
|
|
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="6.221188"
|
|
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
|
+
<g
|
|
37
|
+
id="g3"
|
|
38
|
+
transform="matrix(0.59749028,0,0,0.59749028,-0.16988336,-0.4686285)">
|
|
39
|
+
<path
|
|
40
|
+
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"
|
|
41
|
+
id="path1-4"
|
|
42
|
+
style="fill:#666666" />
|
|
43
|
+
<path
|
|
44
|
+
style="fill:#cccccc;stroke-width:0.842627;stroke-linecap:square;stroke-dashoffset:1.1932"
|
|
45
|
+
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"
|
|
46
|
+
id="path3"
|
|
47
|
+
transform="scale(0.03)" />
|
|
48
|
+
</g>
|
|
49
|
+
</svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
+
<path d="M 69.098 89 H 8.442 C 4.332 89 1 85.668 1 81.558 V 8.442 C 1 4.332 4.332 1 8.442 1 h 73.115 C 85.668 1 89 4.332 89 8.442 v 60.656 C 89 80.09 80.09 89 69.098 89 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(220,235,244); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round" />
|
|
7
|
+
<path d="M 61.381 51.08 l -11.384 -3.479 c -1.47 -0.449 -2.845 0.926 -2.396 2.396 l 3.479 11.384 c 0.501 1.64 1.397 3.132 2.61 4.344 l 21.708 21.708 c 2.089 2.089 5.476 2.089 7.565 0 l 4.47 -4.47 c 2.089 -2.089 2.089 -5.476 0 -7.565 L 65.725 53.69 C 64.513 52.477 63.021 51.581 61.381 51.08 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(255,246,164); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round" />
|
|
8
|
+
<path d="M 63.409 90 H 8.08 C 3.625 90 0 86.375 0 81.92 V 8.08 C 0 3.625 3.625 0 8.08 0 h 73.84 C 86.375 0 90 3.625 90 8.08 v 57.44 c 0 0.553 -0.447 1 -1 1 s -1 -0.447 -1 -1 V 8.08 C 88 4.728 85.272 2 81.92 2 H 8.08 C 4.728 2 2 4.728 2 8.08 v 73.84 C 2 85.272 4.728 88 8.08 88 h 55.329 c 0.553 0 1 0.447 1 1 S 63.962 90 63.409 90 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round" />
|
|
9
|
+
<path d="M 79.181 89.997 c -1.626 0 -3.252 -0.619 -4.489 -1.856 L 52.982 66.433 c -1.323 -1.324 -2.312 -2.971 -2.858 -4.76 l -3.479 -11.384 c -0.316 -1.034 -0.038 -2.151 0.728 -2.916 c 0.765 -0.766 1.887 -1.046 2.916 -0.728 l 11.384 3.479 c 1.789 0.547 3.436 1.535 4.76 2.858 l 21.708 21.709 c 2.476 2.476 2.476 6.503 0 8.979 l -4.471 4.471 C 82.433 89.378 80.807 89.997 79.181 89.997 z M 49.425 48.515 c -0.324 0 -0.545 0.18 -0.638 0.272 c -0.117 0.117 -0.375 0.441 -0.229 0.918 l 3.479 11.384 c 0.452 1.478 1.268 2.836 2.36 3.93 l 21.709 21.708 c 1.695 1.695 4.455 1.695 6.15 0 l 4.471 -4.471 c 1.695 -1.695 1.695 -4.455 0 -6.15 L 65.019 54.396 c -1.094 -1.093 -2.452 -1.908 -3.93 -2.36 l 0 0 l -11.384 -3.479 C 49.604 48.527 49.511 48.515 49.425 48.515 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round" />
|
|
10
|
+
<path d="M 70.886 83.922 c -0.256 0 -0.512 -0.098 -0.707 -0.293 c -0.391 -0.391 -0.391 -1.023 0 -1.414 l 12.036 -12.036 c 0.391 -0.391 1.023 -0.391 1.414 0 s 0.391 1.023 0 1.414 L 71.593 83.629 C 71.397 83.824 71.142 83.922 70.886 83.922 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round" />
|
|
11
|
+
<path d="M 72.719 22 H 17.281 c -0.552 0 -1 -0.448 -1 -1 s 0.448 -1 1 -1 h 55.438 c 0.553 0 1 0.448 1 1 S 73.271 22 72.719 22 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round" />
|
|
12
|
+
<path d="M 72.719 38 H 17.281 c -0.552 0 -1 -0.448 -1 -1 s 0.448 -1 1 -1 h 55.438 c 0.553 0 1 0.448 1 1 S 73.271 38 72.719 38 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round" />
|
|
13
|
+
<path d="M 32.719 54 H 17.281 c -0.552 0 -1 -0.447 -1 -1 s 0.448 -1 1 -1 h 15.438 c 0.552 0 1 0.447 1 1 S 33.271 54 32.719 54 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round" />
|
|
14
|
+
<path d="M 42.719 70 H 17.281 c -0.552 0 -1 -0.447 -1 -1 s 0.448 -1 1 -1 h 25.438 c 0.552 0 1 0.447 1 1 S 43.271 70 42.719 70 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round" />
|
|
15
|
+
</g>
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
fill="#000000"
|
|
6
|
+
width="800px"
|
|
7
|
+
height="800px"
|
|
8
|
+
viewBox="0 0 32 32"
|
|
9
|
+
version="1.1"
|
|
10
|
+
id="svg1224"
|
|
11
|
+
sodipodi:docname="expand.svg"
|
|
12
|
+
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
|
|
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
|
+
<defs
|
|
18
|
+
id="defs1228" />
|
|
19
|
+
<sodipodi:namedview
|
|
20
|
+
id="namedview1226"
|
|
21
|
+
pagecolor="#ffffff"
|
|
22
|
+
bordercolor="#000000"
|
|
23
|
+
borderopacity="0.25"
|
|
24
|
+
inkscape:showpageshadow="2"
|
|
25
|
+
inkscape:pageopacity="0.0"
|
|
26
|
+
inkscape:pagecheckerboard="0"
|
|
27
|
+
inkscape:deskcolor="#d1d1d1"
|
|
28
|
+
showgrid="false"
|
|
29
|
+
inkscape:zoom="1.07875"
|
|
30
|
+
inkscape:cx="340.67207"
|
|
31
|
+
inkscape:cy="400.4635"
|
|
32
|
+
inkscape:window-width="1920"
|
|
33
|
+
inkscape:window-height="1017"
|
|
34
|
+
inkscape:window-x="-8"
|
|
35
|
+
inkscape:window-y="-8"
|
|
36
|
+
inkscape:window-maximized="1"
|
|
37
|
+
inkscape:current-layer="svg1224" />
|
|
38
|
+
<title
|
|
39
|
+
id="title1220">expand</title>
|
|
40
|
+
<path
|
|
41
|
+
d="M13.816 5.989l-7.785 0.046 0.003 7.735 2.59-2.591 3.454 3.454 2.665-2.665-3.453-3.454 2.526-2.525zM12.079 17.35l-3.454 3.455-2.59-2.592-0.003 7.799 7.785-0.018-2.526-2.525 3.454-3.453-2.666-2.666zM19.922 14.633l3.453-3.454 2.59 2.591 0.004-7.735-7.785-0.046 2.526 2.525-3.454 3.454 2.666 2.665zM23.375 20.805l-3.453-3.455-2.666 2.666 3.454 3.453-2.526 2.525 7.785 0.018-0.004-7.799-2.59 2.592z"
|
|
42
|
+
id="path1222"
|
|
43
|
+
style="fill:#2b7c2b;fill-opacity:1" />
|
|
44
|
+
</svg>
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
fill="#000000"
|
|
6
|
+
width="800px"
|
|
7
|
+
height="800px"
|
|
8
|
+
viewBox="0 0 32 32"
|
|
9
|
+
version="1.1"
|
|
10
|
+
id="svg1224"
|
|
11
|
+
sodipodi:docname="expand_selection.svg"
|
|
12
|
+
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
|
|
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
|
+
<defs
|
|
21
|
+
id="defs1228" />
|
|
22
|
+
<sodipodi:namedview
|
|
23
|
+
id="namedview1226"
|
|
24
|
+
pagecolor="#ffffff"
|
|
25
|
+
bordercolor="#000000"
|
|
26
|
+
borderopacity="0.25"
|
|
27
|
+
inkscape:showpageshadow="2"
|
|
28
|
+
inkscape:pageopacity="0.0"
|
|
29
|
+
inkscape:pagecheckerboard="0"
|
|
30
|
+
inkscape:deskcolor="#d1d1d1"
|
|
31
|
+
showgrid="false"
|
|
32
|
+
inkscape:zoom="1.07875"
|
|
33
|
+
inkscape:cx="340.67207"
|
|
34
|
+
inkscape:cy="400.4635"
|
|
35
|
+
inkscape:window-width="1920"
|
|
36
|
+
inkscape:window-height="1017"
|
|
37
|
+
inkscape:window-x="-8"
|
|
38
|
+
inkscape:window-y="-8"
|
|
39
|
+
inkscape:window-maximized="1"
|
|
40
|
+
inkscape:current-layer="svg1224" />
|
|
41
|
+
<title
|
|
42
|
+
id="title1220">expand</title>
|
|
43
|
+
<path
|
|
44
|
+
d="M13.816 5.989l-7.785 0.046 0.003 7.735 2.59-2.591 3.454 3.454 2.665-2.665-3.453-3.454 2.526-2.525zM12.079 17.35l-3.454 3.455-2.59-2.592-0.003 7.799 7.785-0.018-2.526-2.525 3.454-3.453-2.666-2.666zM19.922 14.633l3.453-3.454 2.59 2.591 0.004-7.735-7.785-0.046 2.526 2.525-3.454 3.454 2.666 2.665zM23.375 20.805l-3.453-3.455-2.666 2.666 3.454 3.453-2.526 2.525 7.785 0.018-0.004-7.799-2.59 2.592z"
|
|
45
|
+
id="path1222"
|
|
46
|
+
style="fill:#2b7c2b;fill-opacity:1" />
|
|
47
|
+
<rect
|
|
48
|
+
style="fill:#ffd42a;fill-opacity:1;stroke:#da6500;stroke-width:0.65271;stroke-dasharray:none;stroke-opacity:1"
|
|
49
|
+
id="rect3271"
|
|
50
|
+
width="6.7517533"
|
|
51
|
+
height="6.3881974"
|
|
52
|
+
x="12.642662"
|
|
53
|
+
y="12.787361" />
|
|
54
|
+
<metadata
|
|
55
|
+
id="metadata3847">
|
|
56
|
+
<rdf:RDF>
|
|
57
|
+
<cc:Work
|
|
58
|
+
rdf:about="">
|
|
59
|
+
<dc:title>expand</dc:title>
|
|
60
|
+
</cc:Work>
|
|
61
|
+
</rdf:RDF>
|
|
62
|
+
</metadata>
|
|
63
|
+
</svg>
|