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,276 +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="rotation_center.svg">
18
- <defs
19
- id="defs3046" />
20
- <sodipodi:namedview
21
- pagecolor="#ffffff"
22
- bordercolor="#666666"
23
- borderopacity="1"
24
- objecttolerance="10"
25
- gridtolerance="10"
26
- guidetolerance="10"
27
- inkscape:pageopacity="0"
28
- inkscape:pageshadow="2"
29
- inkscape:window-width="1920"
30
- inkscape:window-height="1098"
31
- id="namedview3044"
32
- showgrid="false"
33
- inkscape:zoom="8.4852814"
34
- inkscape:cx="-32.702099"
35
- inkscape:cy="43.332282"
36
- inkscape:window-x="0"
37
- inkscape:window-y="31"
38
- inkscape:window-maximized="1"
39
- inkscape:current-layer="g8797" />
40
- <metadata
41
- id="metadata7">
42
- <rdf:RDF>
43
- <cc:Work
44
- rdf:about="">
45
- <dc:format>image/svg+xml</dc:format>
46
- <dc:type
47
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
48
- <dc:title />
49
- </cc:Work>
50
- </rdf:RDF>
51
- </metadata>
52
- <g
53
- style="opacity:0.71697998;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:round"
54
- id="g3139-6"
55
- transform="matrix(0.91655955,0,0,0.93690337,4.0461184,-824.25251)">
56
- <path
57
- inkscape:connector-curvature="0"
58
- d="m 2.7698333,971.40667 47.4989997,13.463 v 62.55803 l -47.4989997,-22.861 z"
59
- id="path3151-3" />
60
- </g>
61
- <g
62
- transform="matrix(0.98640139,-0.1643687,0.1643687,0.98640139,-175.67909,-928.59977)"
63
- id="g3349">
64
- <path
65
- inkscape:connector-curvature="0"
66
- style="text-indent:0;text-transform:none;block-progression:tb;color:#000000"
67
- d="m 13.344,1028.4 -0.4375,0.875 41.438,19.719 0.40625,-0.9062 -41.406,-19.688 z"
68
- id="path3039" />
69
- <path
70
- style="fill-rule:evenodd;stroke:#000000;stroke-width:0.4pt"
71
- inkscape:connector-curvature="0"
72
- d="m 50.936,1046.9 -2.6651,0.9471 7.1805,1.2004 -5.4624,-4.8127 0.94712,2.6652 z"
73
- id="path3355" />
74
- </g>
75
- <g
76
- transform="matrix(-0.99999764,0.00217236,-0.00217236,-0.99999764,17.483007,1112.4061)"
77
- id="g3341">
78
- <path
79
- inkscape:connector-curvature="0"
80
- style="text-indent:0;text-transform:none;block-progression:tb;color:#000000"
81
- d="m 9.5938,976.09 v 4.0312 l -0.25,45.469 h 1 l 0.25,-45.469 V 976.09 h -1 z"
82
- id="path3041" />
83
- <path
84
- style="fill-rule:evenodd;stroke:#000000;stroke-width:0.4pt"
85
- inkscape:connector-curvature="0"
86
- d="m 10.081,980.1 1.9898,2.0102 -1.9643,-7.0101 -2.0357,6.9897 2.0102,-1.9898 z"
87
- id="path3347" />
88
- </g>
89
- <g
90
- transform="matrix(0.81737595,0.36877793,-0.39297531,0.76704617,-12.526925,-729.89177)"
91
- id="text5219">
92
- <path
93
- inkscape:connector-curvature="0"
94
- d="m 465.17,910.02 v 4.9922 c -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.86719 m 1.1836,-1.3711 c 0.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 -10e-6,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.22266 h -2.9297 c -0.0274,-0.0312 -0.041,-0.0879 -0.041,-0.16992 0.004,-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.86719 v -5.0039 c -10e-6,-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,-0.002 0.82617,-0.006 0.40625,-0.004 0.69726,-0.006 0.87305,-0.006"
95
- id="path5294" />
96
- <path
97
- inkscape:connector-curvature="0"
98
- d="m 472.42,913.02 h 1.9102 c 0.16796,0 0.25781,-0.0898 0.26953,-0.26953 0.004,-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.14062 m -0.0586,0.43359 c -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 0.004,0 0.0137,0.008 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 -10e-6,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,10e-6 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"
99
- id="path5296" />
100
- <path
101
- inkscape:connector-curvature="0"
102
- d="m 477.98,911.3 h 1.5117 c 0.0391,1e-5 0.0586,0.043 0.0586,0.12891 0,0.12501 -0.0547,0.24219 -0.16406,0.35156 h -1.4062 v 3.0703 c 0,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.0586 -0.13672,-0.0391 -0.26562,-0.10351 -0.38671,-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.62109 v -3.3984 h -0.67969 c -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.19922 h 0.4336 v -0.73828 c 0.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,-0.008 0.0586,-0.008 0.082,0 0.0234,0.004 0.0352,0.0137 0.0352,0.0293 v 1.5352"
103
- id="path5298" />
104
- <path
105
- inkscape:connector-curvature="0"
106
- d="m 481.12,913.02 h 1.9102 c 0.16797,0 0.25781,-0.0898 0.26953,-0.26953 0.004,-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.14062 m -0.0586,0.43359 c -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 0.004,0 0.0137,0.008 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,10e-6 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"
107
- id="path5300" />
108
- <path
109
- inkscape:connector-curvature="0"
110
- d="m 489.27,911.83 c -10e-6,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 0.004,0 0.0137,0.008 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.33984 -0.36716,-0.22656 -0.64844,-0.51758 -0.84375,-0.87305 -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,10e-6 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"
111
- id="path5302" />
112
- <path
113
- inkscape:connector-curvature="0"
114
- d="m 491.64,911.3 h 1.5117 c 0.0391,1e-5 0.0586,0.043 0.0586,0.12891 -1e-5,0.12501 -0.0547,0.24219 -0.16407,0.35156 h -1.4062 v 3.0703 c 0,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.62109 v -3.3984 h -0.67969 c -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.19922 h 0.43359 v -0.73828 c 0.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,-0.008 0.0586,-0.008 0.082,0 0.0234,0.004 0.0351,0.0137 0.0351,0.0293 v 1.5352"
115
- id="path5304" />
116
- <path
117
- inkscape:connector-curvature="0"
118
- d="m 496.27,911.6 c -0.31641,10e-6 -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 -10e-6,-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.38086 m 0.12891,-0.38672 c 0.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"
119
- id="path5306" />
120
- <path
121
- inkscape:connector-curvature="0"
122
- d="m 502.96,911.24 c 0.15234,10e-6 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,10e-6 -0.43946,0.13477 -0.63867,0.4043 -0.19922,0.26563 -0.29883,0.48243 -0.29883,0.65039 v 1.8047 c 0,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 0.004,0.082 -0.008,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 0.004,-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.86719 v -2.1797 c 0,-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,-0.008 -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,10e-6 0.0547,0.0235 0.082,0.0703 0.0312,0.0469 0.0469,0.0859 0.0469,0.11718 -0.008,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 0.004,0.0273 0.0117,0.0352 0.008,0.004 0.0137,0.006 0.0176,0.006 0.008,-0.004 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"
123
- id="path5308" />
124
- </g>
125
- <g
126
- transform="translate(21.519667,-925.98334)"
127
- id="text5223-9">
128
- <path
129
- inkscape:connector-curvature="0"
130
- d="m 4.5365,1006.7 c 0.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.047 l 1.2422,3.1641 c 0.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"
131
- id="path5311" />
132
- </g>
133
- <g
134
- transform="matrix(-0.79051093,-0.05016555,0.0488089,-0.77815893,1.3591793,859.81215)"
135
- id="g3333">
136
- <path
137
- inkscape:connector-curvature="0"
138
- style="text-indent:0;text-transform:none;block-progression:tb;color:#000000;fill:#918686"
139
- d="m 51.25,996.5 0.59375,0.78125 0.6875,-0.53125 -0.625,-0.78125 z m -2.3125,1.7812 -0.0625,0.0625 0.625,0.78125 0.0625,-0.0625 1.5,-1.1875 -0.625,-0.78125 z m -2.4375,1.875 0.625,0.8126 1.5625,-1.25 -0.59375,-0.78125 z m -2.375,1.8438 0.625,0.8125 1.5625,-1.25 -0.59375,-0.7813 z m -2.3438,1.8438 0.59375,0.8124 1.5938,-1.25 -0.625,-0.7812 z m -2.375,1.8437 0.59375,0.8125 1.5938,-1.25 -0.625,-0.7812 z m -2.375,1.8437 0.625,0.8126 1.5625,-1.25 -0.59375,-0.7813 z m -2.375,1.8438 0.625,0.7812 1.5625,-1.2187 -0.59375,-0.7813 z m -2.375,1.8438 L 32.9062,1012 34.5,1010.7812 33.875,1010 z m -2.3438,1.8437 0.59375,0.7813 1.5938,-1.2188 -0.625,-0.7812 z m -2.375,1.8437 0.625,0.7813 1.5625,-1.2187 -0.625,-0.7813 z m -2.375,1.8438 0.625,0.7812 1.5625,-1.2187 -0.59375,-0.7813 z m -2.375,1.8438 0.625,0.7812 1.5938,-1.2188 -0.625,-0.7812 z m -2.3438,1.8437 0.59375,0.7813 1.5938,-1.2188 -0.625,-0.7812 z m -2.375,1.8437 0.625,0.7813 1.5625,-1.2187 -0.625,-0.7813 z m -2.375,1.8438 0.625,0.7812 1.5625,-1.2187 -0.59375,-0.7813 z"
140
- id="path3039-8" />
141
- <path
142
- style="fill-rule:evenodd;stroke:#000000;stroke-width:0.4pt"
143
- inkscape:connector-curvature="0"
144
- d="m 49.069,998.81 -0.35026,2.8066 4.2964,-5.8772 -6.7528,2.7202 2.8067,0.35027 z"
145
- id="path3339" />
146
- </g>
147
- <g
148
- style="fill:#604b4b"
149
- id="text5223-3"
150
- transform="matrix(0.99628684,0.08609603,-0.08609603,0.99628684,36.903077,-973.58023)">
151
- <path
152
- style="fill:#604b4b"
153
- inkscape:connector-curvature="0"
154
- d="m 70.629,1036.2 c 0.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.1406 l 0.77344,1.2304 c 0.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.3223 l 1.4062,2.0859 c 0.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.6523 l -1.3594,-2.0274 c -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 0.002,-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"
155
- id="path3417" />
156
- </g>
157
- <g
158
- transform="translate(71.622,-1463.9)"
159
- id="layer1-5">
160
- <g
161
- style="opacity:0.71697998;fill:none;stroke:#000000;stroke-width:0.55836999;stroke-linecap:round"
162
- id="g3139">
163
- <path
164
- inkscape:connector-curvature="0"
165
- d="m -25.006,1555.4 54.551,24.768 32.854,-41.779 -45.243,-14.069 z"
166
- id="path3149" />
167
- <path
168
- inkscape:connector-curvature="0"
169
- d="m -25.006,1497.8 v 57.619 l 42.162,-31.081 v -43.826 z"
170
- id="path3141" />
171
- <path
172
- inkscape:connector-curvature="0"
173
- d="m 17.157,1480.5 45.243,8.421 v 49.474 l -45.243,-14.069 z"
174
- id="path3151" />
175
- <path
176
- inkscape:connector-curvature="0"
177
- d="m -25.006,1497.8 54.551,14.592 32.854,-23.459 -45.243,-8.421 z"
178
- id="path3143" />
179
- <path
180
- inkscape:connector-curvature="0"
181
- d="m 29.546,1512.4 v 67.795 L 62.4,1538.416 v -49.474 z"
182
- id="path3147" />
183
- <path
184
- inkscape:connector-curvature="0"
185
- d="m -25.006,1497.8 54.551,14.592 v 67.795 l -54.551,-24.768 z"
186
- id="path3145" />
187
- </g>
188
- <path
189
- style="opacity:0.62735997;fill:#cf9634;stroke:#000000;stroke-width:0.55836999;stroke-dasharray:0.55837162, 0.55837162"
190
- inkscape:connector-curvature="0"
191
- d="m 17.239,1505.4 45.358,12.156 -32.968,35.656 -54.634,-20.916 z"
192
- id="path5430" />
193
- <g
194
- transform="matrix(1.1495,0,0,1.0849,-158.45667,507.63667)"
195
- id="g8797">
196
- <g
197
- transform="matrix(0.76384117,-0.68389991,0.6091111,0.76380426,-571.05928,297.34354)"
198
- id="g3323"
199
- style="fill:#ff0000;fill-opacity:1;stroke:none">
200
- <g
201
- id="g3049"
202
- transform="matrix(0.00636173,-1.0596112,0.94370365,0.00644461,-849.42894,1069.0198)"
203
- style="fill:#ff0000;fill-opacity:1;stroke:none">
204
- <path
205
- id="path7607"
206
- d="m 86.531,988.47 -6.0625,3.2188 0.125,0.28125 6.0938,-3.2188 -0.15625,-0.28125 z"
207
- style="text-indent:0;text-transform:none;block-progression:tb;color:#000000;fill:#ff0000;fill-opacity:1;stroke:none"
208
- inkscape:connector-curvature="0" />
209
- <path
210
- id="path3329"
211
- d="m 81.61,991.26 0.2531,-0.82471 -1.6004,1.5392 2.172,-0.46141 -0.82471,-0.2531 z"
212
- inkscape:connector-curvature="0"
213
- style="fill-rule:evenodd;stroke:none;stroke-width:0.12200000000000000pt;fill:#ff0000;fill-opacity:1" />
214
- <path
215
- id="path3331"
216
- d="m 84.854,988.7 2.1109,-0.28726 -1.4219,1.5864 c 0.07881,-0.53315 -0.20108,-1.057 -0.68897,-1.2991 z"
217
- inkscape:connector-curvature="0"
218
- style="fill-rule:evenodd;stroke-width:0.62500000000000000;stroke-linejoin:round;fill:#ff0000;fill-opacity:1;stroke:none" />
219
- </g>
220
- </g>
221
- <g
222
- transform="matrix(1.0271,0,0,0.97358,11.556439,10.447384)"
223
- id="text8757"
224
- style="fill:#ff0000;fill-opacity:1">
225
- <path
226
- inkscape:connector-curvature="0"
227
- d="m 81.111,1012.2 c -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.3539 m 0.13579,0.2428 c -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"
228
- id="path8899"
229
- style="fill:#ff0000;fill-opacity:1" />
230
- </g>
231
- <path
232
- style="fill:none;stroke:#707070;stroke-width:0.80000000000000004;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
233
- d="M 93,64.666667 24.833333,120"
234
- id="path3029"
235
- inkscape:connector-curvature="0"
236
- transform="matrix(0.86994345,0,0,0.92174394,75.541253,881.42993)" />
237
- <path
238
- style="fill:none;stroke:#797979;stroke-width:0.71637536999999996;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:1.43275073999999991, 0.71637536999999996;stroke-dashoffset:0"
239
- d="M 153.47369,939.80705 94.172542,990.81017"
240
- id="path3029-3"
241
- inkscape:connector-curvature="0" />
242
- </g>
243
- </g>
244
- <g
245
- id="text3075"
246
- transform="translate(-54.833333,-919.86)">
247
- <path
248
- inkscape:connector-curvature="0"
249
- d="m 59.565,1027.2 -0.09375,1.8515 h -4.6934 V 1028.7 l 3.6855,-5.0684 h -1.4883 c -0.65625,0 -1.0918,0.1074 -1.3066,0.3223 -0.18359,0.168 -0.30469,0.5332 -0.36328,1.0957 h -0.32226 l 0.10547,-1.7871 h 4.2949 v 0.3457 l -3.6797,5.0566 h 1.8926 c 0.63672,0 1.0644,-0.1035 1.2832,-0.3105 0.18359,-0.1836 0.30468,-0.5684 0.36328,-1.1543 h 0.32227"
250
- id="path3420" />
251
- </g>
252
- <g
253
- id="g3408"
254
- transform="translate(0,-892.36)">
255
- <path
256
- inkscape:connector-curvature="0"
257
- style="text-indent:0;text-transform:none;block-progression:tb;opacity:0.71225999;color:#000000;fill:#b40000"
258
- d="m 91.344,897.22 1,-0.0312 -0.03125,-0.96875 H 91.344 z m 0.03125,1.9688 0.03125,0.96875 0.96875,-0.0312 v -0.96875 z m 0.0625,2.9375 v 0.96875 h 1 l -0.03125,-1 z m 0.0625,2.9375 v 0.96875 H 92.469 v -1 z m 0.0625,3.9062 h 0.96875 v -0.96875 h -1 z m 0.03125,2.9688 1,-0.0312 -0.03125,-0.96875 H 91.594 z m 0.0625,2.9375 0.96875,-0.0312 v -0.96875 h -1 z m 0.03125,1.9688 v 0.96875 h 1 l -0.03125,-1 z m 0.0625,2.9375 v 0.96875 H 92.719 v -1 z m 0.0625,3.9062 h 0.96875 v -0.96875 h -1 z m 0.03125,2.9688 1,-0.0312 -0.03125,-0.96875 H 91.844 z m 0.0625,2.9375 0.96875,-0.0312 v -0.96875 h -1 z m 0.03125,1.9688 0.03125,0.96875 h 0.96875 l -0.03125,-1 z m 0.0625,2.9375 v 0.96875 h 1 l -0.03125,-1 z m 0.0625,3.9062 h 0.96875 v -0.96875 h -1 z m 0.03125,2.9688 1,-0.0312 -0.03125,-0.96875 H 92.094 z m 0.0625,2.9375 0.96875,-0.0312 v -0.96875 h -1 z m 0.03125,1.9688 0.03125,0.96875 h 0.96875 l -0.03125,-1 z m 0.0625,2.9375 v 0.96875 h 1 l -0.03125,-1 z m 0.0625,3.9062 h 0.96875 v -0.96875 h -1 z m 0.03125,2.9688 1,-0.0312 -0.03125,-0.96875 H 92.344 z m 0.0625,2.9375 0.96875,-0.0312 v -0.96875 h -1 z m 0.03125,1.9688 0.03125,0.96875 h 0.96875 l -0.03125,-1 z m 0.0625,2.9375 v 0.96875 h 1 l -0.03125,-1 z m 0.0625,3.9062 h 0.96875 v -0.96875 h -1 z m 0.03125,2.9688 1,-0.0312 -0.03125,-0.96875 H 92.594 z m 0.0625,2.9375 0.96875,-0.0312 v -0.96875 h -1 z m 0.03125,1.9688 0.03125,0.96875 h 0.96875 l -0.03125,-1 z m 0.0625,2.9375 v 0.96875 h 1 l -0.03125,-1 z"
259
- id="path3095" />
260
- <path
261
- style="fill-rule:evenodd;stroke:#000000;stroke-width:0.39254999pt"
262
- inkscape:connector-curvature="0"
263
- d="m 91.887,899.85 1.9959,1.929 -2.0796,-6.8352 -1.8454,6.9021 1.929,-1.9959 z"
264
- id="path3414" />
265
- </g>
266
- <path
267
- id="path4909"
268
- d="m 94.870912,14.649107 1.416903,0.161096 -3.032736,-1.872516 1.491349,2.919164 0.12438,-1.207844 z"
269
- inkscape:connector-curvature="0"
270
- style="fill:#991212;fill-rule:evenodd" />
271
- <path
272
- inkscape:connector-curvature="0"
273
- style="text-indent:0;text-transform:none;block-progression:tb;opacity:1;color:#000000;fill:#991212"
274
- d="m 94.725406,14.023209 -0.439765,0.652256 c 0.871063,0.602604 1.356219,1.408673 1.472516,2.221185 0.116249,0.812601 -0.128396,1.630802 -0.802816,2.311947 -1.348926,1.362282 -3.935333,1.52714 -5.677442,0.322026 -0.871052,-0.602602 -1.356219,-1.408673 -1.472516,-2.221184 -0.116242,-0.812508 0.128396,-1.630803 0.802827,-2.311946 0.173522,-0.175272 0.376042,-0.34124 0.595033,-0.481918 l -0.459285,-0.67053 c -0.264723,0.170125 -0.502302,0.358589 -0.71687,0.575293 -0.830194,0.838379 -1.172099,1.929748 -1.021944,2.979435 0.150181,1.049596 0.79282,2.063647 1.832976,2.783198 2.080379,1.439015 5.038524,1.265136 6.698915,-0.411714 0.830194,-0.838379 1.171502,-1.915163 1.021347,-2.964849 -0.150156,-1.049687 -0.792817,-2.06374 -1.832976,-2.783199 z"
275
- id="path4660" />
276
- </svg>
@@ -1,266 +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="slice_stack.svg">
18
- <defs
19
- id="defs3046" />
20
- <sodipodi:namedview
21
- pagecolor="#ffffff"
22
- bordercolor="#666666"
23
- borderopacity="1"
24
- objecttolerance="10"
25
- gridtolerance="10"
26
- guidetolerance="10"
27
- inkscape:pageopacity="0"
28
- inkscape:pageshadow="2"
29
- inkscape:window-width="1920"
30
- inkscape:window-height="1098"
31
- id="namedview3044"
32
- showgrid="false"
33
- inkscape:zoom="3"
34
- inkscape:cx="-67.063047"
35
- inkscape:cy="108.38362"
36
- inkscape:window-x="0"
37
- inkscape:window-y="31"
38
- inkscape:window-maximized="1"
39
- inkscape:current-layer="layer1-5" />
40
- <metadata
41
- id="metadata7">
42
- <rdf:RDF>
43
- <cc:Work
44
- rdf:about="">
45
- <dc:format>image/svg+xml</dc:format>
46
- <dc:type
47
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
48
- <dc:title />
49
- </cc:Work>
50
- </rdf:RDF>
51
- </metadata>
52
- <g
53
- style="opacity:0.71697998;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:round"
54
- id="g3139-6"
55
- transform="matrix(0.91655955,0,0,0.93690337,4.0461184,-824.25251)">
56
- <path
57
- inkscape:connector-curvature="0"
58
- d="m 2.7698333,971.40667 47.4989997,13.463 v 62.55803 l -47.4989997,-22.861 z"
59
- id="path3151-3" />
60
- </g>
61
- <g
62
- transform="matrix(0.98640139,-0.1643687,0.1643687,0.98640139,-175.67909,-928.59977)"
63
- id="g3349">
64
- <path
65
- inkscape:connector-curvature="0"
66
- style="text-indent:0;text-transform:none;block-progression:tb;color:#000000"
67
- d="m 13.344,1028.4 -0.4375,0.875 41.438,19.719 0.40625,-0.9062 -41.406,-19.688 z"
68
- id="path3039" />
69
- <path
70
- style="fill-rule:evenodd;stroke:#000000;stroke-width:0.4pt"
71
- inkscape:connector-curvature="0"
72
- d="m 50.936,1046.9 -2.6651,0.9471 7.1805,1.2004 -5.4624,-4.8127 0.94712,2.6652 z"
73
- id="path3355" />
74
- </g>
75
- <g
76
- transform="matrix(-0.99999764,0.00217236,-0.00217236,-0.99999764,17.483007,1112.4061)"
77
- id="g3341">
78
- <path
79
- inkscape:connector-curvature="0"
80
- style="text-indent:0;text-transform:none;block-progression:tb;color:#000000"
81
- d="m 9.5938,976.09 v 4.0312 l -0.25,45.469 h 1 l 0.25,-45.469 V 976.09 h -1 z"
82
- id="path3041" />
83
- <path
84
- style="fill-rule:evenodd;stroke:#000000;stroke-width:0.4pt"
85
- inkscape:connector-curvature="0"
86
- d="m 10.081,980.1 1.9898,2.0102 -1.9643,-7.0101 -2.0357,6.9897 2.0102,-1.9898 z"
87
- id="path3347" />
88
- </g>
89
- <g
90
- transform="matrix(0.81737595,0.36877793,-0.39297531,0.76704617,-12.526925,-729.89177)"
91
- id="text5219">
92
- <path
93
- inkscape:connector-curvature="0"
94
- d="m 465.17,910.02 v 4.9922 c -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.86719 m 1.1836,-1.3711 c 0.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 -10e-6,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.22266 h -2.9297 c -0.0274,-0.0312 -0.041,-0.0879 -0.041,-0.16992 0.004,-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.86719 v -5.0039 c -10e-6,-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,-0.002 0.82617,-0.006 0.40625,-0.004 0.69726,-0.006 0.87305,-0.006"
95
- id="path5294" />
96
- <path
97
- inkscape:connector-curvature="0"
98
- d="m 472.42,913.02 h 1.9102 c 0.16796,0 0.25781,-0.0898 0.26953,-0.26953 0.004,-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.14062 m -0.0586,0.43359 c -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 0.004,0 0.0137,0.008 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 -10e-6,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,10e-6 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"
99
- id="path5296" />
100
- <path
101
- inkscape:connector-curvature="0"
102
- d="m 477.98,911.3 h 1.5117 c 0.0391,1e-5 0.0586,0.043 0.0586,0.12891 0,0.12501 -0.0547,0.24219 -0.16406,0.35156 h -1.4062 v 3.0703 c 0,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.0586 -0.13672,-0.0391 -0.26562,-0.10351 -0.38671,-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.62109 v -3.3984 h -0.67969 c -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.19922 h 0.4336 v -0.73828 c 0.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,-0.008 0.0586,-0.008 0.082,0 0.0234,0.004 0.0352,0.0137 0.0352,0.0293 v 1.5352"
103
- id="path5298" />
104
- <path
105
- inkscape:connector-curvature="0"
106
- d="m 481.12,913.02 h 1.9102 c 0.16797,0 0.25781,-0.0898 0.26953,-0.26953 0.004,-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.14062 m -0.0586,0.43359 c -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 0.004,0 0.0137,0.008 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,10e-6 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"
107
- id="path5300" />
108
- <path
109
- inkscape:connector-curvature="0"
110
- d="m 489.27,911.83 c -10e-6,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 0.004,0 0.0137,0.008 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.33984 -0.36716,-0.22656 -0.64844,-0.51758 -0.84375,-0.87305 -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,10e-6 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"
111
- id="path5302" />
112
- <path
113
- inkscape:connector-curvature="0"
114
- d="m 491.64,911.3 h 1.5117 c 0.0391,1e-5 0.0586,0.043 0.0586,0.12891 -1e-5,0.12501 -0.0547,0.24219 -0.16407,0.35156 h -1.4062 v 3.0703 c 0,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.62109 v -3.3984 h -0.67969 c -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.19922 h 0.43359 v -0.73828 c 0.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,-0.008 0.0586,-0.008 0.082,0 0.0234,0.004 0.0351,0.0137 0.0351,0.0293 v 1.5352"
115
- id="path5304" />
116
- <path
117
- inkscape:connector-curvature="0"
118
- d="m 496.27,911.6 c -0.31641,10e-6 -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 -10e-6,-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.38086 m 0.12891,-0.38672 c 0.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"
119
- id="path5306" />
120
- <path
121
- inkscape:connector-curvature="0"
122
- d="m 502.96,911.24 c 0.15234,10e-6 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,10e-6 -0.43946,0.13477 -0.63867,0.4043 -0.19922,0.26563 -0.29883,0.48243 -0.29883,0.65039 v 1.8047 c 0,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 0.004,0.082 -0.008,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 0.004,-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.86719 v -2.1797 c 0,-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,-0.008 -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,10e-6 0.0547,0.0235 0.082,0.0703 0.0312,0.0469 0.0469,0.0859 0.0469,0.11718 -0.008,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 0.004,0.0273 0.0117,0.0352 0.008,0.004 0.0137,0.006 0.0176,0.006 0.008,-0.004 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"
123
- id="path5308" />
124
- </g>
125
- <g
126
- transform="translate(21.519667,-925.98334)"
127
- id="text5223-9">
128
- <path
129
- inkscape:connector-curvature="0"
130
- d="m 4.5365,1006.7 c 0.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.047 l 1.2422,3.1641 c 0.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"
131
- id="path5311" />
132
- </g>
133
- <g
134
- transform="matrix(-0.79189469,0.01808057,-0.01836873,-0.77947176,69.26922,858.7849)"
135
- id="g3333">
136
- <path
137
- inkscape:connector-curvature="0"
138
- style="text-indent:0;text-transform:none;block-progression:tb;color:#000000;fill:#918686"
139
- d="m 51.25,996.5 0.59375,0.78125 0.6875,-0.53125 -0.625,-0.78125 z m -2.3125,1.7812 -0.0625,0.0625 0.625,0.78125 0.0625,-0.0625 1.5,-1.1875 -0.625,-0.78125 z m -2.4375,1.875 0.625,0.8126 1.5625,-1.25 -0.59375,-0.78125 z m -2.375,1.8438 0.625,0.8125 1.5625,-1.25 -0.59375,-0.7813 z m -2.3438,1.8438 0.59375,0.8124 1.5938,-1.25 -0.625,-0.7812 z m -2.375,1.8437 0.59375,0.8125 1.5938,-1.25 -0.625,-0.7812 z m -2.375,1.8437 0.625,0.8126 1.5625,-1.25 -0.59375,-0.7813 z m -2.375,1.8438 0.625,0.7812 1.5625,-1.2187 -0.59375,-0.7813 z m -2.375,1.8438 L 32.9062,1012 34.5,1010.7812 33.875,1010 z m -2.3438,1.8437 0.59375,0.7813 1.5938,-1.2188 -0.625,-0.7812 z m -2.375,1.8437 0.625,0.7813 1.5625,-1.2187 -0.625,-0.7813 z m -2.375,1.8438 0.625,0.7812 1.5625,-1.2187 -0.59375,-0.7813 z m -2.375,1.8438 0.625,0.7812 1.5938,-1.2188 -0.625,-0.7812 z m -2.3438,1.8437 0.59375,0.7813 1.5938,-1.2188 -0.625,-0.7812 z m -2.375,1.8437 0.625,0.7813 1.5625,-1.2187 -0.625,-0.7813 z m -2.375,1.8438 0.625,0.7812 1.5625,-1.2187 -0.59375,-0.7813 z"
140
- id="path3039-8" />
141
- <path
142
- style="fill-rule:evenodd;stroke:#000000;stroke-width:0.4pt"
143
- inkscape:connector-curvature="0"
144
- d="m 49.069,998.81 -0.35026,2.8066 4.2964,-5.8772 -6.7528,2.7202 2.8067,0.35027 z"
145
- id="path3339" />
146
- </g>
147
- <g
148
- style="fill:#604b4b"
149
- id="text5223-3"
150
- transform="translate(-53.166667,-970.86)">
151
- <path
152
- style="fill:#604b4b"
153
- inkscape:connector-curvature="0"
154
- d="m 70.629,1036.2 c 0.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.1406 l 0.77344,1.2304 c 0.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.3223 l 1.4062,2.0859 c 0.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.6523 l -1.3594,-2.0274 c -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 0.002,-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"
155
- id="path3417" />
156
- </g>
157
- <g
158
- transform="translate(71.622,-1463.9)"
159
- id="layer1-5">
160
- <g
161
- style="opacity:0.71697998;fill:none;stroke:#000000;stroke-width:0.55836999;stroke-linecap:round"
162
- id="g3139">
163
- <path
164
- inkscape:connector-curvature="0"
165
- d="m -25.006,1555.4 54.551,24.768 32.854,-41.779 -45.243,-14.069 z"
166
- id="path3149" />
167
- <path
168
- inkscape:connector-curvature="0"
169
- d="m -25.006,1497.8 v 57.619 l 42.162,-31.081 v -43.826 z"
170
- id="path3141" />
171
- <path
172
- inkscape:connector-curvature="0"
173
- d="m 17.157,1480.5 45.243,8.421 v 49.474 l -45.243,-14.069 z"
174
- id="path3151" />
175
- <path
176
- inkscape:connector-curvature="0"
177
- d="m -25.006,1497.8 54.551,14.592 32.854,-23.459 -45.243,-8.421 z"
178
- id="path3143" />
179
- <path
180
- inkscape:connector-curvature="0"
181
- d="m 29.546,1512.4 v 67.795 L 62.4,1538.416 v -49.474 z"
182
- id="path3147" />
183
- <path
184
- inkscape:connector-curvature="0"
185
- d="m -25.006,1497.8 54.551,14.592 v 67.795 l -54.551,-24.768 z"
186
- id="path3145" />
187
- </g>
188
- <path
189
- style="opacity:0.62735997;fill:#cf9634;stroke:#000000;stroke-width:0.55836999;stroke-dasharray:0.55837162, 0.55837162"
190
- inkscape:connector-curvature="0"
191
- d="m 17.239,1505.4 45.358,12.156 -32.968,35.656 -54.634,-20.916 z"
192
- id="path5430" />
193
- <path
194
- style="opacity:0.62735997;fill:#cf9634;stroke:#000000;stroke-width:0.55836999;stroke-dasharray:0.55837162, 0.55837162"
195
- inkscape:connector-curvature="0"
196
- d="m 16.756,1511.5 45.64,12.774 -33.114,36.04 -54.165,-21.024 z"
197
- id="path5430-2" />
198
- <g
199
- transform="matrix(1.1495,0,0,1.0849,-138.79,454.97)"
200
- id="g8797"
201
- style="stroke:none;stroke-opacity:1;fill:#ff0000;fill-opacity:1">
202
- <g
203
- transform="matrix(0.44525,-0.94877,0.84504,0.44525,-776.62,634.37)"
204
- id="g3323"
205
- style="stroke:none;stroke-opacity:1;fill:#ff0000;fill-opacity:1">
206
- <path
207
- inkscape:connector-curvature="0"
208
- style="text-indent:0;text-transform:none;block-progression:tb;color:#000000;stroke:none;stroke-opacity:1;fill:#ff0000;fill-opacity:1"
209
- d="m 86.531,988.47 -6.0625,3.2188 0.125,0.28125 6.0938,-3.2188 -0.15625,-0.28125 z"
210
- id="path7607" />
211
- <path
212
- style="fill-rule:evenodd;stroke:none;stroke-width:0.12200000000000000pt;stroke-opacity:1;fill:#ff0000;fill-opacity:1"
213
- inkscape:connector-curvature="0"
214
- d="m 81.61,991.26 0.2531,-0.82471 -1.6004,1.5392 2.172,-0.46141 -0.82471,-0.2531 z"
215
- id="path3329" />
216
- <path
217
- style="fill-rule:evenodd;stroke-width:0.62500000000000000;stroke-linejoin:round;stroke:none;stroke-opacity:1;fill:#ff0000;fill-opacity:1"
218
- inkscape:connector-curvature="0"
219
- d="m 84.854,988.7 2.1109,-0.28726 -1.4219,1.5864 c 0.07881,-0.53315 -0.20108,-1.057 -0.68897,-1.2991 z"
220
- id="path3331" />
221
- </g>
222
- <g
223
- transform="matrix(1.0271,0,0,0.97358,10.614,9.9097)"
224
- id="text8757"
225
- style="stroke:none;stroke-opacity:1;fill:#ff0000;fill-opacity:1">
226
- <path
227
- inkscape:connector-curvature="0"
228
- d="m 81.111,1012.2 c -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.3539 m 0.13579,0.2428 c -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"
229
- id="path8899"
230
- style="stroke:none;stroke-opacity:1;fill:#ff0000;fill-opacity:1" />
231
- </g>
232
- </g>
233
- </g>
234
- <g
235
- id="text3075"
236
- transform="translate(-54.833333,-919.86)">
237
- <path
238
- inkscape:connector-curvature="0"
239
- d="m 59.565,1027.2 -0.09375,1.8515 h -4.6934 V 1028.7 l 3.6855,-5.0684 h -1.4883 c -0.65625,0 -1.0918,0.1074 -1.3066,0.3223 -0.18359,0.168 -0.30469,0.5332 -0.36328,1.0957 h -0.32226 l 0.10547,-1.7871 h 4.2949 v 0.3457 l -3.6797,5.0566 h 1.8926 c 0.63672,0 1.0644,-0.1035 1.2832,-0.3105 0.18359,-0.1836 0.30468,-0.5684 0.36328,-1.1543 h 0.32227"
240
- id="path3420" />
241
- </g>
242
- <g
243
- id="g3408"
244
- transform="translate(0,-892.36)">
245
- <path
246
- inkscape:connector-curvature="0"
247
- style="text-indent:0;text-transform:none;block-progression:tb;opacity:0.71225999;color:#000000;fill:#b40000"
248
- d="m 91.344,897.22 1,-0.0312 -0.03125,-0.96875 H 91.344 z m 0.03125,1.9688 0.03125,0.96875 0.96875,-0.0312 v -0.96875 z m 0.0625,2.9375 v 0.96875 h 1 l -0.03125,-1 z m 0.0625,2.9375 v 0.96875 H 92.469 v -1 z m 0.0625,3.9062 h 0.96875 v -0.96875 h -1 z m 0.03125,2.9688 1,-0.0312 -0.03125,-0.96875 H 91.594 z m 0.0625,2.9375 0.96875,-0.0312 v -0.96875 h -1 z m 0.03125,1.9688 v 0.96875 h 1 l -0.03125,-1 z m 0.0625,2.9375 v 0.96875 H 92.719 v -1 z m 0.0625,3.9062 h 0.96875 v -0.96875 h -1 z m 0.03125,2.9688 1,-0.0312 -0.03125,-0.96875 H 91.844 z m 0.0625,2.9375 0.96875,-0.0312 v -0.96875 h -1 z m 0.03125,1.9688 0.03125,0.96875 h 0.96875 l -0.03125,-1 z m 0.0625,2.9375 v 0.96875 h 1 l -0.03125,-1 z m 0.0625,3.9062 h 0.96875 v -0.96875 h -1 z m 0.03125,2.9688 1,-0.0312 -0.03125,-0.96875 H 92.094 z m 0.0625,2.9375 0.96875,-0.0312 v -0.96875 h -1 z m 0.03125,1.9688 0.03125,0.96875 h 0.96875 l -0.03125,-1 z m 0.0625,2.9375 v 0.96875 h 1 l -0.03125,-1 z m 0.0625,3.9062 h 0.96875 v -0.96875 h -1 z m 0.03125,2.9688 1,-0.0312 -0.03125,-0.96875 H 92.344 z m 0.0625,2.9375 0.96875,-0.0312 v -0.96875 h -1 z m 0.03125,1.9688 0.03125,0.96875 h 0.96875 l -0.03125,-1 z m 0.0625,2.9375 v 0.96875 h 1 l -0.03125,-1 z m 0.0625,3.9062 h 0.96875 v -0.96875 h -1 z m 0.03125,2.9688 1,-0.0312 -0.03125,-0.96875 H 92.594 z m 0.0625,2.9375 0.96875,-0.0312 v -0.96875 h -1 z m 0.03125,1.9688 0.03125,0.96875 h 0.96875 l -0.03125,-1 z m 0.0625,2.9375 v 0.96875 h 1 l -0.03125,-1 z"
249
- id="path3095" />
250
- <path
251
- style="fill-rule:evenodd;stroke:#000000;stroke-width:0.39254999pt"
252
- inkscape:connector-curvature="0"
253
- d="m 91.887,899.85 1.9959,1.929 -2.0796,-6.8352 -1.8454,6.9021 1.929,-1.9959 z"
254
- id="path3414" />
255
- </g>
256
- <path
257
- id="path4909"
258
- d="m 94.870912,14.649107 1.416903,0.161096 -3.032736,-1.872516 1.491349,2.919164 0.12438,-1.207844 z"
259
- inkscape:connector-curvature="0"
260
- style="fill:#991212;fill-rule:evenodd" />
261
- <path
262
- inkscape:connector-curvature="0"
263
- style="text-indent:0;text-transform:none;block-progression:tb;opacity:1;color:#000000;fill:#991212"
264
- d="m 94.725406,14.023209 -0.439765,0.652256 c 0.871063,0.602604 1.356219,1.408673 1.472516,2.221185 0.116249,0.812601 -0.128396,1.630802 -0.802816,2.311947 -1.348926,1.362282 -3.935333,1.52714 -5.677442,0.322026 -0.871052,-0.602602 -1.356219,-1.408673 -1.472516,-2.221184 -0.116242,-0.812508 0.128396,-1.630803 0.802827,-2.311946 0.173522,-0.175272 0.376042,-0.34124 0.595033,-0.481918 l -0.459285,-0.67053 c -0.264723,0.170125 -0.502302,0.358589 -0.71687,0.575293 -0.830194,0.838379 -1.172099,1.929748 -1.021944,2.979435 0.150181,1.049596 0.79282,2.063647 1.832976,2.783198 2.080379,1.439015 5.038524,1.265136 6.698915,-0.411714 0.830194,-0.838379 1.171502,-1.915163 1.021347,-2.964849 -0.150156,-1.049687 -0.792817,-2.06374 -1.832976,-2.783199 z"
265
- id="path4660" />
266
- </svg>