Browse Source

update Bidoo.* (add CANARD, DFUZE, OUAIVE, RABBIT modules)

pull/1639/head
bsp2 6 years ago
parent
commit
6a0877f6f9
36 changed files with 5956 additions and 4410 deletions
  1. +3
    -8
      plugins/community/repos/Bidoo/Makefile
  2. +15
    -1
      plugins/community/repos/Bidoo/README.md
  3. +8
    -10
      plugins/community/repos/Bidoo/make.objects
  4. +0
    -186
      plugins/community/repos/Bidoo/res/HORUS.svg
  5. +0
    -208
      plugins/community/repos/Bidoo/res/HORUStemp.svg
  6. +224
    -0
      plugins/community/repos/Bidoo/res/RABBIT.svg
  7. +230
    -0
      plugins/community/repos/Bidoo/res/RABBITtemp.svg
  8. +0
    -602
      plugins/community/repos/Bidoo/res/RADAR.svg
  9. +0
    -728
      plugins/community/repos/Bidoo/res/RADARtemp.svg
  10. +0
    -134
      plugins/community/repos/Bidoo/res/SONAR.svg
  11. +0
    -153
      plugins/community/repos/Bidoo/res/SONARtemp.svg
  12. +8
    -8
      plugins/community/repos/Bidoo/src/Bidoo.cpp
  13. +118
    -74
      plugins/community/repos/Bidoo/src/CANARD.cpp
  14. +147
    -0
      plugins/community/repos/Bidoo/src/DFUZE.cpp
  15. +0
    -238
      plugins/community/repos/Bidoo/src/HORUS.cpp
  16. +61
    -47
      plugins/community/repos/Bidoo/src/OUAIVE.cpp
  17. +154
    -0
      plugins/community/repos/Bidoo/src/RABBIT.cpp
  18. +1
    -1
      plugins/community/repos/Bidoo/src/ZINC.cpp
  19. +3724
    -0
      plugins/community/repos/Bidoo/src/dep/dr_wav/dr_wav.h
  20. +54
    -0
      plugins/community/repos/Bidoo/src/dep/freeverb/allpass.cpp
  21. +44
    -0
      plugins/community/repos/Bidoo/src/dep/freeverb/allpass.hpp
  22. +69
    -0
      plugins/community/repos/Bidoo/src/dep/freeverb/comb.cpp
  23. +53
    -0
      plugins/community/repos/Bidoo/src/dep/freeverb/comb.hpp
  24. +67
    -0
      plugins/community/repos/Bidoo/src/dep/freeverb/readme.txt
  25. +349
    -0
      plugins/community/repos/Bidoo/src/dep/freeverb/revmodel.cpp
  26. +94
    -0
      plugins/community/repos/Bidoo/src/dep/freeverb/revmodel.hpp
  27. +64
    -0
      plugins/community/repos/Bidoo/src/dep/freeverb/tuning.hh
  28. +15
    -1
      vst2_bin/plugins/Bidoo/README.md
  29. +0
    -186
      vst2_bin/plugins/Bidoo/res/HORUS.svg
  30. +0
    -208
      vst2_bin/plugins/Bidoo/res/HORUStemp.svg
  31. +224
    -0
      vst2_bin/plugins/Bidoo/res/RABBIT.svg
  32. +230
    -0
      vst2_bin/plugins/Bidoo/res/RABBITtemp.svg
  33. +0
    -602
      vst2_bin/plugins/Bidoo/res/RADAR.svg
  34. +0
    -728
      vst2_bin/plugins/Bidoo/res/RADARtemp.svg
  35. +0
    -134
      vst2_bin/plugins/Bidoo/res/SONAR.svg
  36. +0
    -153
      vst2_bin/plugins/Bidoo/res/SONARtemp.svg

+ 3
- 8
plugins/community/repos/Bidoo/Makefile View File

@@ -1,15 +1,10 @@
RACK_DIR ?= ../..
SLUG = Bidoo
VERSION = 0.6.7
VERSION = 0.6.10
DISTRIBUTABLES += $(wildcard LICENSE*) res

FLAGS += -DUSE_KISS_FFT -Idep/include -I./src/dep/audiofile -I./src/dep/filters -I./src/dep/freeverb \
-I./src/dep/gist/libs/kiss_fft130 -I./src/dep/gist/src -I./src/dep/minimp3\
-I./src/dep/gist/src/mfcc -I./src/dep/gist/src/core -I./src/dep/gist/src/fft \
-I./src/dep/gist/src/onset-detection-functions -I./src/dep/gist/src/pitch
FLAGS += -Idep/include -I./src/dep/dr_wav -I./src/dep/filters -I./src/dep/freeverb -I./src/dep/minimp3

SOURCES = $(wildcard src/*.cpp src/dep/audiofile/*cpp src/dep/filters/*cpp src/dep/freeverb/*cpp src/dep/gist/src/*cpp \
src/dep/gist/libs/kiss_fft130/*c src/dep/gist/src/mfcc/*cpp src/dep/gist/src/core/*cpp src/dep/gist/src/fft/*cpp \
src/dep/gist/src/onset-detection-functions/*cpp src/dep/gist/src/pitch/*cpp)
SOURCES = $(wildcard src/*.cpp src/dep/filters/*cpp src/dep/freeverb/*cpp)

include $(RACK_DIR)/plugin.mk

+ 15
- 1
plugins/community/repos/Bidoo/README.md View File

@@ -1,7 +1,7 @@
# Bidoo's plugins for [VCVRack](https://vcvrack.com)

<!-- Version and License Badges -->
![Version](https://img.shields.io/badge/version-0.6.6-green.svg?style=flat-square)
![Version](https://img.shields.io/badge/version-0.6.10-green.svg?style=flat-square)
![License](https://img.shields.io/badge/license-BSD3-blue.svg?style=flat-square)
![Language](https://img.shields.io/badge/language-C++-yellow.svg?style=flat-square)

@@ -13,6 +13,20 @@ You can find information on that plugins pack in the [wiki](https://github.com/s

## Last changes

21/08/2018 => 0.6.10

rabBIT redesign

20/08/2018 => 0.6.9

rabBIT is a 8 bit reducer/reverser

09/07/2018

Changed the way wav files are loaded and saved => OUAIve and cANARd. Changed the way onsets are detected in cANARd. Fix play mode saving on close for OUAIve.

This version is compliant with the last version I have of Rack SDK so maybe my pack will be available thru Rack again in 0.6.2.

13/05/2018 => 0.6.6

antN goes away from mpg123 and is based now on minimp3 so maybe my pack will be available thru Rack again.


+ 8
- 10
plugins/community/repos/Bidoo/make.objects View File

@@ -4,41 +4,39 @@ ALL_OBJ= \
src/BAR.o \
src/Bidoo.o \
src/BORDL.o \
src/CANARD.o \
src/CHUTE.o \
src/CLACOS.o \
src/DFUZE.o \
src/dep/filters/biquad.o \
src/dep/filters/smbPitchShift.o \
src/DTROY.o \
src/DUKE.o \
src/FORK.o \
src/HORUS.o \
src/LATE.o \
src/LIMBO.o \
src/LOURDE.o \
src/MOIRE.o \
src/MU.o \
src/OUAIVE.o \
src/PERCO.o \
src/RABBIT.o \
src/SIGMA.o \
src/TIARE.o \
src/TOCANTE.o \
src/VOID.o \
src/ZINC.o \
src/dep/kiss_fft130/kiss_fft.o
src/dep/freeverb/allpass.o \
src/dep/freeverb/comb.o \
src/dep/freeverb/revmodel.o

# src/dep/minimp3/minimp3_test.o


# already used in AS modules
DUPLICATE_OBJ__REMOVED__= \
src/DFUZE.o \
src/dep/freeverb/allpass.o \
src/dep/freeverb/comb.o \
src/dep/freeverb/revmodel.o
# src/dep/kiss_fft130/kiss_fft.o


GPL_OBJ__REMOVED__= \
src/CANARD.o \
src/OUAIVE.o \
src/dep/audiofile/AudioFile.o \
src/dep/gist/src/core/CoreFrequencyDomainFeatures.o \
src/dep/gist/src/core/CoreTimeDomainFeatures.o \


+ 0
- 186
plugins/community/repos/Bidoo/res/HORUS.svg View File

@@ -1,186 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="105"
height="380"
viewBox="0 0 27.78125 100.54166"
version="1.1"
id="svg12553">
<defs
id="defs12547">
<linearGradient
osb:paint="solid"
id="linearGradient4708">
<stop
id="stop4706"
offset="0"
style="stop-color:#ececec;stop-opacity:1;" />
</linearGradient>
<filter
id="filter4696"
style="color-interpolation-filters:sRGB">
<feColorMatrix
id="feColorMatrix4692"
result="colormatrix"
values="0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 "
in="SourceGraphic" />
<feBlend
id="feBlend4694"
result="fbSourceGraphic"
mode="multiply"
in2="BackgroundImage" />
<feColorMatrix
id="feColorMatrix4762"
values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
in="fbSourceGraphic"
result="fbSourceGraphicAlpha" />
<feColorMatrix
in="fbSourceGraphic"
result="colormatrix"
values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 5 -1 "
id="feColorMatrix4764" />
<feComposite
k4="0"
k3="0"
k1="0"
result="composite"
k2="0.3"
operator="arithmetic"
id="feComposite4766"
in2="colormatrix" />
</filter>
</defs>
<metadata
id="metadata12550">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
transform="matrix(0.23299263,0,0,1.0012215,-6.2015274,-161.56849)">
<path
id="path33453"
d="M 26.616839,161.37987 H 145.85344 v 100.3961 H 26.616839 Z m 0,0"
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.32258889" />
</g>
<path
id="path889"
d="m 26.617835,28.8905 c -2.084488,11.460296 -5.706839,21.180916 -9.316173,29.904307 -2.221642,5.367366 -4.670971,9.858716 -7.117179,14.266759 -1.4206208,3.535513 -2.6392058,7.680529 -3.8029568,11.752647 -1.219359,6.586933 -0.608054,13.361349 -2.020661,19.870947 -1.56589,4.26783 -0.343533,-4.54681 -0.430808,-6.409104 -0.221563,-5.083446 -1.299912,-9.074404 -1.654885,-14.020738 -0.89603,-8.336674 -1.117945,-17.760521 0.04537,-27.437643 0.7332,-7.928915 2.089486,-15.806525 4.025362,-22.986437 1.960607,-8.221865 4.5357598,-15.956142 5.7694538,-24.8562634 0.610455,-4.0186568 0.754576,-8.38410979 -0.106433,-11.213356 -0.48128,-1.7666896 1.359629,0.2064616 1.615833,0.1669361 1.976963,1.86565311 1.480217,9.4908812 0.185328,14.4222233 -0.890544,4.214642 -2.254309,7.66562 -3.410107,11.420621 0.853844,1.67288 2.145254,2.686048 2.979605,4.775813 1.411139,4.071462 0.87406,-6.158724 1.530083,-8.648011 0.225973,-1.910303 0.495395,-4.14055 0.393965,-1.030147 0.01882,11.271068 -0.273288,22.972865 -1.868146,34.708403 -0.09814,2.545629 -1.321209,7.408916 -0.990569,8.634575 4.261216,-8.1633 8.252168,-18.047495 11.334619,-29.4091 1.267507,-5.518313 2.474244,-11.986016 2.134915,-17.600085 -0.251332,-4.088172 -1.916068,-6.8448779 -3.65124,-4.034912 -0.943277,1.133319 -2.590195,7.415903 -0.633484,5.160191 2.052807,2.159366 -1.568327,10.284256 -2.116555,4.71453 -0.653101,-5.558938 1.523906,-13.8113128 3.98733,-14.3659775 2.521177,-1.1398164 4.382067,3.8545735 4.20983,10.3190375 -0.06851,3.889857 -0.4806,7.972832 -1.092506,11.894807 z M 12.558659,43.677449 C 12.738628,36.875094 11.58821,29.799105 8.8906322,29.526297 c -0.712771,-0.54463 -1.028253,3.232006 -1.499416,4.404265 1.049183,1.637975 3.2389338,1.808794 3.3885268,6.745235 0.72513,7.561921 -0.450012,18.379032 -3.4867048,24.299208 -1.057372,3.552622 -3.273713,0.718909 -3.578741,4.743987 -0.292056,2.457928 1.529776,0.527839 2.044366,0.70868 3.119116,-2.106514 5.3390178,-10.734864 6.2003768,-18.362986 0.340125,-2.804946 0.55592,-5.641938 0.599619,-8.387237 z M 7.0423832,76.743318 c -1.191434,1.493736 -4.086337,-0.784219 -3.205897,4.560861 0.259654,1.919817 0.504594,7.091572 1.013862,7.143812 0.668155,-4.003084 1.643566,-7.737895 2.482952,-11.583675 l -0.0651,-0.172593 -0.225811,0.0516 z m -0.33783,-27.832374 c -1.102631,-5.065786 -3.279161,6.307497 -1.714134,7.021375 1.272521,-0.536733 1.832748,-4.379107 1.714134,-7.021375 z M 1.3828802,103.38839 C 0.51354322,108.66029 0.85373222,100.04235 0.43580922,98.822742 -0.66304378,88.202738 -3.114649,78.720124 -2.1934808,66.013103 -1.3789288,53.294951 0.65851522,40.29986 3.7058842,28.64402 c 1.004068,-4.010797 1.691047,-8.305589 2.293915,-12.598516 0.473845,3.646389 -0.08398,8.117424 -0.991853,12.017102 -1.730483,7.57949 -3.602374,15.179919 -4.52899998,23.338862 -1.191136,9.597113 -2.49302602,20.011729 -1.412614,28.584918 0.618499,6.813376 2.18322298,12.261948 2.58627598,19.343576 0.03638,1.293168 -0.02008,2.708878 -0.269728,4.058428 z"
style="fill:#000000;stroke-width:0.23251958;opacity:0.12" />
<g
id="text4860"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:Sudo;-inkscape-font-specification:'Sudo, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<g
id="flowRoot1009"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:125%;font-family:Sudo;-inkscape-font-specification:'Sudo, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<g
id="text977"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
aria-label="bId°°">
<path
id="path894"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 9.5301674,97.809389 q 0,-0.44235 -0.1405599,-0.667659 -0.1405599,-0.225309 -0.4154785,-0.225309 -0.2769857,0 -0.4196126,0.227376 -0.142627,0.225309 -0.142627,0.665592 0,0.438216 0.142627,0.665593 0.1426269,0.227376 0.4196126,0.227376 0.2749186,0 0.4154785,-0.225309 0.1405599,-0.225309 0.1405599,-0.66766 z m -1.118278,-0.86403 q 0.090951,-0.169498 0.250114,-0.260449 0.1612304,-0.09095 0.3720703,-0.09095 0.4175455,0 0.6573241,0.322461 0.2397787,0.320393 0.2397787,0.8847 0,0.572575 -0.2418457,0.89917 -0.2397786,0.324528 -0.6593913,0.324528 -0.2067057,0 -0.3658691,-0.08888 -0.1570963,-0.09095 -0.252181,-0.262516 v 0.291455 H 8.0315509 v -3.216341 h 0.3803385 z" />
<path
id="path896"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 10.594702,95.878758 h 1.71359 v 0.3514 h -0.646989 v 2.383317 h 0.646989 v 0.351399 h -1.71359 v -0.351399 h 0.646989 v -2.383317 h -0.646989 z" />
<path
id="path898"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 14.499373,96.945359 v -1.196826 h 0.380338 v 3.216341 h -0.380338 v -0.291455 q -0.09509,0.171566 -0.254248,0.262516 -0.157097,0.08888 -0.363802,0.08888 -0.419613,0 -0.661459,-0.324528 -0.239778,-0.326595 -0.239778,-0.89917 0,-0.564307 0.241845,-0.8847 0.241846,-0.322461 0.659392,-0.322461 0.208772,0 0.367936,0.09095 0.159163,0.08888 0.250114,0.260449 z m -1.118278,0.86403 q 0,0.442351 0.14056,0.66766 0.14056,0.225309 0.415478,0.225309 0.274919,0 0.417546,-0.227376 0.144694,-0.227377 0.144694,-0.665593 0,-0.440283 -0.144694,-0.665592 -0.142627,-0.227376 -0.417546,-0.227376 -0.274918,0 -0.415478,0.225309 -0.14056,0.225309 -0.14056,0.667659 z" />
<path
id="path900"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 16.545759,95.822947 q 0.134359,0 0.254248,0.05168 0.121957,0.04961 0.212907,0.144694 0.09302,0.09302 0.14056,0.21084 0.04961,0.117822 0.04961,0.254248 0,0.272851 -0.192236,0.46302 -0.192236,0.188103 -0.469222,0.188103 -0.279053,0 -0.465088,-0.186035 -0.186035,-0.186036 -0.186035,-0.465088 0,-0.276986 0.190169,-0.469222 0.190169,-0.192237 0.465088,-0.192237 z m 0,0.266651 q -0.163297,0 -0.279053,0.115755 -0.113688,0.113688 -0.113688,0.279053 0,0.165364 0.111621,0.276985 0.113688,0.111621 0.276986,0.111621 0.165365,0 0.28112,-0.113688 0.117822,-0.113688 0.117822,-0.274918 0,-0.163298 -0.115755,-0.279053 -0.115755,-0.115755 -0.279053,-0.115755 z" />
<path
id="path902"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 19.092374,95.822947 q 0.134358,0 0.254248,0.05168 0.121956,0.04961 0.212907,0.144694 0.09302,0.09302 0.14056,0.21084 0.04961,0.117822 0.04961,0.254248 0,0.272851 -0.192236,0.46302 -0.192237,0.188103 -0.469222,0.188103 -0.279053,0 -0.465088,-0.186035 -0.186035,-0.186036 -0.186035,-0.465088 0,-0.276986 0.190169,-0.469222 0.190169,-0.192237 0.465088,-0.192237 z m 0,0.266651 q -0.163298,0 -0.279053,0.115755 -0.113688,0.113688 -0.113688,0.279053 0,0.165364 0.111621,0.276985 0.113688,0.111621 0.276986,0.111621 0.165364,0 0.281119,-0.113688 0.117823,-0.113688 0.117823,-0.274918 0,-0.163298 -0.115756,-0.279053 -0.115755,-0.115755 -0.279052,-0.115755 z" />
</g>
<g
id="text977-5"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
aria-label="horUS">
<path
id="path905"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="M 9.7038005,4.232979 V 5.6675167 H 9.321395 V 4.232979 q 0,-0.3121256 -0.1095541,-0.4588867 -0.109554,-0.146761 -0.3431315,-0.146761 -0.2666503,0 -0.4113443,0.1901692 -0.142627,0.1881022 -0.142627,0.541569 V 5.6675167 H 7.9343996 V 2.4511757 H 8.3147381 V 3.6996783 Q 8.4160239,3.5012408 8.5896567,3.399955 8.7632895,3.2966021 9.0010011,3.2966021 q 0.3534668,0 0.5270996,0.2335775 Q 9.7038005,3.76169 9.7038005,4.232979 Z" />
<path
id="path907"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 11.351245,3.619063 q -0.289388,0 -0.438216,0.2253093 -0.148828,0.2253092 -0.148828,0.6676594 0,0.4402832 0.148828,0.6676595 0.148828,0.2253092 0.438216,0.2253092 0.291455,0 0.440283,-0.2253092 0.148828,-0.2273763 0.148828,-0.6676595 0,-0.4423502 -0.148828,-0.6676594 Q 11.6427,3.619063 11.351245,3.619063 Z m 0,-0.3224609 q 0.481624,0 0.735872,0.3121257 0.256316,0.3121256 0.256316,0.9033039 0,0.5932455 -0.254249,0.9053711 -0.254248,0.3100586 -0.737939,0.3100586 -0.481624,0 -0.735872,-0.3100586 -0.254248,-0.3121256 -0.254248,-0.9053711 0,-0.5911783 0.254248,-0.9033039 0.254248,-0.3121257 0.735872,-0.3121257 z" />
<path
id="path909"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="M 15.012003,3.8299029 Q 14.890047,3.7348182 14.763956,3.69141 14.637866,3.648002 14.486971,3.648002 q -0.355534,0 -0.543636,0.2232422 -0.188102,0.2232422 -0.188102,0.6449219 v 1.1513508 h -0.382406 v -2.315104 h 0.382406 v 0.4526855 q 0.09508,-0.2459798 0.291455,-0.3762044 0.198437,-0.1322917 0.469222,-0.1322917 0.140559,0 0.262516,0.03514 0.121956,0.03514 0.233577,0.109554 z" />
<path
id="path911"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="M 15.475024,4.4830929 V 2.5814003 h 0.419612 v 2.0918619 q 0,0.2253092 0.0124,0.3224609 0.0124,0.095085 0.04341,0.1467611 0.06615,0.1219564 0.190169,0.1839681 0.126091,0.062012 0.303858,0.062012 0.179834,0 0.303857,-0.062012 0.124023,-0.062012 0.192236,-0.1839681 0.03101,-0.051676 0.04341,-0.1467611 0.0124,-0.095085 0.0124,-0.3183268 v -2.095996 h 0.417545 v 1.9016926 q 0,0.4733561 -0.05994,0.6738607 -0.05788,0.1984375 -0.202572,0.3286621 -0.136426,0.1219564 -0.312125,0.181901 -0.1757,0.059945 -0.394808,0.059945 -0.217041,0 -0.392741,-0.059945 -0.1757,-0.059945 -0.314193,-0.181901 Q 15.594915,5.3574581 15.53497,5.1548865 15.47503,4.9502479 15.47503,4.4830929 Z" />
<path
id="path913"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="M 19.809643,2.6868203 V 3.110567 q -0.190169,-0.1219564 -0.382406,-0.1839681 -0.190169,-0.062012 -0.384472,-0.062012 -0.295589,0 -0.467155,0.1384928 -0.171566,0.1364258 -0.171566,0.3700032 0,0.2046387 0.111621,0.3121257 0.113688,0.1074869 0.42168,0.1798339 l 0.219108,0.049609 q 0.434082,0.1012858 0.632519,0.3183268 0.198438,0.217041 0.198438,0.5911784 0,0.4402832 -0.272852,0.6717936 -0.272851,0.2315104 -0.79375,0.2315104 -0.217041,0 -0.436149,-0.047542 -0.219108,-0.045475 -0.440283,-0.1384929 V 5.0970089 q 0.237712,0.1508952 0.448552,0.2211751 0.212906,0.07028 0.42788,0.07028 0.31626,0 0.49196,-0.1405599 0.1757,-0.1426269 0.1757,-0.396875 0,-0.2315104 -0.121957,-0.3534668 Q 19.346622,4.375606 19.046899,4.3094601 L 18.823657,4.2577837 Q 18.393709,4.160632 18.199405,3.9642616 18.005102,3.7678912 18.005102,3.437162 q 0,-0.4134114 0.276986,-0.6614583 0.279052,-0.2501139 0.740006,-0.2501139 0.177767,0 0.374137,0.041341 0.196371,0.039274 0.413412,0.1198895 z" />
</g>
<g
transform="translate(-7.265561,0.27854712)"
id="g927">
<path
id="rect998"
d="m 24.753592,83.550049 h 7.182313 c 0.629904,0 1.137011,0.507107 1.137011,1.137011 v 8.103004 c 0,0.629904 -0.507107,1.137011 -1.137011,1.137011 h -7.182313 c -0.629904,0 -1.137011,-0.507107 -1.137011,-1.137011 V 84.68706 c 0,-0.629904 0.507107,-1.137011 1.137011,-1.137011 z"
style="opacity:1;fill:#cd1f00;fill-opacity:1;fill-rule:evenodd;stroke:#cd1f00;stroke-width:0.83921981;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<g
id="text1002"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:tb-rl;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="rotate(-179.84442)"
aria-label="OUT">
<path
id="path917"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:tb-rl;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -25.497642,-90.019393 q 0.453374,0 0.647678,-0.09371 0.194303,-0.09233 0.194303,-0.304546 0,-0.21084 -0.194303,-0.304547 -0.194304,-0.09233 -0.647678,-0.09233 -0.451997,0 -0.6463,0.09233 -0.194304,0.09371 -0.194304,0.304547 0,0.212218 0.192926,0.304546 0.194303,0.09371 0.647678,0.09371 z m 0,0.290766 q -0.537435,0 -0.802019,-0.170877 -0.264583,-0.169498 -0.264583,-0.518142 0,-0.348644 0.263205,-0.518142 0.263206,-0.169499 0.803397,-0.169499 0.538813,0 0.803396,0.169499 0.264583,0.170876 0.264583,0.518142 0,0.348644 -0.264583,0.518142 -0.264583,0.170877 -0.803396,0.170877 z" />
<path
id="path919"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:tb-rl;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -25.734665,-89.364825 h 1.267795 v 0.279742 h -1.394574 q -0.150207,0 -0.214974,0.0083 -0.06339,0.0083 -0.09784,0.02894 -0.0813,0.0441 -0.122645,0.126779 -0.04134,0.08406 -0.04134,0.202572 0,0.119889 0.04134,0.202572 0.04134,0.08268 0.122645,0.128157 0.03445,0.02067 0.09784,0.02894 0.06339,0.0083 0.212218,0.0083 h 1.39733 v 0.278364 h -1.267795 q -0.315571,0 -0.44924,-0.03996 -0.132292,-0.03858 -0.219108,-0.135048 -0.0813,-0.09095 -0.121268,-0.208084 -0.03996,-0.117133 -0.03996,-0.263205 0,-0.144694 0.03996,-0.261827 0.03996,-0.117133 0.121268,-0.209462 0.08544,-0.09508 0.220486,-0.135048 0.136426,-0.03996 0.447862,-0.03996 z" />
<path
id="path921"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:tb-rl;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -24.46687,-87.803508 v 1.569586 h -0.234266 v -0.643544 h -1.823145 v -0.279742 h 1.823145 v -0.6463 z" />
</g>
</g>
<g
transform="translate(19.476811,11.237347)"
id="g917">
<path
id="rect998-0-2"
d="m -16.273988,72.591248 h 7.1823124 c 0.6299043,0 1.1370114,0.507107 1.1370114,1.137011 v 8.103004 c 0,0.629904 -0.5071071,1.137011 -1.1370114,1.137011 h -7.1823124 c -0.629904,0 -1.137011,-0.507107 -1.137011,-1.137011 v -8.103004 c 0,-0.629904 0.507107,-1.137011 1.137011,-1.137011 z"
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000100;stroke-width:0.83921981;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<g
id="text1002-0-2"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:tb-rl;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="rotate(-179.84442)"
aria-label="IN">
<path
id="path925"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:tb-rl;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 16.592641,-79.287162 v 1.142393 h -0.234267 v -0.431326 h -1.588878 v 0.431326 H 14.53523 v -1.142393 h 0.234266 v 0.431326 h 1.588878 v -0.431326 z" />
<path
id="path927"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:tb-rl;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 16.592641,-77.67348 v 0.352778 l -1.693609,0.694532 h 1.693609 v 0.268717 H 14.53523 v -0.352778 l 1.693608,-0.694531 H 14.53523 v -0.268718 z" />
</g>
</g>
</svg>

+ 0
- 208
plugins/community/repos/Bidoo/res/HORUStemp.svg View File

@@ -1,208 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg12553"
version="1.1"
viewBox="0 0 27.78125 100.54166"
height="380"
width="105"
sodipodi:docname="HORUStemp.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview118"
showgrid="true"
inkscape:zoom="1.5750457"
inkscape:cx="-42.718535"
inkscape:cy="145.35236"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg12553"
inkscape:snap-to-guides="false"
inkscape:snap-grids="false">
<inkscape:grid
type="xygrid"
id="grid929" />
</sodipodi:namedview>
<defs
id="defs12547">
<linearGradient
id="linearGradient4708"
osb:paint="solid">
<stop
style="stop-color:#ececec;stop-opacity:1;"
offset="0"
id="stop4706" />
</linearGradient>
<filter
style="color-interpolation-filters:sRGB"
inkscape:label="Opacity"
id="filter4696">
<feColorMatrix
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 "
result="colormatrix"
id="feColorMatrix4692" />
<feBlend
in2="BackgroundImage"
mode="multiply"
result="fbSourceGraphic"
id="feBlend4694" />
<feColorMatrix
result="fbSourceGraphicAlpha"
in="fbSourceGraphic"
values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
id="feColorMatrix4762" />
<feColorMatrix
id="feColorMatrix4764"
values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 5 -1 "
result="colormatrix"
in="fbSourceGraphic" />
<feComposite
in2="colormatrix"
id="feComposite4766"
operator="arithmetic"
k2="0.3"
result="composite"
k1="0"
k3="0"
k4="0" />
</filter>
</defs>
<metadata
id="metadata12550">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="matrix(0.23299263,0,0,1.0012215,-6.2015274,-161.56849)"
id="layer1">
<path
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.32258889"
d="M 26.616839,161.37987 H 145.85344 v 100.3961 H 26.616839 Z m 0,0"
id="path33453"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:#000000;stroke-width:0.23251958;opacity:0.12"
d="m 26.617835,28.8905 c -2.084488,11.460296 -5.706839,21.180916 -9.316173,29.904307 -2.221642,5.367366 -4.670971,9.858716 -7.117179,14.266759 -1.4206208,3.535513 -2.6392058,7.680529 -3.8029568,11.752647 -1.219359,6.586933 -0.608054,13.361349 -2.020661,19.870947 -1.56589,4.26783 -0.343533,-4.54681 -0.430808,-6.409104 -0.221563,-5.083446 -1.299912,-9.074404 -1.654885,-14.020738 -0.89603,-8.336674 -1.117945,-17.760521 0.04537,-27.437643 0.7332,-7.928915 2.089486,-15.806525 4.025362,-22.986437 1.960607,-8.221865 4.5357598,-15.956142 5.7694538,-24.8562634 0.610455,-4.0186568 0.754576,-8.38410979 -0.106433,-11.213356 -0.48128,-1.7666896 1.359629,0.2064616 1.615833,0.1669361 1.976963,1.86565311 1.480217,9.4908812 0.185328,14.4222233 -0.890544,4.214642 -2.254309,7.66562 -3.410107,11.420621 0.853844,1.67288 2.145254,2.686048 2.979605,4.775813 1.411139,4.071462 0.87406,-6.158724 1.530083,-8.648011 0.225973,-1.910303 0.495395,-4.14055 0.393965,-1.030147 0.01882,11.271068 -0.273288,22.972865 -1.868146,34.708403 -0.09814,2.545629 -1.321209,7.408916 -0.990569,8.634575 4.261216,-8.1633 8.252168,-18.047495 11.334619,-29.4091 1.267507,-5.518313 2.474244,-11.986016 2.134915,-17.600085 -0.251332,-4.088172 -1.916068,-6.8448779 -3.65124,-4.034912 -0.943277,1.133319 -2.590195,7.415903 -0.633484,5.160191 2.052807,2.159366 -1.568327,10.284256 -2.116555,4.71453 -0.653101,-5.558938 1.523906,-13.8113128 3.98733,-14.3659775 2.521177,-1.1398164 4.382067,3.8545735 4.20983,10.3190375 -0.06851,3.889857 -0.4806,7.972832 -1.092506,11.894807 z M 12.558659,43.677449 C 12.738628,36.875094 11.58821,29.799105 8.8906322,29.526297 c -0.712771,-0.54463 -1.028253,3.232006 -1.499416,4.404265 1.049183,1.637975 3.2389338,1.808794 3.3885268,6.745235 0.72513,7.561921 -0.450012,18.379032 -3.4867048,24.299208 -1.057372,3.552622 -3.273713,0.718909 -3.578741,4.743987 -0.292056,2.457928 1.529776,0.527839 2.044366,0.70868 3.119116,-2.106514 5.3390178,-10.734864 6.2003768,-18.362986 0.340125,-2.804946 0.55592,-5.641938 0.599619,-8.387237 z M 7.0423832,76.743318 c -1.191434,1.493736 -4.086337,-0.784219 -3.205897,4.560861 0.259654,1.919817 0.504594,7.091572 1.013862,7.143812 0.668155,-4.003084 1.643566,-7.737895 2.482952,-11.583675 l -0.0651,-0.172593 -0.225811,0.0516 z m -0.33783,-27.832374 c -1.102631,-5.065786 -3.279161,6.307497 -1.714134,7.021375 1.272521,-0.536733 1.832748,-4.379107 1.714134,-7.021375 z M 1.3828802,103.38839 C 0.51354322,108.66029 0.85373222,100.04235 0.43580922,98.822742 -0.66304378,88.202738 -3.114649,78.720124 -2.1934808,66.013103 -1.3789288,53.294951 0.65851522,40.29986 3.7058842,28.64402 c 1.004068,-4.010797 1.691047,-8.305589 2.293915,-12.598516 0.473845,3.646389 -0.08398,8.117424 -0.991853,12.017102 -1.730483,7.57949 -3.602374,15.179919 -4.52899998,23.338862 -1.191136,9.597113 -2.49302602,20.011729 -1.412614,28.584918 0.618499,6.813376 2.18322298,12.261948 2.58627598,19.343576 0.03638,1.293168 -0.02008,2.708878 -0.269728,4.058428 z"
id="path889"
inkscape:connector-curvature="0" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:Sudo;-inkscape-font-specification:'Sudo, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="69.335617"
y="97.895828"
id="text4860"><tspan
sodipodi:role="line"
id="tspan4858"
x="69.335617"
y="100.54166"
style="stroke-width:0.26458332px" /></text>
<flowRoot
xml:space="preserve"
id="flowRoot1009"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:125%;font-family:Sudo;-inkscape-font-specification:'Sudo, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"><flowRegion
id="flowRegion1011"><rect
id="rect1013"
width="428.17667"
height="304.19095"
x="181.82332"
y="40" /></flowRegion><flowPara
id="flowPara1015" /></flowRoot> <text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="7.6326089"
y="98.964874"
id="text977"
inkscape:transform-center-x="-1.5441791"
inkscape:transform-center-y="0.35634903"><tspan
sodipodi:role="line"
id="tspan975"
x="7.6326089"
y="98.964874"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px">bId°°</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="7.5313234"
y="5.6675167"
id="text977-5"><tspan
sodipodi:role="line"
id="tspan975-3"
x="7.5313234"
y="5.6675167"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px">horUS</tspan></text>
<g
id="g927"
transform="translate(-7.265561,0.27854712)">
<rect
ry="1.1370114"
y="83.550049"
x="23.616581"
height="10.377027"
width="9.4563351"
id="rect998"
style="opacity:1;fill:#cd1f00;fill-opacity:1;fill-rule:evenodd;stroke:#cd1f00;stroke-width:0.83921981;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
transform="rotate(-179.84442)"
id="text1002"
y="-91.266518"
x="-25.791164"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:tb-rl;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
xml:space="preserve"><tspan
id="tspan868"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:tb-rl;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
y="-25.791164"
x="-91.266518"
sodipodi:role="line">OUT</tspan></text>
</g>
<g
id="g917"
transform="translate(19.476811,11.237347)">
<rect
ry="1.1370114"
y="72.591248"
x="-17.410999"
height="10.377027"
width="9.4563351"
id="rect998-0-2"
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000100;stroke-width:0.83921981;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
transform="rotate(-179.84442)"
id="text1002-0-2"
y="-79.564148"
x="15.268346"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:tb-rl;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
xml:space="preserve"><tspan
id="tspan868-3-6"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:tb-rl;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
y="15.268346"
x="-79.564148"
sodipodi:role="line">IN</tspan></text>
</g>
</svg>

+ 224
- 0
plugins/community/repos/Bidoo/res/RABBIT.svg
File diff suppressed because it is too large
View File


+ 230
- 0
plugins/community/repos/Bidoo/res/RABBITtemp.svg
File diff suppressed because it is too large
View File


+ 0
- 602
plugins/community/repos/Bidoo/res/RADAR.svg View File

@@ -1,602 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="135"
height="380"
viewBox="0 0 35.71875 100.54166"
version="1.1"
id="svg12553">
<defs
id="defs12547">
<linearGradient
osb:paint="solid"
id="linearGradient4708">
<stop
id="stop4706"
offset="0"
style="stop-color:#ececec;stop-opacity:1;" />
</linearGradient>
<filter
id="filter4696"
style="color-interpolation-filters:sRGB">
<feColorMatrix
id="feColorMatrix4692"
result="colormatrix"
values="0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 "
in="SourceGraphic" />
<feBlend
id="feBlend4694"
result="fbSourceGraphic"
mode="multiply"
in2="BackgroundImage" />
<feColorMatrix
id="feColorMatrix4762"
values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
in="fbSourceGraphic"
result="fbSourceGraphicAlpha" />
<feColorMatrix
in="fbSourceGraphic"
result="colormatrix"
values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 5 -1 "
id="feColorMatrix4764" />
<feComposite
k4="0"
k3="0"
k1="0"
result="composite"
k2="0.3"
operator="arithmetic"
id="feComposite4766"
in2="colormatrix" />
</filter>
</defs>
<metadata
id="metadata12550">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
transform="matrix(0.29968605,0,0,1.0012215,-7.996127,-161.56849)">
<path
id="path33453"
d="M 26.616839,161.37987 H 145.85344 v 100.3961 H 26.616839 Z m 0,0"
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.32258889" />
<path
id="path33787"
d="m 38.533355,242.56724 c 0,-0.35581 -0.291121,-0.64693 -0.646932,-0.64693 h -6.281685 c -0.355838,0 -0.646933,0.29112 -0.646933,0.64693 v 6.28278 c 0,0.35581 0.291095,0.64693 0.646933,0.64693 h 6.281685 c 0.355811,0 0.646932,-0.29112 0.646932,-0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 66.055605,168.8251 c 0.500274,0 0.84963,-0.25877 0.84963,-0.72025 v -0.009 c 0,-0.40109 -0.263102,-0.5693 -0.733187,-0.69437 -0.401108,-0.10351 -0.500301,-0.15095 -0.500301,-0.3019 v -0.009 c 0,-0.11213 0.09919,-0.20271 0.297577,-0.20271 0.159597,0 0.319167,0.0561 0.487363,0.15527 0.03881,0.0259 0.07763,0.0388 0.129381,0.0388 0.129408,0 0.237225,-0.10351 0.237225,-0.23721 0,-0.0992 -0.05606,-0.1682 -0.11213,-0.2027 -0.211349,-0.12939 -0.452861,-0.20271 -0.737526,-0.20271 -0.474398,0 -0.810816,0.27602 -0.810816,0.69869 v 0.004 c 0,0.46147 0.301916,0.59086 0.767689,0.71162 0.38817,0.0992 0.470111,0.16389 0.470111,0.29327 v 0.009 c 0,0.1337 -0.129381,0.21565 -0.336391,0.21565 -0.224287,0 -0.418359,-0.0776 -0.590867,-0.20702 -0.0345,-0.0259 -0.08194,-0.0474 -0.146632,-0.0474 -0.133721,0 -0.241538,0.10351 -0.241538,0.23721 0,0.0776 0.04313,0.15095 0.09919,0.18976 0.258789,0.18546 0.564991,0.28034 0.87122,0.28034 z m 0,0"
id="path7611" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 67.640935,168.7906 h 1.298178 c 0.129382,0 0.228574,-0.0992 0.228574,-0.22427 0,-0.12507 -0.09919,-0.22858 -0.228574,-0.22858 h -1.048041 v -0.48736 h 0.884132 c 0.125095,0 0.2286,-0.0992 0.2286,-0.22427 0,-0.12938 -0.103505,-0.22858 -0.2286,-0.22858 h -0.884132 v -0.4701 h 1.035103 c 0.125069,0 0.228574,-0.0992 0.228574,-0.22858 0,-0.12508 -0.103505,-0.22859 -0.228574,-0.22859 h -1.28524 c -0.142319,0 -0.254476,0.11645 -0.254476,0.25878 v 1.80709 c 0,0.14232 0.112157,0.25446 0.254476,0.25446 z m 0,0"
id="path7607" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 70.70817,168.82941 c 0.258763,0 0.491676,-0.0733 0.685748,-0.19839 l 0.129381,0.11214 c 0.03881,0.0388 0.09919,0.069 0.168195,0.069 0.129408,0 0.237226,-0.10782 0.237226,-0.24152 0,-0.082 -0.03881,-0.14233 -0.09057,-0.18977 l -0.103532,-0.0819 c 0.129408,-0.19408 0.207037,-0.42266 0.207037,-0.6685 v -0.004 c 0,-0.65986 -0.513239,-1.19466 -1.229175,-1.19466 -0.715936,0 -1.233487,0.53911 -1.233487,1.19898 v 0.009 c 0,0.65987 0.513238,1.19035 1.229174,1.19035 z m 0.069,-0.7375 0.241511,0.20702 c -0.09057,0.0431 -0.194071,0.0604 -0.306202,0.0604 -0.409734,0 -0.702998,-0.33209 -0.702998,-0.72887 v -0.004 c 0,-0.39679 0.284639,-0.72457 0.698685,-0.72457 0.409734,0 0.698686,0.3321 0.698686,0.72888 v 0.009 c 0,0.11645 -0.0217,0.22427 -0.06038,0.31484 l -0.25445,-0.22858 c -0.05609,-0.0431 -0.09922,-0.069 -0.168222,-0.069 -0.133694,0 -0.241512,0.11213 -0.241512,0.24152 0,0.0863 0.03881,0.14664 0.09488,0.19408 z m 0,0"
id="path7603" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 72.627379,168.00566 h 0.57359 c 0.13372,0 0.245851,-0.10783 0.245851,-0.24152 0,-0.1337 -0.112131,-0.24153 -0.245851,-0.24153 h -0.57359 c -0.133721,0 -0.241539,0.10783 -0.241539,0.24153 0,0.13369 0.107818,0.24152 0.241539,0.24152 z m 0,0"
id="path7599" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 74.553439,168.82941 c 0.517552,0 0.832406,-0.31915 0.832406,-0.75906 v -0.004 c 0,-0.43129 -0.306229,-0.59518 -0.621056,-0.65124 l 0.452834,-0.43129 c 0.09491,-0.0906 0.155284,-0.15958 0.155284,-0.28465 0,-0.14233 -0.112157,-0.22858 -0.258789,-0.22858 h -1.129956 c -0.120782,0 -0.219975,0.0992 -0.219975,0.21995 0,0.12076 0.09919,0.21996 0.219975,0.21996 h 0.711623 l -0.452861,0.45285 c -0.07763,0.0776 -0.107817,0.13801 -0.107817,0.20702 0,0.12076 0.09919,0.21996 0.219948,0.21996 h 0.07763 c 0.284665,0 0.45286,0.10782 0.45286,0.29327 v 0.009 c 0,0.17252 -0.133694,0.28034 -0.327792,0.28034 -0.181134,0 -0.31914,-0.0604 -0.452834,-0.17252 -0.03881,-0.0302 -0.09057,-0.0604 -0.15957,-0.0604 -0.133721,0 -0.245851,0.11214 -0.245851,0.24584 0,0.069 0.03881,0.14232 0.08625,0.18114 0.185473,0.15957 0.43561,0.26308 0.767688,0.26308 z m 0,0"
id="path7595" />
<path
id="path35483"
d="M 31.535655,196.58908 H 108.99592"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35687"
d="m 68.112052,258.60709 c -0.09165,0 -0.175762,-0.0517 -0.216746,-0.1337 l -0.783855,-1.56881 c -0.05932,-0.11859 -0.01085,-0.26416 0.107818,-0.32346 0.119697,-0.0593 0.26416,-0.0108 0.324538,0.10782 l 0.568245,1.13753 0.568219,-1.13753 c 0.05929,-0.1186 0.204867,-0.16712 0.323454,-0.10782 0.119697,0.0593 0.16711,0.20487 0.107817,0.32346 l -0.783881,1.56881 c -0.04096,0.0819 -0.125068,0.1337 -0.215609,0.1337"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
id="path35689"
d="m 72.419522,258.60709 c -0.09165,0 -0.174678,-0.0517 -0.215636,-0.1337 l -0.784939,-1.56881 c -0.05932,-0.11859 -0.01085,-0.26416 0.108903,-0.32346 0.118586,-0.0593 0.264133,-0.0108 0.323453,0.10782 l 0.568219,1.13753 0.568219,-1.13753 c 0.05929,-0.1186 0.20484,-0.16712 0.323453,-0.10782 0.119698,0.0593 0.168222,0.20487 0.107844,0.32346 l -0.783881,1.56881 c -0.04096,0.0819 -0.123983,0.1337 -0.215635,0.1337"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
id="path35691"
d="m 70.382786,258.60709 c -0.566076,0 -1.025419,-0.4604 -1.025419,-1.02538 0,-0.56606 0.459343,-1.02646 1.025419,-1.02646 0.223149,0 0.436668,0.0712 0.615632,0.20593 0.106733,0.0798 0.127265,0.23075 0.04747,0.33749 -0.07982,0.10674 -0.230744,0.1283 -0.337503,0.0485 -0.09488,-0.0712 -0.20701,-0.1089 -0.325596,-0.1089 -0.299773,0 -0.543454,0.24367 -0.543454,0.54342 0,0.29866 0.243681,0.54234 0.543454,0.54234 0.118586,0 0.230717,-0.0377 0.325596,-0.10782 0.106759,-0.0809 0.257678,-0.0593 0.337503,0.0474 0.0798,0.10675 0.05927,0.2577 -0.04747,0.33856 -0.178964,0.1337 -0.392483,0.20486 -0.615632,0.20486"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
id="path35693"
d="m 70.711636,257.56877 c 0,0.17359 -0.140202,0.31376 -0.313795,0.31376 -0.172509,0 -0.313743,-0.14017 -0.313743,-0.31376 0,-0.17252 0.141234,-0.31376 0.313743,-0.31376 0.173593,0 0.313795,0.14124 0.313795,0.31376"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 66.110162,253.14752 c 0.185446,0 0.336418,-0.0647 0.444235,-0.13801 0.05175,-0.0302 0.07763,-0.0776 0.07763,-0.13801 v -0.3364 c 0,-0.0604 -0.04744,-0.11214 -0.11213,-0.11214 h -0.349356 c -0.05175,0 -0.09919,0.0431 -0.09919,0.0992 0,0.0517 0.04744,0.0949 0.09919,0.0949 h 0.250163 v 0.23289 c -0.07766,0.0604 -0.185473,0.0949 -0.306228,0.0949 -0.25445,0 -0.426985,-0.18977 -0.426985,-0.44854 0,-0.24152 0.176848,-0.44423 0.409734,-0.44423 0.133694,0 0.224261,0.0388 0.301889,0.0992 0.0217,0.0129 0.04315,0.0259 0.06903,0.0259 0.06038,0 0.112131,-0.0518 0.112131,-0.11214 0,-0.0431 -0.02593,-0.0733 -0.04744,-0.0906 -0.112131,-0.0819 -0.241538,-0.12507 -0.426985,-0.12507 -0.379518,0 -0.646933,0.29759 -0.646933,0.64693 v 0.004 c 0,0.3666 0.254477,0.64693 0.651246,0.64693 z m 0,0"
id="path7407" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 66.869966,253.03108 c 0,0.0604 0.04744,0.1035 0.103505,0.1035 0.04744,0 0.08625,-0.0259 0.103505,-0.069 l 0.103531,-0.24152 h 0.612405 l 0.103531,0.23289 c 0.0172,0.0474 0.05175,0.0776 0.107818,0.0776 0.05607,0 0.103505,-0.0474 0.103505,-0.1035 0,-0.0172 -0.0042,-0.0345 -0.01296,-0.0474 l -0.465798,-1.04371 c -0.02593,-0.0518 -0.069,-0.0863 -0.133694,-0.0863 h -0.0087 c -0.06469,0 -0.107817,0.0345 -0.133694,0.0863 l -0.465799,1.04371 c -0.0087,0.0173 -0.0172,0.0345 -0.0172,0.0474 z m 0.396795,-0.40541 0.219949,-0.50461 0.219948,0.50461 z m 0,0"
id="path7403" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 68.549594,253.02676 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.112131,-0.0474 0.112131,-0.10782 v -0.95314 h 0.306202 c 0.05609,0 0.09922,-0.0474 0.09922,-0.0992 0,-0.0561 -0.04313,-0.10351 -0.09922,-0.10351 h -0.836692 c -0.05607,0 -0.09919,0.0474 -0.09919,0.10351 0,0.0518 0.04313,0.0992 0.09919,0.0992 h 0.306229 z m 0,0"
id="path7399" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 69.556122,253.12596 h 0.741812 c 0.05178,0 0.09922,-0.0431 0.09922,-0.0992 0,-0.0518 -0.04744,-0.0992 -0.09922,-0.0992 h -0.629655 v -0.33641 h 0.539088 c 0.05175,0 0.09919,-0.0431 0.09919,-0.0949 0,-0.0561 -0.04744,-0.10351 -0.09919,-0.10351 h -0.539088 v -0.32346 h 0.62103 c 0.05178,0 0.09491,-0.0431 0.09491,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.09491,-0.0992 h -0.733187 c -0.06038,0 -0.112131,0.0474 -0.112131,0.11214 v 1.03077 c 0,0.0647 0.05175,0.11214 0.112131,0.11214 z m 0,0"
id="path7395" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 71.783622,253.14752 c 0.388171,0 0.659871,-0.29759 0.659871,-0.65124 0,-0.35366 -0.267388,-0.64693 -0.655558,-0.64693 -0.383831,0 -0.655558,0.29327 -0.655558,0.64693 v 0.004 c 0,0.35366 0.267414,0.64693 0.651245,0.64693 z m 0.0042,-0.2027 c -0.250137,0 -0.426985,-0.20271 -0.426985,-0.44854 0,-0.24584 0.176848,-0.44423 0.422672,-0.44423 0.250137,0 0.426985,0.20271 0.426985,0.44423 v 0.004 c 0,0.24584 -0.172535,0.44423 -0.422672,0.44423 z m 0,0"
id="path7387" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 73.285027,253.14752 c 0.327766,0 0.539115,-0.18976 0.539115,-0.56498 v -0.61243 c 0,-0.0604 -0.04744,-0.10782 -0.107818,-0.10782 -0.06472,0 -0.112157,0.0474 -0.112157,0.10782 v 0.62105 c 0,0.2329 -0.120756,0.34934 -0.314827,0.34934 -0.198385,0 -0.319141,-0.12507 -0.319141,-0.35796 v -0.61243 c 0,-0.0604 -0.04747,-0.10782 -0.107844,-0.10782 -0.06469,0 -0.11213,0.0474 -0.11213,0.10782 v 0.62105 c 0,0.3666 0.20701,0.55636 0.534802,0.55636 z m 0,0"
id="path7383" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 74.487505,253.02676 c 0,0.0604 0.05175,0.10782 0.112131,0.10782 0.06038,0 0.11213,-0.0474 0.11213,-0.10782 v -0.95314 h 0.306202 c 0.05609,0 0.09922,-0.0474 0.09922,-0.0992 0,-0.0561 -0.04313,-0.10351 -0.09922,-0.10351 h -0.836692 c -0.05607,0 -0.09919,0.0474 -0.09919,0.10351 0,0.0518 0.04313,0.0992 0.09919,0.0992 h 0.306229 z m 0,0"
id="path7379" />
<path
id="path35723"
d="M 31.535655,252.48497 H 63.614797"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35725"
d="M 76.916751,252.48497 H 108.99592"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35727"
d="m 34.74558,237.2034 v 8.5438"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35729"
d="m 44.799747,237.2034 v 8.5438"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35731"
d="m 54.853914,237.2034 v 8.5438"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35733"
d="m 65.172664,237.2034 v 8.5438"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35735"
d="m 75.22683,237.2034 v 8.5438"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35737"
d="m 85.54558,237.2034 v 8.5438"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35739"
d="m 95.599747,237.2034 v 8.5438"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35741"
d="m 105.9185,237.2034 v 8.5438"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 31.482924,174.1527 c 0.250164,0 0.418359,-0.0776 0.564991,-0.20701 0.0217,-0.0216 0.04313,-0.0561 0.04313,-0.0992 0,-0.0647 -0.06038,-0.12508 -0.129381,-0.12508 -0.0345,0 -0.06038,0.0129 -0.08194,0.0302 -0.112131,0.0949 -0.224261,0.15095 -0.383858,0.15095 -0.297577,0 -0.513212,-0.24583 -0.513212,-0.54773 v -0.004 c 0,-0.3019 0.215635,-0.54773 0.513212,-0.54773 0.146659,0 0.258789,0.0561 0.366607,0.14232 0.0172,0.0129 0.04313,0.0259 0.08194,0.0259 0.07332,0 0.133694,-0.0604 0.133694,-0.1337 0,-0.0474 -0.0217,-0.0863 -0.05175,-0.10782 -0.133694,-0.10351 -0.293264,-0.17683 -0.53049,-0.17683 -0.470085,0 -0.797877,0.36228 -0.797877,0.80219 v 0.004 c 0,0.44423 0.336417,0.79357 0.784939,0.79357 z m 0,0"
id="path7375" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 32.449659,173.98882 c 0,0.0776 0.06038,0.13801 0.138006,0.13801 h 0.832406 c 0.069,0 0.125068,-0.0561 0.125068,-0.12508 0,-0.069 -0.05607,-0.12076 -0.125068,-0.12076 h -0.698685 v -1.17741 c 0,-0.0733 -0.06038,-0.1337 -0.133721,-0.1337 -0.07763,0 -0.138006,0.0604 -0.138006,0.1337 z m 0,0"
id="path7371" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 34.520658,174.1527 c 0.474425,0 0.810816,-0.36228 0.810816,-0.79788 v -0.004 c 0,-0.4356 -0.332079,-0.79788 -0.806503,-0.79788 -0.474398,0 -0.810816,0.3666 -0.810816,0.8022 v 0.004 c 0,0.4356 0.332105,0.79357 0.806503,0.79356 z m 0.0042,-0.25014 c -0.306202,0 -0.52615,-0.25015 -0.52615,-0.54774 v -0.004 c 0,-0.3019 0.215635,-0.54773 0.521838,-0.54773 0.306229,0 0.526177,0.25015 0.526177,0.55205 v 0.004 c 0,0.29758 -0.215636,0.54342 -0.521865,0.54342 z m 0,0"
id="path7367" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 36.418911,174.1527 c 0.250164,0 0.418359,-0.0776 0.564992,-0.20701 0.0217,-0.0216 0.04313,-0.0561 0.04313,-0.0992 0,-0.0647 -0.06038,-0.12508 -0.129382,-0.12508 -0.0345,0 -0.06038,0.0129 -0.08194,0.0302 -0.112131,0.0949 -0.224261,0.15095 -0.383858,0.15095 -0.297576,0 -0.513212,-0.24583 -0.513212,-0.54773 v -0.004 c 0,-0.3019 0.215636,-0.54773 0.513212,-0.54773 0.146659,0 0.258789,0.0561 0.366607,0.14232 0.0172,0.0129 0.04313,0.0259 0.08194,0.0259 0.07332,0 0.133693,-0.0604 0.133693,-0.1337 0,-0.0474 -0.0217,-0.0863 -0.05175,-0.10782 -0.133694,-0.10351 -0.293264,-0.17683 -0.53049,-0.17683 -0.470085,0 -0.797877,0.36228 -0.797877,0.80219 v 0.004 c 0,0.44423 0.336418,0.79357 0.784939,0.79357 z m 0,0"
id="path7363" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 37.385593,174.00175 c 0,0.0776 0.06038,0.13802 0.138007,0.13802 0.07334,0 0.13372,-0.0604 0.13372,-0.13802 v -0.31915 l 0.250137,-0.24152 0.500301,0.63399 c 0.02593,0.0345 0.06038,0.0647 0.11213,0.0647 0.07763,0 0.138007,-0.0604 0.138007,-0.1337 0,-0.0431 -0.0172,-0.069 -0.03881,-0.0992 l -0.521864,-0.64693 0.48305,-0.46147 c 0.03019,-0.0302 0.04744,-0.0604 0.04744,-0.10351 0,-0.0647 -0.04744,-0.12508 -0.125069,-0.12508 -0.04744,0 -0.08194,0.0172 -0.11213,0.0517 l -0.733187,0.7375 v -0.65555 c 0,-0.0733 -0.06038,-0.1337 -0.13372,-0.1337 -0.07763,0 -0.138007,0.0604 -0.138007,0.1337 z m 0,0"
id="path7359" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 62.229492,174.14839 c 0.323479,0 0.552053,-0.17251 0.552053,-0.46148 v -0.004 c 0,-0.25445 -0.168196,-0.3709 -0.495988,-0.45285 -0.297577,-0.069 -0.370893,-0.12507 -0.370893,-0.24152 v -0.004 c 0,-0.10351 0.09488,-0.18545 0.25445,-0.18545 0.120756,0 0.232886,0.0431 0.353642,0.11645 0.0217,0.0129 0.04315,0.0216 0.07334,0.0216 0.069,0 0.125069,-0.0561 0.125069,-0.12508 0,-0.0517 -0.02593,-0.0906 -0.06038,-0.10782 -0.138033,-0.0949 -0.293291,-0.14664 -0.487363,-0.14664 -0.306202,0 -0.530489,0.18546 -0.530489,0.44854 v 0.004 c 0,0.28465 0.185446,0.38385 0.517551,0.46148 0.284639,0.069 0.34933,0.12939 0.34933,0.23721 v 0.004 c 0,0.11645 -0.107818,0.19408 -0.276014,0.19408 -0.168195,0 -0.306202,-0.0561 -0.431297,-0.15958 -0.0172,-0.0129 -0.04313,-0.0216 -0.08194,-0.0216 -0.069,0 -0.125069,0.0561 -0.125069,0.12508 0,0.0431 0.0217,0.0819 0.05175,0.1035 0.172508,0.12939 0.370919,0.19408 0.582242,0.19408 z m 0,0"
id="path7355" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 63.518621,174.00175 c 0,0.0776 0.06038,0.13802 0.138007,0.13802 0.07332,0 0.138006,-0.0604 0.138006,-0.13802 v -1.16878 h 0.375232 c 0.069,0 0.125069,-0.0561 0.125069,-0.12508 0,-0.069 -0.05607,-0.12507 -0.125069,-0.12507 h -1.026477 c -0.069,0 -0.125069,0.0561 -0.125069,0.12507 0,0.069 0.05607,0.12508 0.125069,0.12508 h 0.375232 z m 0,0"
id="path7351" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 64.743324,174.12683 h 0.910035 c 0.06469,0 0.120756,-0.0517 0.120756,-0.12076 0,-0.069 -0.05607,-0.12076 -0.120756,-0.12076 h -0.776314 v -0.41835 h 0.664183 c 0.069,0 0.120756,-0.0517 0.120756,-0.11645 0,-0.069 -0.05175,-0.12507 -0.120756,-0.12507 h -0.664183 v -0.4011 h 0.763376 c 0.069,0 0.120755,-0.0517 0.120755,-0.12076 0,-0.069 -0.05175,-0.12076 -0.120755,-0.12076 h -0.897097 c -0.07763,0 -0.138006,0.0561 -0.138006,0.1337 v 1.2723 c 0,0.0776 0.06038,0.13801 0.138006,0.13801 z m 0,0"
id="path7347" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 66.130508,174.00175 c 0,0.0776 0.06038,0.13802 0.138007,0.13802 0.07334,0 0.13372,-0.0604 0.13372,-0.13802 v -0.3709 h 0.306203 c 0.34073,0 0.621056,-0.18114 0.621056,-0.53049 v -0.004 c 0,-0.31052 -0.228573,-0.51323 -0.590867,-0.51323 h -0.470112 c -0.07763,0 -0.138007,0.0561 -0.138007,0.1337 z m 0.271727,-0.61674 v -0.55636 h 0.314828 c 0.202697,0 0.336418,0.0949 0.336418,0.27603 v 0.004 c 0,0.15957 -0.129408,0.27602 -0.336418,0.27602 z m 0,0"
id="path7343" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 68.202011,174.14839 c 0.323479,0 0.552053,-0.17251 0.552053,-0.46148 v -0.004 c 0,-0.25445 -0.168196,-0.3709 -0.495988,-0.45285 -0.297577,-0.069 -0.370893,-0.12507 -0.370893,-0.24152 v -0.004 c 0,-0.10351 0.09488,-0.18545 0.25445,-0.18545 0.120756,0 0.232886,0.0431 0.353642,0.11645 0.0217,0.0129 0.04315,0.0216 0.07334,0.0216 0.069,0 0.125069,-0.0561 0.125069,-0.12508 0,-0.0517 -0.02593,-0.0906 -0.06038,-0.10782 -0.138033,-0.0949 -0.293291,-0.14664 -0.487363,-0.14664 -0.306202,0 -0.530489,0.18546 -0.530489,0.44854 v 0.004 c 0,0.28465 0.185446,0.38385 0.517551,0.46148 0.284639,0.069 0.34933,0.12939 0.34933,0.23721 v 0.004 c 0,0.11645 -0.107818,0.19408 -0.276014,0.19408 -0.168195,0 -0.306202,-0.0561 -0.431297,-0.15958 -0.0172,-0.0129 -0.04313,-0.0216 -0.08194,-0.0216 -0.069,0 -0.125069,0.0561 -0.125069,0.12508 0,0.0431 0.0217,0.0819 0.05175,0.1035 0.172508,0.12939 0.370919,0.19408 0.582242,0.19408 z m 0,0"
id="path7339" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 42.895329,175.35142 c 0,0.0604 0.05175,0.10782 0.112131,0.10782 0.06038,0 0.112156,-0.0474 0.112156,-0.10782 v -0.34072 h 0.276014 l 0.306202,0.39247 c 0.02593,0.0345 0.05607,0.0561 0.107844,0.0561 0.05175,0 0.103505,-0.0388 0.103505,-0.10351 0,-0.0345 -0.01296,-0.0561 -0.0345,-0.0819 l -0.241539,-0.3019 c 0.168223,-0.0561 0.284666,-0.17683 0.284666,-0.37522 v -0.004 c 0,-0.11213 -0.0345,-0.2027 -0.103505,-0.27171 -0.07766,-0.0776 -0.202724,-0.12507 -0.362294,-0.12507 h -0.448548 c -0.06038,0 -0.112131,0.0474 -0.112131,0.11213 z m 0.224287,-0.5348 v -0.42266 h 0.319141 c 0.163883,0 0.258762,0.0733 0.258762,0.21133 0,0.12939 -0.09919,0.21133 -0.258762,0.21133 z m 0,0"
id="path7335" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 44.769241,175.47218 c 0.327765,0 0.539115,-0.18977 0.539115,-0.56499 v -0.61243 c 0,-0.0604 -0.04744,-0.10782 -0.107818,-0.10782 -0.06472,0 -0.112157,0.0474 -0.112157,0.10782 v 0.62106 c 0,0.23289 -0.120756,0.34934 -0.314828,0.34934 -0.198384,0 -0.31914,-0.12507 -0.31914,-0.35797 v -0.61243 c 0,-0.0604 -0.04747,-0.10782 -0.107844,-0.10782 -0.06469,0 -0.112131,0.0474 -0.112131,0.10782 v 0.62106 c 0,0.36659 0.20701,0.55636 0.534803,0.55636 z m 0,0"
id="path7331" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 45.679857,175.35142 c 0,0.0604 0.05175,0.10782 0.112131,0.10782 0.06038,0 0.107844,-0.0474 0.107844,-0.10782 v -0.79789 l 0.646906,0.8367 c 0.03021,0.0388 0.0604,0.069 0.112157,0.069 h 0.0087 c 0.06038,0 0.107818,-0.0517 0.107818,-0.11213 v -1.05234 c 0,-0.0604 -0.04744,-0.10783 -0.107818,-0.10783 -0.06038,0 -0.107844,0.0474 -0.107844,0.10783 v 0.772 l -0.629656,-0.81513 c -0.03019,-0.0388 -0.0604,-0.0647 -0.112156,-0.0647 h -0.02593 c -0.06038,0 -0.11213,0.0517 -0.11213,0.11213 z m 0,0"
id="path7327" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 52.036525,175.35142 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.112157,-0.0474 0.112157,-0.10782 v -0.34072 h 0.276013 l 0.306203,0.39247 c 0.02593,0.0345 0.05606,0.0561 0.107844,0.0561 0.05175,0 0.103505,-0.0388 0.103505,-0.10351 0,-0.0345 -0.01297,-0.0561 -0.0345,-0.0819 l -0.24154,-0.30191 c 0.168222,-0.0561 0.284665,-0.17682 0.284665,-0.37522 v -0.004 c 0,-0.11213 -0.0345,-0.2027 -0.103505,-0.27171 -0.07766,-0.0776 -0.202724,-0.12507 -0.362294,-0.12507 h -0.448548 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11213 z m 0.224287,-0.5348 v -0.42266 h 0.31914 c 0.163883,0 0.258763,0.0733 0.258763,0.21133 0,0.12939 -0.09919,0.21133 -0.258763,0.21133 z m 0,0"
id="path7323" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 53.509169,175.45061 h 0.741812 c 0.05178,0 0.09922,-0.0431 0.09922,-0.0992 0,-0.0517 -0.04744,-0.0992 -0.09922,-0.0992 h -0.629655 v -0.3364 h 0.539088 c 0.05175,0 0.09919,-0.0431 0.09919,-0.0949 0,-0.0561 -0.04744,-0.10351 -0.09919,-0.10351 h -0.539088 v -0.32347 h 0.62103 c 0.05178,0 0.09491,-0.0431 0.09491,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.09491,-0.0992 h -0.733187 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11214 v 1.03077 c 0,0.0647 0.05175,0.11214 0.11213,0.11214 z m 0,0"
id="path7319" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 55.092885,175.46786 c 0.267388,0 0.448522,-0.13801 0.448522,-0.37522 v -0.004 c 0,-0.20701 -0.133694,-0.3019 -0.401082,-0.36659 -0.241511,-0.0561 -0.297603,-0.0992 -0.297603,-0.19839 0,-0.0863 0.07334,-0.15095 0.202724,-0.15095 0.09919,0 0.194072,0.0302 0.288951,0.0949 0.0172,0.0129 0.0345,0.0173 0.05606,0.0173 0.06038,0 0.107818,-0.0474 0.107818,-0.10351 0,-0.0431 -0.02593,-0.0733 -0.05175,-0.0863 -0.112131,-0.0776 -0.237199,-0.11645 -0.39677,-0.11645 -0.250163,0 -0.426984,0.14664 -0.426984,0.36228 v 0.004 c 0,0.2329 0.146632,0.31053 0.414046,0.37522 0.237199,0.0517 0.284639,0.10351 0.284639,0.18977 v 0.004 c 0,0.0949 -0.08625,0.15957 -0.219948,0.15957 -0.138007,0 -0.250137,-0.0474 -0.353669,-0.12938 -0.01296,-0.0129 -0.0345,-0.0216 -0.06469,-0.0216 -0.05607,0 -0.103505,0.0474 -0.103505,0.10351 0,0.0345 0.0172,0.0647 0.04313,0.0863 0.138006,0.10351 0.301916,0.15526 0.470111,0.15526 z m 0,0"
id="path7315" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 55.975059,175.45061 h 0.741812 c 0.05178,0 0.09922,-0.0431 0.09922,-0.0992 0,-0.0517 -0.04744,-0.0992 -0.09922,-0.0992 h -0.629655 v -0.3364 h 0.539089 c 0.05175,0 0.09919,-0.0431 0.09919,-0.0949 0,-0.0561 -0.04744,-0.10351 -0.09919,-0.10351 h -0.539089 v -0.32347 h 0.62103 c 0.05178,0 0.09491,-0.0431 0.09491,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.09491,-0.0992 h -0.733187 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11214 v 1.03077 c 0,0.0647 0.05175,0.11214 0.11213,0.11214 z m 0,0"
id="path7311" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 57.445693,175.35142 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.112131,-0.0474 0.112131,-0.10782 v -0.95315 h 0.306202 c 0.05609,0 0.09922,-0.0474 0.09922,-0.0992 0,-0.0561 -0.04313,-0.10351 -0.09922,-0.10351 h -0.836692 c -0.05607,0 -0.09919,0.0474 -0.09919,0.10351 0,0.0517 0.04313,0.0992 0.09919,0.0992 h 0.306229 z m 0,0"
id="path7307" />
<path
id="path35805"
d="m 34.74558,181.31115 v 10.7908"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35807"
d="m 75.22683,179.72419 v 10.78972"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35809"
d="m 55.118497,179.72419 v 10.78972"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35811"
d="m 85.54558,179.72419 v 10.78972"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35813"
d="m 95.599747,179.72419 v 10.78972"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35815"
d="m 105.9185,179.72419 v 10.78972"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35817"
d="m 65.172664,179.72419 v 10.78972"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 41.048061,185.72278 h 0.741813 c 0.05178,0 0.09922,-0.0431 0.09922,-0.0992 0,-0.0517 -0.04744,-0.0992 -0.09922,-0.0992 h -0.629656 v -0.3364 h 0.539089 c 0.05175,0 0.09919,-0.0431 0.09919,-0.0949 0,-0.0561 -0.04744,-0.10351 -0.09919,-0.10351 h -0.539089 v -0.32346 h 0.62103 c 0.05178,0 0.09491,-0.0431 0.09491,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.09491,-0.0992 h -0.733187 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11213 v 1.03077 c 0,0.0647 0.05175,0.11214 0.11213,0.11214 z m 0,0"
id="path7303" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 42.13198,185.62789 c 0,0.0647 0.05175,0.10351 0.103505,0.10351 0.04744,0 0.07763,-0.0216 0.107818,-0.0604 l 0.332105,-0.43129 0.336391,0.43992 c 0.02593,0.0345 0.05175,0.0517 0.09922,0.0517 0.06469,0 0.11213,-0.0474 0.11213,-0.10782 0,-0.0302 -0.0172,-0.0604 -0.0345,-0.0819 l -0.370919,-0.46148 0.349356,-0.4356 c 0.0217,-0.0302 0.0345,-0.0517 0.0345,-0.0863 0,-0.0604 -0.05175,-0.0992 -0.09919,-0.0992 -0.04747,0 -0.07766,0.0216 -0.107844,0.0604 l -0.314828,0.40972 -0.314854,-0.41834 c -0.03019,-0.0345 -0.05607,-0.0517 -0.103505,-0.0517 -0.06038,0 -0.107818,0.0474 -0.107818,0.10782 0,0.0302 0.0172,0.0561 0.0345,0.0819 l 0.349356,0.43559 -0.37092,0.46148 c -0.0217,0.0259 -0.0345,0.0518 -0.0345,0.0819 z m 0,0"
id="path7299" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 43.851428,185.62358 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.11213,-0.0474 0.11213,-0.10782 v -0.95314 h 0.306203 c 0.05609,0 0.09922,-0.0475 0.09922,-0.0992 0,-0.0561 -0.04313,-0.1035 -0.09922,-0.1035 h -0.836692 c -0.05607,0 -0.09919,0.0474 -0.09919,0.1035 0,0.0517 0.04313,0.0992 0.09919,0.0992 h 0.306229 z m 0,0"
id="path7295" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 45.828288,185.74434 c 0.202698,0 0.336418,-0.0647 0.452861,-0.1682 0.0217,-0.0173 0.03881,-0.0474 0.03881,-0.0776 0,-0.0561 -0.05175,-0.10351 -0.107818,-0.10351 -0.02593,0 -0.04744,0.009 -0.06469,0.0259 -0.09059,0.0776 -0.18116,0.12076 -0.314854,0.12076 -0.237199,0 -0.414046,-0.2027 -0.414046,-0.44853 0,-0.24584 0.176847,-0.44423 0.414046,-0.44423 0.120756,0 0.215635,0.0431 0.301916,0.11214 0.01296,0.0129 0.0345,0.0216 0.06469,0.0216 0.06038,0 0.11213,-0.0474 0.11213,-0.10782 0,-0.0388 -0.0217,-0.069 -0.04313,-0.0863 -0.11213,-0.0863 -0.237225,-0.14232 -0.431297,-0.14232 -0.379519,0 -0.646933,0.29327 -0.646933,0.64693 v 0.004 c 0,0.36228 0.271727,0.64693 0.638307,0.64693 z m 0,0"
id="path7287" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 46.622144,185.61064 c 0,0.0647 0.05175,0.11214 0.112131,0.11214 h 0.677121 c 0.05607,0 0.103532,-0.0431 0.103532,-0.0992 0,-0.0561 -0.04747,-0.10351 -0.103532,-0.10351 h -0.564965 v -0.95314 c 0,-0.0604 -0.05178,-0.10782 -0.112156,-0.10782 -0.06038,0 -0.112131,0.0474 -0.112131,0.10782 z m 0,0"
id="path7283" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 47.77668,185.62358 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.112157,-0.0474 0.112157,-0.10782 v -0.26308 l 0.202698,-0.19408 0.405394,0.51323 c 0.0217,0.0302 0.04744,0.0517 0.09059,0.0517 0.06469,0 0.11213,-0.0474 0.11213,-0.10782 0,-0.0345 -0.01297,-0.0561 -0.03019,-0.0776 l -0.422672,-0.52617 0.38817,-0.37522 c 0.02593,-0.0259 0.04313,-0.0517 0.04313,-0.0863 0,-0.0517 -0.04313,-0.0992 -0.103505,-0.0992 -0.03884,0 -0.06472,0.0129 -0.09059,0.0388 l -0.595154,0.59949 v -0.53048 c 0,-0.0604 -0.05178,-0.10782 -0.112157,-0.10782 -0.06038,0 -0.11213,0.0474 -0.11213,0.10782 z m 0,0"
id="path7279" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 34.621094,200.89411 c 0,0.0776 0.06038,0.13802 0.133694,0.13802 0.07763,0 0.138007,-0.0604 0.138007,-0.13802 v -1.3068 c 0,-0.0733 -0.06038,-0.1337 -0.138007,-0.1337 h -0.0042 c -0.03881,0 -0.07763,0.009 -0.129382,0.0259 l -0.237225,0.0733 c -0.05175,0.0173 -0.09057,0.0604 -0.09057,0.11645 0,0.0647 0.05606,0.11644 0.120756,0.11644 0.01296,0 0.0345,-0.004 0.04744,-0.009 l 0.159596,-0.0474 z m 0,0"
id="path7275" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 44.255949,200.8898 c 0,0.0819 0.06038,0.12939 0.146632,0.12939 h 0.875533 c 0.06469,0 0.120756,-0.0518 0.120756,-0.12077 0,-0.0647 -0.05607,-0.11644 -0.120756,-0.11644 h -0.625369 l 0.314827,-0.2674 c 0.27604,-0.21996 0.405421,-0.35365 0.405421,-0.59518 v -0.009 c 0,-0.27603 -0.211349,-0.46148 -0.513238,-0.46148 -0.241512,0 -0.383858,0.0949 -0.508926,0.25015 -0.0217,0.0259 -0.0345,0.0561 -0.0345,0.0862 0,0.069 0.05607,0.12076 0.125068,0.12076 0.04313,0 0.07334,-0.0173 0.09491,-0.0388 0.09488,-0.11645 0.181134,-0.17252 0.306203,-0.17252 0.138006,0 0.250137,0.0863 0.250137,0.24152 0,0.13801 -0.07763,0.23721 -0.293264,0.41404 l -0.474425,0.40541 c -0.04313,0.0388 -0.069,0.0819 -0.069,0.1337 z m 0,0"
id="path7271" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 55.013325,201.04506 c 0.323453,0 0.543428,-0.2027 0.543428,-0.49167 v -0.004 c 0,-0.28465 -0.224287,-0.40109 -0.457174,-0.43129 l 0.366607,-0.37521 c 0.04313,-0.0474 0.07763,-0.0863 0.07763,-0.15095 0,-0.0733 -0.06038,-0.11645 -0.138007,-0.11645 h -0.789278 c -0.06469,0 -0.120756,0.0517 -0.120756,0.11645 0,0.0647 0.05606,0.11644 0.120756,0.11644 h 0.560678 l -0.362267,0.38816 c -0.04313,0.0431 -0.05607,0.0733 -0.05607,0.11214 0,0.0604 0.05175,0.11644 0.116444,0.11644 h 0.05607 c 0.215635,0 0.353642,0.0863 0.353642,0.23721 v 0.004 c 0,0.14233 -0.112131,0.2329 -0.267388,0.2329 -0.142319,0 -0.25445,-0.0474 -0.349356,-0.14664 -0.0217,-0.0216 -0.05175,-0.0345 -0.09057,-0.0345 -0.07332,0 -0.129381,0.0604 -0.129381,0.12938 0,0.0388 0.0172,0.0776 0.04313,0.0992 0.125069,0.12076 0.293291,0.19839 0.521864,0.19839 z m 0,0"
id="path7267" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 65.337817,200.90274 c 0,0.0733 0.05606,0.12939 0.129381,0.12939 0.07334,0 0.129408,-0.0561 0.129408,-0.12939 v -0.22859 h 0.120755 c 0.06469,0 0.112131,-0.0517 0.112131,-0.11213 0,-0.0604 -0.04744,-0.11213 -0.112131,-0.11213 H 65.596606 V 199.583 c 0,-0.0733 -0.05607,-0.1337 -0.129408,-0.1337 -0.08194,0 -0.116443,0.0345 -0.168196,0.0906 l -0.724561,0.86257 c -0.03881,0.0431 -0.06038,0.0906 -0.06038,0.14233 0,0.0733 0.06038,0.12938 0.133694,0.12938 h 0.69006 z m -0.5089,-0.45285 0.5089,-0.61243 v 0.61243 z m 0,0"
id="path7263" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 75.346422,201.04506 c 0.327766,0 0.564991,-0.20702 0.564991,-0.52186 v -0.004 c 0,-0.32778 -0.237225,-0.48735 -0.539115,-0.48735 -0.103505,0 -0.172508,0.0173 -0.245824,0.0431 l 0.02593,-0.36228 h 0.57793 c 0.069,0 0.120755,-0.0517 0.120755,-0.11644 0,-0.069 -0.05175,-0.12076 -0.120755,-0.12076 h -0.698687 c -0.06472,0 -0.120782,0.0474 -0.125095,0.12076 l -0.03019,0.55636 c -0.0042,0.0517 0.01297,0.0906 0.05175,0.11644 0.05175,0.0388 0.08625,0.0561 0.129408,0.0561 0.03881,0 0.11213,-0.0561 0.263075,-0.0561 0.189759,0 0.31914,0.0992 0.31914,0.25878 v 0.004 c 0,0.16389 -0.125068,0.2674 -0.297577,0.2674 -0.120756,0 -0.232886,-0.0431 -0.336417,-0.12939 -0.0217,-0.0216 -0.04744,-0.0302 -0.08194,-0.0302 -0.069,0 -0.129381,0.0604 -0.129381,0.1337 0,0.0431 0.0217,0.0776 0.05606,0.10351 0.125069,0.0992 0.284665,0.1682 0.495988,0.1682 z m 0,0"
id="path7259" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 85.546692,201.04506 c 0.323479,0 0.573616,-0.21996 0.573616,-0.52617 v -0.004 c 0,-0.30622 -0.241511,-0.48304 -0.539115,-0.48304 -0.185446,0 -0.288951,0.0733 -0.370893,0.15095 0.01296,-0.28034 0.138007,-0.48736 0.370893,-0.48736 0.103505,0 0.181134,0.0302 0.263076,0.0863 0.0217,0.009 0.04315,0.0172 0.06903,0.0172 0.069,0 0.129382,-0.0517 0.129382,-0.12507 0,-0.0561 -0.02593,-0.0906 -0.069,-0.11645 -0.09919,-0.069 -0.224287,-0.11214 -0.383857,-0.11214 -0.439923,0 -0.664184,0.37091 -0.664184,0.84533 v 0.004 c 0,0.31053 0.07332,0.4701 0.189759,0.58655 0.103532,0.10351 0.241539,0.16389 0.431298,0.16389 z m -0.0087,-0.23721 c -0.194071,0 -0.31914,-0.11644 -0.31914,-0.27602 v -0.004 c 0,-0.14664 0.120756,-0.27171 0.310515,-0.27171 0.194072,0 0.31914,0.11644 0.31914,0.27171 v 0.004 c 0,0.15958 -0.116443,0.27602 -0.310515,0.27602 z m 0,0"
id="path7255" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 95.326406,200.90705 c 0,0.0776 0.06903,0.12508 0.138033,0.12508 0.05607,0 0.09919,-0.0302 0.133694,-0.0906 l 0.638307,-1.21624 c 0.0217,-0.0431 0.03881,-0.0906 0.03881,-0.12938 0,-0.0776 -0.04744,-0.12076 -0.125069,-0.12076 h -0.866907 c -0.06469,0 -0.120756,0.0517 -0.120756,0.11645 0,0.069 0.05606,0.12076 0.120756,0.12076 h 0.668496 l -0.599493,1.11272 c -0.01296,0.0259 -0.02593,0.0604 -0.02593,0.0819 z m 0,0"
id="path7251" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 105.8677,201.04075 c 0.3407,0 0.59086,-0.17252 0.59086,-0.44854 v -0.004 c 0,-0.18114 -0.10781,-0.29328 -0.28035,-0.37091 0.13372,-0.069 0.2286,-0.17251 0.2286,-0.34503 v -0.004 c 0,-0.23721 -0.2286,-0.41835 -0.53911,-0.41835 -0.30621,0 -0.53481,0.18114 -0.53481,0.41835 v 0.004 c 0,0.17252 0.0949,0.27603 0.22429,0.34503 -0.17253,0.0733 -0.27604,0.18977 -0.27604,0.37522 v 0.004 c 0,0.2674 0.25017,0.44423 0.58656,0.44423 z m 0,-0.91433 c -0.15957,0 -0.27602,-0.0949 -0.27602,-0.22858 v -0.004 c 0,-0.11645 0.11213,-0.21565 0.27602,-0.21565 0.16819,0 0.27601,0.0992 0.27601,0.21565 v 0.004 c 0,0.1337 -0.11644,0.22858 -0.27601,0.22858 z m 0,0.68575 c -0.2027,0 -0.31914,-0.10351 -0.31914,-0.22859 v -0.004 c 0,-0.14232 0.138,-0.2372 0.31914,-0.2372 0.18544,0 0.32776,0.0949 0.32776,0.2372 v 0.004 c 0,0.12508 -0.12507,0.22859 -0.32776,0.22859 z m 0,0"
id="path7247" />
<path
id="path36677"
d="m 48.587522,242.56724 c 0,-0.35581 -0.291121,-0.64693 -0.646933,-0.64693 h -6.281684 c -0.355812,0 -0.646933,0.29112 -0.646933,0.64693 v 6.28278 c 0,0.35581 0.291121,0.64693 0.646933,0.64693 h 6.281684 c 0.355812,0 0.646933,-0.29112 0.646933,-0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
id="path36679"
d="m 58.641689,242.56724 c 0,-0.35581 -0.291121,-0.64693 -0.646933,-0.64693 h -6.281711 c -0.355785,0 -0.646906,0.29112 -0.646906,0.64693 v 6.28278 c 0,0.35581 0.291121,0.64693 0.646906,0.64693 h 6.281711 c 0.355812,0 0.646933,-0.29112 0.646933,-0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
id="path36681"
d="m 68.960439,242.56724 c 0,-0.35581 -0.29001,-0.64693 -0.645848,-0.64693 h -6.28277 c -0.355811,0 -0.646932,0.29112 -0.646932,0.64693 v 6.28278 c 0,0.35581 0.291121,0.64693 0.646932,0.64693 h 6.28277 c 0.355838,0 0.645848,-0.29112 0.645848,-0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
id="path36683"
d="m 79.014605,242.56724 c 0,-0.35581 -0.291121,-0.64693 -0.646906,-0.64693 h -6.281711 c -0.355812,0 -0.646933,0.29112 -0.646933,0.64693 v 6.28278 c 0,0.35581 0.291121,0.64693 0.646933,0.64693 h 6.281711 c 0.355785,0 0.646906,-0.29112 0.646906,-0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
id="path36685"
d="m 89.333355,242.56724 c 0,-0.35581 -0.291121,-0.64693 -0.646959,-0.64693 h -6.281684 c -0.355812,0 -0.646907,0.29112 -0.646907,0.64693 v 6.28278 c 0,0.35581 0.291095,0.64693 0.646907,0.64693 h 6.281684 c 0.355838,0 0.646959,-0.29112 0.646959,-0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
id="path36687"
d="m 99.387522,242.56724 c 0,-0.35581 -0.291121,-0.64693 -0.646906,-0.64693 h -6.28277 c -0.355838,0 -0.645874,0.29112 -0.645874,0.64693 v 6.28278 c 0,0.35581 0.290036,0.64693 0.645874,0.64693 h 6.28277 c 0.355785,0 0.646906,-0.29112 0.646906,-0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
id="path36689"
d="m 109.70627,242.56724 c 0,-0.35581 -0.29112,-0.64693 -0.64693,-0.64693 h -6.28171 c -0.35579,0 -0.64691,0.29112 -0.64691,0.64693 v 6.28278 c 0,0.35581 0.29112,0.64693 0.64691,0.64693 h 6.28171 c 0.35581,0 0.64693,-0.29112 0.64693,-0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 73.542731,175.47218 c 0.185447,0 0.336418,-0.0647 0.444235,-0.13802 0.05175,-0.0302 0.07763,-0.0776 0.07763,-0.13801 v -0.3364 c 0,-0.0604 -0.04744,-0.11214 -0.11213,-0.11214 H 73.60311 c -0.05175,0 -0.09919,0.0431 -0.09919,0.0992 0,0.0517 0.04744,0.0949 0.09919,0.0949 h 0.250164 v 0.2329 c -0.07766,0.0604 -0.185473,0.0949 -0.306229,0.0949 -0.25445,0 -0.426985,-0.18977 -0.426985,-0.44854 0,-0.24152 0.176848,-0.44423 0.409734,-0.44423 0.133694,0 0.224261,0.0388 0.30189,0.0992 0.0217,0.0129 0.04315,0.0259 0.06903,0.0259 0.06038,0 0.112131,-0.0517 0.112131,-0.11213 0,-0.0431 -0.02593,-0.0733 -0.04744,-0.0906 -0.11213,-0.082 -0.241538,-0.12507 -0.426985,-0.12507 -0.379518,0 -0.646932,0.29758 -0.646932,0.64693 v 0.004 c 0,0.36659 0.254476,0.64693 0.651245,0.64693 z m 0,0"
id="path6783" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 74.302535,175.35573 c 0,0.0604 0.04744,0.10351 0.103505,0.10351 0.04744,0 0.08625,-0.0259 0.103505,-0.069 l 0.103531,-0.24152 h 0.612405 l 0.103532,0.23289 c 0.0172,0.0474 0.05175,0.0776 0.107817,0.0776 0.05607,0 0.103505,-0.0474 0.103505,-0.10351 0,-0.0172 -0.0042,-0.0345 -0.01296,-0.0474 l -0.465799,-1.04371 c -0.02593,-0.0517 -0.069,-0.0863 -0.133694,-0.0863 h -0.0087 c -0.06469,0 -0.107817,0.0345 -0.133693,0.0863 l -0.465799,1.04371 c -0.0087,0.0172 -0.0172,0.0345 -0.0172,0.0474 z m 0.396796,-0.40541 0.219948,-0.50461 0.219948,0.50461 z m 0,0"
id="path6779" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 75.982136,175.35142 c 0,0.0604 0.05175,0.10782 0.112131,0.10782 0.06038,0 0.11213,-0.0474 0.11213,-0.10782 v -0.95315 H 76.5126 c 0.05609,0 0.09922,-0.0474 0.09922,-0.0992 0,-0.0561 -0.04313,-0.10351 -0.09922,-0.10351 h -0.836692 c -0.05606,0 -0.09919,0.0474 -0.09919,0.10351 0,0.0517 0.04313,0.0992 0.09919,0.0992 h 0.306228 z m 0,0"
id="path6775" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 76.988717,175.45061 h 0.741813 c 0.05178,0 0.09922,-0.0431 0.09922,-0.0992 0,-0.0517 -0.04744,-0.0992 -0.09922,-0.0992 h -0.629656 v -0.3364 h 0.539089 c 0.05175,0 0.09919,-0.0431 0.09919,-0.0949 0,-0.0561 -0.04744,-0.10351 -0.09919,-0.10351 h -0.539089 v -0.32347 h 0.62103 c 0.05178,0 0.09491,-0.0431 0.09491,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.09491,-0.0992 h -0.733187 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11214 v 1.03077 c 0,0.0647 0.05175,0.11214 0.11213,0.11214 z m 0,0"
id="path6771" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 82.637069,175.35142 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.112157,-0.0474 0.112157,-0.10782 v -0.34072 h 0.276013 l 0.306203,0.39247 c 0.02593,0.0345 0.05606,0.0561 0.107844,0.0561 0.05175,0 0.103505,-0.0388 0.103505,-0.10351 0,-0.0345 -0.01297,-0.0561 -0.0345,-0.0819 l -0.241538,-0.3019 c 0.168222,-0.0561 0.284665,-0.17683 0.284665,-0.37522 v -0.004 c 0,-0.11213 -0.0345,-0.2027 -0.103505,-0.27171 -0.07766,-0.0776 -0.202723,-0.12507 -0.362294,-0.12507 h -0.448548 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11213 z m 0.224287,-0.5348 v -0.42266 h 0.31914 c 0.163883,0 0.258763,0.0733 0.258763,0.21133 0,0.12939 -0.09919,0.21133 -0.258763,0.21133 z m 0,0"
id="path6767" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 84.575168,175.47218 c 0.38817,0 0.659871,-0.29759 0.659871,-0.65125 0,-0.35365 -0.267388,-0.64693 -0.655558,-0.64693 -0.383831,0 -0.655558,0.29328 -0.655558,0.64693 v 0.004 c 0,0.35366 0.267414,0.64693 0.651245,0.64693 z m 0.0042,-0.20271 c -0.250137,0 -0.426984,-0.2027 -0.426984,-0.44854 0,-0.24583 0.176847,-0.44422 0.422672,-0.44422 0.250137,0 0.426984,0.2027 0.426984,0.44422 v 0.004 c 0,0.24584 -0.172534,0.44423 -0.422672,0.44423 z m 0,0"
id="path6763" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 85.80601,175.37729 c 0.0217,0.0561 0.06038,0.0906 0.11213,0.0906 h 0.0217 c 0.05607,0 0.09488,-0.0345 0.116443,-0.0906 l 0.280326,-0.81944 0.280353,0.81944 c 0.0172,0.0561 0.05607,0.0906 0.11213,0.0906 h 0.0217 c 0.05175,0 0.09488,-0.0345 0.116443,-0.0906 l 0.370919,-1.0394 c 0.0042,-0.0129 0.0087,-0.0302 0.0087,-0.0474 0,-0.0561 -0.05175,-0.10351 -0.107818,-0.10351 -0.05609,0 -0.09059,0.0345 -0.107844,0.0776 l -0.288952,0.86689 -0.284638,-0.86258 c -0.0172,-0.0517 -0.05607,-0.0863 -0.112157,-0.0863 h -0.01296 c -0.05607,0 -0.09488,0.0345 -0.11213,0.0863 l -0.284639,0.86258 -0.288978,-0.86689 c -0.01296,-0.0431 -0.05607,-0.0776 -0.107818,-0.0776 -0.06038,0 -0.116443,0.0474 -0.116443,0.10782 0,0.0129 0.0042,0.0302 0.01297,0.0431 z m 0,0"
id="path6759" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 88.177999,175.35142 c 0,0.0604 0.05178,0.10782 0.107845,0.10782 0.06469,0 0.11213,-0.0474 0.11213,-0.10782 v -1.06528 c 0,-0.0604 -0.04744,-0.10783 -0.11213,-0.10783 -0.0345,0 -0.06469,0.009 -0.107845,0.0216 l -0.189759,0.0604 c -0.04744,0.0129 -0.07763,0.0474 -0.07763,0.0949 0,0.0474 0.04744,0.0906 0.09919,0.0906 0.0087,0 0.02593,0 0.03881,-0.004 l 0.129381,-0.0388 z m 0,0"
id="path6751" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 92.614348,175.35142 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.112157,-0.0474 0.112157,-0.10782 v -0.34072 h 0.276013 l 0.306202,0.39247 c 0.02593,0.0345 0.05607,0.0561 0.107845,0.0561 0.05175,0 0.103505,-0.0388 0.103505,-0.10351 0,-0.0345 -0.01296,-0.0561 -0.0345,-0.0819 l -0.241538,-0.3019 c 0.168222,-0.0561 0.284665,-0.17683 0.284665,-0.37522 v -0.004 c 0,-0.11213 -0.0345,-0.2027 -0.103505,-0.27171 -0.07765,-0.0776 -0.202724,-0.12507 -0.362294,-0.12507 H 92.72648 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11213 z m 0.224287,-0.5348 v -0.42266 h 0.31914 c 0.163883,0 0.258763,0.0733 0.258763,0.21133 0,0.12939 -0.09919,0.21133 -0.258763,0.21133 z m 0,0"
id="path6747" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 94.552447,175.47218 c 0.38817,0 0.659871,-0.29759 0.659871,-0.65125 0,-0.35365 -0.267388,-0.64693 -0.655558,-0.64693 -0.383831,0 -0.655559,0.29328 -0.655559,0.64693 v 0.004 c 0,0.35366 0.267415,0.64693 0.651246,0.64693 z m 0.0042,-0.20271 c -0.250137,0 -0.426984,-0.2027 -0.426984,-0.44854 0,-0.24583 0.176847,-0.44422 0.422672,-0.44422 0.250137,0 0.426984,0.2027 0.426984,0.44422 v 0.004 c 0,0.24584 -0.172535,0.44423 -0.422672,0.44423 z m 0,0"
id="path6743" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 95.783315,175.37729 c 0.0217,0.0561 0.06038,0.0906 0.11213,0.0906 h 0.0217 c 0.05607,0 0.09488,-0.0345 0.116443,-0.0906 l 0.280326,-0.81944 0.280353,0.81944 c 0.0172,0.0561 0.05607,0.0906 0.11213,0.0906 h 0.0217 c 0.05175,0 0.09488,-0.0345 0.116443,-0.0906 l 0.37092,-1.0394 c 0.0042,-0.0129 0.0087,-0.0302 0.0087,-0.0474 0,-0.0561 -0.05175,-0.10351 -0.107818,-0.10351 -0.05609,0 -0.09059,0.0345 -0.107844,0.0776 l -0.288951,0.86689 -0.284639,-0.86258 c -0.0172,-0.0517 -0.05607,-0.0863 -0.112157,-0.0863 h -0.01296 c -0.05607,0 -0.09488,0.0345 -0.11213,0.0863 l -0.284639,0.86258 -0.288978,-0.86689 c -0.01296,-0.0431 -0.05606,-0.0776 -0.107817,-0.0776 -0.06038,0 -0.116444,0.0474 -0.116444,0.10782 0,0.0129 0.0042,0.0302 0.01297,0.0431 z m 0,0"
id="path6739" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 97.913793,175.3471 c 0,0.0647 0.05175,0.10351 0.116443,0.10351 h 0.711623 c 0.05607,0 0.09919,-0.0431 0.09919,-0.0949 0,-0.0561 -0.04313,-0.0992 -0.09919,-0.0992 H 98.23296 l 0.258762,-0.21564 c 0.224261,-0.18114 0.327766,-0.28896 0.327766,-0.48736 0,-0.22427 -0.168195,-0.37522 -0.41402,-0.37522 -0.198384,0 -0.314854,0.0733 -0.418359,0.20271 -0.01297,0.0172 -0.0217,0.0431 -0.0217,0.0647 0,0.0561 0.04313,0.10351 0.09919,0.10351 0.0345,0 0.06038,-0.0172 0.07763,-0.0345 0.07765,-0.0949 0.146659,-0.14233 0.245851,-0.14233 0.116443,0 0.202697,0.0733 0.202697,0.19839 0,0.11214 -0.06038,0.19408 -0.232886,0.33641 l -0.38817,0.32778 c -0.03881,0.0345 -0.05606,0.069 -0.05606,0.11213 z m 0,0"
id="path6731" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 102.78183,175.35142 c 0,0.0604 0.0517,0.10782 0.11214,0.10782 0.0604,0 0.11215,-0.0474 0.11215,-0.10782 v -0.34072 h 0.27602 l 0.3062,0.39247 c 0.0259,0.0345 0.0561,0.0561 0.10784,0.0561 0.0517,0 0.10351,-0.0388 0.10351,-0.10351 0,-0.0345 -0.013,-0.0561 -0.0345,-0.0819 l -0.24154,-0.3019 c 0.16822,-0.0561 0.28466,-0.17683 0.28466,-0.37522 v -0.004 c 0,-0.11213 -0.0345,-0.2027 -0.1035,-0.27171 -0.0776,-0.0776 -0.20273,-0.12507 -0.3623,-0.12507 h -0.44854 c -0.0604,0 -0.11213,0.0474 -0.11213,0.11213 z m 0.22429,-0.5348 v -0.42266 h 0.31914 c 0.16389,0 0.25876,0.0733 0.25876,0.21133 0,0.12939 -0.0992,0.21133 -0.25876,0.21133 z m 0,0"
id="path6727" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 104.71993,175.47218 c 0.38817,0 0.65987,-0.29759 0.65987,-0.65125 0,-0.35365 -0.26738,-0.64693 -0.65555,-0.64693 -0.38383,0 -0.65556,0.29328 -0.65556,0.64693 v 0.004 c 0,0.35366 0.26741,0.64693 0.65124,0.64693 z m 0.004,-0.20271 c -0.25013,0 -0.42698,-0.2027 -0.42698,-0.44854 0,-0.24583 0.17685,-0.44422 0.42267,-0.44422 0.25014,0 0.42699,0.2027 0.42699,0.44422 v 0.004 c 0,0.24584 -0.17254,0.44423 -0.42268,0.44423 z m 0,0"
id="path6723" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 105.9508,175.37729 c 0.0217,0.0561 0.0604,0.0906 0.11213,0.0906 h 0.0217 c 0.0561,0 0.0949,-0.0345 0.11645,-0.0906 l 0.28032,-0.81944 0.28035,0.81944 c 0.0172,0.0561 0.0561,0.0906 0.11213,0.0906 h 0.0217 c 0.0517,0 0.0949,-0.0345 0.11645,-0.0906 l 0.37092,-1.0394 c 0.004,-0.0129 0.009,-0.0302 0.009,-0.0474 0,-0.0561 -0.0517,-0.10351 -0.10782,-0.10351 -0.0561,0 -0.0906,0.0345 -0.10785,0.0776 l -0.28892,0.86689 -0.28464,-0.86258 c -0.0172,-0.0517 -0.0561,-0.0863 -0.11216,-0.0863 h -0.013 c -0.0561,0 -0.0949,0.0345 -0.11213,0.0863 l -0.28464,0.86258 -0.28898,-0.86689 c -0.013,-0.0431 -0.0561,-0.0776 -0.10781,-0.0776 -0.0604,0 -0.11645,0.0474 -0.11645,0.10782 0,0.0129 0.004,0.0302 0.013,0.0431 z m 0,0"
id="path6719" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 108.56002,175.47218 c 0.26307,0 0.43989,-0.16821 0.43989,-0.39679 v -0.004 c 0,-0.23289 -0.17682,-0.32778 -0.36658,-0.35365 l 0.29327,-0.30622 c 0.0388,-0.0388 0.0647,-0.069 0.0647,-0.12076 0,-0.0561 -0.0474,-0.0949 -0.11213,-0.0949 h -0.64262 c -0.0517,0 -0.0949,0.0431 -0.0949,0.0949 0,0.0517 0.0431,0.0949 0.0949,0.0949 h 0.45717 l -0.29326,0.31484 c -0.0345,0.0345 -0.0475,0.0604 -0.0475,0.0906 0,0.0517 0.0431,0.0949 0.0949,0.0949 h 0.0474 c 0.1725,0 0.28895,0.069 0.28895,0.19408 v 0.004 c 0,0.11214 -0.0949,0.18977 -0.21995,0.18977 -0.11644,0 -0.20701,-0.0431 -0.28467,-0.12076 -0.0172,-0.0172 -0.0431,-0.0302 -0.0733,-0.0302 -0.0561,0 -0.10781,0.0517 -0.10781,0.10782 0,0.0302 0.0172,0.0604 0.0388,0.0776 0.0992,0.0992 0.24153,0.16389 0.42267,0.16389 z m 0,0"
id="path6711" />
<path
id="path37367"
d="m 79.014605,187.26933 c 0,-0.35581 -0.291121,-0.64693 -0.646906,-0.64693 h -6.281711 c -0.355812,0 -0.646933,0.29112 -0.646933,0.64693 v 6.28278 c 0,0.35581 0.291121,0.64693 0.646933,0.64693 h 6.281711 c 0.355785,0 0.646906,-0.29112 0.646906,-0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
id="path37369"
d="m 89.333355,187.26933 c 0,-0.35581 -0.291121,-0.64693 -0.646959,-0.64693 h -6.281684 c -0.355812,0 -0.646907,0.29112 -0.646907,0.64693 v 6.28278 c 0,0.35581 0.291095,0.64693 0.646907,0.64693 h 6.281684 c 0.355838,0 0.646959,-0.29112 0.646959,-0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
id="path37371"
d="m 99.387522,187.26933 c 0,-0.35581 -0.291121,-0.64693 -0.646906,-0.64693 h -6.28277 c -0.355838,0 -0.645874,0.29112 -0.645874,0.64693 v 6.28278 c 0,0.35581 0.290036,0.64693 0.645874,0.64693 h 6.28277 c 0.355785,0 0.646906,-0.29112 0.646906,-0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
id="path37373"
d="m 109.70627,187.26933 c 0,-0.35581 -0.29112,-0.64693 -0.64693,-0.64693 h -6.28171 c -0.35579,0 -0.64691,0.29112 -0.64691,0.64693 v 6.28278 c 0,0.35581 0.29112,0.64693 0.64691,0.64693 h 6.28171 c 0.35581,0 0.64693,-0.29112 0.64693,-0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
style="fill:#e6e6e6;fill-opacity:1;stroke-width:0.26458332"
d="M 28.948923,164.29485 H 111.1343 v 94.88068 H 28.948923 Z"
id="rect103" />
</g>
<g
id="text977"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
aria-label="bId°°">
<path
id="path978"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 13.898824,97.809389 q 0,-0.44235 -0.14056,-0.667659 -0.14056,-0.225309 -0.415478,-0.225309 -0.276986,0 -0.419613,0.227376 -0.142627,0.225309 -0.142627,0.665592 0,0.438216 0.142627,0.665593 0.142627,0.227376 0.419613,0.227376 0.274918,0 0.415478,-0.225309 0.14056,-0.225309 0.14056,-0.66766 z m -1.118278,-0.86403 q 0.09095,-0.169498 0.250114,-0.260449 0.16123,-0.09095 0.37207,-0.09095 0.417546,0 0.657324,0.322461 0.239779,0.320393 0.239779,0.8847 0,0.572575 -0.241846,0.89917 -0.239778,0.324528 -0.659391,0.324528 -0.206706,0 -0.365869,-0.08888 -0.157096,-0.09095 -0.252181,-0.262516 v 0.291455 h -0.380338 v -3.216341 h 0.380338 z" />
<path
id="path980"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 14.963358,95.878758 h 1.713591 v 0.3514 H 16.02996 v 2.383317 h 0.646989 v 0.351399 h -1.713591 v -0.351399 h 0.646989 v -2.383317 h -0.646989 z" />
<path
id="path982"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 18.868029,96.945359 v -1.196826 h 0.380339 v 3.216341 h -0.380339 v -0.291455 q -0.09508,0.171566 -0.254248,0.262516 -0.157096,0.08888 -0.363802,0.08888 -0.419612,0 -0.661458,-0.324528 -0.239779,-0.326595 -0.239779,-0.89917 0,-0.564307 0.241846,-0.8847 0.241846,-0.322461 0.659391,-0.322461 0.208773,0 0.367936,0.09095 0.159164,0.08888 0.250114,0.260449 z m -1.118278,0.86403 q 0,0.442351 0.14056,0.66766 0.14056,0.225309 0.415479,0.225309 0.274918,0 0.417545,-0.227376 0.144694,-0.227377 0.144694,-0.665593 0,-0.440283 -0.144694,-0.665592 -0.142627,-0.227376 -0.417545,-0.227376 -0.274919,0 -0.415479,0.225309 -0.14056,0.225309 -0.14056,0.667659 z" />
<path
id="path984"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 20.914416,95.822947 q 0.134358,0 0.254248,0.05168 0.121956,0.04961 0.212907,0.144694 0.09302,0.09302 0.14056,0.21084 0.04961,0.117822 0.04961,0.254248 0,0.272851 -0.192236,0.46302 -0.192237,0.188103 -0.469222,0.188103 -0.279053,0 -0.465088,-0.186035 -0.186035,-0.186036 -0.186035,-0.465088 0,-0.276986 0.190169,-0.469222 0.190169,-0.192237 0.465088,-0.192237 z m 0,0.266651 q -0.163298,0 -0.279053,0.115755 -0.113688,0.113688 -0.113688,0.279053 0,0.165364 0.111621,0.276985 0.113688,0.111621 0.276986,0.111621 0.165364,0 0.281119,-0.113688 0.117823,-0.113688 0.117823,-0.274918 0,-0.163298 -0.115756,-0.279053 -0.115755,-0.115755 -0.279052,-0.115755 z" />
<path
id="path986"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 23.46103,95.822947 q 0.134359,0 0.254248,0.05168 0.121957,0.04961 0.212907,0.144694 0.09302,0.09302 0.14056,0.21084 0.04961,0.117822 0.04961,0.254248 0,0.272851 -0.192237,0.46302 -0.192236,0.188103 -0.469222,0.188103 -0.279052,0 -0.465088,-0.186035 -0.186035,-0.186036 -0.186035,-0.465088 0,-0.276986 0.19017,-0.469222 0.190169,-0.192237 0.465087,-0.192237 z m 0,0.266651 q -0.163297,0 -0.279052,0.115755 -0.113688,0.113688 -0.113688,0.279053 0,0.165364 0.111621,0.276985 0.113688,0.111621 0.276985,0.111621 0.165365,0 0.28112,-0.113688 0.117822,-0.113688 0.117822,-0.274918 0,-0.163298 -0.115755,-0.279053 -0.115755,-0.115755 -0.279053,-0.115755 z" />
</g>
<g
id="text977-5"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
aria-label="OUAIve">
<g
id="text974"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
aria-label="RAdAR">
<path
id="path976"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 12.90294,4.3404661 q 0.161231,0.041341 0.274919,0.1570963 0.113688,0.1136882 0.283187,0.4568197 l 0.419612,0.8433593 H 13.432107 L 13.064171,5.0184609 Q 12.905007,4.6856646 12.77685,4.59058 12.650759,4.4934283 12.446121,4.4934283 H 12.047179 V 5.7977414 H 11.627566 V 2.711625 h 0.859896 q 0.508496,0 0.77928,0.2294434 0.270785,0.2294433 0.270785,0.6635253 0,0.3059245 -0.167432,0.5002279 -0.165364,0.1922363 -0.467155,0.2356445 z M 12.047179,3.0547565 v 1.0955403 h 0.456819 q 0.299724,0 0.446485,-0.1343587 0.146761,-0.1343587 0.146761,-0.4113444 0,-0.2666503 -0.157097,-0.4072102 -0.155029,-0.142627 -0.452685,-0.142627 z" />
<path
id="path979"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 15.151899,3.0795612 -0.440284,1.5792317 h 0.880567 z M 14.899718,2.711625 h 0.506429 l 0.944645,3.0861164 H 15.918777 L 15.6914,4.9936562 h -1.08107 l -0.223243,0.8040852 h -0.432015 z" />
<path
id="path981"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="M 18.198741,3.7782265 V 2.5814004 h 0.380338 v 3.216341 h -0.380338 v -0.291455 q -0.09508,0.1715657 -0.254248,0.2625162 -0.157097,0.088883 -0.363802,0.088883 -0.419613,0 -0.661459,-0.324528 -0.239778,-0.326595 -0.239778,-0.8991699 0,-0.5643066 0.241845,-0.8847005 0.241846,-0.3224609 0.659392,-0.3224609 0.208772,0 0.367936,0.09095 0.159163,0.088883 0.250114,0.2604502 z m -1.118278,0.8640299 q 0,0.4423503 0.14056,0.6676595 0.14056,0.2253093 0.415478,0.2253093 0.274919,0 0.417546,-0.2273763 0.144694,-0.2273763 0.144694,-0.6655925 0,-0.4402831 -0.144694,-0.6655924 -0.142627,-0.2273763 -0.417546,-0.2273763 -0.274918,0 -0.415478,0.2253093 -0.14056,0.2253092 -0.14056,0.6676594 z" />
<path
id="path983"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="M 20.245127,3.0795612 19.804844,4.6587929 H 20.68541 Z M 19.992946,2.711625 h 0.506429 L 21.44402,5.7977414 H 21.012005 L 20.784629,4.9936562 h -1.081071 l -0.223242,0.8040852 h -0.432015 z" />
<path
id="path985"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 23.089398,4.3404661 q 0.16123,0.041341 0.274919,0.1570963 0.113688,0.1136882 0.283186,0.4568197 l 0.419613,0.8433593 H 23.618565 L 23.250628,5.0184609 Q 23.091465,4.6856646 22.963307,4.59058 22.837217,4.4934283 22.632578,4.4934283 H 22.233636 V 5.7977414 H 21.814024 V 2.711625 h 0.859895 q 0.508497,0 0.779281,0.2294434 0.270785,0.2294433 0.270785,0.6635253 0,0.3059245 -0.167432,0.5002279 -0.165365,0.1922363 -0.467155,0.2356445 z M 22.233636,3.0547565 v 1.0955403 h 0.45682 q 0.299723,0 0.446484,-0.1343587 0.146761,-0.1343587 0.146761,-0.4113444 0,-0.2666503 -0.157096,-0.4072102 -0.155029,-0.142627 -0.452686,-0.142627 z" />
</g>
</g>
<g
id="text4860"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:Sudo;-inkscape-font-specification:'Sudo, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<g
id="flowRoot1009"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:125%;font-family:Sudo;-inkscape-font-specification:'Sudo, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<text
id="text1002"
y="84.527206"
x="2.3208861"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
y="84.527206"
x="2.3208861"
id="tspan1000">TRIG</tspan></text>
<g
transform="translate(28.416079,21.948245)"
id="g1032">
<rect
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000400;stroke-width:0.72085714;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect998-7"
width="6.9770179"
height="10.377027"
x="-15.953481"
y="59.837032"
ry="1.1370114" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
x="-15.054995"
y="62.553104"
id="text1002-9"><tspan
id="tspan1000-1"
x="-15.054995"
y="62.553104"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">POS</tspan></text>
</g>
<rect
ry="1.1105456"
y="81.901466"
x="22.350098"
height="10.135485"
width="11.984631"
id="rect998-7-7"
style="opacity:1;fill:#cd1f00;fill-opacity:1;fill-rule:evenodd;stroke:#cd1f00;stroke-width:0.93371081;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
transform="scale(1.0122861,0.98786301)"
id="text1002-9-9"
y="85.593163"
x="25.432156"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.79039741px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13079987;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.79039741px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13079987;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
y="85.593163"
x="25.432156"
id="tspan1000-1-5">OUT</tspan></text>
<text
id="text1002-1"
y="94.338516"
x="2.2843671"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
y="94.338516"
x="2.2843671"
id="tspan1000-9">GATE</tspan></text>
<text
transform="scale(1.0122861,0.98786302)"
id="text1002-9-9-2"
y="87.993423"
x="23.964373"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.79039741px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13079987;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.79039741px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13079987;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
y="87.993423"
x="23.964373"
id="tspan1000-1-5-5">L</tspan></text>
<text
transform="scale(1.0122861,0.98786302)"
id="text1002-9-9-2-7"
y="87.993416"
x="30.250475"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.79039741px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13079987;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.79039741px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13079987;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
y="87.993416"
x="30.250475"
id="tspan1000-1-5-5-5">R</tspan></text>
</svg>

+ 0
- 728
plugins/community/repos/Bidoo/res/RADARtemp.svg View File

@@ -1,728 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg12553"
version="1.1"
viewBox="0 0 35.71875 100.54166"
height="380"
width="135"
sodipodi:docname="RADARtemp.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview118"
showgrid="true"
inkscape:zoom="2.2274511"
inkscape:cx="-33.571336"
inkscape:cy="268.57976"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="text977-5"
inkscape:snap-to-guides="false"
inkscape:snap-grids="false">
<inkscape:grid
type="xygrid"
id="grid929" />
</sodipodi:namedview>
<defs
id="defs12547">
<linearGradient
id="linearGradient4708"
osb:paint="solid">
<stop
style="stop-color:#ececec;stop-opacity:1;"
offset="0"
id="stop4706" />
</linearGradient>
<filter
style="color-interpolation-filters:sRGB"
inkscape:label="Opacity"
id="filter4696">
<feColorMatrix
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 "
result="colormatrix"
id="feColorMatrix4692" />
<feBlend
in2="BackgroundImage"
mode="multiply"
result="fbSourceGraphic"
id="feBlend4694" />
<feColorMatrix
result="fbSourceGraphicAlpha"
in="fbSourceGraphic"
values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
id="feColorMatrix4762" />
<feColorMatrix
id="feColorMatrix4764"
values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 5 -1 "
result="colormatrix"
in="fbSourceGraphic" />
<feComposite
in2="colormatrix"
id="feComposite4766"
operator="arithmetic"
k2="0.3"
result="composite"
k1="0"
k3="0"
k4="0" />
</filter>
</defs>
<metadata
id="metadata12550">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="matrix(0.29968605,0,0,1.0012215,-7.996127,-161.56849)"
id="layer1">
<path
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.32258889"
d="M 26.616839,161.37987 H 145.85344 v 100.3961 H 26.616839 Z m 0,0"
id="path33453"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 38.533355,242.56724 c 0,-0.35581 -0.291121,-0.64693 -0.646932,-0.64693 h -6.281685 c -0.355838,0 -0.646933,0.29112 -0.646933,0.64693 v 6.28278 c 0,0.35581 0.291095,0.64693 0.646933,0.64693 h 6.281685 c 0.355811,0 0.646932,-0.29112 0.646932,-0.64693 z m 0,0"
id="path33787"
inkscape:connector-curvature="0" />
<path
id="path7611"
d="m 66.055605,168.8251 c 0.500274,0 0.84963,-0.25877 0.84963,-0.72025 v -0.009 c 0,-0.40109 -0.263102,-0.5693 -0.733187,-0.69437 -0.401108,-0.10351 -0.500301,-0.15095 -0.500301,-0.3019 v -0.009 c 0,-0.11213 0.09919,-0.20271 0.297577,-0.20271 0.159597,0 0.319167,0.0561 0.487363,0.15527 0.03881,0.0259 0.07763,0.0388 0.129381,0.0388 0.129408,0 0.237225,-0.10351 0.237225,-0.23721 0,-0.0992 -0.05606,-0.1682 -0.11213,-0.2027 -0.211349,-0.12939 -0.452861,-0.20271 -0.737526,-0.20271 -0.474398,0 -0.810816,0.27602 -0.810816,0.69869 v 0.004 c 0,0.46147 0.301916,0.59086 0.767689,0.71162 0.38817,0.0992 0.470111,0.16389 0.470111,0.29327 v 0.009 c 0,0.1337 -0.129381,0.21565 -0.336391,0.21565 -0.224287,0 -0.418359,-0.0776 -0.590867,-0.20702 -0.0345,-0.0259 -0.08194,-0.0474 -0.146632,-0.0474 -0.133721,0 -0.241538,0.10351 -0.241538,0.23721 0,0.0776 0.04313,0.15095 0.09919,0.18976 0.258789,0.18546 0.564991,0.28034 0.87122,0.28034 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7607"
d="m 67.640935,168.7906 h 1.298178 c 0.129382,0 0.228574,-0.0992 0.228574,-0.22427 0,-0.12507 -0.09919,-0.22858 -0.228574,-0.22858 h -1.048041 v -0.48736 h 0.884132 c 0.125095,0 0.2286,-0.0992 0.2286,-0.22427 0,-0.12938 -0.103505,-0.22858 -0.2286,-0.22858 h -0.884132 v -0.4701 h 1.035103 c 0.125069,0 0.228574,-0.0992 0.228574,-0.22858 0,-0.12508 -0.103505,-0.22859 -0.228574,-0.22859 h -1.28524 c -0.142319,0 -0.254476,0.11645 -0.254476,0.25878 v 1.80709 c 0,0.14232 0.112157,0.25446 0.254476,0.25446 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7603"
d="m 70.70817,168.82941 c 0.258763,0 0.491676,-0.0733 0.685748,-0.19839 l 0.129381,0.11214 c 0.03881,0.0388 0.09919,0.069 0.168195,0.069 0.129408,0 0.237226,-0.10782 0.237226,-0.24152 0,-0.082 -0.03881,-0.14233 -0.09057,-0.18977 l -0.103532,-0.0819 c 0.129408,-0.19408 0.207037,-0.42266 0.207037,-0.6685 v -0.004 c 0,-0.65986 -0.513239,-1.19466 -1.229175,-1.19466 -0.715936,0 -1.233487,0.53911 -1.233487,1.19898 v 0.009 c 0,0.65987 0.513238,1.19035 1.229174,1.19035 z m 0.069,-0.7375 0.241511,0.20702 c -0.09057,0.0431 -0.194071,0.0604 -0.306202,0.0604 -0.409734,0 -0.702998,-0.33209 -0.702998,-0.72887 v -0.004 c 0,-0.39679 0.284639,-0.72457 0.698685,-0.72457 0.409734,0 0.698686,0.3321 0.698686,0.72888 v 0.009 c 0,0.11645 -0.0217,0.22427 -0.06038,0.31484 l -0.25445,-0.22858 c -0.05609,-0.0431 -0.09922,-0.069 -0.168222,-0.069 -0.133694,0 -0.241512,0.11213 -0.241512,0.24152 0,0.0863 0.03881,0.14664 0.09488,0.19408 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7599"
d="m 72.627379,168.00566 h 0.57359 c 0.13372,0 0.245851,-0.10783 0.245851,-0.24152 0,-0.1337 -0.112131,-0.24153 -0.245851,-0.24153 h -0.57359 c -0.133721,0 -0.241539,0.10783 -0.241539,0.24153 0,0.13369 0.107818,0.24152 0.241539,0.24152 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7595"
d="m 74.553439,168.82941 c 0.517552,0 0.832406,-0.31915 0.832406,-0.75906 v -0.004 c 0,-0.43129 -0.306229,-0.59518 -0.621056,-0.65124 l 0.452834,-0.43129 c 0.09491,-0.0906 0.155284,-0.15958 0.155284,-0.28465 0,-0.14233 -0.112157,-0.22858 -0.258789,-0.22858 h -1.129956 c -0.120782,0 -0.219975,0.0992 -0.219975,0.21995 0,0.12076 0.09919,0.21996 0.219975,0.21996 h 0.711623 l -0.452861,0.45285 c -0.07763,0.0776 -0.107817,0.13801 -0.107817,0.20702 0,0.12076 0.09919,0.21996 0.219948,0.21996 h 0.07763 c 0.284665,0 0.45286,0.10782 0.45286,0.29327 v 0.009 c 0,0.17252 -0.133694,0.28034 -0.327792,0.28034 -0.181134,0 -0.31914,-0.0604 -0.452834,-0.17252 -0.03881,-0.0302 -0.09057,-0.0604 -0.15957,-0.0604 -0.133721,0 -0.245851,0.11214 -0.245851,0.24584 0,0.069 0.03881,0.14232 0.08625,0.18114 0.185473,0.15957 0.43561,0.26308 0.767688,0.26308 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="M 31.535655,196.58908 H 108.99592"
id="path35483"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 68.112052,258.60709 c -0.09165,0 -0.175762,-0.0517 -0.216746,-0.1337 l -0.783855,-1.56881 c -0.05932,-0.11859 -0.01085,-0.26416 0.107818,-0.32346 0.119697,-0.0593 0.26416,-0.0108 0.324538,0.10782 l 0.568245,1.13753 0.568219,-1.13753 c 0.05929,-0.1186 0.204867,-0.16712 0.323454,-0.10782 0.119697,0.0593 0.16711,0.20487 0.107817,0.32346 l -0.783881,1.56881 c -0.04096,0.0819 -0.125068,0.1337 -0.215609,0.1337"
id="path35687"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 72.419522,258.60709 c -0.09165,0 -0.174678,-0.0517 -0.215636,-0.1337 l -0.784939,-1.56881 c -0.05932,-0.11859 -0.01085,-0.26416 0.108903,-0.32346 0.118586,-0.0593 0.264133,-0.0108 0.323453,0.10782 l 0.568219,1.13753 0.568219,-1.13753 c 0.05929,-0.1186 0.20484,-0.16712 0.323453,-0.10782 0.119698,0.0593 0.168222,0.20487 0.107844,0.32346 l -0.783881,1.56881 c -0.04096,0.0819 -0.123983,0.1337 -0.215635,0.1337"
id="path35689"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 70.382786,258.60709 c -0.566076,0 -1.025419,-0.4604 -1.025419,-1.02538 0,-0.56606 0.459343,-1.02646 1.025419,-1.02646 0.223149,0 0.436668,0.0712 0.615632,0.20593 0.106733,0.0798 0.127265,0.23075 0.04747,0.33749 -0.07982,0.10674 -0.230744,0.1283 -0.337503,0.0485 -0.09488,-0.0712 -0.20701,-0.1089 -0.325596,-0.1089 -0.299773,0 -0.543454,0.24367 -0.543454,0.54342 0,0.29866 0.243681,0.54234 0.543454,0.54234 0.118586,0 0.230717,-0.0377 0.325596,-0.10782 0.106759,-0.0809 0.257678,-0.0593 0.337503,0.0474 0.0798,0.10675 0.05927,0.2577 -0.04747,0.33856 -0.178964,0.1337 -0.392483,0.20486 -0.615632,0.20486"
id="path35691"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 70.711636,257.56877 c 0,0.17359 -0.140202,0.31376 -0.313795,0.31376 -0.172509,0 -0.313743,-0.14017 -0.313743,-0.31376 0,-0.17252 0.141234,-0.31376 0.313743,-0.31376 0.173593,0 0.313795,0.14124 0.313795,0.31376"
id="path35693"
inkscape:connector-curvature="0" />
<path
id="path7407"
d="m 66.110162,253.14752 c 0.185446,0 0.336418,-0.0647 0.444235,-0.13801 0.05175,-0.0302 0.07763,-0.0776 0.07763,-0.13801 v -0.3364 c 0,-0.0604 -0.04744,-0.11214 -0.11213,-0.11214 h -0.349356 c -0.05175,0 -0.09919,0.0431 -0.09919,0.0992 0,0.0517 0.04744,0.0949 0.09919,0.0949 h 0.250163 v 0.23289 c -0.07766,0.0604 -0.185473,0.0949 -0.306228,0.0949 -0.25445,0 -0.426985,-0.18977 -0.426985,-0.44854 0,-0.24152 0.176848,-0.44423 0.409734,-0.44423 0.133694,0 0.224261,0.0388 0.301889,0.0992 0.0217,0.0129 0.04315,0.0259 0.06903,0.0259 0.06038,0 0.112131,-0.0518 0.112131,-0.11214 0,-0.0431 -0.02593,-0.0733 -0.04744,-0.0906 -0.112131,-0.0819 -0.241538,-0.12507 -0.426985,-0.12507 -0.379518,0 -0.646933,0.29759 -0.646933,0.64693 v 0.004 c 0,0.3666 0.254477,0.64693 0.651246,0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7403"
d="m 66.869966,253.03108 c 0,0.0604 0.04744,0.1035 0.103505,0.1035 0.04744,0 0.08625,-0.0259 0.103505,-0.069 l 0.103531,-0.24152 h 0.612405 l 0.103531,0.23289 c 0.0172,0.0474 0.05175,0.0776 0.107818,0.0776 0.05607,0 0.103505,-0.0474 0.103505,-0.1035 0,-0.0172 -0.0042,-0.0345 -0.01296,-0.0474 l -0.465798,-1.04371 c -0.02593,-0.0518 -0.069,-0.0863 -0.133694,-0.0863 h -0.0087 c -0.06469,0 -0.107817,0.0345 -0.133694,0.0863 l -0.465799,1.04371 c -0.0087,0.0173 -0.0172,0.0345 -0.0172,0.0474 z m 0.396795,-0.40541 0.219949,-0.50461 0.219948,0.50461 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7399"
d="m 68.549594,253.02676 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.112131,-0.0474 0.112131,-0.10782 v -0.95314 h 0.306202 c 0.05609,0 0.09922,-0.0474 0.09922,-0.0992 0,-0.0561 -0.04313,-0.10351 -0.09922,-0.10351 h -0.836692 c -0.05607,0 -0.09919,0.0474 -0.09919,0.10351 0,0.0518 0.04313,0.0992 0.09919,0.0992 h 0.306229 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7395"
d="m 69.556122,253.12596 h 0.741812 c 0.05178,0 0.09922,-0.0431 0.09922,-0.0992 0,-0.0518 -0.04744,-0.0992 -0.09922,-0.0992 h -0.629655 v -0.33641 h 0.539088 c 0.05175,0 0.09919,-0.0431 0.09919,-0.0949 0,-0.0561 -0.04744,-0.10351 -0.09919,-0.10351 h -0.539088 v -0.32346 h 0.62103 c 0.05178,0 0.09491,-0.0431 0.09491,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.09491,-0.0992 h -0.733187 c -0.06038,0 -0.112131,0.0474 -0.112131,0.11214 v 1.03077 c 0,0.0647 0.05175,0.11214 0.112131,0.11214 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7387"
d="m 71.783622,253.14752 c 0.388171,0 0.659871,-0.29759 0.659871,-0.65124 0,-0.35366 -0.267388,-0.64693 -0.655558,-0.64693 -0.383831,0 -0.655558,0.29327 -0.655558,0.64693 v 0.004 c 0,0.35366 0.267414,0.64693 0.651245,0.64693 z m 0.0042,-0.2027 c -0.250137,0 -0.426985,-0.20271 -0.426985,-0.44854 0,-0.24584 0.176848,-0.44423 0.422672,-0.44423 0.250137,0 0.426985,0.20271 0.426985,0.44423 v 0.004 c 0,0.24584 -0.172535,0.44423 -0.422672,0.44423 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7383"
d="m 73.285027,253.14752 c 0.327766,0 0.539115,-0.18976 0.539115,-0.56498 v -0.61243 c 0,-0.0604 -0.04744,-0.10782 -0.107818,-0.10782 -0.06472,0 -0.112157,0.0474 -0.112157,0.10782 v 0.62105 c 0,0.2329 -0.120756,0.34934 -0.314827,0.34934 -0.198385,0 -0.319141,-0.12507 -0.319141,-0.35796 v -0.61243 c 0,-0.0604 -0.04747,-0.10782 -0.107844,-0.10782 -0.06469,0 -0.11213,0.0474 -0.11213,0.10782 v 0.62105 c 0,0.3666 0.20701,0.55636 0.534802,0.55636 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7379"
d="m 74.487505,253.02676 c 0,0.0604 0.05175,0.10782 0.112131,0.10782 0.06038,0 0.11213,-0.0474 0.11213,-0.10782 v -0.95314 h 0.306202 c 0.05609,0 0.09922,-0.0474 0.09922,-0.0992 0,-0.0561 -0.04313,-0.10351 -0.09922,-0.10351 h -0.836692 c -0.05607,0 -0.09919,0.0474 -0.09919,0.10351 0,0.0518 0.04313,0.0992 0.09919,0.0992 h 0.306229 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="M 31.535655,252.48497 H 63.614797"
id="path35723"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="M 76.916751,252.48497 H 108.99592"
id="path35725"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 34.74558,237.2034 v 8.5438"
id="path35727"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 44.799747,237.2034 v 8.5438"
id="path35729"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 54.853914,237.2034 v 8.5438"
id="path35731"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 65.172664,237.2034 v 8.5438"
id="path35733"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 75.22683,237.2034 v 8.5438"
id="path35735"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 85.54558,237.2034 v 8.5438"
id="path35737"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 95.599747,237.2034 v 8.5438"
id="path35739"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 105.9185,237.2034 v 8.5438"
id="path35741"
inkscape:connector-curvature="0" />
<path
id="path7375"
d="m 31.482924,174.1527 c 0.250164,0 0.418359,-0.0776 0.564991,-0.20701 0.0217,-0.0216 0.04313,-0.0561 0.04313,-0.0992 0,-0.0647 -0.06038,-0.12508 -0.129381,-0.12508 -0.0345,0 -0.06038,0.0129 -0.08194,0.0302 -0.112131,0.0949 -0.224261,0.15095 -0.383858,0.15095 -0.297577,0 -0.513212,-0.24583 -0.513212,-0.54773 v -0.004 c 0,-0.3019 0.215635,-0.54773 0.513212,-0.54773 0.146659,0 0.258789,0.0561 0.366607,0.14232 0.0172,0.0129 0.04313,0.0259 0.08194,0.0259 0.07332,0 0.133694,-0.0604 0.133694,-0.1337 0,-0.0474 -0.0217,-0.0863 -0.05175,-0.10782 -0.133694,-0.10351 -0.293264,-0.17683 -0.53049,-0.17683 -0.470085,0 -0.797877,0.36228 -0.797877,0.80219 v 0.004 c 0,0.44423 0.336417,0.79357 0.784939,0.79357 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7371"
d="m 32.449659,173.98882 c 0,0.0776 0.06038,0.13801 0.138006,0.13801 h 0.832406 c 0.069,0 0.125068,-0.0561 0.125068,-0.12508 0,-0.069 -0.05607,-0.12076 -0.125068,-0.12076 h -0.698685 v -1.17741 c 0,-0.0733 -0.06038,-0.1337 -0.133721,-0.1337 -0.07763,0 -0.138006,0.0604 -0.138006,0.1337 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7367"
d="m 34.520658,174.1527 c 0.474425,0 0.810816,-0.36228 0.810816,-0.79788 v -0.004 c 0,-0.4356 -0.332079,-0.79788 -0.806503,-0.79788 -0.474398,0 -0.810816,0.3666 -0.810816,0.8022 v 0.004 c 0,0.4356 0.332105,0.79357 0.806503,0.79356 z m 0.0042,-0.25014 c -0.306202,0 -0.52615,-0.25015 -0.52615,-0.54774 v -0.004 c 0,-0.3019 0.215635,-0.54773 0.521838,-0.54773 0.306229,0 0.526177,0.25015 0.526177,0.55205 v 0.004 c 0,0.29758 -0.215636,0.54342 -0.521865,0.54342 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7363"
d="m 36.418911,174.1527 c 0.250164,0 0.418359,-0.0776 0.564992,-0.20701 0.0217,-0.0216 0.04313,-0.0561 0.04313,-0.0992 0,-0.0647 -0.06038,-0.12508 -0.129382,-0.12508 -0.0345,0 -0.06038,0.0129 -0.08194,0.0302 -0.112131,0.0949 -0.224261,0.15095 -0.383858,0.15095 -0.297576,0 -0.513212,-0.24583 -0.513212,-0.54773 v -0.004 c 0,-0.3019 0.215636,-0.54773 0.513212,-0.54773 0.146659,0 0.258789,0.0561 0.366607,0.14232 0.0172,0.0129 0.04313,0.0259 0.08194,0.0259 0.07332,0 0.133693,-0.0604 0.133693,-0.1337 0,-0.0474 -0.0217,-0.0863 -0.05175,-0.10782 -0.133694,-0.10351 -0.293264,-0.17683 -0.53049,-0.17683 -0.470085,0 -0.797877,0.36228 -0.797877,0.80219 v 0.004 c 0,0.44423 0.336418,0.79357 0.784939,0.79357 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7359"
d="m 37.385593,174.00175 c 0,0.0776 0.06038,0.13802 0.138007,0.13802 0.07334,0 0.13372,-0.0604 0.13372,-0.13802 v -0.31915 l 0.250137,-0.24152 0.500301,0.63399 c 0.02593,0.0345 0.06038,0.0647 0.11213,0.0647 0.07763,0 0.138007,-0.0604 0.138007,-0.1337 0,-0.0431 -0.0172,-0.069 -0.03881,-0.0992 l -0.521864,-0.64693 0.48305,-0.46147 c 0.03019,-0.0302 0.04744,-0.0604 0.04744,-0.10351 0,-0.0647 -0.04744,-0.12508 -0.125069,-0.12508 -0.04744,0 -0.08194,0.0172 -0.11213,0.0517 l -0.733187,0.7375 v -0.65555 c 0,-0.0733 -0.06038,-0.1337 -0.13372,-0.1337 -0.07763,0 -0.138007,0.0604 -0.138007,0.1337 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7355"
d="m 62.229492,174.14839 c 0.323479,0 0.552053,-0.17251 0.552053,-0.46148 v -0.004 c 0,-0.25445 -0.168196,-0.3709 -0.495988,-0.45285 -0.297577,-0.069 -0.370893,-0.12507 -0.370893,-0.24152 v -0.004 c 0,-0.10351 0.09488,-0.18545 0.25445,-0.18545 0.120756,0 0.232886,0.0431 0.353642,0.11645 0.0217,0.0129 0.04315,0.0216 0.07334,0.0216 0.069,0 0.125069,-0.0561 0.125069,-0.12508 0,-0.0517 -0.02593,-0.0906 -0.06038,-0.10782 -0.138033,-0.0949 -0.293291,-0.14664 -0.487363,-0.14664 -0.306202,0 -0.530489,0.18546 -0.530489,0.44854 v 0.004 c 0,0.28465 0.185446,0.38385 0.517551,0.46148 0.284639,0.069 0.34933,0.12939 0.34933,0.23721 v 0.004 c 0,0.11645 -0.107818,0.19408 -0.276014,0.19408 -0.168195,0 -0.306202,-0.0561 -0.431297,-0.15958 -0.0172,-0.0129 -0.04313,-0.0216 -0.08194,-0.0216 -0.069,0 -0.125069,0.0561 -0.125069,0.12508 0,0.0431 0.0217,0.0819 0.05175,0.1035 0.172508,0.12939 0.370919,0.19408 0.582242,0.19408 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7351"
d="m 63.518621,174.00175 c 0,0.0776 0.06038,0.13802 0.138007,0.13802 0.07332,0 0.138006,-0.0604 0.138006,-0.13802 v -1.16878 h 0.375232 c 0.069,0 0.125069,-0.0561 0.125069,-0.12508 0,-0.069 -0.05607,-0.12507 -0.125069,-0.12507 h -1.026477 c -0.069,0 -0.125069,0.0561 -0.125069,0.12507 0,0.069 0.05607,0.12508 0.125069,0.12508 h 0.375232 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7347"
d="m 64.743324,174.12683 h 0.910035 c 0.06469,0 0.120756,-0.0517 0.120756,-0.12076 0,-0.069 -0.05607,-0.12076 -0.120756,-0.12076 h -0.776314 v -0.41835 h 0.664183 c 0.069,0 0.120756,-0.0517 0.120756,-0.11645 0,-0.069 -0.05175,-0.12507 -0.120756,-0.12507 h -0.664183 v -0.4011 h 0.763376 c 0.069,0 0.120755,-0.0517 0.120755,-0.12076 0,-0.069 -0.05175,-0.12076 -0.120755,-0.12076 h -0.897097 c -0.07763,0 -0.138006,0.0561 -0.138006,0.1337 v 1.2723 c 0,0.0776 0.06038,0.13801 0.138006,0.13801 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7343"
d="m 66.130508,174.00175 c 0,0.0776 0.06038,0.13802 0.138007,0.13802 0.07334,0 0.13372,-0.0604 0.13372,-0.13802 v -0.3709 h 0.306203 c 0.34073,0 0.621056,-0.18114 0.621056,-0.53049 v -0.004 c 0,-0.31052 -0.228573,-0.51323 -0.590867,-0.51323 h -0.470112 c -0.07763,0 -0.138007,0.0561 -0.138007,0.1337 z m 0.271727,-0.61674 v -0.55636 h 0.314828 c 0.202697,0 0.336418,0.0949 0.336418,0.27603 v 0.004 c 0,0.15957 -0.129408,0.27602 -0.336418,0.27602 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7339"
d="m 68.202011,174.14839 c 0.323479,0 0.552053,-0.17251 0.552053,-0.46148 v -0.004 c 0,-0.25445 -0.168196,-0.3709 -0.495988,-0.45285 -0.297577,-0.069 -0.370893,-0.12507 -0.370893,-0.24152 v -0.004 c 0,-0.10351 0.09488,-0.18545 0.25445,-0.18545 0.120756,0 0.232886,0.0431 0.353642,0.11645 0.0217,0.0129 0.04315,0.0216 0.07334,0.0216 0.069,0 0.125069,-0.0561 0.125069,-0.12508 0,-0.0517 -0.02593,-0.0906 -0.06038,-0.10782 -0.138033,-0.0949 -0.293291,-0.14664 -0.487363,-0.14664 -0.306202,0 -0.530489,0.18546 -0.530489,0.44854 v 0.004 c 0,0.28465 0.185446,0.38385 0.517551,0.46148 0.284639,0.069 0.34933,0.12939 0.34933,0.23721 v 0.004 c 0,0.11645 -0.107818,0.19408 -0.276014,0.19408 -0.168195,0 -0.306202,-0.0561 -0.431297,-0.15958 -0.0172,-0.0129 -0.04313,-0.0216 -0.08194,-0.0216 -0.069,0 -0.125069,0.0561 -0.125069,0.12508 0,0.0431 0.0217,0.0819 0.05175,0.1035 0.172508,0.12939 0.370919,0.19408 0.582242,0.19408 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7335"
d="m 42.895329,175.35142 c 0,0.0604 0.05175,0.10782 0.112131,0.10782 0.06038,0 0.112156,-0.0474 0.112156,-0.10782 v -0.34072 h 0.276014 l 0.306202,0.39247 c 0.02593,0.0345 0.05607,0.0561 0.107844,0.0561 0.05175,0 0.103505,-0.0388 0.103505,-0.10351 0,-0.0345 -0.01296,-0.0561 -0.0345,-0.0819 l -0.241539,-0.3019 c 0.168223,-0.0561 0.284666,-0.17683 0.284666,-0.37522 v -0.004 c 0,-0.11213 -0.0345,-0.2027 -0.103505,-0.27171 -0.07766,-0.0776 -0.202724,-0.12507 -0.362294,-0.12507 h -0.448548 c -0.06038,0 -0.112131,0.0474 -0.112131,0.11213 z m 0.224287,-0.5348 v -0.42266 h 0.319141 c 0.163883,0 0.258762,0.0733 0.258762,0.21133 0,0.12939 -0.09919,0.21133 -0.258762,0.21133 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7331"
d="m 44.769241,175.47218 c 0.327765,0 0.539115,-0.18977 0.539115,-0.56499 v -0.61243 c 0,-0.0604 -0.04744,-0.10782 -0.107818,-0.10782 -0.06472,0 -0.112157,0.0474 -0.112157,0.10782 v 0.62106 c 0,0.23289 -0.120756,0.34934 -0.314828,0.34934 -0.198384,0 -0.31914,-0.12507 -0.31914,-0.35797 v -0.61243 c 0,-0.0604 -0.04747,-0.10782 -0.107844,-0.10782 -0.06469,0 -0.112131,0.0474 -0.112131,0.10782 v 0.62106 c 0,0.36659 0.20701,0.55636 0.534803,0.55636 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7327"
d="m 45.679857,175.35142 c 0,0.0604 0.05175,0.10782 0.112131,0.10782 0.06038,0 0.107844,-0.0474 0.107844,-0.10782 v -0.79789 l 0.646906,0.8367 c 0.03021,0.0388 0.0604,0.069 0.112157,0.069 h 0.0087 c 0.06038,0 0.107818,-0.0517 0.107818,-0.11213 v -1.05234 c 0,-0.0604 -0.04744,-0.10783 -0.107818,-0.10783 -0.06038,0 -0.107844,0.0474 -0.107844,0.10783 v 0.772 l -0.629656,-0.81513 c -0.03019,-0.0388 -0.0604,-0.0647 -0.112156,-0.0647 h -0.02593 c -0.06038,0 -0.11213,0.0517 -0.11213,0.11213 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7323"
d="m 52.036525,175.35142 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.112157,-0.0474 0.112157,-0.10782 v -0.34072 h 0.276013 l 0.306203,0.39247 c 0.02593,0.0345 0.05606,0.0561 0.107844,0.0561 0.05175,0 0.103505,-0.0388 0.103505,-0.10351 0,-0.0345 -0.01297,-0.0561 -0.0345,-0.0819 l -0.24154,-0.30191 c 0.168222,-0.0561 0.284665,-0.17682 0.284665,-0.37522 v -0.004 c 0,-0.11213 -0.0345,-0.2027 -0.103505,-0.27171 -0.07766,-0.0776 -0.202724,-0.12507 -0.362294,-0.12507 h -0.448548 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11213 z m 0.224287,-0.5348 v -0.42266 h 0.31914 c 0.163883,0 0.258763,0.0733 0.258763,0.21133 0,0.12939 -0.09919,0.21133 -0.258763,0.21133 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7319"
d="m 53.509169,175.45061 h 0.741812 c 0.05178,0 0.09922,-0.0431 0.09922,-0.0992 0,-0.0517 -0.04744,-0.0992 -0.09922,-0.0992 h -0.629655 v -0.3364 h 0.539088 c 0.05175,0 0.09919,-0.0431 0.09919,-0.0949 0,-0.0561 -0.04744,-0.10351 -0.09919,-0.10351 h -0.539088 v -0.32347 h 0.62103 c 0.05178,0 0.09491,-0.0431 0.09491,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.09491,-0.0992 h -0.733187 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11214 v 1.03077 c 0,0.0647 0.05175,0.11214 0.11213,0.11214 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7315"
d="m 55.092885,175.46786 c 0.267388,0 0.448522,-0.13801 0.448522,-0.37522 v -0.004 c 0,-0.20701 -0.133694,-0.3019 -0.401082,-0.36659 -0.241511,-0.0561 -0.297603,-0.0992 -0.297603,-0.19839 0,-0.0863 0.07334,-0.15095 0.202724,-0.15095 0.09919,0 0.194072,0.0302 0.288951,0.0949 0.0172,0.0129 0.0345,0.0173 0.05606,0.0173 0.06038,0 0.107818,-0.0474 0.107818,-0.10351 0,-0.0431 -0.02593,-0.0733 -0.05175,-0.0863 -0.112131,-0.0776 -0.237199,-0.11645 -0.39677,-0.11645 -0.250163,0 -0.426984,0.14664 -0.426984,0.36228 v 0.004 c 0,0.2329 0.146632,0.31053 0.414046,0.37522 0.237199,0.0517 0.284639,0.10351 0.284639,0.18977 v 0.004 c 0,0.0949 -0.08625,0.15957 -0.219948,0.15957 -0.138007,0 -0.250137,-0.0474 -0.353669,-0.12938 -0.01296,-0.0129 -0.0345,-0.0216 -0.06469,-0.0216 -0.05607,0 -0.103505,0.0474 -0.103505,0.10351 0,0.0345 0.0172,0.0647 0.04313,0.0863 0.138006,0.10351 0.301916,0.15526 0.470111,0.15526 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7311"
d="m 55.975059,175.45061 h 0.741812 c 0.05178,0 0.09922,-0.0431 0.09922,-0.0992 0,-0.0517 -0.04744,-0.0992 -0.09922,-0.0992 h -0.629655 v -0.3364 h 0.539089 c 0.05175,0 0.09919,-0.0431 0.09919,-0.0949 0,-0.0561 -0.04744,-0.10351 -0.09919,-0.10351 h -0.539089 v -0.32347 h 0.62103 c 0.05178,0 0.09491,-0.0431 0.09491,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.09491,-0.0992 h -0.733187 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11214 v 1.03077 c 0,0.0647 0.05175,0.11214 0.11213,0.11214 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7307"
d="m 57.445693,175.35142 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.112131,-0.0474 0.112131,-0.10782 v -0.95315 h 0.306202 c 0.05609,0 0.09922,-0.0474 0.09922,-0.0992 0,-0.0561 -0.04313,-0.10351 -0.09922,-0.10351 h -0.836692 c -0.05607,0 -0.09919,0.0474 -0.09919,0.10351 0,0.0517 0.04313,0.0992 0.09919,0.0992 h 0.306229 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 34.74558,181.31115 v 10.7908"
id="path35805"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 75.22683,179.72419 v 10.78972"
id="path35807"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 55.118497,179.72419 v 10.78972"
id="path35809"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 85.54558,179.72419 v 10.78972"
id="path35811"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 95.599747,179.72419 v 10.78972"
id="path35813"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 105.9185,179.72419 v 10.78972"
id="path35815"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 65.172664,179.72419 v 10.78972"
id="path35817"
inkscape:connector-curvature="0" />
<path
id="path7303"
d="m 41.048061,185.72278 h 0.741813 c 0.05178,0 0.09922,-0.0431 0.09922,-0.0992 0,-0.0517 -0.04744,-0.0992 -0.09922,-0.0992 h -0.629656 v -0.3364 h 0.539089 c 0.05175,0 0.09919,-0.0431 0.09919,-0.0949 0,-0.0561 -0.04744,-0.10351 -0.09919,-0.10351 h -0.539089 v -0.32346 h 0.62103 c 0.05178,0 0.09491,-0.0431 0.09491,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.09491,-0.0992 h -0.733187 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11213 v 1.03077 c 0,0.0647 0.05175,0.11214 0.11213,0.11214 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7299"
d="m 42.13198,185.62789 c 0,0.0647 0.05175,0.10351 0.103505,0.10351 0.04744,0 0.07763,-0.0216 0.107818,-0.0604 l 0.332105,-0.43129 0.336391,0.43992 c 0.02593,0.0345 0.05175,0.0517 0.09922,0.0517 0.06469,0 0.11213,-0.0474 0.11213,-0.10782 0,-0.0302 -0.0172,-0.0604 -0.0345,-0.0819 l -0.370919,-0.46148 0.349356,-0.4356 c 0.0217,-0.0302 0.0345,-0.0517 0.0345,-0.0863 0,-0.0604 -0.05175,-0.0992 -0.09919,-0.0992 -0.04747,0 -0.07766,0.0216 -0.107844,0.0604 l -0.314828,0.40972 -0.314854,-0.41834 c -0.03019,-0.0345 -0.05607,-0.0517 -0.103505,-0.0517 -0.06038,0 -0.107818,0.0474 -0.107818,0.10782 0,0.0302 0.0172,0.0561 0.0345,0.0819 l 0.349356,0.43559 -0.37092,0.46148 c -0.0217,0.0259 -0.0345,0.0518 -0.0345,0.0819 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7295"
d="m 43.851428,185.62358 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.11213,-0.0474 0.11213,-0.10782 v -0.95314 h 0.306203 c 0.05609,0 0.09922,-0.0475 0.09922,-0.0992 0,-0.0561 -0.04313,-0.1035 -0.09922,-0.1035 h -0.836692 c -0.05607,0 -0.09919,0.0474 -0.09919,0.1035 0,0.0517 0.04313,0.0992 0.09919,0.0992 h 0.306229 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7287"
d="m 45.828288,185.74434 c 0.202698,0 0.336418,-0.0647 0.452861,-0.1682 0.0217,-0.0173 0.03881,-0.0474 0.03881,-0.0776 0,-0.0561 -0.05175,-0.10351 -0.107818,-0.10351 -0.02593,0 -0.04744,0.009 -0.06469,0.0259 -0.09059,0.0776 -0.18116,0.12076 -0.314854,0.12076 -0.237199,0 -0.414046,-0.2027 -0.414046,-0.44853 0,-0.24584 0.176847,-0.44423 0.414046,-0.44423 0.120756,0 0.215635,0.0431 0.301916,0.11214 0.01296,0.0129 0.0345,0.0216 0.06469,0.0216 0.06038,0 0.11213,-0.0474 0.11213,-0.10782 0,-0.0388 -0.0217,-0.069 -0.04313,-0.0863 -0.11213,-0.0863 -0.237225,-0.14232 -0.431297,-0.14232 -0.379519,0 -0.646933,0.29327 -0.646933,0.64693 v 0.004 c 0,0.36228 0.271727,0.64693 0.638307,0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7283"
d="m 46.622144,185.61064 c 0,0.0647 0.05175,0.11214 0.112131,0.11214 h 0.677121 c 0.05607,0 0.103532,-0.0431 0.103532,-0.0992 0,-0.0561 -0.04747,-0.10351 -0.103532,-0.10351 h -0.564965 v -0.95314 c 0,-0.0604 -0.05178,-0.10782 -0.112156,-0.10782 -0.06038,0 -0.112131,0.0474 -0.112131,0.10782 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7279"
d="m 47.77668,185.62358 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.112157,-0.0474 0.112157,-0.10782 v -0.26308 l 0.202698,-0.19408 0.405394,0.51323 c 0.0217,0.0302 0.04744,0.0517 0.09059,0.0517 0.06469,0 0.11213,-0.0474 0.11213,-0.10782 0,-0.0345 -0.01297,-0.0561 -0.03019,-0.0776 l -0.422672,-0.52617 0.38817,-0.37522 c 0.02593,-0.0259 0.04313,-0.0517 0.04313,-0.0863 0,-0.0517 -0.04313,-0.0992 -0.103505,-0.0992 -0.03884,0 -0.06472,0.0129 -0.09059,0.0388 l -0.595154,0.59949 v -0.53048 c 0,-0.0604 -0.05178,-0.10782 -0.112157,-0.10782 -0.06038,0 -0.11213,0.0474 -0.11213,0.10782 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7275"
d="m 34.621094,200.89411 c 0,0.0776 0.06038,0.13802 0.133694,0.13802 0.07763,0 0.138007,-0.0604 0.138007,-0.13802 v -1.3068 c 0,-0.0733 -0.06038,-0.1337 -0.138007,-0.1337 h -0.0042 c -0.03881,0 -0.07763,0.009 -0.129382,0.0259 l -0.237225,0.0733 c -0.05175,0.0173 -0.09057,0.0604 -0.09057,0.11645 0,0.0647 0.05606,0.11644 0.120756,0.11644 0.01296,0 0.0345,-0.004 0.04744,-0.009 l 0.159596,-0.0474 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7271"
d="m 44.255949,200.8898 c 0,0.0819 0.06038,0.12939 0.146632,0.12939 h 0.875533 c 0.06469,0 0.120756,-0.0518 0.120756,-0.12077 0,-0.0647 -0.05607,-0.11644 -0.120756,-0.11644 h -0.625369 l 0.314827,-0.2674 c 0.27604,-0.21996 0.405421,-0.35365 0.405421,-0.59518 v -0.009 c 0,-0.27603 -0.211349,-0.46148 -0.513238,-0.46148 -0.241512,0 -0.383858,0.0949 -0.508926,0.25015 -0.0217,0.0259 -0.0345,0.0561 -0.0345,0.0862 0,0.069 0.05607,0.12076 0.125068,0.12076 0.04313,0 0.07334,-0.0173 0.09491,-0.0388 0.09488,-0.11645 0.181134,-0.17252 0.306203,-0.17252 0.138006,0 0.250137,0.0863 0.250137,0.24152 0,0.13801 -0.07763,0.23721 -0.293264,0.41404 l -0.474425,0.40541 c -0.04313,0.0388 -0.069,0.0819 -0.069,0.1337 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7267"
d="m 55.013325,201.04506 c 0.323453,0 0.543428,-0.2027 0.543428,-0.49167 v -0.004 c 0,-0.28465 -0.224287,-0.40109 -0.457174,-0.43129 l 0.366607,-0.37521 c 0.04313,-0.0474 0.07763,-0.0863 0.07763,-0.15095 0,-0.0733 -0.06038,-0.11645 -0.138007,-0.11645 h -0.789278 c -0.06469,0 -0.120756,0.0517 -0.120756,0.11645 0,0.0647 0.05606,0.11644 0.120756,0.11644 h 0.560678 l -0.362267,0.38816 c -0.04313,0.0431 -0.05607,0.0733 -0.05607,0.11214 0,0.0604 0.05175,0.11644 0.116444,0.11644 h 0.05607 c 0.215635,0 0.353642,0.0863 0.353642,0.23721 v 0.004 c 0,0.14233 -0.112131,0.2329 -0.267388,0.2329 -0.142319,0 -0.25445,-0.0474 -0.349356,-0.14664 -0.0217,-0.0216 -0.05175,-0.0345 -0.09057,-0.0345 -0.07332,0 -0.129381,0.0604 -0.129381,0.12938 0,0.0388 0.0172,0.0776 0.04313,0.0992 0.125069,0.12076 0.293291,0.19839 0.521864,0.19839 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7263"
d="m 65.337817,200.90274 c 0,0.0733 0.05606,0.12939 0.129381,0.12939 0.07334,0 0.129408,-0.0561 0.129408,-0.12939 v -0.22859 h 0.120755 c 0.06469,0 0.112131,-0.0517 0.112131,-0.11213 0,-0.0604 -0.04744,-0.11213 -0.112131,-0.11213 H 65.596606 V 199.583 c 0,-0.0733 -0.05607,-0.1337 -0.129408,-0.1337 -0.08194,0 -0.116443,0.0345 -0.168196,0.0906 l -0.724561,0.86257 c -0.03881,0.0431 -0.06038,0.0906 -0.06038,0.14233 0,0.0733 0.06038,0.12938 0.133694,0.12938 h 0.69006 z m -0.5089,-0.45285 0.5089,-0.61243 v 0.61243 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7259"
d="m 75.346422,201.04506 c 0.327766,0 0.564991,-0.20702 0.564991,-0.52186 v -0.004 c 0,-0.32778 -0.237225,-0.48735 -0.539115,-0.48735 -0.103505,0 -0.172508,0.0173 -0.245824,0.0431 l 0.02593,-0.36228 h 0.57793 c 0.069,0 0.120755,-0.0517 0.120755,-0.11644 0,-0.069 -0.05175,-0.12076 -0.120755,-0.12076 h -0.698687 c -0.06472,0 -0.120782,0.0474 -0.125095,0.12076 l -0.03019,0.55636 c -0.0042,0.0517 0.01297,0.0906 0.05175,0.11644 0.05175,0.0388 0.08625,0.0561 0.129408,0.0561 0.03881,0 0.11213,-0.0561 0.263075,-0.0561 0.189759,0 0.31914,0.0992 0.31914,0.25878 v 0.004 c 0,0.16389 -0.125068,0.2674 -0.297577,0.2674 -0.120756,0 -0.232886,-0.0431 -0.336417,-0.12939 -0.0217,-0.0216 -0.04744,-0.0302 -0.08194,-0.0302 -0.069,0 -0.129381,0.0604 -0.129381,0.1337 0,0.0431 0.0217,0.0776 0.05606,0.10351 0.125069,0.0992 0.284665,0.1682 0.495988,0.1682 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7255"
d="m 85.546692,201.04506 c 0.323479,0 0.573616,-0.21996 0.573616,-0.52617 v -0.004 c 0,-0.30622 -0.241511,-0.48304 -0.539115,-0.48304 -0.185446,0 -0.288951,0.0733 -0.370893,0.15095 0.01296,-0.28034 0.138007,-0.48736 0.370893,-0.48736 0.103505,0 0.181134,0.0302 0.263076,0.0863 0.0217,0.009 0.04315,0.0172 0.06903,0.0172 0.069,0 0.129382,-0.0517 0.129382,-0.12507 0,-0.0561 -0.02593,-0.0906 -0.069,-0.11645 -0.09919,-0.069 -0.224287,-0.11214 -0.383857,-0.11214 -0.439923,0 -0.664184,0.37091 -0.664184,0.84533 v 0.004 c 0,0.31053 0.07332,0.4701 0.189759,0.58655 0.103532,0.10351 0.241539,0.16389 0.431298,0.16389 z m -0.0087,-0.23721 c -0.194071,0 -0.31914,-0.11644 -0.31914,-0.27602 v -0.004 c 0,-0.14664 0.120756,-0.27171 0.310515,-0.27171 0.194072,0 0.31914,0.11644 0.31914,0.27171 v 0.004 c 0,0.15958 -0.116443,0.27602 -0.310515,0.27602 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7251"
d="m 95.326406,200.90705 c 0,0.0776 0.06903,0.12508 0.138033,0.12508 0.05607,0 0.09919,-0.0302 0.133694,-0.0906 l 0.638307,-1.21624 c 0.0217,-0.0431 0.03881,-0.0906 0.03881,-0.12938 0,-0.0776 -0.04744,-0.12076 -0.125069,-0.12076 h -0.866907 c -0.06469,0 -0.120756,0.0517 -0.120756,0.11645 0,0.069 0.05606,0.12076 0.120756,0.12076 h 0.668496 l -0.599493,1.11272 c -0.01296,0.0259 -0.02593,0.0604 -0.02593,0.0819 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7247"
d="m 105.8677,201.04075 c 0.3407,0 0.59086,-0.17252 0.59086,-0.44854 v -0.004 c 0,-0.18114 -0.10781,-0.29328 -0.28035,-0.37091 0.13372,-0.069 0.2286,-0.17251 0.2286,-0.34503 v -0.004 c 0,-0.23721 -0.2286,-0.41835 -0.53911,-0.41835 -0.30621,0 -0.53481,0.18114 -0.53481,0.41835 v 0.004 c 0,0.17252 0.0949,0.27603 0.22429,0.34503 -0.17253,0.0733 -0.27604,0.18977 -0.27604,0.37522 v 0.004 c 0,0.2674 0.25017,0.44423 0.58656,0.44423 z m 0,-0.91433 c -0.15957,0 -0.27602,-0.0949 -0.27602,-0.22858 v -0.004 c 0,-0.11645 0.11213,-0.21565 0.27602,-0.21565 0.16819,0 0.27601,0.0992 0.27601,0.21565 v 0.004 c 0,0.1337 -0.11644,0.22858 -0.27601,0.22858 z m 0,0.68575 c -0.2027,0 -0.31914,-0.10351 -0.31914,-0.22859 v -0.004 c 0,-0.14232 0.138,-0.2372 0.31914,-0.2372 0.18544,0 0.32776,0.0949 0.32776,0.2372 v 0.004 c 0,0.12508 -0.12507,0.22859 -0.32776,0.22859 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 48.587522,242.56724 c 0,-0.35581 -0.291121,-0.64693 -0.646933,-0.64693 h -6.281684 c -0.355812,0 -0.646933,0.29112 -0.646933,0.64693 v 6.28278 c 0,0.35581 0.291121,0.64693 0.646933,0.64693 h 6.281684 c 0.355812,0 0.646933,-0.29112 0.646933,-0.64693 z m 0,0"
id="path36677"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 58.641689,242.56724 c 0,-0.35581 -0.291121,-0.64693 -0.646933,-0.64693 h -6.281711 c -0.355785,0 -0.646906,0.29112 -0.646906,0.64693 v 6.28278 c 0,0.35581 0.291121,0.64693 0.646906,0.64693 h 6.281711 c 0.355812,0 0.646933,-0.29112 0.646933,-0.64693 z m 0,0"
id="path36679"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 68.960439,242.56724 c 0,-0.35581 -0.29001,-0.64693 -0.645848,-0.64693 h -6.28277 c -0.355811,0 -0.646932,0.29112 -0.646932,0.64693 v 6.28278 c 0,0.35581 0.291121,0.64693 0.646932,0.64693 h 6.28277 c 0.355838,0 0.645848,-0.29112 0.645848,-0.64693 z m 0,0"
id="path36681"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 79.014605,242.56724 c 0,-0.35581 -0.291121,-0.64693 -0.646906,-0.64693 h -6.281711 c -0.355812,0 -0.646933,0.29112 -0.646933,0.64693 v 6.28278 c 0,0.35581 0.291121,0.64693 0.646933,0.64693 h 6.281711 c 0.355785,0 0.646906,-0.29112 0.646906,-0.64693 z m 0,0"
id="path36683"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 89.333355,242.56724 c 0,-0.35581 -0.291121,-0.64693 -0.646959,-0.64693 h -6.281684 c -0.355812,0 -0.646907,0.29112 -0.646907,0.64693 v 6.28278 c 0,0.35581 0.291095,0.64693 0.646907,0.64693 h 6.281684 c 0.355838,0 0.646959,-0.29112 0.646959,-0.64693 z m 0,0"
id="path36685"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 99.387522,242.56724 c 0,-0.35581 -0.291121,-0.64693 -0.646906,-0.64693 h -6.28277 c -0.355838,0 -0.645874,0.29112 -0.645874,0.64693 v 6.28278 c 0,0.35581 0.290036,0.64693 0.645874,0.64693 h 6.28277 c 0.355785,0 0.646906,-0.29112 0.646906,-0.64693 z m 0,0"
id="path36687"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 109.70627,242.56724 c 0,-0.35581 -0.29112,-0.64693 -0.64693,-0.64693 h -6.28171 c -0.35579,0 -0.64691,0.29112 -0.64691,0.64693 v 6.28278 c 0,0.35581 0.29112,0.64693 0.64691,0.64693 h 6.28171 c 0.35581,0 0.64693,-0.29112 0.64693,-0.64693 z m 0,0"
id="path36689"
inkscape:connector-curvature="0" />
<path
id="path6783"
d="m 73.542731,175.47218 c 0.185447,0 0.336418,-0.0647 0.444235,-0.13802 0.05175,-0.0302 0.07763,-0.0776 0.07763,-0.13801 v -0.3364 c 0,-0.0604 -0.04744,-0.11214 -0.11213,-0.11214 H 73.60311 c -0.05175,0 -0.09919,0.0431 -0.09919,0.0992 0,0.0517 0.04744,0.0949 0.09919,0.0949 h 0.250164 v 0.2329 c -0.07766,0.0604 -0.185473,0.0949 -0.306229,0.0949 -0.25445,0 -0.426985,-0.18977 -0.426985,-0.44854 0,-0.24152 0.176848,-0.44423 0.409734,-0.44423 0.133694,0 0.224261,0.0388 0.30189,0.0992 0.0217,0.0129 0.04315,0.0259 0.06903,0.0259 0.06038,0 0.112131,-0.0517 0.112131,-0.11213 0,-0.0431 -0.02593,-0.0733 -0.04744,-0.0906 -0.11213,-0.082 -0.241538,-0.12507 -0.426985,-0.12507 -0.379518,0 -0.646932,0.29758 -0.646932,0.64693 v 0.004 c 0,0.36659 0.254476,0.64693 0.651245,0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6779"
d="m 74.302535,175.35573 c 0,0.0604 0.04744,0.10351 0.103505,0.10351 0.04744,0 0.08625,-0.0259 0.103505,-0.069 l 0.103531,-0.24152 h 0.612405 l 0.103532,0.23289 c 0.0172,0.0474 0.05175,0.0776 0.107817,0.0776 0.05607,0 0.103505,-0.0474 0.103505,-0.10351 0,-0.0172 -0.0042,-0.0345 -0.01296,-0.0474 l -0.465799,-1.04371 c -0.02593,-0.0517 -0.069,-0.0863 -0.133694,-0.0863 h -0.0087 c -0.06469,0 -0.107817,0.0345 -0.133693,0.0863 l -0.465799,1.04371 c -0.0087,0.0172 -0.0172,0.0345 -0.0172,0.0474 z m 0.396796,-0.40541 0.219948,-0.50461 0.219948,0.50461 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6775"
d="m 75.982136,175.35142 c 0,0.0604 0.05175,0.10782 0.112131,0.10782 0.06038,0 0.11213,-0.0474 0.11213,-0.10782 v -0.95315 H 76.5126 c 0.05609,0 0.09922,-0.0474 0.09922,-0.0992 0,-0.0561 -0.04313,-0.10351 -0.09922,-0.10351 h -0.836692 c -0.05606,0 -0.09919,0.0474 -0.09919,0.10351 0,0.0517 0.04313,0.0992 0.09919,0.0992 h 0.306228 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6771"
d="m 76.988717,175.45061 h 0.741813 c 0.05178,0 0.09922,-0.0431 0.09922,-0.0992 0,-0.0517 -0.04744,-0.0992 -0.09922,-0.0992 h -0.629656 v -0.3364 h 0.539089 c 0.05175,0 0.09919,-0.0431 0.09919,-0.0949 0,-0.0561 -0.04744,-0.10351 -0.09919,-0.10351 h -0.539089 v -0.32347 h 0.62103 c 0.05178,0 0.09491,-0.0431 0.09491,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.09491,-0.0992 h -0.733187 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11214 v 1.03077 c 0,0.0647 0.05175,0.11214 0.11213,0.11214 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6767"
d="m 82.637069,175.35142 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.112157,-0.0474 0.112157,-0.10782 v -0.34072 h 0.276013 l 0.306203,0.39247 c 0.02593,0.0345 0.05606,0.0561 0.107844,0.0561 0.05175,0 0.103505,-0.0388 0.103505,-0.10351 0,-0.0345 -0.01297,-0.0561 -0.0345,-0.0819 l -0.241538,-0.3019 c 0.168222,-0.0561 0.284665,-0.17683 0.284665,-0.37522 v -0.004 c 0,-0.11213 -0.0345,-0.2027 -0.103505,-0.27171 -0.07766,-0.0776 -0.202723,-0.12507 -0.362294,-0.12507 h -0.448548 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11213 z m 0.224287,-0.5348 v -0.42266 h 0.31914 c 0.163883,0 0.258763,0.0733 0.258763,0.21133 0,0.12939 -0.09919,0.21133 -0.258763,0.21133 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6763"
d="m 84.575168,175.47218 c 0.38817,0 0.659871,-0.29759 0.659871,-0.65125 0,-0.35365 -0.267388,-0.64693 -0.655558,-0.64693 -0.383831,0 -0.655558,0.29328 -0.655558,0.64693 v 0.004 c 0,0.35366 0.267414,0.64693 0.651245,0.64693 z m 0.0042,-0.20271 c -0.250137,0 -0.426984,-0.2027 -0.426984,-0.44854 0,-0.24583 0.176847,-0.44422 0.422672,-0.44422 0.250137,0 0.426984,0.2027 0.426984,0.44422 v 0.004 c 0,0.24584 -0.172534,0.44423 -0.422672,0.44423 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6759"
d="m 85.80601,175.37729 c 0.0217,0.0561 0.06038,0.0906 0.11213,0.0906 h 0.0217 c 0.05607,0 0.09488,-0.0345 0.116443,-0.0906 l 0.280326,-0.81944 0.280353,0.81944 c 0.0172,0.0561 0.05607,0.0906 0.11213,0.0906 h 0.0217 c 0.05175,0 0.09488,-0.0345 0.116443,-0.0906 l 0.370919,-1.0394 c 0.0042,-0.0129 0.0087,-0.0302 0.0087,-0.0474 0,-0.0561 -0.05175,-0.10351 -0.107818,-0.10351 -0.05609,0 -0.09059,0.0345 -0.107844,0.0776 l -0.288952,0.86689 -0.284638,-0.86258 c -0.0172,-0.0517 -0.05607,-0.0863 -0.112157,-0.0863 h -0.01296 c -0.05607,0 -0.09488,0.0345 -0.11213,0.0863 l -0.284639,0.86258 -0.288978,-0.86689 c -0.01296,-0.0431 -0.05607,-0.0776 -0.107818,-0.0776 -0.06038,0 -0.116443,0.0474 -0.116443,0.10782 0,0.0129 0.0042,0.0302 0.01297,0.0431 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6751"
d="m 88.177999,175.35142 c 0,0.0604 0.05178,0.10782 0.107845,0.10782 0.06469,0 0.11213,-0.0474 0.11213,-0.10782 v -1.06528 c 0,-0.0604 -0.04744,-0.10783 -0.11213,-0.10783 -0.0345,0 -0.06469,0.009 -0.107845,0.0216 l -0.189759,0.0604 c -0.04744,0.0129 -0.07763,0.0474 -0.07763,0.0949 0,0.0474 0.04744,0.0906 0.09919,0.0906 0.0087,0 0.02593,0 0.03881,-0.004 l 0.129381,-0.0388 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6747"
d="m 92.614348,175.35142 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.112157,-0.0474 0.112157,-0.10782 v -0.34072 h 0.276013 l 0.306202,0.39247 c 0.02593,0.0345 0.05607,0.0561 0.107845,0.0561 0.05175,0 0.103505,-0.0388 0.103505,-0.10351 0,-0.0345 -0.01296,-0.0561 -0.0345,-0.0819 l -0.241538,-0.3019 c 0.168222,-0.0561 0.284665,-0.17683 0.284665,-0.37522 v -0.004 c 0,-0.11213 -0.0345,-0.2027 -0.103505,-0.27171 -0.07765,-0.0776 -0.202724,-0.12507 -0.362294,-0.12507 H 92.72648 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11213 z m 0.224287,-0.5348 v -0.42266 h 0.31914 c 0.163883,0 0.258763,0.0733 0.258763,0.21133 0,0.12939 -0.09919,0.21133 -0.258763,0.21133 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6743"
d="m 94.552447,175.47218 c 0.38817,0 0.659871,-0.29759 0.659871,-0.65125 0,-0.35365 -0.267388,-0.64693 -0.655558,-0.64693 -0.383831,0 -0.655559,0.29328 -0.655559,0.64693 v 0.004 c 0,0.35366 0.267415,0.64693 0.651246,0.64693 z m 0.0042,-0.20271 c -0.250137,0 -0.426984,-0.2027 -0.426984,-0.44854 0,-0.24583 0.176847,-0.44422 0.422672,-0.44422 0.250137,0 0.426984,0.2027 0.426984,0.44422 v 0.004 c 0,0.24584 -0.172535,0.44423 -0.422672,0.44423 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6739"
d="m 95.783315,175.37729 c 0.0217,0.0561 0.06038,0.0906 0.11213,0.0906 h 0.0217 c 0.05607,0 0.09488,-0.0345 0.116443,-0.0906 l 0.280326,-0.81944 0.280353,0.81944 c 0.0172,0.0561 0.05607,0.0906 0.11213,0.0906 h 0.0217 c 0.05175,0 0.09488,-0.0345 0.116443,-0.0906 l 0.37092,-1.0394 c 0.0042,-0.0129 0.0087,-0.0302 0.0087,-0.0474 0,-0.0561 -0.05175,-0.10351 -0.107818,-0.10351 -0.05609,0 -0.09059,0.0345 -0.107844,0.0776 l -0.288951,0.86689 -0.284639,-0.86258 c -0.0172,-0.0517 -0.05607,-0.0863 -0.112157,-0.0863 h -0.01296 c -0.05607,0 -0.09488,0.0345 -0.11213,0.0863 l -0.284639,0.86258 -0.288978,-0.86689 c -0.01296,-0.0431 -0.05606,-0.0776 -0.107817,-0.0776 -0.06038,0 -0.116444,0.0474 -0.116444,0.10782 0,0.0129 0.0042,0.0302 0.01297,0.0431 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6731"
d="m 97.913793,175.3471 c 0,0.0647 0.05175,0.10351 0.116443,0.10351 h 0.711623 c 0.05607,0 0.09919,-0.0431 0.09919,-0.0949 0,-0.0561 -0.04313,-0.0992 -0.09919,-0.0992 H 98.23296 l 0.258762,-0.21564 c 0.224261,-0.18114 0.327766,-0.28896 0.327766,-0.48736 0,-0.22427 -0.168195,-0.37522 -0.41402,-0.37522 -0.198384,0 -0.314854,0.0733 -0.418359,0.20271 -0.01297,0.0172 -0.0217,0.0431 -0.0217,0.0647 0,0.0561 0.04313,0.10351 0.09919,0.10351 0.0345,0 0.06038,-0.0172 0.07763,-0.0345 0.07765,-0.0949 0.146659,-0.14233 0.245851,-0.14233 0.116443,0 0.202697,0.0733 0.202697,0.19839 0,0.11214 -0.06038,0.19408 -0.232886,0.33641 l -0.38817,0.32778 c -0.03881,0.0345 -0.05606,0.069 -0.05606,0.11213 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6727"
d="m 102.78183,175.35142 c 0,0.0604 0.0517,0.10782 0.11214,0.10782 0.0604,0 0.11215,-0.0474 0.11215,-0.10782 v -0.34072 h 0.27602 l 0.3062,0.39247 c 0.0259,0.0345 0.0561,0.0561 0.10784,0.0561 0.0517,0 0.10351,-0.0388 0.10351,-0.10351 0,-0.0345 -0.013,-0.0561 -0.0345,-0.0819 l -0.24154,-0.3019 c 0.16822,-0.0561 0.28466,-0.17683 0.28466,-0.37522 v -0.004 c 0,-0.11213 -0.0345,-0.2027 -0.1035,-0.27171 -0.0776,-0.0776 -0.20273,-0.12507 -0.3623,-0.12507 h -0.44854 c -0.0604,0 -0.11213,0.0474 -0.11213,0.11213 z m 0.22429,-0.5348 v -0.42266 h 0.31914 c 0.16389,0 0.25876,0.0733 0.25876,0.21133 0,0.12939 -0.0992,0.21133 -0.25876,0.21133 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6723"
d="m 104.71993,175.47218 c 0.38817,0 0.65987,-0.29759 0.65987,-0.65125 0,-0.35365 -0.26738,-0.64693 -0.65555,-0.64693 -0.38383,0 -0.65556,0.29328 -0.65556,0.64693 v 0.004 c 0,0.35366 0.26741,0.64693 0.65124,0.64693 z m 0.004,-0.20271 c -0.25013,0 -0.42698,-0.2027 -0.42698,-0.44854 0,-0.24583 0.17685,-0.44422 0.42267,-0.44422 0.25014,0 0.42699,0.2027 0.42699,0.44422 v 0.004 c 0,0.24584 -0.17254,0.44423 -0.42268,0.44423 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6719"
d="m 105.9508,175.37729 c 0.0217,0.0561 0.0604,0.0906 0.11213,0.0906 h 0.0217 c 0.0561,0 0.0949,-0.0345 0.11645,-0.0906 l 0.28032,-0.81944 0.28035,0.81944 c 0.0172,0.0561 0.0561,0.0906 0.11213,0.0906 h 0.0217 c 0.0517,0 0.0949,-0.0345 0.11645,-0.0906 l 0.37092,-1.0394 c 0.004,-0.0129 0.009,-0.0302 0.009,-0.0474 0,-0.0561 -0.0517,-0.10351 -0.10782,-0.10351 -0.0561,0 -0.0906,0.0345 -0.10785,0.0776 l -0.28892,0.86689 -0.28464,-0.86258 c -0.0172,-0.0517 -0.0561,-0.0863 -0.11216,-0.0863 h -0.013 c -0.0561,0 -0.0949,0.0345 -0.11213,0.0863 l -0.28464,0.86258 -0.28898,-0.86689 c -0.013,-0.0431 -0.0561,-0.0776 -0.10781,-0.0776 -0.0604,0 -0.11645,0.0474 -0.11645,0.10782 0,0.0129 0.004,0.0302 0.013,0.0431 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6711"
d="m 108.56002,175.47218 c 0.26307,0 0.43989,-0.16821 0.43989,-0.39679 v -0.004 c 0,-0.23289 -0.17682,-0.32778 -0.36658,-0.35365 l 0.29327,-0.30622 c 0.0388,-0.0388 0.0647,-0.069 0.0647,-0.12076 0,-0.0561 -0.0474,-0.0949 -0.11213,-0.0949 h -0.64262 c -0.0517,0 -0.0949,0.0431 -0.0949,0.0949 0,0.0517 0.0431,0.0949 0.0949,0.0949 h 0.45717 l -0.29326,0.31484 c -0.0345,0.0345 -0.0475,0.0604 -0.0475,0.0906 0,0.0517 0.0431,0.0949 0.0949,0.0949 h 0.0474 c 0.1725,0 0.28895,0.069 0.28895,0.19408 v 0.004 c 0,0.11214 -0.0949,0.18977 -0.21995,0.18977 -0.11644,0 -0.20701,-0.0431 -0.28467,-0.12076 -0.0172,-0.0172 -0.0431,-0.0302 -0.0733,-0.0302 -0.0561,0 -0.10781,0.0517 -0.10781,0.10782 0,0.0302 0.0172,0.0604 0.0388,0.0776 0.0992,0.0992 0.24153,0.16389 0.42267,0.16389 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 79.014605,187.26933 c 0,-0.35581 -0.291121,-0.64693 -0.646906,-0.64693 h -6.281711 c -0.355812,0 -0.646933,0.29112 -0.646933,0.64693 v 6.28278 c 0,0.35581 0.291121,0.64693 0.646933,0.64693 h 6.281711 c 0.355785,0 0.646906,-0.29112 0.646906,-0.64693 z m 0,0"
id="path37367"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 89.333355,187.26933 c 0,-0.35581 -0.291121,-0.64693 -0.646959,-0.64693 h -6.281684 c -0.355812,0 -0.646907,0.29112 -0.646907,0.64693 v 6.28278 c 0,0.35581 0.291095,0.64693 0.646907,0.64693 h 6.281684 c 0.355838,0 0.646959,-0.29112 0.646959,-0.64693 z m 0,0"
id="path37369"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 99.387522,187.26933 c 0,-0.35581 -0.291121,-0.64693 -0.646906,-0.64693 h -6.28277 c -0.355838,0 -0.645874,0.29112 -0.645874,0.64693 v 6.28278 c 0,0.35581 0.290036,0.64693 0.645874,0.64693 h 6.28277 c 0.355785,0 0.646906,-0.29112 0.646906,-0.64693 z m 0,0"
id="path37371"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 109.70627,187.26933 c 0,-0.35581 -0.29112,-0.64693 -0.64693,-0.64693 h -6.28171 c -0.35579,0 -0.64691,0.29112 -0.64691,0.64693 v 6.28278 c 0,0.35581 0.29112,0.64693 0.64691,0.64693 h 6.28171 c 0.35581,0 0.64693,-0.29112 0.64693,-0.64693 z m 0,0"
id="path37373"
inkscape:connector-curvature="0" />
<path
id="rect103"
d="M 28.948923,164.29485 H 111.1343 v 94.88068 H 28.948923 Z"
style="fill:#e6e6e6;fill-opacity:1;stroke-width:0.26458332"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="bId°°"
inkscape:transform-center-x="-1.5441791"
inkscape:transform-center-y="0.35634903"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="text977">
<path
d="m 13.898824,97.809389 q 0,-0.44235 -0.14056,-0.667659 -0.14056,-0.225309 -0.415478,-0.225309 -0.276986,0 -0.419613,0.227376 -0.142627,0.225309 -0.142627,0.665592 0,0.438216 0.142627,0.665593 0.142627,0.227376 0.419613,0.227376 0.274918,0 0.415478,-0.225309 0.14056,-0.225309 0.14056,-0.66766 z m -1.118278,-0.86403 q 0.09095,-0.169498 0.250114,-0.260449 0.16123,-0.09095 0.37207,-0.09095 0.417546,0 0.657324,0.322461 0.239779,0.320393 0.239779,0.8847 0,0.572575 -0.241846,0.89917 -0.239778,0.324528 -0.659391,0.324528 -0.206706,0 -0.365869,-0.08888 -0.157096,-0.09095 -0.252181,-0.262516 v 0.291455 h -0.380338 v -3.216341 h 0.380338 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
id="path978"
inkscape:connector-curvature="0" />
<path
d="m 14.963358,95.878758 h 1.713591 v 0.3514 H 16.02996 v 2.383317 h 0.646989 v 0.351399 h -1.713591 v -0.351399 h 0.646989 v -2.383317 h -0.646989 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
id="path980"
inkscape:connector-curvature="0" />
<path
d="m 18.868029,96.945359 v -1.196826 h 0.380339 v 3.216341 h -0.380339 v -0.291455 q -0.09508,0.171566 -0.254248,0.262516 -0.157096,0.08888 -0.363802,0.08888 -0.419612,0 -0.661458,-0.324528 -0.239779,-0.326595 -0.239779,-0.89917 0,-0.564307 0.241846,-0.8847 0.241846,-0.322461 0.659391,-0.322461 0.208773,0 0.367936,0.09095 0.159164,0.08888 0.250114,0.260449 z m -1.118278,0.86403 q 0,0.442351 0.14056,0.66766 0.14056,0.225309 0.415479,0.225309 0.274918,0 0.417545,-0.227376 0.144694,-0.227377 0.144694,-0.665593 0,-0.440283 -0.144694,-0.665592 -0.142627,-0.227376 -0.417545,-0.227376 -0.274919,0 -0.415479,0.225309 -0.14056,0.225309 -0.14056,0.667659 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
id="path982"
inkscape:connector-curvature="0" />
<path
d="m 20.914416,95.822947 q 0.134358,0 0.254248,0.05168 0.121956,0.04961 0.212907,0.144694 0.09302,0.09302 0.14056,0.21084 0.04961,0.117822 0.04961,0.254248 0,0.272851 -0.192236,0.46302 -0.192237,0.188103 -0.469222,0.188103 -0.279053,0 -0.465088,-0.186035 -0.186035,-0.186036 -0.186035,-0.465088 0,-0.276986 0.190169,-0.469222 0.190169,-0.192237 0.465088,-0.192237 z m 0,0.266651 q -0.163298,0 -0.279053,0.115755 -0.113688,0.113688 -0.113688,0.279053 0,0.165364 0.111621,0.276985 0.113688,0.111621 0.276986,0.111621 0.165364,0 0.281119,-0.113688 0.117823,-0.113688 0.117823,-0.274918 0,-0.163298 -0.115756,-0.279053 -0.115755,-0.115755 -0.279052,-0.115755 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
id="path984"
inkscape:connector-curvature="0" />
<path
d="m 23.46103,95.822947 q 0.134359,0 0.254248,0.05168 0.121957,0.04961 0.212907,0.144694 0.09302,0.09302 0.14056,0.21084 0.04961,0.117822 0.04961,0.254248 0,0.272851 -0.192237,0.46302 -0.192236,0.188103 -0.469222,0.188103 -0.279052,0 -0.465088,-0.186035 -0.186035,-0.186036 -0.186035,-0.465088 0,-0.276986 0.19017,-0.469222 0.190169,-0.192237 0.465087,-0.192237 z m 0,0.266651 q -0.163297,0 -0.279052,0.115755 -0.113688,0.113688 -0.113688,0.279053 0,0.165364 0.111621,0.276985 0.113688,0.111621 0.276985,0.111621 0.165365,0 0.28112,-0.113688 0.117822,-0.113688 0.117822,-0.274918 0,-0.163298 -0.115755,-0.279053 -0.115755,-0.115755 -0.279053,-0.115755 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
id="path986"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="OUAIve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="text977-5">
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="11.331977"
y="5.7977414"
id="text974"><tspan
sodipodi:role="line"
id="tspan972"
x="11.331977"
y="5.7977414"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px">RAdAR</tspan></text>
</g>
<g
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:Sudo;-inkscape-font-specification:'Sudo, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="text4860" />
<g
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:125%;font-family:Sudo;-inkscape-font-specification:'Sudo, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="flowRoot1009" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
x="2.3208861"
y="84.527206"
id="text1002"><tspan
sodipodi:role="line"
id="tspan1000"
x="2.3208861"
y="84.527206"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">TRIG</tspan></text>
<g
id="g1032"
transform="translate(28.416079,21.948245)">
<rect
ry="1.1370114"
y="59.837032"
x="-15.953481"
height="10.377027"
width="6.9770179"
id="rect998-7"
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000400;stroke-width:0.72085714;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text1002-9"
y="62.553104"
x="-15.054995"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
y="62.553104"
x="-15.054995"
id="tspan1000-1"
sodipodi:role="line">POS</tspan></text>
</g>
<rect
style="opacity:1;fill:#cd1f00;fill-opacity:1;fill-rule:evenodd;stroke:#cd1f00;stroke-width:0.93371081;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect998-7-7"
width="11.984631"
height="10.135485"
x="22.350098"
y="81.901466"
ry="1.1105456" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.79039741px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13079987;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
x="25.432156"
y="85.593163"
id="text1002-9-9"
transform="scale(1.0122861,0.98786301)"><tspan
sodipodi:role="line"
id="tspan1000-1-5"
x="25.432156"
y="85.593163"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.79039741px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13079987;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">OUT</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
x="2.2843671"
y="94.338516"
id="text1002-1"><tspan
sodipodi:role="line"
id="tspan1000-9"
x="2.2843671"
y="94.338516"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">GATE</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.79039741px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13079987;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
x="23.964373"
y="87.993423"
id="text1002-9-9-2"
transform="scale(1.0122861,0.98786302)"><tspan
sodipodi:role="line"
id="tspan1000-1-5-5"
x="23.964373"
y="87.993423"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.79039741px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13079987;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">L</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.79039741px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13079987;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
x="30.250475"
y="87.993416"
id="text1002-9-9-2-7"
transform="scale(1.0122861,0.98786302)"><tspan
sodipodi:role="line"
id="tspan1000-1-5-5-5"
x="30.250475"
y="87.993416"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.79039741px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13079987;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">R</tspan></text>
</svg>

+ 0
- 134
plugins/community/repos/Bidoo/res/SONAR.svg View File

@@ -1,134 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="180"
height="380"
viewBox="0 0 47.625 100.54166"
version="1.1"
id="svg12553">
<defs
id="defs12547">
<linearGradient
osb:paint="solid"
id="linearGradient4708">
<stop
id="stop4706"
offset="0"
style="stop-color:#ececec;stop-opacity:1;" />
</linearGradient>
<filter
id="filter4696"
style="color-interpolation-filters:sRGB">
<feColorMatrix
id="feColorMatrix4692"
result="colormatrix"
values="0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 "
in="SourceGraphic" />
<feBlend
id="feBlend4694"
result="fbSourceGraphic"
mode="multiply"
in2="BackgroundImage" />
<feColorMatrix
id="feColorMatrix4762"
values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
in="fbSourceGraphic"
result="fbSourceGraphicAlpha" />
<feColorMatrix
in="fbSourceGraphic"
result="colormatrix"
values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 5 -1 "
id="feColorMatrix4764" />
<feComposite
k4="0"
k3="0"
k1="0"
result="composite"
k2="0.3"
operator="arithmetic"
id="feComposite4766"
in2="colormatrix" />
</filter>
</defs>
<metadata
id="metadata12550">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
transform="matrix(0.3995566,0,0,1.0012215,-10.654365,-161.56849)">
<path
id="path33453"
d="M 26.616839,161.37987 H 145.85344 v 100.3961 H 26.616839 Z m 0,0"
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.32258889" />
</g>
<g
id="text977"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
aria-label="bId°°">
<path
id="path832"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 19.719656,97.809389 q 0,-0.44235 -0.14056,-0.667659 -0.14056,-0.225309 -0.415478,-0.225309 -0.276986,0 -0.419613,0.227376 -0.142627,0.225309 -0.142627,0.665592 0,0.438216 0.142627,0.665593 0.142627,0.227376 0.419613,0.227376 0.274918,0 0.415478,-0.225309 0.14056,-0.225309 0.14056,-0.66766 z m -1.118278,-0.86403 q 0.09095,-0.169498 0.250114,-0.260449 0.161231,-0.09095 0.372071,-0.09095 0.417545,0 0.657324,0.322461 0.239778,0.320393 0.239778,0.8847 0,0.572575 -0.241845,0.89917 -0.239779,0.324528 -0.659392,0.324528 -0.206705,0 -0.365869,-0.08888 -0.157096,-0.09095 -0.252181,-0.262516 v 0.291455 H 18.22104 v -3.216341 h 0.380338 z" />
<path
id="path834"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 20.784191,95.878758 h 1.71359 v 0.3514 h -0.646989 v 2.383317 h 0.646989 v 0.351399 h -1.71359 v -0.351399 h 0.646989 v -2.383317 h -0.646989 z" />
<path
id="path836"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="M 24.688862,96.945359 V 95.748533 H 25.0692 v 3.216341 h -0.380338 v -0.291455 q -0.09509,0.171566 -0.254248,0.262516 -0.157097,0.08888 -0.363802,0.08888 -0.419613,0 -0.661459,-0.324528 -0.239778,-0.326595 -0.239778,-0.89917 0,-0.564307 0.241845,-0.8847 0.241846,-0.322461 0.659392,-0.322461 0.208772,0 0.367936,0.09095 0.159163,0.08888 0.250114,0.260449 z m -1.118278,0.86403 q 0,0.442351 0.14056,0.66766 0.140559,0.225309 0.415478,0.225309 0.274919,0 0.417546,-0.227376 0.144694,-0.227377 0.144694,-0.665593 0,-0.440283 -0.144694,-0.665592 -0.142627,-0.227376 -0.417546,-0.227376 -0.274919,0 -0.415478,0.225309 -0.14056,0.225309 -0.14056,0.667659 z" />
<path
id="path838"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 26.735248,95.822947 q 0.134359,0 0.254248,0.05168 0.121956,0.04961 0.212907,0.144694 0.09302,0.09302 0.14056,0.21084 0.04961,0.117822 0.04961,0.254248 0,0.272851 -0.192236,0.46302 -0.192236,0.188103 -0.469222,0.188103 -0.279053,0 -0.465088,-0.186035 -0.186035,-0.186036 -0.186035,-0.465088 0,-0.276986 0.190169,-0.469222 0.190169,-0.192237 0.465088,-0.192237 z m 0,0.266651 q -0.163298,0 -0.279053,0.115755 -0.113688,0.113688 -0.113688,0.279053 0,0.165364 0.111621,0.276985 0.113688,0.111621 0.276986,0.111621 0.165364,0 0.28112,-0.113688 0.117822,-0.113688 0.117822,-0.274918 0,-0.163298 -0.115755,-0.279053 -0.115755,-0.115755 -0.279053,-0.115755 z" />
<path
id="path840"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 29.281863,95.822947 q 0.134358,0 0.254248,0.05168 0.121956,0.04961 0.212907,0.144694 0.09302,0.09302 0.140559,0.21084 0.04961,0.117822 0.04961,0.254248 0,0.272851 -0.192236,0.46302 -0.192237,0.188103 -0.469222,0.188103 -0.279053,0 -0.465088,-0.186035 -0.186035,-0.186036 -0.186035,-0.465088 0,-0.276986 0.190169,-0.469222 0.190169,-0.192237 0.465088,-0.192237 z m 0,0.266651 q -0.163298,0 -0.279053,0.115755 -0.113688,0.113688 -0.113688,0.279053 0,0.165364 0.111621,0.276985 0.113688,0.111621 0.276986,0.111621 0.165364,0 0.281119,-0.113688 0.117823,-0.113688 0.117823,-0.274918 0,-0.163298 -0.115756,-0.279053 -0.115755,-0.115755 -0.279052,-0.115755 z" />
</g>
<g
id="text977-5"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
aria-label="SONar">
<path
id="path843"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="M 19.715519,2.6868203 V 3.110567 Q 19.52535,2.9886106 19.333114,2.9265989 q -0.19017,-0.062012 -0.384473,-0.062012 -0.295589,0 -0.467155,0.1384928 -0.171566,0.1364258 -0.171566,0.3700032 0,0.2046387 0.111621,0.3121257 0.113688,0.1074869 0.42168,0.1798339 l 0.219108,0.049609 q 0.434082,0.1012858 0.63252,0.3183268 0.198437,0.217041 0.198437,0.5911784 0,0.4402832 -0.272852,0.6717936 -0.272851,0.2315104 -0.793749,0.2315104 -0.217041,0 -0.43615,-0.047542 -0.219108,-0.045475 -0.440283,-0.1384929 V 5.0970089 q 0.237712,0.1508952 0.448552,0.2211751 0.212907,0.07028 0.427881,0.07028 0.316259,0 0.491959,-0.1405599 0.1757,-0.1426269 0.1757,-0.396875 0,-0.2315104 -0.121956,-0.3534668 Q 19.252498,4.375606 18.952775,4.3094601 L 18.729533,4.2577837 Q 18.299585,4.160632 18.105282,3.9642616 17.910978,3.7678912 17.910978,3.437162 q 0,-0.4134114 0.276986,-0.6614583 0.279053,-0.2501139 0.740006,-0.2501139 0.177767,0 0.374138,0.041341 0.19637,0.039274 0.413411,0.1198895 z" />
<path
id="path845"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 22.040958,4.1275591 q 0,-0.6800618 -0.14056,-0.9715169 -0.138492,-0.291455 -0.456819,-0.291455 -0.31626,0 -0.45682,0.291455 -0.138493,0.2914551 -0.138493,0.9715169 0,0.6779948 0.138493,0.9694498 0.14056,0.2914551 0.45682,0.2914551 0.318327,0 0.456819,-0.289388 0.14056,-0.2914551 0.14056,-0.9715169 z m 0.436149,0 q 0,0.8061523 -0.256315,1.2030273 -0.254248,0.396875 -0.777213,0.396875 -0.522966,0 -0.777214,-0.394808 -0.254248,-0.3948079 -0.254248,-1.2050943 0,-0.8082194 0.254248,-1.2050943 0.256315,-0.396875 0.777214,-0.396875 0.522965,0 0.777213,0.396875 0.256315,0.3968749 0.256315,1.2050943 z" />
<path
id="path847"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 23.004207,2.5814003 h 0.529167 L 24.57517,5.1218136 V 2.5814003 h 0.403077 V 5.6675167 H 24.44908 L 23.407283,3.1271034 v 2.5404133 h -0.403076 z" />
<path
id="path849"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 26.714574,4.5037635 h -0.12609 q -0.332796,0 -0.502295,0.1178223 -0.167432,0.1157552 -0.167432,0.3472656 0,0.2087728 0.126091,0.324528 0.12609,0.1157552 0.349332,0.1157552 0.314193,0 0.494027,-0.217041 0.179834,-0.2191081 0.181901,-0.6035807 v -0.084749 z m 0.73794,-0.1570963 V 5.6675167 H 27.070108 V 5.3243852 q -0.121956,0.2067057 -0.307991,0.3059245 -0.183968,0.097152 -0.448552,0.097152 -0.353467,0 -0.564306,-0.1984375 -0.21084,-0.2005046 -0.21084,-0.5353678 0,-0.3865397 0.258382,-0.5870443 0.260449,-0.2005045 0.762744,-0.2005045 h 0.510563 V 4.1461626 Q 27.068041,3.869177 26.929548,3.7451535 26.791055,3.619063 26.487198,3.619063 q -0.194303,0 -0.392741,0.055811 -0.198437,0.05581 -0.386539,0.1632975 V 3.4578326 q 0.210839,-0.080615 0.403076,-0.1198893 0.194303,-0.041341 0.376204,-0.041341 0.287321,0 0.489893,0.084749 0.204638,0.084749 0.330729,0.254248 0.07855,0.1033529 0.111621,0.2563151 0.03307,0.1508952 0.03307,0.4547526 z" />
<path
id="path851"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="M 30.197566,3.8299029 Q 30.07561,3.7348182 29.949519,3.69141 29.823429,3.648002 29.672533,3.648002 q -0.355533,0 -0.543636,0.2232422 -0.188102,0.2232422 -0.188102,0.6449219 V 5.6675167 H 28.55839 v -2.315104 h 0.382405 v 0.4526855 q 0.09508,-0.2459798 0.291455,-0.3762044 0.198438,-0.1322917 0.469222,-0.1322917 0.14056,0 0.262516,0.03514 0.121957,0.03514 0.233578,0.109554 z" />
</g>
<g
id="text4860"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:Sudo;-inkscape-font-specification:'Sudo, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<g
id="flowRoot1009"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:125%;font-family:Sudo;-inkscape-font-specification:'Sudo, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</svg>

+ 0
- 153
plugins/community/repos/Bidoo/res/SONARtemp.svg View File

@@ -1,153 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg12553"
version="1.1"
viewBox="0 0 47.625 100.54166"
height="380"
width="180"
sodipodi:docname="SONARtemp.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview118"
showgrid="true"
inkscape:zoom="1.5750457"
inkscape:cx="-76.570764"
inkscape:cy="134.51614"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg12553">
<inkscape:grid
type="xygrid"
id="grid929" />
</sodipodi:namedview>
<defs
id="defs12547">
<linearGradient
id="linearGradient4708"
osb:paint="solid">
<stop
style="stop-color:#ececec;stop-opacity:1;"
offset="0"
id="stop4706" />
</linearGradient>
<filter
style="color-interpolation-filters:sRGB"
inkscape:label="Opacity"
id="filter4696">
<feColorMatrix
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 "
result="colormatrix"
id="feColorMatrix4692" />
<feBlend
in2="BackgroundImage"
mode="multiply"
result="fbSourceGraphic"
id="feBlend4694" />
<feColorMatrix
result="fbSourceGraphicAlpha"
in="fbSourceGraphic"
values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
id="feColorMatrix4762" />
<feColorMatrix
id="feColorMatrix4764"
values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 5 -1 "
result="colormatrix"
in="fbSourceGraphic" />
<feComposite
in2="colormatrix"
id="feComposite4766"
operator="arithmetic"
k2="0.3"
result="composite"
k1="0"
k3="0"
k4="0" />
</filter>
</defs>
<metadata
id="metadata12550">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="matrix(0.3995566,0,0,1.0012215,-10.654365,-161.56849)"
id="layer1">
<path
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.32258889"
d="M 26.616839,161.37987 H 145.85344 v 100.3961 H 26.616839 Z m 0,0"
id="path33453"
inkscape:connector-curvature="0" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="17.822098"
y="98.964874"
id="text977"
inkscape:transform-center-x="-1.5441791"
inkscape:transform-center-y="0.35634903"><tspan
sodipodi:role="line"
id="tspan975"
x="17.822098"
y="98.964874"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px">bId°°</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="17.623657"
y="5.6675167"
id="text977-5"><tspan
sodipodi:role="line"
id="tspan975-3"
x="17.623657"
y="5.6675167"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px">SONar</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:Sudo;-inkscape-font-specification:'Sudo, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="69.335617"
y="97.895828"
id="text4860"><tspan
sodipodi:role="line"
id="tspan4858"
x="69.335617"
y="100.54166"
style="stroke-width:0.26458332px" /></text>
<flowRoot
xml:space="preserve"
id="flowRoot1009"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:125%;font-family:Sudo;-inkscape-font-specification:'Sudo, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"><flowRegion
id="flowRegion1011"><rect
id="rect1013"
width="428.17667"
height="304.19095"
x="181.82332"
y="40" /></flowRegion><flowPara
id="flowPara1015" /></flowRoot></svg>

+ 8
- 8
plugins/community/repos/Bidoo/src/Bidoo.cpp View File

@@ -8,8 +8,8 @@ RACK_PLUGIN_MODEL_DECLARE(Bidoo, CHUTE);
RACK_PLUGIN_MODEL_DECLARE(Bidoo, LATE);
RACK_PLUGIN_MODEL_DECLARE(Bidoo, LOURDE);
RACK_PLUGIN_MODEL_DECLARE(Bidoo, ACNE);
// RACK_PLUGIN_MODEL_DECLARE(Bidoo, OUAIVE); // GPL
// RACK_PLUGIN_MODEL_DECLARE(Bidoo, CANARD); // GPL
RACK_PLUGIN_MODEL_DECLARE(Bidoo, OUAIVE);
RACK_PLUGIN_MODEL_DECLARE(Bidoo, CANARD);
RACK_PLUGIN_MODEL_DECLARE(Bidoo, DUKE);
RACK_PLUGIN_MODEL_DECLARE(Bidoo, MOIRE);
RACK_PLUGIN_MODEL_DECLARE(Bidoo, FORK);
@@ -20,10 +20,10 @@ RACK_PLUGIN_MODEL_DECLARE(Bidoo, LIMBO);
RACK_PLUGIN_MODEL_DECLARE(Bidoo, PERCO);
RACK_PLUGIN_MODEL_DECLARE(Bidoo, BAR);
RACK_PLUGIN_MODEL_DECLARE(Bidoo, ZINC);
// RACK_PLUGIN_MODEL_DECLARE(Bidoo, DFUZE); // clashes with AS modules
//RACK_PLUGIN_MODEL_DECLARE(Bidoo, HORUS);
RACK_PLUGIN_MODEL_DECLARE(Bidoo, DFUZE);
RACK_PLUGIN_MODEL_DECLARE(Bidoo, VOID);
RACK_PLUGIN_MODEL_DECLARE(Bidoo, SIGMA);
RACK_PLUGIN_MODEL_DECLARE(Bidoo, RABBIT);

RACK_PLUGIN_INIT(Bidoo) {
RACK_PLUGIN_INIT_ID();
@@ -36,8 +36,8 @@ RACK_PLUGIN_INIT(Bidoo) {
RACK_PLUGIN_MODEL_ADD(Bidoo, LATE);
RACK_PLUGIN_MODEL_ADD(Bidoo, LOURDE);
RACK_PLUGIN_MODEL_ADD(Bidoo, ACNE);
// RACK_PLUGIN_MODEL_ADD(Bidoo, OUAIVE); // GPL
// RACK_PLUGIN_MODEL_ADD(Bidoo, CANARD); // GPL
RACK_PLUGIN_MODEL_ADD(Bidoo, OUAIVE);
RACK_PLUGIN_MODEL_ADD(Bidoo, CANARD);
RACK_PLUGIN_MODEL_ADD(Bidoo, DUKE);
RACK_PLUGIN_MODEL_ADD(Bidoo, MOIRE);
RACK_PLUGIN_MODEL_ADD(Bidoo, FORK);
@@ -48,8 +48,8 @@ RACK_PLUGIN_INIT(Bidoo) {
RACK_PLUGIN_MODEL_ADD(Bidoo, PERCO);
RACK_PLUGIN_MODEL_ADD(Bidoo, BAR);
RACK_PLUGIN_MODEL_ADD(Bidoo, ZINC);
// RACK_PLUGIN_MODEL_ADD(Bidoo, DFUZE); // clashes with AS modules
//RACK_PLUGIN_MODEL_ADD(Bidoo, HORUS);
RACK_PLUGIN_MODEL_ADD(Bidoo, DFUZE);
RACK_PLUGIN_MODEL_ADD(Bidoo, VOID);
RACK_PLUGIN_MODEL_ADD(Bidoo, SIGMA);
RACK_PLUGIN_MODEL_ADD(Bidoo, RABBIT);
}

+ 118
- 74
plugins/community/repos/Bidoo/src/CANARD.cpp View File

@@ -2,14 +2,13 @@
#include "dsp/digital.hpp"
#include "BidooComponents.hpp"
#include "osdialog.h"
#include "dep/audiofile/AudioFile.h"
#include "dep/dr_wav/dr_wav.h"
#include <vector>
#include "cmath"
#include <iomanip> // setprecision
#include <sstream> // stringstream
#include <algorithm>
#include "window.hpp"
#include "Gist.h"

using namespace std;

@@ -57,7 +56,10 @@ struct CANARD : Module {

bool play = false;
bool record = false;
AudioFile<float> playBuffer, recordBuffer;
unsigned int channels = 2;
unsigned int sampleRate = 0;
drwav_uint64 totalSampleCount = 0;
vector<vector<float>> playBuffer, recordBuffer;
float samplePos = 0.0f, sampleStart = 0.0f, loopLength = 0.0f, fadeLenght = 0.0f, fadeCoeff = 1.0f, speedFactor = 1.0f;
size_t prevPlayedSlice = 0;
size_t playedSlice = 0;
@@ -86,16 +88,12 @@ struct CANARD : Module {
bool newStop = false;

CANARD() : Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) {
recordBuffer.setBitDepth(16);
recordBuffer.setSampleRate(engineGetSampleRate());
recordBuffer.setNumChannels(2);
recordBuffer.samples[0].resize(0);
recordBuffer.samples[1].resize(0);
playBuffer.setBitDepth(16);
playBuffer.setSampleRate(engineGetSampleRate());
playBuffer.setNumChannels(2);
playBuffer.samples[0].resize(0);
playBuffer.samples[1].resize(0);
playBuffer.resize(2);
playBuffer[0].resize(0);
playBuffer[1].resize(0);
recordBuffer.resize(2);
recordBuffer[0].resize(0);
recordBuffer[1].resize(0);
}

void step() override;
@@ -108,7 +106,6 @@ struct CANARD : Module {
json_t *rootJ = json_object();
// lastPath
json_object_set_new(rootJ, "lastPath", json_string(lastPath.c_str()));

json_t *slicesJ = json_array();
for (size_t i = 0; i<slices.size() ; i++) {
json_t *sliceJ = json_integer(slices[i]);
@@ -126,7 +123,7 @@ struct CANARD : Module {
waveFileName = stringFilename(lastPath);
waveExtension = stringExtension(lastPath);
loadSample(lastPath);
if (playBuffer.getNumSamplesPerChannel()>0) {
if (totalSampleCount>0) {
json_t *slicesJ = json_object_get(rootJ, "slices");
if (slicesJ) {
size_t i;
@@ -143,17 +140,30 @@ struct CANARD : Module {

void CANARD::loadSample(std::string path) {
loading = true;
playBuffer.setNumChannels(1);
if (playBuffer.load(path.c_str())) {
unsigned int c;
unsigned int sr;
drwav_uint64 sc;
float* pSampleData;
pSampleData = drwav_open_and_read_file_f32(path.c_str(), &c, &sr, &sc);
if (pSampleData != NULL) {
lastPath = path;
waveFileName = stringFilename(path);
waveExtension = stringExtension(path);
channels = c;
sampleRate = sr;
slices.clear();
slices.push_back(0);
if (playBuffer.getNumChannels() == 1) {
playBuffer.setNumChannels(2);
playBuffer.samples[1] = playBuffer.samples[0];
playBuffer[0].clear();
playBuffer[1].clear();
for (unsigned int i=0; i < sc; i = i + c) {
playBuffer[0].push_back(pSampleData[i]);
if (channels == 2)
playBuffer[1].push_back((float)pSampleData[i+1]);
else
playBuffer[1].push_back((float)pSampleData[i]);
}
totalSampleCount = playBuffer[0].size();
drwav_free(pSampleData);
}
loading = false;
}
@@ -162,15 +172,15 @@ void CANARD::calcLoop() {
prevPlayedSlice = index;
index = 0;
int sliceStart = 0;;
int sliceEnd = playBuffer.getNumSamplesPerChannel() > 0 ? playBuffer.getNumSamplesPerChannel() - 1 : 0;
int sliceEnd = totalSampleCount > 0 ? totalSampleCount - 1 : 0;
if ((params[MODE_PARAM].value == 1) && (slices.size()>0))
{
index = round(clamp(params[SLICE_PARAM].value + inputs[SLICE_INPUT].value, 0.0f,10.0f)*(slices.size()-1)/10);
sliceStart = slices[index];
sliceEnd = (index < (slices.size() - 1)) ? (slices[index+1] - 1) : (playBuffer.getNumSamplesPerChannel() - 1);
sliceEnd = (index < (slices.size() - 1)) ? (slices[index+1] - 1) : (totalSampleCount - 1);
}

if (playBuffer.getNumSamplesPerChannel() > 0) {
if (totalSampleCount > 0) {
sampleStart = rescale(clamp(inputs[SAMPLE_START_INPUT].value + params[SAMPLE_START_PARAM].value, 0.0f, 10.0f), 0.0f, 10.0f, sliceStart, sliceEnd);
loopLength = clamp(rescale(clamp(inputs[LOOP_LENGTH_INPUT].value + params[LOOP_LENGTH_PARAM].value, 0.0f, 10.0f), 0.0f, 10.0f, 0.0f, sliceEnd - sliceStart + 1),1.0f,sliceEnd-sampleStart+1);
fadeLenght = rescale(clamp(inputs[FADE_INPUT].value + params[FADE_PARAM].value, 0.0f, 10.0f), 0.0f, 10.0f,0.0f, floor(loopLength/2));
@@ -200,8 +210,8 @@ void CANARD::step() {
if (clearTrigger.process(inputs[CLEAR_INPUT].value + params[CLEAR_PARAM].value))
{
mylock.lock();
playBuffer.samples[0].clear();
playBuffer.samples[1].clear();
playBuffer[0].clear();
playBuffer[1].clear();
slices.clear();
mylock.unlock();
lastPath = "";
@@ -214,18 +224,19 @@ void CANARD::step() {
if ((size_t)selected<(slices.size()-1)) {
nbSample = slices[selected + 1] - slices[selected] - 1;
mylock.lock();
playBuffer.samples[0].erase(playBuffer.samples[0].begin() + slices[selected], playBuffer.samples[0].begin() + slices[selected + 1]-1);
playBuffer.samples[1].erase(playBuffer.samples[1].begin() + slices[selected], playBuffer.samples[1].begin() + slices[selected + 1]-1);
playBuffer[0].erase(playBuffer[0].begin() + slices[selected], playBuffer[0].begin() + slices[selected + 1]-1);
playBuffer[1].erase(playBuffer[1].begin() + slices[selected], playBuffer[1].begin() + slices[selected + 1]-1);
mylock.unlock();
}
else {
nbSample = playBuffer.getNumSamplesPerChannel() - slices[selected];
nbSample = totalSampleCount - slices[selected];
mylock.lock();
playBuffer.samples[0].erase(playBuffer.samples[0].begin() + slices[selected], playBuffer.samples[0].end());
playBuffer.samples[1].erase(playBuffer.samples[1].begin() + slices[selected], playBuffer.samples[1].end());
playBuffer[0].erase(playBuffer[0].begin() + slices[selected], playBuffer[0].end());
playBuffer[1].erase(playBuffer[1].begin() + slices[selected], playBuffer[1].end());
mylock.unlock();
}
slices.erase(slices.begin()+selected);
totalSampleCount = playBuffer[0].size();
for (size_t i = selected; i < slices.size(); i++)
{
slices[i] = slices[i]-nbSample;
@@ -270,7 +281,14 @@ void CANARD::step() {
mylock.lock();
slices.clear();
slices.push_back(0);
playBuffer.setAudioBuffer(recordBuffer.samples);
playBuffer.resize(2);
playBuffer[0].resize((int)recordBuffer[0].size());
playBuffer[1].resize((int)recordBuffer[0].size());
for (int i = 0; i < (int)recordBuffer[0].size(); i++) {
playBuffer[0][i] = recordBuffer[0][i];
playBuffer[1][i] = recordBuffer[1][i];
}
totalSampleCount = playBuffer[0].size();
mylock.unlock();
lastPath = "";
waveFileName = "";
@@ -278,14 +296,15 @@ void CANARD::step() {
}
else {
mylock.lock();
slices.push_back(playBuffer.getNumSamplesPerChannel() > 0 ? (playBuffer.getNumSamplesPerChannel()-1) : 0);
playBuffer.samples[0].insert(playBuffer.samples[0].end(), recordBuffer.samples[0].begin(), recordBuffer.samples[0].end());
playBuffer.samples[1].insert(playBuffer.samples[1].end(), recordBuffer.samples[1].begin(), recordBuffer.samples[1].end());
slices.push_back(totalSampleCount > 0 ? (totalSampleCount-1) : 0);
playBuffer[0].insert(playBuffer[0].end(), recordBuffer[0].begin(), recordBuffer[0].end());
playBuffer[1].insert(playBuffer[1].end(), recordBuffer[1].begin(), recordBuffer[1].end());
totalSampleCount = playBuffer[0].size();
mylock.unlock();
}
mylock.lock();
recordBuffer.samples[0].resize(0);
recordBuffer.samples[1].resize(0);
recordBuffer[0].resize(0);
recordBuffer[1].resize(0);
mylock.unlock();
lights[REC_LIGHT].value = 0.0f;
}
@@ -294,8 +313,8 @@ void CANARD::step() {

if (record) {
mylock.lock();
recordBuffer.samples[0].push_back(inputs[INL_INPUT].value/10);
recordBuffer.samples[1].push_back(inputs[INR_INPUT].value/10);
recordBuffer[0].push_back(inputs[INL_INPUT].value/10);
recordBuffer[1].push_back(inputs[INR_INPUT].value/10);
mylock.unlock();
}

@@ -389,7 +408,7 @@ void CANARD::step() {

if (play) {
newStop = true;
if (samplePos<playBuffer.getNumSamplesPerChannel()) {
if (samplePos<totalSampleCount) {
if (fadeLenght>1000) {
if ((samplePos-sampleStart)<fadeLenght)
fadeCoeff = rescale(samplePos-sampleStart,0.0f,fadeLenght,0.0f,1.0f);
@@ -401,8 +420,8 @@ void CANARD::step() {
else
fadeCoeff = 1.0f;

outputs[OUTL_OUTPUT].value = playBuffer.samples[0][floor(samplePos)]*fadeCoeff*10;
outputs[OUTR_OUTPUT].value = playBuffer.samples[1][floor(samplePos)]*fadeCoeff*10;
outputs[OUTL_OUTPUT].value = playBuffer[0][floor(samplePos)]*fadeCoeff*10;
outputs[OUTR_OUTPUT].value = playBuffer[1][floor(samplePos)]*fadeCoeff*10;
}
}
else {
@@ -439,7 +458,7 @@ struct CANARDDisplay : OpaqueWidget {
void onMouseDown(EventMouseDown &e) override {
if (module->slices.size()>0) {
refX = e.pos.x;
refIdx = ((e.pos.x - zoomLeftAnchor)/zoomWidth)*(float)module->playBuffer.getNumSamplesPerChannel();
refIdx = ((e.pos.x - zoomLeftAnchor)/zoomWidth)*(float)module->totalSampleCount;
module->addSliceMarker = refIdx;
auto lower = std::lower_bound(module->slices.begin(), module->slices.end(), refIdx);
module->selected = distance(module->slices.begin(),lower-1);
@@ -478,8 +497,8 @@ struct CANARDDisplay : OpaqueWidget {

void draw(NVGcontext *vg) override {
module->mylock.lock();
std::vector<float> vL(module->playBuffer.samples[0]);
std::vector<float> vR(module->playBuffer.samples[1]);
std::vector<float> vL(module->playBuffer[0]);
std::vector<float> vR(module->playBuffer[1]);
std::vector<int> s(module->slices);
module->mylock.unlock();
size_t nbSample = vL.size();
@@ -490,7 +509,7 @@ struct CANARDDisplay : OpaqueWidget {
{
nvgBeginPath(vg);
nvgStrokeWidth(vg, 2);
if (module->playBuffer.getNumSamplesPerChannel()>0) {
if (module->totalSampleCount>0) {
nvgMoveTo(vg, module->samplePos * zoomWidth / nbSample + zoomLeftAnchor, 0);
nvgLineTo(vg, module->samplePos * zoomWidth / nbSample + zoomLeftAnchor, 2*height+10);
}
@@ -674,7 +693,7 @@ CANARDWidget::CANARDWidget(CANARD *module) : ModuleWidget(module) {
addInput(Port::create<PJ301MPort>(Vec(portX0[1]-4, 277), Port::INPUT, module, CANARD::FADE_INPUT));
addInput(Port::create<PJ301MPort>(Vec(portX0[2]-4, 277), Port::INPUT, module, CANARD::SLICE_INPUT));
addInput(Port::create<PJ301MPort>(Vec(portX0[3]-4, 277), Port::INPUT, module, CANARD::CLEAR_INPUT));
addParam(ParamWidget::create<BidooBlueTrimpot>(Vec(portX0[4]-1, 280), module, CANARD::THRESHOLD_PARAM, 0.0001f, 0.05f, 0.05f));
addParam(ParamWidget::create<BidooBlueTrimpot>(Vec(portX0[4]-1, 280), module, CANARD::THRESHOLD_PARAM, 0.01f, 10.0f, 1.0f));

addParam(ParamWidget::create<CKSS>(Vec(90, 325), module, CANARD::MODE_PARAM, 0.0f, 1.0f, 0.0f));

@@ -714,22 +733,33 @@ struct CANARDTransientDetect : MenuItem {
void onAction(EventAction &e) override {
canardModule->slices.clear();
canardModule->slices.push_back(0);
int i = 0;
int size = 256;
Gist<float> gist = Gist<float>(size,engineGetSampleRate());
unsigned int i = 0;
unsigned int size = 256;
vector<float>::const_iterator first;
vector<float>::const_iterator last;
while (i+size<canardModule->playBuffer.getNumSamplesPerChannel()) {
first = canardModule->playBuffer.samples[0].begin() + i;
last = canardModule->playBuffer.samples[0].begin() + i + size;
float prevNrgy = 0.0f;
while (i+size<canardModule->totalSampleCount) {
first = canardModule->playBuffer[0].begin() + i;
last = canardModule->playBuffer[0].begin() + i + size;
vector<float> newVec(first, last);
gist.processAudioFrame(newVec);
if (((gist.energyDifference()/size)>canardModule->params[CANARD::THRESHOLD_PARAM].value)
&& ((gist.complexSpectralDifference()/size)>canardModule->params[CANARD::THRESHOLD_PARAM].value)
&& ((gist.zeroCrossingRate()/size)>canardModule->params[CANARD::THRESHOLD_PARAM].value)) {
canardModule->slices.push_back(i);
float nrgy = 0.0f;
float zcRate = 0.0f;
unsigned int zcIdx = 0;
bool first = true;
for (unsigned int k = 0; k < size; k++) {
nrgy += 100*newVec[k]*newVec[k]/size;
if (newVec[k]==0.0f) {
zcRate += 1;
if (first) {
zcIdx = k;
first = false;
}
}
}
if ((nrgy > canardModule->params[CANARD::THRESHOLD_PARAM].value) && (nrgy > 10*prevNrgy))
canardModule->slices.push_back(i+zcIdx);
i+=size;
prevNrgy = nrgy;
}
}
};
@@ -748,20 +778,34 @@ struct CANARDLoadSample : MenuItem {
};

struct CANARDSaveSample : MenuItem {
CANARDWidget *canardWidget;
CANARD *canardModule;
void onAction(EventAction &e) override {
std::string dir = canardModule->lastPath.empty() ? assetLocal("") : stringDirectory(canardModule->lastPath);
char *path = osdialog_file(OSDIALOG_SAVE, dir.c_str(), (canardModule->waveFileName).c_str(), NULL);
if (path) {
canardModule->lastPath = path;
canardModule->waveFileName = stringDirectory(path);
canardModule->waveExtension = stringExtension(path);
canardModule->playBuffer.setSampleRate(engineGetSampleRate());
canardModule->playBuffer.save(path);
free(path);
}
}
CANARDWidget *canardWidget;
CANARD *canardModule;
void onAction(EventAction &e) override {
std::string dir = canardModule->lastPath.empty() ? assetLocal("") : stringDirectory(canardModule->lastPath);
std::string fileName = canardModule->waveFileName.empty() ? "temp.wav" : canardModule->waveFileName;
char *path = osdialog_file(OSDIALOG_SAVE, dir.c_str(), (fileName).c_str(), NULL);
if (path) {
canardModule->lastPath = path;
canardModule->waveFileName = stringDirectory(path);
canardModule->waveExtension = stringExtension(path);
drwav_data_format format;
format.container = drwav_container_riff;
format.format = DR_WAVE_FORMAT_PCM;
format.channels = 2;
format.sampleRate = engineGetSampleRate();
format.bitsPerSample = 32;
drwav* pWav = drwav_open_file_write(path, &format);
int *pSamples = new int[2*canardModule->totalSampleCount];
for (unsigned int i = 0; i < canardModule->totalSampleCount; i++) {
pSamples[2*i]= floor(canardModule->playBuffer[0][i]*2147483647);
pSamples[2*i+1]= floor(canardModule->playBuffer[1][i]*2147483647);
}
drwav_write(pWav, 2*canardModule->totalSampleCount, pSamples);
drwav_close(pWav);
free(path);
delete [] pSamples;
}
}
};

Menu *CANARDWidget::createContextMenu() {
@@ -775,7 +819,7 @@ Menu *CANARDWidget::createContextMenu() {

MenuLabel *spacerLabel;

if ((canardModule->selected>=0) || (canardModule->playBuffer.getNumSamplesPerChannel()>=0)) {
if ((canardModule->selected>=0) || (canardModule->totalSampleCount>0)) {
spacerLabel = new MenuLabel();
menu->addChild(spacerLabel);
}
@@ -788,7 +832,7 @@ Menu *CANARDWidget::createContextMenu() {
menu->addChild(deleteItem);
}

if (canardModule->playBuffer.getNumSamplesPerChannel()>=0) {
if (canardModule->totalSampleCount>0) {
CANARDAddSliceMarker *addSliceItem = new CANARDAddSliceMarker();
addSliceItem->text = "Add slice marker";
addSliceItem->canardWidget = this;
@@ -831,6 +875,6 @@ Menu *CANARDWidget::createContextMenu() {
using namespace rack_plugin_Bidoo;

RACK_PLUGIN_MODEL_INIT(Bidoo, CANARD) {
Model *modelCANARD = Model::create<CANARD, CANARDWidget>("Bidoo","cANARd", "cANARd sampler", SAMPLER_TAG);
Model *modelCANARD = Model::create<CANARD, CANARDWidget>("Bidoo","cANARd", "cANARd sampler", SAMPLER_TAG, GRANULAR_TAG, RECORDING_TAG);
return modelCANARD;
}

+ 147
- 0
plugins/community/repos/Bidoo/src/DFUZE.cpp View File

@@ -0,0 +1,147 @@
#include "Bidoo.hpp"
#include "BidooComponents.hpp"
#include "dsp/ringbuffer.hpp"
#include "dep/freeverb/revmodel.hpp"
#include "dep/filters/smbPitchShift.hpp"
#include "dsp/digital.hpp"

using namespace std;

namespace rack_plugin_Bidoo {

struct DFUZE : Module {
enum ParamIds {
SIZE_PARAM,
DAMP_PARAM,
FREEZE_PARAM,
WIDTH_PARAM,
DRY_PARAM,
WET_PARAM,
SHIMM_PARAM,
NUM_PARAMS
};
enum InputIds {
IN_L_INPUT,
IN_R_INPUT,
SIZE_INPUT,
DAMP_INPUT,
FREEZE_INPUT,
WIDTH_INPUT,
SHIMM_INPUT,
NUM_INPUTS
};
enum OutputIds {
OUT_L_OUTPUT,
OUT_R_OUTPUT,
NUM_OUTPUTS
};
enum LightIds {
NUM_LIGHTS
};
DoubleRingBuffer<float,4096> in_L_Buffer, in_R_Buffer;
DoubleRingBuffer<float,4096> pin_L_Buffer, pin_R_Buffer;
revmodel revprocessor;
SchmittTrigger freezeTrigger;
bool freeze = false;
float sr = engineGetSampleRate();

DFUZE() : Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) {

}

void step() override;
};

void DFUZE::step() {
float outL = 0.0f, outR = 0.0f;
float wOutL = 0.0f, wOutR = 0.0f;
float inL = 0.0f, inR = 0.0f;

// if (sr != engineGetSampleRate()) {
// revprocessor.setsamplerate(engineGetSampleRate());
// in_L_Buffer.clear();
// in_R_Buffer.clear();
// pin_L_Buffer.clear();
// pin_R_Buffer.clear();
// sr = engineGetSampleRate();
// }

revprocessor.setdamp(clamp(params[DAMP_PARAM].value+inputs[DAMP_INPUT].value,0.0f,1.0f));
revprocessor.setroomsize(clamp(params[SIZE_PARAM].value+inputs[SIZE_INPUT].value,0.0f,1.0f));
revprocessor.setwet(clamp(params[WET_PARAM].value,0.0f,1.0f));
revprocessor.setdry(clamp(params[DRY_PARAM].value,0.0f,1.0f));
revprocessor.setwidth(clamp(params[WIDTH_PARAM].value+inputs[WIDTH_INPUT].value,0.0f,1.0f));

if (freezeTrigger.process(params[FREEZE_PARAM].value + inputs[FREEZE_INPUT].value )) freeze = !freeze;

revprocessor.setmode(freeze?1.0:0.0);

inL = inputs[IN_L_INPUT].value;
inR = inputs[IN_R_INPUT].value;

if (pin_L_Buffer.size()>0) {
revprocessor.process(inL, inR, params[SHIMM_PARAM].value * (*pin_L_Buffer.startData()) * 5, clamp(params[SHIMM_PARAM].value+inputs[SHIMM_INPUT].value,0.0f,0.08f) * (*pin_R_Buffer.startData()) * 5, outL, outR, wOutL, wOutR);
pin_L_Buffer.startIncr(1);
pin_R_Buffer.startIncr(1);
}
else {
revprocessor.process(inL, inR, 0.0f, 0.0f, outL, outR, wOutL, wOutR);
}

in_L_Buffer.push(wOutL/10);
in_R_Buffer.push(wOutR/10);

if (in_L_Buffer.full()) {
smbPitchShift(2.0f, in_L_Buffer.size(), 2048, 4, engineGetSampleRate(), in_L_Buffer.startData(), pin_L_Buffer.endData());
smbPitchShift(2.0f, in_R_Buffer.size(), 2048, 4, engineGetSampleRate(), in_R_Buffer.startData(), pin_R_Buffer.endData());
pin_L_Buffer.endIncr(in_L_Buffer.size());
pin_R_Buffer.endIncr(in_L_Buffer.size());
in_L_Buffer.clear();
in_R_Buffer.clear();
}

outputs[OUT_L_OUTPUT].value = outL;
outputs[OUT_R_OUTPUT].value = outR;
}



struct DFUZEWidget : ModuleWidget {
DFUZEWidget(DFUZE *module) : ModuleWidget(module) {
setPanel(SVG::load(assetPlugin(plugin, "res/DFUZE.svg")));

addChild(Widget::create<ScrewSilver>(Vec(RACK_GRID_WIDTH, 0)));
addChild(Widget::create<ScrewSilver>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, 0)));
addChild(Widget::create<ScrewSilver>(Vec(RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
addChild(Widget::create<ScrewSilver>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));

addParam(ParamWidget::create<BidooBlueKnob>(Vec(13, 50), module, DFUZE::SIZE_PARAM, 0.0f, 1.0f, 0.5f));
addParam(ParamWidget::create<BidooBlueKnob>(Vec(13, 95), module, DFUZE::DAMP_PARAM, 0.0f, 1.0f, 0.5f));
addParam(ParamWidget::create<BidooBlueKnob>(Vec(13, 140), module, DFUZE::WIDTH_PARAM, 0.0f, 1.0f, 0.5f));
addParam(ParamWidget::create<BidooBlueKnob>(Vec(13, 185), module, DFUZE::DRY_PARAM, 0.0f, 1.0f, 0.0f));
addParam(ParamWidget::create<BidooBlueKnob>(Vec(63, 185), module, DFUZE::WET_PARAM, 0.0f, 1.0f, 1.0f));
addParam(ParamWidget::create<BidooBlueKnob>(Vec(13, 230), module, DFUZE::SHIMM_PARAM, 0.0f, 0.08f, 0.0f));
addParam(ParamWidget::create<BlueCKD6>(Vec(13, 276), module, DFUZE::FREEZE_PARAM, 0.0f, 10.0f, 0.0f));

addInput(Port::create<PJ301MPort>(Vec(65.0f, 52.0f), Port::INPUT, module, DFUZE::SIZE_INPUT));
addInput(Port::create<PJ301MPort>(Vec(65.0f, 97.0f), Port::INPUT, module, DFUZE::DAMP_INPUT));
addInput(Port::create<PJ301MPort>(Vec(65.0f, 142.0f), Port::INPUT, module, DFUZE::WIDTH_INPUT));
addInput(Port::create<PJ301MPort>(Vec(65.0f, 232.0f), Port::INPUT, module, DFUZE::SHIMM_INPUT));
addInput(Port::create<PJ301MPort>(Vec(65.0f, 277.0f), Port::INPUT, module, DFUZE::FREEZE_INPUT));

//Changed ports opposite way around
addInput(Port::create<TinyPJ301MPort>(Vec(24.0f, 319.0f), Port::INPUT, module, DFUZE::IN_L_INPUT));
addInput(Port::create<TinyPJ301MPort>(Vec(24.0f, 339.0f), Port::INPUT, module, DFUZE::IN_R_INPUT));
addOutput(Port::create<TinyPJ301MPort>(Vec(78.0f, 319.0f),Port::OUTPUT, module, DFUZE::OUT_L_OUTPUT));
addOutput(Port::create<TinyPJ301MPort>(Vec(78.0f, 339.0f),Port::OUTPUT, module, DFUZE::OUT_R_OUTPUT));
}
};

} // namespace rack_plugin_Bidoo

using namespace rack_plugin_Bidoo;

RACK_PLUGIN_MODEL_INIT(Bidoo, DFUZE) {
Model *modelDFUZE = Model::create<DFUZE, DFUZEWidget>("Bidoo", "dFUZE", "dFUZE reverberator", REVERB_TAG, EFFECT_TAG);
return modelDFUZE;
}

+ 0
- 238
plugins/community/repos/Bidoo/src/HORUS.cpp View File

@@ -1,238 +0,0 @@
// #include "Bidoo.hpp"
// #include "BidooComponents.hpp"
// #include "dsp/samplerate.hpp"
// #include "dsp/decimator.hpp"
// #include "dsp/filter.hpp"
// #include "dsp/ringbuffer.hpp"
// #include "dsp/digital.hpp"
// #include <math.h>
//
// #define BOTTOM_FREQ 100
// #define BSZ 65536
// #define ROUND(n) ((int)((double)(n)+0.5))
// #define PIN(n,min,max) ((n) > (max) ? max : ((n) < (min) ? (min) : (n)))
// #define MODF(n,i,f) ((i) = (int)(n), (f) = (n) - (double)(i))
//
// enum
// {
// kMixMono,
// kMixWetOnly,
// kMixWetLeft,
// kMixWetRight,
// kMixWetLeft75,
// kMixWetRight75,
// kMixStereo
// };
//
// #define NUM_MIX_MODES 7
// #define NUM_DELAYS 11
//
// using namespace std;
//
// struct HORUS : Module {
// enum ParamIds {
// RATE_PARAM,
// WIDTH_PARAM,
// FEEDBACK_PARAM,
// DELAY_PARAM,
// MIXMODE_PARAM,
// NUM_PARAMS
// };
// enum InputIds {
// L_INPUT,
// R_INPUT,
// NUM_INPUTS
// };
// enum OutputIds {
// L_OUTPUT,
// R_OUTPUT,
// NUM_OUTPUTS
// };
// enum LightIds {
// NUM_LIGHTS
// };
//
// void setRate (float v);
// void setWidth (float v);
// void setFeedback (float v);
// void setDelay (float v);
// void setMixMode (float v);
// void setSweep(void);
//
// float _paramSweepRate = 0.2f;
// float _paramWidth = 0.3f;
// float _paramFeedback = 0.0f;
// float _paramDelay = 0.2f;
// float _paramMixMode = 0.0f;
// double _sweepRate = 0.2;
// double _feedback = 0.0;
// double _feedbackPhase = 1.0;
// int _sweepSamples = 0;
// int _delaySamples = 22;
// double _minSweepSamples;
// double _maxSweepSamples;
// int _mixMode = 0;
// double *_buf = new double[BSZ];
// int _fp = 0;
// double _step;
// double _sweep = 0.0;
//
//
// double _mixLeftWet = 0.5f;
// double _mixLeftDry = 0.5f;
// double _mixRightWet = 0.5f;
// double _mixRightDry = 0.5f;
//
//
// HORUS() : Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) {
// }
//
// ~HORUS() {
// if( _buf )
// delete[] _buf;
// }
//
// void step() override;
// };
//
// void HORUS::setSweep()
// {
// _step = (double)(_sweepSamples * 2.0 * _sweepRate) / (double)engineGetSampleRate();
// if( _step <= 1.0 )
// {
// printf( "_sweepSamples: %i\n", _sweepSamples );
// printf( "_sweepRate: %f\n", _sweepRate );
// printf( "engineGetSampleRate: %f\n", engineGetSampleRate() );
// printf( "_step out of range: %f\n", _step );
// }
//
// _minSweepSamples = _delaySamples;
// _maxSweepSamples = _delaySamples + _sweepSamples;
//
// _sweep = (_minSweepSamples + _maxSweepSamples) / 2;
// }
//
// void HORUS::setRate (float rate)
// {
// _paramSweepRate = rate;
// _sweepRate = pow(10.0,(double)_paramSweepRate);
// _sweepRate -= 1.0;
// _sweepRate *= 1.1f;
// _sweepRate += 0.1f;
// }
//
// void HORUS::setWidth (float v)
// {
// _paramWidth = v;
// _sweepSamples = ROUND(v * 0.05 * engineGetSampleRate());
// }
//
// void HORUS::setDelay (float v)
// {
// _paramDelay = v;
// double delay = pow(10.0, (double)v * 2.0)/1000.0;
// _delaySamples = ROUND(delay * engineGetSampleRate());
// }
//
// void HORUS::setFeedback(float v)
// {
// _paramFeedback = v;
// _feedback = v;
// }
//
// void HORUS::setMixMode (float v)
// {
// _paramMixMode = v;
// _mixMode = (int)(v * NUM_MIX_MODES);
// switch(_mixMode)
// {
// case kMixMono:
// default:
// _mixLeftWet = _mixRightWet = 1.0;
// _mixLeftDry = _mixRightDry = 1.0f;
// _feedbackPhase = 1.0;
// break;
// case kMixWetOnly:
// _mixLeftWet = _mixRightWet = 1.0f;
// _mixLeftDry = _mixRightDry = 1.0;
// _feedbackPhase = -1.0;
// break;
// case kMixWetLeft:
// _mixLeftWet = 1.0f;
// _mixLeftDry = 0.0f;
// _mixRightWet = 0.0f;
// _mixRightDry = 1.0f;
// break;
// case kMixWetRight:
// _mixLeftWet = 0.0f;
// _mixLeftDry = 1.0f;
// _mixRightWet = 1.0f;
// _mixRightDry = 0.0f;
// break;
// case kMixStereo:
// _mixLeftWet = 1.0f;
// _mixLeftDry = 1.0f;
// _mixRightWet = -1.0f;
// _mixRightDry = 1.0f;
// break;
// }
// }
//
//
// void HORUS::step() {
// setRate(params[RATE_PARAM].value);
// setWidth(params[WIDTH_PARAM].value);
// setFeedback(params[FEEDBACK_PARAM].value);
// setDelay(params[DELAY_PARAM].value);
// setMixMode(params[MIXMODE_PARAM].value);
// setSweep();
//
// float inval = (inputs[L_INPUT].value + inputs[R_INPUT].value) / 2.0f;
// _buf[_fp] = inval;
// _fp = (_fp + 1) & (BSZ-1);
//
// int ep1, ep2;
// double w1, w2;
// double ep = _fp - _sweep;
// MODF(ep, ep1, w2);
// ep1 &= (BSZ-1);
// ep2 = ep1 + 1;
// ep2 &= (BSZ-1);
// w1 = 1.0 - w2;
// double outval = _buf[ep1] * w1 + _buf[ep2] * w2;
//
// outputs[L_OUTPUT].value = (float)PIN(_mixLeftDry * inval + _mixLeftWet * outval, -10, 10);
// outputs[R_OUTPUT].value = (float)PIN(_mixRightDry * inval + _mixRightWet * outval,-10, 10);
//
// _sweep += _step;
// if( _sweep >= _maxSweepSamples || _sweep <= _minSweepSamples )
// {
// _step = -_step;
// }
// }
//
// struct HORUSWidget : ModuleWidget {
// HORUSWidget(HORUS *module) : ModuleWidget(module) {
// setPanel(SVG::load(assetPlugin(plugin, "res/HORUS.svg")));
//
// addChild(Widget::create<ScrewSilver>(Vec(RACK_GRID_WIDTH, 0)));
// addChild(Widget::create<ScrewSilver>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, 0)));
// addChild(Widget::create<ScrewSilver>(Vec(RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
// addChild(Widget::create<ScrewSilver>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
//
// addParam(ParamWidget::create<BidooBlueKnob>(Vec(13, 50), module, HORUS::RATE_PARAM, 0.0f, 150.0f, 0.0f));
// addParam(ParamWidget::create<BidooBlueKnob>(Vec(13, 100), module, HORUS::WIDTH_PARAM, 0.0f, 5.0f, 0.0f));
// addParam(ParamWidget::create<BidooBlueKnob>(Vec(13, 150), module, HORUS::DELAY_PARAM, 0.0f, 1.0f, 0.0f));
// addParam(ParamWidget::create<BidooBlueKnob>(Vec(13, 200), module, HORUS::FEEDBACK_PARAM, 0.0f, 1.0f, 0.0f));
// addParam(ParamWidget::create<BidooBlueKnob>(Vec(13, 250), module, HORUS::MIXMODE_PARAM, 0.0f, 1.0f, 0.0f));
//
// addInput(Port::create<TinyPJ301MPort>(Vec(24.0f, 319.0f), Port::INPUT, module, HORUS::L_INPUT));
// addInput(Port::create<TinyPJ301MPort>(Vec(24.0f, 339.0f), Port::INPUT, module, HORUS::R_INPUT));
// addOutput(Port::create<TinyPJ301MPort>(Vec(78.0f, 319.0f),Port::OUTPUT, module, HORUS::L_OUTPUT));
// addOutput(Port::create<TinyPJ301MPort>(Vec(78.0f, 339.0f),Port::OUTPUT, module, HORUS::R_OUTPUT));
// }
// };
//
//
//
// Model *modelHORUS = Model::create<HORUS, HORUSWidget>("Bidoo", "horUS", "horUS chorus", CHORUS_TAG);

+ 61
- 47
plugins/community/repos/Bidoo/src/OUAIVE.cpp View File

@@ -2,7 +2,8 @@
#include "dsp/digital.hpp"
#include "BidooComponents.hpp"
#include "osdialog.h"
#include "dep/audiofile/AudioFile.h"
#define DR_WAV_IMPLEMENTATION
#include "dep/dr_wav/dr_wav.h"
#include <vector>
#include "cmath"
#include <iomanip> // setprecision
@@ -39,7 +40,10 @@ struct OUAIVE : Module {

bool play = false;
string lastPath;
AudioFile<double> audioFile;
unsigned int channels;
unsigned int sampleRate;
drwav_uint64 totalSampleCount;
float* pSampleData;
float samplePos = 0.0f;
vector<double> displayBuffL;
vector<double> displayBuffR;
@@ -55,10 +59,10 @@ struct OUAIVE : Module {
string displayReadMode = "";
string displaySlices = "";
string displaySpeed;

SchmittTrigger playTrigger;
SchmittTrigger trigModeTrigger;
SchmittTrigger readModeTrigger;
std::mutex mylock;


OUAIVE() : Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) { }
@@ -74,6 +78,7 @@ struct OUAIVE : Module {
// lastPath
json_object_set_new(rootJ, "lastPath", json_string(lastPath.c_str()));
json_object_set_new(rootJ, "trigMode", json_integer(trigMode));
json_object_set_new(rootJ, "readMode", json_integer(readMode));
return rootJ;
}

@@ -88,26 +93,34 @@ struct OUAIVE : Module {
if (trigModeJ) {
trigMode = json_integer_value(trigModeJ);
}
json_t *readModeJ = json_object_get(rootJ, "readMode");
if (readModeJ) {
readMode = json_integer_value(readModeJ);
}
}
};

void OUAIVE::loadSample(std::string path) {
if (audioFile.load (path.c_str())) {
fileLoaded = true;
mylock.lock();
fileLoaded = false;
drwav_free(pSampleData);
pSampleData = drwav_open_and_read_file_f32(path.c_str(), &channels, &sampleRate, &totalSampleCount);
if (pSampleData == NULL) {
fileLoaded = false;
}
else {
vector<double>().swap(displayBuffL);
vector<double>().swap(displayBuffR);
for (int i=0; i < audioFile.getNumSamplesPerChannel(); i = i + floor(audioFile.getNumSamplesPerChannel()/125)) {
displayBuffL.push_back(audioFile.samples[0][i]);
if (audioFile.getNumChannels() == 2)
displayBuffR.push_back(audioFile.samples[1][i]);
for (unsigned int i=0; i < totalSampleCount; i = i + floor(totalSampleCount/125)) {
displayBuffL.push_back(pSampleData[i]);
if (channels == 2)
displayBuffR.push_back(pSampleData[i+1]);
}
fileDesc = (stringFilename(path)).substr(0,20) + ((stringFilename(path)).length() >=20 ? "...\n" : "\n");
fileDesc += std::to_string(audioFile.getSampleRate()) + " Hz " + std::to_string(audioFile.getBitDepth()) + " bit\n";
fileDesc += std::to_string(roundf(audioFile.getLengthInSeconds() * 100) / 100) + " s\n";
}
else {
fileLoaded = false;
fileDesc += std::to_string(sampleRate) + " Hz\n";
fileLoaded = true;
}
mylock.unlock();
}

void OUAIVE::step() {
@@ -152,14 +165,14 @@ void OUAIVE::step() {


if (fileLoaded) {
sliceLength = clamp(audioFile.getNumSamplesPerChannel() / nbSlices, 1, audioFile.getNumSamplesPerChannel());
sliceLength = clamp(totalSampleCount / nbSlices, 1, totalSampleCount);

if ((trigMode == 0) && (playTrigger.process(inputs[GATE_INPUT].value))) {
play = true;
samplePos = clamp((int)(inputs[POS_INPUT].value*audioFile.getNumSamplesPerChannel()/10), 0 , audioFile.getNumSamplesPerChannel() -1);
samplePos = clamp((int)(inputs[POS_INPUT].value * totalSampleCount / 10), 0 , totalSampleCount - 1);
} else if (trigMode == 1) {
play = (inputs[GATE_INPUT].value > 0);
samplePos = clamp((int)(inputs[POS_INPUT].value*audioFile.getNumSamplesPerChannel()/10), 0 , audioFile.getNumSamplesPerChannel() -1);
samplePos = clamp((int)(inputs[POS_INPUT].value * totalSampleCount / 10), 0 , totalSampleCount - 1);
} else if ((trigMode == 2) && (playTrigger.process(inputs[GATE_INPUT].value))) {
play = true;
if (inputs[POS_INPUT].active)
@@ -167,61 +180,62 @@ void OUAIVE::step() {
else
sliceIndex = (sliceIndex+1)%nbSlices;
if (readMode != 1)
samplePos = clamp(sliceIndex*sliceLength, 0, audioFile.getNumSamplesPerChannel());
samplePos = clamp(sliceIndex*sliceLength, 0, totalSampleCount);
else
samplePos = clamp((sliceIndex + 1) * sliceLength - 1, 0 , audioFile.getNumSamplesPerChannel());
samplePos = clamp((sliceIndex + 1) * sliceLength - 1, 0 , totalSampleCount);
}

if ((play) && (samplePos>=0) && (samplePos < audioFile.getNumSamplesPerChannel())) {
if ((play) && (samplePos>=0) && (samplePos < totalSampleCount)) {
mylock.lock();
//calulate outputs
if (audioFile.getNumChannels() == 1) {
outputs[OUTL_OUTPUT].value = 5.0f * audioFile.samples[0][floor(samplePos)];
outputs[OUTR_OUTPUT].value = 5.0f * audioFile.samples[0][floor(samplePos)];
if (channels == 1) {
outputs[OUTL_OUTPUT].value = 10.0f * pSampleData[(unsigned int)floor(samplePos)];
outputs[OUTR_OUTPUT].value = 10.0f * pSampleData[(unsigned int)floor(samplePos)];
}
else if (audioFile.getNumChannels() == 2) {
else if (channels == 2) {
if (outputs[OUTL_OUTPUT].active && outputs[OUTR_OUTPUT].active) {
outputs[OUTL_OUTPUT].value = 5.0f * audioFile.samples[0][floor(samplePos)];
outputs[OUTR_OUTPUT].value = 5.0f * audioFile.samples[1][floor(samplePos)];
outputs[OUTL_OUTPUT].value = 10.0f * pSampleData[(unsigned int)floor(samplePos)];
outputs[OUTR_OUTPUT].value = 10.0f * pSampleData[(unsigned int)floor(samplePos)+1];
}
else {
outputs[OUTL_OUTPUT].value = 5.0f * (audioFile.samples[0][floor(samplePos)] + audioFile.samples[1][floor(samplePos)]) / 2;
outputs[OUTR_OUTPUT].value = 5.0f * (audioFile.samples[0][floor(samplePos)] + audioFile.samples[1][floor(samplePos)]) / 2;
outputs[OUTL_OUTPUT].value = 10.0f * (pSampleData[(unsigned int)floor(samplePos)] + pSampleData[(unsigned int)floor(samplePos)+1]) / 2;
outputs[OUTR_OUTPUT].value = 10.0f * (pSampleData[(unsigned int)floor(samplePos)] + pSampleData[(unsigned int)floor(samplePos)+1]) / 2;
}
}
mylock.unlock();

//shift samplePos
if (trigMode == 0) {
if (readMode != 1)
samplePos = samplePos + speed;
samplePos = samplePos + speed * channels;
else
samplePos = samplePos - speed;
samplePos = samplePos - speed * channels;
//manage eof readMode
if ((readMode == 0) && (samplePos >= audioFile.getNumSamplesPerChannel()))
if ((readMode == 0) && (samplePos >= totalSampleCount))
play = false;
else if ((readMode == 1) && (samplePos <=0))
play = false;
else if ((readMode == 2) && (samplePos >= audioFile.getNumSamplesPerChannel()))
samplePos = clamp((int)(inputs[POS_INPUT].value*audioFile.getNumSamplesPerChannel()/10), 0 , audioFile.getNumSamplesPerChannel() -1);
else if ((readMode == 2) && (samplePos >= totalSampleCount))
samplePos = clamp((int)(inputs[POS_INPUT].value * totalSampleCount / 10), 0 , totalSampleCount -1);
}
else if (trigMode == 2)
{
if (readMode != 1)
samplePos = samplePos + speed;
samplePos = samplePos + speed * channels;
else
samplePos = samplePos - speed;
samplePos = samplePos - speed * channels;
//update diplay slices
displaySlices = "|" + std::to_string(nbSlices) + "|";
//manage eof readMode
if ((readMode == 0) && ((samplePos >= (sliceIndex+1) * sliceLength) || (samplePos >= audioFile.getNumSamplesPerChannel())))
if ((readMode == 0) && ((samplePos >= (sliceIndex+1) * sliceLength) || (samplePos >= totalSampleCount)))
play = false;
if ((readMode == 1) && ((samplePos <= (sliceIndex) * sliceLength) || (samplePos <=0)))
if ((readMode == 1) && ((samplePos <= (sliceIndex) * sliceLength) || (samplePos <= 0)))
play = false;
if ((readMode == 2) && ((samplePos >= (sliceIndex+1) * sliceLength) || (samplePos >= audioFile.getNumSamplesPerChannel())))
samplePos = clamp(sliceIndex*sliceLength, 0 , audioFile.getNumSamplesPerChannel());
if ((readMode == 2) && ((samplePos >= (sliceIndex+1) * sliceLength) || (samplePos >= totalSampleCount)))
samplePos = clamp(sliceIndex*sliceLength, 0 , totalSampleCount);
}
}
else if (samplePos == audioFile.getNumSamplesPerChannel())
else if (samplePos == totalSampleCount)
play = false;
}
}
@@ -266,13 +280,13 @@ struct OUAIVEDisplay : TransparentWidget {
{
nvgBeginPath(vg);
nvgStrokeWidth(vg, 2);
nvgMoveTo(vg, (int)(module->samplePos * 125 / module->audioFile.getNumSamplesPerChannel()) , 70);
nvgLineTo(vg, (int)(module->samplePos * 125 / module->audioFile.getNumSamplesPerChannel()) , 150);
nvgMoveTo(vg, (int)(module->samplePos * 125 / module->totalSampleCount) , 70);
nvgLineTo(vg, (int)(module->samplePos * 125 / module->totalSampleCount) , 150);
nvgClosePath(vg);
}
nvgStroke(vg);

if (module->audioFile.getNumChannels() == 1) {
if (module->channels == 1) {
// Draw ref line
nvgStrokeColor(vg, nvgRGBA(0xff, 0xff, 0xff, 0x30));
nvgStrokeWidth(vg, 1);
@@ -378,8 +392,8 @@ struct OUAIVEDisplay : TransparentWidget {
{
nvgBeginPath(vg);
nvgStrokeWidth(vg, 1);
nvgMoveTo(vg, (int)(i * module->sliceLength * 125 / module->audioFile.getNumSamplesPerChannel()) , 70);
nvgLineTo(vg, (int)(i * module->sliceLength * 125 / module->audioFile.getNumSamplesPerChannel()) , 150);
nvgMoveTo(vg, (int)(i * module->sliceLength * 125 / module->totalSampleCount) , 70);
nvgLineTo(vg, (int)(i * module->sliceLength * 125 / module->totalSampleCount) , 150);
nvgClosePath(vg);
}
nvgStroke(vg);
@@ -468,6 +482,6 @@ Menu *OUAIVEWidget::createContextMenu() {
using namespace rack_plugin_Bidoo;

RACK_PLUGIN_MODEL_INIT(Bidoo, OUAIVE) {
Model *modelOUAIVE = Model::create<OUAIVE, OUAIVEWidget>("Bidoo","OUAIve", "OUAIve player", SAMPLER_TAG);
Model *modelOUAIVE = Model::create<OUAIVE, OUAIVEWidget>("Bidoo","OUAIve", "OUAIve player", SAMPLER_TAG, GRANULAR_TAG);
return modelOUAIVE;
}

+ 154
- 0
plugins/community/repos/Bidoo/src/RABBIT.cpp View File

@@ -0,0 +1,154 @@
#include "Bidoo.hpp"
#include "BidooComponents.hpp"
#include "dsp/digital.hpp"

using namespace std;

namespace rack_plugin_Bidoo {

struct RABBIT : Module {
enum ParamIds {
BITOFF_PARAM,
BITREV_PARAM = BITOFF_PARAM + 8,
NUM_PARAMS = BITREV_PARAM + 8
};
enum InputIds {
L_INPUT,
R_INPUT,
BITOFF_INPUT,
BITREV_INPUT = BITOFF_INPUT + 8,
NUM_INPUTS = BITREV_INPUT + 8
};
enum OutputIds {
L_OUTPUT,
R_OUTPUT,
NUM_OUTPUTS
};
enum LightIds {
BITOFF_LIGHTS,
BITREV_LIGHTS = BITOFF_LIGHTS + 8,
NUM_LIGHTS = BITREV_LIGHTS + 8
};

SchmittTrigger bitOffTrigger[8], bitRevTrigger[8];

bool bitOff[8];
bool bitRev[8];

RABBIT() : Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) {
memset(&bitOff,0,8*sizeof(bool));
memset(&bitRev,0,8*sizeof(bool));
}

~RABBIT() {
}

json_t *toJson() override {
json_t *rootJ = json_object();
for (int i=0; i<8; i++) {
json_object_set_new(rootJ, ("bitOff" + to_string(i)).c_str(), json_boolean(bitOff[i]));
json_object_set_new(rootJ, ("bitRev" + to_string(i)).c_str(), json_boolean(bitRev[i]));
}
return rootJ;
}

void fromJson(json_t *rootJ) override {
for (int i=0; i<8; i++) {
json_t *jbitOff = json_object_get(rootJ, ("bitOff" + to_string(i)).c_str());
if (jbitOff) {
bitOff[i] = json_is_true(jbitOff) ? 1 : 0;
}
json_t *jbitRev = json_object_get(rootJ, ("bitRev" + to_string(i)).c_str());
if (jbitRev) {
bitRev[i] = json_is_true(jbitRev) ? 1 : 0;
}
}
}

void step() override;
};


void RABBIT::step() {
float in_L = clamp(inputs[L_INPUT].value,-10.0f,10.0f);
float in_R = clamp(inputs[R_INPUT].value,-10.0f,10.0f);

in_L = roundf(clamp(in_L / 20.0f + 0.5f, 0.0f, 1.0f) * 255);
in_R = roundf(clamp(in_R / 20.0f + 0.5f, 0.0f, 1.0f) * 255);

unsigned char red_L = in_L;
unsigned char red_R = in_R;

for (int i = 0 ; i < 8 ; i++ ) {

if (bitOffTrigger[i].process(params[BITOFF_PARAM+i].value + inputs[BITOFF_INPUT+i].value))
{
bitOff[i] = !bitOff[i];
}

if (bitRevTrigger[i].process(params[BITREV_PARAM+i].value + inputs[BITREV_INPUT+i].value))
{
bitRev[i] = !bitRev[i];
}

if (bitOff[i]) {
red_L &= ~(1 << i);
red_R &= ~(1 << i);
}
else {
if (bitRev[i]) {
red_L ^= ~(1 << i);
red_R ^= ~(1 << i);
}
}

lights[BITOFF_LIGHTS + i].value = bitOff[i] ? 1.0f : 0.0f;
lights[BITREV_LIGHTS + i].value = bitRev[i] ? 1.0f : 0.0f;
}

outputs[L_OUTPUT].value = clamp(((((float)red_L/255.0f))-0.5f)*20.0f,-10.0f,10.0f);
outputs[R_OUTPUT].value = clamp(((((float)red_R/255.0f))-0.5f)*20.0f,-10.0f,10.0f);
}

template <typename BASE>
struct RabbitLight : BASE {
RabbitLight() {
this->box.size = mm2px(Vec(6.0f, 6.0f));
}
};

struct RABBITWidget : ModuleWidget {
RABBITWidget(RABBIT *module) : ModuleWidget(module) {
setPanel(SVG::load(assetPlugin(plugin, "res/RABBIT.svg")));

addChild(Widget::create<ScrewSilver>(Vec(RACK_GRID_WIDTH, 0)));
addChild(Widget::create<ScrewSilver>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, 0)));
addChild(Widget::create<ScrewSilver>(Vec(RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
addChild(Widget::create<ScrewSilver>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));

for (int i = 0; i<8; i++) {
addParam(ParamWidget::create<LEDBezel>(Vec(27.0f, 50.0f + 32.0f * i), module, RABBIT::BITOFF_PARAM + i, 0.0f, 1.0f, 0.0f));
addChild(ModuleLightWidget::create<RabbitLight<RedLight>>(Vec(29.0f, 52.0f + 32.0f * i), module, RABBIT::BITOFF_LIGHTS + i));

addInput(Port::create<TinyPJ301MPort>(Vec(8.0f, 54.0f + 32.0f * i), Port::INPUT, module, RABBIT::BITOFF_INPUT + i));
addInput(Port::create<TinyPJ301MPort>(Vec(83.0f, 54.0f + 32.0f * i), Port::INPUT, module, RABBIT::BITREV_INPUT + i));

addParam(ParamWidget::create<LEDBezel>(Vec(57.0f, 50.0f + 32.0f * i), module, RABBIT::BITREV_PARAM + i, 0.0f, 1.0f, 0.0f));
addChild(ModuleLightWidget::create<RabbitLight<BlueLight>>(Vec(59.0f, 52.0f + 32.0f * i), module, RABBIT::BITREV_LIGHTS + i));
}

addInput(Port::create<TinyPJ301MPort>(Vec(24.0f, 319.0f), Port::INPUT, module, RABBIT::L_INPUT));
addInput(Port::create<TinyPJ301MPort>(Vec(24.0f, 339.0f), Port::INPUT, module, RABBIT::R_INPUT));
addOutput(Port::create<TinyPJ301MPort>(Vec(78.0f, 319.0f),Port::OUTPUT, module, RABBIT::L_OUTPUT));
addOutput(Port::create<TinyPJ301MPort>(Vec(78.0f, 339.0f),Port::OUTPUT, module, RABBIT::R_OUTPUT));
}
};

} // namespace rack_plugin_Bidoo

using namespace rack_plugin_Bidoo;

RACK_PLUGIN_MODEL_INIT(Bidoo, RABBIT) {
Model *modelRABBIT = Model::create<RABBIT, RABBITWidget>("Bidoo", "rabBIT", "rabBIT bit crusher", EFFECT_TAG, DIGITAL_TAG, DISTORTION_TAG);
return modelRABBIT;
}

+ 1
- 1
plugins/community/repos/Bidoo/src/ZINC.cpp View File

@@ -158,6 +158,6 @@ void ZINCWidget::step() {
using namespace rack_plugin_Bidoo;

RACK_PLUGIN_MODEL_INIT(Bidoo, ZINC) {
Model *modelZINC = Model::create<ZINC, ZINCWidget>("Bidoo", "ziNC", "ziNC vocoder", EFFECT_TAG);
Model *modelZINC = Model::create<ZINC, ZINCWidget>("Bidoo", "ziNC", "ziNC vocoder", EFFECT_TAG, VOCODER_TAG);
return modelZINC;
}

+ 3724
- 0
plugins/community/repos/Bidoo/src/dep/dr_wav/dr_wav.h
File diff suppressed because it is too large
View File


+ 54
- 0
plugins/community/repos/Bidoo/src/dep/freeverb/allpass.cpp View File

@@ -0,0 +1,54 @@
// Allpass filter implementation
//
// Written by Jezar at Dreampoint, June 2000
// http://www.dreampoint.co.uk
// This code is public domain

#include "allpass.hpp"

namespace rack_plugin_Bidoo {

allpass::allpass()
{
bufidx = 0;
buffer = 0;
};

allpass::~allpass()
{
//if (buffer) delete buffer;
};

void allpass::setbuffer(float *buf, int size)
{
buffer = buf;
bufsize = size;
}

void allpass::changebuffer(float *buf, int size)
{
if (buffer) {delete buffer;}
buffer = new float[size];
bufsize = size;
bufidx = 0;
}

void allpass::mute()
{
for (int i=0; i<bufsize; i++)
buffer[i]=0;
}

void allpass::setfeedback(float val)
{
feedback = val;
}

float allpass::getfeedback()
{
return feedback;
}

} // namespace rack_plugin_Bidoo

//ends

+ 44
- 0
plugins/community/repos/Bidoo/src/dep/freeverb/allpass.hpp View File

@@ -0,0 +1,44 @@
// Allpass filter declaration
//
// Written by Jezar at Dreampoint, June 2000
// http://www.dreampoint.co.uk
// This code is public domain

#ifndef _allpass_
#define _allpass_

namespace rack_plugin_Bidoo {

struct allpass
{
allpass();
~allpass();
void setbuffer(float *buf, int size);
void changebuffer(float *buf, int size);
inline float process(float inp);
void mute();
void setfeedback(float val);
float getfeedback();
float feedback;
float *buffer;
int bufsize;
int bufidx;
};

inline float allpass::process(float input)
{
float output;
float bufout;

bufout = buffer[bufidx];
output = -input + bufout;
buffer[bufidx] = input + (bufout*feedback);

if(++bufidx>=bufsize) bufidx = 0;

return output;
}

} // namespace rack_plugin_Bidoo

#endif

+ 69
- 0
plugins/community/repos/Bidoo/src/dep/freeverb/comb.cpp View File

@@ -0,0 +1,69 @@
// Comb filter implementation
//
// Written by Jezar at Dreampoint, June 2000
// http://www.dreampoint.co.uk
// This code is public domain

#include "comb.hpp"

namespace rack_plugin_Bidoo {

comb::comb()
{
filterstore = 0;
bufidx = 0;
buffer = 0;
}

comb::~comb()
{
filterstore = 0;
bufidx = 0;
//if (buffer) delete buffer;
}


void comb::setbuffer(float *buf, int size)
{
buffer = buf;
bufsize = size;
}

void comb::changebuffer(float *buf, int size)
{
if (buffer) {delete buffer;}
buffer = new float[size];
bufsize = size;
bufidx = 0;
}

void comb::mute()
{
for (int i=0; i<bufsize; i++)
buffer[i]=0;
}

void comb::setdamp(float val)
{
damp1 = val;
damp2 = 1-val;
}

float comb::getdamp()
{
return damp1;
}

void comb::setfeedback(float val)
{
feedback = val;
}

float comb::getfeedback()
{
return feedback;
}

} // namespace rack_plugin_Bidoo

// ends

+ 53
- 0
plugins/community/repos/Bidoo/src/dep/freeverb/comb.hpp View File

@@ -0,0 +1,53 @@
// Comb filter class declaration
//
// Written by Jezar at Dreampoint, June 2000
// http://www.dreampoint.co.uk
// This code is public domain

#ifndef _comb_
#define _comb_

namespace rack_plugin_Bidoo {

struct comb
{
comb();
~comb();
void setbuffer(float *buf, int size);
void changebuffer(float *buf, int size);
inline float process(float inp);
void mute();
void setdamp(float val);
float getdamp();
void setfeedback(float val);
float getfeedback();
float feedback;
float filterstore;
float damp1;
float damp2;
float *buffer;
int bufsize;
int bufidx;
};


// Big to inline - but crucial for speed

inline float comb::process(float input)
{
float output;

output = buffer[bufidx];
filterstore = (output*damp2) + (filterstore*damp1);
buffer[bufidx] = input + (filterstore*feedback);

if(++bufidx>=bufsize) bufidx = 0;

return output;
}

} // namespace rack_plugin_Bidoo

#endif //_comb_

//ends

+ 67
- 0
plugins/community/repos/Bidoo/src/dep/freeverb/readme.txt View File

@@ -0,0 +1,67 @@
Freeverb - Free, studio-quality reverb SOURCE CODE in the public domain
-----------------------------------------------------------------------

Written by Jezar at Dreampoint - http://www.dreampoint.co.uk


Introduction
------------

Hello.

I'll try to keep this "readme" reasonably small. There are few things in the world that I hate more than long "readme" files. Except "coding conventions" - but more on that later...

In this zip file you will find two folders of C++ source code:

"Components" - Contains files that should clean-compile ON ANY TYPE OF COMPUTER OR SYSTEM WHATSOEVER. It should not be necessary to make ANY changes to these files to get them to compile, except to make up for inadequacies of certain compilers. These files create three classes - a comb filter, an allpass filter, and a reverb model made up of a number of instances of the filters, with some features to control the filters at a macro level. You will need to link these classes into another program that interfaces with them. The files in the components drawer are completely independant, and can be built without dependancies on anything else. Because of the simple interface, it should be possible to interface these files to any system - VST, DirectX, anything - without changing them AT ALL.

"FreeverbVST" - Contains a Steinberg VST implementation of this version of Freeverb, using the components in (surprise) the components folder. It was built on a PC but may compile properly for the Macintosh with no problems. I don't know - I don't have a Macintosh. If you've figured out how to compile the examples in the Steinberg VST Development Kit, then you should easilly figure out how to bring the files into a project and get it working in a few minutes. It should be very simple.

Note that this version of Freeverb doesn't contain predelay, or any EQ. I thought that might make it difficult to understand the "reverb" part of the code. Once you figure out how Freeverb works, you should find it trivial to add such features with little CPU overhead.

Also, the code in this version of Freeverb has been optimised. This has changed the sound *slightly*, but not significantly compared to how much processing power it saves.

Finally, note that there is also a built copy of this version of Freeverb called "Freeverb3.dll" - this is a VST plugin for the PC. If you want a version for the Mac or anything else, then you'll need to build it yourself from the code.


Technical Explanation
---------------------

Freeverb is a simple implementation of the standard Schroeder/Moorer reverb model. I guess the only reason why it sounds better than other reverbs, is simply because I spent a long while doing listening tests in order to create the values found in "tuning.hh". It uses 8 comb filters on both the left and right channels), and you might possibly be able to get away with less if CPU power is a serious constraint for you. It then feeds the result of the reverb through 4 allpass filters on both the left and right channels. These "smooth" the sound. Adding more than four allpasses doesn't seem to add anything significant to the sound, and if you use less, the sound gets a bit "grainy". The filters on the right channel are slightly detuned compared to the left channel in order to create a stereo effect.

Hopefully, you should find the code in the components drawer a model of brevity and clarity. Notice that I don't use any "coding conventions". Personally, I think that coding conventions suck. They are meant to make the code "clearer", but they inevitably do the complete opposite, making the code completely unfathomable. Anyone whose done Windows programming with its - frankly stupid - "Hungarian notation" will know exactly what I mean. Coding conventions typically promote issues that are irrelevant up to the status of appearing supremely important. It may have helped back people in the days when compilers where somewhat feeble in their type-safety, but not in the new millenium with advanced C++ compilers.

Imagine if we rewrote the English language to conform to coding conventions. After all, The arguments should be just as valid for the English language as they are for a computer language. For example, we could put a lower-case "n" in front of every noun, a lower-case "p" in front of a persons name, a lower-case "v" in front of every verb, and a lower-case "a" in front of every adjective. Can you imagine what the English language would look like? All in the name of "clarity". It's just as stupid to do this for computer code as it would be to do it for the English language. I hope that the code for Freeverb in the components drawer demonstrates this, and helps start a movement back towards sanity in coding practices.


Background
----------

Why is the Freeverb code now public domain? Simple. I only intended to create Freeverb to provide me and my friends with studio-quality reverb for free. I never intended to make any money out of it. However, I simply do not have the time to develop it any further. I'm working on a "concept album" at the moment, and I'll never finish it if I spend any more time programming.

In any case, I make more far money as a contract programmer - making Mobile Internet products - than I ever could writing plugins, so it simply doesn't make financial sense for me to spend any more time on it.

Rather than give Freeverb to any particular individual or organisation to profit from it, I've decided to give it away to the internet community at large, so that quality, FREE (or at the very least, low-cost) reverbs can be developed for all platforms.

Feel free to use the source code for Freeverb in any of your own products, whether they are also available for free, or even if they are commercial - I really don't mind. You may do with the code whatever you wish. If you use it in a product (whether commercial or not), it would be very nice of you, if you were to send me a copy of your product - although I appreciate that this isn't always possible in all circumstances.

HOWEVER, please don't bug me with questions about how to use this code. I gave away Freeverb because I don't have time to maintain it. That means I *certainly* don't have time to answer questions about the source code, so please don't email questions to me. I *will* ignore them. If you can't figure the code for Freeverb out - then find somebody who can. I hope that either way, you enjoy experimenting with it.


Disclaimer
----------

This software and source code is given away for free, without any warranties of any kind. It has been given away to the internet community as a free gift, so please treat it in the same spirit.


I hope this code is useful and interesting to you all!
I hope you have lots of fun experimenting with it and make good products!

Very best regards,
Jezar.
Technology Consultant
Dreampoint Design and Engineering
http://www.dreampoint.co.uk


//ends

+ 349
- 0
plugins/community/repos/Bidoo/src/dep/freeverb/revmodel.cpp View File

@@ -0,0 +1,349 @@
// Reverb model implementation
//
// Written by Jezar at Dreampoint, June 2000
// http://www.dreampoint.co.uk
// This code is public domain

#include "revmodel.hpp"
#include <math.h>

namespace rack_plugin_Bidoo {

revmodel::revmodel()
{
// Tie the components to their buffers
combL[0].setbuffer(bufcombL1,combtuningL1);
combR[0].setbuffer(bufcombR1,combtuningR1);
combL[1].setbuffer(bufcombL2,combtuningL2);
combR[1].setbuffer(bufcombR2,combtuningR2);
combL[2].setbuffer(bufcombL3,combtuningL3);
combR[2].setbuffer(bufcombR3,combtuningR3);
combL[3].setbuffer(bufcombL4,combtuningL4);
combR[3].setbuffer(bufcombR4,combtuningR4);
combL[4].setbuffer(bufcombL5,combtuningL5);
combR[4].setbuffer(bufcombR5,combtuningR5);
combL[5].setbuffer(bufcombL6,combtuningL6);
combR[5].setbuffer(bufcombR6,combtuningR6);
combL[6].setbuffer(bufcombL7,combtuningL7);
combR[6].setbuffer(bufcombR7,combtuningR7);
combL[7].setbuffer(bufcombL8,combtuningL8);
combR[7].setbuffer(bufcombR8,combtuningR8);
allpassL[0].setbuffer(bufallpassL1,allpasstuningL1);
allpassR[0].setbuffer(bufallpassR1,allpasstuningR1);
allpassL[1].setbuffer(bufallpassL2,allpasstuningL2);
allpassR[1].setbuffer(bufallpassR2,allpasstuningR2);
allpassL[2].setbuffer(bufallpassL3,allpasstuningL3);
allpassR[2].setbuffer(bufallpassR3,allpasstuningR3);
allpassL[3].setbuffer(bufallpassL4,allpasstuningL4);
allpassR[3].setbuffer(bufallpassR4,allpasstuningR4);

// Set default values
allpassL[0].setfeedback(0.5f);
allpassR[0].setfeedback(0.5f);
allpassL[1].setfeedback(0.5f);
allpassR[1].setfeedback(0.5f);
allpassL[2].setfeedback(0.5f);
allpassR[2].setfeedback(0.5f);
allpassL[3].setfeedback(0.5f);
allpassR[3].setfeedback(0.5f);
setwet(initialwet);
setroomsize(initialroom);
setdry(initialdry);
setdamp(initialdamp);
setwidth(initialwidth);
setmode(initialmode);

// Buffer will be full of rubbish - so we MUST mute them
mute();
}

void revmodel::mute()
{
if (getmode() >= freezemode)
return;

for (int i=0;i<numcombs;i++)
{
combL[i].mute();
combR[i].mute();
}
for (int i=0;i<numallpasses;i++)
{
allpassL[i].mute();
allpassR[i].mute();
}
}

void revmodel::processreplace(float *inputL, float *inputR, float *outputL, float *outputR, long numsamples, int skip)
{
float outL,outR,input;

while(numsamples-- > 0)
{
outL = outR = 0;
input = (*inputL + *inputR) * gain;

// Accumulate comb filters in parallel
for(int i=0; i<numcombs; i++)
{
outL += combL[i].process(input);
outR += combR[i].process(input);
}

// Feed through allpasses in series
for(int i=0; i<numallpasses; i++)
{
outL = allpassL[i].process(outL);
outR = allpassR[i].process(outR);
}

// Calculate output REPLACING anything already there
*outputL = outL*wet1 + outR*wet2 + *inputL*dry;
*outputR = outR*wet1 + outL*wet2 + *inputR*dry;

// Increment sample pointers, allowing for interleave (if any)
inputL += skip;
inputR += skip;
outputL += skip;
outputR += skip;
}
}

void revmodel::processmix(float *inputL, float *inputR, float *outputL, float *outputR, long numsamples, int skip)
{
float outL,outR,input;

while(numsamples-- > 0)
{
outL = outR = 0;
input = (*inputL + *inputR) * gain;

// Accumulate comb filters in parallel
for(int i=0; i<numcombs; i++)
{
outL += combL[i].process(input);
outR += combR[i].process(input);
}

// Feed through allpasses in series
for(int i=0; i<numallpasses; i++)
{
outL = allpassL[i].process(outL);
outR = allpassR[i].process(outR);
}

// Calculate output MIXING with anything already there
*outputL += outL*wet1 + outR*wet2 + *inputL*dry;
*outputR += outR*wet1 + outL*wet2 + *inputR*dry;

// Increment sample pointers, allowing for interleave (if any)
inputL += skip;
inputR += skip;
outputL += skip;
outputR += skip;
}
}

void revmodel::process(const float inL, const float inR, const float fbInL, const float fbInR, float &outputL, float &outputR, float &wOutputL, float &wOutputR)
{
float outL = 0.0f, outR = 0.0f;
float input = (inL + inR) * gain;
// Accumulate comb filters in parallel
for(int i=0; i<numcombs; i++)
{
outL += combL[i].process(input);
outR += combR[i].process(input);
}

// Feed through allpasses in series
for(int i=0; i<numallpasses; i++)
{
outL = allpassL[i].process((i==0 ? fbInL : 0.0f) + outL);
outR = allpassR[i].process((i==0 ? fbInR : 0.0f) + outR);
}

outputL = outL*wet1 + outR*wet2 + inL*dry;
outputR = outR*wet1 + outL*wet2 + inR*dry;
wOutputL = outL*wet1 + outR*wet2;
wOutputR = outR*wet1 + outL*wet2;
}

void revmodel::update()
{
// Recalculate internal values after parameter change

int i;

wet1 = wet*(width/2 + 0.5f);
wet2 = wet*((1-width)/2);

if (mode >= freezemode)
{
roomsize1 = 1;
damp1 = 0;
gain = muted;
}
else
{
roomsize1 = roomsize;
damp1 = damp;
gain = fixedgain;
}

for(i=0; i<numcombs; i++)
{
combL[i].setfeedback(roomsize1);
combR[i].setfeedback(roomsize1);
}

for(i=0; i<numcombs; i++)
{
combL[i].setdamp(damp1);
combR[i].setdamp(damp1);
}
}

// The following get/set functions are not inlined, because
// speed is never an issue when calling them, and also
// because as you develop the reverb model, you may
// wish to take dynamic action when they are called.

void revmodel::setroomsize(float value)
{
roomsize = (value*scaleroom) + offsetroom;
update();
}

float revmodel::getroomsize()
{
return (roomsize-offsetroom)/scaleroom;
}

void revmodel::setdamp(float value)
{
damp = value * scaledamp;
update();
}

float revmodel::getdamp()
{
return damp/scaledamp;
}

void revmodel::setwet(float value)
{
wet = value*scalewet;
update();
}

float revmodel::getwet()
{
return wet/scalewet;
}

void revmodel::setdry(float value)
{
dry = value*scaledry;
}

float revmodel::getdry()
{
return dry/scaledry;
}

void revmodel::setwidth(float value)
{
width = value;
update();
}

float revmodel::getwidth()
{
return width;
}

void revmodel::setmode(float value)
{
mode = value;
update();
}

float revmodel::getmode()
{
if (mode >= freezemode)
return 1;
else
return 0;
}

void revmodel::setsamplerate(const float samplerate) {

sampleRate = samplerate;
float coeff = sampleRate/44100.0;

int mctL1 = round(coeff * combtuningL1);
int mctR1 = round(coeff * combtuningR1);
int mctL2 = round(coeff * combtuningL2);
int mctR2 = round(coeff * combtuningR2);
int mctL3 = round(coeff * combtuningL3);
int mctR3 = round(coeff * combtuningR3);
int mctL4 = round(coeff * combtuningL4);
int mctR4 = round(coeff * combtuningR4);
int mctL5 = round(coeff * combtuningL5);
int mctR5 = round(coeff * combtuningR5);
int mctL6 = round(coeff * combtuningL6);
int mctR6 = round(coeff * combtuningR6);
int mctL7 = round(coeff * combtuningL7);
int mctR7 = round(coeff * combtuningR7);
int mctL8 = round(coeff * combtuningL8);
int mctR8 = round(coeff * combtuningR8);

int maptL1 = round(coeff * allpasstuningL1);
int maptR1 = round(coeff * allpasstuningR1);
int maptL2 = round(coeff * allpasstuningL2);
int maptR2 = round(coeff * allpasstuningR2);
int maptL3 = round(coeff * allpasstuningL3);
int maptR3 = round(coeff * allpasstuningR3);
int maptL4 = round(coeff * allpasstuningL4);
int maptR4 = round(coeff * allpasstuningR4);

mute();

combL[0].changebuffer(bufcombL1,mctL1);
combR[0].changebuffer(bufcombR1,mctR1);
combL[1].changebuffer(bufcombL2,mctL2);
combR[1].changebuffer(bufcombR2,mctR2);
combL[2].changebuffer(bufcombL3,mctL3);
combR[2].changebuffer(bufcombR3,mctR3);
combL[3].changebuffer(bufcombL4,mctL4);
combR[3].changebuffer(bufcombR4,mctR4);
combL[4].changebuffer(bufcombL5,mctL5);
combR[4].changebuffer(bufcombR5,mctR5);
combL[5].changebuffer(bufcombL6,mctL6);
combR[5].changebuffer(bufcombR6,mctR6);
combL[6].changebuffer(bufcombL7,mctL7);
combR[6].changebuffer(bufcombR7,mctR7);
combL[7].changebuffer(bufcombL8,mctL8);
combR[7].changebuffer(bufcombR8,mctR8);

allpassL[0].changebuffer(bufallpassL1,maptL1);
allpassR[0].changebuffer(bufallpassR1,maptR1);
allpassL[1].changebuffer(bufallpassL2,maptL2);
allpassR[1].changebuffer(bufallpassR2,maptR2);
allpassL[2].changebuffer(bufallpassL3,maptL3);
allpassR[2].changebuffer(bufallpassR3,maptR3);
allpassL[3].changebuffer(bufallpassL4,maptL4);
allpassR[3].changebuffer(bufallpassR4,maptR4);

setwet(initialwet);
setroomsize(initialroom);
setdry(initialdry);
setdamp(initialdamp);
setwidth(initialwidth);
setmode(initialmode);

}

} // namespace rack_plugin_Bidoo

//ends

+ 94
- 0
plugins/community/repos/Bidoo/src/dep/freeverb/revmodel.hpp View File

@@ -0,0 +1,94 @@
// Reverb model declaration
//
// Written by Jezar at Dreampoint, June 2000
// http://www.dreampoint.co.uk
// This code is public domain

#ifndef _revmodel_
#define _revmodel_

#include "comb.hpp"
#include "allpass.hpp"
#include "tuning.hh"

namespace rack_plugin_Bidoo {

class revmodel
{
public:
revmodel();
void mute();
void processmix(float *inputL, float *inputR, float *outputL, float *outputR, long numsamples, int skip);
void processreplace(float *inputL, float *inputR, float *outputL, float *outputR, long numsamples, int skip);
void process(const float inL, const float inR, const float fbInL, const float fbInR, float &outputL, float &outputR, float &wOutputL, float &wOutputR);
void setroomsize(float value);
float getroomsize();
void setdamp(float value);
float getdamp();
void setwet(float value);
float getwet();
void setdry(float value);
float getdry();
void setwidth(float value);
float getwidth();
void setmode(float value);
float getmode();
void setsamplerate(const float samplerate);
private:
void update();
private:
float gain;
float roomsize,roomsize1;
float damp,damp1;
float wet,wet1,wet2;
float dry;
float width;
float mode;
float sampleRate;

// The following are all declared inline
// to remove the need for dynamic allocation
// with its subsequent error-checking messiness

// Comb filters
comb combL[numcombs];
comb combR[numcombs];

// Allpass filters
allpass allpassL[numallpasses];
allpass allpassR[numallpasses];

// Buffers for the combs
float bufcombL1[combtuningL1];
float bufcombR1[combtuningR1];
float bufcombL2[combtuningL2];
float bufcombR2[combtuningR2];
float bufcombL3[combtuningL3];
float bufcombR3[combtuningR3];
float bufcombL4[combtuningL4];
float bufcombR4[combtuningR4];
float bufcombL5[combtuningL5];
float bufcombR5[combtuningR5];
float bufcombL6[combtuningL6];
float bufcombR6[combtuningR6];
float bufcombL7[combtuningL7];
float bufcombR7[combtuningR7];
float bufcombL8[combtuningL8];
float bufcombR8[combtuningR8];

// Buffers for the allpasses
float bufallpassL1[allpasstuningL1];
float bufallpassR1[allpasstuningR1];
float bufallpassL2[allpasstuningL2];
float bufallpassR2[allpasstuningR2];
float bufallpassL3[allpasstuningL3];
float bufallpassR3[allpasstuningR3];
float bufallpassL4[allpasstuningL4];
float bufallpassR4[allpasstuningR4];
};

} // namespace rack_plugin_Bidoo

#endif//_revmodel_

//ends

+ 64
- 0
plugins/community/repos/Bidoo/src/dep/freeverb/tuning.hh View File

@@ -0,0 +1,64 @@
// Reverb model tuning values
//
// Written by Jezar at Dreampoint, June 2000
// http://www.dreampoint.co.uk
// This code is public domain

#ifndef _tuning_
#define _tuning_

namespace rack_plugin_Bidoo {

const int numcombs = 8;
const int numallpasses = 4;
const float muted = 0;
const float fixedgain = 0.015f;
const float scalewet = 3;
const float scaledry = 2;
const float scaledamp = 0.4f;
const float scaleroom = 0.28f;
const float offsetroom = 0.7f;
const float initialroom = 0.5f;
const float initialdamp = 0.5f;
const float initialwet = 1/scalewet;
const float initialdry = 0;
const float initialwidth = 1;
const float initialmode = 0;
const float freezemode = 0.5f;
const int stereospread = 23;

// These values assume 44.1KHz sample rate
// they will probably be OK for 48KHz sample rate
// but would need scaling for 96KHz (or other) sample rates.
// The values were obtained by listening tests.
const int combtuningL1 = 1116;
const int combtuningR1 = 1116+stereospread;
const int combtuningL2 = 1188;
const int combtuningR2 = 1188+stereospread;
const int combtuningL3 = 1277;
const int combtuningR3 = 1277+stereospread;
const int combtuningL4 = 1356;
const int combtuningR4 = 1356+stereospread;
const int combtuningL5 = 1422;
const int combtuningR5 = 1422+stereospread;
const int combtuningL6 = 1491;
const int combtuningR6 = 1491+stereospread;
const int combtuningL7 = 1557;
const int combtuningR7 = 1557+stereospread;
const int combtuningL8 = 1617;
const int combtuningR8 = 1617+stereospread;
const int allpasstuningL1 = 556;
const int allpasstuningR1 = 556+stereospread;
const int allpasstuningL2 = 441;
const int allpasstuningR2 = 441+stereospread;
const int allpasstuningL3 = 341;
const int allpasstuningR3 = 341+stereospread;
const int allpasstuningL4 = 225;
const int allpasstuningR4 = 225+stereospread;

} // namespace rack_plugin_Bidoo

#endif//_tuning_

//ends


+ 15
- 1
vst2_bin/plugins/Bidoo/README.md View File

@@ -1,7 +1,7 @@
# Bidoo's plugins for [VCVRack](https://vcvrack.com)

<!-- Version and License Badges -->
![Version](https://img.shields.io/badge/version-0.6.6-green.svg?style=flat-square)
![Version](https://img.shields.io/badge/version-0.6.10-green.svg?style=flat-square)
![License](https://img.shields.io/badge/license-BSD3-blue.svg?style=flat-square)
![Language](https://img.shields.io/badge/language-C++-yellow.svg?style=flat-square)

@@ -13,6 +13,20 @@ You can find information on that plugins pack in the [wiki](https://github.com/s

## Last changes

21/08/2018 => 0.6.10

rabBIT redesign

20/08/2018 => 0.6.9

rabBIT is a 8 bit reducer/reverser

09/07/2018

Changed the way wav files are loaded and saved => OUAIve and cANARd. Changed the way onsets are detected in cANARd. Fix play mode saving on close for OUAIve.

This version is compliant with the last version I have of Rack SDK so maybe my pack will be available thru Rack again in 0.6.2.

13/05/2018 => 0.6.6

antN goes away from mpg123 and is based now on minimp3 so maybe my pack will be available thru Rack again.


+ 0
- 186
vst2_bin/plugins/Bidoo/res/HORUS.svg View File

@@ -1,186 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="105"
height="380"
viewBox="0 0 27.78125 100.54166"
version="1.1"
id="svg12553">
<defs
id="defs12547">
<linearGradient
osb:paint="solid"
id="linearGradient4708">
<stop
id="stop4706"
offset="0"
style="stop-color:#ececec;stop-opacity:1;" />
</linearGradient>
<filter
id="filter4696"
style="color-interpolation-filters:sRGB">
<feColorMatrix
id="feColorMatrix4692"
result="colormatrix"
values="0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 "
in="SourceGraphic" />
<feBlend
id="feBlend4694"
result="fbSourceGraphic"
mode="multiply"
in2="BackgroundImage" />
<feColorMatrix
id="feColorMatrix4762"
values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
in="fbSourceGraphic"
result="fbSourceGraphicAlpha" />
<feColorMatrix
in="fbSourceGraphic"
result="colormatrix"
values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 5 -1 "
id="feColorMatrix4764" />
<feComposite
k4="0"
k3="0"
k1="0"
result="composite"
k2="0.3"
operator="arithmetic"
id="feComposite4766"
in2="colormatrix" />
</filter>
</defs>
<metadata
id="metadata12550">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
transform="matrix(0.23299263,0,0,1.0012215,-6.2015274,-161.56849)">
<path
id="path33453"
d="M 26.616839,161.37987 H 145.85344 v 100.3961 H 26.616839 Z m 0,0"
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.32258889" />
</g>
<path
id="path889"
d="m 26.617835,28.8905 c -2.084488,11.460296 -5.706839,21.180916 -9.316173,29.904307 -2.221642,5.367366 -4.670971,9.858716 -7.117179,14.266759 -1.4206208,3.535513 -2.6392058,7.680529 -3.8029568,11.752647 -1.219359,6.586933 -0.608054,13.361349 -2.020661,19.870947 -1.56589,4.26783 -0.343533,-4.54681 -0.430808,-6.409104 -0.221563,-5.083446 -1.299912,-9.074404 -1.654885,-14.020738 -0.89603,-8.336674 -1.117945,-17.760521 0.04537,-27.437643 0.7332,-7.928915 2.089486,-15.806525 4.025362,-22.986437 1.960607,-8.221865 4.5357598,-15.956142 5.7694538,-24.8562634 0.610455,-4.0186568 0.754576,-8.38410979 -0.106433,-11.213356 -0.48128,-1.7666896 1.359629,0.2064616 1.615833,0.1669361 1.976963,1.86565311 1.480217,9.4908812 0.185328,14.4222233 -0.890544,4.214642 -2.254309,7.66562 -3.410107,11.420621 0.853844,1.67288 2.145254,2.686048 2.979605,4.775813 1.411139,4.071462 0.87406,-6.158724 1.530083,-8.648011 0.225973,-1.910303 0.495395,-4.14055 0.393965,-1.030147 0.01882,11.271068 -0.273288,22.972865 -1.868146,34.708403 -0.09814,2.545629 -1.321209,7.408916 -0.990569,8.634575 4.261216,-8.1633 8.252168,-18.047495 11.334619,-29.4091 1.267507,-5.518313 2.474244,-11.986016 2.134915,-17.600085 -0.251332,-4.088172 -1.916068,-6.8448779 -3.65124,-4.034912 -0.943277,1.133319 -2.590195,7.415903 -0.633484,5.160191 2.052807,2.159366 -1.568327,10.284256 -2.116555,4.71453 -0.653101,-5.558938 1.523906,-13.8113128 3.98733,-14.3659775 2.521177,-1.1398164 4.382067,3.8545735 4.20983,10.3190375 -0.06851,3.889857 -0.4806,7.972832 -1.092506,11.894807 z M 12.558659,43.677449 C 12.738628,36.875094 11.58821,29.799105 8.8906322,29.526297 c -0.712771,-0.54463 -1.028253,3.232006 -1.499416,4.404265 1.049183,1.637975 3.2389338,1.808794 3.3885268,6.745235 0.72513,7.561921 -0.450012,18.379032 -3.4867048,24.299208 -1.057372,3.552622 -3.273713,0.718909 -3.578741,4.743987 -0.292056,2.457928 1.529776,0.527839 2.044366,0.70868 3.119116,-2.106514 5.3390178,-10.734864 6.2003768,-18.362986 0.340125,-2.804946 0.55592,-5.641938 0.599619,-8.387237 z M 7.0423832,76.743318 c -1.191434,1.493736 -4.086337,-0.784219 -3.205897,4.560861 0.259654,1.919817 0.504594,7.091572 1.013862,7.143812 0.668155,-4.003084 1.643566,-7.737895 2.482952,-11.583675 l -0.0651,-0.172593 -0.225811,0.0516 z m -0.33783,-27.832374 c -1.102631,-5.065786 -3.279161,6.307497 -1.714134,7.021375 1.272521,-0.536733 1.832748,-4.379107 1.714134,-7.021375 z M 1.3828802,103.38839 C 0.51354322,108.66029 0.85373222,100.04235 0.43580922,98.822742 -0.66304378,88.202738 -3.114649,78.720124 -2.1934808,66.013103 -1.3789288,53.294951 0.65851522,40.29986 3.7058842,28.64402 c 1.004068,-4.010797 1.691047,-8.305589 2.293915,-12.598516 0.473845,3.646389 -0.08398,8.117424 -0.991853,12.017102 -1.730483,7.57949 -3.602374,15.179919 -4.52899998,23.338862 -1.191136,9.597113 -2.49302602,20.011729 -1.412614,28.584918 0.618499,6.813376 2.18322298,12.261948 2.58627598,19.343576 0.03638,1.293168 -0.02008,2.708878 -0.269728,4.058428 z"
style="fill:#000000;stroke-width:0.23251958;opacity:0.12" />
<g
id="text4860"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:Sudo;-inkscape-font-specification:'Sudo, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<g
id="flowRoot1009"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:125%;font-family:Sudo;-inkscape-font-specification:'Sudo, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<g
id="text977"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
aria-label="bId°°">
<path
id="path894"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 9.5301674,97.809389 q 0,-0.44235 -0.1405599,-0.667659 -0.1405599,-0.225309 -0.4154785,-0.225309 -0.2769857,0 -0.4196126,0.227376 -0.142627,0.225309 -0.142627,0.665592 0,0.438216 0.142627,0.665593 0.1426269,0.227376 0.4196126,0.227376 0.2749186,0 0.4154785,-0.225309 0.1405599,-0.225309 0.1405599,-0.66766 z m -1.118278,-0.86403 q 0.090951,-0.169498 0.250114,-0.260449 0.1612304,-0.09095 0.3720703,-0.09095 0.4175455,0 0.6573241,0.322461 0.2397787,0.320393 0.2397787,0.8847 0,0.572575 -0.2418457,0.89917 -0.2397786,0.324528 -0.6593913,0.324528 -0.2067057,0 -0.3658691,-0.08888 -0.1570963,-0.09095 -0.252181,-0.262516 v 0.291455 H 8.0315509 v -3.216341 h 0.3803385 z" />
<path
id="path896"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 10.594702,95.878758 h 1.71359 v 0.3514 h -0.646989 v 2.383317 h 0.646989 v 0.351399 h -1.71359 v -0.351399 h 0.646989 v -2.383317 h -0.646989 z" />
<path
id="path898"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 14.499373,96.945359 v -1.196826 h 0.380338 v 3.216341 h -0.380338 v -0.291455 q -0.09509,0.171566 -0.254248,0.262516 -0.157097,0.08888 -0.363802,0.08888 -0.419613,0 -0.661459,-0.324528 -0.239778,-0.326595 -0.239778,-0.89917 0,-0.564307 0.241845,-0.8847 0.241846,-0.322461 0.659392,-0.322461 0.208772,0 0.367936,0.09095 0.159163,0.08888 0.250114,0.260449 z m -1.118278,0.86403 q 0,0.442351 0.14056,0.66766 0.14056,0.225309 0.415478,0.225309 0.274919,0 0.417546,-0.227376 0.144694,-0.227377 0.144694,-0.665593 0,-0.440283 -0.144694,-0.665592 -0.142627,-0.227376 -0.417546,-0.227376 -0.274918,0 -0.415478,0.225309 -0.14056,0.225309 -0.14056,0.667659 z" />
<path
id="path900"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 16.545759,95.822947 q 0.134359,0 0.254248,0.05168 0.121957,0.04961 0.212907,0.144694 0.09302,0.09302 0.14056,0.21084 0.04961,0.117822 0.04961,0.254248 0,0.272851 -0.192236,0.46302 -0.192236,0.188103 -0.469222,0.188103 -0.279053,0 -0.465088,-0.186035 -0.186035,-0.186036 -0.186035,-0.465088 0,-0.276986 0.190169,-0.469222 0.190169,-0.192237 0.465088,-0.192237 z m 0,0.266651 q -0.163297,0 -0.279053,0.115755 -0.113688,0.113688 -0.113688,0.279053 0,0.165364 0.111621,0.276985 0.113688,0.111621 0.276986,0.111621 0.165365,0 0.28112,-0.113688 0.117822,-0.113688 0.117822,-0.274918 0,-0.163298 -0.115755,-0.279053 -0.115755,-0.115755 -0.279053,-0.115755 z" />
<path
id="path902"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 19.092374,95.822947 q 0.134358,0 0.254248,0.05168 0.121956,0.04961 0.212907,0.144694 0.09302,0.09302 0.14056,0.21084 0.04961,0.117822 0.04961,0.254248 0,0.272851 -0.192236,0.46302 -0.192237,0.188103 -0.469222,0.188103 -0.279053,0 -0.465088,-0.186035 -0.186035,-0.186036 -0.186035,-0.465088 0,-0.276986 0.190169,-0.469222 0.190169,-0.192237 0.465088,-0.192237 z m 0,0.266651 q -0.163298,0 -0.279053,0.115755 -0.113688,0.113688 -0.113688,0.279053 0,0.165364 0.111621,0.276985 0.113688,0.111621 0.276986,0.111621 0.165364,0 0.281119,-0.113688 0.117823,-0.113688 0.117823,-0.274918 0,-0.163298 -0.115756,-0.279053 -0.115755,-0.115755 -0.279052,-0.115755 z" />
</g>
<g
id="text977-5"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
aria-label="horUS">
<path
id="path905"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="M 9.7038005,4.232979 V 5.6675167 H 9.321395 V 4.232979 q 0,-0.3121256 -0.1095541,-0.4588867 -0.109554,-0.146761 -0.3431315,-0.146761 -0.2666503,0 -0.4113443,0.1901692 -0.142627,0.1881022 -0.142627,0.541569 V 5.6675167 H 7.9343996 V 2.4511757 H 8.3147381 V 3.6996783 Q 8.4160239,3.5012408 8.5896567,3.399955 8.7632895,3.2966021 9.0010011,3.2966021 q 0.3534668,0 0.5270996,0.2335775 Q 9.7038005,3.76169 9.7038005,4.232979 Z" />
<path
id="path907"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 11.351245,3.619063 q -0.289388,0 -0.438216,0.2253093 -0.148828,0.2253092 -0.148828,0.6676594 0,0.4402832 0.148828,0.6676595 0.148828,0.2253092 0.438216,0.2253092 0.291455,0 0.440283,-0.2253092 0.148828,-0.2273763 0.148828,-0.6676595 0,-0.4423502 -0.148828,-0.6676594 Q 11.6427,3.619063 11.351245,3.619063 Z m 0,-0.3224609 q 0.481624,0 0.735872,0.3121257 0.256316,0.3121256 0.256316,0.9033039 0,0.5932455 -0.254249,0.9053711 -0.254248,0.3100586 -0.737939,0.3100586 -0.481624,0 -0.735872,-0.3100586 -0.254248,-0.3121256 -0.254248,-0.9053711 0,-0.5911783 0.254248,-0.9033039 0.254248,-0.3121257 0.735872,-0.3121257 z" />
<path
id="path909"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="M 15.012003,3.8299029 Q 14.890047,3.7348182 14.763956,3.69141 14.637866,3.648002 14.486971,3.648002 q -0.355534,0 -0.543636,0.2232422 -0.188102,0.2232422 -0.188102,0.6449219 v 1.1513508 h -0.382406 v -2.315104 h 0.382406 v 0.4526855 q 0.09508,-0.2459798 0.291455,-0.3762044 0.198437,-0.1322917 0.469222,-0.1322917 0.140559,0 0.262516,0.03514 0.121956,0.03514 0.233577,0.109554 z" />
<path
id="path911"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="M 15.475024,4.4830929 V 2.5814003 h 0.419612 v 2.0918619 q 0,0.2253092 0.0124,0.3224609 0.0124,0.095085 0.04341,0.1467611 0.06615,0.1219564 0.190169,0.1839681 0.126091,0.062012 0.303858,0.062012 0.179834,0 0.303857,-0.062012 0.124023,-0.062012 0.192236,-0.1839681 0.03101,-0.051676 0.04341,-0.1467611 0.0124,-0.095085 0.0124,-0.3183268 v -2.095996 h 0.417545 v 1.9016926 q 0,0.4733561 -0.05994,0.6738607 -0.05788,0.1984375 -0.202572,0.3286621 -0.136426,0.1219564 -0.312125,0.181901 -0.1757,0.059945 -0.394808,0.059945 -0.217041,0 -0.392741,-0.059945 -0.1757,-0.059945 -0.314193,-0.181901 Q 15.594915,5.3574581 15.53497,5.1548865 15.47503,4.9502479 15.47503,4.4830929 Z" />
<path
id="path913"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="M 19.809643,2.6868203 V 3.110567 q -0.190169,-0.1219564 -0.382406,-0.1839681 -0.190169,-0.062012 -0.384472,-0.062012 -0.295589,0 -0.467155,0.1384928 -0.171566,0.1364258 -0.171566,0.3700032 0,0.2046387 0.111621,0.3121257 0.113688,0.1074869 0.42168,0.1798339 l 0.219108,0.049609 q 0.434082,0.1012858 0.632519,0.3183268 0.198438,0.217041 0.198438,0.5911784 0,0.4402832 -0.272852,0.6717936 -0.272851,0.2315104 -0.79375,0.2315104 -0.217041,0 -0.436149,-0.047542 -0.219108,-0.045475 -0.440283,-0.1384929 V 5.0970089 q 0.237712,0.1508952 0.448552,0.2211751 0.212906,0.07028 0.42788,0.07028 0.31626,0 0.49196,-0.1405599 0.1757,-0.1426269 0.1757,-0.396875 0,-0.2315104 -0.121957,-0.3534668 Q 19.346622,4.375606 19.046899,4.3094601 L 18.823657,4.2577837 Q 18.393709,4.160632 18.199405,3.9642616 18.005102,3.7678912 18.005102,3.437162 q 0,-0.4134114 0.276986,-0.6614583 0.279052,-0.2501139 0.740006,-0.2501139 0.177767,0 0.374137,0.041341 0.196371,0.039274 0.413412,0.1198895 z" />
</g>
<g
transform="translate(-7.265561,0.27854712)"
id="g927">
<path
id="rect998"
d="m 24.753592,83.550049 h 7.182313 c 0.629904,0 1.137011,0.507107 1.137011,1.137011 v 8.103004 c 0,0.629904 -0.507107,1.137011 -1.137011,1.137011 h -7.182313 c -0.629904,0 -1.137011,-0.507107 -1.137011,-1.137011 V 84.68706 c 0,-0.629904 0.507107,-1.137011 1.137011,-1.137011 z"
style="opacity:1;fill:#cd1f00;fill-opacity:1;fill-rule:evenodd;stroke:#cd1f00;stroke-width:0.83921981;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<g
id="text1002"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:tb-rl;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="rotate(-179.84442)"
aria-label="OUT">
<path
id="path917"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:tb-rl;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -25.497642,-90.019393 q 0.453374,0 0.647678,-0.09371 0.194303,-0.09233 0.194303,-0.304546 0,-0.21084 -0.194303,-0.304547 -0.194304,-0.09233 -0.647678,-0.09233 -0.451997,0 -0.6463,0.09233 -0.194304,0.09371 -0.194304,0.304547 0,0.212218 0.192926,0.304546 0.194303,0.09371 0.647678,0.09371 z m 0,0.290766 q -0.537435,0 -0.802019,-0.170877 -0.264583,-0.169498 -0.264583,-0.518142 0,-0.348644 0.263205,-0.518142 0.263206,-0.169499 0.803397,-0.169499 0.538813,0 0.803396,0.169499 0.264583,0.170876 0.264583,0.518142 0,0.348644 -0.264583,0.518142 -0.264583,0.170877 -0.803396,0.170877 z" />
<path
id="path919"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:tb-rl;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -25.734665,-89.364825 h 1.267795 v 0.279742 h -1.394574 q -0.150207,0 -0.214974,0.0083 -0.06339,0.0083 -0.09784,0.02894 -0.0813,0.0441 -0.122645,0.126779 -0.04134,0.08406 -0.04134,0.202572 0,0.119889 0.04134,0.202572 0.04134,0.08268 0.122645,0.128157 0.03445,0.02067 0.09784,0.02894 0.06339,0.0083 0.212218,0.0083 h 1.39733 v 0.278364 h -1.267795 q -0.315571,0 -0.44924,-0.03996 -0.132292,-0.03858 -0.219108,-0.135048 -0.0813,-0.09095 -0.121268,-0.208084 -0.03996,-0.117133 -0.03996,-0.263205 0,-0.144694 0.03996,-0.261827 0.03996,-0.117133 0.121268,-0.209462 0.08544,-0.09508 0.220486,-0.135048 0.136426,-0.03996 0.447862,-0.03996 z" />
<path
id="path921"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:tb-rl;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -24.46687,-87.803508 v 1.569586 h -0.234266 v -0.643544 h -1.823145 v -0.279742 h 1.823145 v -0.6463 z" />
</g>
</g>
<g
transform="translate(19.476811,11.237347)"
id="g917">
<path
id="rect998-0-2"
d="m -16.273988,72.591248 h 7.1823124 c 0.6299043,0 1.1370114,0.507107 1.1370114,1.137011 v 8.103004 c 0,0.629904 -0.5071071,1.137011 -1.1370114,1.137011 h -7.1823124 c -0.629904,0 -1.137011,-0.507107 -1.137011,-1.137011 v -8.103004 c 0,-0.629904 0.507107,-1.137011 1.137011,-1.137011 z"
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000100;stroke-width:0.83921981;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<g
id="text1002-0-2"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:tb-rl;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="rotate(-179.84442)"
aria-label="IN">
<path
id="path925"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:tb-rl;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 16.592641,-79.287162 v 1.142393 h -0.234267 v -0.431326 h -1.588878 v 0.431326 H 14.53523 v -1.142393 h 0.234266 v 0.431326 h 1.588878 v -0.431326 z" />
<path
id="path927"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:tb-rl;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 16.592641,-77.67348 v 0.352778 l -1.693609,0.694532 h 1.693609 v 0.268717 H 14.53523 v -0.352778 l 1.693608,-0.694531 H 14.53523 v -0.268718 z" />
</g>
</g>
</svg>

+ 0
- 208
vst2_bin/plugins/Bidoo/res/HORUStemp.svg View File

@@ -1,208 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg12553"
version="1.1"
viewBox="0 0 27.78125 100.54166"
height="380"
width="105"
sodipodi:docname="HORUStemp.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview118"
showgrid="true"
inkscape:zoom="1.5750457"
inkscape:cx="-42.718535"
inkscape:cy="145.35236"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg12553"
inkscape:snap-to-guides="false"
inkscape:snap-grids="false">
<inkscape:grid
type="xygrid"
id="grid929" />
</sodipodi:namedview>
<defs
id="defs12547">
<linearGradient
id="linearGradient4708"
osb:paint="solid">
<stop
style="stop-color:#ececec;stop-opacity:1;"
offset="0"
id="stop4706" />
</linearGradient>
<filter
style="color-interpolation-filters:sRGB"
inkscape:label="Opacity"
id="filter4696">
<feColorMatrix
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 "
result="colormatrix"
id="feColorMatrix4692" />
<feBlend
in2="BackgroundImage"
mode="multiply"
result="fbSourceGraphic"
id="feBlend4694" />
<feColorMatrix
result="fbSourceGraphicAlpha"
in="fbSourceGraphic"
values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
id="feColorMatrix4762" />
<feColorMatrix
id="feColorMatrix4764"
values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 5 -1 "
result="colormatrix"
in="fbSourceGraphic" />
<feComposite
in2="colormatrix"
id="feComposite4766"
operator="arithmetic"
k2="0.3"
result="composite"
k1="0"
k3="0"
k4="0" />
</filter>
</defs>
<metadata
id="metadata12550">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="matrix(0.23299263,0,0,1.0012215,-6.2015274,-161.56849)"
id="layer1">
<path
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.32258889"
d="M 26.616839,161.37987 H 145.85344 v 100.3961 H 26.616839 Z m 0,0"
id="path33453"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:#000000;stroke-width:0.23251958;opacity:0.12"
d="m 26.617835,28.8905 c -2.084488,11.460296 -5.706839,21.180916 -9.316173,29.904307 -2.221642,5.367366 -4.670971,9.858716 -7.117179,14.266759 -1.4206208,3.535513 -2.6392058,7.680529 -3.8029568,11.752647 -1.219359,6.586933 -0.608054,13.361349 -2.020661,19.870947 -1.56589,4.26783 -0.343533,-4.54681 -0.430808,-6.409104 -0.221563,-5.083446 -1.299912,-9.074404 -1.654885,-14.020738 -0.89603,-8.336674 -1.117945,-17.760521 0.04537,-27.437643 0.7332,-7.928915 2.089486,-15.806525 4.025362,-22.986437 1.960607,-8.221865 4.5357598,-15.956142 5.7694538,-24.8562634 0.610455,-4.0186568 0.754576,-8.38410979 -0.106433,-11.213356 -0.48128,-1.7666896 1.359629,0.2064616 1.615833,0.1669361 1.976963,1.86565311 1.480217,9.4908812 0.185328,14.4222233 -0.890544,4.214642 -2.254309,7.66562 -3.410107,11.420621 0.853844,1.67288 2.145254,2.686048 2.979605,4.775813 1.411139,4.071462 0.87406,-6.158724 1.530083,-8.648011 0.225973,-1.910303 0.495395,-4.14055 0.393965,-1.030147 0.01882,11.271068 -0.273288,22.972865 -1.868146,34.708403 -0.09814,2.545629 -1.321209,7.408916 -0.990569,8.634575 4.261216,-8.1633 8.252168,-18.047495 11.334619,-29.4091 1.267507,-5.518313 2.474244,-11.986016 2.134915,-17.600085 -0.251332,-4.088172 -1.916068,-6.8448779 -3.65124,-4.034912 -0.943277,1.133319 -2.590195,7.415903 -0.633484,5.160191 2.052807,2.159366 -1.568327,10.284256 -2.116555,4.71453 -0.653101,-5.558938 1.523906,-13.8113128 3.98733,-14.3659775 2.521177,-1.1398164 4.382067,3.8545735 4.20983,10.3190375 -0.06851,3.889857 -0.4806,7.972832 -1.092506,11.894807 z M 12.558659,43.677449 C 12.738628,36.875094 11.58821,29.799105 8.8906322,29.526297 c -0.712771,-0.54463 -1.028253,3.232006 -1.499416,4.404265 1.049183,1.637975 3.2389338,1.808794 3.3885268,6.745235 0.72513,7.561921 -0.450012,18.379032 -3.4867048,24.299208 -1.057372,3.552622 -3.273713,0.718909 -3.578741,4.743987 -0.292056,2.457928 1.529776,0.527839 2.044366,0.70868 3.119116,-2.106514 5.3390178,-10.734864 6.2003768,-18.362986 0.340125,-2.804946 0.55592,-5.641938 0.599619,-8.387237 z M 7.0423832,76.743318 c -1.191434,1.493736 -4.086337,-0.784219 -3.205897,4.560861 0.259654,1.919817 0.504594,7.091572 1.013862,7.143812 0.668155,-4.003084 1.643566,-7.737895 2.482952,-11.583675 l -0.0651,-0.172593 -0.225811,0.0516 z m -0.33783,-27.832374 c -1.102631,-5.065786 -3.279161,6.307497 -1.714134,7.021375 1.272521,-0.536733 1.832748,-4.379107 1.714134,-7.021375 z M 1.3828802,103.38839 C 0.51354322,108.66029 0.85373222,100.04235 0.43580922,98.822742 -0.66304378,88.202738 -3.114649,78.720124 -2.1934808,66.013103 -1.3789288,53.294951 0.65851522,40.29986 3.7058842,28.64402 c 1.004068,-4.010797 1.691047,-8.305589 2.293915,-12.598516 0.473845,3.646389 -0.08398,8.117424 -0.991853,12.017102 -1.730483,7.57949 -3.602374,15.179919 -4.52899998,23.338862 -1.191136,9.597113 -2.49302602,20.011729 -1.412614,28.584918 0.618499,6.813376 2.18322298,12.261948 2.58627598,19.343576 0.03638,1.293168 -0.02008,2.708878 -0.269728,4.058428 z"
id="path889"
inkscape:connector-curvature="0" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:Sudo;-inkscape-font-specification:'Sudo, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="69.335617"
y="97.895828"
id="text4860"><tspan
sodipodi:role="line"
id="tspan4858"
x="69.335617"
y="100.54166"
style="stroke-width:0.26458332px" /></text>
<flowRoot
xml:space="preserve"
id="flowRoot1009"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:125%;font-family:Sudo;-inkscape-font-specification:'Sudo, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"><flowRegion
id="flowRegion1011"><rect
id="rect1013"
width="428.17667"
height="304.19095"
x="181.82332"
y="40" /></flowRegion><flowPara
id="flowPara1015" /></flowRoot> <text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="7.6326089"
y="98.964874"
id="text977"
inkscape:transform-center-x="-1.5441791"
inkscape:transform-center-y="0.35634903"><tspan
sodipodi:role="line"
id="tspan975"
x="7.6326089"
y="98.964874"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px">bId°°</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="7.5313234"
y="5.6675167"
id="text977-5"><tspan
sodipodi:role="line"
id="tspan975-3"
x="7.5313234"
y="5.6675167"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px">horUS</tspan></text>
<g
id="g927"
transform="translate(-7.265561,0.27854712)">
<rect
ry="1.1370114"
y="83.550049"
x="23.616581"
height="10.377027"
width="9.4563351"
id="rect998"
style="opacity:1;fill:#cd1f00;fill-opacity:1;fill-rule:evenodd;stroke:#cd1f00;stroke-width:0.83921981;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
transform="rotate(-179.84442)"
id="text1002"
y="-91.266518"
x="-25.791164"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:tb-rl;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
xml:space="preserve"><tspan
id="tspan868"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:tb-rl;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
y="-25.791164"
x="-91.266518"
sodipodi:role="line">OUT</tspan></text>
</g>
<g
id="g917"
transform="translate(19.476811,11.237347)">
<rect
ry="1.1370114"
y="72.591248"
x="-17.410999"
height="10.377027"
width="9.4563351"
id="rect998-0-2"
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000100;stroke-width:0.83921981;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
transform="rotate(-179.84442)"
id="text1002-0-2"
y="-79.564148"
x="15.268346"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:tb-rl;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
xml:space="preserve"><tspan
id="tspan868-3-6"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:tb-rl;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
y="15.268346"
x="-79.564148"
sodipodi:role="line">IN</tspan></text>
</g>
</svg>

+ 224
- 0
vst2_bin/plugins/Bidoo/res/RABBIT.svg
File diff suppressed because it is too large
View File


+ 230
- 0
vst2_bin/plugins/Bidoo/res/RABBITtemp.svg
File diff suppressed because it is too large
View File


+ 0
- 602
vst2_bin/plugins/Bidoo/res/RADAR.svg View File

@@ -1,602 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="135"
height="380"
viewBox="0 0 35.71875 100.54166"
version="1.1"
id="svg12553">
<defs
id="defs12547">
<linearGradient
osb:paint="solid"
id="linearGradient4708">
<stop
id="stop4706"
offset="0"
style="stop-color:#ececec;stop-opacity:1;" />
</linearGradient>
<filter
id="filter4696"
style="color-interpolation-filters:sRGB">
<feColorMatrix
id="feColorMatrix4692"
result="colormatrix"
values="0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 "
in="SourceGraphic" />
<feBlend
id="feBlend4694"
result="fbSourceGraphic"
mode="multiply"
in2="BackgroundImage" />
<feColorMatrix
id="feColorMatrix4762"
values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
in="fbSourceGraphic"
result="fbSourceGraphicAlpha" />
<feColorMatrix
in="fbSourceGraphic"
result="colormatrix"
values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 5 -1 "
id="feColorMatrix4764" />
<feComposite
k4="0"
k3="0"
k1="0"
result="composite"
k2="0.3"
operator="arithmetic"
id="feComposite4766"
in2="colormatrix" />
</filter>
</defs>
<metadata
id="metadata12550">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
transform="matrix(0.29968605,0,0,1.0012215,-7.996127,-161.56849)">
<path
id="path33453"
d="M 26.616839,161.37987 H 145.85344 v 100.3961 H 26.616839 Z m 0,0"
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.32258889" />
<path
id="path33787"
d="m 38.533355,242.56724 c 0,-0.35581 -0.291121,-0.64693 -0.646932,-0.64693 h -6.281685 c -0.355838,0 -0.646933,0.29112 -0.646933,0.64693 v 6.28278 c 0,0.35581 0.291095,0.64693 0.646933,0.64693 h 6.281685 c 0.355811,0 0.646932,-0.29112 0.646932,-0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 66.055605,168.8251 c 0.500274,0 0.84963,-0.25877 0.84963,-0.72025 v -0.009 c 0,-0.40109 -0.263102,-0.5693 -0.733187,-0.69437 -0.401108,-0.10351 -0.500301,-0.15095 -0.500301,-0.3019 v -0.009 c 0,-0.11213 0.09919,-0.20271 0.297577,-0.20271 0.159597,0 0.319167,0.0561 0.487363,0.15527 0.03881,0.0259 0.07763,0.0388 0.129381,0.0388 0.129408,0 0.237225,-0.10351 0.237225,-0.23721 0,-0.0992 -0.05606,-0.1682 -0.11213,-0.2027 -0.211349,-0.12939 -0.452861,-0.20271 -0.737526,-0.20271 -0.474398,0 -0.810816,0.27602 -0.810816,0.69869 v 0.004 c 0,0.46147 0.301916,0.59086 0.767689,0.71162 0.38817,0.0992 0.470111,0.16389 0.470111,0.29327 v 0.009 c 0,0.1337 -0.129381,0.21565 -0.336391,0.21565 -0.224287,0 -0.418359,-0.0776 -0.590867,-0.20702 -0.0345,-0.0259 -0.08194,-0.0474 -0.146632,-0.0474 -0.133721,0 -0.241538,0.10351 -0.241538,0.23721 0,0.0776 0.04313,0.15095 0.09919,0.18976 0.258789,0.18546 0.564991,0.28034 0.87122,0.28034 z m 0,0"
id="path7611" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 67.640935,168.7906 h 1.298178 c 0.129382,0 0.228574,-0.0992 0.228574,-0.22427 0,-0.12507 -0.09919,-0.22858 -0.228574,-0.22858 h -1.048041 v -0.48736 h 0.884132 c 0.125095,0 0.2286,-0.0992 0.2286,-0.22427 0,-0.12938 -0.103505,-0.22858 -0.2286,-0.22858 h -0.884132 v -0.4701 h 1.035103 c 0.125069,0 0.228574,-0.0992 0.228574,-0.22858 0,-0.12508 -0.103505,-0.22859 -0.228574,-0.22859 h -1.28524 c -0.142319,0 -0.254476,0.11645 -0.254476,0.25878 v 1.80709 c 0,0.14232 0.112157,0.25446 0.254476,0.25446 z m 0,0"
id="path7607" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 70.70817,168.82941 c 0.258763,0 0.491676,-0.0733 0.685748,-0.19839 l 0.129381,0.11214 c 0.03881,0.0388 0.09919,0.069 0.168195,0.069 0.129408,0 0.237226,-0.10782 0.237226,-0.24152 0,-0.082 -0.03881,-0.14233 -0.09057,-0.18977 l -0.103532,-0.0819 c 0.129408,-0.19408 0.207037,-0.42266 0.207037,-0.6685 v -0.004 c 0,-0.65986 -0.513239,-1.19466 -1.229175,-1.19466 -0.715936,0 -1.233487,0.53911 -1.233487,1.19898 v 0.009 c 0,0.65987 0.513238,1.19035 1.229174,1.19035 z m 0.069,-0.7375 0.241511,0.20702 c -0.09057,0.0431 -0.194071,0.0604 -0.306202,0.0604 -0.409734,0 -0.702998,-0.33209 -0.702998,-0.72887 v -0.004 c 0,-0.39679 0.284639,-0.72457 0.698685,-0.72457 0.409734,0 0.698686,0.3321 0.698686,0.72888 v 0.009 c 0,0.11645 -0.0217,0.22427 -0.06038,0.31484 l -0.25445,-0.22858 c -0.05609,-0.0431 -0.09922,-0.069 -0.168222,-0.069 -0.133694,0 -0.241512,0.11213 -0.241512,0.24152 0,0.0863 0.03881,0.14664 0.09488,0.19408 z m 0,0"
id="path7603" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 72.627379,168.00566 h 0.57359 c 0.13372,0 0.245851,-0.10783 0.245851,-0.24152 0,-0.1337 -0.112131,-0.24153 -0.245851,-0.24153 h -0.57359 c -0.133721,0 -0.241539,0.10783 -0.241539,0.24153 0,0.13369 0.107818,0.24152 0.241539,0.24152 z m 0,0"
id="path7599" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 74.553439,168.82941 c 0.517552,0 0.832406,-0.31915 0.832406,-0.75906 v -0.004 c 0,-0.43129 -0.306229,-0.59518 -0.621056,-0.65124 l 0.452834,-0.43129 c 0.09491,-0.0906 0.155284,-0.15958 0.155284,-0.28465 0,-0.14233 -0.112157,-0.22858 -0.258789,-0.22858 h -1.129956 c -0.120782,0 -0.219975,0.0992 -0.219975,0.21995 0,0.12076 0.09919,0.21996 0.219975,0.21996 h 0.711623 l -0.452861,0.45285 c -0.07763,0.0776 -0.107817,0.13801 -0.107817,0.20702 0,0.12076 0.09919,0.21996 0.219948,0.21996 h 0.07763 c 0.284665,0 0.45286,0.10782 0.45286,0.29327 v 0.009 c 0,0.17252 -0.133694,0.28034 -0.327792,0.28034 -0.181134,0 -0.31914,-0.0604 -0.452834,-0.17252 -0.03881,-0.0302 -0.09057,-0.0604 -0.15957,-0.0604 -0.133721,0 -0.245851,0.11214 -0.245851,0.24584 0,0.069 0.03881,0.14232 0.08625,0.18114 0.185473,0.15957 0.43561,0.26308 0.767688,0.26308 z m 0,0"
id="path7595" />
<path
id="path35483"
d="M 31.535655,196.58908 H 108.99592"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35687"
d="m 68.112052,258.60709 c -0.09165,0 -0.175762,-0.0517 -0.216746,-0.1337 l -0.783855,-1.56881 c -0.05932,-0.11859 -0.01085,-0.26416 0.107818,-0.32346 0.119697,-0.0593 0.26416,-0.0108 0.324538,0.10782 l 0.568245,1.13753 0.568219,-1.13753 c 0.05929,-0.1186 0.204867,-0.16712 0.323454,-0.10782 0.119697,0.0593 0.16711,0.20487 0.107817,0.32346 l -0.783881,1.56881 c -0.04096,0.0819 -0.125068,0.1337 -0.215609,0.1337"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
id="path35689"
d="m 72.419522,258.60709 c -0.09165,0 -0.174678,-0.0517 -0.215636,-0.1337 l -0.784939,-1.56881 c -0.05932,-0.11859 -0.01085,-0.26416 0.108903,-0.32346 0.118586,-0.0593 0.264133,-0.0108 0.323453,0.10782 l 0.568219,1.13753 0.568219,-1.13753 c 0.05929,-0.1186 0.20484,-0.16712 0.323453,-0.10782 0.119698,0.0593 0.168222,0.20487 0.107844,0.32346 l -0.783881,1.56881 c -0.04096,0.0819 -0.123983,0.1337 -0.215635,0.1337"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
id="path35691"
d="m 70.382786,258.60709 c -0.566076,0 -1.025419,-0.4604 -1.025419,-1.02538 0,-0.56606 0.459343,-1.02646 1.025419,-1.02646 0.223149,0 0.436668,0.0712 0.615632,0.20593 0.106733,0.0798 0.127265,0.23075 0.04747,0.33749 -0.07982,0.10674 -0.230744,0.1283 -0.337503,0.0485 -0.09488,-0.0712 -0.20701,-0.1089 -0.325596,-0.1089 -0.299773,0 -0.543454,0.24367 -0.543454,0.54342 0,0.29866 0.243681,0.54234 0.543454,0.54234 0.118586,0 0.230717,-0.0377 0.325596,-0.10782 0.106759,-0.0809 0.257678,-0.0593 0.337503,0.0474 0.0798,0.10675 0.05927,0.2577 -0.04747,0.33856 -0.178964,0.1337 -0.392483,0.20486 -0.615632,0.20486"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
id="path35693"
d="m 70.711636,257.56877 c 0,0.17359 -0.140202,0.31376 -0.313795,0.31376 -0.172509,0 -0.313743,-0.14017 -0.313743,-0.31376 0,-0.17252 0.141234,-0.31376 0.313743,-0.31376 0.173593,0 0.313795,0.14124 0.313795,0.31376"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 66.110162,253.14752 c 0.185446,0 0.336418,-0.0647 0.444235,-0.13801 0.05175,-0.0302 0.07763,-0.0776 0.07763,-0.13801 v -0.3364 c 0,-0.0604 -0.04744,-0.11214 -0.11213,-0.11214 h -0.349356 c -0.05175,0 -0.09919,0.0431 -0.09919,0.0992 0,0.0517 0.04744,0.0949 0.09919,0.0949 h 0.250163 v 0.23289 c -0.07766,0.0604 -0.185473,0.0949 -0.306228,0.0949 -0.25445,0 -0.426985,-0.18977 -0.426985,-0.44854 0,-0.24152 0.176848,-0.44423 0.409734,-0.44423 0.133694,0 0.224261,0.0388 0.301889,0.0992 0.0217,0.0129 0.04315,0.0259 0.06903,0.0259 0.06038,0 0.112131,-0.0518 0.112131,-0.11214 0,-0.0431 -0.02593,-0.0733 -0.04744,-0.0906 -0.112131,-0.0819 -0.241538,-0.12507 -0.426985,-0.12507 -0.379518,0 -0.646933,0.29759 -0.646933,0.64693 v 0.004 c 0,0.3666 0.254477,0.64693 0.651246,0.64693 z m 0,0"
id="path7407" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 66.869966,253.03108 c 0,0.0604 0.04744,0.1035 0.103505,0.1035 0.04744,0 0.08625,-0.0259 0.103505,-0.069 l 0.103531,-0.24152 h 0.612405 l 0.103531,0.23289 c 0.0172,0.0474 0.05175,0.0776 0.107818,0.0776 0.05607,0 0.103505,-0.0474 0.103505,-0.1035 0,-0.0172 -0.0042,-0.0345 -0.01296,-0.0474 l -0.465798,-1.04371 c -0.02593,-0.0518 -0.069,-0.0863 -0.133694,-0.0863 h -0.0087 c -0.06469,0 -0.107817,0.0345 -0.133694,0.0863 l -0.465799,1.04371 c -0.0087,0.0173 -0.0172,0.0345 -0.0172,0.0474 z m 0.396795,-0.40541 0.219949,-0.50461 0.219948,0.50461 z m 0,0"
id="path7403" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 68.549594,253.02676 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.112131,-0.0474 0.112131,-0.10782 v -0.95314 h 0.306202 c 0.05609,0 0.09922,-0.0474 0.09922,-0.0992 0,-0.0561 -0.04313,-0.10351 -0.09922,-0.10351 h -0.836692 c -0.05607,0 -0.09919,0.0474 -0.09919,0.10351 0,0.0518 0.04313,0.0992 0.09919,0.0992 h 0.306229 z m 0,0"
id="path7399" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 69.556122,253.12596 h 0.741812 c 0.05178,0 0.09922,-0.0431 0.09922,-0.0992 0,-0.0518 -0.04744,-0.0992 -0.09922,-0.0992 h -0.629655 v -0.33641 h 0.539088 c 0.05175,0 0.09919,-0.0431 0.09919,-0.0949 0,-0.0561 -0.04744,-0.10351 -0.09919,-0.10351 h -0.539088 v -0.32346 h 0.62103 c 0.05178,0 0.09491,-0.0431 0.09491,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.09491,-0.0992 h -0.733187 c -0.06038,0 -0.112131,0.0474 -0.112131,0.11214 v 1.03077 c 0,0.0647 0.05175,0.11214 0.112131,0.11214 z m 0,0"
id="path7395" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 71.783622,253.14752 c 0.388171,0 0.659871,-0.29759 0.659871,-0.65124 0,-0.35366 -0.267388,-0.64693 -0.655558,-0.64693 -0.383831,0 -0.655558,0.29327 -0.655558,0.64693 v 0.004 c 0,0.35366 0.267414,0.64693 0.651245,0.64693 z m 0.0042,-0.2027 c -0.250137,0 -0.426985,-0.20271 -0.426985,-0.44854 0,-0.24584 0.176848,-0.44423 0.422672,-0.44423 0.250137,0 0.426985,0.20271 0.426985,0.44423 v 0.004 c 0,0.24584 -0.172535,0.44423 -0.422672,0.44423 z m 0,0"
id="path7387" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 73.285027,253.14752 c 0.327766,0 0.539115,-0.18976 0.539115,-0.56498 v -0.61243 c 0,-0.0604 -0.04744,-0.10782 -0.107818,-0.10782 -0.06472,0 -0.112157,0.0474 -0.112157,0.10782 v 0.62105 c 0,0.2329 -0.120756,0.34934 -0.314827,0.34934 -0.198385,0 -0.319141,-0.12507 -0.319141,-0.35796 v -0.61243 c 0,-0.0604 -0.04747,-0.10782 -0.107844,-0.10782 -0.06469,0 -0.11213,0.0474 -0.11213,0.10782 v 0.62105 c 0,0.3666 0.20701,0.55636 0.534802,0.55636 z m 0,0"
id="path7383" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 74.487505,253.02676 c 0,0.0604 0.05175,0.10782 0.112131,0.10782 0.06038,0 0.11213,-0.0474 0.11213,-0.10782 v -0.95314 h 0.306202 c 0.05609,0 0.09922,-0.0474 0.09922,-0.0992 0,-0.0561 -0.04313,-0.10351 -0.09922,-0.10351 h -0.836692 c -0.05607,0 -0.09919,0.0474 -0.09919,0.10351 0,0.0518 0.04313,0.0992 0.09919,0.0992 h 0.306229 z m 0,0"
id="path7379" />
<path
id="path35723"
d="M 31.535655,252.48497 H 63.614797"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35725"
d="M 76.916751,252.48497 H 108.99592"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35727"
d="m 34.74558,237.2034 v 8.5438"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35729"
d="m 44.799747,237.2034 v 8.5438"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35731"
d="m 54.853914,237.2034 v 8.5438"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35733"
d="m 65.172664,237.2034 v 8.5438"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35735"
d="m 75.22683,237.2034 v 8.5438"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35737"
d="m 85.54558,237.2034 v 8.5438"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35739"
d="m 95.599747,237.2034 v 8.5438"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35741"
d="m 105.9185,237.2034 v 8.5438"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 31.482924,174.1527 c 0.250164,0 0.418359,-0.0776 0.564991,-0.20701 0.0217,-0.0216 0.04313,-0.0561 0.04313,-0.0992 0,-0.0647 -0.06038,-0.12508 -0.129381,-0.12508 -0.0345,0 -0.06038,0.0129 -0.08194,0.0302 -0.112131,0.0949 -0.224261,0.15095 -0.383858,0.15095 -0.297577,0 -0.513212,-0.24583 -0.513212,-0.54773 v -0.004 c 0,-0.3019 0.215635,-0.54773 0.513212,-0.54773 0.146659,0 0.258789,0.0561 0.366607,0.14232 0.0172,0.0129 0.04313,0.0259 0.08194,0.0259 0.07332,0 0.133694,-0.0604 0.133694,-0.1337 0,-0.0474 -0.0217,-0.0863 -0.05175,-0.10782 -0.133694,-0.10351 -0.293264,-0.17683 -0.53049,-0.17683 -0.470085,0 -0.797877,0.36228 -0.797877,0.80219 v 0.004 c 0,0.44423 0.336417,0.79357 0.784939,0.79357 z m 0,0"
id="path7375" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 32.449659,173.98882 c 0,0.0776 0.06038,0.13801 0.138006,0.13801 h 0.832406 c 0.069,0 0.125068,-0.0561 0.125068,-0.12508 0,-0.069 -0.05607,-0.12076 -0.125068,-0.12076 h -0.698685 v -1.17741 c 0,-0.0733 -0.06038,-0.1337 -0.133721,-0.1337 -0.07763,0 -0.138006,0.0604 -0.138006,0.1337 z m 0,0"
id="path7371" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 34.520658,174.1527 c 0.474425,0 0.810816,-0.36228 0.810816,-0.79788 v -0.004 c 0,-0.4356 -0.332079,-0.79788 -0.806503,-0.79788 -0.474398,0 -0.810816,0.3666 -0.810816,0.8022 v 0.004 c 0,0.4356 0.332105,0.79357 0.806503,0.79356 z m 0.0042,-0.25014 c -0.306202,0 -0.52615,-0.25015 -0.52615,-0.54774 v -0.004 c 0,-0.3019 0.215635,-0.54773 0.521838,-0.54773 0.306229,0 0.526177,0.25015 0.526177,0.55205 v 0.004 c 0,0.29758 -0.215636,0.54342 -0.521865,0.54342 z m 0,0"
id="path7367" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 36.418911,174.1527 c 0.250164,0 0.418359,-0.0776 0.564992,-0.20701 0.0217,-0.0216 0.04313,-0.0561 0.04313,-0.0992 0,-0.0647 -0.06038,-0.12508 -0.129382,-0.12508 -0.0345,0 -0.06038,0.0129 -0.08194,0.0302 -0.112131,0.0949 -0.224261,0.15095 -0.383858,0.15095 -0.297576,0 -0.513212,-0.24583 -0.513212,-0.54773 v -0.004 c 0,-0.3019 0.215636,-0.54773 0.513212,-0.54773 0.146659,0 0.258789,0.0561 0.366607,0.14232 0.0172,0.0129 0.04313,0.0259 0.08194,0.0259 0.07332,0 0.133693,-0.0604 0.133693,-0.1337 0,-0.0474 -0.0217,-0.0863 -0.05175,-0.10782 -0.133694,-0.10351 -0.293264,-0.17683 -0.53049,-0.17683 -0.470085,0 -0.797877,0.36228 -0.797877,0.80219 v 0.004 c 0,0.44423 0.336418,0.79357 0.784939,0.79357 z m 0,0"
id="path7363" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 37.385593,174.00175 c 0,0.0776 0.06038,0.13802 0.138007,0.13802 0.07334,0 0.13372,-0.0604 0.13372,-0.13802 v -0.31915 l 0.250137,-0.24152 0.500301,0.63399 c 0.02593,0.0345 0.06038,0.0647 0.11213,0.0647 0.07763,0 0.138007,-0.0604 0.138007,-0.1337 0,-0.0431 -0.0172,-0.069 -0.03881,-0.0992 l -0.521864,-0.64693 0.48305,-0.46147 c 0.03019,-0.0302 0.04744,-0.0604 0.04744,-0.10351 0,-0.0647 -0.04744,-0.12508 -0.125069,-0.12508 -0.04744,0 -0.08194,0.0172 -0.11213,0.0517 l -0.733187,0.7375 v -0.65555 c 0,-0.0733 -0.06038,-0.1337 -0.13372,-0.1337 -0.07763,0 -0.138007,0.0604 -0.138007,0.1337 z m 0,0"
id="path7359" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 62.229492,174.14839 c 0.323479,0 0.552053,-0.17251 0.552053,-0.46148 v -0.004 c 0,-0.25445 -0.168196,-0.3709 -0.495988,-0.45285 -0.297577,-0.069 -0.370893,-0.12507 -0.370893,-0.24152 v -0.004 c 0,-0.10351 0.09488,-0.18545 0.25445,-0.18545 0.120756,0 0.232886,0.0431 0.353642,0.11645 0.0217,0.0129 0.04315,0.0216 0.07334,0.0216 0.069,0 0.125069,-0.0561 0.125069,-0.12508 0,-0.0517 -0.02593,-0.0906 -0.06038,-0.10782 -0.138033,-0.0949 -0.293291,-0.14664 -0.487363,-0.14664 -0.306202,0 -0.530489,0.18546 -0.530489,0.44854 v 0.004 c 0,0.28465 0.185446,0.38385 0.517551,0.46148 0.284639,0.069 0.34933,0.12939 0.34933,0.23721 v 0.004 c 0,0.11645 -0.107818,0.19408 -0.276014,0.19408 -0.168195,0 -0.306202,-0.0561 -0.431297,-0.15958 -0.0172,-0.0129 -0.04313,-0.0216 -0.08194,-0.0216 -0.069,0 -0.125069,0.0561 -0.125069,0.12508 0,0.0431 0.0217,0.0819 0.05175,0.1035 0.172508,0.12939 0.370919,0.19408 0.582242,0.19408 z m 0,0"
id="path7355" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 63.518621,174.00175 c 0,0.0776 0.06038,0.13802 0.138007,0.13802 0.07332,0 0.138006,-0.0604 0.138006,-0.13802 v -1.16878 h 0.375232 c 0.069,0 0.125069,-0.0561 0.125069,-0.12508 0,-0.069 -0.05607,-0.12507 -0.125069,-0.12507 h -1.026477 c -0.069,0 -0.125069,0.0561 -0.125069,0.12507 0,0.069 0.05607,0.12508 0.125069,0.12508 h 0.375232 z m 0,0"
id="path7351" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 64.743324,174.12683 h 0.910035 c 0.06469,0 0.120756,-0.0517 0.120756,-0.12076 0,-0.069 -0.05607,-0.12076 -0.120756,-0.12076 h -0.776314 v -0.41835 h 0.664183 c 0.069,0 0.120756,-0.0517 0.120756,-0.11645 0,-0.069 -0.05175,-0.12507 -0.120756,-0.12507 h -0.664183 v -0.4011 h 0.763376 c 0.069,0 0.120755,-0.0517 0.120755,-0.12076 0,-0.069 -0.05175,-0.12076 -0.120755,-0.12076 h -0.897097 c -0.07763,0 -0.138006,0.0561 -0.138006,0.1337 v 1.2723 c 0,0.0776 0.06038,0.13801 0.138006,0.13801 z m 0,0"
id="path7347" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 66.130508,174.00175 c 0,0.0776 0.06038,0.13802 0.138007,0.13802 0.07334,0 0.13372,-0.0604 0.13372,-0.13802 v -0.3709 h 0.306203 c 0.34073,0 0.621056,-0.18114 0.621056,-0.53049 v -0.004 c 0,-0.31052 -0.228573,-0.51323 -0.590867,-0.51323 h -0.470112 c -0.07763,0 -0.138007,0.0561 -0.138007,0.1337 z m 0.271727,-0.61674 v -0.55636 h 0.314828 c 0.202697,0 0.336418,0.0949 0.336418,0.27603 v 0.004 c 0,0.15957 -0.129408,0.27602 -0.336418,0.27602 z m 0,0"
id="path7343" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 68.202011,174.14839 c 0.323479,0 0.552053,-0.17251 0.552053,-0.46148 v -0.004 c 0,-0.25445 -0.168196,-0.3709 -0.495988,-0.45285 -0.297577,-0.069 -0.370893,-0.12507 -0.370893,-0.24152 v -0.004 c 0,-0.10351 0.09488,-0.18545 0.25445,-0.18545 0.120756,0 0.232886,0.0431 0.353642,0.11645 0.0217,0.0129 0.04315,0.0216 0.07334,0.0216 0.069,0 0.125069,-0.0561 0.125069,-0.12508 0,-0.0517 -0.02593,-0.0906 -0.06038,-0.10782 -0.138033,-0.0949 -0.293291,-0.14664 -0.487363,-0.14664 -0.306202,0 -0.530489,0.18546 -0.530489,0.44854 v 0.004 c 0,0.28465 0.185446,0.38385 0.517551,0.46148 0.284639,0.069 0.34933,0.12939 0.34933,0.23721 v 0.004 c 0,0.11645 -0.107818,0.19408 -0.276014,0.19408 -0.168195,0 -0.306202,-0.0561 -0.431297,-0.15958 -0.0172,-0.0129 -0.04313,-0.0216 -0.08194,-0.0216 -0.069,0 -0.125069,0.0561 -0.125069,0.12508 0,0.0431 0.0217,0.0819 0.05175,0.1035 0.172508,0.12939 0.370919,0.19408 0.582242,0.19408 z m 0,0"
id="path7339" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 42.895329,175.35142 c 0,0.0604 0.05175,0.10782 0.112131,0.10782 0.06038,0 0.112156,-0.0474 0.112156,-0.10782 v -0.34072 h 0.276014 l 0.306202,0.39247 c 0.02593,0.0345 0.05607,0.0561 0.107844,0.0561 0.05175,0 0.103505,-0.0388 0.103505,-0.10351 0,-0.0345 -0.01296,-0.0561 -0.0345,-0.0819 l -0.241539,-0.3019 c 0.168223,-0.0561 0.284666,-0.17683 0.284666,-0.37522 v -0.004 c 0,-0.11213 -0.0345,-0.2027 -0.103505,-0.27171 -0.07766,-0.0776 -0.202724,-0.12507 -0.362294,-0.12507 h -0.448548 c -0.06038,0 -0.112131,0.0474 -0.112131,0.11213 z m 0.224287,-0.5348 v -0.42266 h 0.319141 c 0.163883,0 0.258762,0.0733 0.258762,0.21133 0,0.12939 -0.09919,0.21133 -0.258762,0.21133 z m 0,0"
id="path7335" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 44.769241,175.47218 c 0.327765,0 0.539115,-0.18977 0.539115,-0.56499 v -0.61243 c 0,-0.0604 -0.04744,-0.10782 -0.107818,-0.10782 -0.06472,0 -0.112157,0.0474 -0.112157,0.10782 v 0.62106 c 0,0.23289 -0.120756,0.34934 -0.314828,0.34934 -0.198384,0 -0.31914,-0.12507 -0.31914,-0.35797 v -0.61243 c 0,-0.0604 -0.04747,-0.10782 -0.107844,-0.10782 -0.06469,0 -0.112131,0.0474 -0.112131,0.10782 v 0.62106 c 0,0.36659 0.20701,0.55636 0.534803,0.55636 z m 0,0"
id="path7331" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 45.679857,175.35142 c 0,0.0604 0.05175,0.10782 0.112131,0.10782 0.06038,0 0.107844,-0.0474 0.107844,-0.10782 v -0.79789 l 0.646906,0.8367 c 0.03021,0.0388 0.0604,0.069 0.112157,0.069 h 0.0087 c 0.06038,0 0.107818,-0.0517 0.107818,-0.11213 v -1.05234 c 0,-0.0604 -0.04744,-0.10783 -0.107818,-0.10783 -0.06038,0 -0.107844,0.0474 -0.107844,0.10783 v 0.772 l -0.629656,-0.81513 c -0.03019,-0.0388 -0.0604,-0.0647 -0.112156,-0.0647 h -0.02593 c -0.06038,0 -0.11213,0.0517 -0.11213,0.11213 z m 0,0"
id="path7327" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 52.036525,175.35142 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.112157,-0.0474 0.112157,-0.10782 v -0.34072 h 0.276013 l 0.306203,0.39247 c 0.02593,0.0345 0.05606,0.0561 0.107844,0.0561 0.05175,0 0.103505,-0.0388 0.103505,-0.10351 0,-0.0345 -0.01297,-0.0561 -0.0345,-0.0819 l -0.24154,-0.30191 c 0.168222,-0.0561 0.284665,-0.17682 0.284665,-0.37522 v -0.004 c 0,-0.11213 -0.0345,-0.2027 -0.103505,-0.27171 -0.07766,-0.0776 -0.202724,-0.12507 -0.362294,-0.12507 h -0.448548 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11213 z m 0.224287,-0.5348 v -0.42266 h 0.31914 c 0.163883,0 0.258763,0.0733 0.258763,0.21133 0,0.12939 -0.09919,0.21133 -0.258763,0.21133 z m 0,0"
id="path7323" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 53.509169,175.45061 h 0.741812 c 0.05178,0 0.09922,-0.0431 0.09922,-0.0992 0,-0.0517 -0.04744,-0.0992 -0.09922,-0.0992 h -0.629655 v -0.3364 h 0.539088 c 0.05175,0 0.09919,-0.0431 0.09919,-0.0949 0,-0.0561 -0.04744,-0.10351 -0.09919,-0.10351 h -0.539088 v -0.32347 h 0.62103 c 0.05178,0 0.09491,-0.0431 0.09491,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.09491,-0.0992 h -0.733187 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11214 v 1.03077 c 0,0.0647 0.05175,0.11214 0.11213,0.11214 z m 0,0"
id="path7319" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 55.092885,175.46786 c 0.267388,0 0.448522,-0.13801 0.448522,-0.37522 v -0.004 c 0,-0.20701 -0.133694,-0.3019 -0.401082,-0.36659 -0.241511,-0.0561 -0.297603,-0.0992 -0.297603,-0.19839 0,-0.0863 0.07334,-0.15095 0.202724,-0.15095 0.09919,0 0.194072,0.0302 0.288951,0.0949 0.0172,0.0129 0.0345,0.0173 0.05606,0.0173 0.06038,0 0.107818,-0.0474 0.107818,-0.10351 0,-0.0431 -0.02593,-0.0733 -0.05175,-0.0863 -0.112131,-0.0776 -0.237199,-0.11645 -0.39677,-0.11645 -0.250163,0 -0.426984,0.14664 -0.426984,0.36228 v 0.004 c 0,0.2329 0.146632,0.31053 0.414046,0.37522 0.237199,0.0517 0.284639,0.10351 0.284639,0.18977 v 0.004 c 0,0.0949 -0.08625,0.15957 -0.219948,0.15957 -0.138007,0 -0.250137,-0.0474 -0.353669,-0.12938 -0.01296,-0.0129 -0.0345,-0.0216 -0.06469,-0.0216 -0.05607,0 -0.103505,0.0474 -0.103505,0.10351 0,0.0345 0.0172,0.0647 0.04313,0.0863 0.138006,0.10351 0.301916,0.15526 0.470111,0.15526 z m 0,0"
id="path7315" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 55.975059,175.45061 h 0.741812 c 0.05178,0 0.09922,-0.0431 0.09922,-0.0992 0,-0.0517 -0.04744,-0.0992 -0.09922,-0.0992 h -0.629655 v -0.3364 h 0.539089 c 0.05175,0 0.09919,-0.0431 0.09919,-0.0949 0,-0.0561 -0.04744,-0.10351 -0.09919,-0.10351 h -0.539089 v -0.32347 h 0.62103 c 0.05178,0 0.09491,-0.0431 0.09491,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.09491,-0.0992 h -0.733187 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11214 v 1.03077 c 0,0.0647 0.05175,0.11214 0.11213,0.11214 z m 0,0"
id="path7311" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 57.445693,175.35142 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.112131,-0.0474 0.112131,-0.10782 v -0.95315 h 0.306202 c 0.05609,0 0.09922,-0.0474 0.09922,-0.0992 0,-0.0561 -0.04313,-0.10351 -0.09922,-0.10351 h -0.836692 c -0.05607,0 -0.09919,0.0474 -0.09919,0.10351 0,0.0517 0.04313,0.0992 0.09919,0.0992 h 0.306229 z m 0,0"
id="path7307" />
<path
id="path35805"
d="m 34.74558,181.31115 v 10.7908"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35807"
d="m 75.22683,179.72419 v 10.78972"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35809"
d="m 55.118497,179.72419 v 10.78972"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35811"
d="m 85.54558,179.72419 v 10.78972"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35813"
d="m 95.599747,179.72419 v 10.78972"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35815"
d="m 105.9185,179.72419 v 10.78972"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
id="path35817"
d="m 65.172664,179.72419 v 10.78972"
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 41.048061,185.72278 h 0.741813 c 0.05178,0 0.09922,-0.0431 0.09922,-0.0992 0,-0.0517 -0.04744,-0.0992 -0.09922,-0.0992 h -0.629656 v -0.3364 h 0.539089 c 0.05175,0 0.09919,-0.0431 0.09919,-0.0949 0,-0.0561 -0.04744,-0.10351 -0.09919,-0.10351 h -0.539089 v -0.32346 h 0.62103 c 0.05178,0 0.09491,-0.0431 0.09491,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.09491,-0.0992 h -0.733187 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11213 v 1.03077 c 0,0.0647 0.05175,0.11214 0.11213,0.11214 z m 0,0"
id="path7303" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 42.13198,185.62789 c 0,0.0647 0.05175,0.10351 0.103505,0.10351 0.04744,0 0.07763,-0.0216 0.107818,-0.0604 l 0.332105,-0.43129 0.336391,0.43992 c 0.02593,0.0345 0.05175,0.0517 0.09922,0.0517 0.06469,0 0.11213,-0.0474 0.11213,-0.10782 0,-0.0302 -0.0172,-0.0604 -0.0345,-0.0819 l -0.370919,-0.46148 0.349356,-0.4356 c 0.0217,-0.0302 0.0345,-0.0517 0.0345,-0.0863 0,-0.0604 -0.05175,-0.0992 -0.09919,-0.0992 -0.04747,0 -0.07766,0.0216 -0.107844,0.0604 l -0.314828,0.40972 -0.314854,-0.41834 c -0.03019,-0.0345 -0.05607,-0.0517 -0.103505,-0.0517 -0.06038,0 -0.107818,0.0474 -0.107818,0.10782 0,0.0302 0.0172,0.0561 0.0345,0.0819 l 0.349356,0.43559 -0.37092,0.46148 c -0.0217,0.0259 -0.0345,0.0518 -0.0345,0.0819 z m 0,0"
id="path7299" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 43.851428,185.62358 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.11213,-0.0474 0.11213,-0.10782 v -0.95314 h 0.306203 c 0.05609,0 0.09922,-0.0475 0.09922,-0.0992 0,-0.0561 -0.04313,-0.1035 -0.09922,-0.1035 h -0.836692 c -0.05607,0 -0.09919,0.0474 -0.09919,0.1035 0,0.0517 0.04313,0.0992 0.09919,0.0992 h 0.306229 z m 0,0"
id="path7295" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 45.828288,185.74434 c 0.202698,0 0.336418,-0.0647 0.452861,-0.1682 0.0217,-0.0173 0.03881,-0.0474 0.03881,-0.0776 0,-0.0561 -0.05175,-0.10351 -0.107818,-0.10351 -0.02593,0 -0.04744,0.009 -0.06469,0.0259 -0.09059,0.0776 -0.18116,0.12076 -0.314854,0.12076 -0.237199,0 -0.414046,-0.2027 -0.414046,-0.44853 0,-0.24584 0.176847,-0.44423 0.414046,-0.44423 0.120756,0 0.215635,0.0431 0.301916,0.11214 0.01296,0.0129 0.0345,0.0216 0.06469,0.0216 0.06038,0 0.11213,-0.0474 0.11213,-0.10782 0,-0.0388 -0.0217,-0.069 -0.04313,-0.0863 -0.11213,-0.0863 -0.237225,-0.14232 -0.431297,-0.14232 -0.379519,0 -0.646933,0.29327 -0.646933,0.64693 v 0.004 c 0,0.36228 0.271727,0.64693 0.638307,0.64693 z m 0,0"
id="path7287" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 46.622144,185.61064 c 0,0.0647 0.05175,0.11214 0.112131,0.11214 h 0.677121 c 0.05607,0 0.103532,-0.0431 0.103532,-0.0992 0,-0.0561 -0.04747,-0.10351 -0.103532,-0.10351 h -0.564965 v -0.95314 c 0,-0.0604 -0.05178,-0.10782 -0.112156,-0.10782 -0.06038,0 -0.112131,0.0474 -0.112131,0.10782 z m 0,0"
id="path7283" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 47.77668,185.62358 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.112157,-0.0474 0.112157,-0.10782 v -0.26308 l 0.202698,-0.19408 0.405394,0.51323 c 0.0217,0.0302 0.04744,0.0517 0.09059,0.0517 0.06469,0 0.11213,-0.0474 0.11213,-0.10782 0,-0.0345 -0.01297,-0.0561 -0.03019,-0.0776 l -0.422672,-0.52617 0.38817,-0.37522 c 0.02593,-0.0259 0.04313,-0.0517 0.04313,-0.0863 0,-0.0517 -0.04313,-0.0992 -0.103505,-0.0992 -0.03884,0 -0.06472,0.0129 -0.09059,0.0388 l -0.595154,0.59949 v -0.53048 c 0,-0.0604 -0.05178,-0.10782 -0.112157,-0.10782 -0.06038,0 -0.11213,0.0474 -0.11213,0.10782 z m 0,0"
id="path7279" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 34.621094,200.89411 c 0,0.0776 0.06038,0.13802 0.133694,0.13802 0.07763,0 0.138007,-0.0604 0.138007,-0.13802 v -1.3068 c 0,-0.0733 -0.06038,-0.1337 -0.138007,-0.1337 h -0.0042 c -0.03881,0 -0.07763,0.009 -0.129382,0.0259 l -0.237225,0.0733 c -0.05175,0.0173 -0.09057,0.0604 -0.09057,0.11645 0,0.0647 0.05606,0.11644 0.120756,0.11644 0.01296,0 0.0345,-0.004 0.04744,-0.009 l 0.159596,-0.0474 z m 0,0"
id="path7275" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 44.255949,200.8898 c 0,0.0819 0.06038,0.12939 0.146632,0.12939 h 0.875533 c 0.06469,0 0.120756,-0.0518 0.120756,-0.12077 0,-0.0647 -0.05607,-0.11644 -0.120756,-0.11644 h -0.625369 l 0.314827,-0.2674 c 0.27604,-0.21996 0.405421,-0.35365 0.405421,-0.59518 v -0.009 c 0,-0.27603 -0.211349,-0.46148 -0.513238,-0.46148 -0.241512,0 -0.383858,0.0949 -0.508926,0.25015 -0.0217,0.0259 -0.0345,0.0561 -0.0345,0.0862 0,0.069 0.05607,0.12076 0.125068,0.12076 0.04313,0 0.07334,-0.0173 0.09491,-0.0388 0.09488,-0.11645 0.181134,-0.17252 0.306203,-0.17252 0.138006,0 0.250137,0.0863 0.250137,0.24152 0,0.13801 -0.07763,0.23721 -0.293264,0.41404 l -0.474425,0.40541 c -0.04313,0.0388 -0.069,0.0819 -0.069,0.1337 z m 0,0"
id="path7271" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 55.013325,201.04506 c 0.323453,0 0.543428,-0.2027 0.543428,-0.49167 v -0.004 c 0,-0.28465 -0.224287,-0.40109 -0.457174,-0.43129 l 0.366607,-0.37521 c 0.04313,-0.0474 0.07763,-0.0863 0.07763,-0.15095 0,-0.0733 -0.06038,-0.11645 -0.138007,-0.11645 h -0.789278 c -0.06469,0 -0.120756,0.0517 -0.120756,0.11645 0,0.0647 0.05606,0.11644 0.120756,0.11644 h 0.560678 l -0.362267,0.38816 c -0.04313,0.0431 -0.05607,0.0733 -0.05607,0.11214 0,0.0604 0.05175,0.11644 0.116444,0.11644 h 0.05607 c 0.215635,0 0.353642,0.0863 0.353642,0.23721 v 0.004 c 0,0.14233 -0.112131,0.2329 -0.267388,0.2329 -0.142319,0 -0.25445,-0.0474 -0.349356,-0.14664 -0.0217,-0.0216 -0.05175,-0.0345 -0.09057,-0.0345 -0.07332,0 -0.129381,0.0604 -0.129381,0.12938 0,0.0388 0.0172,0.0776 0.04313,0.0992 0.125069,0.12076 0.293291,0.19839 0.521864,0.19839 z m 0,0"
id="path7267" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 65.337817,200.90274 c 0,0.0733 0.05606,0.12939 0.129381,0.12939 0.07334,0 0.129408,-0.0561 0.129408,-0.12939 v -0.22859 h 0.120755 c 0.06469,0 0.112131,-0.0517 0.112131,-0.11213 0,-0.0604 -0.04744,-0.11213 -0.112131,-0.11213 H 65.596606 V 199.583 c 0,-0.0733 -0.05607,-0.1337 -0.129408,-0.1337 -0.08194,0 -0.116443,0.0345 -0.168196,0.0906 l -0.724561,0.86257 c -0.03881,0.0431 -0.06038,0.0906 -0.06038,0.14233 0,0.0733 0.06038,0.12938 0.133694,0.12938 h 0.69006 z m -0.5089,-0.45285 0.5089,-0.61243 v 0.61243 z m 0,0"
id="path7263" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 75.346422,201.04506 c 0.327766,0 0.564991,-0.20702 0.564991,-0.52186 v -0.004 c 0,-0.32778 -0.237225,-0.48735 -0.539115,-0.48735 -0.103505,0 -0.172508,0.0173 -0.245824,0.0431 l 0.02593,-0.36228 h 0.57793 c 0.069,0 0.120755,-0.0517 0.120755,-0.11644 0,-0.069 -0.05175,-0.12076 -0.120755,-0.12076 h -0.698687 c -0.06472,0 -0.120782,0.0474 -0.125095,0.12076 l -0.03019,0.55636 c -0.0042,0.0517 0.01297,0.0906 0.05175,0.11644 0.05175,0.0388 0.08625,0.0561 0.129408,0.0561 0.03881,0 0.11213,-0.0561 0.263075,-0.0561 0.189759,0 0.31914,0.0992 0.31914,0.25878 v 0.004 c 0,0.16389 -0.125068,0.2674 -0.297577,0.2674 -0.120756,0 -0.232886,-0.0431 -0.336417,-0.12939 -0.0217,-0.0216 -0.04744,-0.0302 -0.08194,-0.0302 -0.069,0 -0.129381,0.0604 -0.129381,0.1337 0,0.0431 0.0217,0.0776 0.05606,0.10351 0.125069,0.0992 0.284665,0.1682 0.495988,0.1682 z m 0,0"
id="path7259" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 85.546692,201.04506 c 0.323479,0 0.573616,-0.21996 0.573616,-0.52617 v -0.004 c 0,-0.30622 -0.241511,-0.48304 -0.539115,-0.48304 -0.185446,0 -0.288951,0.0733 -0.370893,0.15095 0.01296,-0.28034 0.138007,-0.48736 0.370893,-0.48736 0.103505,0 0.181134,0.0302 0.263076,0.0863 0.0217,0.009 0.04315,0.0172 0.06903,0.0172 0.069,0 0.129382,-0.0517 0.129382,-0.12507 0,-0.0561 -0.02593,-0.0906 -0.069,-0.11645 -0.09919,-0.069 -0.224287,-0.11214 -0.383857,-0.11214 -0.439923,0 -0.664184,0.37091 -0.664184,0.84533 v 0.004 c 0,0.31053 0.07332,0.4701 0.189759,0.58655 0.103532,0.10351 0.241539,0.16389 0.431298,0.16389 z m -0.0087,-0.23721 c -0.194071,0 -0.31914,-0.11644 -0.31914,-0.27602 v -0.004 c 0,-0.14664 0.120756,-0.27171 0.310515,-0.27171 0.194072,0 0.31914,0.11644 0.31914,0.27171 v 0.004 c 0,0.15958 -0.116443,0.27602 -0.310515,0.27602 z m 0,0"
id="path7255" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 95.326406,200.90705 c 0,0.0776 0.06903,0.12508 0.138033,0.12508 0.05607,0 0.09919,-0.0302 0.133694,-0.0906 l 0.638307,-1.21624 c 0.0217,-0.0431 0.03881,-0.0906 0.03881,-0.12938 0,-0.0776 -0.04744,-0.12076 -0.125069,-0.12076 h -0.866907 c -0.06469,0 -0.120756,0.0517 -0.120756,0.11645 0,0.069 0.05606,0.12076 0.120756,0.12076 h 0.668496 l -0.599493,1.11272 c -0.01296,0.0259 -0.02593,0.0604 -0.02593,0.0819 z m 0,0"
id="path7251" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 105.8677,201.04075 c 0.3407,0 0.59086,-0.17252 0.59086,-0.44854 v -0.004 c 0,-0.18114 -0.10781,-0.29328 -0.28035,-0.37091 0.13372,-0.069 0.2286,-0.17251 0.2286,-0.34503 v -0.004 c 0,-0.23721 -0.2286,-0.41835 -0.53911,-0.41835 -0.30621,0 -0.53481,0.18114 -0.53481,0.41835 v 0.004 c 0,0.17252 0.0949,0.27603 0.22429,0.34503 -0.17253,0.0733 -0.27604,0.18977 -0.27604,0.37522 v 0.004 c 0,0.2674 0.25017,0.44423 0.58656,0.44423 z m 0,-0.91433 c -0.15957,0 -0.27602,-0.0949 -0.27602,-0.22858 v -0.004 c 0,-0.11645 0.11213,-0.21565 0.27602,-0.21565 0.16819,0 0.27601,0.0992 0.27601,0.21565 v 0.004 c 0,0.1337 -0.11644,0.22858 -0.27601,0.22858 z m 0,0.68575 c -0.2027,0 -0.31914,-0.10351 -0.31914,-0.22859 v -0.004 c 0,-0.14232 0.138,-0.2372 0.31914,-0.2372 0.18544,0 0.32776,0.0949 0.32776,0.2372 v 0.004 c 0,0.12508 -0.12507,0.22859 -0.32776,0.22859 z m 0,0"
id="path7247" />
<path
id="path36677"
d="m 48.587522,242.56724 c 0,-0.35581 -0.291121,-0.64693 -0.646933,-0.64693 h -6.281684 c -0.355812,0 -0.646933,0.29112 -0.646933,0.64693 v 6.28278 c 0,0.35581 0.291121,0.64693 0.646933,0.64693 h 6.281684 c 0.355812,0 0.646933,-0.29112 0.646933,-0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
id="path36679"
d="m 58.641689,242.56724 c 0,-0.35581 -0.291121,-0.64693 -0.646933,-0.64693 h -6.281711 c -0.355785,0 -0.646906,0.29112 -0.646906,0.64693 v 6.28278 c 0,0.35581 0.291121,0.64693 0.646906,0.64693 h 6.281711 c 0.355812,0 0.646933,-0.29112 0.646933,-0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
id="path36681"
d="m 68.960439,242.56724 c 0,-0.35581 -0.29001,-0.64693 -0.645848,-0.64693 h -6.28277 c -0.355811,0 -0.646932,0.29112 -0.646932,0.64693 v 6.28278 c 0,0.35581 0.291121,0.64693 0.646932,0.64693 h 6.28277 c 0.355838,0 0.645848,-0.29112 0.645848,-0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
id="path36683"
d="m 79.014605,242.56724 c 0,-0.35581 -0.291121,-0.64693 -0.646906,-0.64693 h -6.281711 c -0.355812,0 -0.646933,0.29112 -0.646933,0.64693 v 6.28278 c 0,0.35581 0.291121,0.64693 0.646933,0.64693 h 6.281711 c 0.355785,0 0.646906,-0.29112 0.646906,-0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
id="path36685"
d="m 89.333355,242.56724 c 0,-0.35581 -0.291121,-0.64693 -0.646959,-0.64693 h -6.281684 c -0.355812,0 -0.646907,0.29112 -0.646907,0.64693 v 6.28278 c 0,0.35581 0.291095,0.64693 0.646907,0.64693 h 6.281684 c 0.355838,0 0.646959,-0.29112 0.646959,-0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
id="path36687"
d="m 99.387522,242.56724 c 0,-0.35581 -0.291121,-0.64693 -0.646906,-0.64693 h -6.28277 c -0.355838,0 -0.645874,0.29112 -0.645874,0.64693 v 6.28278 c 0,0.35581 0.290036,0.64693 0.645874,0.64693 h 6.28277 c 0.355785,0 0.646906,-0.29112 0.646906,-0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
id="path36689"
d="m 109.70627,242.56724 c 0,-0.35581 -0.29112,-0.64693 -0.64693,-0.64693 h -6.28171 c -0.35579,0 -0.64691,0.29112 -0.64691,0.64693 v 6.28278 c 0,0.35581 0.29112,0.64693 0.64691,0.64693 h 6.28171 c 0.35581,0 0.64693,-0.29112 0.64693,-0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 73.542731,175.47218 c 0.185447,0 0.336418,-0.0647 0.444235,-0.13802 0.05175,-0.0302 0.07763,-0.0776 0.07763,-0.13801 v -0.3364 c 0,-0.0604 -0.04744,-0.11214 -0.11213,-0.11214 H 73.60311 c -0.05175,0 -0.09919,0.0431 -0.09919,0.0992 0,0.0517 0.04744,0.0949 0.09919,0.0949 h 0.250164 v 0.2329 c -0.07766,0.0604 -0.185473,0.0949 -0.306229,0.0949 -0.25445,0 -0.426985,-0.18977 -0.426985,-0.44854 0,-0.24152 0.176848,-0.44423 0.409734,-0.44423 0.133694,0 0.224261,0.0388 0.30189,0.0992 0.0217,0.0129 0.04315,0.0259 0.06903,0.0259 0.06038,0 0.112131,-0.0517 0.112131,-0.11213 0,-0.0431 -0.02593,-0.0733 -0.04744,-0.0906 -0.11213,-0.082 -0.241538,-0.12507 -0.426985,-0.12507 -0.379518,0 -0.646932,0.29758 -0.646932,0.64693 v 0.004 c 0,0.36659 0.254476,0.64693 0.651245,0.64693 z m 0,0"
id="path6783" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 74.302535,175.35573 c 0,0.0604 0.04744,0.10351 0.103505,0.10351 0.04744,0 0.08625,-0.0259 0.103505,-0.069 l 0.103531,-0.24152 h 0.612405 l 0.103532,0.23289 c 0.0172,0.0474 0.05175,0.0776 0.107817,0.0776 0.05607,0 0.103505,-0.0474 0.103505,-0.10351 0,-0.0172 -0.0042,-0.0345 -0.01296,-0.0474 l -0.465799,-1.04371 c -0.02593,-0.0517 -0.069,-0.0863 -0.133694,-0.0863 h -0.0087 c -0.06469,0 -0.107817,0.0345 -0.133693,0.0863 l -0.465799,1.04371 c -0.0087,0.0172 -0.0172,0.0345 -0.0172,0.0474 z m 0.396796,-0.40541 0.219948,-0.50461 0.219948,0.50461 z m 0,0"
id="path6779" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 75.982136,175.35142 c 0,0.0604 0.05175,0.10782 0.112131,0.10782 0.06038,0 0.11213,-0.0474 0.11213,-0.10782 v -0.95315 H 76.5126 c 0.05609,0 0.09922,-0.0474 0.09922,-0.0992 0,-0.0561 -0.04313,-0.10351 -0.09922,-0.10351 h -0.836692 c -0.05606,0 -0.09919,0.0474 -0.09919,0.10351 0,0.0517 0.04313,0.0992 0.09919,0.0992 h 0.306228 z m 0,0"
id="path6775" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 76.988717,175.45061 h 0.741813 c 0.05178,0 0.09922,-0.0431 0.09922,-0.0992 0,-0.0517 -0.04744,-0.0992 -0.09922,-0.0992 h -0.629656 v -0.3364 h 0.539089 c 0.05175,0 0.09919,-0.0431 0.09919,-0.0949 0,-0.0561 -0.04744,-0.10351 -0.09919,-0.10351 h -0.539089 v -0.32347 h 0.62103 c 0.05178,0 0.09491,-0.0431 0.09491,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.09491,-0.0992 h -0.733187 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11214 v 1.03077 c 0,0.0647 0.05175,0.11214 0.11213,0.11214 z m 0,0"
id="path6771" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 82.637069,175.35142 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.112157,-0.0474 0.112157,-0.10782 v -0.34072 h 0.276013 l 0.306203,0.39247 c 0.02593,0.0345 0.05606,0.0561 0.107844,0.0561 0.05175,0 0.103505,-0.0388 0.103505,-0.10351 0,-0.0345 -0.01297,-0.0561 -0.0345,-0.0819 l -0.241538,-0.3019 c 0.168222,-0.0561 0.284665,-0.17683 0.284665,-0.37522 v -0.004 c 0,-0.11213 -0.0345,-0.2027 -0.103505,-0.27171 -0.07766,-0.0776 -0.202723,-0.12507 -0.362294,-0.12507 h -0.448548 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11213 z m 0.224287,-0.5348 v -0.42266 h 0.31914 c 0.163883,0 0.258763,0.0733 0.258763,0.21133 0,0.12939 -0.09919,0.21133 -0.258763,0.21133 z m 0,0"
id="path6767" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 84.575168,175.47218 c 0.38817,0 0.659871,-0.29759 0.659871,-0.65125 0,-0.35365 -0.267388,-0.64693 -0.655558,-0.64693 -0.383831,0 -0.655558,0.29328 -0.655558,0.64693 v 0.004 c 0,0.35366 0.267414,0.64693 0.651245,0.64693 z m 0.0042,-0.20271 c -0.250137,0 -0.426984,-0.2027 -0.426984,-0.44854 0,-0.24583 0.176847,-0.44422 0.422672,-0.44422 0.250137,0 0.426984,0.2027 0.426984,0.44422 v 0.004 c 0,0.24584 -0.172534,0.44423 -0.422672,0.44423 z m 0,0"
id="path6763" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 85.80601,175.37729 c 0.0217,0.0561 0.06038,0.0906 0.11213,0.0906 h 0.0217 c 0.05607,0 0.09488,-0.0345 0.116443,-0.0906 l 0.280326,-0.81944 0.280353,0.81944 c 0.0172,0.0561 0.05607,0.0906 0.11213,0.0906 h 0.0217 c 0.05175,0 0.09488,-0.0345 0.116443,-0.0906 l 0.370919,-1.0394 c 0.0042,-0.0129 0.0087,-0.0302 0.0087,-0.0474 0,-0.0561 -0.05175,-0.10351 -0.107818,-0.10351 -0.05609,0 -0.09059,0.0345 -0.107844,0.0776 l -0.288952,0.86689 -0.284638,-0.86258 c -0.0172,-0.0517 -0.05607,-0.0863 -0.112157,-0.0863 h -0.01296 c -0.05607,0 -0.09488,0.0345 -0.11213,0.0863 l -0.284639,0.86258 -0.288978,-0.86689 c -0.01296,-0.0431 -0.05607,-0.0776 -0.107818,-0.0776 -0.06038,0 -0.116443,0.0474 -0.116443,0.10782 0,0.0129 0.0042,0.0302 0.01297,0.0431 z m 0,0"
id="path6759" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 88.177999,175.35142 c 0,0.0604 0.05178,0.10782 0.107845,0.10782 0.06469,0 0.11213,-0.0474 0.11213,-0.10782 v -1.06528 c 0,-0.0604 -0.04744,-0.10783 -0.11213,-0.10783 -0.0345,0 -0.06469,0.009 -0.107845,0.0216 l -0.189759,0.0604 c -0.04744,0.0129 -0.07763,0.0474 -0.07763,0.0949 0,0.0474 0.04744,0.0906 0.09919,0.0906 0.0087,0 0.02593,0 0.03881,-0.004 l 0.129381,-0.0388 z m 0,0"
id="path6751" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 92.614348,175.35142 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.112157,-0.0474 0.112157,-0.10782 v -0.34072 h 0.276013 l 0.306202,0.39247 c 0.02593,0.0345 0.05607,0.0561 0.107845,0.0561 0.05175,0 0.103505,-0.0388 0.103505,-0.10351 0,-0.0345 -0.01296,-0.0561 -0.0345,-0.0819 l -0.241538,-0.3019 c 0.168222,-0.0561 0.284665,-0.17683 0.284665,-0.37522 v -0.004 c 0,-0.11213 -0.0345,-0.2027 -0.103505,-0.27171 -0.07765,-0.0776 -0.202724,-0.12507 -0.362294,-0.12507 H 92.72648 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11213 z m 0.224287,-0.5348 v -0.42266 h 0.31914 c 0.163883,0 0.258763,0.0733 0.258763,0.21133 0,0.12939 -0.09919,0.21133 -0.258763,0.21133 z m 0,0"
id="path6747" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 94.552447,175.47218 c 0.38817,0 0.659871,-0.29759 0.659871,-0.65125 0,-0.35365 -0.267388,-0.64693 -0.655558,-0.64693 -0.383831,0 -0.655559,0.29328 -0.655559,0.64693 v 0.004 c 0,0.35366 0.267415,0.64693 0.651246,0.64693 z m 0.0042,-0.20271 c -0.250137,0 -0.426984,-0.2027 -0.426984,-0.44854 0,-0.24583 0.176847,-0.44422 0.422672,-0.44422 0.250137,0 0.426984,0.2027 0.426984,0.44422 v 0.004 c 0,0.24584 -0.172535,0.44423 -0.422672,0.44423 z m 0,0"
id="path6743" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 95.783315,175.37729 c 0.0217,0.0561 0.06038,0.0906 0.11213,0.0906 h 0.0217 c 0.05607,0 0.09488,-0.0345 0.116443,-0.0906 l 0.280326,-0.81944 0.280353,0.81944 c 0.0172,0.0561 0.05607,0.0906 0.11213,0.0906 h 0.0217 c 0.05175,0 0.09488,-0.0345 0.116443,-0.0906 l 0.37092,-1.0394 c 0.0042,-0.0129 0.0087,-0.0302 0.0087,-0.0474 0,-0.0561 -0.05175,-0.10351 -0.107818,-0.10351 -0.05609,0 -0.09059,0.0345 -0.107844,0.0776 l -0.288951,0.86689 -0.284639,-0.86258 c -0.0172,-0.0517 -0.05607,-0.0863 -0.112157,-0.0863 h -0.01296 c -0.05607,0 -0.09488,0.0345 -0.11213,0.0863 l -0.284639,0.86258 -0.288978,-0.86689 c -0.01296,-0.0431 -0.05606,-0.0776 -0.107817,-0.0776 -0.06038,0 -0.116444,0.0474 -0.116444,0.10782 0,0.0129 0.0042,0.0302 0.01297,0.0431 z m 0,0"
id="path6739" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 97.913793,175.3471 c 0,0.0647 0.05175,0.10351 0.116443,0.10351 h 0.711623 c 0.05607,0 0.09919,-0.0431 0.09919,-0.0949 0,-0.0561 -0.04313,-0.0992 -0.09919,-0.0992 H 98.23296 l 0.258762,-0.21564 c 0.224261,-0.18114 0.327766,-0.28896 0.327766,-0.48736 0,-0.22427 -0.168195,-0.37522 -0.41402,-0.37522 -0.198384,0 -0.314854,0.0733 -0.418359,0.20271 -0.01297,0.0172 -0.0217,0.0431 -0.0217,0.0647 0,0.0561 0.04313,0.10351 0.09919,0.10351 0.0345,0 0.06038,-0.0172 0.07763,-0.0345 0.07765,-0.0949 0.146659,-0.14233 0.245851,-0.14233 0.116443,0 0.202697,0.0733 0.202697,0.19839 0,0.11214 -0.06038,0.19408 -0.232886,0.33641 l -0.38817,0.32778 c -0.03881,0.0345 -0.05606,0.069 -0.05606,0.11213 z m 0,0"
id="path6731" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 102.78183,175.35142 c 0,0.0604 0.0517,0.10782 0.11214,0.10782 0.0604,0 0.11215,-0.0474 0.11215,-0.10782 v -0.34072 h 0.27602 l 0.3062,0.39247 c 0.0259,0.0345 0.0561,0.0561 0.10784,0.0561 0.0517,0 0.10351,-0.0388 0.10351,-0.10351 0,-0.0345 -0.013,-0.0561 -0.0345,-0.0819 l -0.24154,-0.3019 c 0.16822,-0.0561 0.28466,-0.17683 0.28466,-0.37522 v -0.004 c 0,-0.11213 -0.0345,-0.2027 -0.1035,-0.27171 -0.0776,-0.0776 -0.20273,-0.12507 -0.3623,-0.12507 h -0.44854 c -0.0604,0 -0.11213,0.0474 -0.11213,0.11213 z m 0.22429,-0.5348 v -0.42266 h 0.31914 c 0.16389,0 0.25876,0.0733 0.25876,0.21133 0,0.12939 -0.0992,0.21133 -0.25876,0.21133 z m 0,0"
id="path6727" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 104.71993,175.47218 c 0.38817,0 0.65987,-0.29759 0.65987,-0.65125 0,-0.35365 -0.26738,-0.64693 -0.65555,-0.64693 -0.38383,0 -0.65556,0.29328 -0.65556,0.64693 v 0.004 c 0,0.35366 0.26741,0.64693 0.65124,0.64693 z m 0.004,-0.20271 c -0.25013,0 -0.42698,-0.2027 -0.42698,-0.44854 0,-0.24583 0.17685,-0.44422 0.42267,-0.44422 0.25014,0 0.42699,0.2027 0.42699,0.44422 v 0.004 c 0,0.24584 -0.17254,0.44423 -0.42268,0.44423 z m 0,0"
id="path6723" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 105.9508,175.37729 c 0.0217,0.0561 0.0604,0.0906 0.11213,0.0906 h 0.0217 c 0.0561,0 0.0949,-0.0345 0.11645,-0.0906 l 0.28032,-0.81944 0.28035,0.81944 c 0.0172,0.0561 0.0561,0.0906 0.11213,0.0906 h 0.0217 c 0.0517,0 0.0949,-0.0345 0.11645,-0.0906 l 0.37092,-1.0394 c 0.004,-0.0129 0.009,-0.0302 0.009,-0.0474 0,-0.0561 -0.0517,-0.10351 -0.10782,-0.10351 -0.0561,0 -0.0906,0.0345 -0.10785,0.0776 l -0.28892,0.86689 -0.28464,-0.86258 c -0.0172,-0.0517 -0.0561,-0.0863 -0.11216,-0.0863 h -0.013 c -0.0561,0 -0.0949,0.0345 -0.11213,0.0863 l -0.28464,0.86258 -0.28898,-0.86689 c -0.013,-0.0431 -0.0561,-0.0776 -0.10781,-0.0776 -0.0604,0 -0.11645,0.0474 -0.11645,0.10782 0,0.0129 0.004,0.0302 0.013,0.0431 z m 0,0"
id="path6719" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
d="m 108.56002,175.47218 c 0.26307,0 0.43989,-0.16821 0.43989,-0.39679 v -0.004 c 0,-0.23289 -0.17682,-0.32778 -0.36658,-0.35365 l 0.29327,-0.30622 c 0.0388,-0.0388 0.0647,-0.069 0.0647,-0.12076 0,-0.0561 -0.0474,-0.0949 -0.11213,-0.0949 h -0.64262 c -0.0517,0 -0.0949,0.0431 -0.0949,0.0949 0,0.0517 0.0431,0.0949 0.0949,0.0949 h 0.45717 l -0.29326,0.31484 c -0.0345,0.0345 -0.0475,0.0604 -0.0475,0.0906 0,0.0517 0.0431,0.0949 0.0949,0.0949 h 0.0474 c 0.1725,0 0.28895,0.069 0.28895,0.19408 v 0.004 c 0,0.11214 -0.0949,0.18977 -0.21995,0.18977 -0.11644,0 -0.20701,-0.0431 -0.28467,-0.12076 -0.0172,-0.0172 -0.0431,-0.0302 -0.0733,-0.0302 -0.0561,0 -0.10781,0.0517 -0.10781,0.10782 0,0.0302 0.0172,0.0604 0.0388,0.0776 0.0992,0.0992 0.24153,0.16389 0.42267,0.16389 z m 0,0"
id="path6711" />
<path
id="path37367"
d="m 79.014605,187.26933 c 0,-0.35581 -0.291121,-0.64693 -0.646906,-0.64693 h -6.281711 c -0.355812,0 -0.646933,0.29112 -0.646933,0.64693 v 6.28278 c 0,0.35581 0.291121,0.64693 0.646933,0.64693 h 6.281711 c 0.355785,0 0.646906,-0.29112 0.646906,-0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
id="path37369"
d="m 89.333355,187.26933 c 0,-0.35581 -0.291121,-0.64693 -0.646959,-0.64693 h -6.281684 c -0.355812,0 -0.646907,0.29112 -0.646907,0.64693 v 6.28278 c 0,0.35581 0.291095,0.64693 0.646907,0.64693 h 6.281684 c 0.355838,0 0.646959,-0.29112 0.646959,-0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
id="path37371"
d="m 99.387522,187.26933 c 0,-0.35581 -0.291121,-0.64693 -0.646906,-0.64693 h -6.28277 c -0.355838,0 -0.645874,0.29112 -0.645874,0.64693 v 6.28278 c 0,0.35581 0.290036,0.64693 0.645874,0.64693 h 6.28277 c 0.355785,0 0.646906,-0.29112 0.646906,-0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
id="path37373"
d="m 109.70627,187.26933 c 0,-0.35581 -0.29112,-0.64693 -0.64693,-0.64693 h -6.28171 c -0.35579,0 -0.64691,0.29112 -0.64691,0.64693 v 6.28278 c 0,0.35581 0.29112,0.64693 0.64691,0.64693 h 6.28171 c 0.35581,0 0.64693,-0.29112 0.64693,-0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378" />
<path
style="fill:#e6e6e6;fill-opacity:1;stroke-width:0.26458332"
d="M 28.948923,164.29485 H 111.1343 v 94.88068 H 28.948923 Z"
id="rect103" />
</g>
<g
id="text977"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
aria-label="bId°°">
<path
id="path978"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 13.898824,97.809389 q 0,-0.44235 -0.14056,-0.667659 -0.14056,-0.225309 -0.415478,-0.225309 -0.276986,0 -0.419613,0.227376 -0.142627,0.225309 -0.142627,0.665592 0,0.438216 0.142627,0.665593 0.142627,0.227376 0.419613,0.227376 0.274918,0 0.415478,-0.225309 0.14056,-0.225309 0.14056,-0.66766 z m -1.118278,-0.86403 q 0.09095,-0.169498 0.250114,-0.260449 0.16123,-0.09095 0.37207,-0.09095 0.417546,0 0.657324,0.322461 0.239779,0.320393 0.239779,0.8847 0,0.572575 -0.241846,0.89917 -0.239778,0.324528 -0.659391,0.324528 -0.206706,0 -0.365869,-0.08888 -0.157096,-0.09095 -0.252181,-0.262516 v 0.291455 h -0.380338 v -3.216341 h 0.380338 z" />
<path
id="path980"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 14.963358,95.878758 h 1.713591 v 0.3514 H 16.02996 v 2.383317 h 0.646989 v 0.351399 h -1.713591 v -0.351399 h 0.646989 v -2.383317 h -0.646989 z" />
<path
id="path982"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 18.868029,96.945359 v -1.196826 h 0.380339 v 3.216341 h -0.380339 v -0.291455 q -0.09508,0.171566 -0.254248,0.262516 -0.157096,0.08888 -0.363802,0.08888 -0.419612,0 -0.661458,-0.324528 -0.239779,-0.326595 -0.239779,-0.89917 0,-0.564307 0.241846,-0.8847 0.241846,-0.322461 0.659391,-0.322461 0.208773,0 0.367936,0.09095 0.159164,0.08888 0.250114,0.260449 z m -1.118278,0.86403 q 0,0.442351 0.14056,0.66766 0.14056,0.225309 0.415479,0.225309 0.274918,0 0.417545,-0.227376 0.144694,-0.227377 0.144694,-0.665593 0,-0.440283 -0.144694,-0.665592 -0.142627,-0.227376 -0.417545,-0.227376 -0.274919,0 -0.415479,0.225309 -0.14056,0.225309 -0.14056,0.667659 z" />
<path
id="path984"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 20.914416,95.822947 q 0.134358,0 0.254248,0.05168 0.121956,0.04961 0.212907,0.144694 0.09302,0.09302 0.14056,0.21084 0.04961,0.117822 0.04961,0.254248 0,0.272851 -0.192236,0.46302 -0.192237,0.188103 -0.469222,0.188103 -0.279053,0 -0.465088,-0.186035 -0.186035,-0.186036 -0.186035,-0.465088 0,-0.276986 0.190169,-0.469222 0.190169,-0.192237 0.465088,-0.192237 z m 0,0.266651 q -0.163298,0 -0.279053,0.115755 -0.113688,0.113688 -0.113688,0.279053 0,0.165364 0.111621,0.276985 0.113688,0.111621 0.276986,0.111621 0.165364,0 0.281119,-0.113688 0.117823,-0.113688 0.117823,-0.274918 0,-0.163298 -0.115756,-0.279053 -0.115755,-0.115755 -0.279052,-0.115755 z" />
<path
id="path986"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 23.46103,95.822947 q 0.134359,0 0.254248,0.05168 0.121957,0.04961 0.212907,0.144694 0.09302,0.09302 0.14056,0.21084 0.04961,0.117822 0.04961,0.254248 0,0.272851 -0.192237,0.46302 -0.192236,0.188103 -0.469222,0.188103 -0.279052,0 -0.465088,-0.186035 -0.186035,-0.186036 -0.186035,-0.465088 0,-0.276986 0.19017,-0.469222 0.190169,-0.192237 0.465087,-0.192237 z m 0,0.266651 q -0.163297,0 -0.279052,0.115755 -0.113688,0.113688 -0.113688,0.279053 0,0.165364 0.111621,0.276985 0.113688,0.111621 0.276985,0.111621 0.165365,0 0.28112,-0.113688 0.117822,-0.113688 0.117822,-0.274918 0,-0.163298 -0.115755,-0.279053 -0.115755,-0.115755 -0.279053,-0.115755 z" />
</g>
<g
id="text977-5"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
aria-label="OUAIve">
<g
id="text974"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
aria-label="RAdAR">
<path
id="path976"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 12.90294,4.3404661 q 0.161231,0.041341 0.274919,0.1570963 0.113688,0.1136882 0.283187,0.4568197 l 0.419612,0.8433593 H 13.432107 L 13.064171,5.0184609 Q 12.905007,4.6856646 12.77685,4.59058 12.650759,4.4934283 12.446121,4.4934283 H 12.047179 V 5.7977414 H 11.627566 V 2.711625 h 0.859896 q 0.508496,0 0.77928,0.2294434 0.270785,0.2294433 0.270785,0.6635253 0,0.3059245 -0.167432,0.5002279 -0.165364,0.1922363 -0.467155,0.2356445 z M 12.047179,3.0547565 v 1.0955403 h 0.456819 q 0.299724,0 0.446485,-0.1343587 0.146761,-0.1343587 0.146761,-0.4113444 0,-0.2666503 -0.157097,-0.4072102 -0.155029,-0.142627 -0.452685,-0.142627 z" />
<path
id="path979"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 15.151899,3.0795612 -0.440284,1.5792317 h 0.880567 z M 14.899718,2.711625 h 0.506429 l 0.944645,3.0861164 H 15.918777 L 15.6914,4.9936562 h -1.08107 l -0.223243,0.8040852 h -0.432015 z" />
<path
id="path981"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="M 18.198741,3.7782265 V 2.5814004 h 0.380338 v 3.216341 h -0.380338 v -0.291455 q -0.09508,0.1715657 -0.254248,0.2625162 -0.157097,0.088883 -0.363802,0.088883 -0.419613,0 -0.661459,-0.324528 -0.239778,-0.326595 -0.239778,-0.8991699 0,-0.5643066 0.241845,-0.8847005 0.241846,-0.3224609 0.659392,-0.3224609 0.208772,0 0.367936,0.09095 0.159163,0.088883 0.250114,0.2604502 z m -1.118278,0.8640299 q 0,0.4423503 0.14056,0.6676595 0.14056,0.2253093 0.415478,0.2253093 0.274919,0 0.417546,-0.2273763 0.144694,-0.2273763 0.144694,-0.6655925 0,-0.4402831 -0.144694,-0.6655924 -0.142627,-0.2273763 -0.417546,-0.2273763 -0.274918,0 -0.415478,0.2253093 -0.14056,0.2253092 -0.14056,0.6676594 z" />
<path
id="path983"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="M 20.245127,3.0795612 19.804844,4.6587929 H 20.68541 Z M 19.992946,2.711625 h 0.506429 L 21.44402,5.7977414 H 21.012005 L 20.784629,4.9936562 h -1.081071 l -0.223242,0.8040852 h -0.432015 z" />
<path
id="path985"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 23.089398,4.3404661 q 0.16123,0.041341 0.274919,0.1570963 0.113688,0.1136882 0.283186,0.4568197 l 0.419613,0.8433593 H 23.618565 L 23.250628,5.0184609 Q 23.091465,4.6856646 22.963307,4.59058 22.837217,4.4934283 22.632578,4.4934283 H 22.233636 V 5.7977414 H 21.814024 V 2.711625 h 0.859895 q 0.508497,0 0.779281,0.2294434 0.270785,0.2294433 0.270785,0.6635253 0,0.3059245 -0.167432,0.5002279 -0.165365,0.1922363 -0.467155,0.2356445 z M 22.233636,3.0547565 v 1.0955403 h 0.45682 q 0.299723,0 0.446484,-0.1343587 0.146761,-0.1343587 0.146761,-0.4113444 0,-0.2666503 -0.157096,-0.4072102 -0.155029,-0.142627 -0.452686,-0.142627 z" />
</g>
</g>
<g
id="text4860"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:Sudo;-inkscape-font-specification:'Sudo, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<g
id="flowRoot1009"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:125%;font-family:Sudo;-inkscape-font-specification:'Sudo, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<text
id="text1002"
y="84.527206"
x="2.3208861"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
y="84.527206"
x="2.3208861"
id="tspan1000">TRIG</tspan></text>
<g
transform="translate(28.416079,21.948245)"
id="g1032">
<rect
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000400;stroke-width:0.72085714;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect998-7"
width="6.9770179"
height="10.377027"
x="-15.953481"
y="59.837032"
ry="1.1370114" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
x="-15.054995"
y="62.553104"
id="text1002-9"><tspan
id="tspan1000-1"
x="-15.054995"
y="62.553104"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">POS</tspan></text>
</g>
<rect
ry="1.1105456"
y="81.901466"
x="22.350098"
height="10.135485"
width="11.984631"
id="rect998-7-7"
style="opacity:1;fill:#cd1f00;fill-opacity:1;fill-rule:evenodd;stroke:#cd1f00;stroke-width:0.93371081;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
transform="scale(1.0122861,0.98786301)"
id="text1002-9-9"
y="85.593163"
x="25.432156"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.79039741px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13079987;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.79039741px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13079987;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
y="85.593163"
x="25.432156"
id="tspan1000-1-5">OUT</tspan></text>
<text
id="text1002-1"
y="94.338516"
x="2.2843671"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
y="94.338516"
x="2.2843671"
id="tspan1000-9">GATE</tspan></text>
<text
transform="scale(1.0122861,0.98786302)"
id="text1002-9-9-2"
y="87.993423"
x="23.964373"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.79039741px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13079987;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.79039741px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13079987;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
y="87.993423"
x="23.964373"
id="tspan1000-1-5-5">L</tspan></text>
<text
transform="scale(1.0122861,0.98786302)"
id="text1002-9-9-2-7"
y="87.993416"
x="30.250475"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.79039741px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13079987;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.79039741px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13079987;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
y="87.993416"
x="30.250475"
id="tspan1000-1-5-5-5">R</tspan></text>
</svg>

+ 0
- 728
vst2_bin/plugins/Bidoo/res/RADARtemp.svg View File

@@ -1,728 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg12553"
version="1.1"
viewBox="0 0 35.71875 100.54166"
height="380"
width="135"
sodipodi:docname="RADARtemp.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview118"
showgrid="true"
inkscape:zoom="2.2274511"
inkscape:cx="-33.571336"
inkscape:cy="268.57976"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="text977-5"
inkscape:snap-to-guides="false"
inkscape:snap-grids="false">
<inkscape:grid
type="xygrid"
id="grid929" />
</sodipodi:namedview>
<defs
id="defs12547">
<linearGradient
id="linearGradient4708"
osb:paint="solid">
<stop
style="stop-color:#ececec;stop-opacity:1;"
offset="0"
id="stop4706" />
</linearGradient>
<filter
style="color-interpolation-filters:sRGB"
inkscape:label="Opacity"
id="filter4696">
<feColorMatrix
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 "
result="colormatrix"
id="feColorMatrix4692" />
<feBlend
in2="BackgroundImage"
mode="multiply"
result="fbSourceGraphic"
id="feBlend4694" />
<feColorMatrix
result="fbSourceGraphicAlpha"
in="fbSourceGraphic"
values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
id="feColorMatrix4762" />
<feColorMatrix
id="feColorMatrix4764"
values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 5 -1 "
result="colormatrix"
in="fbSourceGraphic" />
<feComposite
in2="colormatrix"
id="feComposite4766"
operator="arithmetic"
k2="0.3"
result="composite"
k1="0"
k3="0"
k4="0" />
</filter>
</defs>
<metadata
id="metadata12550">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="matrix(0.29968605,0,0,1.0012215,-7.996127,-161.56849)"
id="layer1">
<path
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.32258889"
d="M 26.616839,161.37987 H 145.85344 v 100.3961 H 26.616839 Z m 0,0"
id="path33453"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 38.533355,242.56724 c 0,-0.35581 -0.291121,-0.64693 -0.646932,-0.64693 h -6.281685 c -0.355838,0 -0.646933,0.29112 -0.646933,0.64693 v 6.28278 c 0,0.35581 0.291095,0.64693 0.646933,0.64693 h 6.281685 c 0.355811,0 0.646932,-0.29112 0.646932,-0.64693 z m 0,0"
id="path33787"
inkscape:connector-curvature="0" />
<path
id="path7611"
d="m 66.055605,168.8251 c 0.500274,0 0.84963,-0.25877 0.84963,-0.72025 v -0.009 c 0,-0.40109 -0.263102,-0.5693 -0.733187,-0.69437 -0.401108,-0.10351 -0.500301,-0.15095 -0.500301,-0.3019 v -0.009 c 0,-0.11213 0.09919,-0.20271 0.297577,-0.20271 0.159597,0 0.319167,0.0561 0.487363,0.15527 0.03881,0.0259 0.07763,0.0388 0.129381,0.0388 0.129408,0 0.237225,-0.10351 0.237225,-0.23721 0,-0.0992 -0.05606,-0.1682 -0.11213,-0.2027 -0.211349,-0.12939 -0.452861,-0.20271 -0.737526,-0.20271 -0.474398,0 -0.810816,0.27602 -0.810816,0.69869 v 0.004 c 0,0.46147 0.301916,0.59086 0.767689,0.71162 0.38817,0.0992 0.470111,0.16389 0.470111,0.29327 v 0.009 c 0,0.1337 -0.129381,0.21565 -0.336391,0.21565 -0.224287,0 -0.418359,-0.0776 -0.590867,-0.20702 -0.0345,-0.0259 -0.08194,-0.0474 -0.146632,-0.0474 -0.133721,0 -0.241538,0.10351 -0.241538,0.23721 0,0.0776 0.04313,0.15095 0.09919,0.18976 0.258789,0.18546 0.564991,0.28034 0.87122,0.28034 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7607"
d="m 67.640935,168.7906 h 1.298178 c 0.129382,0 0.228574,-0.0992 0.228574,-0.22427 0,-0.12507 -0.09919,-0.22858 -0.228574,-0.22858 h -1.048041 v -0.48736 h 0.884132 c 0.125095,0 0.2286,-0.0992 0.2286,-0.22427 0,-0.12938 -0.103505,-0.22858 -0.2286,-0.22858 h -0.884132 v -0.4701 h 1.035103 c 0.125069,0 0.228574,-0.0992 0.228574,-0.22858 0,-0.12508 -0.103505,-0.22859 -0.228574,-0.22859 h -1.28524 c -0.142319,0 -0.254476,0.11645 -0.254476,0.25878 v 1.80709 c 0,0.14232 0.112157,0.25446 0.254476,0.25446 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7603"
d="m 70.70817,168.82941 c 0.258763,0 0.491676,-0.0733 0.685748,-0.19839 l 0.129381,0.11214 c 0.03881,0.0388 0.09919,0.069 0.168195,0.069 0.129408,0 0.237226,-0.10782 0.237226,-0.24152 0,-0.082 -0.03881,-0.14233 -0.09057,-0.18977 l -0.103532,-0.0819 c 0.129408,-0.19408 0.207037,-0.42266 0.207037,-0.6685 v -0.004 c 0,-0.65986 -0.513239,-1.19466 -1.229175,-1.19466 -0.715936,0 -1.233487,0.53911 -1.233487,1.19898 v 0.009 c 0,0.65987 0.513238,1.19035 1.229174,1.19035 z m 0.069,-0.7375 0.241511,0.20702 c -0.09057,0.0431 -0.194071,0.0604 -0.306202,0.0604 -0.409734,0 -0.702998,-0.33209 -0.702998,-0.72887 v -0.004 c 0,-0.39679 0.284639,-0.72457 0.698685,-0.72457 0.409734,0 0.698686,0.3321 0.698686,0.72888 v 0.009 c 0,0.11645 -0.0217,0.22427 -0.06038,0.31484 l -0.25445,-0.22858 c -0.05609,-0.0431 -0.09922,-0.069 -0.168222,-0.069 -0.133694,0 -0.241512,0.11213 -0.241512,0.24152 0,0.0863 0.03881,0.14664 0.09488,0.19408 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7599"
d="m 72.627379,168.00566 h 0.57359 c 0.13372,0 0.245851,-0.10783 0.245851,-0.24152 0,-0.1337 -0.112131,-0.24153 -0.245851,-0.24153 h -0.57359 c -0.133721,0 -0.241539,0.10783 -0.241539,0.24153 0,0.13369 0.107818,0.24152 0.241539,0.24152 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7595"
d="m 74.553439,168.82941 c 0.517552,0 0.832406,-0.31915 0.832406,-0.75906 v -0.004 c 0,-0.43129 -0.306229,-0.59518 -0.621056,-0.65124 l 0.452834,-0.43129 c 0.09491,-0.0906 0.155284,-0.15958 0.155284,-0.28465 0,-0.14233 -0.112157,-0.22858 -0.258789,-0.22858 h -1.129956 c -0.120782,0 -0.219975,0.0992 -0.219975,0.21995 0,0.12076 0.09919,0.21996 0.219975,0.21996 h 0.711623 l -0.452861,0.45285 c -0.07763,0.0776 -0.107817,0.13801 -0.107817,0.20702 0,0.12076 0.09919,0.21996 0.219948,0.21996 h 0.07763 c 0.284665,0 0.45286,0.10782 0.45286,0.29327 v 0.009 c 0,0.17252 -0.133694,0.28034 -0.327792,0.28034 -0.181134,0 -0.31914,-0.0604 -0.452834,-0.17252 -0.03881,-0.0302 -0.09057,-0.0604 -0.15957,-0.0604 -0.133721,0 -0.245851,0.11214 -0.245851,0.24584 0,0.069 0.03881,0.14232 0.08625,0.18114 0.185473,0.15957 0.43561,0.26308 0.767688,0.26308 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="M 31.535655,196.58908 H 108.99592"
id="path35483"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 68.112052,258.60709 c -0.09165,0 -0.175762,-0.0517 -0.216746,-0.1337 l -0.783855,-1.56881 c -0.05932,-0.11859 -0.01085,-0.26416 0.107818,-0.32346 0.119697,-0.0593 0.26416,-0.0108 0.324538,0.10782 l 0.568245,1.13753 0.568219,-1.13753 c 0.05929,-0.1186 0.204867,-0.16712 0.323454,-0.10782 0.119697,0.0593 0.16711,0.20487 0.107817,0.32346 l -0.783881,1.56881 c -0.04096,0.0819 -0.125068,0.1337 -0.215609,0.1337"
id="path35687"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 72.419522,258.60709 c -0.09165,0 -0.174678,-0.0517 -0.215636,-0.1337 l -0.784939,-1.56881 c -0.05932,-0.11859 -0.01085,-0.26416 0.108903,-0.32346 0.118586,-0.0593 0.264133,-0.0108 0.323453,0.10782 l 0.568219,1.13753 0.568219,-1.13753 c 0.05929,-0.1186 0.20484,-0.16712 0.323453,-0.10782 0.119698,0.0593 0.168222,0.20487 0.107844,0.32346 l -0.783881,1.56881 c -0.04096,0.0819 -0.123983,0.1337 -0.215635,0.1337"
id="path35689"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 70.382786,258.60709 c -0.566076,0 -1.025419,-0.4604 -1.025419,-1.02538 0,-0.56606 0.459343,-1.02646 1.025419,-1.02646 0.223149,0 0.436668,0.0712 0.615632,0.20593 0.106733,0.0798 0.127265,0.23075 0.04747,0.33749 -0.07982,0.10674 -0.230744,0.1283 -0.337503,0.0485 -0.09488,-0.0712 -0.20701,-0.1089 -0.325596,-0.1089 -0.299773,0 -0.543454,0.24367 -0.543454,0.54342 0,0.29866 0.243681,0.54234 0.543454,0.54234 0.118586,0 0.230717,-0.0377 0.325596,-0.10782 0.106759,-0.0809 0.257678,-0.0593 0.337503,0.0474 0.0798,0.10675 0.05927,0.2577 -0.04747,0.33856 -0.178964,0.1337 -0.392483,0.20486 -0.615632,0.20486"
id="path35691"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 70.711636,257.56877 c 0,0.17359 -0.140202,0.31376 -0.313795,0.31376 -0.172509,0 -0.313743,-0.14017 -0.313743,-0.31376 0,-0.17252 0.141234,-0.31376 0.313743,-0.31376 0.173593,0 0.313795,0.14124 0.313795,0.31376"
id="path35693"
inkscape:connector-curvature="0" />
<path
id="path7407"
d="m 66.110162,253.14752 c 0.185446,0 0.336418,-0.0647 0.444235,-0.13801 0.05175,-0.0302 0.07763,-0.0776 0.07763,-0.13801 v -0.3364 c 0,-0.0604 -0.04744,-0.11214 -0.11213,-0.11214 h -0.349356 c -0.05175,0 -0.09919,0.0431 -0.09919,0.0992 0,0.0517 0.04744,0.0949 0.09919,0.0949 h 0.250163 v 0.23289 c -0.07766,0.0604 -0.185473,0.0949 -0.306228,0.0949 -0.25445,0 -0.426985,-0.18977 -0.426985,-0.44854 0,-0.24152 0.176848,-0.44423 0.409734,-0.44423 0.133694,0 0.224261,0.0388 0.301889,0.0992 0.0217,0.0129 0.04315,0.0259 0.06903,0.0259 0.06038,0 0.112131,-0.0518 0.112131,-0.11214 0,-0.0431 -0.02593,-0.0733 -0.04744,-0.0906 -0.112131,-0.0819 -0.241538,-0.12507 -0.426985,-0.12507 -0.379518,0 -0.646933,0.29759 -0.646933,0.64693 v 0.004 c 0,0.3666 0.254477,0.64693 0.651246,0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7403"
d="m 66.869966,253.03108 c 0,0.0604 0.04744,0.1035 0.103505,0.1035 0.04744,0 0.08625,-0.0259 0.103505,-0.069 l 0.103531,-0.24152 h 0.612405 l 0.103531,0.23289 c 0.0172,0.0474 0.05175,0.0776 0.107818,0.0776 0.05607,0 0.103505,-0.0474 0.103505,-0.1035 0,-0.0172 -0.0042,-0.0345 -0.01296,-0.0474 l -0.465798,-1.04371 c -0.02593,-0.0518 -0.069,-0.0863 -0.133694,-0.0863 h -0.0087 c -0.06469,0 -0.107817,0.0345 -0.133694,0.0863 l -0.465799,1.04371 c -0.0087,0.0173 -0.0172,0.0345 -0.0172,0.0474 z m 0.396795,-0.40541 0.219949,-0.50461 0.219948,0.50461 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7399"
d="m 68.549594,253.02676 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.112131,-0.0474 0.112131,-0.10782 v -0.95314 h 0.306202 c 0.05609,0 0.09922,-0.0474 0.09922,-0.0992 0,-0.0561 -0.04313,-0.10351 -0.09922,-0.10351 h -0.836692 c -0.05607,0 -0.09919,0.0474 -0.09919,0.10351 0,0.0518 0.04313,0.0992 0.09919,0.0992 h 0.306229 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7395"
d="m 69.556122,253.12596 h 0.741812 c 0.05178,0 0.09922,-0.0431 0.09922,-0.0992 0,-0.0518 -0.04744,-0.0992 -0.09922,-0.0992 h -0.629655 v -0.33641 h 0.539088 c 0.05175,0 0.09919,-0.0431 0.09919,-0.0949 0,-0.0561 -0.04744,-0.10351 -0.09919,-0.10351 h -0.539088 v -0.32346 h 0.62103 c 0.05178,0 0.09491,-0.0431 0.09491,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.09491,-0.0992 h -0.733187 c -0.06038,0 -0.112131,0.0474 -0.112131,0.11214 v 1.03077 c 0,0.0647 0.05175,0.11214 0.112131,0.11214 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7387"
d="m 71.783622,253.14752 c 0.388171,0 0.659871,-0.29759 0.659871,-0.65124 0,-0.35366 -0.267388,-0.64693 -0.655558,-0.64693 -0.383831,0 -0.655558,0.29327 -0.655558,0.64693 v 0.004 c 0,0.35366 0.267414,0.64693 0.651245,0.64693 z m 0.0042,-0.2027 c -0.250137,0 -0.426985,-0.20271 -0.426985,-0.44854 0,-0.24584 0.176848,-0.44423 0.422672,-0.44423 0.250137,0 0.426985,0.20271 0.426985,0.44423 v 0.004 c 0,0.24584 -0.172535,0.44423 -0.422672,0.44423 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7383"
d="m 73.285027,253.14752 c 0.327766,0 0.539115,-0.18976 0.539115,-0.56498 v -0.61243 c 0,-0.0604 -0.04744,-0.10782 -0.107818,-0.10782 -0.06472,0 -0.112157,0.0474 -0.112157,0.10782 v 0.62105 c 0,0.2329 -0.120756,0.34934 -0.314827,0.34934 -0.198385,0 -0.319141,-0.12507 -0.319141,-0.35796 v -0.61243 c 0,-0.0604 -0.04747,-0.10782 -0.107844,-0.10782 -0.06469,0 -0.11213,0.0474 -0.11213,0.10782 v 0.62105 c 0,0.3666 0.20701,0.55636 0.534802,0.55636 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7379"
d="m 74.487505,253.02676 c 0,0.0604 0.05175,0.10782 0.112131,0.10782 0.06038,0 0.11213,-0.0474 0.11213,-0.10782 v -0.95314 h 0.306202 c 0.05609,0 0.09922,-0.0474 0.09922,-0.0992 0,-0.0561 -0.04313,-0.10351 -0.09922,-0.10351 h -0.836692 c -0.05607,0 -0.09919,0.0474 -0.09919,0.10351 0,0.0518 0.04313,0.0992 0.09919,0.0992 h 0.306229 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="M 31.535655,252.48497 H 63.614797"
id="path35723"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="M 76.916751,252.48497 H 108.99592"
id="path35725"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 34.74558,237.2034 v 8.5438"
id="path35727"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 44.799747,237.2034 v 8.5438"
id="path35729"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 54.853914,237.2034 v 8.5438"
id="path35731"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 65.172664,237.2034 v 8.5438"
id="path35733"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 75.22683,237.2034 v 8.5438"
id="path35735"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 85.54558,237.2034 v 8.5438"
id="path35737"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 95.599747,237.2034 v 8.5438"
id="path35739"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 105.9185,237.2034 v 8.5438"
id="path35741"
inkscape:connector-curvature="0" />
<path
id="path7375"
d="m 31.482924,174.1527 c 0.250164,0 0.418359,-0.0776 0.564991,-0.20701 0.0217,-0.0216 0.04313,-0.0561 0.04313,-0.0992 0,-0.0647 -0.06038,-0.12508 -0.129381,-0.12508 -0.0345,0 -0.06038,0.0129 -0.08194,0.0302 -0.112131,0.0949 -0.224261,0.15095 -0.383858,0.15095 -0.297577,0 -0.513212,-0.24583 -0.513212,-0.54773 v -0.004 c 0,-0.3019 0.215635,-0.54773 0.513212,-0.54773 0.146659,0 0.258789,0.0561 0.366607,0.14232 0.0172,0.0129 0.04313,0.0259 0.08194,0.0259 0.07332,0 0.133694,-0.0604 0.133694,-0.1337 0,-0.0474 -0.0217,-0.0863 -0.05175,-0.10782 -0.133694,-0.10351 -0.293264,-0.17683 -0.53049,-0.17683 -0.470085,0 -0.797877,0.36228 -0.797877,0.80219 v 0.004 c 0,0.44423 0.336417,0.79357 0.784939,0.79357 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7371"
d="m 32.449659,173.98882 c 0,0.0776 0.06038,0.13801 0.138006,0.13801 h 0.832406 c 0.069,0 0.125068,-0.0561 0.125068,-0.12508 0,-0.069 -0.05607,-0.12076 -0.125068,-0.12076 h -0.698685 v -1.17741 c 0,-0.0733 -0.06038,-0.1337 -0.133721,-0.1337 -0.07763,0 -0.138006,0.0604 -0.138006,0.1337 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7367"
d="m 34.520658,174.1527 c 0.474425,0 0.810816,-0.36228 0.810816,-0.79788 v -0.004 c 0,-0.4356 -0.332079,-0.79788 -0.806503,-0.79788 -0.474398,0 -0.810816,0.3666 -0.810816,0.8022 v 0.004 c 0,0.4356 0.332105,0.79357 0.806503,0.79356 z m 0.0042,-0.25014 c -0.306202,0 -0.52615,-0.25015 -0.52615,-0.54774 v -0.004 c 0,-0.3019 0.215635,-0.54773 0.521838,-0.54773 0.306229,0 0.526177,0.25015 0.526177,0.55205 v 0.004 c 0,0.29758 -0.215636,0.54342 -0.521865,0.54342 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7363"
d="m 36.418911,174.1527 c 0.250164,0 0.418359,-0.0776 0.564992,-0.20701 0.0217,-0.0216 0.04313,-0.0561 0.04313,-0.0992 0,-0.0647 -0.06038,-0.12508 -0.129382,-0.12508 -0.0345,0 -0.06038,0.0129 -0.08194,0.0302 -0.112131,0.0949 -0.224261,0.15095 -0.383858,0.15095 -0.297576,0 -0.513212,-0.24583 -0.513212,-0.54773 v -0.004 c 0,-0.3019 0.215636,-0.54773 0.513212,-0.54773 0.146659,0 0.258789,0.0561 0.366607,0.14232 0.0172,0.0129 0.04313,0.0259 0.08194,0.0259 0.07332,0 0.133693,-0.0604 0.133693,-0.1337 0,-0.0474 -0.0217,-0.0863 -0.05175,-0.10782 -0.133694,-0.10351 -0.293264,-0.17683 -0.53049,-0.17683 -0.470085,0 -0.797877,0.36228 -0.797877,0.80219 v 0.004 c 0,0.44423 0.336418,0.79357 0.784939,0.79357 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7359"
d="m 37.385593,174.00175 c 0,0.0776 0.06038,0.13802 0.138007,0.13802 0.07334,0 0.13372,-0.0604 0.13372,-0.13802 v -0.31915 l 0.250137,-0.24152 0.500301,0.63399 c 0.02593,0.0345 0.06038,0.0647 0.11213,0.0647 0.07763,0 0.138007,-0.0604 0.138007,-0.1337 0,-0.0431 -0.0172,-0.069 -0.03881,-0.0992 l -0.521864,-0.64693 0.48305,-0.46147 c 0.03019,-0.0302 0.04744,-0.0604 0.04744,-0.10351 0,-0.0647 -0.04744,-0.12508 -0.125069,-0.12508 -0.04744,0 -0.08194,0.0172 -0.11213,0.0517 l -0.733187,0.7375 v -0.65555 c 0,-0.0733 -0.06038,-0.1337 -0.13372,-0.1337 -0.07763,0 -0.138007,0.0604 -0.138007,0.1337 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7355"
d="m 62.229492,174.14839 c 0.323479,0 0.552053,-0.17251 0.552053,-0.46148 v -0.004 c 0,-0.25445 -0.168196,-0.3709 -0.495988,-0.45285 -0.297577,-0.069 -0.370893,-0.12507 -0.370893,-0.24152 v -0.004 c 0,-0.10351 0.09488,-0.18545 0.25445,-0.18545 0.120756,0 0.232886,0.0431 0.353642,0.11645 0.0217,0.0129 0.04315,0.0216 0.07334,0.0216 0.069,0 0.125069,-0.0561 0.125069,-0.12508 0,-0.0517 -0.02593,-0.0906 -0.06038,-0.10782 -0.138033,-0.0949 -0.293291,-0.14664 -0.487363,-0.14664 -0.306202,0 -0.530489,0.18546 -0.530489,0.44854 v 0.004 c 0,0.28465 0.185446,0.38385 0.517551,0.46148 0.284639,0.069 0.34933,0.12939 0.34933,0.23721 v 0.004 c 0,0.11645 -0.107818,0.19408 -0.276014,0.19408 -0.168195,0 -0.306202,-0.0561 -0.431297,-0.15958 -0.0172,-0.0129 -0.04313,-0.0216 -0.08194,-0.0216 -0.069,0 -0.125069,0.0561 -0.125069,0.12508 0,0.0431 0.0217,0.0819 0.05175,0.1035 0.172508,0.12939 0.370919,0.19408 0.582242,0.19408 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7351"
d="m 63.518621,174.00175 c 0,0.0776 0.06038,0.13802 0.138007,0.13802 0.07332,0 0.138006,-0.0604 0.138006,-0.13802 v -1.16878 h 0.375232 c 0.069,0 0.125069,-0.0561 0.125069,-0.12508 0,-0.069 -0.05607,-0.12507 -0.125069,-0.12507 h -1.026477 c -0.069,0 -0.125069,0.0561 -0.125069,0.12507 0,0.069 0.05607,0.12508 0.125069,0.12508 h 0.375232 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7347"
d="m 64.743324,174.12683 h 0.910035 c 0.06469,0 0.120756,-0.0517 0.120756,-0.12076 0,-0.069 -0.05607,-0.12076 -0.120756,-0.12076 h -0.776314 v -0.41835 h 0.664183 c 0.069,0 0.120756,-0.0517 0.120756,-0.11645 0,-0.069 -0.05175,-0.12507 -0.120756,-0.12507 h -0.664183 v -0.4011 h 0.763376 c 0.069,0 0.120755,-0.0517 0.120755,-0.12076 0,-0.069 -0.05175,-0.12076 -0.120755,-0.12076 h -0.897097 c -0.07763,0 -0.138006,0.0561 -0.138006,0.1337 v 1.2723 c 0,0.0776 0.06038,0.13801 0.138006,0.13801 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7343"
d="m 66.130508,174.00175 c 0,0.0776 0.06038,0.13802 0.138007,0.13802 0.07334,0 0.13372,-0.0604 0.13372,-0.13802 v -0.3709 h 0.306203 c 0.34073,0 0.621056,-0.18114 0.621056,-0.53049 v -0.004 c 0,-0.31052 -0.228573,-0.51323 -0.590867,-0.51323 h -0.470112 c -0.07763,0 -0.138007,0.0561 -0.138007,0.1337 z m 0.271727,-0.61674 v -0.55636 h 0.314828 c 0.202697,0 0.336418,0.0949 0.336418,0.27603 v 0.004 c 0,0.15957 -0.129408,0.27602 -0.336418,0.27602 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7339"
d="m 68.202011,174.14839 c 0.323479,0 0.552053,-0.17251 0.552053,-0.46148 v -0.004 c 0,-0.25445 -0.168196,-0.3709 -0.495988,-0.45285 -0.297577,-0.069 -0.370893,-0.12507 -0.370893,-0.24152 v -0.004 c 0,-0.10351 0.09488,-0.18545 0.25445,-0.18545 0.120756,0 0.232886,0.0431 0.353642,0.11645 0.0217,0.0129 0.04315,0.0216 0.07334,0.0216 0.069,0 0.125069,-0.0561 0.125069,-0.12508 0,-0.0517 -0.02593,-0.0906 -0.06038,-0.10782 -0.138033,-0.0949 -0.293291,-0.14664 -0.487363,-0.14664 -0.306202,0 -0.530489,0.18546 -0.530489,0.44854 v 0.004 c 0,0.28465 0.185446,0.38385 0.517551,0.46148 0.284639,0.069 0.34933,0.12939 0.34933,0.23721 v 0.004 c 0,0.11645 -0.107818,0.19408 -0.276014,0.19408 -0.168195,0 -0.306202,-0.0561 -0.431297,-0.15958 -0.0172,-0.0129 -0.04313,-0.0216 -0.08194,-0.0216 -0.069,0 -0.125069,0.0561 -0.125069,0.12508 0,0.0431 0.0217,0.0819 0.05175,0.1035 0.172508,0.12939 0.370919,0.19408 0.582242,0.19408 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7335"
d="m 42.895329,175.35142 c 0,0.0604 0.05175,0.10782 0.112131,0.10782 0.06038,0 0.112156,-0.0474 0.112156,-0.10782 v -0.34072 h 0.276014 l 0.306202,0.39247 c 0.02593,0.0345 0.05607,0.0561 0.107844,0.0561 0.05175,0 0.103505,-0.0388 0.103505,-0.10351 0,-0.0345 -0.01296,-0.0561 -0.0345,-0.0819 l -0.241539,-0.3019 c 0.168223,-0.0561 0.284666,-0.17683 0.284666,-0.37522 v -0.004 c 0,-0.11213 -0.0345,-0.2027 -0.103505,-0.27171 -0.07766,-0.0776 -0.202724,-0.12507 -0.362294,-0.12507 h -0.448548 c -0.06038,0 -0.112131,0.0474 -0.112131,0.11213 z m 0.224287,-0.5348 v -0.42266 h 0.319141 c 0.163883,0 0.258762,0.0733 0.258762,0.21133 0,0.12939 -0.09919,0.21133 -0.258762,0.21133 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7331"
d="m 44.769241,175.47218 c 0.327765,0 0.539115,-0.18977 0.539115,-0.56499 v -0.61243 c 0,-0.0604 -0.04744,-0.10782 -0.107818,-0.10782 -0.06472,0 -0.112157,0.0474 -0.112157,0.10782 v 0.62106 c 0,0.23289 -0.120756,0.34934 -0.314828,0.34934 -0.198384,0 -0.31914,-0.12507 -0.31914,-0.35797 v -0.61243 c 0,-0.0604 -0.04747,-0.10782 -0.107844,-0.10782 -0.06469,0 -0.112131,0.0474 -0.112131,0.10782 v 0.62106 c 0,0.36659 0.20701,0.55636 0.534803,0.55636 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7327"
d="m 45.679857,175.35142 c 0,0.0604 0.05175,0.10782 0.112131,0.10782 0.06038,0 0.107844,-0.0474 0.107844,-0.10782 v -0.79789 l 0.646906,0.8367 c 0.03021,0.0388 0.0604,0.069 0.112157,0.069 h 0.0087 c 0.06038,0 0.107818,-0.0517 0.107818,-0.11213 v -1.05234 c 0,-0.0604 -0.04744,-0.10783 -0.107818,-0.10783 -0.06038,0 -0.107844,0.0474 -0.107844,0.10783 v 0.772 l -0.629656,-0.81513 c -0.03019,-0.0388 -0.0604,-0.0647 -0.112156,-0.0647 h -0.02593 c -0.06038,0 -0.11213,0.0517 -0.11213,0.11213 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7323"
d="m 52.036525,175.35142 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.112157,-0.0474 0.112157,-0.10782 v -0.34072 h 0.276013 l 0.306203,0.39247 c 0.02593,0.0345 0.05606,0.0561 0.107844,0.0561 0.05175,0 0.103505,-0.0388 0.103505,-0.10351 0,-0.0345 -0.01297,-0.0561 -0.0345,-0.0819 l -0.24154,-0.30191 c 0.168222,-0.0561 0.284665,-0.17682 0.284665,-0.37522 v -0.004 c 0,-0.11213 -0.0345,-0.2027 -0.103505,-0.27171 -0.07766,-0.0776 -0.202724,-0.12507 -0.362294,-0.12507 h -0.448548 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11213 z m 0.224287,-0.5348 v -0.42266 h 0.31914 c 0.163883,0 0.258763,0.0733 0.258763,0.21133 0,0.12939 -0.09919,0.21133 -0.258763,0.21133 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7319"
d="m 53.509169,175.45061 h 0.741812 c 0.05178,0 0.09922,-0.0431 0.09922,-0.0992 0,-0.0517 -0.04744,-0.0992 -0.09922,-0.0992 h -0.629655 v -0.3364 h 0.539088 c 0.05175,0 0.09919,-0.0431 0.09919,-0.0949 0,-0.0561 -0.04744,-0.10351 -0.09919,-0.10351 h -0.539088 v -0.32347 h 0.62103 c 0.05178,0 0.09491,-0.0431 0.09491,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.09491,-0.0992 h -0.733187 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11214 v 1.03077 c 0,0.0647 0.05175,0.11214 0.11213,0.11214 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7315"
d="m 55.092885,175.46786 c 0.267388,0 0.448522,-0.13801 0.448522,-0.37522 v -0.004 c 0,-0.20701 -0.133694,-0.3019 -0.401082,-0.36659 -0.241511,-0.0561 -0.297603,-0.0992 -0.297603,-0.19839 0,-0.0863 0.07334,-0.15095 0.202724,-0.15095 0.09919,0 0.194072,0.0302 0.288951,0.0949 0.0172,0.0129 0.0345,0.0173 0.05606,0.0173 0.06038,0 0.107818,-0.0474 0.107818,-0.10351 0,-0.0431 -0.02593,-0.0733 -0.05175,-0.0863 -0.112131,-0.0776 -0.237199,-0.11645 -0.39677,-0.11645 -0.250163,0 -0.426984,0.14664 -0.426984,0.36228 v 0.004 c 0,0.2329 0.146632,0.31053 0.414046,0.37522 0.237199,0.0517 0.284639,0.10351 0.284639,0.18977 v 0.004 c 0,0.0949 -0.08625,0.15957 -0.219948,0.15957 -0.138007,0 -0.250137,-0.0474 -0.353669,-0.12938 -0.01296,-0.0129 -0.0345,-0.0216 -0.06469,-0.0216 -0.05607,0 -0.103505,0.0474 -0.103505,0.10351 0,0.0345 0.0172,0.0647 0.04313,0.0863 0.138006,0.10351 0.301916,0.15526 0.470111,0.15526 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7311"
d="m 55.975059,175.45061 h 0.741812 c 0.05178,0 0.09922,-0.0431 0.09922,-0.0992 0,-0.0517 -0.04744,-0.0992 -0.09922,-0.0992 h -0.629655 v -0.3364 h 0.539089 c 0.05175,0 0.09919,-0.0431 0.09919,-0.0949 0,-0.0561 -0.04744,-0.10351 -0.09919,-0.10351 h -0.539089 v -0.32347 h 0.62103 c 0.05178,0 0.09491,-0.0431 0.09491,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.09491,-0.0992 h -0.733187 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11214 v 1.03077 c 0,0.0647 0.05175,0.11214 0.11213,0.11214 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7307"
d="m 57.445693,175.35142 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.112131,-0.0474 0.112131,-0.10782 v -0.95315 h 0.306202 c 0.05609,0 0.09922,-0.0474 0.09922,-0.0992 0,-0.0561 -0.04313,-0.10351 -0.09922,-0.10351 h -0.836692 c -0.05607,0 -0.09919,0.0474 -0.09919,0.10351 0,0.0517 0.04313,0.0992 0.09919,0.0992 h 0.306229 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 34.74558,181.31115 v 10.7908"
id="path35805"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 75.22683,179.72419 v 10.78972"
id="path35807"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 55.118497,179.72419 v 10.78972"
id="path35809"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 85.54558,179.72419 v 10.78972"
id="path35811"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 95.599747,179.72419 v 10.78972"
id="path35813"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 105.9185,179.72419 v 10.78972"
id="path35815"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.18383184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="m 65.172664,179.72419 v 10.78972"
id="path35817"
inkscape:connector-curvature="0" />
<path
id="path7303"
d="m 41.048061,185.72278 h 0.741813 c 0.05178,0 0.09922,-0.0431 0.09922,-0.0992 0,-0.0517 -0.04744,-0.0992 -0.09922,-0.0992 h -0.629656 v -0.3364 h 0.539089 c 0.05175,0 0.09919,-0.0431 0.09919,-0.0949 0,-0.0561 -0.04744,-0.10351 -0.09919,-0.10351 h -0.539089 v -0.32346 h 0.62103 c 0.05178,0 0.09491,-0.0431 0.09491,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.09491,-0.0992 h -0.733187 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11213 v 1.03077 c 0,0.0647 0.05175,0.11214 0.11213,0.11214 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7299"
d="m 42.13198,185.62789 c 0,0.0647 0.05175,0.10351 0.103505,0.10351 0.04744,0 0.07763,-0.0216 0.107818,-0.0604 l 0.332105,-0.43129 0.336391,0.43992 c 0.02593,0.0345 0.05175,0.0517 0.09922,0.0517 0.06469,0 0.11213,-0.0474 0.11213,-0.10782 0,-0.0302 -0.0172,-0.0604 -0.0345,-0.0819 l -0.370919,-0.46148 0.349356,-0.4356 c 0.0217,-0.0302 0.0345,-0.0517 0.0345,-0.0863 0,-0.0604 -0.05175,-0.0992 -0.09919,-0.0992 -0.04747,0 -0.07766,0.0216 -0.107844,0.0604 l -0.314828,0.40972 -0.314854,-0.41834 c -0.03019,-0.0345 -0.05607,-0.0517 -0.103505,-0.0517 -0.06038,0 -0.107818,0.0474 -0.107818,0.10782 0,0.0302 0.0172,0.0561 0.0345,0.0819 l 0.349356,0.43559 -0.37092,0.46148 c -0.0217,0.0259 -0.0345,0.0518 -0.0345,0.0819 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7295"
d="m 43.851428,185.62358 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.11213,-0.0474 0.11213,-0.10782 v -0.95314 h 0.306203 c 0.05609,0 0.09922,-0.0475 0.09922,-0.0992 0,-0.0561 -0.04313,-0.1035 -0.09922,-0.1035 h -0.836692 c -0.05607,0 -0.09919,0.0474 -0.09919,0.1035 0,0.0517 0.04313,0.0992 0.09919,0.0992 h 0.306229 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7287"
d="m 45.828288,185.74434 c 0.202698,0 0.336418,-0.0647 0.452861,-0.1682 0.0217,-0.0173 0.03881,-0.0474 0.03881,-0.0776 0,-0.0561 -0.05175,-0.10351 -0.107818,-0.10351 -0.02593,0 -0.04744,0.009 -0.06469,0.0259 -0.09059,0.0776 -0.18116,0.12076 -0.314854,0.12076 -0.237199,0 -0.414046,-0.2027 -0.414046,-0.44853 0,-0.24584 0.176847,-0.44423 0.414046,-0.44423 0.120756,0 0.215635,0.0431 0.301916,0.11214 0.01296,0.0129 0.0345,0.0216 0.06469,0.0216 0.06038,0 0.11213,-0.0474 0.11213,-0.10782 0,-0.0388 -0.0217,-0.069 -0.04313,-0.0863 -0.11213,-0.0863 -0.237225,-0.14232 -0.431297,-0.14232 -0.379519,0 -0.646933,0.29327 -0.646933,0.64693 v 0.004 c 0,0.36228 0.271727,0.64693 0.638307,0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7283"
d="m 46.622144,185.61064 c 0,0.0647 0.05175,0.11214 0.112131,0.11214 h 0.677121 c 0.05607,0 0.103532,-0.0431 0.103532,-0.0992 0,-0.0561 -0.04747,-0.10351 -0.103532,-0.10351 h -0.564965 v -0.95314 c 0,-0.0604 -0.05178,-0.10782 -0.112156,-0.10782 -0.06038,0 -0.112131,0.0474 -0.112131,0.10782 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7279"
d="m 47.77668,185.62358 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.112157,-0.0474 0.112157,-0.10782 v -0.26308 l 0.202698,-0.19408 0.405394,0.51323 c 0.0217,0.0302 0.04744,0.0517 0.09059,0.0517 0.06469,0 0.11213,-0.0474 0.11213,-0.10782 0,-0.0345 -0.01297,-0.0561 -0.03019,-0.0776 l -0.422672,-0.52617 0.38817,-0.37522 c 0.02593,-0.0259 0.04313,-0.0517 0.04313,-0.0863 0,-0.0517 -0.04313,-0.0992 -0.103505,-0.0992 -0.03884,0 -0.06472,0.0129 -0.09059,0.0388 l -0.595154,0.59949 v -0.53048 c 0,-0.0604 -0.05178,-0.10782 -0.112157,-0.10782 -0.06038,0 -0.11213,0.0474 -0.11213,0.10782 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7275"
d="m 34.621094,200.89411 c 0,0.0776 0.06038,0.13802 0.133694,0.13802 0.07763,0 0.138007,-0.0604 0.138007,-0.13802 v -1.3068 c 0,-0.0733 -0.06038,-0.1337 -0.138007,-0.1337 h -0.0042 c -0.03881,0 -0.07763,0.009 -0.129382,0.0259 l -0.237225,0.0733 c -0.05175,0.0173 -0.09057,0.0604 -0.09057,0.11645 0,0.0647 0.05606,0.11644 0.120756,0.11644 0.01296,0 0.0345,-0.004 0.04744,-0.009 l 0.159596,-0.0474 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7271"
d="m 44.255949,200.8898 c 0,0.0819 0.06038,0.12939 0.146632,0.12939 h 0.875533 c 0.06469,0 0.120756,-0.0518 0.120756,-0.12077 0,-0.0647 -0.05607,-0.11644 -0.120756,-0.11644 h -0.625369 l 0.314827,-0.2674 c 0.27604,-0.21996 0.405421,-0.35365 0.405421,-0.59518 v -0.009 c 0,-0.27603 -0.211349,-0.46148 -0.513238,-0.46148 -0.241512,0 -0.383858,0.0949 -0.508926,0.25015 -0.0217,0.0259 -0.0345,0.0561 -0.0345,0.0862 0,0.069 0.05607,0.12076 0.125068,0.12076 0.04313,0 0.07334,-0.0173 0.09491,-0.0388 0.09488,-0.11645 0.181134,-0.17252 0.306203,-0.17252 0.138006,0 0.250137,0.0863 0.250137,0.24152 0,0.13801 -0.07763,0.23721 -0.293264,0.41404 l -0.474425,0.40541 c -0.04313,0.0388 -0.069,0.0819 -0.069,0.1337 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7267"
d="m 55.013325,201.04506 c 0.323453,0 0.543428,-0.2027 0.543428,-0.49167 v -0.004 c 0,-0.28465 -0.224287,-0.40109 -0.457174,-0.43129 l 0.366607,-0.37521 c 0.04313,-0.0474 0.07763,-0.0863 0.07763,-0.15095 0,-0.0733 -0.06038,-0.11645 -0.138007,-0.11645 h -0.789278 c -0.06469,0 -0.120756,0.0517 -0.120756,0.11645 0,0.0647 0.05606,0.11644 0.120756,0.11644 h 0.560678 l -0.362267,0.38816 c -0.04313,0.0431 -0.05607,0.0733 -0.05607,0.11214 0,0.0604 0.05175,0.11644 0.116444,0.11644 h 0.05607 c 0.215635,0 0.353642,0.0863 0.353642,0.23721 v 0.004 c 0,0.14233 -0.112131,0.2329 -0.267388,0.2329 -0.142319,0 -0.25445,-0.0474 -0.349356,-0.14664 -0.0217,-0.0216 -0.05175,-0.0345 -0.09057,-0.0345 -0.07332,0 -0.129381,0.0604 -0.129381,0.12938 0,0.0388 0.0172,0.0776 0.04313,0.0992 0.125069,0.12076 0.293291,0.19839 0.521864,0.19839 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7263"
d="m 65.337817,200.90274 c 0,0.0733 0.05606,0.12939 0.129381,0.12939 0.07334,0 0.129408,-0.0561 0.129408,-0.12939 v -0.22859 h 0.120755 c 0.06469,0 0.112131,-0.0517 0.112131,-0.11213 0,-0.0604 -0.04744,-0.11213 -0.112131,-0.11213 H 65.596606 V 199.583 c 0,-0.0733 -0.05607,-0.1337 -0.129408,-0.1337 -0.08194,0 -0.116443,0.0345 -0.168196,0.0906 l -0.724561,0.86257 c -0.03881,0.0431 -0.06038,0.0906 -0.06038,0.14233 0,0.0733 0.06038,0.12938 0.133694,0.12938 h 0.69006 z m -0.5089,-0.45285 0.5089,-0.61243 v 0.61243 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7259"
d="m 75.346422,201.04506 c 0.327766,0 0.564991,-0.20702 0.564991,-0.52186 v -0.004 c 0,-0.32778 -0.237225,-0.48735 -0.539115,-0.48735 -0.103505,0 -0.172508,0.0173 -0.245824,0.0431 l 0.02593,-0.36228 h 0.57793 c 0.069,0 0.120755,-0.0517 0.120755,-0.11644 0,-0.069 -0.05175,-0.12076 -0.120755,-0.12076 h -0.698687 c -0.06472,0 -0.120782,0.0474 -0.125095,0.12076 l -0.03019,0.55636 c -0.0042,0.0517 0.01297,0.0906 0.05175,0.11644 0.05175,0.0388 0.08625,0.0561 0.129408,0.0561 0.03881,0 0.11213,-0.0561 0.263075,-0.0561 0.189759,0 0.31914,0.0992 0.31914,0.25878 v 0.004 c 0,0.16389 -0.125068,0.2674 -0.297577,0.2674 -0.120756,0 -0.232886,-0.0431 -0.336417,-0.12939 -0.0217,-0.0216 -0.04744,-0.0302 -0.08194,-0.0302 -0.069,0 -0.129381,0.0604 -0.129381,0.1337 0,0.0431 0.0217,0.0776 0.05606,0.10351 0.125069,0.0992 0.284665,0.1682 0.495988,0.1682 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7255"
d="m 85.546692,201.04506 c 0.323479,0 0.573616,-0.21996 0.573616,-0.52617 v -0.004 c 0,-0.30622 -0.241511,-0.48304 -0.539115,-0.48304 -0.185446,0 -0.288951,0.0733 -0.370893,0.15095 0.01296,-0.28034 0.138007,-0.48736 0.370893,-0.48736 0.103505,0 0.181134,0.0302 0.263076,0.0863 0.0217,0.009 0.04315,0.0172 0.06903,0.0172 0.069,0 0.129382,-0.0517 0.129382,-0.12507 0,-0.0561 -0.02593,-0.0906 -0.069,-0.11645 -0.09919,-0.069 -0.224287,-0.11214 -0.383857,-0.11214 -0.439923,0 -0.664184,0.37091 -0.664184,0.84533 v 0.004 c 0,0.31053 0.07332,0.4701 0.189759,0.58655 0.103532,0.10351 0.241539,0.16389 0.431298,0.16389 z m -0.0087,-0.23721 c -0.194071,0 -0.31914,-0.11644 -0.31914,-0.27602 v -0.004 c 0,-0.14664 0.120756,-0.27171 0.310515,-0.27171 0.194072,0 0.31914,0.11644 0.31914,0.27171 v 0.004 c 0,0.15958 -0.116443,0.27602 -0.310515,0.27602 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7251"
d="m 95.326406,200.90705 c 0,0.0776 0.06903,0.12508 0.138033,0.12508 0.05607,0 0.09919,-0.0302 0.133694,-0.0906 l 0.638307,-1.21624 c 0.0217,-0.0431 0.03881,-0.0906 0.03881,-0.12938 0,-0.0776 -0.04744,-0.12076 -0.125069,-0.12076 h -0.866907 c -0.06469,0 -0.120756,0.0517 -0.120756,0.11645 0,0.069 0.05606,0.12076 0.120756,0.12076 h 0.668496 l -0.599493,1.11272 c -0.01296,0.0259 -0.02593,0.0604 -0.02593,0.0819 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path7247"
d="m 105.8677,201.04075 c 0.3407,0 0.59086,-0.17252 0.59086,-0.44854 v -0.004 c 0,-0.18114 -0.10781,-0.29328 -0.28035,-0.37091 0.13372,-0.069 0.2286,-0.17251 0.2286,-0.34503 v -0.004 c 0,-0.23721 -0.2286,-0.41835 -0.53911,-0.41835 -0.30621,0 -0.53481,0.18114 -0.53481,0.41835 v 0.004 c 0,0.17252 0.0949,0.27603 0.22429,0.34503 -0.17253,0.0733 -0.27604,0.18977 -0.27604,0.37522 v 0.004 c 0,0.2674 0.25017,0.44423 0.58656,0.44423 z m 0,-0.91433 c -0.15957,0 -0.27602,-0.0949 -0.27602,-0.22858 v -0.004 c 0,-0.11645 0.11213,-0.21565 0.27602,-0.21565 0.16819,0 0.27601,0.0992 0.27601,0.21565 v 0.004 c 0,0.1337 -0.11644,0.22858 -0.27601,0.22858 z m 0,0.68575 c -0.2027,0 -0.31914,-0.10351 -0.31914,-0.22859 v -0.004 c 0,-0.14232 0.138,-0.2372 0.31914,-0.2372 0.18544,0 0.32776,0.0949 0.32776,0.2372 v 0.004 c 0,0.12508 -0.12507,0.22859 -0.32776,0.22859 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 48.587522,242.56724 c 0,-0.35581 -0.291121,-0.64693 -0.646933,-0.64693 h -6.281684 c -0.355812,0 -0.646933,0.29112 -0.646933,0.64693 v 6.28278 c 0,0.35581 0.291121,0.64693 0.646933,0.64693 h 6.281684 c 0.355812,0 0.646933,-0.29112 0.646933,-0.64693 z m 0,0"
id="path36677"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 58.641689,242.56724 c 0,-0.35581 -0.291121,-0.64693 -0.646933,-0.64693 h -6.281711 c -0.355785,0 -0.646906,0.29112 -0.646906,0.64693 v 6.28278 c 0,0.35581 0.291121,0.64693 0.646906,0.64693 h 6.281711 c 0.355812,0 0.646933,-0.29112 0.646933,-0.64693 z m 0,0"
id="path36679"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 68.960439,242.56724 c 0,-0.35581 -0.29001,-0.64693 -0.645848,-0.64693 h -6.28277 c -0.355811,0 -0.646932,0.29112 -0.646932,0.64693 v 6.28278 c 0,0.35581 0.291121,0.64693 0.646932,0.64693 h 6.28277 c 0.355838,0 0.645848,-0.29112 0.645848,-0.64693 z m 0,0"
id="path36681"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 79.014605,242.56724 c 0,-0.35581 -0.291121,-0.64693 -0.646906,-0.64693 h -6.281711 c -0.355812,0 -0.646933,0.29112 -0.646933,0.64693 v 6.28278 c 0,0.35581 0.291121,0.64693 0.646933,0.64693 h 6.281711 c 0.355785,0 0.646906,-0.29112 0.646906,-0.64693 z m 0,0"
id="path36683"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 89.333355,242.56724 c 0,-0.35581 -0.291121,-0.64693 -0.646959,-0.64693 h -6.281684 c -0.355812,0 -0.646907,0.29112 -0.646907,0.64693 v 6.28278 c 0,0.35581 0.291095,0.64693 0.646907,0.64693 h 6.281684 c 0.355838,0 0.646959,-0.29112 0.646959,-0.64693 z m 0,0"
id="path36685"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 99.387522,242.56724 c 0,-0.35581 -0.291121,-0.64693 -0.646906,-0.64693 h -6.28277 c -0.355838,0 -0.645874,0.29112 -0.645874,0.64693 v 6.28278 c 0,0.35581 0.290036,0.64693 0.645874,0.64693 h 6.28277 c 0.355785,0 0.646906,-0.29112 0.646906,-0.64693 z m 0,0"
id="path36687"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 109.70627,242.56724 c 0,-0.35581 -0.29112,-0.64693 -0.64693,-0.64693 h -6.28171 c -0.35579,0 -0.64691,0.29112 -0.64691,0.64693 v 6.28278 c 0,0.35581 0.29112,0.64693 0.64691,0.64693 h 6.28171 c 0.35581,0 0.64693,-0.29112 0.64693,-0.64693 z m 0,0"
id="path36689"
inkscape:connector-curvature="0" />
<path
id="path6783"
d="m 73.542731,175.47218 c 0.185447,0 0.336418,-0.0647 0.444235,-0.13802 0.05175,-0.0302 0.07763,-0.0776 0.07763,-0.13801 v -0.3364 c 0,-0.0604 -0.04744,-0.11214 -0.11213,-0.11214 H 73.60311 c -0.05175,0 -0.09919,0.0431 -0.09919,0.0992 0,0.0517 0.04744,0.0949 0.09919,0.0949 h 0.250164 v 0.2329 c -0.07766,0.0604 -0.185473,0.0949 -0.306229,0.0949 -0.25445,0 -0.426985,-0.18977 -0.426985,-0.44854 0,-0.24152 0.176848,-0.44423 0.409734,-0.44423 0.133694,0 0.224261,0.0388 0.30189,0.0992 0.0217,0.0129 0.04315,0.0259 0.06903,0.0259 0.06038,0 0.112131,-0.0517 0.112131,-0.11213 0,-0.0431 -0.02593,-0.0733 -0.04744,-0.0906 -0.11213,-0.082 -0.241538,-0.12507 -0.426985,-0.12507 -0.379518,0 -0.646932,0.29758 -0.646932,0.64693 v 0.004 c 0,0.36659 0.254476,0.64693 0.651245,0.64693 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6779"
d="m 74.302535,175.35573 c 0,0.0604 0.04744,0.10351 0.103505,0.10351 0.04744,0 0.08625,-0.0259 0.103505,-0.069 l 0.103531,-0.24152 h 0.612405 l 0.103532,0.23289 c 0.0172,0.0474 0.05175,0.0776 0.107817,0.0776 0.05607,0 0.103505,-0.0474 0.103505,-0.10351 0,-0.0172 -0.0042,-0.0345 -0.01296,-0.0474 l -0.465799,-1.04371 c -0.02593,-0.0517 -0.069,-0.0863 -0.133694,-0.0863 h -0.0087 c -0.06469,0 -0.107817,0.0345 -0.133693,0.0863 l -0.465799,1.04371 c -0.0087,0.0172 -0.0172,0.0345 -0.0172,0.0474 z m 0.396796,-0.40541 0.219948,-0.50461 0.219948,0.50461 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6775"
d="m 75.982136,175.35142 c 0,0.0604 0.05175,0.10782 0.112131,0.10782 0.06038,0 0.11213,-0.0474 0.11213,-0.10782 v -0.95315 H 76.5126 c 0.05609,0 0.09922,-0.0474 0.09922,-0.0992 0,-0.0561 -0.04313,-0.10351 -0.09922,-0.10351 h -0.836692 c -0.05606,0 -0.09919,0.0474 -0.09919,0.10351 0,0.0517 0.04313,0.0992 0.09919,0.0992 h 0.306228 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6771"
d="m 76.988717,175.45061 h 0.741813 c 0.05178,0 0.09922,-0.0431 0.09922,-0.0992 0,-0.0517 -0.04744,-0.0992 -0.09922,-0.0992 h -0.629656 v -0.3364 h 0.539089 c 0.05175,0 0.09919,-0.0431 0.09919,-0.0949 0,-0.0561 -0.04744,-0.10351 -0.09919,-0.10351 h -0.539089 v -0.32347 h 0.62103 c 0.05178,0 0.09491,-0.0431 0.09491,-0.0992 0,-0.0561 -0.04313,-0.0992 -0.09491,-0.0992 h -0.733187 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11214 v 1.03077 c 0,0.0647 0.05175,0.11214 0.11213,0.11214 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6767"
d="m 82.637069,175.35142 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.112157,-0.0474 0.112157,-0.10782 v -0.34072 h 0.276013 l 0.306203,0.39247 c 0.02593,0.0345 0.05606,0.0561 0.107844,0.0561 0.05175,0 0.103505,-0.0388 0.103505,-0.10351 0,-0.0345 -0.01297,-0.0561 -0.0345,-0.0819 l -0.241538,-0.3019 c 0.168222,-0.0561 0.284665,-0.17683 0.284665,-0.37522 v -0.004 c 0,-0.11213 -0.0345,-0.2027 -0.103505,-0.27171 -0.07766,-0.0776 -0.202723,-0.12507 -0.362294,-0.12507 h -0.448548 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11213 z m 0.224287,-0.5348 v -0.42266 h 0.31914 c 0.163883,0 0.258763,0.0733 0.258763,0.21133 0,0.12939 -0.09919,0.21133 -0.258763,0.21133 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6763"
d="m 84.575168,175.47218 c 0.38817,0 0.659871,-0.29759 0.659871,-0.65125 0,-0.35365 -0.267388,-0.64693 -0.655558,-0.64693 -0.383831,0 -0.655558,0.29328 -0.655558,0.64693 v 0.004 c 0,0.35366 0.267414,0.64693 0.651245,0.64693 z m 0.0042,-0.20271 c -0.250137,0 -0.426984,-0.2027 -0.426984,-0.44854 0,-0.24583 0.176847,-0.44422 0.422672,-0.44422 0.250137,0 0.426984,0.2027 0.426984,0.44422 v 0.004 c 0,0.24584 -0.172534,0.44423 -0.422672,0.44423 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6759"
d="m 85.80601,175.37729 c 0.0217,0.0561 0.06038,0.0906 0.11213,0.0906 h 0.0217 c 0.05607,0 0.09488,-0.0345 0.116443,-0.0906 l 0.280326,-0.81944 0.280353,0.81944 c 0.0172,0.0561 0.05607,0.0906 0.11213,0.0906 h 0.0217 c 0.05175,0 0.09488,-0.0345 0.116443,-0.0906 l 0.370919,-1.0394 c 0.0042,-0.0129 0.0087,-0.0302 0.0087,-0.0474 0,-0.0561 -0.05175,-0.10351 -0.107818,-0.10351 -0.05609,0 -0.09059,0.0345 -0.107844,0.0776 l -0.288952,0.86689 -0.284638,-0.86258 c -0.0172,-0.0517 -0.05607,-0.0863 -0.112157,-0.0863 h -0.01296 c -0.05607,0 -0.09488,0.0345 -0.11213,0.0863 l -0.284639,0.86258 -0.288978,-0.86689 c -0.01296,-0.0431 -0.05607,-0.0776 -0.107818,-0.0776 -0.06038,0 -0.116443,0.0474 -0.116443,0.10782 0,0.0129 0.0042,0.0302 0.01297,0.0431 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6751"
d="m 88.177999,175.35142 c 0,0.0604 0.05178,0.10782 0.107845,0.10782 0.06469,0 0.11213,-0.0474 0.11213,-0.10782 v -1.06528 c 0,-0.0604 -0.04744,-0.10783 -0.11213,-0.10783 -0.0345,0 -0.06469,0.009 -0.107845,0.0216 l -0.189759,0.0604 c -0.04744,0.0129 -0.07763,0.0474 -0.07763,0.0949 0,0.0474 0.04744,0.0906 0.09919,0.0906 0.0087,0 0.02593,0 0.03881,-0.004 l 0.129381,-0.0388 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6747"
d="m 92.614348,175.35142 c 0,0.0604 0.05175,0.10782 0.11213,0.10782 0.06038,0 0.112157,-0.0474 0.112157,-0.10782 v -0.34072 h 0.276013 l 0.306202,0.39247 c 0.02593,0.0345 0.05607,0.0561 0.107845,0.0561 0.05175,0 0.103505,-0.0388 0.103505,-0.10351 0,-0.0345 -0.01296,-0.0561 -0.0345,-0.0819 l -0.241538,-0.3019 c 0.168222,-0.0561 0.284665,-0.17683 0.284665,-0.37522 v -0.004 c 0,-0.11213 -0.0345,-0.2027 -0.103505,-0.27171 -0.07765,-0.0776 -0.202724,-0.12507 -0.362294,-0.12507 H 92.72648 c -0.06038,0 -0.11213,0.0474 -0.11213,0.11213 z m 0.224287,-0.5348 v -0.42266 h 0.31914 c 0.163883,0 0.258763,0.0733 0.258763,0.21133 0,0.12939 -0.09919,0.21133 -0.258763,0.21133 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6743"
d="m 94.552447,175.47218 c 0.38817,0 0.659871,-0.29759 0.659871,-0.65125 0,-0.35365 -0.267388,-0.64693 -0.655558,-0.64693 -0.383831,0 -0.655559,0.29328 -0.655559,0.64693 v 0.004 c 0,0.35366 0.267415,0.64693 0.651246,0.64693 z m 0.0042,-0.20271 c -0.250137,0 -0.426984,-0.2027 -0.426984,-0.44854 0,-0.24583 0.176847,-0.44422 0.422672,-0.44422 0.250137,0 0.426984,0.2027 0.426984,0.44422 v 0.004 c 0,0.24584 -0.172535,0.44423 -0.422672,0.44423 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6739"
d="m 95.783315,175.37729 c 0.0217,0.0561 0.06038,0.0906 0.11213,0.0906 h 0.0217 c 0.05607,0 0.09488,-0.0345 0.116443,-0.0906 l 0.280326,-0.81944 0.280353,0.81944 c 0.0172,0.0561 0.05607,0.0906 0.11213,0.0906 h 0.0217 c 0.05175,0 0.09488,-0.0345 0.116443,-0.0906 l 0.37092,-1.0394 c 0.0042,-0.0129 0.0087,-0.0302 0.0087,-0.0474 0,-0.0561 -0.05175,-0.10351 -0.107818,-0.10351 -0.05609,0 -0.09059,0.0345 -0.107844,0.0776 l -0.288951,0.86689 -0.284639,-0.86258 c -0.0172,-0.0517 -0.05607,-0.0863 -0.112157,-0.0863 h -0.01296 c -0.05607,0 -0.09488,0.0345 -0.11213,0.0863 l -0.284639,0.86258 -0.288978,-0.86689 c -0.01296,-0.0431 -0.05606,-0.0776 -0.107817,-0.0776 -0.06038,0 -0.116444,0.0474 -0.116444,0.10782 0,0.0129 0.0042,0.0302 0.01297,0.0431 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6731"
d="m 97.913793,175.3471 c 0,0.0647 0.05175,0.10351 0.116443,0.10351 h 0.711623 c 0.05607,0 0.09919,-0.0431 0.09919,-0.0949 0,-0.0561 -0.04313,-0.0992 -0.09919,-0.0992 H 98.23296 l 0.258762,-0.21564 c 0.224261,-0.18114 0.327766,-0.28896 0.327766,-0.48736 0,-0.22427 -0.168195,-0.37522 -0.41402,-0.37522 -0.198384,0 -0.314854,0.0733 -0.418359,0.20271 -0.01297,0.0172 -0.0217,0.0431 -0.0217,0.0647 0,0.0561 0.04313,0.10351 0.09919,0.10351 0.0345,0 0.06038,-0.0172 0.07763,-0.0345 0.07765,-0.0949 0.146659,-0.14233 0.245851,-0.14233 0.116443,0 0.202697,0.0733 0.202697,0.19839 0,0.11214 -0.06038,0.19408 -0.232886,0.33641 l -0.38817,0.32778 c -0.03881,0.0345 -0.05606,0.069 -0.05606,0.11213 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6727"
d="m 102.78183,175.35142 c 0,0.0604 0.0517,0.10782 0.11214,0.10782 0.0604,0 0.11215,-0.0474 0.11215,-0.10782 v -0.34072 h 0.27602 l 0.3062,0.39247 c 0.0259,0.0345 0.0561,0.0561 0.10784,0.0561 0.0517,0 0.10351,-0.0388 0.10351,-0.10351 0,-0.0345 -0.013,-0.0561 -0.0345,-0.0819 l -0.24154,-0.3019 c 0.16822,-0.0561 0.28466,-0.17683 0.28466,-0.37522 v -0.004 c 0,-0.11213 -0.0345,-0.2027 -0.1035,-0.27171 -0.0776,-0.0776 -0.20273,-0.12507 -0.3623,-0.12507 h -0.44854 c -0.0604,0 -0.11213,0.0474 -0.11213,0.11213 z m 0.22429,-0.5348 v -0.42266 h 0.31914 c 0.16389,0 0.25876,0.0733 0.25876,0.21133 0,0.12939 -0.0992,0.21133 -0.25876,0.21133 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6723"
d="m 104.71993,175.47218 c 0.38817,0 0.65987,-0.29759 0.65987,-0.65125 0,-0.35365 -0.26738,-0.64693 -0.65555,-0.64693 -0.38383,0 -0.65556,0.29328 -0.65556,0.64693 v 0.004 c 0,0.35366 0.26741,0.64693 0.65124,0.64693 z m 0.004,-0.20271 c -0.25013,0 -0.42698,-0.2027 -0.42698,-0.44854 0,-0.24583 0.17685,-0.44422 0.42267,-0.44422 0.25014,0 0.42699,0.2027 0.42699,0.44422 v 0.004 c 0,0.24584 -0.17254,0.44423 -0.42268,0.44423 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6719"
d="m 105.9508,175.37729 c 0.0217,0.0561 0.0604,0.0906 0.11213,0.0906 h 0.0217 c 0.0561,0 0.0949,-0.0345 0.11645,-0.0906 l 0.28032,-0.81944 0.28035,0.81944 c 0.0172,0.0561 0.0561,0.0906 0.11213,0.0906 h 0.0217 c 0.0517,0 0.0949,-0.0345 0.11645,-0.0906 l 0.37092,-1.0394 c 0.004,-0.0129 0.009,-0.0302 0.009,-0.0474 0,-0.0561 -0.0517,-0.10351 -0.10782,-0.10351 -0.0561,0 -0.0906,0.0345 -0.10785,0.0776 l -0.28892,0.86689 -0.28464,-0.86258 c -0.0172,-0.0517 -0.0561,-0.0863 -0.11216,-0.0863 h -0.013 c -0.0561,0 -0.0949,0.0345 -0.11213,0.0863 l -0.28464,0.86258 -0.28898,-0.86689 c -0.013,-0.0431 -0.0561,-0.0776 -0.10781,-0.0776 -0.0604,0 -0.11645,0.0474 -0.11645,0.10782 0,0.0129 0.004,0.0302 0.013,0.0431 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
id="path6711"
d="m 108.56002,175.47218 c 0.26307,0 0.43989,-0.16821 0.43989,-0.39679 v -0.004 c 0,-0.23289 -0.17682,-0.32778 -0.36658,-0.35365 l 0.29327,-0.30622 c 0.0388,-0.0388 0.0647,-0.069 0.0647,-0.12076 0,-0.0561 -0.0474,-0.0949 -0.11213,-0.0949 h -0.64262 c -0.0517,0 -0.0949,0.0431 -0.0949,0.0949 0,0.0517 0.0431,0.0949 0.0949,0.0949 h 0.45717 l -0.29326,0.31484 c -0.0345,0.0345 -0.0475,0.0604 -0.0475,0.0906 0,0.0517 0.0431,0.0949 0.0949,0.0949 h 0.0474 c 0.1725,0 0.28895,0.069 0.28895,0.19408 v 0.004 c 0,0.11214 -0.0949,0.18977 -0.21995,0.18977 -0.11644,0 -0.20701,-0.0431 -0.28467,-0.12076 -0.0172,-0.0172 -0.0431,-0.0302 -0.0733,-0.0302 -0.0561,0 -0.10781,0.0517 -0.10781,0.10782 0,0.0302 0.0172,0.0604 0.0388,0.0776 0.0992,0.0992 0.24153,0.16389 0.42267,0.16389 z m 0,0"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27602378"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 79.014605,187.26933 c 0,-0.35581 -0.291121,-0.64693 -0.646906,-0.64693 h -6.281711 c -0.355812,0 -0.646933,0.29112 -0.646933,0.64693 v 6.28278 c 0,0.35581 0.291121,0.64693 0.646933,0.64693 h 6.281711 c 0.355785,0 0.646906,-0.29112 0.646906,-0.64693 z m 0,0"
id="path37367"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 89.333355,187.26933 c 0,-0.35581 -0.291121,-0.64693 -0.646959,-0.64693 h -6.281684 c -0.355812,0 -0.646907,0.29112 -0.646907,0.64693 v 6.28278 c 0,0.35581 0.291095,0.64693 0.646907,0.64693 h 6.281684 c 0.355838,0 0.646959,-0.29112 0.646959,-0.64693 z m 0,0"
id="path37369"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 99.387522,187.26933 c 0,-0.35581 -0.291121,-0.64693 -0.646906,-0.64693 h -6.28277 c -0.355838,0 -0.645874,0.29112 -0.645874,0.64693 v 6.28278 c 0,0.35581 0.290036,0.64693 0.645874,0.64693 h 6.28277 c 0.355785,0 0.646906,-0.29112 0.646906,-0.64693 z m 0,0"
id="path37371"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27602378"
d="m 109.70627,187.26933 c 0,-0.35581 -0.29112,-0.64693 -0.64693,-0.64693 h -6.28171 c -0.35579,0 -0.64691,0.29112 -0.64691,0.64693 v 6.28278 c 0,0.35581 0.29112,0.64693 0.64691,0.64693 h 6.28171 c 0.35581,0 0.64693,-0.29112 0.64693,-0.64693 z m 0,0"
id="path37373"
inkscape:connector-curvature="0" />
<path
id="rect103"
d="M 28.948923,164.29485 H 111.1343 v 94.88068 H 28.948923 Z"
style="fill:#e6e6e6;fill-opacity:1;stroke-width:0.26458332"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="bId°°"
inkscape:transform-center-x="-1.5441791"
inkscape:transform-center-y="0.35634903"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="text977">
<path
d="m 13.898824,97.809389 q 0,-0.44235 -0.14056,-0.667659 -0.14056,-0.225309 -0.415478,-0.225309 -0.276986,0 -0.419613,0.227376 -0.142627,0.225309 -0.142627,0.665592 0,0.438216 0.142627,0.665593 0.142627,0.227376 0.419613,0.227376 0.274918,0 0.415478,-0.225309 0.14056,-0.225309 0.14056,-0.66766 z m -1.118278,-0.86403 q 0.09095,-0.169498 0.250114,-0.260449 0.16123,-0.09095 0.37207,-0.09095 0.417546,0 0.657324,0.322461 0.239779,0.320393 0.239779,0.8847 0,0.572575 -0.241846,0.89917 -0.239778,0.324528 -0.659391,0.324528 -0.206706,0 -0.365869,-0.08888 -0.157096,-0.09095 -0.252181,-0.262516 v 0.291455 h -0.380338 v -3.216341 h 0.380338 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
id="path978"
inkscape:connector-curvature="0" />
<path
d="m 14.963358,95.878758 h 1.713591 v 0.3514 H 16.02996 v 2.383317 h 0.646989 v 0.351399 h -1.713591 v -0.351399 h 0.646989 v -2.383317 h -0.646989 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
id="path980"
inkscape:connector-curvature="0" />
<path
d="m 18.868029,96.945359 v -1.196826 h 0.380339 v 3.216341 h -0.380339 v -0.291455 q -0.09508,0.171566 -0.254248,0.262516 -0.157096,0.08888 -0.363802,0.08888 -0.419612,0 -0.661458,-0.324528 -0.239779,-0.326595 -0.239779,-0.89917 0,-0.564307 0.241846,-0.8847 0.241846,-0.322461 0.659391,-0.322461 0.208773,0 0.367936,0.09095 0.159164,0.08888 0.250114,0.260449 z m -1.118278,0.86403 q 0,0.442351 0.14056,0.66766 0.14056,0.225309 0.415479,0.225309 0.274918,0 0.417545,-0.227376 0.144694,-0.227377 0.144694,-0.665593 0,-0.440283 -0.144694,-0.665592 -0.142627,-0.227376 -0.417545,-0.227376 -0.274919,0 -0.415479,0.225309 -0.14056,0.225309 -0.14056,0.667659 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
id="path982"
inkscape:connector-curvature="0" />
<path
d="m 20.914416,95.822947 q 0.134358,0 0.254248,0.05168 0.121956,0.04961 0.212907,0.144694 0.09302,0.09302 0.14056,0.21084 0.04961,0.117822 0.04961,0.254248 0,0.272851 -0.192236,0.46302 -0.192237,0.188103 -0.469222,0.188103 -0.279053,0 -0.465088,-0.186035 -0.186035,-0.186036 -0.186035,-0.465088 0,-0.276986 0.190169,-0.469222 0.190169,-0.192237 0.465088,-0.192237 z m 0,0.266651 q -0.163298,0 -0.279053,0.115755 -0.113688,0.113688 -0.113688,0.279053 0,0.165364 0.111621,0.276985 0.113688,0.111621 0.276986,0.111621 0.165364,0 0.281119,-0.113688 0.117823,-0.113688 0.117823,-0.274918 0,-0.163298 -0.115756,-0.279053 -0.115755,-0.115755 -0.279052,-0.115755 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
id="path984"
inkscape:connector-curvature="0" />
<path
d="m 23.46103,95.822947 q 0.134359,0 0.254248,0.05168 0.121957,0.04961 0.212907,0.144694 0.09302,0.09302 0.14056,0.21084 0.04961,0.117822 0.04961,0.254248 0,0.272851 -0.192237,0.46302 -0.192236,0.188103 -0.469222,0.188103 -0.279052,0 -0.465088,-0.186035 -0.186035,-0.186036 -0.186035,-0.465088 0,-0.276986 0.19017,-0.469222 0.190169,-0.192237 0.465087,-0.192237 z m 0,0.266651 q -0.163297,0 -0.279052,0.115755 -0.113688,0.113688 -0.113688,0.279053 0,0.165364 0.111621,0.276985 0.113688,0.111621 0.276985,0.111621 0.165365,0 0.28112,-0.113688 0.117822,-0.113688 0.117822,-0.274918 0,-0.163298 -0.115755,-0.279053 -0.115755,-0.115755 -0.279053,-0.115755 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
id="path986"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="OUAIve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="text977-5">
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="11.331977"
y="5.7977414"
id="text974"><tspan
sodipodi:role="line"
id="tspan972"
x="11.331977"
y="5.7977414"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px">RAdAR</tspan></text>
</g>
<g
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:Sudo;-inkscape-font-specification:'Sudo, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="text4860" />
<g
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:125%;font-family:Sudo;-inkscape-font-specification:'Sudo, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="flowRoot1009" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
x="2.3208861"
y="84.527206"
id="text1002"><tspan
sodipodi:role="line"
id="tspan1000"
x="2.3208861"
y="84.527206"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">TRIG</tspan></text>
<g
id="g1032"
transform="translate(28.416079,21.948245)">
<rect
ry="1.1370114"
y="59.837032"
x="-15.953481"
height="10.377027"
width="6.9770179"
id="rect998-7"
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000400;stroke-width:0.72085714;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
id="text1002-9"
y="62.553104"
x="-15.054995"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
y="62.553104"
x="-15.054995"
id="tspan1000-1"
sodipodi:role="line">POS</tspan></text>
</g>
<rect
style="opacity:1;fill:#cd1f00;fill-opacity:1;fill-rule:evenodd;stroke:#cd1f00;stroke-width:0.93371081;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect998-7-7"
width="11.984631"
height="10.135485"
x="22.350098"
y="81.901466"
ry="1.1105456" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.79039741px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13079987;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
x="25.432156"
y="85.593163"
id="text1002-9-9"
transform="scale(1.0122861,0.98786301)"><tspan
sodipodi:role="line"
id="tspan1000-1-5"
x="25.432156"
y="85.593163"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.79039741px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13079987;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">OUT</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
x="2.2843671"
y="94.338516"
id="text1002-1"><tspan
sodipodi:role="line"
id="tspan1000-9"
x="2.2843671"
y="94.338516"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13229166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">GATE</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.79039741px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13079987;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
x="23.964373"
y="87.993423"
id="text1002-9-9-2"
transform="scale(1.0122861,0.98786302)"><tspan
sodipodi:role="line"
id="tspan1000-1-5-5"
x="23.964373"
y="87.993423"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.79039741px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13079987;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">L</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.79039741px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.13079987;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
x="30.250475"
y="87.993416"
id="text1002-9-9-2-7"
transform="scale(1.0122861,0.98786302)"><tspan
sodipodi:role="line"
id="tspan1000-1-5-5-5"
x="30.250475"
y="87.993416"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.79039741px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.13079987;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">R</tspan></text>
</svg>

+ 0
- 134
vst2_bin/plugins/Bidoo/res/SONAR.svg View File

@@ -1,134 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="180"
height="380"
viewBox="0 0 47.625 100.54166"
version="1.1"
id="svg12553">
<defs
id="defs12547">
<linearGradient
osb:paint="solid"
id="linearGradient4708">
<stop
id="stop4706"
offset="0"
style="stop-color:#ececec;stop-opacity:1;" />
</linearGradient>
<filter
id="filter4696"
style="color-interpolation-filters:sRGB">
<feColorMatrix
id="feColorMatrix4692"
result="colormatrix"
values="0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 "
in="SourceGraphic" />
<feBlend
id="feBlend4694"
result="fbSourceGraphic"
mode="multiply"
in2="BackgroundImage" />
<feColorMatrix
id="feColorMatrix4762"
values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
in="fbSourceGraphic"
result="fbSourceGraphicAlpha" />
<feColorMatrix
in="fbSourceGraphic"
result="colormatrix"
values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 5 -1 "
id="feColorMatrix4764" />
<feComposite
k4="0"
k3="0"
k1="0"
result="composite"
k2="0.3"
operator="arithmetic"
id="feComposite4766"
in2="colormatrix" />
</filter>
</defs>
<metadata
id="metadata12550">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
transform="matrix(0.3995566,0,0,1.0012215,-10.654365,-161.56849)">
<path
id="path33453"
d="M 26.616839,161.37987 H 145.85344 v 100.3961 H 26.616839 Z m 0,0"
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.32258889" />
</g>
<g
id="text977"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
aria-label="bId°°">
<path
id="path832"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 19.719656,97.809389 q 0,-0.44235 -0.14056,-0.667659 -0.14056,-0.225309 -0.415478,-0.225309 -0.276986,0 -0.419613,0.227376 -0.142627,0.225309 -0.142627,0.665592 0,0.438216 0.142627,0.665593 0.142627,0.227376 0.419613,0.227376 0.274918,0 0.415478,-0.225309 0.14056,-0.225309 0.14056,-0.66766 z m -1.118278,-0.86403 q 0.09095,-0.169498 0.250114,-0.260449 0.161231,-0.09095 0.372071,-0.09095 0.417545,0 0.657324,0.322461 0.239778,0.320393 0.239778,0.8847 0,0.572575 -0.241845,0.89917 -0.239779,0.324528 -0.659392,0.324528 -0.206705,0 -0.365869,-0.08888 -0.157096,-0.09095 -0.252181,-0.262516 v 0.291455 H 18.22104 v -3.216341 h 0.380338 z" />
<path
id="path834"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 20.784191,95.878758 h 1.71359 v 0.3514 h -0.646989 v 2.383317 h 0.646989 v 0.351399 h -1.71359 v -0.351399 h 0.646989 v -2.383317 h -0.646989 z" />
<path
id="path836"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="M 24.688862,96.945359 V 95.748533 H 25.0692 v 3.216341 h -0.380338 v -0.291455 q -0.09509,0.171566 -0.254248,0.262516 -0.157097,0.08888 -0.363802,0.08888 -0.419613,0 -0.661459,-0.324528 -0.239778,-0.326595 -0.239778,-0.89917 0,-0.564307 0.241845,-0.8847 0.241846,-0.322461 0.659392,-0.322461 0.208772,0 0.367936,0.09095 0.159163,0.08888 0.250114,0.260449 z m -1.118278,0.86403 q 0,0.442351 0.14056,0.66766 0.140559,0.225309 0.415478,0.225309 0.274919,0 0.417546,-0.227376 0.144694,-0.227377 0.144694,-0.665593 0,-0.440283 -0.144694,-0.665592 -0.142627,-0.227376 -0.417546,-0.227376 -0.274919,0 -0.415478,0.225309 -0.14056,0.225309 -0.14056,0.667659 z" />
<path
id="path838"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 26.735248,95.822947 q 0.134359,0 0.254248,0.05168 0.121956,0.04961 0.212907,0.144694 0.09302,0.09302 0.14056,0.21084 0.04961,0.117822 0.04961,0.254248 0,0.272851 -0.192236,0.46302 -0.192236,0.188103 -0.469222,0.188103 -0.279053,0 -0.465088,-0.186035 -0.186035,-0.186036 -0.186035,-0.465088 0,-0.276986 0.190169,-0.469222 0.190169,-0.192237 0.465088,-0.192237 z m 0,0.266651 q -0.163298,0 -0.279053,0.115755 -0.113688,0.113688 -0.113688,0.279053 0,0.165364 0.111621,0.276985 0.113688,0.111621 0.276986,0.111621 0.165364,0 0.28112,-0.113688 0.117822,-0.113688 0.117822,-0.274918 0,-0.163298 -0.115755,-0.279053 -0.115755,-0.115755 -0.279053,-0.115755 z" />
<path
id="path840"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 29.281863,95.822947 q 0.134358,0 0.254248,0.05168 0.121956,0.04961 0.212907,0.144694 0.09302,0.09302 0.140559,0.21084 0.04961,0.117822 0.04961,0.254248 0,0.272851 -0.192236,0.46302 -0.192237,0.188103 -0.469222,0.188103 -0.279053,0 -0.465088,-0.186035 -0.186035,-0.186036 -0.186035,-0.465088 0,-0.276986 0.190169,-0.469222 0.190169,-0.192237 0.465088,-0.192237 z m 0,0.266651 q -0.163298,0 -0.279053,0.115755 -0.113688,0.113688 -0.113688,0.279053 0,0.165364 0.111621,0.276985 0.113688,0.111621 0.276986,0.111621 0.165364,0 0.281119,-0.113688 0.117823,-0.113688 0.117823,-0.274918 0,-0.163298 -0.115756,-0.279053 -0.115755,-0.115755 -0.279052,-0.115755 z" />
</g>
<g
id="text977-5"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
aria-label="SONar">
<path
id="path843"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="M 19.715519,2.6868203 V 3.110567 Q 19.52535,2.9886106 19.333114,2.9265989 q -0.19017,-0.062012 -0.384473,-0.062012 -0.295589,0 -0.467155,0.1384928 -0.171566,0.1364258 -0.171566,0.3700032 0,0.2046387 0.111621,0.3121257 0.113688,0.1074869 0.42168,0.1798339 l 0.219108,0.049609 q 0.434082,0.1012858 0.63252,0.3183268 0.198437,0.217041 0.198437,0.5911784 0,0.4402832 -0.272852,0.6717936 -0.272851,0.2315104 -0.793749,0.2315104 -0.217041,0 -0.43615,-0.047542 -0.219108,-0.045475 -0.440283,-0.1384929 V 5.0970089 q 0.237712,0.1508952 0.448552,0.2211751 0.212907,0.07028 0.427881,0.07028 0.316259,0 0.491959,-0.1405599 0.1757,-0.1426269 0.1757,-0.396875 0,-0.2315104 -0.121956,-0.3534668 Q 19.252498,4.375606 18.952775,4.3094601 L 18.729533,4.2577837 Q 18.299585,4.160632 18.105282,3.9642616 17.910978,3.7678912 17.910978,3.437162 q 0,-0.4134114 0.276986,-0.6614583 0.279053,-0.2501139 0.740006,-0.2501139 0.177767,0 0.374138,0.041341 0.19637,0.039274 0.413411,0.1198895 z" />
<path
id="path845"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 22.040958,4.1275591 q 0,-0.6800618 -0.14056,-0.9715169 -0.138492,-0.291455 -0.456819,-0.291455 -0.31626,0 -0.45682,0.291455 -0.138493,0.2914551 -0.138493,0.9715169 0,0.6779948 0.138493,0.9694498 0.14056,0.2914551 0.45682,0.2914551 0.318327,0 0.456819,-0.289388 0.14056,-0.2914551 0.14056,-0.9715169 z m 0.436149,0 q 0,0.8061523 -0.256315,1.2030273 -0.254248,0.396875 -0.777213,0.396875 -0.522966,0 -0.777214,-0.394808 -0.254248,-0.3948079 -0.254248,-1.2050943 0,-0.8082194 0.254248,-1.2050943 0.256315,-0.396875 0.777214,-0.396875 0.522965,0 0.777213,0.396875 0.256315,0.3968749 0.256315,1.2050943 z" />
<path
id="path847"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 23.004207,2.5814003 h 0.529167 L 24.57517,5.1218136 V 2.5814003 h 0.403077 V 5.6675167 H 24.44908 L 23.407283,3.1271034 v 2.5404133 h -0.403076 z" />
<path
id="path849"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="m 26.714574,4.5037635 h -0.12609 q -0.332796,0 -0.502295,0.1178223 -0.167432,0.1157552 -0.167432,0.3472656 0,0.2087728 0.126091,0.324528 0.12609,0.1157552 0.349332,0.1157552 0.314193,0 0.494027,-0.217041 0.179834,-0.2191081 0.181901,-0.6035807 v -0.084749 z m 0.73794,-0.1570963 V 5.6675167 H 27.070108 V 5.3243852 q -0.121956,0.2067057 -0.307991,0.3059245 -0.183968,0.097152 -0.448552,0.097152 -0.353467,0 -0.564306,-0.1984375 -0.21084,-0.2005046 -0.21084,-0.5353678 0,-0.3865397 0.258382,-0.5870443 0.260449,-0.2005045 0.762744,-0.2005045 h 0.510563 V 4.1461626 Q 27.068041,3.869177 26.929548,3.7451535 26.791055,3.619063 26.487198,3.619063 q -0.194303,0 -0.392741,0.055811 -0.198437,0.05581 -0.386539,0.1632975 V 3.4578326 q 0.210839,-0.080615 0.403076,-0.1198893 0.194303,-0.041341 0.376204,-0.041341 0.287321,0 0.489893,0.084749 0.204638,0.084749 0.330729,0.254248 0.07855,0.1033529 0.111621,0.2563151 0.03307,0.1508952 0.03307,0.4547526 z" />
<path
id="path851"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px"
d="M 30.197566,3.8299029 Q 30.07561,3.7348182 29.949519,3.69141 29.823429,3.648002 29.672533,3.648002 q -0.355533,0 -0.543636,0.2232422 -0.188102,0.2232422 -0.188102,0.6449219 V 5.6675167 H 28.55839 v -2.315104 h 0.382405 v 0.4526855 q 0.09508,-0.2459798 0.291455,-0.3762044 0.198438,-0.1322917 0.469222,-0.1322917 0.14056,0 0.262516,0.03514 0.121957,0.03514 0.233578,0.109554 z" />
</g>
<g
id="text4860"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:Sudo;-inkscape-font-specification:'Sudo, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<g
id="flowRoot1009"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:125%;font-family:Sudo;-inkscape-font-specification:'Sudo, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</svg>

+ 0
- 153
vst2_bin/plugins/Bidoo/res/SONARtemp.svg View File

@@ -1,153 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg12553"
version="1.1"
viewBox="0 0 47.625 100.54166"
height="380"
width="180"
sodipodi:docname="SONARtemp.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview118"
showgrid="true"
inkscape:zoom="1.5750457"
inkscape:cx="-76.570764"
inkscape:cy="134.51614"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg12553">
<inkscape:grid
type="xygrid"
id="grid929" />
</sodipodi:namedview>
<defs
id="defs12547">
<linearGradient
id="linearGradient4708"
osb:paint="solid">
<stop
style="stop-color:#ececec;stop-opacity:1;"
offset="0"
id="stop4706" />
</linearGradient>
<filter
style="color-interpolation-filters:sRGB"
inkscape:label="Opacity"
id="filter4696">
<feColorMatrix
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 "
result="colormatrix"
id="feColorMatrix4692" />
<feBlend
in2="BackgroundImage"
mode="multiply"
result="fbSourceGraphic"
id="feBlend4694" />
<feColorMatrix
result="fbSourceGraphicAlpha"
in="fbSourceGraphic"
values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
id="feColorMatrix4762" />
<feColorMatrix
id="feColorMatrix4764"
values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 5 -1 "
result="colormatrix"
in="fbSourceGraphic" />
<feComposite
in2="colormatrix"
id="feComposite4766"
operator="arithmetic"
k2="0.3"
result="composite"
k1="0"
k3="0"
k4="0" />
</filter>
</defs>
<metadata
id="metadata12550">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="matrix(0.3995566,0,0,1.0012215,-10.654365,-161.56849)"
id="layer1">
<path
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.32258889"
d="M 26.616839,161.37987 H 145.85344 v 100.3961 H 26.616839 Z m 0,0"
id="path33453"
inkscape:connector-curvature="0" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="17.822098"
y="98.964874"
id="text977"
inkscape:transform-center-x="-1.5441791"
inkscape:transform-center-y="0.35634903"><tspan
sodipodi:role="line"
id="tspan975"
x="17.822098"
y="98.964874"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px">bId°°</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="17.623657"
y="5.6675167"
id="text977-5"><tspan
sodipodi:role="line"
id="tspan975-3"
x="17.623657"
y="5.6675167"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332px">SONar</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:Sudo;-inkscape-font-specification:'Sudo, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="69.335617"
y="97.895828"
id="text4860"><tspan
sodipodi:role="line"
id="tspan4858"
x="69.335617"
y="100.54166"
style="stroke-width:0.26458332px" /></text>
<flowRoot
xml:space="preserve"
id="flowRoot1009"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:125%;font-family:Sudo;-inkscape-font-specification:'Sudo, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"><flowRegion
id="flowRegion1011"><rect
id="rect1013"
width="428.17667"
height="304.19095"
x="181.82332"
y="40" /></flowRegion><flowPara
id="flowPara1015" /></flowRoot></svg>

Loading…
Cancel
Save