tomwer 1.2.1__py3-none-any.whl → 1.3.12__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (334) hide show
  1. orangecontrib/tomwer/tutorials/icat_publication.ows +58 -0
  2. orangecontrib/tomwer/widgets/__init__.py +11 -11
  3. orangecontrib/tomwer/widgets/control/DataDiscoveryOW.py +2 -2
  4. orangecontrib/tomwer/widgets/control/DataListOW.py +9 -7
  5. orangecontrib/tomwer/widgets/control/DataListenerOW.py +6 -6
  6. orangecontrib/tomwer/widgets/control/DataSelectorOW.py +21 -10
  7. orangecontrib/tomwer/widgets/control/DataValidatorOW.py +6 -6
  8. orangecontrib/tomwer/widgets/control/EDF2NXTomomillOW.py +24 -7
  9. orangecontrib/tomwer/widgets/control/EmailOW.py +4 -4
  10. orangecontrib/tomwer/widgets/control/NXTomomillMixIn.py +3 -3
  11. orangecontrib/tomwer/widgets/control/NXTomomillOW.py +64 -23
  12. orangecontrib/tomwer/widgets/control/NXtomoConcatenate.py +20 -8
  13. orangecontrib/tomwer/widgets/control/NotifierOW.py +1 -0
  14. orangecontrib/tomwer/widgets/control/SingleTomoObjOW.py +6 -6
  15. orangecontrib/tomwer/widgets/control/VolumeSelector.py +7 -4
  16. orangecontrib/tomwer/widgets/control/VolumeSymLinkOW.py +182 -182
  17. orangecontrib/tomwer/widgets/debugtools/DatasetGeneratorOW.py +5 -5
  18. orangecontrib/tomwer/widgets/edit/DarkFlatPatchOW.py +4 -4
  19. orangecontrib/tomwer/widgets/edit/ImageKeyEditorOW.py +3 -3
  20. orangecontrib/tomwer/widgets/edit/ImageKeyUpgraderOW.py +8 -1
  21. orangecontrib/tomwer/widgets/edit/NXtomoEditorOW.py +3 -3
  22. orangecontrib/tomwer/widgets/edit/test/test_nxtomo_editor.py +3 -3
  23. orangecontrib/tomwer/widgets/icat/PublishProcessedDataOW.py +115 -0
  24. orangecontrib/tomwer/widgets/icat/RawDataScreenshotCreatorOW.py +98 -0
  25. orangecontrib/tomwer/widgets/icat/SaveToGalleryAndPublishOW.py +129 -0
  26. orangecontrib/tomwer/widgets/icat/__init__.py +13 -0
  27. orangecontrib/tomwer/widgets/icat/icons/add_gallery.png +0 -0
  28. orangecontrib/tomwer/widgets/icat/icons/add_gallery.svg +82 -0
  29. orangecontrib/tomwer/widgets/icat/icons/publish_processed_data.png +0 -0
  30. orangecontrib/tomwer/widgets/icat/icons/publish_processed_data.svg +95 -0
  31. orangecontrib/tomwer/widgets/icat/icons/raw_screenshots.png +0 -0
  32. orangecontrib/tomwer/widgets/icat/icons/raw_screenshots.svg +143 -0
  33. orangecontrib/tomwer/widgets/icons/tomwer_data_portal.png +0 -0
  34. orangecontrib/tomwer/widgets/icons/tomwer_data_portal.svg +76 -0
  35. orangecontrib/tomwer/widgets/reconstruction/AxisOW.py +22 -20
  36. orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py +19 -3
  37. orangecontrib/tomwer/widgets/reconstruction/NabuHelicalPrepareWeightsDoubleOW.py +184 -169
  38. orangecontrib/tomwer/widgets/reconstruction/NabuOW.py +23 -0
  39. orangecontrib/tomwer/widgets/reconstruction/NabuVolumeOW.py +39 -5
  40. orangecontrib/tomwer/widgets/reconstruction/SAAxisOW.py +18 -22
  41. orangecontrib/tomwer/widgets/reconstruction/SADeltaBetaOW.py +18 -26
  42. orangecontrib/tomwer/widgets/reconstruction/SinoNormOW.py +15 -19
  43. orangecontrib/tomwer/widgets/visualization/DataViewerOW.py +9 -9
  44. orangecontrib/tomwer/widgets/visualization/DiffViewerOW.py +1 -1
  45. orangecontrib/tomwer/widgets/visualization/LivesliceOW.py +1 -1
  46. orangecontrib/tomwer/widgets/visualization/NXtomoMetadataViewerOW.py +3 -3
  47. orangecontrib/tomwer/widgets/visualization/SinogramViewerOW.py +0 -1
  48. orangecontrib/tomwer/widgets/visualization/VolumeViewerOW.py +3 -29
  49. tomwer/__main__.py +7 -64
  50. tomwer/app/axis.py +3 -3
  51. tomwer/app/canvas.py +8 -0
  52. tomwer/app/canvas_launcher/config.py +16 -14
  53. tomwer/app/canvas_launcher/environ.py +1 -0
  54. tomwer/app/canvas_launcher/mainwindow.py +4 -1
  55. tomwer/app/darkref.py +1 -1
  56. tomwer/app/darkrefpatch.py +1 -1
  57. tomwer/app/diffframe.py +3 -3
  58. tomwer/app/imagekeyeditor.py +5 -5
  59. tomwer/app/imagekeyupgrader.py +5 -5
  60. tomwer/app/intensitynormalization.py +14 -13
  61. tomwer/app/{saaxis.py → multicor.py} +3 -3
  62. tomwer/app/{sadeltabeta.py → multipag.py} +3 -3
  63. tomwer/app/nabuapp.py +0 -11
  64. tomwer/app/radiostack.py +6 -4
  65. tomwer/app/samplemoved.py +3 -2
  66. tomwer/app/scanviewer.py +4 -2
  67. tomwer/app/sinogramviewer.py +3 -2
  68. tomwer/app/slicestack.py +3 -2
  69. tomwer/app/zstitching.py +88 -6
  70. tomwer/core/cluster/cluster.py +26 -0
  71. tomwer/core/log/logger.py +7 -5
  72. tomwer/core/process/conditions/filters.py +1 -1
  73. tomwer/core/process/control/datalistener/datalistener.py +19 -14
  74. tomwer/core/process/control/datawatcher/edfdwprocess.py +0 -9
  75. tomwer/core/process/control/nxtomoconcatenate.py +13 -13
  76. tomwer/core/process/control/nxtomomill.py +92 -34
  77. tomwer/core/process/control/scantransfer.py +20 -43
  78. tomwer/core/process/control/scanvalidator.py +3 -2
  79. tomwer/core/process/control/test/test_concatenate_nxtomos.py +9 -9
  80. tomwer/core/process/control/test/test_email.py +4 -4
  81. tomwer/core/process/control/test/test_h52nx_process.py +59 -7
  82. tomwer/core/process/control/test/test_volume_link.py +64 -64
  83. tomwer/core/process/control/timer.py +1 -1
  84. tomwer/core/process/control/volumesymlink.py +200 -200
  85. tomwer/core/process/edit/darkflatpatch.py +14 -15
  86. tomwer/core/process/edit/imagekeyeditor.py +41 -39
  87. tomwer/core/process/icat/__init__.py +0 -0
  88. tomwer/core/process/icat/createscreenshots.py +100 -0
  89. tomwer/core/process/icat/gallery.py +377 -0
  90. tomwer/core/process/icat/icatbase.py +36 -0
  91. tomwer/core/process/icat/publish.py +228 -0
  92. tomwer/core/process/icat/screenshots.py +27 -0
  93. tomwer/core/process/output.py +52 -0
  94. tomwer/core/process/reconstruction/axis/axis.py +280 -69
  95. tomwer/core/process/reconstruction/axis/mode.py +163 -48
  96. tomwer/core/process/reconstruction/axis/params.py +29 -21
  97. tomwer/core/process/reconstruction/darkref/darkrefs.py +41 -127
  98. tomwer/core/process/reconstruction/darkref/darkrefscopy.py +4 -3
  99. tomwer/core/process/reconstruction/darkref/params.py +1 -1
  100. tomwer/core/process/reconstruction/nabu/castvolume.py +4 -4
  101. tomwer/core/process/reconstruction/nabu/helical.py +9 -5
  102. tomwer/core/process/reconstruction/nabu/nabucommon.py +71 -78
  103. tomwer/core/process/reconstruction/nabu/nabuscores.py +425 -53
  104. tomwer/core/process/reconstruction/nabu/nabuslices.py +114 -93
  105. tomwer/core/process/reconstruction/nabu/nabuvolume.py +54 -27
  106. tomwer/core/process/reconstruction/nabu/plane.py +9 -0
  107. tomwer/core/process/reconstruction/nabu/settings.py +2 -2
  108. tomwer/core/process/reconstruction/nabu/utils.py +164 -26
  109. tomwer/core/process/reconstruction/output.py +108 -0
  110. tomwer/core/process/reconstruction/saaxis/saaxis.py +238 -264
  111. tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py +151 -87
  112. tomwer/core/process/reconstruction/scores/params.py +7 -4
  113. tomwer/core/process/reconstruction/scores/scores.py +13 -0
  114. tomwer/core/process/reconstruction/test/test_axis_params.py +2 -2
  115. tomwer/core/process/reconstruction/test/test_darkref.py +3 -3
  116. tomwer/core/process/reconstruction/test/test_darkref_copy.py +7 -7
  117. tomwer/core/process/reconstruction/test/test_saaxis.py +3 -4
  118. tomwer/core/process/reconstruction/test/test_sadeltabeta.py +2 -2
  119. tomwer/core/process/stitching/nabustitcher.py +13 -12
  120. tomwer/core/process/task.py +34 -26
  121. tomwer/core/process/test/test_axis.py +13 -12
  122. tomwer/core/process/test/test_dark_and_flat.py +10 -7
  123. tomwer/core/process/test/test_data_transfer.py +10 -8
  124. tomwer/core/process/test/test_nabu.py +14 -6
  125. tomwer/core/process/test/test_normalization.py +4 -4
  126. tomwer/core/scan/blissscan.py +3 -3
  127. tomwer/core/scan/edfscan.py +13 -10
  128. tomwer/core/scan/hdf5scan.py +19 -530
  129. tomwer/core/scan/nxtomoscan.py +534 -0
  130. tomwer/core/scan/scanbase.py +72 -44
  131. tomwer/core/scan/scanfactory.py +13 -13
  132. tomwer/core/scan/test/test_edf.py +2 -2
  133. tomwer/core/scan/test/test_future_scan.py +3 -3
  134. tomwer/core/scan/test/test_h5.py +18 -16
  135. tomwer/core/scan/test/test_process_registration.py +4 -40
  136. tomwer/core/scan/test/test_scan.py +5 -78
  137. tomwer/core/settings.py +22 -2
  138. tomwer/core/test/test_scanutils.py +8 -7
  139. tomwer/core/test/test_utils.py +35 -28
  140. tomwer/core/tomwer_object.py +1 -1
  141. tomwer/core/utils/__init__.py +0 -466
  142. tomwer/core/utils/deprecation.py +1 -1
  143. tomwer/core/utils/dictutils.py +14 -0
  144. tomwer/core/utils/lbsram.py +35 -0
  145. tomwer/core/utils/nxtomoutils.py +1 -1
  146. tomwer/core/utils/scanutils.py +6 -6
  147. tomwer/core/utils/spec.py +263 -0
  148. tomwer/core/volume/edfvolume.py +6 -6
  149. tomwer/core/volume/hdf5volume.py +6 -6
  150. tomwer/core/volume/jp2kvolume.py +6 -6
  151. tomwer/core/volume/rawvolume.py +6 -6
  152. tomwer/core/volume/tiffvolume.py +12 -12
  153. tomwer/core/volume/volumefactory.py +2 -2
  154. tomwer/gui/cluster/slurm.py +274 -65
  155. tomwer/gui/cluster/supervisor.py +12 -0
  156. tomwer/gui/cluster/test/test_cluster.py +14 -2
  157. tomwer/gui/cluster/test/test_supervisor.py +3 -3
  158. tomwer/gui/configuration/__init__.py +0 -0
  159. tomwer/gui/{reconstruction/nabu → configuration}/action.py +1 -32
  160. tomwer/gui/configuration/level.py +22 -0
  161. tomwer/gui/control/actions.py +54 -0
  162. tomwer/gui/control/datalist.py +83 -16
  163. tomwer/gui/control/datalistener.py +4 -16
  164. tomwer/gui/control/datawatcher/controlwidget.py +2 -4
  165. tomwer/gui/control/datawatcher/datawatcher.py +1 -24
  166. tomwer/gui/control/{email.py → emailnotifier.py} +9 -18
  167. tomwer/gui/control/history.py +2 -2
  168. tomwer/gui/control/observations.py +2 -2
  169. tomwer/gui/control/reducedarkflatselector.py +9 -9
  170. tomwer/gui/control/selectorwidgetbase.py +36 -9
  171. tomwer/gui/control/serie/seriecreator.py +5 -22
  172. tomwer/gui/control/test/test_email.py +1 -1
  173. tomwer/gui/control/test/test_scanvalidator.py +6 -5
  174. tomwer/gui/control/test/test_single_tomo_obj.py +3 -3
  175. tomwer/gui/control/tomoobjdisplaymode.py +8 -0
  176. tomwer/gui/debugtools/datasetgenerator.py +3 -3
  177. tomwer/gui/edit/dkrfpatch.py +20 -26
  178. tomwer/gui/edit/imagekeyeditor.py +11 -12
  179. tomwer/gui/edit/nxtomoeditor.py +111 -44
  180. tomwer/gui/edit/nxtomowarmer.py +7 -6
  181. tomwer/gui/edit/test/test_dkrf_patch.py +13 -13
  182. tomwer/gui/edit/test/test_image_key_editor.py +3 -3
  183. tomwer/gui/edit/test/test_nx_editor.py +40 -16
  184. tomwer/gui/icat/__init__.py +0 -0
  185. tomwer/gui/icat/createscreenshots.py +80 -0
  186. tomwer/gui/icat/gallery.py +214 -0
  187. tomwer/gui/icat/publish.py +187 -0
  188. tomwer/gui/imagefromfile.py +2 -2
  189. tomwer/gui/qfolderdialog.py +24 -1
  190. tomwer/gui/reconstruction/axis/CompareImages.py +88 -168
  191. tomwer/gui/reconstruction/axis/axis.py +171 -57
  192. tomwer/gui/reconstruction/axis/radioaxis.py +122 -257
  193. tomwer/gui/reconstruction/darkref/darkrefcopywidget.py +3 -2
  194. tomwer/gui/reconstruction/darkref/darkrefwidget.py +2 -1
  195. tomwer/gui/reconstruction/nabu/castvolume.py +14 -3
  196. tomwer/gui/reconstruction/nabu/check.py +9 -9
  197. tomwer/gui/reconstruction/nabu/helical.py +29 -12
  198. tomwer/gui/reconstruction/nabu/nabuconfig/base.py +2 -4
  199. tomwer/gui/reconstruction/nabu/nabuconfig/nabuconfig.py +2 -1
  200. tomwer/gui/reconstruction/nabu/nabuconfig/output.py +126 -35
  201. tomwer/gui/reconstruction/nabu/nabuconfig/phase.py +39 -32
  202. tomwer/gui/reconstruction/nabu/nabuconfig/preprocessing.py +222 -31
  203. tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py +57 -27
  204. tomwer/gui/reconstruction/nabu/nabuflow.py +12 -20
  205. tomwer/gui/reconstruction/nabu/slices.py +10 -11
  206. tomwer/gui/reconstruction/nabu/volume.py +22 -10
  207. tomwer/gui/reconstruction/normalization/intensity.py +18 -48
  208. tomwer/gui/reconstruction/saaxis/corrangeselector.py +8 -24
  209. tomwer/gui/reconstruction/saaxis/dimensionwidget.py +1 -1
  210. tomwer/gui/reconstruction/saaxis/saaxis.py +9 -21
  211. tomwer/gui/reconstruction/sadeltabeta/saadeltabeta.py +45 -12
  212. tomwer/gui/reconstruction/scores/control.py +2 -9
  213. tomwer/gui/reconstruction/scores/scoreplot.py +13 -11
  214. tomwer/gui/reconstruction/test/test_axis.py +41 -16
  215. tomwer/gui/reconstruction/test/test_nabu.py +31 -9
  216. tomwer/gui/reconstruction/test/test_saaxis.py +3 -3
  217. tomwer/gui/reconstruction/test/test_sadeltabeta.py +12 -2
  218. tomwer/gui/settings.py +5 -28
  219. tomwer/gui/stackplot.py +2 -5
  220. tomwer/gui/stitching/action.py +49 -0
  221. tomwer/gui/stitching/config/axisparams.py +7 -24
  222. tomwer/gui/stitching/config/output.py +10 -8
  223. tomwer/gui/stitching/config/positionoveraxis.py +22 -23
  224. tomwer/gui/stitching/normalization.py +117 -0
  225. tomwer/gui/stitching/stitchandbackground.py +4 -6
  226. tomwer/gui/stitching/stitching.py +267 -45
  227. tomwer/gui/stitching/stitching_preview.py +62 -55
  228. tomwer/gui/stitching/stitching_raw.py +13 -12
  229. tomwer/gui/stitching/z_stitching/fineestimation.py +0 -60
  230. tomwer/gui/utils/buttons.py +112 -29
  231. tomwer/gui/utils/inputwidget.py +43 -25
  232. tomwer/gui/utils/lineselector/lineselector.py +1 -1
  233. tomwer/gui/utils/scandescription.py +4 -0
  234. tomwer/gui/utils/step.py +144 -0
  235. tomwer/gui/utils/unitsystem.py +2 -5
  236. tomwer/gui/utils/vignettes.py +176 -15
  237. tomwer/gui/visualization/dataviewer.py +48 -35
  238. tomwer/gui/visualization/diffviewer/diffviewer.py +7 -16
  239. tomwer/gui/visualization/diffviewer/shiftwidget.py +2 -5
  240. tomwer/gui/visualization/scanoverview.py +1 -1
  241. tomwer/gui/visualization/sinogramviewer.py +20 -36
  242. tomwer/gui/visualization/test/test_diffviewer.py +3 -3
  243. tomwer/gui/visualization/test/test_nx_tomo_metadata_viewer.py +4 -4
  244. tomwer/gui/visualization/test/test_sinogramviewer.py +2 -2
  245. tomwer/gui/visualization/test/test_stacks.py +3 -3
  246. tomwer/gui/visualization/test/test_volumeviewer.py +65 -67
  247. tomwer/gui/visualization/volumeviewer.py +114 -113
  248. tomwer/io/utils/h5pyutils.py +3 -3
  249. tomwer/io/utils/raw_and_processed_data.py +84 -0
  250. tomwer/io/utils/tomoobj.py +4 -6
  251. tomwer/io/utils/utils.py +7 -7
  252. tomwer/resources/gui/icons/parameters.svg +1 -1
  253. tomwer/resources/gui/icons/ruler.png +0 -0
  254. tomwer/resources/gui/icons/ruler.svg +273 -0
  255. tomwer/resources/gui/icons/short_description.png +0 -0
  256. tomwer/resources/gui/icons/short_description.svg +58 -0
  257. tomwer/resources/gui/icons/url.png +0 -0
  258. tomwer/resources/gui/icons/url.svg +58 -0
  259. tomwer/resources/gui/illustrations/no_rot.svg +1 -1
  260. tomwer/synctools/stacks/edit/darkflatpatch.py +19 -14
  261. tomwer/synctools/stacks/edit/imagekeyeditor.py +2 -2
  262. tomwer/synctools/stacks/reconstruction/axis.py +4 -4
  263. tomwer/synctools/stacks/reconstruction/castvolume.py +22 -7
  264. tomwer/synctools/stacks/reconstruction/dkrefcopy.py +25 -20
  265. tomwer/synctools/stacks/reconstruction/nabu.py +2 -2
  266. tomwer/synctools/stacks/reconstruction/normalization.py +2 -2
  267. tomwer/synctools/stacks/reconstruction/saaxis.py +2 -2
  268. tomwer/synctools/stacks/reconstruction/sadeltabeta.py +2 -2
  269. tomwer/synctools/test/test_darkRefs.py +7 -58
  270. tomwer/synctools/test/test_foldertransfer.py +6 -6
  271. tomwer/synctools/utils/scanstages.py +6 -6
  272. tomwer/tests/conftest.py +34 -0
  273. tomwer/tests/datasets.py +13 -0
  274. tomwer/tests/test_scripts.py +91 -41
  275. tomwer/tests/utils.py +5 -0
  276. tomwer/third_part/WaitingOverlay.py +110 -0
  277. tomwer/third_part/__init__.py +0 -0
  278. tomwer/version.py +2 -2
  279. tomwer-1.3.12-py3.11-nspkg.pth +1 -0
  280. {tomwer-1.2.1.dist-info → tomwer-1.3.12.dist-info}/METADATA +73 -58
  281. {tomwer-1.2.1.dist-info → tomwer-1.3.12.dist-info}/RECORD +287 -286
  282. {tomwer-1.2.1.dist-info → tomwer-1.3.12.dist-info}/WHEEL +1 -1
  283. orangecontrib/tomwer/widgets/reconstruction/TofuOW.py +0 -197
  284. orangecontrib/tomwer/widgets/reconstruction/icons/XY_lamino.svg +0 -168
  285. orangecontrib/tomwer/widgets/reconstruction/icons/XZ_lamino.svg +0 -275
  286. orangecontrib/tomwer/widgets/reconstruction/icons/YZ_lamino.svg +0 -182
  287. tomwer/app/lamino.py +0 -143
  288. tomwer/core/process/reconstruction/lamino/__init__.py +0 -1
  289. tomwer/core/process/reconstruction/lamino/tofu.py +0 -1000
  290. tomwer/core/process/test/test_lamino.py +0 -76
  291. tomwer/core/test/test_lamino.py +0 -92
  292. tomwer/gui/reconstruction/lamino/__init__.py +0 -31
  293. tomwer/gui/reconstruction/lamino/tofu/TofuOptionLoader.py +0 -107
  294. tomwer/gui/reconstruction/lamino/tofu/__init__.py +0 -1
  295. tomwer/gui/reconstruction/lamino/tofu/misc.py +0 -148
  296. tomwer/gui/reconstruction/lamino/tofu/projections.py +0 -896
  297. tomwer/gui/reconstruction/lamino/tofu/settings.py +0 -75
  298. tomwer/gui/reconstruction/lamino/tofu/tofu.py +0 -432
  299. tomwer/gui/reconstruction/lamino/tofu/tofuexpert.py +0 -567
  300. tomwer/gui/reconstruction/lamino/tofu/tofuoutput.py +0 -760
  301. tomwer/gui/reconstruction/test/test_lamino.py +0 -189
  302. tomwer/resources/gui/icons/esrf_1.svg +0 -307
  303. tomwer/resources/gui/icons/lamino_parameters.svg +0 -70
  304. tomwer/resources/gui/icons/triangle.svg +0 -80
  305. tomwer/resources/gui/illustrations/lamino_angle.png +0 -0
  306. tomwer/resources/gui/illustrations/lamino_angle.svg +0 -509
  307. tomwer/resources/gui/illustrations/lamino_beta_angle.png +0 -0
  308. tomwer/resources/gui/illustrations/lamino_beta_angle.svg +0 -97
  309. tomwer/resources/gui/illustrations/lamino_theta_angle.png +0 -0
  310. tomwer/resources/gui/illustrations/lamino_theta_angle.svg +0 -368
  311. tomwer/resources/gui/illustrations/manual_slice.png +0 -0
  312. tomwer/resources/gui/illustrations/manual_slice.svg +0 -221
  313. tomwer/resources/gui/illustrations/psi_angle.png +0 -0
  314. tomwer/resources/gui/illustrations/psi_angle.svg +0 -479
  315. tomwer/resources/gui/illustrations/rotation_center.png +0 -0
  316. tomwer/resources/gui/illustrations/rotation_center.svg +0 -276
  317. tomwer/resources/gui/illustrations/slice_stack.png +0 -0
  318. tomwer/resources/gui/illustrations/slice_stack.svg +0 -266
  319. tomwer/resources/gui/illustrations/xy_slice.png +0 -0
  320. tomwer/resources/gui/illustrations/xy_slice.svg +0 -269
  321. tomwer/resources/gui/illustrations/xz_slice.png +0 -0
  322. tomwer/resources/gui/illustrations/xz_slice.svg +0 -270
  323. tomwer/resources/gui/illustrations/yz_slice.png +0 -0
  324. tomwer/resources/gui/illustrations/yz_slice.svg +0 -270
  325. tomwer/synctools/stacks/reconstruction/lamino.py +0 -233
  326. tomwer/synctools/test/test_scanstages.py +0 -162
  327. tomwer/tests/utils/__init__.py +0 -247
  328. tomwer/tests/utils/utilstest.py +0 -220
  329. tomwer-1.2.1-py3.11-nspkg.pth +0 -1
  330. /tomwer/core/process/control/{email.py → emailnotifier.py} +0 -0
  331. {tomwer-1.2.1.dist-info → tomwer-1.3.12.dist-info}/LICENSE +0 -0
  332. {tomwer-1.2.1.dist-info → tomwer-1.3.12.dist-info}/entry_points.txt +0 -0
  333. {tomwer-1.2.1.dist-info → tomwer-1.3.12.dist-info}/namespace_packages.txt +0 -0
  334. {tomwer-1.2.1.dist-info → tomwer-1.3.12.dist-info}/top_level.txt +0 -0
@@ -1,97 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
- <svg id="svg2" width="150" height="160" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
4
- <defs id="defs4">
5
- <marker id="Arrow2Mstart" overflow="visible" orient="auto">
6
- <path id="path3797" transform="scale(.6)" d="m8.7186 4.0337-10.926-4.0177 10.926-4.0177c-1.7455 2.3721-1.7354 5.6175-6e-7 8.0354z" fill-rule="evenodd" stroke-linejoin="round" stroke-width=".625"/>
7
- </marker>
8
- </defs>
9
- <metadata id="metadata7">
10
- <rdf:RDF>
11
- <cc:Work rdf:about="">
12
- <dc:format>image/svg+xml</dc:format>
13
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
14
- <dc:title/>
15
- </cc:Work>
16
- </rdf:RDF>
17
- </metadata>
18
- <g id="layer1" transform="translate(0 -892.36)">
19
- <g id="g3139-6" fill="none" opacity=".71698" stroke="#000" stroke-linecap="round" stroke-width=".5">
20
- <path id="path3145-2" d="m17.89 957.15 47.455 13.451v62.491l-47.455-22.83z"/>
21
- <path id="path3147-6" d="m65.345 970.6v62.491l6.04e-4 0.068v-62.558z"/>
22
- <path id="path3149-7" d="m17.89 1010.3 47.455 22.83 6.04e-4 0.068-47.499-22.861z"/>
23
- <path id="path3141-5" d="m17.89 957.15v53.111l-0.04325 0.037v-53.16z"/>
24
- <path id="path3143-5" d="m17.89 957.15 47.455 13.451 6.04e-4 5.1e-4 -47.499-13.463z"/>
25
- <path id="path3151-3" d="m17.847 957.14 47.499 13.463v62.558l-47.499-22.861z"/>
26
- </g>
27
- <g id="g3349" transform="matrix(-.99991 .013593 -.013593 -.99991 87.873 2061.4)">
28
- <path id="path3039" d="m13.344 1028.4-0.4375 0.875 41.438 19.719 0.40625-0.9062-41.406-19.688z" color="#000000" style="block-progression:tb;text-indent:0;text-transform:none"/>
29
- <path id="path3355" d="m50.936 1046.9-2.6651 0.9471 7.1805 1.2004-5.4624-4.8127 0.94712 2.6652z" fill-rule="evenodd" stroke="#000" stroke-width=".4pt"/>
30
- </g>
31
- <g id="g3341" transform="translate(59.207 6.0091)" fill="#00af00">
32
- <path id="path3041" d="m9.5938 976.09v4.0312l-0.25 45.469h1l0.25-45.469v-4.0312h-1z" color="#000000" style="block-progression:tb;text-indent:0;text-transform:none"/>
33
- <path id="path3347" d="m10.081 980.1 1.9898 2.0102-1.9643-7.0101-2.0357 6.9897 2.0102-1.9898z" fill-rule="evenodd" stroke="#000" stroke-width=".4pt"/>
34
- </g>
35
- <g id="text5219" transform="matrix(.90125 .4333 -.4333 .90125 5.1479 -15.711)">
36
- <path id="path5294" d="m465.17 910.02v4.9922c-1e-5 0.50781 0.0234 0.78906 0.0703 0.84375 0.0781 0.10937 0.39843 0.16406 0.96094 0.16406 0.42577 0 0.82226-0.0664 1.1894-0.19922 0.36718-0.13672 0.69531-0.33789 0.98437-0.60351 0.28906-0.26563 0.51562-0.61328 0.67969-1.043 0.16796-0.43359 0.25195-0.92773 0.25195-1.4824 0-0.51563-0.0605-0.98047-0.18164-1.3945-0.11719-0.41796-0.27735-0.76561-0.48046-1.043-0.20314-0.27734-0.44532-0.50976-0.72657-0.69727-0.28125-0.18749-0.57813-0.32226-0.89062-0.4043-0.31251-0.0859-0.64258-0.1289-0.99024-0.1289-0.51172 0-0.78125 0.043-0.80859 0.1289-0.0469 0.14845-0.0664 0.43751-0.0586 0.86719m1.1836-1.3711c0.6289 0 1.2031 0.0977 1.7227 0.29297 0.51952 0.19141 0.95311 0.45703 1.3008 0.79687 0.34765 0.33594 0.61522 0.73633 0.80273 1.2012 0.1914 0.46485 0.2871 0.9668 0.28711 1.5059-1e-5 0.41797-0.041 0.81055-0.12305 1.1777-0.082 0.36719-0.22657 0.72461-0.43359 1.0723-0.20313 0.34375-0.4629 0.63867-0.7793 0.88477-0.3125 0.24609-0.71875 0.44336-1.2188 0.59179-0.5 0.14844-1.0703 0.22266-1.7109 0.22266h-2.9297c-0.0274-0.0312-0.041-0.0879-0.041-0.16992 4e-3 -0.082 0.0176-0.13867 0.041-0.16992 0.11719 0 0.27734-0.0176 0.48047-0.0527 0.20312-0.0351 0.3125-0.0801 0.32812-0.13476 0.0391-0.125 0.0586-0.41406 0.0586-0.86719v-5.0039c-1e-5 -0.45312-0.0195-0.74218-0.0586-0.86718-0.0156-0.0547-0.125-0.0996-0.32812-0.13477-0.20313-0.0352-0.36328-0.0527-0.48047-0.0527-0.0234-0.0312-0.0371-0.0879-0.041-0.16993 0-0.082 0.0137-0.13866 0.041-0.16992 0.80078 0.0391 1.2617 0.0586 1.3828 0.0586 0.14844 0 0.42383-2e-3 0.82617-6e-3 0.40625-4e-3 0.69726-6e-3 0.87305-6e-3"/>
37
- <path id="path5296" d="m472.42 913.02h1.9102c0.16796 0 0.25781-0.0898 0.26953-0.26953 4e-3 -0.0781-0.0117-0.17578-0.0469-0.29297-0.0352-0.11718-0.0879-0.23828-0.15821-0.36328-0.0703-0.125-0.17188-0.23046-0.30469-0.31641-0.13281-0.0859-0.2832-0.1289-0.45117-0.1289-0.18359 0-0.35156 0.0469-0.5039 0.14062-0.15235 0.0938-0.27344 0.20899-0.36328 0.3457-0.0859 0.13282-0.15821 0.26759-0.2168 0.4043-0.0547 0.13282-0.0937 0.2461-0.11719 0.33985-0.0195 0.0937-0.0254 0.14062-0.0176 0.14062m-0.0586 0.43359c-0.0156 0.71485 0.16015 1.2695 0.52734 1.6641 0.37109 0.39062 0.83203 0.58593 1.3828 0.58593 0.28124 0 0.53515-0.0684 0.76171-0.20507 0.23047-0.13672 0.40625-0.27539 0.52735-0.41602 4e-3 0 0.0137 8e-3 0.0293 0.0234 0.0156 0.0117 0.0293 0.0312 0.041 0.0586 0.0156 0.0274 0.0234 0.0547 0.0234 0.082-1e-5 0.0625-0.0234 0.13282-0.0703 0.21094-0.0625 0.10156-0.14063 0.20313-0.23438 0.30469-0.0937 0.10156-0.21094 0.20703-0.35156 0.3164-0.14063 0.10938-0.31055 0.19922-0.50977 0.26954-0.19531 0.0703-0.40039 0.10546-0.61523 0.10546-0.6836 0-1.2461-0.23046-1.6875-0.6914-0.4375-0.46484-0.65625-1.0469-0.65625-1.7461 0-0.3789 0.0723-0.74413 0.21679-1.0957 0.14454-0.35156 0.32813-0.64843 0.55079-0.89062 0.22265-0.24219 0.4707-0.43555 0.74414-0.58008 0.27343-0.14843 0.53906-0.22265 0.79687-0.22266 0.26562 1e-5 0.50586 0.041 0.7207 0.12305 0.21484 0.082 0.38477 0.1836 0.50977 0.30469 0.125 0.11719 0.22851 0.25195 0.31055 0.40429 0.082 0.15235 0.13866 0.29102 0.16992 0.41602 0.0312 0.125 0.0469 0.24024 0.0469 0.3457 0 0.17969-0.0215 0.31641-0.0645 0.41016-0.0391 0.0898-0.11133 0.13672-0.2168 0.14062-0.16016 0.0117-0.66797 0.0293-1.5234 0.0527-0.85157 0.0195-1.3281 0.0293-1.4297 0.0293"/>
38
- <path id="path5298" d="m477.98 911.3h1.5117c0.0391 1e-5 0.0586 0.043 0.0586 0.12891 0 0.12501-0.0547 0.24219-0.16406 0.35156h-1.4062v3.0703c0 0.64062 0.25781 0.96093 0.77344 0.96093 0.25781 0 0.51171-0.0898 0.76172-0.26953 0.0234 0.0117 0.0351 0.0391 0.0351 0.082 0 0.0859-0.0156 0.14453-0.0469 0.17578-0.0781 0.0859-0.16602 0.17188-0.26367 0.25782-0.0938 0.082-0.23048 0.16797-0.41016 0.25781-0.17969 0.0859-0.35742 0.12891-0.5332 0.12891-0.16016 0-0.3086-0.0195-0.44532-0.0586s-0.26562-0.10351-0.38671-0.19336c-0.1211-0.0898-0.2168-0.2207-0.28711-0.39258-0.0664-0.17187-0.0996-0.3789-0.0996-0.62109v-3.3984h-0.67969c-0.0391 1e-5 -0.0586-0.0352-0.0586-0.10547 0-0.0195 0.043-0.0781 0.1289-0.17578 0.0859-0.10155 0.14453-0.16796 0.17578-0.19922h0.4336v-0.73828c0.0625-0.0742 0.15234-0.17382 0.26953-0.29883 0.11718-0.1289 0.21875-0.24022 0.30469-0.33398 0.0859-0.0937 0.13281-0.14452 0.14062-0.15234 0.0195-0.0195 0.043-0.0332 0.0703-0.041 0.0312-8e-3 0.0586-8e-3 0.082 0 0.0234 4e-3 0.0352 0.0137 0.0352 0.0293v1.5352"/>
39
- <path id="path5300" d="m481.12 913.02h1.9102c0.16797 0 0.25781-0.0898 0.26953-0.26953 4e-3 -0.0781-0.0117-0.17578-0.0469-0.29297-0.0352-0.11718-0.0879-0.23828-0.15821-0.36328-0.0703-0.125-0.17187-0.23046-0.30468-0.31641-0.13282-0.0859-0.28321-0.1289-0.45117-0.1289-0.1836 0-0.35157 0.0469-0.50391 0.14062-0.15235 0.0938-0.27344 0.20899-0.36328 0.3457-0.0859 0.13282-0.15821 0.26759-0.2168 0.4043-0.0547 0.13282-0.0937 0.2461-0.11719 0.33985-0.0195 0.0937-0.0254 0.14062-0.0176 0.14062m-0.0586 0.43359c-0.0156 0.71485 0.16016 1.2695 0.52735 1.6641 0.37109 0.39062 0.83202 0.58593 1.3828 0.58593 0.28124 0 0.53515-0.0684 0.76172-0.20507 0.23046-0.13672 0.40624-0.27539 0.52734-0.41602 4e-3 0 0.0137 8e-3 0.0293 0.0234 0.0156 0.0117 0.0293 0.0312 0.041 0.0586 0.0156 0.0274 0.0234 0.0547 0.0234 0.082 0 0.0625-0.0234 0.13282-0.0703 0.21094-0.0625 0.10156-0.14063 0.20313-0.23438 0.30469-0.0937 0.10156-0.21094 0.20703-0.35156 0.3164-0.14063 0.10938-0.31055 0.19922-0.50977 0.26954-0.19531 0.0703-0.40039 0.10546-0.61523 0.10546-0.6836 0-1.2461-0.23046-1.6875-0.6914-0.4375-0.46484-0.65625-1.0469-0.65625-1.7461 0-0.3789 0.0723-0.74413 0.2168-1.0957 0.14453-0.35156 0.32812-0.64843 0.55078-0.89062 0.22265-0.24219 0.4707-0.43555 0.74414-0.58008 0.27343-0.14843 0.53906-0.22265 0.79687-0.22266 0.26563 1e-5 0.50586 0.041 0.72071 0.12305 0.21484 0.082 0.38476 0.1836 0.50976 0.30469 0.125 0.11719 0.22851 0.25195 0.31055 0.40429 0.082 0.15235 0.13867 0.29102 0.16992 0.41602 0.0312 0.125 0.0469 0.24024 0.0469 0.3457-1e-5 0.17969-0.0215 0.31641-0.0645 0.41016-0.0391 0.0898-0.11133 0.13672-0.21679 0.14062-0.16016 0.0117-0.66798 0.0293-1.5234 0.0527-0.85157 0.0195-1.3281 0.0293-1.4297 0.0293"/>
40
- <path id="path5302" d="m489.27 911.83c-1e-5 0.19141-0.0449 0.33399-0.13477 0.42773-0.0899 0.0899-0.19336 0.13477-0.31055 0.13477-0.0781 0-0.15625-0.0254-0.23437-0.0762-0.0781-0.0508-0.16212-0.11523-0.25196-0.19335-0.0859-0.082-0.15039-0.13672-0.19335-0.16407-0.13282-0.0898-0.2422-0.14843-0.32813-0.17578-0.082-0.0312-0.19532-0.0469-0.33984-0.0469-0.33594 0-0.63868 0.18164-0.90821 0.54492-0.26953 0.35938-0.40429 0.83008-0.40429 1.4121 0 0.65625 0.17578 1.1504 0.52734 1.4824 0.35547 0.33203 0.8125 0.49805 1.3711 0.49805 0.28125 0 0.52734-0.0645 0.73829-0.19336 0.21483-0.12891 0.3828-0.26367 0.5039-0.4043 4e-3 0 0.0137 8e-3 0.0293 0.0234 0.0156 0.0117 0.0293 0.0312 0.041 0.0586 0.0156 0.0274 0.0234 0.0547 0.0234 0.082 0 0.0625-0.0234 0.13282-0.0703 0.21094-0.0625 0.10156-0.14063 0.20313-0.23438 0.30469-0.0937 0.10156-0.21094 0.20703-0.35156 0.3164-0.14063 0.10938-0.31055 0.19922-0.50976 0.26954-0.19532 0.0703-0.4004 0.10546-0.61524 0.10546-0.45703 0-0.86914-0.11328-1.2363-0.33984s-0.64844-0.51758-0.84375-0.87305c-0.1914-0.35937-0.28711-0.74414-0.28711-1.1543 0-0.32813 0.0586-0.64453 0.17579-0.94922 0.12109-0.30469 0.27929-0.57031 0.4746-0.79688 0.19922-0.22656 0.42188-0.42382 0.66797-0.59179 0.2461-0.17187 0.5-0.30078 0.76172-0.38672 0.26562-0.0898 0.52148-0.13476 0.76758-0.13477 0.42187 1e-5 0.77343 0.0938 1.0547 0.28125 0.0273 0.0274 0.0527 0.0762 0.0762 0.14649 0.0273 0.0664 0.041 0.12695 0.041 0.18164"/>
41
- <path id="path5304" d="m491.64 911.3h1.5117c0.0391 1e-5 0.0586 0.043 0.0586 0.12891-1e-5 0.12501-0.0547 0.24219-0.16407 0.35156h-1.4062v3.0703c0 0.64062 0.25781 0.96093 0.77344 0.96093 0.25781 0 0.51172-0.0898 0.76172-0.26953 0.0234 0.0117 0.0351 0.0391 0.0352 0.082-1e-5 0.0859-0.0156 0.14453-0.0469 0.17578-0.0781 0.0859-0.16602 0.17188-0.26367 0.25782-0.0937 0.082-0.23047 0.16797-0.41016 0.25781-0.17969 0.0859-0.35742 0.12891-0.5332 0.12891-0.16016 0-0.3086-0.0195-0.44531-0.0586-0.13672-0.0391-0.26563-0.10351-0.38672-0.19336-0.1211-0.0898-0.2168-0.2207-0.28711-0.39258-0.0664-0.17187-0.0996-0.3789-0.0996-0.62109v-3.3984h-0.67969c-0.0391 1e-5 -0.0586-0.0352-0.0586-0.10547 0-0.0195 0.043-0.0781 0.1289-0.17578 0.0859-0.10155 0.14453-0.16796 0.17579-0.19922h0.43359v-0.73828c0.0625-0.0742 0.15234-0.17382 0.26953-0.29883 0.11719-0.1289 0.21875-0.24022 0.30469-0.33398 0.0859-0.0937 0.13281-0.14452 0.14062-0.15234 0.0195-0.0195 0.043-0.0332 0.0703-0.041 0.0312-8e-3 0.0586-8e-3 0.082 0 0.0234 4e-3 0.0351 0.0137 0.0351 0.0293v1.5352"/>
42
- <path id="path5306" d="m496.27 911.6c-0.31641 1e-5 -0.58008 0.10157-0.79102 0.30469-0.21094 0.20313-0.35937 0.45118-0.44531 0.74414-0.082 0.29297-0.12305 0.61914-0.12305 0.97852 0 0.39453 0.0605 0.77344 0.18164 1.1367 0.1211 0.35938 0.3086 0.66407 0.5625 0.91407 0.25391 0.25 0.54883 0.375 0.88477 0.375 0.3164 0 0.58007-0.10157 0.79102-0.30469 0.21093-0.20312 0.35741-0.44922 0.43945-0.73828 0.0859-0.29297 0.1289-0.61719 0.12891-0.97266-1e-5 -0.39062-0.0625-0.76757-0.1875-1.1309-0.1211-0.36718-0.3086-0.67577-0.5625-0.92578-0.25391-0.2539-0.54688-0.38085-0.87891-0.38086m0.12891-0.38672c0.76171 1e-5 1.3691 0.24024 1.8223 0.72071 0.45703 0.47656 0.68554 1.0879 0.68555 1.834-1e-5 0.75781-0.23829 1.3926-0.71485 1.9043-0.47266 0.51172-1.0625 0.76758-1.7695 0.76758-0.76172 0-1.373-0.24219-1.834-0.72657-0.45703-0.48828-0.68555-1.1055-0.68555-1.8516 0-0.7539 0.23828-1.3828 0.71485-1.8867 0.47656-0.50781 1.0703-0.76171 1.7812-0.76172"/>
43
- <path id="path5308" d="m502.96 911.24c0.15234 1e-5 0.29491 0.0332 0.42773 0.0996 0.13671 0.0664 0.23242 0.14649 0.28711 0.24023 0.0312 0.0938 0.0469 0.19923 0.0469 0.31641 0 0.19141-0.0449 0.3418-0.13476 0.45117-0.0899 0.10548-0.17383 0.15821-0.25195 0.15821-0.0508 0-0.0996-0.01-0.14649-0.0293-0.043-0.0234-0.0996-0.0586-0.16992-0.10547-0.0664-0.0508-0.10547-0.0801-0.11719-0.0879-0.14063-0.0937-0.28516-0.14062-0.43359-0.14063-0.22657 1e-5 -0.43946 0.13477-0.63867 0.4043-0.19922 0.26563-0.29883 0.48243-0.29883 0.65039v1.8047c0 0.45313 0.0195 0.74219 0.0586 0.86719 0.0156 0.0547 0.15234 0.0996 0.41016 0.13476 0.26171 0.0352 0.46093 0.0527 0.59765 0.0527 0.0234 0.0312 0.0352 0.0879 0.0352 0.16992 4e-3 0.082-8e-3 0.13867-0.0352 0.16992-0.80078-0.0391-1.2852-0.0586-1.4531-0.0586-0.0742 0-0.51172 0.0195-1.3125 0.0586-0.0273-0.0312-0.041-0.0879-0.041-0.16992 4e-3 -0.082 0.0176-0.13867 0.041-0.16992 0.11328 0 0.25976-0.0176 0.43945-0.0527 0.1836-0.0351 0.2832-0.0801 0.29883-0.13476 0.0312-0.0977 0.0508-0.38672 0.0586-0.86719v-2.1797c0-0.31249-0.0195-0.51562-0.0586-0.60937-0.0234-0.0586-0.0977-0.10547-0.22266-0.14063-0.125-0.0351-0.23046-0.0547-0.3164-0.0586-0.082-8e-3 -0.15625-0.0117-0.22266-0.0117-0.0156-0.0156-0.0254-0.0625-0.0293-0.14063-1e-5 -0.0781 0.01-0.1328 0.0293-0.16406 0.66797-0.0898 1.2266-0.2539 1.6758-0.49219 0.0274 1e-5 0.0547 0.0235 0.082 0.0703 0.0312 0.0469 0.0469 0.0859 0.0469 0.11718-8e-3 0.0469-0.0234 0.22462-0.0469 0.53321-0.0234 0.30469-0.0351 0.48633-0.0351 0.54492 0 0.0156 4e-3 0.0273 0.0117 0.0352 8e-3 4e-3 0.0137 6e-3 0.0176 6e-3 8e-3 -4e-3 0.0137-0.01 0.0176-0.0176 0.13281-0.28906 0.33594-0.57031 0.60938-0.84375 0.27343-0.27344 0.53125-0.41015 0.77344-0.41016"/>
44
- </g>
45
- <g id="text5223-9" transform="translate(29.764 17.11)">
46
- <path id="path5311" d="m4.5365 1006.7c0.44922 0 0.83984-0.02 1.1719-0.059 0.015623 0.035 0.017576 0.1015 0.00586 0.1992-0.00781 0.094-0.025393 0.1406-0.052734 0.1406-0.050784 0-0.11524 0-0.19336 0.012-0.074221 0.01-0.15625 0.029-0.24609 0.064-0.089846 0.031-0.13477 0.072-0.13477 0.123-1.8e-6 0.016 0.0039 0.031 0.011719 0.047l1.2422 3.1641c0.39843-1.0391 0.74609-1.9258 1.043-2.6602 0.046871-0.1133 0.070308-0.2383 0.070312-0.375-4.1e-6 -0.1172-0.062504-0.209-0.1875-0.2754-0.125-0.066-0.28907-0.1-0.49219-0.1-0.027347 0-0.041019-0.049-0.041016-0.1465-3.3e-6 -0.098 0.013668-0.1621 0.041016-0.1933 0.29296 0.039 0.64453 0.059 1.0547 0.059 0.26562 0 0.59374-0.02 0.98438-0.059 0.023432 0.035 0.029291 0.1015 0.017578 0.1992-0.011724 0.094-0.029302 0.1406-0.052734 0.1406-0.10157 0-0.23633 0.031-0.4043 0.094-0.16407 0.062-0.2754 0.164-0.33398 0.3046-0.83594 1.9922-1.4219 3.4024-1.7578 4.2305-0.039065 0.094-0.12305 0.3125-0.25195 0.6563-0.12891 0.3437-0.24219 0.6211-0.33984 0.832-0.097658 0.2109-0.21094 0.4101-0.33984 0.5976-0.29688 0.4375-0.63672 0.6563-1.0195 0.6563-0.33984 0-0.50977-0.168-0.50977-0.5039-5e-7 -0.1133 0.046874-0.2266 0.14062-0.3399 0.3125 0 0.55664-0.039 0.73242-0.1171 0.17578-0.074 0.37305-0.2579 0.5918-0.5508 0.082029-0.1094 0.18945-0.3125 0.32227-0.6094 0.13672-0.2969 0.21679-0.4883 0.24023-0.5742-0.78125-1.9922-1.3945-3.4727-1.8398-4.4414-0.074219-0.1563-0.28906-0.2344-0.64453-0.2344-0.011719 0-0.017578-0.053-0.017578-0.1582 0-0.1094 0.00586-0.1699 0.017578-0.1816 0.37109 0.039 0.76172 0.059 1.1719 0.059"/>
47
- </g>
48
- <g id="g3333" transform="matrix(.98709 -.16016 .16016 .98709 -109.62 23.849)">
49
- <path id="path3039-8" d="m51.25 996.5 0.59375 0.78125 0.6875-0.53125-0.625-0.78125zm-2.3125 1.7812-0.0625 0.0625 0.625 0.78125 0.0625-0.0625 1.5-1.1875-0.625-0.78125zm-2.4375 1.875 0.625 0.8126 1.5625-1.25-0.59375-0.78125zm-2.375 1.8438 0.625 0.8125 1.5625-1.25-0.59375-0.7813zm-2.3438 1.8438 0.59375 0.8124 1.5938-1.25-0.625-0.7812zm-2.375 1.8437 0.59375 0.8125 1.5938-1.25-0.625-0.7812zm-2.375 1.8437 0.625 0.8126 1.5625-1.25-0.59375-0.7813zm-2.375 1.8438 0.625 0.7812 1.5625-1.2187-0.59375-0.7813zm-2.375 1.8438 0.625 0.7812 1.5938-1.2188-0.625-0.7812zm-2.3438 1.8437 0.59375 0.7813 1.5938-1.2188-0.625-0.7812zm-2.375 1.8437 0.625 0.7813 1.5625-1.2187-0.625-0.7813zm-2.375 1.8438 0.625 0.7812 1.5625-1.2187-0.59375-0.7813zm-2.375 1.8438 0.625 0.7812 1.5938-1.2188-0.625-0.7812zm-2.3438 1.8437 0.59375 0.7813 1.5938-1.2188-0.625-0.7812zm-2.375 1.8437 0.625 0.7813 1.5625-1.2187-0.625-0.7813zm-2.375 1.8438 0.625 0.7812 1.5625-1.2187-0.59375-0.7813z" color="#000000" fill="#918686" style="block-progression:tb;text-indent:0;text-transform:none"/>
50
- <path id="path3339" d="m49.069 998.81-0.35026 2.8066 4.2964-5.8772-6.7528 2.7202 2.8067 0.35027z" fill-rule="evenodd" stroke="#000" stroke-width=".4pt"/>
51
- </g>
52
- <g id="text5223-3" transform="translate(16.411 -18.1)" fill="#604b4b">
53
- <path id="path3188" d="m70.629 1036.2c0.35937 0 0.7539-0.02 1.1836-0.059 0.0078 0.039 0.01172 0.098 0.01172 0.1758-3e-6 0.078-0.01172 0.1328-0.03516 0.164-0.3125 0-0.46875 0.066-0.46875 0.1993-2e-6 0.027 0.01953 0.074 0.05859 0.1406l0.77344 1.2304c0.0625-0.1015 0.17382-0.2636 0.33398-0.4863 0.16406-0.2226 0.28711-0.4043 0.36914-0.5449 0.08593-0.1406 0.1289-0.2461 0.12891-0.3164-4e-6 -0.055-0.03321-0.098-0.09961-0.1289-0.0625-0.035-0.12891-0.057-0.19922-0.065-0.07032-0.012-0.14649-0.019-0.22852-0.023-0.08204 0-0.125-0.01-0.12891-0.01-0.01172-0.01-0.01953-0.061-0.02344-0.1582-3e-6 -0.098 0.0078-0.1582 0.02344-0.1816 0.11328 0 0.24414 0.012 0.39258 0.023 0.14843 0.012 0.28125 0.022 0.39844 0.029 0.12109 0 0.25195 0.01 0.39258 0.01 0.35156 0 0.66406-0.02 0.9375-0.059 0.0078 0.031 0.0098 0.096 0.0059 0.1933-5e-6 0.098-0.0059 0.1465-0.01758 0.1465-0.48829 0.027-0.78907 0.1133-0.90234 0.2578-0.09766 0.1368-0.2461 0.3458-0.44531 0.627-0.19922 0.2773-0.36328 0.5039-0.49219 0.6797-0.125 0.1758-0.20313 0.2832-0.23438 0.3223l1.4062 2.0859c0.19531 0.2812 0.49609 0.4219 0.90234 0.4219 0.0078 0 0.01171 0.025 0.01172 0.076 0.0039 0.051 0.0039 0.1036 0 0.1582-0.0039 0.055-0.01172 0.09-0.02344 0.1055-0.10157 0-0.22266-0.012-0.36328-0.023-0.14063-0.012-0.26758-0.02-0.38086-0.024-0.10938-0.01-0.22852-0.012-0.35742-0.012-0.14844 0-0.28907 0-0.42188 0.012-0.13282 0-0.28516 0.012-0.45703 0.024-0.16797 0.012-0.3086 0.02-0.42188 0.023-0.01563-0.039-0.02344-0.1055-0.02344-0.1992 0.0039-0.094 0.01562-0.1406 0.03516-0.1406 0.11328-0.01 0.22265-0.029 0.32812-0.064 0.10937-0.035 0.16406-0.084 0.16406-0.1465-4e-6 -0.016-0.0078-0.039-0.02344-0.07-0.40625-0.664-0.71485-1.1523-0.92578-1.4648-0.04297 0.062-0.16406 0.2402-0.36328 0.5332-0.19532 0.289-0.35547 0.5332-0.48047 0.7324-0.04688 0.074-0.07031 0.1484-0.07031 0.2227-2e-6 0.047 0.01562 0.088 0.04687 0.123 0.03125 0.031 0.08203 0.057 0.15234 0.076 0.07422 0.016 0.13086 0.027 0.16992 0.035 0.04297 0 0.11328 0.01 0.21094 0.018 0.02734 0 0.04883 0.01 0.06445 0.01 0.0078 0 0.01367 0.025 0.01758 0.076 0.0039 0.047 0.0039 0.098 0 0.1524-0.0039 0.055-0.01367 0.092-0.0293 0.1113-0.10938 0-0.23242-0.012-0.36914-0.023-0.13672-0.012-0.26172-0.02-0.375-0.024-0.10938-0.01-0.23242-0.012-0.36914-0.012-0.13281 0-0.25586 0-0.36914 0.012-0.10938 0-0.23242 0.012-0.36914 0.024-0.13672 0.012-0.25781 0.02-0.36328 0.023-0.01172-0.047-0.01563-0.1074-0.01172-0.1816 0.0078-0.078 0.01953-0.1309 0.03516-0.1582 0.01563 0 0.0625-0.012 0.14062-0.024 0.07813-0.012 0.12891-0.02 0.15234-0.023 0.02734 0 0.07617-0.012 0.14648-0.023 0.07422-0.016 0.12695-0.029 0.1582-0.041 0.03516-0.016 0.08203-0.035 0.14062-0.059 0.05859-0.023 0.10547-0.047 0.14062-0.07 0.03906-0.027 0.08008-0.059 0.12305-0.094 0.04297-0.039 0.08008-0.08 0.11133-0.1231 0.72656-1.0468 1.1094-1.5976 1.1484-1.6523l-1.3594-2.0274c-0.05859-0.09-0.16797-0.1542-0.32812-0.1933-0.15625-0.043-0.30859-0.064-0.45703-0.064-0.0078 0-0.01367-0.023-0.01758-0.07 0-0.047 2e-3 -0.098 0.0059-0.1523 0.0039-0.055 0.01172-0.094 0.02344-0.1172 0.42969 0.039 0.8164 0.059 1.1602 0.059" fill="#604b4b"/>
54
- </g>
55
- <g id="layer1-5" transform="matrix(.61494 -.13573 .12991 .5886 -103.28 47.571)">
56
- <g id="g3139" fill="none" opacity=".71698" stroke="#000" stroke-linecap="round" stroke-width=".55837">
57
- <path id="path3149" d="m-25.006 1555.4 54.551 24.768 32.854-41.779-45.243-14.069z"/>
58
- <path id="path3141" d="m-25.006 1497.8v57.619l42.162-31.08 1e-6 -43.826z"/>
59
- <path id="path3151" d="m17.157 1480.5 45.243 8.4209v49.475l-45.243-14.069z"/>
60
- <path id="path3143" d="m-25.006 1497.8 54.551 14.592 32.854-23.459-45.243-8.4209z"/>
61
- <path id="path3147" d="m29.546 1512.4v67.795l32.854-41.779v-49.475z"/>
62
- <path id="path3145" d="m-25.006 1497.8 54.551 14.592v67.795l-54.551-24.768z"/>
63
- </g>
64
- <g id="g8797" transform="matrix(1.1495 0 0 1.0849 -102.78 414.69)">
65
- <g id="g3323">
66
- <path id="path7607" d="m86.531 988.47-6.0625 3.2188 0.125 0.28125 6.0938-3.2188-0.15625-0.28125z" color="#000000" style="block-progression:tb;text-indent:0;text-transform:none"/>
67
- <path id="path3329" d="m81.61 991.26 0.2531-0.82471-1.6004 1.5392 2.172-0.46141-0.82471-0.2531z" fill-rule="evenodd" stroke="#000" stroke-width=".122pt"/>
68
- <path id="path3331" d="m84.854 988.7 2.1109-0.28726-1.4219 1.5864c0.07881-0.53315-0.20108-1.057-0.68897-1.2991z" fill-rule="evenodd" stroke-linejoin="round" stroke-width=".625"/>
69
- </g>
70
- <g id="text8757" transform="scale(1.0271 .97358)">
71
- <path id="path8899" d="m81.111 1012.2c-0.0055-0.01-0.02469-0.019-0.05761-0.041-0.02469-0.017-0.0439-0.032-0.05761-0.045-0.70228-0.5157-1.0534-0.9587-1.0534-1.3291-3e-6 -0.2743 0.1207-0.491 0.36211-0.6502 0.17282-0.1069 0.37857-0.1604 0.61724-0.1604 0.58431 0 1.1645 0.1879 1.7406 0.5637 0.18105 0.1207 0.27158 0.2387 0.27158 0.3539-6e-6 0.1865-0.09053 0.2798-0.27158 0.2798-0.10425 0-0.2181-0.062-0.34154-0.1852-0.4938-0.4663-0.96701-0.6995-1.4196-0.6995-0.38132 0-0.57198 0.1523-0.57197 0.4568-3e-6 0.2825 0.43755 0.6981 1.3127 1.2468 0.65838 0.4115 0.98757 0.945 0.98758 1.6007-5e-6 0.6638-0.18792 1.2413-0.56374 1.7324-0.41973 0.5459-0.95055 0.8188-1.5925 0.8188-0.32371 0-0.60764-0.1097-0.85179-0.3292-0.33742-0.3017-0.50614-0.7036-0.50613-1.2056-3e-6 -0.8532 0.35937-1.5376 1.0781-2.0534 0.24689-0.1701 0.55277-0.288 0.91763-0.3539m0.13579 0.2428c-0.50202 0-0.92586 0.3265-1.2715 0.9794-0.20301 0.3785-0.30451 0.7941-0.3045 1.2468-3e-6 0.8257 0.2757 1.2386 0.8271 1.2386 0.40326 0 0.76811-0.2552 1.0946-0.7654 0.30998-0.4773 0.46498-0.9807 0.46498-1.5102-5e-6 -0.4279-0.11248-0.7544-0.33742-0.9793-0.13991-0.1399-0.29765-0.2099-0.47322-0.2099"/>
72
- </g>
73
- </g>
74
- </g>
75
- <g id="text3075" transform="translate(16.411 -18.1)" fill="#00af00">
76
- <path id="path3185" d="m59.565 1027.2-0.09375 1.8515h-4.6934v-0.3515l3.6855-5.0684h-1.4883c-0.65625 0-1.0918 0.1074-1.3066 0.3223-0.18359 0.168-0.30469 0.5332-0.36328 1.0957h-0.32226l0.10547-1.7871h4.2949v0.3457l-3.6797 5.0566h1.8926c0.63672 0 1.0644-0.1035 1.2832-0.3105 0.18359-0.1836 0.30468-0.5684 0.36328-1.1543h0.32227" fill="#00af00"/>
77
- </g>
78
- <g id="g3176" transform="matrix(.61494 -.13573 .12991 .5886 -73.071 393.7)">
79
- <path id="path3095" d="m91.344 897.22 1-0.0312-0.03125-0.96875h-0.96875zm0.03125 1.9688 0.03125 0.96875 0.96875-0.0312v-0.96875zm0.0625 2.9375v0.96875h1l-0.03125-1zm0.0625 2.9375v0.96875h0.96875v-1zm0.0625 3.9062h0.96875v-0.96875h-1zm0.03125 2.9688 1-0.0312-0.03125-0.96875h-0.96875zm0.0625 2.9375 0.96875-0.0312v-0.96875h-1zm0.03125 1.9688v0.96875h1l-0.03125-1zm0.0625 2.9375v0.96875h0.96875v-1zm0.0625 3.9062h0.96875v-0.96875h-1zm0.03125 2.9688 1-0.0312-0.03125-0.96875h-0.96875zm0.0625 2.9375 0.96875-0.0312v-0.96875h-1zm0.03125 1.9688 0.03125 0.96875h0.96875l-0.03125-1zm0.0625 2.9375v0.96875h1l-0.03125-1zm0.0625 3.9062h0.96875v-0.96875h-1zm0.03125 2.9688 1-0.0312-0.03125-0.96875h-0.96875zm0.0625 2.9375 0.96875-0.0312v-0.96875h-1zm0.03125 1.9688 0.03125 0.96875h0.96875l-0.03125-1zm0.0625 2.9375v0.96875h1l-0.03125-1zm0.0625 3.9062h0.96875v-0.96875h-1zm0.03125 2.9688 1-0.0312-0.03125-0.96875h-0.96875zm0.0625 2.9375 0.96875-0.03125v-0.96875h-1zm0.03125 1.9688 0.03125 0.96875h0.96875l-0.03125-1zm0.0625 2.9375v0.96875h1l-0.03125-1zm0.0625 3.9062h0.96875v-0.96875h-1zm0.03125 2.9688 1-0.0312-0.03125-0.96875h-0.96875zm0.0625 2.9375 0.96875-0.0312v-0.96875h-1zm0.03125 1.9688 0.03125 0.96875h0.96875l-0.03125-1zm0.0625 2.9375v0.96875h1l-0.03125-1z" color="#000000" fill="#b40000" opacity=".71226" style="block-progression:tb;text-indent:0;text-transform:none"/>
80
- <path id="path3182" d="m91.887 899.85 1.9959 1.929-2.0796-6.8352-1.8454 6.9021 1.929-1.9959z" fill-rule="evenodd" stroke="#000" stroke-width=".39255pt"/>
81
- </g>
82
- <path id="path4909" d="m102.6 913.94 0.89223-0.0975-2.1081-0.69056 1.2963 1.5158-0.0805-0.72781z" fill="#991212" fill-rule="evenodd" opacity=".79717"/>
83
- <path id="path4660" transform="matrix(.29364 -.044875 .048518 .27533 58.729 891.68)" d="m131.69 101.93c4.1638 2.5629 5.0622 7.4715 2.0064 10.964s-8.9083 4.2457-13.072 1.6828-5.0622-7.4715-2.0064-10.964c0.39408-0.45037 0.84439-0.86414 1.3433-1.2343" color="#000000" fill="none" opacity=".79717" stroke="#991212" stroke-width="1.7106"/>
84
- <path id="path3104" d="m49.643 936.37 21.966 113.49" fill="none" stroke="#001cf3" stroke-dasharray="6, 1"/>
85
- <g id="g3341-6" transform="translate(110.54 -52.114)" fill="#00af00">
86
- <path id="path3041-2" d="m9.5938 976.09v4.0312l-0.25 45.469h1l0.25-45.469v-4.0312h-1z" color="#000000" style="block-progression:tb;text-indent:0;text-transform:none"/>
87
- <path id="path3347-9" d="m10.081 980.1 1.9898 2.0102-1.9643-7.0101-2.0357 6.9897 2.0102-1.9898z" fill-rule="evenodd" stroke="#000" stroke-width=".4pt"/>
88
- </g>
89
- <g id="text3075-1" transform="translate(67.748 -76.223)" fill="#00af00">
90
- <path id="path3185-2" d="m59.565 1027.2-0.09375 1.8515h-4.6934v-0.3515l3.6855-5.0684h-1.4883c-0.65625 0-1.0918 0.1074-1.3066 0.3223-0.18359 0.168-0.30469 0.5332-0.36328 1.0957h-0.32226l0.10547-1.7871h4.2949v0.3457l-3.6797 5.0566h1.8926c0.63672 0 1.0644-0.1035 1.2832-0.3105 0.18359-0.1836 0.30468-0.5684 0.36328-1.1543h0.32227" fill="#00af00"/>
91
- </g>
92
- <text id="text4052" x="60.068256" y="987.85706" fill="#000000" font-family="Amiri" font-size="12px" letter-spacing="0px" word-spacing="0px" style="line-height:125%" xml:space="preserve"><tspan id="tspan4054" x="60.068256" y="987.85706" fill="#b92e2e" font-size="10px">β</tspan></text>
93
- <path id="path4145-9" transform="matrix(.23649 -.50866 .39446 .40965 1.5948 1013.5)" d="m110.38 84.055a59.215 64.055 0 0 1 9.8811 14.456l-52.083 30.477z" fill="#b9372e" marker-start="url(#Arrow2Mstart)"/>
94
- <path id="path4145-9-5" transform="matrix(.20227 -.45855 .3374 .36929 62.579 957.26)" d="m109.04 82.629a59.215 64.055 0 0 1 11.435 16.314l-52.297 30.045z" fill="#b9372e" marker-start="url(#Arrow2Mstart)"/>
95
- <text id="text4052-9" x="113.7459" y="934.96869" fill="#000000" font-family="Amiri" font-size="12px" letter-spacing="0px" word-spacing="0px" style="line-height:125%" xml:space="preserve"><tspan id="tspan4054-2" x="113.7459" y="934.96869" fill="#b92e2e" font-size="10px">β</tspan></text>
96
- </g>
97
- </svg>
@@ -1,368 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
-
4
- <svg
5
- xmlns:dc="http://purl.org/dc/elements/1.1/"
6
- xmlns:cc="http://creativecommons.org/ns#"
7
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
- xmlns:svg="http://www.w3.org/2000/svg"
9
- xmlns="http://www.w3.org/2000/svg"
10
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
- id="svg2"
13
- width="150"
14
- height="160"
15
- version="1.1"
16
- inkscape:version="0.48.5 r10040"
17
- sodipodi:docname="lamino_theta_angle.svg">
18
- <sodipodi:namedview
19
- pagecolor="#ffffff"
20
- bordercolor="#666666"
21
- borderopacity="1"
22
- objecttolerance="10"
23
- gridtolerance="10"
24
- guidetolerance="10"
25
- inkscape:pageopacity="0"
26
- inkscape:pageshadow="2"
27
- inkscape:window-width="1920"
28
- inkscape:window-height="1098"
29
- id="namedview73"
30
- showgrid="false"
31
- inkscape:zoom="8.34386"
32
- inkscape:cx="108.38063"
33
- inkscape:cy="112.56123"
34
- inkscape:window-x="0"
35
- inkscape:window-y="31"
36
- inkscape:window-maximized="1"
37
- inkscape:current-layer="g3176" />
38
- <defs
39
- id="defs4">
40
- <marker
41
- id="Arrow2Mstart"
42
- overflow="visible"
43
- orient="auto">
44
- <path
45
- id="path3797"
46
- transform="scale(.6)"
47
- d="m8.7186 4.0337-10.926-4.0177 10.926-4.0177c-1.7455 2.3721-1.7354 5.6175-6e-7 8.0354z"
48
- fill-rule="evenodd"
49
- stroke-linejoin="round"
50
- stroke-width=".625" />
51
- </marker>
52
- </defs>
53
- <metadata
54
- id="metadata7">
55
- <rdf:RDF>
56
- <cc:Work
57
- rdf:about="">
58
- <dc:format>image/svg+xml</dc:format>
59
- <dc:type
60
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
61
- <dc:title />
62
- </cc:Work>
63
- </rdf:RDF>
64
- </metadata>
65
- <g
66
- id="layer1"
67
- transform="translate(0 -892.36)">
68
- <g
69
- id="g3139-6"
70
- fill="none"
71
- opacity=".71698"
72
- stroke="#000"
73
- stroke-linecap="round"
74
- stroke-width=".5">
75
- <path
76
- id="path3145-2"
77
- d="m17.89 957.15 47.455 13.451v62.491l-47.455-22.83z" />
78
- <path
79
- id="path3147-6"
80
- d="m65.345 970.6v62.491l6.04e-4 0.068v-62.558z" />
81
- <path
82
- id="path3149-7"
83
- d="m17.89 1010.3 47.455 22.83 6.04e-4 0.068-47.499-22.861z" />
84
- <path
85
- id="path3141-5"
86
- d="m17.89 957.15v53.111l-0.04325 0.037v-53.16z" />
87
- <path
88
- id="path3143-5"
89
- d="m17.89 957.15 47.455 13.451 6.04e-4 5.1e-4 -47.499-13.463z" />
90
- <path
91
- id="path3151-3"
92
- d="m17.847 957.14 47.499 13.463v62.558l-47.499-22.861z" />
93
- </g>
94
- <g
95
- id="g3349"
96
- transform="matrix(-.99991 .013593 -.013593 -.99991 87.873 2061.4)">
97
- <path
98
- id="path3039"
99
- d="m13.344 1028.4-0.4375 0.875 41.438 19.719 0.40625-0.9062-41.406-19.688z"
100
- color="#000000"
101
- style="block-progression:tb;text-indent:0;text-transform:none" />
102
- <path
103
- id="path3355"
104
- d="m50.936 1046.9-2.6651 0.9471 7.1805 1.2004-5.4624-4.8127 0.94712 2.6652z"
105
- fill-rule="evenodd"
106
- stroke="#000"
107
- stroke-width=".4pt" />
108
- </g>
109
- <g
110
- id="g3341"
111
- transform="translate(59.207 6.0091)">
112
- <path
113
- id="path3041"
114
- d="m9.5938 976.09v4.0312l-0.25 45.469h1l0.25-45.469v-4.0312h-1z"
115
- color="#000000"
116
- style="block-progression:tb;text-indent:0;text-transform:none" />
117
- <path
118
- id="path3347"
119
- d="m10.081 980.1 1.9898 2.0102-1.9643-7.0101-2.0357 6.9897 2.0102-1.9898z"
120
- fill-rule="evenodd"
121
- stroke="#000"
122
- stroke-width=".4pt" />
123
- </g>
124
- <g
125
- id="text5219"
126
- transform="matrix(.90125 .4333 -.4333 .90125 5.1479 -15.711)">
127
- <path
128
- id="path5294"
129
- d="m465.17 910.02v4.9922c-1e-5 0.50781 0.0234 0.78906 0.0703 0.84375 0.0781 0.10937 0.39843 0.16406 0.96094 0.16406 0.42577 0 0.82226-0.0664 1.1894-0.19922 0.36718-0.13672 0.69531-0.33789 0.98437-0.60351 0.28906-0.26563 0.51562-0.61328 0.67969-1.043 0.16796-0.43359 0.25195-0.92773 0.25195-1.4824 0-0.51563-0.0605-0.98047-0.18164-1.3945-0.11719-0.41796-0.27735-0.76561-0.48046-1.043-0.20314-0.27734-0.44532-0.50976-0.72657-0.69727-0.28125-0.18749-0.57813-0.32226-0.89062-0.4043-0.31251-0.0859-0.64258-0.1289-0.99024-0.1289-0.51172 0-0.78125 0.043-0.80859 0.1289-0.0469 0.14845-0.0664 0.43751-0.0586 0.86719m1.1836-1.3711c0.6289 0 1.2031 0.0977 1.7227 0.29297 0.51952 0.19141 0.95311 0.45703 1.3008 0.79687 0.34765 0.33594 0.61522 0.73633 0.80273 1.2012 0.1914 0.46485 0.2871 0.9668 0.28711 1.5059-1e-5 0.41797-0.041 0.81055-0.12305 1.1777-0.082 0.36719-0.22657 0.72461-0.43359 1.0723-0.20313 0.34375-0.4629 0.63867-0.7793 0.88477-0.3125 0.24609-0.71875 0.44336-1.2188 0.59179-0.5 0.14844-1.0703 0.22266-1.7109 0.22266h-2.9297c-0.0274-0.0312-0.041-0.0879-0.041-0.16992 4e-3 -0.082 0.0176-0.13867 0.041-0.16992 0.11719 0 0.27734-0.0176 0.48047-0.0527 0.20312-0.0351 0.3125-0.0801 0.32812-0.13476 0.0391-0.125 0.0586-0.41406 0.0586-0.86719v-5.0039c-1e-5 -0.45312-0.0195-0.74218-0.0586-0.86718-0.0156-0.0547-0.125-0.0996-0.32812-0.13477-0.20313-0.0352-0.36328-0.0527-0.48047-0.0527-0.0234-0.0312-0.0371-0.0879-0.041-0.16993 0-0.082 0.0137-0.13866 0.041-0.16992 0.80078 0.0391 1.2617 0.0586 1.3828 0.0586 0.14844 0 0.42383-2e-3 0.82617-6e-3 0.40625-4e-3 0.69726-6e-3 0.87305-6e-3" />
130
- <path
131
- id="path5296"
132
- d="m472.42 913.02h1.9102c0.16796 0 0.25781-0.0898 0.26953-0.26953 4e-3 -0.0781-0.0117-0.17578-0.0469-0.29297-0.0352-0.11718-0.0879-0.23828-0.15821-0.36328-0.0703-0.125-0.17188-0.23046-0.30469-0.31641-0.13281-0.0859-0.2832-0.1289-0.45117-0.1289-0.18359 0-0.35156 0.0469-0.5039 0.14062-0.15235 0.0938-0.27344 0.20899-0.36328 0.3457-0.0859 0.13282-0.15821 0.26759-0.2168 0.4043-0.0547 0.13282-0.0937 0.2461-0.11719 0.33985-0.0195 0.0937-0.0254 0.14062-0.0176 0.14062m-0.0586 0.43359c-0.0156 0.71485 0.16015 1.2695 0.52734 1.6641 0.37109 0.39062 0.83203 0.58593 1.3828 0.58593 0.28124 0 0.53515-0.0684 0.76171-0.20507 0.23047-0.13672 0.40625-0.27539 0.52735-0.41602 4e-3 0 0.0137 8e-3 0.0293 0.0234 0.0156 0.0117 0.0293 0.0312 0.041 0.0586 0.0156 0.0274 0.0234 0.0547 0.0234 0.082-1e-5 0.0625-0.0234 0.13282-0.0703 0.21094-0.0625 0.10156-0.14063 0.20313-0.23438 0.30469-0.0937 0.10156-0.21094 0.20703-0.35156 0.3164-0.14063 0.10938-0.31055 0.19922-0.50977 0.26954-0.19531 0.0703-0.40039 0.10546-0.61523 0.10546-0.6836 0-1.2461-0.23046-1.6875-0.6914-0.4375-0.46484-0.65625-1.0469-0.65625-1.7461 0-0.3789 0.0723-0.74413 0.21679-1.0957 0.14454-0.35156 0.32813-0.64843 0.55079-0.89062 0.22265-0.24219 0.4707-0.43555 0.74414-0.58008 0.27343-0.14843 0.53906-0.22265 0.79687-0.22266 0.26562 1e-5 0.50586 0.041 0.7207 0.12305 0.21484 0.082 0.38477 0.1836 0.50977 0.30469 0.125 0.11719 0.22851 0.25195 0.31055 0.40429 0.082 0.15235 0.13866 0.29102 0.16992 0.41602 0.0312 0.125 0.0469 0.24024 0.0469 0.3457 0 0.17969-0.0215 0.31641-0.0645 0.41016-0.0391 0.0898-0.11133 0.13672-0.2168 0.14062-0.16016 0.0117-0.66797 0.0293-1.5234 0.0527-0.85157 0.0195-1.3281 0.0293-1.4297 0.0293" />
133
- <path
134
- id="path5298"
135
- d="m477.98 911.3h1.5117c0.0391 1e-5 0.0586 0.043 0.0586 0.12891 0 0.12501-0.0547 0.24219-0.16406 0.35156h-1.4062v3.0703c0 0.64062 0.25781 0.96093 0.77344 0.96093 0.25781 0 0.51171-0.0898 0.76172-0.26953 0.0234 0.0117 0.0351 0.0391 0.0351 0.082 0 0.0859-0.0156 0.14453-0.0469 0.17578-0.0781 0.0859-0.16602 0.17188-0.26367 0.25782-0.0938 0.082-0.23048 0.16797-0.41016 0.25781-0.17969 0.0859-0.35742 0.12891-0.5332 0.12891-0.16016 0-0.3086-0.0195-0.44532-0.0586s-0.26562-0.10351-0.38671-0.19336c-0.1211-0.0898-0.2168-0.2207-0.28711-0.39258-0.0664-0.17187-0.0996-0.3789-0.0996-0.62109v-3.3984h-0.67969c-0.0391 1e-5 -0.0586-0.0352-0.0586-0.10547 0-0.0195 0.043-0.0781 0.1289-0.17578 0.0859-0.10155 0.14453-0.16796 0.17578-0.19922h0.4336v-0.73828c0.0625-0.0742 0.15234-0.17382 0.26953-0.29883 0.11718-0.1289 0.21875-0.24022 0.30469-0.33398 0.0859-0.0937 0.13281-0.14452 0.14062-0.15234 0.0195-0.0195 0.043-0.0332 0.0703-0.041 0.0312-8e-3 0.0586-8e-3 0.082 0 0.0234 4e-3 0.0352 0.0137 0.0352 0.0293v1.5352" />
136
- <path
137
- id="path5300"
138
- d="m481.12 913.02h1.9102c0.16797 0 0.25781-0.0898 0.26953-0.26953 4e-3 -0.0781-0.0117-0.17578-0.0469-0.29297-0.0352-0.11718-0.0879-0.23828-0.15821-0.36328-0.0703-0.125-0.17187-0.23046-0.30468-0.31641-0.13282-0.0859-0.28321-0.1289-0.45117-0.1289-0.1836 0-0.35157 0.0469-0.50391 0.14062-0.15235 0.0938-0.27344 0.20899-0.36328 0.3457-0.0859 0.13282-0.15821 0.26759-0.2168 0.4043-0.0547 0.13282-0.0937 0.2461-0.11719 0.33985-0.0195 0.0937-0.0254 0.14062-0.0176 0.14062m-0.0586 0.43359c-0.0156 0.71485 0.16016 1.2695 0.52735 1.6641 0.37109 0.39062 0.83202 0.58593 1.3828 0.58593 0.28124 0 0.53515-0.0684 0.76172-0.20507 0.23046-0.13672 0.40624-0.27539 0.52734-0.41602 4e-3 0 0.0137 8e-3 0.0293 0.0234 0.0156 0.0117 0.0293 0.0312 0.041 0.0586 0.0156 0.0274 0.0234 0.0547 0.0234 0.082 0 0.0625-0.0234 0.13282-0.0703 0.21094-0.0625 0.10156-0.14063 0.20313-0.23438 0.30469-0.0937 0.10156-0.21094 0.20703-0.35156 0.3164-0.14063 0.10938-0.31055 0.19922-0.50977 0.26954-0.19531 0.0703-0.40039 0.10546-0.61523 0.10546-0.6836 0-1.2461-0.23046-1.6875-0.6914-0.4375-0.46484-0.65625-1.0469-0.65625-1.7461 0-0.3789 0.0723-0.74413 0.2168-1.0957 0.14453-0.35156 0.32812-0.64843 0.55078-0.89062 0.22265-0.24219 0.4707-0.43555 0.74414-0.58008 0.27343-0.14843 0.53906-0.22265 0.79687-0.22266 0.26563 1e-5 0.50586 0.041 0.72071 0.12305 0.21484 0.082 0.38476 0.1836 0.50976 0.30469 0.125 0.11719 0.22851 0.25195 0.31055 0.40429 0.082 0.15235 0.13867 0.29102 0.16992 0.41602 0.0312 0.125 0.0469 0.24024 0.0469 0.3457-1e-5 0.17969-0.0215 0.31641-0.0645 0.41016-0.0391 0.0898-0.11133 0.13672-0.21679 0.14062-0.16016 0.0117-0.66798 0.0293-1.5234 0.0527-0.85157 0.0195-1.3281 0.0293-1.4297 0.0293" />
139
- <path
140
- id="path5302"
141
- d="m489.27 911.83c-1e-5 0.19141-0.0449 0.33399-0.13477 0.42773-0.0899 0.0899-0.19336 0.13477-0.31055 0.13477-0.0781 0-0.15625-0.0254-0.23437-0.0762-0.0781-0.0508-0.16212-0.11523-0.25196-0.19335-0.0859-0.082-0.15039-0.13672-0.19335-0.16407-0.13282-0.0898-0.2422-0.14843-0.32813-0.17578-0.082-0.0312-0.19532-0.0469-0.33984-0.0469-0.33594 0-0.63868 0.18164-0.90821 0.54492-0.26953 0.35938-0.40429 0.83008-0.40429 1.4121 0 0.65625 0.17578 1.1504 0.52734 1.4824 0.35547 0.33203 0.8125 0.49805 1.3711 0.49805 0.28125 0 0.52734-0.0645 0.73829-0.19336 0.21483-0.12891 0.3828-0.26367 0.5039-0.4043 4e-3 0 0.0137 8e-3 0.0293 0.0234 0.0156 0.0117 0.0293 0.0312 0.041 0.0586 0.0156 0.0274 0.0234 0.0547 0.0234 0.082 0 0.0625-0.0234 0.13282-0.0703 0.21094-0.0625 0.10156-0.14063 0.20313-0.23438 0.30469-0.0937 0.10156-0.21094 0.20703-0.35156 0.3164-0.14063 0.10938-0.31055 0.19922-0.50976 0.26954-0.19532 0.0703-0.4004 0.10546-0.61524 0.10546-0.45703 0-0.86914-0.11328-1.2363-0.33984s-0.64844-0.51758-0.84375-0.87305c-0.1914-0.35937-0.28711-0.74414-0.28711-1.1543 0-0.32813 0.0586-0.64453 0.17579-0.94922 0.12109-0.30469 0.27929-0.57031 0.4746-0.79688 0.19922-0.22656 0.42188-0.42382 0.66797-0.59179 0.2461-0.17187 0.5-0.30078 0.76172-0.38672 0.26562-0.0898 0.52148-0.13476 0.76758-0.13477 0.42187 1e-5 0.77343 0.0938 1.0547 0.28125 0.0273 0.0274 0.0527 0.0762 0.0762 0.14649 0.0273 0.0664 0.041 0.12695 0.041 0.18164" />
142
- <path
143
- id="path5304"
144
- d="m491.64 911.3h1.5117c0.0391 1e-5 0.0586 0.043 0.0586 0.12891-1e-5 0.12501-0.0547 0.24219-0.16407 0.35156h-1.4062v3.0703c0 0.64062 0.25781 0.96093 0.77344 0.96093 0.25781 0 0.51172-0.0898 0.76172-0.26953 0.0234 0.0117 0.0351 0.0391 0.0352 0.082-1e-5 0.0859-0.0156 0.14453-0.0469 0.17578-0.0781 0.0859-0.16602 0.17188-0.26367 0.25782-0.0937 0.082-0.23047 0.16797-0.41016 0.25781-0.17969 0.0859-0.35742 0.12891-0.5332 0.12891-0.16016 0-0.3086-0.0195-0.44531-0.0586-0.13672-0.0391-0.26563-0.10351-0.38672-0.19336-0.1211-0.0898-0.2168-0.2207-0.28711-0.39258-0.0664-0.17187-0.0996-0.3789-0.0996-0.62109v-3.3984h-0.67969c-0.0391 1e-5 -0.0586-0.0352-0.0586-0.10547 0-0.0195 0.043-0.0781 0.1289-0.17578 0.0859-0.10155 0.14453-0.16796 0.17579-0.19922h0.43359v-0.73828c0.0625-0.0742 0.15234-0.17382 0.26953-0.29883 0.11719-0.1289 0.21875-0.24022 0.30469-0.33398 0.0859-0.0937 0.13281-0.14452 0.14062-0.15234 0.0195-0.0195 0.043-0.0332 0.0703-0.041 0.0312-8e-3 0.0586-8e-3 0.082 0 0.0234 4e-3 0.0351 0.0137 0.0351 0.0293v1.5352" />
145
- <path
146
- id="path5306"
147
- d="m496.27 911.6c-0.31641 1e-5 -0.58008 0.10157-0.79102 0.30469-0.21094 0.20313-0.35937 0.45118-0.44531 0.74414-0.082 0.29297-0.12305 0.61914-0.12305 0.97852 0 0.39453 0.0605 0.77344 0.18164 1.1367 0.1211 0.35938 0.3086 0.66407 0.5625 0.91407 0.25391 0.25 0.54883 0.375 0.88477 0.375 0.3164 0 0.58007-0.10157 0.79102-0.30469 0.21093-0.20312 0.35741-0.44922 0.43945-0.73828 0.0859-0.29297 0.1289-0.61719 0.12891-0.97266-1e-5 -0.39062-0.0625-0.76757-0.1875-1.1309-0.1211-0.36718-0.3086-0.67577-0.5625-0.92578-0.25391-0.2539-0.54688-0.38085-0.87891-0.38086m0.12891-0.38672c0.76171 1e-5 1.3691 0.24024 1.8223 0.72071 0.45703 0.47656 0.68554 1.0879 0.68555 1.834-1e-5 0.75781-0.23829 1.3926-0.71485 1.9043-0.47266 0.51172-1.0625 0.76758-1.7695 0.76758-0.76172 0-1.373-0.24219-1.834-0.72657-0.45703-0.48828-0.68555-1.1055-0.68555-1.8516 0-0.7539 0.23828-1.3828 0.71485-1.8867 0.47656-0.50781 1.0703-0.76171 1.7812-0.76172" />
148
- <path
149
- id="path5308"
150
- d="m502.96 911.24c0.15234 1e-5 0.29491 0.0332 0.42773 0.0996 0.13671 0.0664 0.23242 0.14649 0.28711 0.24023 0.0312 0.0938 0.0469 0.19923 0.0469 0.31641 0 0.19141-0.0449 0.3418-0.13476 0.45117-0.0899 0.10548-0.17383 0.15821-0.25195 0.15821-0.0508 0-0.0996-0.01-0.14649-0.0293-0.043-0.0234-0.0996-0.0586-0.16992-0.10547-0.0664-0.0508-0.10547-0.0801-0.11719-0.0879-0.14063-0.0937-0.28516-0.14062-0.43359-0.14063-0.22657 1e-5 -0.43946 0.13477-0.63867 0.4043-0.19922 0.26563-0.29883 0.48243-0.29883 0.65039v1.8047c0 0.45313 0.0195 0.74219 0.0586 0.86719 0.0156 0.0547 0.15234 0.0996 0.41016 0.13476 0.26171 0.0352 0.46093 0.0527 0.59765 0.0527 0.0234 0.0312 0.0352 0.0879 0.0352 0.16992 4e-3 0.082-8e-3 0.13867-0.0352 0.16992-0.80078-0.0391-1.2852-0.0586-1.4531-0.0586-0.0742 0-0.51172 0.0195-1.3125 0.0586-0.0273-0.0312-0.041-0.0879-0.041-0.16992 4e-3 -0.082 0.0176-0.13867 0.041-0.16992 0.11328 0 0.25976-0.0176 0.43945-0.0527 0.1836-0.0351 0.2832-0.0801 0.29883-0.13476 0.0312-0.0977 0.0508-0.38672 0.0586-0.86719v-2.1797c0-0.31249-0.0195-0.51562-0.0586-0.60937-0.0234-0.0586-0.0977-0.10547-0.22266-0.14063-0.125-0.0351-0.23046-0.0547-0.3164-0.0586-0.082-8e-3 -0.15625-0.0117-0.22266-0.0117-0.0156-0.0156-0.0254-0.0625-0.0293-0.14063-1e-5 -0.0781 0.01-0.1328 0.0293-0.16406 0.66797-0.0898 1.2266-0.2539 1.6758-0.49219 0.0274 1e-5 0.0547 0.0235 0.082 0.0703 0.0312 0.0469 0.0469 0.0859 0.0469 0.11718-8e-3 0.0469-0.0234 0.22462-0.0469 0.53321-0.0234 0.30469-0.0351 0.48633-0.0351 0.54492 0 0.0156 4e-3 0.0273 0.0117 0.0352 8e-3 4e-3 0.0137 6e-3 0.0176 6e-3 8e-3 -4e-3 0.0137-0.01 0.0176-0.0176 0.13281-0.28906 0.33594-0.57031 0.60938-0.84375 0.27343-0.27344 0.53125-0.41015 0.77344-0.41016" />
151
- </g>
152
- <g
153
- id="text5223-9"
154
- transform="translate(29.764 17.11)">
155
- <path
156
- id="path5311"
157
- d="m4.5365 1006.7c0.44922 0 0.83984-0.02 1.1719-0.059 0.015623 0.035 0.017576 0.1015 0.00586 0.1992-0.00781 0.094-0.025393 0.1406-0.052734 0.1406-0.050784 0-0.11524 0-0.19336 0.012-0.074221 0.01-0.15625 0.029-0.24609 0.064-0.089846 0.031-0.13477 0.072-0.13477 0.123-1.8e-6 0.016 0.0039 0.031 0.011719 0.047l1.2422 3.1641c0.39843-1.0391 0.74609-1.9258 1.043-2.6602 0.046871-0.1133 0.070308-0.2383 0.070312-0.375-4.1e-6 -0.1172-0.062504-0.209-0.1875-0.2754-0.125-0.066-0.28907-0.1-0.49219-0.1-0.027347 0-0.041019-0.049-0.041016-0.1465-3.3e-6 -0.098 0.013668-0.1621 0.041016-0.1933 0.29296 0.039 0.64453 0.059 1.0547 0.059 0.26562 0 0.59374-0.02 0.98438-0.059 0.023432 0.035 0.029291 0.1015 0.017578 0.1992-0.011724 0.094-0.029302 0.1406-0.052734 0.1406-0.10157 0-0.23633 0.031-0.4043 0.094-0.16407 0.062-0.2754 0.164-0.33398 0.3046-0.83594 1.9922-1.4219 3.4024-1.7578 4.2305-0.039065 0.094-0.12305 0.3125-0.25195 0.6563-0.12891 0.3437-0.24219 0.6211-0.33984 0.832-0.097658 0.2109-0.21094 0.4101-0.33984 0.5976-0.29688 0.4375-0.63672 0.6563-1.0195 0.6563-0.33984 0-0.50977-0.168-0.50977-0.5039-5e-7 -0.1133 0.046874-0.2266 0.14062-0.3399 0.3125 0 0.55664-0.039 0.73242-0.1171 0.17578-0.074 0.37305-0.2579 0.5918-0.5508 0.082029-0.1094 0.18945-0.3125 0.32227-0.6094 0.13672-0.2969 0.21679-0.4883 0.24023-0.5742-0.78125-1.9922-1.3945-3.4727-1.8398-4.4414-0.074219-0.1563-0.28906-0.2344-0.64453-0.2344-0.011719 0-0.017578-0.053-0.017578-0.1582 0-0.1094 0.00586-0.1699 0.017578-0.1816 0.37109 0.039 0.76172 0.059 1.1719 0.059" />
158
- </g>
159
- <g
160
- id="g3333"
161
- transform="matrix(.98709 -.16016 .16016 .98709 -109.62 23.849)"
162
- fill="#2eb946">
163
- <path
164
- id="path3039-8"
165
- d="m51.25 996.5 0.59375 0.78125 0.6875-0.53125-0.625-0.78125zm-2.3125 1.7812-0.0625 0.0625 0.625 0.78125 0.0625-0.0625 1.5-1.1875-0.625-0.78125zm-2.4375 1.875 0.625 0.8126 1.5625-1.25-0.59375-0.78125zm-2.375 1.8438 0.625 0.8125 1.5625-1.25-0.59375-0.7813zm-2.3438 1.8438 0.59375 0.8124 1.5938-1.25-0.625-0.7812zm-2.375 1.8437 0.59375 0.8125 1.5938-1.25-0.625-0.7812zm-2.375 1.8437 0.625 0.8126 1.5625-1.25-0.59375-0.7813zm-2.375 1.8438 0.625 0.7812 1.5625-1.2187-0.59375-0.7813zm-2.375 1.8438 0.625 0.7812 1.5938-1.2188-0.625-0.7812zm-2.3438 1.8437 0.59375 0.7813 1.5938-1.2188-0.625-0.7812zm-2.375 1.8437 0.625 0.7813 1.5625-1.2187-0.625-0.7813zm-2.375 1.8438 0.625 0.7812 1.5625-1.2187-0.59375-0.7813zm-2.375 1.8438 0.625 0.7812 1.5938-1.2188-0.625-0.7812zm-2.3438 1.8437 0.59375 0.7813 1.5938-1.2188-0.625-0.7812zm-2.375 1.8437 0.625 0.7813 1.5625-1.2187-0.625-0.7813zm-2.375 1.8438 0.625 0.7812 1.5625-1.2187-0.59375-0.7813z"
166
- color="#000000"
167
- style="block-progression:tb;text-indent:0;text-transform:none" />
168
- <path
169
- id="path3339"
170
- d="m49.069 998.81-0.35026 2.8066 4.2964-5.8772-6.7528 2.7202 2.8067 0.35027z"
171
- fill-rule="evenodd"
172
- stroke="#000"
173
- stroke-width=".4pt" />
174
- </g>
175
- <g
176
- id="text5223-3"
177
- transform="translate(16.411 -18.1)"
178
- fill="#2eb946">
179
- <path
180
- id="path3188"
181
- d="m70.629 1036.2c0.35937 0 0.7539-0.02 1.1836-0.059 0.0078 0.039 0.01172 0.098 0.01172 0.1758-3e-6 0.078-0.01172 0.1328-0.03516 0.164-0.3125 0-0.46875 0.066-0.46875 0.1993-2e-6 0.027 0.01953 0.074 0.05859 0.1406l0.77344 1.2304c0.0625-0.1015 0.17382-0.2636 0.33398-0.4863 0.16406-0.2226 0.28711-0.4043 0.36914-0.5449 0.08593-0.1406 0.1289-0.2461 0.12891-0.3164-4e-6 -0.055-0.03321-0.098-0.09961-0.1289-0.0625-0.035-0.12891-0.057-0.19922-0.065-0.07032-0.012-0.14649-0.019-0.22852-0.023-0.08204 0-0.125-0.01-0.12891-0.01-0.01172-0.01-0.01953-0.061-0.02344-0.1582-3e-6 -0.098 0.0078-0.1582 0.02344-0.1816 0.11328 0 0.24414 0.012 0.39258 0.023 0.14843 0.012 0.28125 0.022 0.39844 0.029 0.12109 0 0.25195 0.01 0.39258 0.01 0.35156 0 0.66406-0.02 0.9375-0.059 0.0078 0.031 0.0098 0.096 0.0059 0.1933-5e-6 0.098-0.0059 0.1465-0.01758 0.1465-0.48829 0.027-0.78907 0.1133-0.90234 0.2578-0.09766 0.1368-0.2461 0.3458-0.44531 0.627-0.19922 0.2773-0.36328 0.5039-0.49219 0.6797-0.125 0.1758-0.20313 0.2832-0.23438 0.3223l1.4062 2.0859c0.19531 0.2812 0.49609 0.4219 0.90234 0.4219 0.0078 0 0.01171 0.025 0.01172 0.076 0.0039 0.051 0.0039 0.1036 0 0.1582-0.0039 0.055-0.01172 0.09-0.02344 0.1055-0.10157 0-0.22266-0.012-0.36328-0.023-0.14063-0.012-0.26758-0.02-0.38086-0.024-0.10938-0.01-0.22852-0.012-0.35742-0.012-0.14844 0-0.28907 0-0.42188 0.012-0.13282 0-0.28516 0.012-0.45703 0.024-0.16797 0.012-0.3086 0.02-0.42188 0.023-0.01563-0.039-0.02344-0.1055-0.02344-0.1992 0.0039-0.094 0.01562-0.1406 0.03516-0.1406 0.11328-0.01 0.22265-0.029 0.32812-0.064 0.10937-0.035 0.16406-0.084 0.16406-0.1465-4e-6 -0.016-0.0078-0.039-0.02344-0.07-0.40625-0.664-0.71485-1.1523-0.92578-1.4648-0.04297 0.062-0.16406 0.2402-0.36328 0.5332-0.19532 0.289-0.35547 0.5332-0.48047 0.7324-0.04688 0.074-0.07031 0.1484-0.07031 0.2227-2e-6 0.047 0.01562 0.088 0.04687 0.123 0.03125 0.031 0.08203 0.057 0.15234 0.076 0.07422 0.016 0.13086 0.027 0.16992 0.035 0.04297 0 0.11328 0.01 0.21094 0.018 0.02734 0 0.04883 0.01 0.06445 0.01 0.0078 0 0.01367 0.025 0.01758 0.076 0.0039 0.047 0.0039 0.098 0 0.1524-0.0039 0.055-0.01367 0.092-0.0293 0.1113-0.10938 0-0.23242-0.012-0.36914-0.023-0.13672-0.012-0.26172-0.02-0.375-0.024-0.10938-0.01-0.23242-0.012-0.36914-0.012-0.13281 0-0.25586 0-0.36914 0.012-0.10938 0-0.23242 0.012-0.36914 0.024s-0.25781 0.02-0.36328 0.023c-0.01172-0.047-0.01563-0.1074-0.01172-0.1816 0.0078-0.078 0.01953-0.1309 0.03516-0.1582 0.01563 0 0.0625-0.012 0.14062-0.024 0.07813-0.012 0.12891-0.02 0.15234-0.023 0.02734 0 0.07617-0.012 0.14648-0.023 0.07422-0.016 0.12695-0.029 0.1582-0.041 0.03516-0.016 0.08203-0.035 0.14062-0.059 0.05859-0.023 0.10547-0.047 0.14062-0.07 0.03906-0.027 0.08008-0.059 0.12305-0.094 0.04297-0.039 0.08008-0.08 0.11133-0.1231 0.72656-1.0468 1.1094-1.5976 1.1484-1.6523l-1.3594-2.0274c-0.05859-0.09-0.16797-0.1542-0.32812-0.1933-0.15625-0.043-0.30859-0.064-0.45703-0.064-0.0078 0-0.01367-0.023-0.01758-0.07 0-0.047 2e-3 -0.098 0.0059-0.1523 0.0039-0.055 0.01172-0.094 0.02344-0.1172 0.42969 0.039 0.8164 0.059 1.1602 0.059"
182
- fill="#2eb946" />
183
- </g>
184
- <g
185
- id="layer1-5"
186
- transform="matrix(.61994 -.11072 .10597 .59338 -67.643 39.891)">
187
- <g
188
- id="g3139"
189
- fill="none"
190
- opacity=".71698"
191
- stroke="#000"
192
- stroke-linecap="round"
193
- stroke-width=".55837">
194
- <path
195
- id="path3149"
196
- d="m-25.006 1555.4 54.551 24.768 32.854-41.779-45.243-14.069z" />
197
- <path
198
- id="path3141"
199
- d="m-25.006 1497.8v57.619l42.162-31.08v-43.826z" />
200
- <path
201
- id="path3151"
202
- d="m17.157 1480.5 45.243 8.421v49.474l-45.243-14.069z" />
203
- <path
204
- id="path3143"
205
- d="m-25.006 1497.8 54.551 14.592 32.854-23.459-45.243-8.421z" />
206
- <path
207
- id="path3147"
208
- d="m29.546 1512.4v67.795l32.854-41.779v-49.474z" />
209
- <path
210
- id="path3145"
211
- d="m-25.006 1497.8 54.551 14.592v67.795l-54.551-24.768z" />
212
- </g>
213
- <g
214
- id="g8797"
215
- transform="matrix(1.1495 0 0 1.0849 -102.78 414.69)">
216
- <g
217
- id="g3323">
218
- <path
219
- id="path7607"
220
- d="m86.531 988.47-6.0625 3.2188 0.125 0.28125 6.0938-3.2188-0.15625-0.28125z"
221
- color="#000000"
222
- style="block-progression:tb;text-indent:0;text-transform:none" />
223
- <path
224
- id="path3329"
225
- d="m81.61 991.26 0.2531-0.82471-1.6004 1.5392 2.172-0.46141-0.82471-0.2531z"
226
- fill-rule="evenodd"
227
- stroke="#000"
228
- stroke-width=".122pt" />
229
- <path
230
- id="path3331"
231
- d="m84.854 988.7 2.1109-0.28726-1.4219 1.5864c0.07881-0.53315-0.20108-1.057-0.68897-1.2991z"
232
- fill-rule="evenodd"
233
- stroke-linejoin="round"
234
- stroke-width=".625" />
235
- </g>
236
- <g
237
- id="text8757"
238
- transform="scale(1.0271 .97358)">
239
- <path
240
- id="path8899"
241
- d="m81.111 1012.2c-0.0055-0.01-0.02469-0.019-0.05761-0.041-0.02469-0.017-0.0439-0.032-0.05761-0.045-0.70228-0.5157-1.0534-0.9587-1.0534-1.3291-3e-6 -0.2743 0.1207-0.491 0.36211-0.6502 0.17282-0.1069 0.37857-0.1604 0.61724-0.1604 0.58431 0 1.1645 0.1879 1.7406 0.5637 0.18105 0.1207 0.27158 0.2387 0.27158 0.3539-6e-6 0.1865-0.09053 0.2798-0.27158 0.2798-0.10425 0-0.2181-0.062-0.34154-0.1852-0.4938-0.4663-0.96701-0.6995-1.4196-0.6995-0.38132 0-0.57198 0.1523-0.57197 0.4568-3e-6 0.2825 0.43755 0.6981 1.3127 1.2468 0.65838 0.4115 0.98757 0.945 0.98758 1.6007-5e-6 0.6638-0.18792 1.2413-0.56374 1.7324-0.41973 0.5459-0.95055 0.8188-1.5925 0.8188-0.32371 0-0.60764-0.1097-0.85179-0.3292-0.33742-0.3017-0.50614-0.7036-0.50613-1.2056-3e-6 -0.8532 0.35937-1.5376 1.0781-2.0534 0.24689-0.1701 0.55277-0.288 0.91763-0.3539m0.13579 0.2428c-0.50202 0-0.92586 0.3265-1.2715 0.9794-0.20301 0.3785-0.30451 0.7941-0.3045 1.2468-3e-6 0.8257 0.2757 1.2386 0.8271 1.2386 0.40326 0 0.76811-0.2552 1.0946-0.7654 0.30998-0.4773 0.46498-0.9807 0.46498-1.5102-5e-6 -0.4279-0.11248-0.7544-0.33742-0.9793-0.13991-0.1399-0.29765-0.2099-0.47322-0.2099" />
242
- </g>
243
- </g>
244
- </g>
245
- <g
246
- id="text3075"
247
- transform="translate(15.687 -33.304)">
248
- <path
249
- id="path3185"
250
- d="m59.565 1027.2-0.09375 1.8515h-4.6934v-0.3515l3.6855-5.0684h-1.4883c-0.65625 0-1.0918 0.1074-1.3066 0.3223-0.18359 0.168-0.30469 0.5332-0.36328 1.0957h-0.32226l0.10547-1.7871h4.2949v0.3457l-3.6797 5.0566h1.8926c0.63672 0 1.0644-0.1035 1.2832-0.3105 0.18359-0.1836 0.30468-0.5684 0.36328-1.1543h0.32227" />
251
- </g>
252
- <g
253
- id="g3176"
254
- transform="matrix(.62974 0 0 .60277 49.248 367.96)">
255
- <path
256
- id="path3095"
257
- d="m 86.581401,897.68038 0.988814,-0.15892 -0.144582,-0.95746 -0.961457,0.12396 z m 0.261817,1.94998 0.144582,0.95746 0.957799,-0.15492 -0.113567,-0.96146 z m 0.406394,2.90739 0.113566,0.96145 0.992472,-0.12795 -0.148245,-0.98847 z m 0.406393,2.90738 0.113567,0.96146 0.961456,-0.12396 -0.11723,-0.99247 z m 0.519954,3.8688 0.961457,-0.12396 -0.113567,-0.96145 -0.992472,0.12795 z m 0.379048,2.94245 0.988814,-0.15892 -0.144582,-0.95746 -0.961457,0.12396 z m 0.406393,2.90739 0.957799,-0.15492 -0.113566,-0.96146 -0.992472,0.12796 z m 0.261818,1.94998 0.113566,0.96146 0.992472,-0.12796 -0.148245,-0.98847 z m 0.406393,2.90739 0.113567,0.96145 0.961457,-0.12395 -0.117231,-0.99248 z m 0.519954,3.86879 0.961457,-0.12396 -0.113567,-0.96145 -0.992471,0.12795 z m 0.379048,2.94245 0.988814,-0.15892 -0.144582,-0.95746 -0.961456,0.12396 z m 0.406393,2.90739 0.957799,-0.15492 -0.113566,-0.96146 -0.992472,0.12796 z m 0.261818,1.94998 0.144581,0.95746 0.961457,-0.12396 -0.148245,-0.98847 z m 0.406393,2.90739 0.113567,0.96145 0.992471,-0.12795 -0.148245,-0.98847 z m 0.519954,3.86879 0.961457,-0.12395 -0.113567,-0.96146 -0.992471,0.12795 z m 0.379048,2.94245 0.988814,-0.15892 -0.144582,-0.95746 -0.961456,0.12396 z m 0.406393,2.90739 0.957799,-0.15492 -0.113566,-0.96146 -0.992472,0.12796 z m 0.261818,1.94998 0.144581,0.95746 0.961457,-0.12396 -0.148245,-0.98847 z m 0.406393,2.90739 0.113567,0.96146 0.992471,-0.12796 -0.148245,-0.98847 z m 0.519954,3.86879 0.961457,-0.12395 -0.113567,-0.96146 -0.992471,0.12796 z m 0.379048,2.94245 0.988814,-0.15892 -0.144581,-0.95745 -0.961457,0.12395 z m 0.406393,2.90739 0.957794,-0.15497 -0.113567,-0.96146 -0.992472,0.12796 z m 0.261818,1.94998 0.144581,0.95746 0.961457,-0.12396 -0.148245,-0.98847 z m 0.406393,2.90739 0.113567,0.96146 0.992472,-0.12796 -0.148245,-0.98847 z m 0.519954,3.86879 0.961457,-0.12395 -0.113567,-0.96146 -0.992471,0.12796 z m 0.379048,2.94246 0.988814,-0.15892 -0.144581,-0.95746 -0.961457,0.12395 z m 0.406393,2.90738 0.9578,-0.15492 -0.113567,-0.96146 -0.992472,0.12796 z m 0.261818,1.94998 0.144582,0.95746 0.961456,-0.12396 -0.148245,-0.98847 z m 0.406393,2.90739 0.113567,0.96146 0.992472,-0.12796 -0.148245,-0.98847 z"
258
- style="text-indent:0;text-transform:none;block-progression:tb;opacity:0.71225999;color:#000000;fill:#b40000"
259
- inkscape:connector-curvature="0" />
260
- <path
261
- id="path3182"
262
- d="m91.887 899.85 1.9959 1.929-2.0796-6.8352-1.8454 6.9021 1.929-1.9959z"
263
- fill-rule="evenodd"
264
- stroke="#000"
265
- stroke-width=".39255pt" />
266
- </g>
267
- <path
268
- id="path4909"
269
- d="m108.67 913.84 0.89228 0.0971-1.9097-1.1287 0.93916 1.7596 0.0783-0.72804z"
270
- fill="#991212"
271
- fill-rule="evenodd"
272
- opacity=".79717" />
273
- <path
274
- id="path4660"
275
- transform="matrix(.29641 .019468 -.011964 .27931 70.621 882.64)"
276
- d="m131.69 101.93c4.1638 2.5629 5.0622 7.4715 2.0064 10.964s-8.9083 4.2457-13.072 1.6828-5.0622-7.4715-2.0064-10.964c0.39408-0.45037 0.84439-0.86414 1.3433-1.2343"
277
- color="#000000"
278
- fill="none"
279
- opacity=".79717"
280
- stroke="#991212"
281
- stroke-width="1.7106" />
282
- <g
283
- id="g3333-9"
284
- transform="matrix(.98709 -.16016 .16016 .98709 -65.761 -29.341)"
285
- fill="#2eb946">
286
- <path
287
- id="path3039-8-3"
288
- d="m51.25 996.5 0.59375 0.78125 0.6875-0.53125-0.625-0.78125zm-2.3125 1.7812-0.0625 0.0625 0.625 0.78125 0.0625-0.0625 1.5-1.1875-0.625-0.78125zm-2.4375 1.875 0.625 0.8126 1.5625-1.25-0.59375-0.78125zm-2.375 1.8438 0.625 0.8125 1.5625-1.25-0.59375-0.7813zm-2.3438 1.8438 0.59375 0.8124 1.5938-1.25-0.625-0.7812zm-2.375 1.8437 0.59375 0.8125 1.5938-1.25-0.625-0.7812zm-2.375 1.8437 0.625 0.8126 1.5625-1.25-0.59375-0.7813zm-2.375 1.8438 0.625 0.7812 1.5625-1.2187-0.59375-0.7813zm-2.375 1.8438 0.625 0.7812 1.5938-1.2188-0.625-0.7812zm-2.3438 1.8437 0.59375 0.7813 1.5938-1.2188-0.625-0.7812zm-2.375 1.8437 0.625 0.7813 1.5625-1.2187-0.625-0.7813zm-2.375 1.8438 0.625 0.7812 1.5625-1.2187-0.59375-0.7813zm-2.375 1.8438 0.625 0.7812 1.5938-1.2188-0.625-0.7812zm-2.3438 1.8437 0.59375 0.7813 1.5938-1.2188-0.625-0.7812zm-2.375 1.8437 0.625 0.7813 1.5625-1.2187-0.625-0.7813zm-2.375 1.8438 0.625 0.7812 1.5625-1.2187-0.59375-0.7813z"
289
- color="#000000"
290
- style="block-progression:tb;text-indent:0;text-transform:none" />
291
- <path
292
- id="path3339-6"
293
- d="m49.069 998.81-0.35026 2.8066 4.2964-5.8772-6.7528 2.7202 2.8067 0.35027z"
294
- fill-rule="evenodd"
295
- stroke="#000"
296
- stroke-width=".4pt" />
297
- </g>
298
- <g
299
- id="text5223-3-0"
300
- transform="translate(60.269 -71.291)"
301
- fill="#2eb946">
302
- <path
303
- id="path3188-6"
304
- d="m70.629 1036.2c0.35937 0 0.7539-0.02 1.1836-0.059 0.0078 0.039 0.01172 0.098 0.01172 0.1758-3e-6 0.078-0.01172 0.1328-0.03516 0.164-0.3125 0-0.46875 0.066-0.46875 0.1993-2e-6 0.027 0.01953 0.074 0.05859 0.1406l0.77344 1.2304c0.0625-0.1015 0.17382-0.2636 0.33398-0.4863 0.16406-0.2226 0.28711-0.4043 0.36914-0.5449 0.08593-0.1406 0.1289-0.2461 0.12891-0.3164-4e-6 -0.055-0.03321-0.098-0.09961-0.1289-0.0625-0.035-0.12891-0.057-0.19922-0.065-0.07032-0.012-0.14649-0.019-0.22852-0.023-0.08204 0-0.125-0.01-0.12891-0.01-0.01172-0.01-0.01953-0.061-0.02344-0.1582-3e-6 -0.098 0.0078-0.1582 0.02344-0.1816 0.11328 0 0.24414 0.012 0.39258 0.023 0.14843 0.012 0.28125 0.022 0.39844 0.029 0.12109 0 0.25195 0.01 0.39258 0.01 0.35156 0 0.66406-0.02 0.9375-0.059 0.0078 0.031 0.0098 0.096 0.0059 0.1933-5e-6 0.098-0.0059 0.1465-0.01758 0.1465-0.48829 0.027-0.78907 0.1133-0.90234 0.2578-0.09766 0.1368-0.2461 0.3458-0.44531 0.627-0.19922 0.2773-0.36328 0.5039-0.49219 0.6797-0.125 0.1758-0.20313 0.2832-0.23438 0.3223l1.4062 2.0859c0.19531 0.2812 0.49609 0.4219 0.90234 0.4219 0.0078 0 0.01171 0.025 0.01172 0.076 0.0039 0.051 0.0039 0.1036 0 0.1582-0.0039 0.055-0.01172 0.09-0.02344 0.1055-0.10157 0-0.22266-0.012-0.36328-0.023-0.14063-0.012-0.26758-0.02-0.38086-0.024-0.10938-0.01-0.22852-0.012-0.35742-0.012-0.14844 0-0.28907 0-0.42188 0.012-0.13282 0-0.28516 0.012-0.45703 0.024-0.16797 0.012-0.3086 0.02-0.42188 0.023-0.01563-0.039-0.02344-0.1055-0.02344-0.1992 0.0039-0.094 0.01562-0.1406 0.03516-0.1406 0.11328-0.01 0.22265-0.029 0.32812-0.064 0.10937-0.035 0.16406-0.084 0.16406-0.1465-4e-6 -0.016-0.0078-0.039-0.02344-0.07-0.40625-0.664-0.71485-1.1523-0.92578-1.4648-0.04297 0.062-0.16406 0.2402-0.36328 0.5332-0.19532 0.289-0.35547 0.5332-0.48047 0.7324-0.04688 0.074-0.07031 0.1484-0.07031 0.2227-2e-6 0.047 0.01562 0.088 0.04687 0.123 0.03125 0.031 0.08203 0.057 0.15234 0.076 0.07422 0.016 0.13086 0.027 0.16992 0.035 0.04297 0 0.11328 0.01 0.21094 0.018 0.02734 0 0.04883 0.01 0.06445 0.01 0.0078 0 0.01367 0.025 0.01758 0.076 0.0039 0.047 0.0039 0.098 0 0.1524-0.0039 0.055-0.01367 0.092-0.0293 0.1113-0.10938 0-0.23242-0.012-0.36914-0.023-0.13672-0.012-0.26172-0.02-0.375-0.024-0.10938-0.01-0.23242-0.012-0.36914-0.012-0.13281 0-0.25586 0-0.36914 0.012-0.10938 0-0.23242 0.012-0.36914 0.024s-0.25781 0.02-0.36328 0.023c-0.01172-0.047-0.01563-0.1074-0.01172-0.1816 0.0078-0.078 0.01953-0.1309 0.03516-0.1582 0.01563 0 0.0625-0.012 0.14062-0.024 0.07813-0.012 0.12891-0.02 0.15234-0.023 0.02734 0 0.07617-0.012 0.14648-0.023 0.07422-0.016 0.12695-0.029 0.1582-0.041 0.03516-0.016 0.08203-0.035 0.14062-0.059 0.05859-0.023 0.10547-0.047 0.14062-0.07 0.03906-0.027 0.08008-0.059 0.12305-0.094 0.04297-0.039 0.08008-0.08 0.11133-0.1231 0.72656-1.0468 1.1094-1.5976 1.1484-1.6523l-1.3594-2.0274c-0.05859-0.09-0.16797-0.1542-0.32812-0.1933-0.15625-0.043-0.30859-0.064-0.45703-0.064-0.0078 0-0.01367-0.023-0.01758-0.07 0-0.047 2e-3 -0.098 0.0059-0.1523 0.0039-0.055 0.01172-0.094 0.02344-0.1172 0.42969 0.039 0.8164 0.059 1.1602 0.059"
305
- fill="#2eb946" />
306
- </g>
307
- <path
308
- id="path4141"
309
- d="m89.457 996.45-30.976 55.833"
310
- fill="none"
311
- stroke="#504eba"
312
- stroke-dasharray="3.46809525, 1.15603175"
313
- stroke-width="1.156" />
314
- <path
315
- id="path4145"
316
- transform="translate(2.896 902.26)"
317
- d="m84.155 99.755c1.2928 2.5995 2.4078 5.5038 3.3184 8.6431l-19.297 20.59z"
318
- fill="#b9372e"
319
- marker-start="url(#Arrow2Mstart)" />
320
- <text
321
- id="text4165"
322
- x="90.258682"
323
- y="1002.1649"
324
- fill="#c84f4f"
325
- font-family="Amiri"
326
- font-size="10px"
327
- letter-spacing="0px"
328
- word-spacing="0px"
329
- style="line-height:125%"
330
- xml:space="preserve"><tspan
331
- id="tspan4167"
332
- x="90.258682"
333
- y="1002.1649">θ</tspan></text>
334
- <text
335
- id="text4169"
336
- transform="translate(0 892.36)"
337
- x="115.11602"
338
- y="128.868"
339
- fill="#000000"
340
- font-family="Amiri"
341
- font-size="12px"
342
- letter-spacing="0px"
343
- word-spacing="0px"
344
- style="line-height:125%"
345
- xml:space="preserve"><tspan
346
- id="tspan4171" /></text>
347
- <text
348
- id="text4165-6"
349
- x="135.46384"
350
- y="947.06128"
351
- fill="#c84f4f"
352
- font-family="Amiri"
353
- font-size="10px"
354
- letter-spacing="0px"
355
- word-spacing="0px"
356
- style="line-height:125%"
357
- xml:space="preserve"><tspan
358
- id="tspan4167-1"
359
- x="135.46384"
360
- y="947.06128">θ</tspan></text>
361
- <path
362
- id="path4145-9"
363
- transform="translate(49.768 845.41)"
364
- d="m84.423 100.3c1.1797 2.458 2.2036 5.1751 3.0504 8.0947l-19.297 20.59z"
365
- fill="#b9372e"
366
- marker-start="url(#Arrow2Mstart)" />
367
- </g>
368
- </svg>