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.
- 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.1.dist-info/METADATA +121 -0
- datalab_platform-1.0.1.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.1.dist-info}/WHEEL +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.1.dist-info}/entry_points.txt +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.1.dist-info}/licenses/LICENSE +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,56 @@
|
|
|
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="cdffit.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="5.7362665"
|
|
29
|
+
inkscape:cy="8.5038672"
|
|
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="6.7340684"
|
|
42
|
+
y="0.70784807" />
|
|
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="6.7340684"
|
|
49
|
+
y="-13.258801"
|
|
50
|
+
transform="rotate(90)" />
|
|
51
|
+
<path
|
|
52
|
+
inkscape:connector-curvature="0"
|
|
53
|
+
style="display:inline;fill:none;stroke:#da251d;stroke-width:0.35;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
54
|
+
id="polyline5583"
|
|
55
|
+
d="m 0.6472668,11.395052 c 0.7510193,-0.0013 1.5020626,-2.41e-4 2.2530597,-0.0071 0.4522235,-0.0084 0.9089066,-0.01571 1.352473,-0.128025 0.3571009,-0.09411 0.6974463,-0.286013 0.9657851,-0.57419 C 5.5630193,10.32606 5.8185202,9.8720644 6.0426042,9.408023 6.7247962,7.958075 7.1631795,6.3795808 7.8108723,4.9107929 8.0255903,4.4256253 8.2654554,3.9481541 8.5836858,3.5412161 8.813751,3.2473526 9.0946387,2.9985198 9.4183425,2.85668 9.7859553,2.6929372 10.183187,2.6478678 10.574216,2.6279943 c 0.689746,-0.031694 1.380172,-0.014962 2.070238,-0.022779 0.236105,-5.229e-4 0.472212,-6.69e-5 0.708319,-2.674e-4" />
|
|
56
|
+
</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="expfit.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="4.6244952"
|
|
29
|
+
inkscape:cy="9.2371631"
|
|
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:1;stroke-width:0.547874"
|
|
38
|
+
id="rect28089"
|
|
39
|
+
width="0.53186357"
|
|
40
|
+
height="12.584304"
|
|
41
|
+
x="6.7340684"
|
|
42
|
+
y="0.70784807" />
|
|
43
|
+
<rect
|
|
44
|
+
style="fill:#696969;fill-opacity:1;stroke-width:0.54642"
|
|
45
|
+
id="rect28089-7"
|
|
46
|
+
width="0.53186357"
|
|
47
|
+
height="12.5176"
|
|
48
|
+
x="6.7340684"
|
|
49
|
+
y="-13.258801"
|
|
50
|
+
transform="rotate(90)" />
|
|
51
|
+
<path
|
|
52
|
+
d="m 0.61482615,11.270947 0.080858,-0.01105 0.080858,-0.01127 0.080858,-0.0115 0.080859,-0.01173 0.080858,-0.01197 0.080858,-0.01221 0.080858,-0.01246 0.080859,-0.01271 0.080858,-0.01297 0.080858,-0.01323 0.080858,-0.0135 0.080859,-0.01378 0.080858,-0.01405 0.080858,-0.01434 0.080858,-0.01463 0.080858,-0.01492 0.080859,-0.01522 0.080858,-0.01553 0.080858,-0.01584 0.080858,-0.01616 0.080858,-0.01649 0.080858,-0.01683 0.080858,-0.01716 0.080858,-0.01751 0.080858,-0.01787 0.080859,-0.01823 0.080858,-0.01859 0.080858,-0.01897 0.080858,-0.01935 0.080858,-0.01974 0.080858,-0.02014 0.080858,-0.02055 0.080858,-0.02096 0.080858,-0.02138 0.080859,-0.02182 0.080858,-0.02226 0.080858,-0.02271 0.080859,-0.02317 0.080858,-0.02364 0.080858,-0.02411 0.080858,-0.0246 0.080858,-0.02509 0.080858,-0.02561 0.080858,-0.02612 0.080858,-0.02665 0.080858,-0.02719 0.080859,-0.02773 0.080858,-0.0283 0.080858,-0.02887 0.080858,-0.02945 0.080859,-0.03005 0.080858,-0.03065 0.080858,-0.03127 0.080858,-0.0319 0.080858,-0.03255 0.080858,-0.03321 0.080858,-0.03387 0.080858,-0.03456 0.080859,-0.03526 0.080858,-0.03597 0.080858,-0.03669 0.080858,-0.03744 0.080858,-0.0382 0.080859,-0.03896 0.080858,-0.03975 0.080858,-0.04056 0.080858,-0.04138 0.080858,-0.04222 0.080859,-0.04307 0.080858,-0.04394 0.080858,-0.04482 0.080859,-0.04573 0.080857,-0.04665 0.080858,-0.0476 0.080858,-0.04856 0.080858,-0.04954 0.080859,-0.05054 0.080858,-0.05156 0.080857,-0.0526 0.080859,-0.05366 0.080858,-0.05474 0.080858,-0.05585 0.080858,-0.05698 0.080858,-0.05814 0.080858,-0.05931 0.080857,-0.0605 0.080858,-0.06173 0.080858,-0.06298 0.080858,-0.06424 0.080858,-0.06554 0.080858,-0.06687 0.080858,-0.06821 0.080858,-0.0696 0.080858,-0.071 0.080859,-0.07244 0.080858,-0.0739 0.080858,-0.07539 0.080858,-0.07692 0.080858,-0.07847 0.080858,-0.08006 0.080858,-0.08167 0.080858,-0.08332 0.080859,-0.085 0.080857,-0.08672 0.080858,-0.08847 0.080858,-0.09026 0.080858,-0.092084 0.080859,-0.093945 0.080857,-0.095844 0.080858,-0.097778 0.080858,-0.099755 0.08084,-0.1017767 0.080859,-0.1038259 0.080858,-0.1059222 0.080858,-0.1080632 0.080858,-0.1102454 0.08086,-0.1124732 0.08086,-0.1147439 0.08086,-0.1170638 0.08086,-0.119426 L 10.39865,5.6649295 10.47951,5.540629 10.56037,5.4138162 10.64123,5.2844418 10.72209,5.1524542 10.80295,5.0178003 10.88381,4.8804253 10.96467,4.7402752 11.04553,4.5972954 11.12639,4.4514263 11.20725,4.3026095 11.28811,4.1507876 11.36897,3.9958984 11.44983,3.8378798 11.53069,3.6766703 11.61155,3.5122025 11.69241,3.3444138 11.77327,3.173234 11.85413,2.9985973 11.93499,2.8204317 12.01585,2.6386678 12.09671,2.453232 12.17757,2.26405 12.25843,2.0710459 12.33929,1.874144 12.42015,1.6732629 12.50101,1.4683243 12.58187,1.2592455 12.66273,1.0459428 12.74359,0.82833252"
|
|
53
|
+
style="fill:none;stroke:#da251d;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
54
|
+
id="path5900" />
|
|
55
|
+
</svg>
|
|
@@ -0,0 +1,62 @@
|
|
|
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="gaussfit.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="7.3428913"
|
|
29
|
+
inkscape:cy="10.253286"
|
|
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="6.7340684"
|
|
42
|
+
y="0.70784807" />
|
|
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="6.7340684"
|
|
49
|
+
y="-13.258801"
|
|
50
|
+
transform="rotate(90)" />
|
|
51
|
+
<g
|
|
52
|
+
id="0"
|
|
53
|
+
transform="matrix(0.00175808,0,0,0.00175808,0.09950175,1.2070302)"
|
|
54
|
+
style="fill-rule:evenodd;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision;stroke-width:199.08081544;stroke-dasharray:none">
|
|
55
|
+
<path
|
|
56
|
+
class="fil1 str1"
|
|
57
|
+
d="m 260,5786 v 0 h 24 25 24 25 24 25 24 25 l 24,-1 h 24 25 24 25 l 24,-2 h 25 24 l 25,-1 h 24 l 25,-1 h 24 l 25,-1 h 24 l 25,-1 24,-1 h 25 l 24,-2 25,-1 24,-1 25,-2 24,-1 24,-2 25,-2 24,-1 25,-2 24,-3 25,-2 24,-4 25,-2 24,-3 25,-4 24,-3 25,-4 24,-5 25,-4 24,-6 25,-5 24,-6 25,-7 24,-7 23,-6 25,-7 24,-10 25,-8 24,-10 25,-10 24,-11 25,-12 24,-12 25,-14 24,-14 25,-15 24,-15 25,-18 24,-17 25,-19 24,-21 24,-21 25,-22 24,-23 25,-26 24,-25 25,-28 24,-28 25,-31 24,-32 25,-33 24,-35 25,-36 24,-38 25,-40 24,-42 25,-43 24,-44 25,-47 24,-49 25,-50 24,-53 24,-53 25,-56 24,-57 25,-60 24,-60 25,-63 24,-66 25,-66 24,-68 25,-69 24,-73 25,-72 24,-76 25,-76 24,-76 25,-80 24,-80 25,-82 24,-81 25,-84 24,-84 24,-85 25,-86 24,-87 25,-86 24,-87 25,-88 24,-87 25,-88 24,-86 25,-87 24,-85 25,-85 24,-86 25,-82 24,-83 25,-80 24,-81 25,-77 24,-76 25,-74 24,-71 24,-70 25,-68 24,-64 25,-62 24,-59 25,-56 24,-52 25,-51 24,-45 25,-43 24,-40 25,-35 24,-32 25,-28 24,-24 25,-21 24,-16 25,-12 24,-8 25,-4 h 23 l 24,4 25,8 24,12 25,16 24,21 25,24 24,28 25,32 24,35 25,40 24,43 24,45 25,51 24,52 25,56 24,59 25,62 24,64 25,68 24,70 25,71 24,74 25,76 24,77 25,81 24,80 25,83 24,82 25,86 24,85 25,85 24,87 24,86 25,88 24,87 25,88 24,87 25,86 24,87 25,86 24,85 25,84 24,84 25,81 24,82 25,80 24,80 25,76 24,76 25,76 24,72 25,73 24,69 24,68 25,66 24,66 25,63 24,60 25,60 24,57 25,56 24,53 25,53 24,50 25,49 24,47 25,44 24,43 25,42 24,40 25,38 24,36 25,35 24,33 24,32 25,31 24,28 25,28 24,25 25,26 24,23 25,22 24,21 25,21 24,19 25,17 24,18 25,15 24,15 25,14 24,14 25,12 24,12 25,11 24,10 24,10 25,8 24,10 25,7 23,6 25,7 24,7 25,6 24,5 25,6 24,4 25,5 24,4 24,3 25,4 24,3 25,2 24,4 25,2 24,3 25,2 24,1 25,2 24,2 25,1 24,2 25,1 24,1 25,2 h 24 l 25,1 24,1 h 25 l 24,1 h 24 l 25,1 h 24 l 25,1 h 24 25 l 24,2 h 25 24 25 24 l 25,1 h 24 25 24 25 24 25 24 25"
|
|
58
|
+
id="path6"
|
|
59
|
+
style="fill:none;stroke:#da251d;stroke-width:199.08081544;stroke-linejoin:bevel;stroke-dasharray:none" />
|
|
60
|
+
|
|
61
|
+
</g>
|
|
62
|
+
</svg>
|
|
@@ -0,0 +1,101 @@
|
|
|
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="interactive_fit.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="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="-1.6794842"
|
|
29
|
+
inkscape:cy="12.51334"
|
|
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="g5"
|
|
38
|
+
transform="matrix(0.03054242,0,0,0.03054242,-0.89402465,-1.0144076)">
|
|
39
|
+
<path
|
|
40
|
+
fill="#597b91"
|
|
41
|
+
d="M 463.962,58.145 H 52.959 c -7.574,0 -13.713,6.14 -13.713,13.713 V 454.75 c 0,6.577 5.692,11.91 12.714,11.91 h 413.002 c 7.022,0 12.714,-5.332 12.714,-11.91 V 71.858 c -10e-4,-7.574 -6.14,-13.713 -13.714,-13.713 z"
|
|
42
|
+
id="path1" />
|
|
43
|
+
<circle
|
|
44
|
+
fill="#d32a2a"
|
|
45
|
+
cx="64.638"
|
|
46
|
+
cy="90.449997"
|
|
47
|
+
r="9.349"
|
|
48
|
+
id="circle1" />
|
|
49
|
+
<circle
|
|
50
|
+
fill="#132028"
|
|
51
|
+
cx="450.448"
|
|
52
|
+
cy="90.449997"
|
|
53
|
+
r="9.349"
|
|
54
|
+
id="circle2" />
|
|
55
|
+
<circle
|
|
56
|
+
fill="#59cafc"
|
|
57
|
+
cx="94.792999"
|
|
58
|
+
cy="90.449997"
|
|
59
|
+
r="9.349"
|
|
60
|
+
id="circle3" />
|
|
61
|
+
<path
|
|
62
|
+
fill="#ffffff"
|
|
63
|
+
d="m 401.169,101.021 h -262.88 c -5.589,0 -10.12,-4.531 -10.12,-10.12 v -0.903 c 0,-5.589 4.531,-10.12 10.12,-10.12 h 262.88 c 5.589,0 10.12,4.531 10.12,10.12 v 0.903 c 0,5.59 -4.531,10.12 -10.12,10.12 z"
|
|
64
|
+
id="path3" />
|
|
65
|
+
<path
|
|
66
|
+
fill="#cfd3d3"
|
|
67
|
+
d="m 172.378,101.021 h -33.637 c -5.839,0 -10.572,-4.733 -10.572,-10.572 0,-5.839 4.733,-10.572 10.572,-10.572 h 33.637 z"
|
|
68
|
+
id="path4" />
|
|
69
|
+
<path
|
|
70
|
+
fill="#e0e0e0"
|
|
71
|
+
d="m 61.234,122.755 v 312.127 c 0,6.325 5.122,11.452 11.44,11.452 h 371.63 c 6.318,0 11.44,-5.127 11.44,-11.452 V 122.755 Z"
|
|
72
|
+
id="path5" />
|
|
73
|
+
</g>
|
|
74
|
+
<g
|
|
75
|
+
id="g1"
|
|
76
|
+
transform="matrix(0.780813,0,0,0.780813,1.5343079,2.2516394)">
|
|
77
|
+
<rect
|
|
78
|
+
style="fill:#696969;fill-opacity:0.817241;stroke-width:0.547874"
|
|
79
|
+
id="rect28089"
|
|
80
|
+
width="0.53186357"
|
|
81
|
+
height="12.584304"
|
|
82
|
+
x="6.7340684"
|
|
83
|
+
y="0.70784807" />
|
|
84
|
+
<rect
|
|
85
|
+
style="fill:#696969;fill-opacity:0.817241;stroke-width:0.54642"
|
|
86
|
+
id="rect28089-7"
|
|
87
|
+
width="0.53186357"
|
|
88
|
+
height="12.5176"
|
|
89
|
+
x="6.7340684"
|
|
90
|
+
y="-13.258801"
|
|
91
|
+
transform="rotate(90)" />
|
|
92
|
+
<path
|
|
93
|
+
id="polynomial"
|
|
94
|
+
fill="none"
|
|
95
|
+
stroke="#ff0000"
|
|
96
|
+
stroke-width="0.0220592px"
|
|
97
|
+
stroke-linecap="square"
|
|
98
|
+
d="M 1.4802918,12.652509 C 1.5813427,10.919553 1.683854,9.4700874 1.787925,8.2631271 1.9848785,5.9789651 2.1878911,4.5578968 2.3979754,3.7319625 c 0.1798512,-0.707079 0.3654747,-0.9803001 0.55794,-0.9803001 0.181306,0 0.3693161,0.2424595 0.5656265,0.5984318 0.1804159,0.3271591 0.3683373,0.7510777 0.5662799,1.1757575 0.1716158,0.3681895 0.3502025,0.7357348 0.5394129,1.045121 0.1619925,0.2648851 0.3280405,0.4810326 0.5029593,0.624551 0.160301,0.1315191 0.319231,0.1948129 0.4814762,0.1948129 0.1851295,0 0.3656689,-0.082406 0.5456398,-0.2156352 C 6.3732036,6.0148713 6.5849776,5.78435 6.7960982,5.5474512 7.0259146,5.2895728 7.2545129,5.0246472 7.4855457,4.8367801 7.680207,4.6784873 7.8753077,4.5759539 8.074378,4.5759539 c 0.1582171,0 0.3152868,0.064765 0.4744308,0.2086082 0.1658245,0.1498806 0.3258577,0.3783471 0.4842766,0.6773829 0.1760475,0.3323088 0.343375,0.7390633 0.5054844,1.1837737 0.1888361,0.5180298 0.3681922,1.0809663 0.5407622,1.6174084 0.19575,0.6084878 0.382681,1.1826017 0.562723,1.6113762 0.188592,0.4491337 0.370157,0.7400667 0.545891,0.7400667 0.259497,0 0.507629,-0.6343677 0.746495,-2.3514429 0.200709,-1.4427734 0.395555,-3.6548845 0.585269,-6.9156378"
|
|
99
|
+
style="stroke:#da251d;stroke-width:0.35;stroke-dasharray:none;stroke-opacity:1" />
|
|
100
|
+
</g>
|
|
101
|
+
</svg>
|
|
@@ -0,0 +1,57 @@
|
|
|
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="linearfit.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="5.7362665"
|
|
29
|
+
inkscape:cy="8.5038672"
|
|
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="6.7340684"
|
|
42
|
+
y="0.70784807" />
|
|
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="6.7340684"
|
|
49
|
+
y="-13.258801"
|
|
50
|
+
transform="rotate(90)" />
|
|
51
|
+
<path
|
|
52
|
+
inkscape:connector-curvature="0"
|
|
53
|
+
style="display:inline;fill:none;stroke:#da251d;stroke-width:0.35;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
54
|
+
id="polyline5583"
|
|
55
|
+
d="m 0.6472668,11.395052 c 0,0 12.3803542,-8.396692 12.7055062,-8.7901041"
|
|
56
|
+
sodipodi:nodetypes="cc" />
|
|
57
|
+
</svg>
|
|
@@ -0,0 +1,209 @@
|
|
|
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="lorenztfit.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="5.6179929"
|
|
29
|
+
inkscape:cy="6.25667"
|
|
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="6.7340684"
|
|
42
|
+
y="0.70784807" />
|
|
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="6.7340684"
|
|
49
|
+
y="-13.258801"
|
|
50
|
+
transform="rotate(90)" />
|
|
51
|
+
<g
|
|
52
|
+
transform="matrix(0.02859249,0,0,0.02859249,-1.7208957,0.09993511)"
|
|
53
|
+
id="g3796"
|
|
54
|
+
style="stroke-width:14.1233;stroke-dasharray:none">
|
|
55
|
+
<polyline
|
|
56
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
57
|
+
id="polyline94"
|
|
58
|
+
points="102.938,391.714 103.7,391.635 104.462,391.555 105.225,391.474 105.987,391.393 106.75,391.31 107.513,391.227 108.275,391.142 109.038,391.057 109.8,390.971 110.563,390.883 111.325,390.795 112.087,390.706 112.85,390.616 113.612,390.524 114.375,390.432 115.138,390.339 115.9,390.245 116.663,390.149 117.425,390.052 118.188,389.955 118.95,389.855 119.712,389.755 120.475,389.654 121.237,389.552 122,389.448 122.763,389.343 123.525,389.237 124.288,389.13 125.05,389.021 125.813,388.911 126.575,388.8 127.337,388.688 128.1,388.573 128.862,388.458 129.625,388.341 130.388,388.223 131.15,388.103 131.913,387.982 132.675,387.859 133.438,387.735 134.2,387.609 134.962,387.481 135.725,387.353 136.487,387.222 137.25,387.089 138.013,386.955 138.775,386.819 139.538,386.682 140.3,386.542 141.063,386.401 141.825,386.258 142.587,386.113 143.35,385.967 144.112,385.818 144.875,385.667 145.638,385.515 146.4,385.36 147.163,385.203 147.925,385.044 148.688,384.883 149.45,384.719 150.212,384.554 150.975,384.386 151.737,384.216 152.5,384.043 153.263,383.869 154.025,383.691 154.788,383.511 155.55,383.329 156.313,383.144 157.075,382.956 157.837,382.766 158.6,382.573 159.362,382.377 160.125,382.179 160.888,381.977 161.65,381.772 162.413,381.565 163.175,381.354 163.938,381.141 164.7,380.924 165.462,380.704 166.225,380.481 166.987,380.254 167.75,380.024 168.513,379.791 169.275,379.553 170.038,379.313 170.8,379.068 171.563,378.82 172.325,378.568 173.087,378.312 173.85,378.051 174.612,377.787 175.375,377.519 176.138,377.246 176.9,376.969 177.663,376.688 178.425,376.402 179.188,376.111 179.95,375.816 180.712,375.516 181.475,375.21 182.237,374.9 183,374.585 183.763,374.265 184.525,373.939 185.288,373.607 186.05,373.271 186.813,372.928 187.575,372.579 188.337,372.225 189.1,371.864 189.862,371.497 190.625,371.124 191.388,370.744 192.15,370.357 192.913,369.964 193.675,369.564 194.438,369.156 195.2,368.742 195.962,368.319 196.725,367.89 197.487,367.452 198.25,367.006 199.013,366.553 199.775,366.09 200.538,365.62 201.3,365.14 202.063,364.652 202.825,364.154 203.587,363.647 204.35,363.13 205.112,362.604 205.875,362.067 206.638,361.52 207.4,360.962 208.163,360.393 208.925,359.813 209.688,359.222 210.45,358.62 211.212,358.005 211.975,357.377 212.737,356.738 213.5,356.085 214.263,355.419 215.025,354.74 215.788,354.047 216.55,353.339 217.313,352.617 218.075,351.88 218.837,351.127 219.6,350.359 220.362,349.575 221.125,348.773 221.888,347.956 222.65,347.12 223.413,346.266 224.175,345.394 224.938,344.503 225.7,343.593 226.462,342.663 227.225,341.712 227.987,340.741 228.75,339.748 229.513,338.732 230.275,337.694 231.038,336.633 231.8,335.548 232.563,334.438 233.325,333.304 234.087,332.144 234.85,330.956 235.612,329.742 236.375,328.5 237.138,327.229 237.9,325.928 238.663,324.597 239.425,323.235 240.188,321.841 240.95,320.415 241.712,318.955 242.475,317.46 243.237,315.931 244,314.364 244.763,312.761 245.525,311.12 246.288,309.439 247.05,307.719 247.813,305.958 248.575,304.154 249.337,302.308 250.1,300.417 250.862,298.481 251.625,296.499 252.388,294.47 253.15,292.393 253.913,290.266 254.675,288.088 255.438,285.86 256.2,283.579 256.962,281.244 257.725,278.854 258.487,276.41 259.25,273.909 260.013,271.35 260.775,268.733 261.538,266.058 262.3,263.322 263.063,260.526 263.825,257.668 264.587,254.75 265.35,251.769 266.112,248.725 266.875,245.619 267.638,242.45 268.4,239.218 269.163,235.924 269.925,232.568 270.688,229.15 271.45,225.672 272.212,222.135 272.975,218.54 273.737,214.888 274.5,211.181 275.263,207.422 276.025,203.614 276.788,199.759 277.55,195.86 278.313,191.921 279.075,187.947 279.837,183.941 280.6,179.91 281.362,175.858 282.125,171.792 282.888,167.718 283.65,163.643 284.413,159.575 285.175,155.521 285.938,151.49 286.7,147.491 287.462,143.535 288.225,139.629 288.987,135.786 289.75,132.015 290.513,128.328 291.275,124.736 292.038,121.25 292.8,117.882 293.563,114.645 294.325,111.548 295.087,108.605 295.85,105.826 296.612,103.223 297.375,100.805 298.138,98.5845 298.9,96.5693 299.663,94.769 300.425,93.1914 301.188,91.8438 301.95,90.7329 302.712,89.8628 303.475,89.2388 304.237,88.8628 305,88.7373 305.763,88.8628 306.525,89.2388 307.288,89.8628 308.05,90.7329 308.813,91.8438 309.575,93.1914 310.337,94.769 311.1,96.5693 311.862,98.5845 312.625,100.805 313.388,103.223 314.15,105.826 314.913,108.605 315.675,111.548" />
|
|
59
|
+
<polyline
|
|
60
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
61
|
+
id="polyline96"
|
|
62
|
+
points="101.413,391.87 102.175,391.792" />
|
|
63
|
+
<polyline
|
|
64
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
65
|
+
id="polyline98"
|
|
66
|
+
points="316.438,114.645 317.2,117.882 317.962,121.25 318.725,124.736 319.487,128.328 320.25,132.015 321.013,135.786 321.775,139.629 322.538,143.535 323.3,147.491 324.063,151.49 324.825,155.521 325.587,159.575 326.35,163.643 327.112,167.718 327.875,171.792 328.638,175.858 329.4,179.91 330.163,183.941 330.925,187.947 331.688,191.921 332.45,195.86 333.212,199.759 333.975,203.614 334.737,207.422 335.5,211.181 336.263,214.888 337.025,218.54 337.788,222.135 338.55,225.672 339.313,229.15 340.075,232.568 340.837,235.924 341.6,239.218 342.362,242.45 343.125,245.619 343.888,248.725 344.65,251.769 345.413,254.75 346.175,257.668 346.938,260.526 347.7,263.322 348.462,266.058 349.225,268.733 349.987,271.35 350.75,273.909 351.513,276.41 352.275,278.854 353.038,281.244 353.8,283.579 354.563,285.86 355.325,288.088 356.087,290.266 356.85,292.393 357.612,294.47 358.375,296.499 359.138,298.481 359.9,300.417 360.663,302.308 361.425,304.154 362.188,305.958 362.95,307.719 363.712,309.439 364.475,311.12 365.237,312.761 366,314.364 366.763,315.931 367.525,317.46 368.288,318.955 369.05,320.415 369.813,321.841 370.575,323.235 371.337,324.597 372.1,325.928 372.862,327.229 373.625,328.5 374.388,329.742 375.15,330.956 375.913,332.144 376.675,333.304 377.438,334.438 378.2,335.548 378.962,336.633 379.725,337.694 380.487,338.732 381.25,339.748 382.013,340.741 382.775,341.712 383.538,342.663 384.3,343.593 385.063,344.503 385.825,345.394 386.587,346.266 387.35,347.12 388.112,347.956 388.875,348.773 389.638,349.575 390.4,350.359 391.163,351.127 391.925,351.88 392.688,352.617 393.45,353.339 394.212,354.047 394.975,354.74 395.737,355.419 396.5,356.085 397.263,356.738 398.025,357.377 398.788,358.005 399.55,358.62 400.313,359.222 401.075,359.813 401.837,360.393 402.6,360.962 403.362,361.52 404.125,362.067 404.888,362.604 405.65,363.13 406.413,363.647 407.175,364.154 407.938,364.652 408.7,365.14 409.462,365.62 410.225,366.09 410.987,366.553 411.75,367.006 412.513,367.452 413.275,367.89 414.038,368.319 414.8,368.742 415.563,369.156 416.325,369.564 417.087,369.964 417.85,370.357 418.612,370.744 419.375,371.124 420.138,371.497 420.9,371.864 421.663,372.225 422.425,372.579 423.188,372.928 423.95,373.271 424.712,373.607 425.475,373.939 426.237,374.265 427,374.585 427.763,374.9 428.525,375.21 429.288,375.516 430.05,375.816 430.813,376.111 431.575,376.402 432.337,376.688 433.1,376.969 433.862,377.246 434.625,377.519 435.388,377.787 436.15,378.051 436.913,378.312 437.675,378.568 438.438,378.82 439.2,379.068 439.962,379.313 440.725,379.553 441.487,379.791 442.25,380.024 443.013,380.254 443.775,380.481 444.538,380.704 445.3,380.924 446.063,381.141 446.825,381.354 447.587,381.565 448.35,381.772 449.112,381.977 449.875,382.179 450.638,382.377 451.4,382.573 452.163,382.766 452.925,382.956 453.688,383.144 454.45,383.329 455.212,383.511 455.975,383.691 456.737,383.869 457.5,384.043 458.263,384.216 459.025,384.386 459.788,384.554 460.55,384.719 461.313,384.883 462.075,385.044 462.837,385.203 463.6,385.36 464.362,385.515 465.125,385.667 465.888,385.818 466.65,385.967 467.413,386.113 468.175,386.258 468.938,386.401 469.7,386.542 470.462,386.682 471.225,386.819 471.987,386.955 472.75,387.089 473.513,387.222 474.275,387.353 475.038,387.481 475.8,387.609 476.563,387.735 477.325,387.859 478.087,387.982 478.85,388.103 479.612,388.223 480.375,388.341 481.138,388.458 481.9,388.573 482.663,388.688 483.425,388.8 484.188,388.911 484.95,389.021 485.712,389.13 486.475,389.237 487.237,389.343 488,389.448 488.763,389.552 489.525,389.654 490.288,389.755 491.05,389.855 491.813,389.955 492.575,390.052 493.337,390.149 494.1,390.245 494.862,390.339 495.625,390.432 496.388,390.524 497.15,390.616 497.913,390.706 498.675,390.795 499.438,390.883 500.2,390.971 500.962,391.057 501.725,391.142 502.487,391.227 503.25,391.31 504.013,391.393 504.775,391.474 505.538,391.555 506.3,391.635 507.063,391.714 507.825,391.792 508.587,391.87 509.35,391.946 510.112,392.022 510.875,392.097 511.638,392.171 512.4,392.244 513.163,392.317 513.925,392.389 514.688,392.459 515.45,392.53 516.212,392.6 516.975,392.668 517.737,392.736 518.5,392.804 519.263,392.871 520.025,392.937 520.788,393.002 521.55,393.067 522.313,393.131 523.075,393.195 523.837,393.257 524.6,393.32 525.362,393.381 526.125,393.442 526.888,393.502 527.65,393.563 528.413,393.622 529.175,393.68 529.938,393.738 530.7,393.795 531.462,393.853 532.225,393.909 532.987,393.965 533.75,394.02" />
|
|
67
|
+
<polyline
|
|
68
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
69
|
+
id="polyline100"
|
|
70
|
+
points="100.65,391.946 101.413,391.87" />
|
|
71
|
+
<polyline
|
|
72
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
73
|
+
id="polyline102"
|
|
74
|
+
points="102.175,391.792 102.938,391.714" />
|
|
75
|
+
<polyline
|
|
76
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
77
|
+
id="polyline104"
|
|
78
|
+
points="99.8877,392.022 100.65,391.946" />
|
|
79
|
+
<polyline
|
|
80
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
81
|
+
id="polyline106"
|
|
82
|
+
points="99.125,392.097 99.8877,392.022" />
|
|
83
|
+
<polyline
|
|
84
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
85
|
+
id="polyline108"
|
|
86
|
+
points="98.3623,392.171 99.125,392.097" />
|
|
87
|
+
<polyline
|
|
88
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
89
|
+
id="polyline110"
|
|
90
|
+
points="97.6001,392.244 98.3623,392.171" />
|
|
91
|
+
<polyline
|
|
92
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
93
|
+
id="polyline112"
|
|
94
|
+
points="96.8374,392.317 97.6001,392.244" />
|
|
95
|
+
<polyline
|
|
96
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
97
|
+
id="polyline114"
|
|
98
|
+
points="96.0752,392.389 96.8374,392.317" />
|
|
99
|
+
<polyline
|
|
100
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
101
|
+
id="polyline116"
|
|
102
|
+
points="95.3125,392.459 96.0752,392.389" />
|
|
103
|
+
<polyline
|
|
104
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
105
|
+
id="polyline118"
|
|
106
|
+
points="94.5498,392.53 95.3125,392.459" />
|
|
107
|
+
<polyline
|
|
108
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
109
|
+
id="polyline120"
|
|
110
|
+
points="93.7876,392.6 94.5498,392.53" />
|
|
111
|
+
<polyline
|
|
112
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
113
|
+
id="polyline122"
|
|
114
|
+
points="93.0249,392.668 93.7876,392.6" />
|
|
115
|
+
<polyline
|
|
116
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
117
|
+
id="polyline124"
|
|
118
|
+
points="92.2627,392.736 93.0249,392.668" />
|
|
119
|
+
<polyline
|
|
120
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
121
|
+
id="polyline126"
|
|
122
|
+
points="91.5,392.804 92.2627,392.736" />
|
|
123
|
+
<polyline
|
|
124
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
125
|
+
id="polyline128"
|
|
126
|
+
points="90.7373,392.871 91.5,392.804" />
|
|
127
|
+
<polyline
|
|
128
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
129
|
+
id="polyline130"
|
|
130
|
+
points="89.9751,392.937 90.7373,392.871" />
|
|
131
|
+
<polyline
|
|
132
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
133
|
+
id="polyline132"
|
|
134
|
+
points="89.2124,393.002 89.9751,392.937" />
|
|
135
|
+
<polyline
|
|
136
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
137
|
+
id="polyline134"
|
|
138
|
+
points="88.4502,393.067 89.2124,393.002" />
|
|
139
|
+
<polyline
|
|
140
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
141
|
+
id="polyline136"
|
|
142
|
+
points="87.6875,393.131 88.4502,393.067" />
|
|
143
|
+
<polyline
|
|
144
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
145
|
+
id="polyline138"
|
|
146
|
+
points="86.9248,393.195 87.6875,393.131" />
|
|
147
|
+
<polyline
|
|
148
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
149
|
+
id="polyline140"
|
|
150
|
+
points="86.1626,393.257 86.9248,393.195" />
|
|
151
|
+
<polyline
|
|
152
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
153
|
+
id="polyline142"
|
|
154
|
+
points="85.3999,393.32 86.1626,393.257" />
|
|
155
|
+
<polyline
|
|
156
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
157
|
+
id="polyline144"
|
|
158
|
+
points="84.6377,393.381 85.3999,393.32" />
|
|
159
|
+
<polyline
|
|
160
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
161
|
+
id="polyline146"
|
|
162
|
+
points="83.875,393.442 84.6377,393.381" />
|
|
163
|
+
<polyline
|
|
164
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
165
|
+
id="polyline148"
|
|
166
|
+
points="83.1123,393.502 83.875,393.442" />
|
|
167
|
+
<polyline
|
|
168
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
169
|
+
id="polyline150"
|
|
170
|
+
points="82.3501,393.563 83.1123,393.502" />
|
|
171
|
+
<polyline
|
|
172
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
173
|
+
id="polyline152"
|
|
174
|
+
points="81.5874,393.622 82.3501,393.563" />
|
|
175
|
+
<polyline
|
|
176
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
177
|
+
id="polyline154"
|
|
178
|
+
points="80.8252,393.68 81.5874,393.622" />
|
|
179
|
+
<polyline
|
|
180
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
181
|
+
id="polyline156"
|
|
182
|
+
points="80.0625,393.738 80.8252,393.68" />
|
|
183
|
+
<polyline
|
|
184
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
185
|
+
id="polyline158"
|
|
186
|
+
points="79.2998,393.795 80.0625,393.738" />
|
|
187
|
+
<polyline
|
|
188
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
189
|
+
id="polyline160"
|
|
190
|
+
points="78.5376,393.853 79.2998,393.795" />
|
|
191
|
+
<polyline
|
|
192
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
193
|
+
id="polyline162"
|
|
194
|
+
points="77.7749,393.909 78.5376,393.853" />
|
|
195
|
+
<polyline
|
|
196
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
197
|
+
id="polyline164"
|
|
198
|
+
points="77.0127,393.965 77.7749,393.909" />
|
|
199
|
+
<polyline
|
|
200
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
201
|
+
id="polyline166"
|
|
202
|
+
points="76.25,394.02 77.0127,393.965"
|
|
203
|
+
transform="translate(0.01322523,0.00463424)" />
|
|
204
|
+
<polyline
|
|
205
|
+
style="fill:none;stroke:#da251d;stroke-width:14.1233;stroke-miterlimit:4;stroke-dasharray:none"
|
|
206
|
+
id="polyline168"
|
|
207
|
+
points="315.675,111.548 316.438,114.645" />
|
|
208
|
+
</g>
|
|
209
|
+
</svg>
|
|
@@ -0,0 +1,85 @@
|
|
|
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="multigaussfit.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="8.1017372"
|
|
29
|
+
inkscape:cy="6.989966"
|
|
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="6.7340684"
|
|
42
|
+
y="0.70784807" />
|
|
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="6.7340684"
|
|
49
|
+
y="-13.258801"
|
|
50
|
+
transform="rotate(90)" />
|
|
51
|
+
<g
|
|
52
|
+
id="g1"
|
|
53
|
+
transform="matrix(0.96267442,0,0,1,0.01952688,0)">
|
|
54
|
+
<g
|
|
55
|
+
id="0"
|
|
56
|
+
transform="matrix(6.7874995e-4,0,0,6.7874995e-4,0.34667491,7.5260217)"
|
|
57
|
+
style="fill-rule:evenodd;stroke-width:493.554;stroke-dasharray:none;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision">
|
|
58
|
+
<path
|
|
59
|
+
class="fil1 str1"
|
|
60
|
+
d="m 260,5786 v 0 h 24 25 24 25 24 25 24 25 l 24,-1 h 24 25 24 25 l 24,-2 h 25 24 l 25,-1 h 24 l 25,-1 h 24 l 25,-1 h 24 l 25,-1 24,-1 h 25 l 24,-2 25,-1 24,-1 25,-2 24,-1 24,-2 25,-2 24,-1 25,-2 24,-3 25,-2 24,-4 25,-2 24,-3 25,-4 24,-3 25,-4 24,-5 25,-4 24,-6 25,-5 24,-6 25,-7 24,-7 23,-6 25,-7 24,-10 25,-8 24,-10 25,-10 24,-11 25,-12 24,-12 25,-14 24,-14 25,-15 24,-15 25,-18 24,-17 25,-19 24,-21 24,-21 25,-22 24,-23 25,-26 24,-25 25,-28 24,-28 25,-31 24,-32 25,-33 24,-35 25,-36 24,-38 25,-40 24,-42 25,-43 24,-44 25,-47 24,-49 25,-50 24,-53 24,-53 25,-56 24,-57 25,-60 24,-60 25,-63 24,-66 25,-66 24,-68 25,-69 24,-73 25,-72 24,-76 25,-76 24,-76 25,-80 24,-80 25,-82 24,-81 25,-84 24,-84 24,-85 25,-86 24,-87 25,-86 24,-87 25,-88 24,-87 25,-88 24,-86 25,-87 24,-85 25,-85 24,-86 25,-82 24,-83 25,-80 24,-81 25,-77 24,-76 25,-74 24,-71 24,-70 25,-68 24,-64 25,-62 24,-59 25,-56 24,-52 25,-51 24,-45 25,-43 24,-40 25,-35 24,-32 25,-28 24,-24 25,-21 24,-16 25,-12 24,-8 25,-4 h 23 l 24,4 25,8 24,12 25,16 24,21 25,24 24,28 25,32 24,35 25,40 24,43 24,45 25,51 24,52 25,56 24,59 25,62 24,64 25,68 24,70 25,71 24,74 25,76 24,77 25,81 24,80 25,83 24,82 25,86 24,85 25,85 24,87 24,86 25,88 24,87 25,88 24,87 25,86 24,87 25,86 24,85 25,84 24,84 25,81 24,82 25,80 24,80 25,76 24,76 25,76 24,72 25,73 24,69 24,68 25,66 24,66 25,63 24,60 25,60 24,57 25,56 24,53 25,53 24,50 25,49 24,47 25,44 24,43 25,42 24,40 25,38 24,36 25,35 24,33 24,32 25,31 24,28 25,28 24,25 25,26 24,23 25,22 24,21 25,21 24,19 25,17 24,18 25,15 24,15 25,14 24,14 25,12 24,12 25,11 24,10 24,10 25,8 24,10 25,7 23,6 25,7 24,7 25,6 24,5 25,6 24,4 25,5 24,4 24,3 25,4 24,3 25,2 24,4 25,2 24,3 25,2 24,1 25,2 24,2 25,1 24,2 25,1 24,1 25,2 h 24 l 25,1 24,1 h 25 l 24,1 h 24 l 25,1 h 24 l 25,1 h 24 25 l 24,2 h 25 24 25 24 l 25,1 h 24 25 24 25 24 25 24 25"
|
|
61
|
+
id="path6"
|
|
62
|
+
style="fill:none;stroke:#da251d;stroke-width:493.554;stroke-linejoin:bevel;stroke-dasharray:none" />
|
|
63
|
+
</g>
|
|
64
|
+
<g
|
|
65
|
+
id="0-2"
|
|
66
|
+
transform="matrix(8.6283278e-4,0,0,0.00172612,4.7015894,1.4728893)"
|
|
67
|
+
style="fill-rule:evenodd;stroke-width:199.117;stroke-dasharray:none;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision">
|
|
68
|
+
<path
|
|
69
|
+
class="fil1 str1"
|
|
70
|
+
d="m 260,5786 v 0 h 24 25 24 25 24 25 24 25 l 24,-1 h 24 25 24 25 l 24,-2 h 25 24 l 25,-1 h 24 l 25,-1 h 24 l 25,-1 h 24 l 25,-1 24,-1 h 25 l 24,-2 25,-1 24,-1 25,-2 24,-1 24,-2 25,-2 24,-1 25,-2 24,-3 25,-2 24,-4 25,-2 24,-3 25,-4 24,-3 25,-4 24,-5 25,-4 24,-6 25,-5 24,-6 25,-7 24,-7 23,-6 25,-7 24,-10 25,-8 24,-10 25,-10 24,-11 25,-12 24,-12 25,-14 24,-14 25,-15 24,-15 25,-18 24,-17 25,-19 24,-21 24,-21 25,-22 24,-23 25,-26 24,-25 25,-28 24,-28 25,-31 24,-32 25,-33 24,-35 25,-36 24,-38 25,-40 24,-42 25,-43 24,-44 25,-47 24,-49 25,-50 24,-53 24,-53 25,-56 24,-57 25,-60 24,-60 25,-63 24,-66 25,-66 24,-68 25,-69 24,-73 25,-72 24,-76 25,-76 24,-76 25,-80 24,-80 25,-82 24,-81 25,-84 24,-84 24,-85 25,-86 24,-87 25,-86 24,-87 25,-88 24,-87 25,-88 24,-86 25,-87 24,-85 25,-85 24,-86 25,-82 24,-83 25,-80 24,-81 25,-77 24,-76 25,-74 24,-71 24,-70 25,-68 24,-64 25,-62 24,-59 25,-56 24,-52 25,-51 24,-45 25,-43 24,-40 25,-35 24,-32 25,-28 24,-24 25,-21 24,-16 25,-12 24,-8 25,-4 h 23 l 24,4 25,8 24,12 25,16 24,21 25,24 24,28 25,32 24,35 25,40 24,43 24,45 25,51 24,52 25,56 24,59 25,62 24,64 25,68 24,70 25,71 24,74 25,76 24,77 25,81 24,80 25,83 24,82 25,86 24,85 25,85 24,87 24,86 25,88 24,87 25,88 24,87 25,86 24,87 25,86 24,85 25,84 24,84 25,81 24,82 25,80 24,80 25,76 24,76 25,76 24,72 25,73 24,69 24,68 25,66 24,66 25,63 24,60 25,60 24,57 25,56 24,53 25,53 24,50 25,49 24,47 25,44 24,43 25,42 24,40 25,38 24,36 25,35 24,33 24,32 25,31 24,28 25,28 24,25 25,26 24,23 25,22 24,21 25,21 24,19 25,17 24,18 25,15 24,15 25,14 24,14 25,12 24,12 25,11 24,10 24,10 25,8 24,10 25,7 23,6 25,7 24,7 25,6 24,5 25,6 24,4 25,5 24,4 24,3 25,4 24,3 25,2 24,4 25,2 24,3 25,2 24,1 25,2 24,2 25,1 24,2 25,1 24,1 25,2 h 24 l 25,1 24,1 h 25 l 24,1 h 24 l 25,1 h 24 l 25,1 h 24 25 l 24,2 h 25 24 25 24 l 25,1 h 24 25 24 25 24 25 24 25"
|
|
71
|
+
id="path6-4"
|
|
72
|
+
style="fill:none;stroke:#da251d;stroke-width:199.117;stroke-linejoin:bevel;stroke-dasharray:none" />
|
|
73
|
+
</g>
|
|
74
|
+
<g
|
|
75
|
+
id="0-6"
|
|
76
|
+
transform="matrix(4.0899267e-4,0,0,9.9893282e-4,10.733566,5.6800927)"
|
|
77
|
+
style="fill-rule:evenodd;stroke-width:355.14;stroke-dasharray:none;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision">
|
|
78
|
+
<path
|
|
79
|
+
class="fil1 str1"
|
|
80
|
+
d="m 260,5786 v 0 h 24 25 24 25 24 25 24 25 l 24,-1 h 24 25 24 25 l 24,-2 h 25 24 l 25,-1 h 24 l 25,-1 h 24 l 25,-1 h 24 l 25,-1 24,-1 h 25 l 24,-2 25,-1 24,-1 25,-2 24,-1 24,-2 25,-2 24,-1 25,-2 24,-3 25,-2 24,-4 25,-2 24,-3 25,-4 24,-3 25,-4 24,-5 25,-4 24,-6 25,-5 24,-6 25,-7 24,-7 23,-6 25,-7 24,-10 25,-8 24,-10 25,-10 24,-11 25,-12 24,-12 25,-14 24,-14 25,-15 24,-15 25,-18 24,-17 25,-19 24,-21 24,-21 25,-22 24,-23 25,-26 24,-25 25,-28 24,-28 25,-31 24,-32 25,-33 24,-35 25,-36 24,-38 25,-40 24,-42 25,-43 24,-44 25,-47 24,-49 25,-50 24,-53 24,-53 25,-56 24,-57 25,-60 24,-60 25,-63 24,-66 25,-66 24,-68 25,-69 24,-73 25,-72 24,-76 25,-76 24,-76 25,-80 24,-80 25,-82 24,-81 25,-84 24,-84 24,-85 25,-86 24,-87 25,-86 24,-87 25,-88 24,-87 25,-88 24,-86 25,-87 24,-85 25,-85 24,-86 25,-82 24,-83 25,-80 24,-81 25,-77 24,-76 25,-74 24,-71 24,-70 25,-68 24,-64 25,-62 24,-59 25,-56 24,-52 25,-51 24,-45 25,-43 24,-40 25,-35 24,-32 25,-28 24,-24 25,-21 24,-16 25,-12 24,-8 25,-4 h 23 l 24,4 25,8 24,12 25,16 24,21 25,24 24,28 25,32 24,35 25,40 24,43 24,45 25,51 24,52 25,56 24,59 25,62 24,64 25,68 24,70 25,71 24,74 25,76 24,77 25,81 24,80 25,83 24,82 25,86 24,85 25,85 24,87 24,86 25,88 24,87 25,88 24,87 25,86 24,87 25,86 24,85 25,84 24,84 25,81 24,82 25,80 24,80 25,76 24,76 25,76 24,72 25,73 24,69 24,68 25,66 24,66 25,63 24,60 25,60 24,57 25,56 24,53 25,53 24,50 25,49 24,47 25,44 24,43 25,42 24,40 25,38 24,36 25,35 24,33 24,32 25,31 24,28 25,28 24,25 25,26 24,23 25,22 24,21 25,21 24,19 25,17 24,18 25,15 24,15 25,14 24,14 25,12 24,12 25,11 24,10 24,10 25,8 24,10 25,7 23,6 25,7 24,7 25,6 24,5 25,6 24,4 25,5 24,4 24,3 25,4 24,3 25,2 24,4 25,2 24,3 25,2 24,1 25,2 24,2 25,1 24,2 25,1 24,1 25,2 h 24 l 25,1 24,1 h 25 l 24,1 h 24 l 25,1 h 24 l 25,1 h 24 25 l 24,2 h 25 24 25 24 l 25,1 h 24 25 24 25 24 25 24 25"
|
|
81
|
+
id="path6-7"
|
|
82
|
+
style="fill:none;stroke:#da251d;stroke-width:355.14;stroke-linejoin:bevel;stroke-dasharray:none" />
|
|
83
|
+
</g>
|
|
84
|
+
</g>
|
|
85
|
+
</svg>
|